/* dataiyi-vars.css — 大泰易品牌 CSS 变量（全局基础，所有页面共用）*/
:root {
  /* 主品牌色 */
  --primary-blue: #0052d9;
  --primary-orange: #ff7d00;

  /* 背景层次 */
  --dark-navy: #0a1430;
  --dark-navy-2: #0b1a3a;
  --dark-navy-3: #0e2350;
  --dark-navy-4: #122a5c;

  /* 强调色 */
  --blue-light: #2f7bff;
  --blue-glow: rgba(47, 123, 255, 0.45);
  --green: #00b42a;
  --purple: #9d29ff;
  --gold: #e0b24b;

  /* 文字色 */
  --text-primary: #0d1f36;
  --text-body: #c9d3e3;
  --text-muted: #8a98b5;
  --text-white: #fff;

  /* 背景/边框（浅色模式，用于后台区域） */
  --bg-paper: #f5f7fa;
  --border-line: #d9e0ea;

  /* 卡片（暗色主题） */
  --card-dark: rgba(255, 255, 255, 0.04);
  --card-border-dark: rgba(120, 160, 255, 0.16);

  /* 布局 */
  --max-width: 1200px;
  --radius: 14px;

  /* 字体 */
  --font-sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI",
    sans-serif;
}
