/* 公共基础样式：CSS 变量 / 重置 / body / 链接 / 容器 —— 所有页面共用 */

:root {
    --primary-blue: #0F52BA;   /* 主题蓝 */
    --secondary-blue: #3B82F6; /* 亮蓝 */
    --dark-blue: #1C2B4E;      /* 页脚深蓝 */
    --accent-orange: #F59E0B;  /* 点缀橙色 */
    --text-main: #333333;
    --text-light: #666666;
    --bg-gray: #f5f7fa;
    --border-color: #E5E7EB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Microsoft YaHei", "PingFang SC", sans-serif; background-color: var(--bg-gray); color: var(--text-main); line-height: 1.5; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 1200px; margin: 0 auto; position: relative; }
