       /* Cookie 弹窗基础样式 */
        .cookie-modal {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            padding: 20px;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            font-family: Arial, sans-serif;
            line-height: 1.5;
            color: #333;
        }

        .cookie-modal.active {
            transform: translateY(0);
        }

        .cookie-container {
            max-width: 1310px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .cookie-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .cookie-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #222;
        }

        .cookie-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .cookie-description {
            margin-bottom: 20px;
            color: #555;
        }

        .cookie-tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }

        .cookie-tab {
            padding: 10px 20px;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            font-weight: bold;
            color: #666;
        }

        .cookie-tab.active {
            color: #0066cc;
            border-bottom-color: #0066cc;
        }

        .cookie-content {
            display: none;
        }

        .cookie-content.active {
            display: block;
        }

        .cookie-category {
            margin-bottom: 25px;
            border: 1px solid #eee;
            border-radius: 5px;
            overflow: hidden;
        }

        .cookie-category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: #f9f9f9;
            cursor: pointer;
        }

        .cookie-category-title {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .cookie-category-toggle {
            position: relative;
            width: 50px;
            height: 24px;
        }

        .cookie-category-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-category-slider {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .cookie-category-slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        .cookie-category-toggle input:checked + .cookie-category-slider {
            background-color: #0066cc;
        }

        .cookie-category-toggle input:checked + .cookie-category-slider:before {
            transform: translateX(26px);
        }

        .cookie-category-content {
            padding: 15px;
            background: #fff;
            border-top: 1px solid #eee;
            display: none;
        }

        .cookie-category.active .cookie-category-content {
            display: block;
        }

        .cookie-category-description {
            margin-bottom: 15px;
            color: #666;
            font-size: 0.9rem;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            font-size: 0.9rem;
        }

        .cookie-table th, .cookie-table td {
            padding: 10px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .cookie-table th {
            background: #f5f5f5;
            font-weight: bold;
        }

        .cookie-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .cookie-btn-primary {
            background: #0066cc;
            color: white;
            border: none;
        }

        .cookie-btn-primary:hover {
            background: #0055aa;
        }

        .cookie-btn-secondary {
            background: white;
            color: #0066cc;
            border: 1px solid #0066cc;
        }

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

        .cookie-btn-tertiary {
            background: none;
            color: #666;
            border: none;
            text-decoration: underline;
        }

        .cookie-btn-tertiary:hover {
            color: #333;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .cookie-tabs {
                flex-direction: column;
                border-bottom: none;
            }
            
            .cookie-tab {
                border-bottom: 1px solid #ddd;
                border-left: 2px solid transparent;
            }
            
            .cookie-tab.active {
                border-left-color: #0066cc;
                border-bottom-color: #ddd;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }