/* ============================================
   黄色仓库在线课程与职业技能培训平台 - CSS变量定义
   ============================================ */
:root {
  /* 主色调：学院蓝 */
  --primary: #1976D2;
  /* 辅色调：深邃蓝 */
  --secondary: #1565C0;
  /* 背景色：纯白 */
  --bg: #FFFFFF;
  /* 卡片背景色：极浅蓝 */
  --card-bg: #E3F2FD;
  /* 强调色：亮蓝色 */
  --accent: #2196F3;
  /* 文字主色：深灰黑 */
  --text: #1A1A1A;
  /* 辅助文字色：中灰色 */
  --text-muted: #666666;
  /* 成功状态色 */
  --success: #4CAF50;
  /* 警告状态色 */
  --warning: #FF9800;
  /* 错误状态色 */
  --danger: #F44336;
  /* 间距变量 */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50%;
  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 36px rgba(0,0,0,0.15);
  /* 过渡 */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  /* 容器宽度 */
  --container-max: 1200px;
  --container-wide: 1400px;
}
