/*!
 * Font Awesome Free 6.0.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2022 Fonticons, Inc.
 */

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../fonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../fonts/fa-regular-400.woff2") format("woff2");
}

.fa,.fab,.fad,.fal,.far,.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.far {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* 图标映射 */
.fa-home:before{content:"\f015"}
.fa-user:before{content:"\f007"}
.fa-envelope:before{content:"\f0e0"}
.fa-lock:before{content:"\f023"}
.fa-edit:before{content:"\f044"}
.fa-trash:before{content:"\f1f8"}
.fa-plus:before{content:"\f067"}
.fa-search:before{content:"\f002"}
.fa-heart:before{content:"\f004"}
.fa-eye:before{content:"\f06e"}
.fa-calendar:before{content:"\f073"}
.fa-folder:before{content:"\f07b"}
.fa-tags:before{content:"\f02c"}
.fa-comments:before{content:"\f086"}
.fa-check:before{content:"\f00c"}
.fa-times:before{content:"\f00d"}
.fa-arrow-left:before{content:"\f060"}
.fa-tachometer-alt:before{content:"\f3fd"}
.fa-file-alt:before{content:"\f15c"}
.fa-sign-in-alt:before{content:"\f2f6"}
.fa-sign-out-alt:before{content:"\f2f5"}
.fa-user-plus:before{content:"\f234"}
.fa-user-circle:before{content:"\f2bd"}
.fa-spinner:before{content:"\f110"}
.fa-link:before{content:"\f0c1"}
.fa-weibo:before{content:"\f18a"}
.fa-weixin:before{content:"\f1d7"}
.fa-qq:before{content:"\f1d6"}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}