/* 覆盖图标字体 */
@font-face {
  font-family: 'iconfont';
  src: url('data:application/x-font-woff2;charset=utf-8;base64,') format('woff2') !important;
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* 覆盖 Element Plus 图标字体 */
@font-face {
  font-family: 'element-icons';
  src: url('data:application/x-font-woff2;charset=utf-8;base64,') format('woff2') !important;
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* 覆盖所有图标类 */
[class^="icon-"], [class*=" icon-"],
[class^="el-icon-"], [class*=" el-icon-"] {
  font-family: 'iconfont', 'element-icons', sans-serif !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} 