/* Footer */
.footer {
    background: #61b23d;
    color: white;
    padding: 20px 0 0px;
}

.footer-content {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 10px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* 修复 logo 居中对齐 */
.footer-section .footer-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer-section .footer-logo img {
    margin-bottom: 20px;
    max-width: 100px;
    height: auto;
    display: block;
}

.footer-section h4 {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: bold;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

/* 修复二维码部分的居中对齐 */
/* .footer-section:last-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
} */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    /*border-radius: 50%;*/
    /*background: linear-gradient(45deg, #4CAF50, #2196F3);*/
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    margin: 10px 0;
    border-radius: 5px;
    display: block;
    object-fit: contain;
    padding: 5px;
    box-sizing: border-box;
}

.qr-code-container {
    /* text-align: left; */
    margin-top: 10px;
}

.qr-code-label {
    text-align: center;
    font-size: 12px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.bottom-container {
    border-top: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    color: var(--text-color);
}


.footer-bottom .footer-left {
    text-align: center;
}

.footer-bottom .footer-center {
    text-align: center;
    line-height: 1.6;
}

.footer-bottom .footer-right {
    text-align: center;

    font-size: 13px;
    color: #555;
}

.footer-bottom p {
    margin: 5px 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section h4 {
        margin-bottom: 10px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    .footer-bottom .footer-left,
    .footer-bottom .footer-center,
    .footer-bottom .footer-right {
        text-align: center;
    }
}