/* ===== Footer响应式布局 ===== */

/* Footer容器 */
.responsive-footer {
    background: #fff;
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
}

/* 主容器 - 并排布局 */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1366px;
    margin: 0 auto;
    gap: 1.5rem;
}

/* Logo区域 */
.footer-logo {
    /* flex: 0 0 auto; */
    /* min-width: 150px; */
    width: 260px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

/* 地址信息区域 */
.footer-info {
   
    min-width: 250px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.footer-info .nav-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

/* 二维码区域 */
.footer-qrcode {
    flex: 0 0 auto;
    text-align: center;
}

.footer-qrcode img {
    max-width: 100px;
    width: 100%;
    height: auto;
}

.footer-qrcode p {
    margin-top: 0.5rem;
    font-size: 12px;
    color: #999;
}

/* 手机端响应式 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-info {
        width: 100%;
        text-align: center;
    }

    .footer-qrcode {
        width: 100%;
    }

    .footer-qrcode img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .responsive-footer {
        padding: 1rem 1rem;
    }

    .footer-info {
        font-size: 13px;
    }
}


/* ===== Footer深色版本 ===== */

/* Footer容器 - 深色版 */
.responsive-footer.dark {
    background: #333;
    border-top: none;
}

/* 文字颜色改为浅色 */
.responsive-footer.dark .footer-info {
    color: #bbb;
}

.responsive-footer.dark .footer-info .nav-title {
    color: #fff;
}

.responsive-footer.dark .footer-qrcode p {
    color: #888;
}



/* 二维码标题 */
.footer-qrcode .qrcode-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

/* 如果是深色版本 */
.responsive-footer.dark .footer-qrcode .qrcode-title {
    color: #fff;
}