/* GDPR 弹窗样式 */
.gdpr-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.gdpr-modal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gdpr-modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.5rem;
}

.gdpr-modal-body {
    margin: 15px 0;
    line-height: 1.6;
    color: #34495e;
}

.gdpr-links {
    margin: 15px 0;
}

.gdpr-links a {
    color: #3498db;
    text-decoration: none;
}

.gdpr-links a:hover {
    text-decoration: underline;
}

.gdpr-cookie-settings {
    margin-top: 20px;
    padding: 15px;
    background-color: #e9ecef;
    border-radius: 5px;
}

.gdpr-cookie-option {
    margin: 10px 0;
    padding: 10px;
    background-color: white;
    border-radius: 5px;
}

.gdpr-cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gdpr-cookie-option input {
    margin-right: 10px;
}

.gdpr-cookie-option small {
    color: #7f8c8d;
    margin-left: 10px;
    font-size: 0.8rem;
}

.gdpr-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.gdpr-btn-primary {
    background-color: #2ecc71;
    color: white;
}

.gdpr-btn-primary:hover {
    background-color: #27ae60;
}

.gdpr-btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.gdpr-btn-secondary:hover {
    background-color: #bdc3c7;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .gdpr-modal-content {
        padding: 15px;
    }
    
    .gdpr-modal-footer {
        flex-direction: column;
    }
    
    .gdpr-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}