/**
 * 本地字体定义
 * 使用系统字体栈，避免外部资源加载延迟
 */

/* Inter字体的系统字体替代方案 */
body,
input,
textarea,
select,
button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* 如果需要更接近Inter的字体，可以使用以下备选方案 */
/* 中文系统字体栈 */
.font-chinese {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
}

/* 英文系统字体栈 */
.font-english {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

