:root {
    /* Colors */
    --primary-rgb: 74, 144, 226;  /* 更新为蓝色 */
    --primary-color: #4a90e2;
    --primary-dark: #2980b9;
    --secondary-color: #2c3e50;
    --text-color: #333333;
    --text-rgb: 51, 51, 51;  /* 添加文本颜色的 RGB 值 */
    --light-text: #666666;
    --text-color-light: #666666;  /* 添加这个变量，值与 --light-text 相同 */
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;

    /* Status Colors */
    --error-color: #e74c3c;
    --error-bg: #fdf0ed;
    --success-color: #2ecc71;
    --success-bg: #edfdf5;
    --warning-color: #f1c40f;
    --warning-bg: #fdf9ed;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;

    /* Font sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-md: 1rem;
    --font-lg: 1.25rem;
    --font-xl: 1.5rem;
    --font-2xl: 2rem;

    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* 工具类 */
.icon-container {
    display: none;
} 