/* 本地字体配置 */
@font-face {
    font-family: 'Noto Sans SC Local';
    src: url('../fonts/SourceHanSansSC-Regular-2.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans SC Local';
    src: url('../fonts/SourceHanSansSC-Medium-2.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans SC Local';
    src: url('../fonts/SourceHanSansSC-Bold-2.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* 全局字体设置 - 优先使用本地字体 */
* {
    font-family: 'Noto Sans SC Local', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
}

/* 确保表单元素继承字体 */
input, button, textarea, select {
    font-family: inherit;
}