/* 本地版本的Font Awesome CSS */
/* 这是一个简化版本，仅包含项目中使用的图标样式 */

/* 基础样式 */
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 项目中使用的图标 */
.fa-tachometer:before {
  content: "📊";
}

.fa-users:before {
  content: "👥";
}

.fa-th-list:before {
  content: "📋";
}

.fa-cogs:before {
  content: "⚙️";
}

.fa-calendar:before {
  content: "📅";
}

.fa-user-circle:before {
  content: "👤";
}

.fa-user:before {
  content: "👨";
}

.fa-sign-out:before {
  content: "🚪";
}

.fa-search:before {
  content: "🔍";
}

.fa-briefcase:before {
  content: "💼";
}

/* Element UI图标模拟 */
.el-icon-user:before {
  content: "👤";
}

.el-icon-lock:before {
  content: "🔒";
}

.el-icon-arrow-right:before {
  content: "→";
}

.el-icon-arrow-up:before {
  content: "↑";
}

.el-icon-date:before {
  content: "📅";
}

/* 为了确保el-select__caret显示正确 */
.el-select__caret {
  display: inline-block;
}

/* 确保el-input__icon显示正确 */
.el-input__icon {
  display: inline-block;
}