/* 系统字体栈 - 优先使用设备自带中文字体，无需下载 */
:root {
  --font-chinese: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, 
                  "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

body {
  font-family: var(--font-chinese);
}
