/* ==================== 首页公共 Footer 样式 ==================== */

.home-footer {
    background-color: #F4F5F8;
    border-top: 1px solid #eee;
    padding: 40px 0 0;
}

.home-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

/* 左侧品牌信息 */
.footer-brand {
    width: 250px;
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.footer-logo-sub {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 6px;
    font-size: 19px;
    color: #2D6CDE;
    margin-top: -10px;
    margin-bottom: 45px;
}

.footer-contact {
    font-size: 13px;
    color: #666;
    line-height: 2;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 600;
    color: #101010;
    margin-bottom: 20px;
}

.footer-phone-icon {
    font-size: 18px;
}

.footer-email,
.footer-time {
    color: #666;
    font-size: 14px;
}

/* 中间链接列 */
.footer-columns {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-col {
    min-width: 0;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 600;
    color: #101010;
    margin-bottom: 24px;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-list li {
    margin-bottom: 10px;
}

.footer-col-list a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col-list a:hover {
    color: #2a7de1;
}

/* 右侧二维码 */
.footer-qrcodes {
    display: flex;
    gap: 30px;
    flex-shrink: 0;
}

.footer-qrcode-item {
    text-align: center;
}

.footer-qrcode-title {
    font-size: 15px;
    font-weight: 600;
    color: #101010;
    /* margin-bottom: 8px; */
}

.footer-qrcode-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.footer-qrcode-img {
    width: 100px;
    height: 100px;
    border: 1px dashed #ddd;
    padding: 4px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-qrcode-img svg {
    width: 100%;
    height: 100%;
}

/* 底部版权 */
.footer-copyright-bar {
    margin-top: 30px;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 12px;
    color: #949698;
    background-color: #F4F5F8;
}

.footer-copyright-bar a {
    color: #949698;
    text-decoration: none;
}

.footer-copyright-bar a:hover {
    color: #2a7de1;
}

/* ==================== 移动端 Footer ==================== */
@media (max-width: 768px) {
    .home-footer {
        display: none !important;
    }

    .home-footer-inner {
        flex-direction: column;
        gap: 24px;
        padding: 0 16px;
    }

    .footer-brand {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-sub {
        margin-left: 0;
        justify-content: center;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-phone {
        justify-content: center;
    }

    .footer-columns {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-col {
        width: calc(50% - 10px);
    }

    .footer-qrcodes {
        justify-content: center;
        gap: 20px;
    }

    .footer-qrcode-img {
        width: 80px;
        height: 80px;
    }

    .footer-copyright-bar {
        margin-top: 20px;
        padding: 12px 16px;
        font-size: 11px;
        line-height: 1.8;
    }
}