/* 优化：合并重复 src，移除冗余时间戳，调整字体加载顺序，使用更简洁的字体名 */
@font-face{
    font-family: "PingFang";
    src: url("./PingFangSCBold/PingFangSCBold.woff2") format("woff2"),
         url("./PingFangSCBold/PingFangSCBold.woff") format("woff"),
         url("./PingFangSCBold/PingFangSCBold.ttf") format("truetype");
    font-weight: 700;      /* 明确为粗体 */
    font-style: normal;
    font-display: swap;
}

/* 全局统一使用优化后的字体名 */
body{
    font-family: "PingFang", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif!important;
}

/* 图标保持常规字重 */
.iconfont{
    font-family: "PingFang" !important;
    font-weight: normal;
    font-style: normal;
}
