/* global.css: 全站公用字体与基础 Reset/变量补充 */
/* 字体主用：LXGW WenKai Screen（在 base.html 外链引入），简体中文与展示；英文字体回退：Noto Sans SC -> 系统无衬线 -> 衬线
   如果需要关闭该字体，只需在此文件或 base.html 中移除第一项即可。 */
html, body, button, input, textarea, select {
  font-family: "LXGW WenKai Screen", "Noto Sans SC", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Georgia', 'Times New Roman', serif;
}

/* 统一平滑渲染 & 字体优化 */
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* 可在此处追加全局颜色变量或通用类 */
:root {
  /* 示例：全局阴影或过渡时长可在此扩展 */
  --global-transition-fast: .18s;
}
