/* Font Awesome Icons - 本地版本 */
/* 仅包含项目中使用的图标 */

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('data:font/woff2;base64,') format('woff2');
}

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

/* 项目中使用的图标 */
.fa-images:before { content: "\f302"; }
.fa-cloud-upload-alt:before { content: "\f382"; }
.fa-times:before { content: "\f00d"; }
.fa-trash:before { content: "\f1f8"; }
.fa-grip-lines:before { content: "\f7a4"; }
.fa-grip-lines-vertical:before { content: "\f7a5"; }
.fa-th:before { content: "\f00a"; }
.fa-magic:before { content: "\f0d0"; }
.fa-download:before { content: "\f019"; }

/* 简化版图标样式 - 使用CSS绘制 */
.fas.fa-images:before,
.fas.fa-cloud-upload-alt:before,
.fas.fa-times:before,
.fas.fa-trash:before,
.fas.fa-grip-lines:before,
.fas.fa-grip-lines-vertical:before,
.fas.fa-th:before,
.fas.fa-magic:before,
.fas.fa-download:before {
  font-family: inherit;
  font-weight: bold;
}

/* 使用文字替代图标 */
.fa-images:before { content: "📷"; }
.fa-cloud-upload-alt:before { content: "⬆️"; }
.fa-times:before { content: "✕"; }
.fa-trash:before { content: "🗑️"; }
.fa-grip-lines:before { content: "≡"; }
.fa-grip-lines-vertical:before { content: "⋮"; }
.fa-th:before { content: "⊞"; }
.fa-magic:before { content: "✨"; }
.fa-download:before { content: "⬇️"; }