 /* Cookie对话框样式 - 符合SEO要求 */
 .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-consent h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-consent p {
    margin: 0 0 15px 0;
    color: #666;
}

.cookie-consent .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 100px;
}

.cookie-consent .accept-btn {
    background: #27ae60;
    color: white;
}

.cookie-consent .accept-btn:hover {
    background: #219a52;
}

.cookie-consent .reject-btn {
    background: #e74c3c;
    color: white;
}

.cookie-consent .reject-btn:hover {
    background: #c0392b;
}

.cookie-consent .policy-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent .policy-link:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .cookie-consent .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-consent button {
        width: 100%;
    }
}