 /* Cookie 隐私提示框样式 */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 3px solid #0066cc;
            border-left: 3px solid #0066cc;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 10000;
            padding: 20px;
            max-width: 100%;
            display: none;
        }

        .cookie-consent-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cookie-consent-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin: 0;
        }

        .cookie-consent-text {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .cookie-consent-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 10px 20px;
            border: 1px solid #333;
            background: #fff;
            color: #333;
            font-size: 14px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .cookie-btn:hover {
            background: #f5f5f5;
        }

        .cookie-btn-accept {
            background: #ff6600;
            color: #fff;
            border-color: #ff6600;
        }

        .cookie-btn-accept:hover {
            background: #e55a00;
            border-color: #e55a00;
        }

        .cookie-btn-customize,
        .cookie-btn-reject {
            background: #fff;
            color: #333;
            border-color: #333;
        }

        .cookie-btn-customize:hover,
        .cookie-btn-reject:hover {
            background: #f5f5f5;
        }

        /* Cookie 设置面板样式 */
        .cookie-settings {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10001;
            display: none;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
        }

        .cookie-settings-content {
            background: #fff;
            border-top: 3px solid #0066cc;
            border-left: 3px solid #0066cc;
            max-width: 600px;
            width: 100%;
            padding: 25px;
            border-radius: 8px 8px 0 0;
            max-height: 80vh;
            overflow-y: auto;
        }

        .cookie-settings-title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin: 0 0 20px 0;
        }

        .cookie-settings-options {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px;
        }

        .cookie-option {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cookie-option label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            cursor: pointer;
        }

        .cookie-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .cookie-option-desc {
            font-size: 13px;
            color: #666;
            margin: 0;
            padding-left: 28px;
            line-height: 1.5;
        }

        .cookie-settings-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        .cookie-btn-save {
            background: #ff6600;
            color: #fff;
            border-color: #ff6600;
        }

        .cookie-btn-save:hover {
            background: #e55a00;
            border-color: #e55a00;
        }

        .cookie-btn-cancel {
            background: #fff;
            color: #333;
            border-color: #ccc;
        }

        .cookie-btn-cancel:hover {
            background: #f5f5f5;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .cookie-consent {
                padding: 15px;
            }
            
            .cookie-consent-title {
                font-size: 16px;
            }
            
            .cookie-consent-text {
                font-size: 13px;
            }
            
            .cookie-consent-buttons {
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
                padding: 12px 20px;
            }
            
            .cookie-settings-content {
                padding: 20px;
                max-height: 90vh;
            }
            
            .cookie-settings-buttons {
                flex-direction: column;
            }
            
            .cookie-settings-buttons .cookie-btn {
                width: 100%;
            }
        }