/* Font Awesome路径修复 */
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/font-awesome/fa-brands-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../fonts/font-awesome/fa-solid-900.woff2') format('woff2');
}

/* 如果没有regular图标文件，使用solid代替 */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/font-awesome/fa-solid-900.woff2') format('woff2');
}

/* 确保图标类能够正确显示 */
.fas {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.fab {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

.far {
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
} 