/* 轻量级字体加载策略 */
/* 只加载必要的字体权重，减少加载时间 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Sans+KR:wght@400;500;600;700&display=swap');

/* 字体显示优化 */
@font-face {
  font-family: 'Noto Sans SC';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans JP';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Noto Sans KR';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans',
    /* Mac 系统字体 */
    -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
    /* Windows 系统字体 */
    'Segoe UI', 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB',
    /* 通用字体 */
    'Helvetica Neue', Helvetica, Arial, 'Liberation Sans', 'DejaVu Sans',
    /* 俄语支持 */
    'Roboto', 'Open Sans', 'Ubuntu', 'Cantarell', 'Source Sans Pro',
    sans-serif;
}