/*!
 * 字体修复文件 - 替代Google Fonts
 * 使用系统字体和本地字体确保页面正常显示
 */

/* 全局字体重置 */
* {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif !important;
}

/* Poppins字体替代 - 不同字重 */
.font-weight-300,
.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-400,
.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-500,
.font-weight-medium {
    font-weight: 500 !important;
}

.font-weight-600,
.font-weight-semibold {
    font-weight: 600 !important;
}

.font-weight-700,
.font-weight-bold {
    font-weight: 700 !important;
}

/* 确保所有文本元素使用系统字体 */
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, textarea, select,
.btn, .form-control, .text, .label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif !important;
}

/* 针对中文字符优化 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif !important;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
} 