/* Cookies授权弹窗样式 - 左下角小窗口 */
.cookies-consent-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    max-width: calc(100% - 40px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    animation: slideInLeft 0.5s ease;
}

.cookies-consent-modal.active {
    display: block;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookies-consent-content {
    padding: 20px;
}

.cookies-consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookies-consent-header .icon {
    width: 40px;
    height: 40px;
    background: #2857B3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.cookies-consent-header .icon i {
    font-size: 20px;
    color: white;
}

.cookies-consent-header-text h2 {
    color: #2857B3;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cookies-consent-header-text p {
    color: #666;
    font-size: 0.9rem;
}

.cookies-consent-body {
    background-color: #f8f9fa;
    padding: 5px;
    margin-bottom: 10px;
}

.cookies-consent-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookies-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.cookies-consent-btn.accept {
    background: #2857B3;
    color: white;
}

.cookies-consent-btn.accept:hover {
    background: #2A69E2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 87, 179, 0.3);
}

.cookies-consent-btn.reject {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #e0e0e0;
}

.cookies-consent-btn.reject:hover {
    background: #e9ecef;
    border-color: #ccc;
}