:root {
    /* 主题色 */
    --primary-color: #165DFF;
    --primary-hover: #0E42D2;
    --primary-light: #E8F3FF;
    --secondary-color: #6B7280;
    --success-color: #3ecf8e;
    --warning-color: #FFA940;
    --danger-color: #FF4D4F;
    --info-color: #40A9FF;

    /* 背景色 */
    --background-color: #fafdff;
    --card-bg: #FFFFFF;
    --hover-bg: rgba(22, 93, 255, 0.05);
    
    /* 文字颜色 */
    --text-color: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    
    /* 边框颜色 */
    --border-color: #e5e7eb;
    --border-light: #f0f0f0;
    
    /* 阴影 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 8px rgba(188, 220, 255, 0.13);
    --shadow-hover: 0 8px 32px rgba(188, 220, 255, 0.2);
    
    /* 圆角 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* 间距 */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* 动画 */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.35s ease;
    --transition-bounce: 0.5s cubic-bezier(0.4, 2, 0.6, 1);
    
    /* 布局 */
    --header-height: 4rem;
    --sidebar-width: 220px;
    --sidebar-collapsed-width: 60px;
    --content-max-width: 1200px;
    
    /* 字体 */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* 层级 */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal: 1040;
    --z-index-popover: 1050;
    --z-index-tooltip: 1060;
} 