
        /* 字体由 path-config.js 动态加载，不再需要 @import google-fonts.css */

        :root {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --accent: #8b5cf6;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --bg-subtle: #f8fafc;
            --border-light: #e2e8f0;
        }

        body {
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
            background: linear-gradient(135deg, #fafafa 0%, #f5f7fa 100%);
            color: var(--text-primary);
        }

        /* 更柔和的磨砂玻璃效果 */
        .glass {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        /* Utility classes - 不使用 !important 以支持响应式类 */
        .block {
            display: block !important;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* 移动端水平滚动支持 */
        .overflow-x-auto {
            -webkit-overflow-scrolling: touch;
            touch-action: pan-x;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 transparent;
        }

        /* 确保移动端可以正常滚动 */
        @media (max-width: 768px) {
            .overflow-x-auto {
                -webkit-overflow-scrolling: touch;
                touch-action: pan-x;
                overscroll-behavior-x: contain;
            }
        }

        /* Animation */
        .fade-in {
            animation: fadeIn 0.3s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Toast 样式 */
        .toast-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 10000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .toast {
            min-width: 300px;
            max-width: 400px;
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: toastSlideIn 0.3s ease-out;
            border-left: 4px solid #3b82f6;
        }

        .toast.success {
            border-left-color: #10b981;
        }

        .toast.error {
            border-left-color: #ef4444;
        }

        .toast.warning {
            border-left-color: #f59e0b;
        }

        .toast-icon {
            font-size: 20px;
            flex-shrink: 0;
        }

        .toast.success .toast-icon {
            color: #10b981;
        }

        .toast.error .toast-icon {
            color: #ef4444;
        }

        .toast.warning .toast-icon {
            color: #f59e0b;
        }

        .toast-content {
            flex: 1;
            font-size: 14px;
            color: #1e293b;
            line-height: 1.5;
        }

        .toast-close {
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            font-size: 18px;
            padding: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: color 0.2s;
        }

        .toast-close:hover {
            color: #64748b;
        }

        @keyframes toastSlideIn {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes toastSlideOut {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100%);
            }
        }

        .toast.hiding {
            animation: toastSlideOut 0.3s ease-in forwards;
        }

        /* Select dropdown 样式优化 - 提高选项文字对比度 */
        select {
            color: #0f172a !important;
            background-color: #ffffff !important;
        }

        select option {
            color: #0f172a !important;
            background-color: #ffffff !important;
            padding: 12px 16px;
            font-weight: 500;
            font-size: 18px !important;
        }
        
        /* 移动端 select 选项增强对比度 */
        @media (max-width: 768px) {
            select option {
                color: #1e293b !important;
                background-color: #ffffff !important;
                font-weight: 600 !important;
            }
            
            select option:checked {
                background-color: #3b82f6 !important;
                color: #ffffff !important;
            }
        }

        /* 针对移动端下拉菜单的选项样式 - 选中状态 */
        select:focus option:checked {
            background-color: #3b82f6 !important;
            color: #ffffff !important;
        }

        /* 确保下拉菜单选项在深色背景下也有足够对比度 */
        @media (prefers-color-scheme: dark) {
            select {
                color: #0f172a !important;
                background-color: #ffffff !important;
            }
            
            select option {
                color: #0f172a !important;
                background-color: #ffffff !important;
            }
        }

        /* 针对问题类型选择下拉菜单的特殊优化 */
        #ticket-helpdesk-select {
            color: #0f172a !important;
        }

        #ticket-helpdesk-select {
            font-size: 18px !important;
        }

        #ticket-helpdesk-select option {
            color: #0f172a !important;
            background-color: #ffffff !important;
            font-weight: 500;
            font-size: 18px !important;
            line-height: 1.6;
        }

        /* 移动端字体更大和对比度优化 */
        @media (max-width: 768px) {
            #ticket-helpdesk-select {
                font-size: 20px !important;
                background-color: #ffffff !important;
                color: #1e293b !important;
                border: 2px solid #e2e8f0 !important;
            }

            #ticket-helpdesk-select option {
                font-size: 20px !important;
                padding: 14px 16px;
                color: #1e293b !important;
                background-color: #ffffff !important;
                font-weight: 600 !important;
            }
            
            /* 确保下拉菜单选项有足够的对比度 */
            #ticket-helpdesk-select option:not(:checked) {
                color: #1e293b !important;
                background-color: #ffffff !important;
            }
            
            /* 选中状态的选项 */
            #ticket-helpdesk-select option:checked {
                background-color: #3b82f6 !important;
                color: #ffffff !important;
            }
            
            /* 悬停状态（如果支持） */
            #ticket-helpdesk-select option:hover {
                background-color: #f1f5f9 !important;
                color: #0f172a !important;
            }
        }

        /* 增强按钮样式 */
        button, .btn {
            letter-spacing: -0.01em;
        }

        /* 增强输入框样式 */
        input[type="text"],
        input[type="email"],
        input[type="password"],
        textarea,
        select {
            transition: all 0.2s ease;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="password"]:focus,
        textarea:focus,
        select:focus {
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            border-color: var(--primary) !important;
        }

        /* 增强卡片阴影 */
        .hover\:shadow-2xl:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
        }

        /* 平滑过渡 */
        a, button, .transition {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
    