/*
 * 全局基础样式（base.css）
 * 适用页面：所有页面统一引入
 * 内容：元素重置、body 白色科技风背景、通用链接与页面容器
 * 说明：各页面独有的背景网格（body::before）、径向渐变微调请在各自的 css 中覆盖。
 */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: #334155;
  background-color: #f6f9fd;
  background-image:
    radial-gradient(ellipse 60% 45% at 85% 0%, rgba(59,130,246,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 100%, rgba(124,58,237,.08) 0%, transparent 60%);
  min-height: 100vh;
}

a { text-decoration: none; }

.page { position: relative; z-index: 1; }
