/* ============================================
   靠谱者百科设计系统变量 v1.0
   ============================================ */
:root {
  /* 背景 */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-tertiary: #F0F0F0;
  --bg-hover: #F5F5F5;

  /* 文字 */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-muted: #999999;
  --text-inverse: #FFFFFF;

  /* 品牌色 */
  --brand-gold: #A07C4A;
  --brand-black: #0D0C0B;
  --brand-gray: #333333;
  --brand-blue: #2563EB;
  --brand-green: #059669;

  /* 边框 */
  --border-light: #E5E5E5;
  --border-medium: #D4D4D4;

  /* 知识类型标签色 */
  --type-process: #2563EB;
  --type-regulation: #7C3AED;
  --type-policy: #059669;
  --type-term: #6B7280;
  --type-organization: #D97706;
  --type-action: #DC2626;

  /* 功能色 */
  --success: #059669;
  --warning: #D97706;
  --error: #DC2626;

  /* 字体 */
  --font-family-cn: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-family-en: Inter, -apple-system, sans-serif;

  /* 字号 */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;

  /* 字重 */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* 行高 */
  --line-height-base: 1.6;
  --line-height-tight: 1.4;

  /* 圆角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* 阴影 */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);

  /* 间距 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* 布局 */
  --max-width: 1200px;
  --nav-height: 64px;
  --bottom-nav-height: 56px;
  --sidebar-width: 280px;

  /* 过渡 */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;
}
