/* 简化版Font Awesome，使用相对路径引用字体文件 */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('webfonts/fa-solid-900.woff2') format('woff2'),
       url('webfonts/fa-solid-900.ttf') format('truetype');
}

.fas {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/* 常用图标 */
.fa-upload::before { content: "\f093"; }
.fa-check::before { content: "\f00c"; }
.fa-times::before { content: "\f00d"; }
.fa-refresh::before { content: "\f021"; }
.fa-undo::before { content: "\f0e2"; }
.fa-rotate-right::before { content: "\f01e"; }
.fa-download::before { content: "\f019"; }
.fa-history::before { content: "\f1da"; }
.fa-trash::before { content: "\f1f8"; }
.fa-clear::before { content: "\f057"; }
.fa-info-circle::before { content: "\f05a"; }
.fa-exclamation-triangle::before { content: "\f071"; }