/* 全站字体：思源黑体
 * 不依赖 fonts.googleapis.com（国内/代理环境常失败）
 * 优先使用本机已安装的思源黑体 / Noto Sans SC，否则回退微软雅黑等
 */
:root {
    --site-font: "Source Han Sans SC", "Noto Sans SC", "思源黑体", "Source Han Sans CN",
        "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", sans-serif;
}

html,
body {
    font-family: var(--site-font);
}
