﻿/* ===== 页脚 ===== */
.footer {
    background: var(--bg-footer);
    color: var(--text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    /*gap: var(--spacing-sm);*/
    margin-top: -20px;
    margin-bottom: 15px;
}

    .footer-logo .logo-icon {
        transform: translateX(-20px);
    }

    .footer-logo .logo-text {
        margin-left: 15px;
    }

.footer-title {
    font-size: var(--font-base);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-info p {
    font-size: var(--font-xs);
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: var(--font-xs);
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--primary-color);
        }

.qrcode-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xs);
    /*opacity: 0.6;*/
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

    .footer-bottom p {
        font-size: var(--font-xs);
        opacity: 0.7;
        margin-bottom: var(--spacing-xs);
    }
