/* 引入Google Fonts中的思源黑体和思源宋体 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Noto+Serif+SC:wght@400;700&display=swap');

/* 定义字体样式 */
.font-source-han-sans {
    font-family: 'Source Han Sans SC', 'Noto Sans SC', sans-serif;
}

.font-source-han-serif {
    font-family: 'Source Han Serif SC', 'Noto Serif SC', serif;
}

/* 添加其他常用中文字体的备用方案 */
@font-face {
    font-family: 'FZHei-B01S';
    src: local('FZHei-B01S'), local('方正黑体');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'STXihei';
    src: local('STXihei'), local('华文细黑');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'STFangsong';
    src: local('STFangsong'), local('华文仿宋');
    font-weight: normal;
    font-style: normal;
}

/* 为字体加粗提供更好的支持 */
.text-bold {
    font-weight: bold;
}