:root {
  --color-primary: #2b7cd3;
  --color-primary-dark: #1f6ab8;
  --color-primary-light: #e8f2fc;
  --color-primary-border: #b3d4f0;
  --color-primary-rgb: 43, 124, 211;

  --color-text: #303133;
  --color-text-secondary: #606266;
  --color-text-muted: #909399;
  --color-border: #dcdfe6;
  --color-bg: #ffffff;
  --color-bg-muted: #eceef1;
  --color-footer-bg: #333333;
  --color-footer-text: #ecf0f1;

  --font-sans: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 24px;
  --text-2xl: 32px;
  --text-3xl: 40px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  --container-max: 1200px;
  --container-pad: 16px;
  --header-height: 80px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);

  --transition: 0.2s ease;
}

@media (min-width: 768px) {
  :root {
    --container-pad: 24px;
  }
}
