/* 修复 FontAwesome 在 file:// 或子路径部署时字体文件 404 的问题
 * all.min.css 内置的 @font-face 使用了绝对路径 /assets/xxx
 * 在本地预览或非根目录部署时会导致加载失败，这里用相对路径覆盖。
 */

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

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

