.footer-wrap {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    position: relative;
    z-index: 1;
}

/* ===== 上半部分：导航 + 公司信息 ===== */
.footer-top {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 50px 0 0px;
}
.footer-top-inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    box-sizing: border-box;
}
.footer-nav-area {
    display: flex;
    gap: 50px;
    flex: 1;
    flex-wrap: wrap;
}
.footer-nav-col { min-width: 100px; }
.footer-nav-col .fnc-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-nav-col .fnc-title:hover {
    color: #00a79d;
}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-col li { margin-bottom: 10px; }
.footer-nav-col a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}
.footer-nav-col a:hover { color: #00a79d; }

.footer-contact {
	margin-left: auto;
    flex-shrink: 0;
    min-width: 240px;
	max-width: 500px;
}
.footer-contact .fc-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}
.footer-contact .fc-item {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    white-space: normal;
    word-break: break-word;
}
.footer-contact .fc-item span { color: #666; }

/* ===== 下半部分：Logo + 版权 + 二维码 ===== */
.footer-bottom {
    background: #00a79d;
}
.footer-inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
}

/* 左侧：Logo */
.footer-logo {
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
}
.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* 中间：版权 + 简介（垂直居中） */
.footer-center {
    flex: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}
.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}
.footer-intro {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    max-width: 700px;
}

/* 右侧：二维码 + 图标链接 */
.footer-qrcodes {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    align-self: center;
    align-items: center;
}
.footer-qr-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-qr-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    background: #fff;
    padding: 2px;
    display: block;
}
.footer-qr-item p {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
    line-height: 1.4;
}

/* ===== 桌面端：图标链接样式（修复重点） ===== */
.footer-qr-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    color: #fff;
}
.footer-qr-link .footer-qr-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.footer-qr-link .footer-qr-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}
.footer-qr-link p {
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
}
.footer-qr-link:hover .footer-qr-icon {
    color: #fff;
    transform: scale(1.1);
    transition: transform 0.3s;
}
.footer-qr-link:hover p {
    color: #fff;
}

/* ===== 响应式 ===== */
@media(max-width: 1366px){
    .footer-top-inner { 
        padding: 0 35px; 
        gap: 40px;
    }
    .footer-inner { padding: 30px 35px; }
    .footer-nav-area { 
        gap: 28px; 
        flex-wrap: nowrap;
    }
    .footer-nav-col { min-width: auto; }
    .footer-contact { 
        min-width: 180px; 
        max-width: 260px;
        flex-shrink: 0;
    }
    .footer-contact .fc-item {
        line-height: 1.7;
    }
}
@media(max-width: 1024px){
    .footer-top-inner { 
        padding: 0 30px; 
        flex-direction: column;
        gap: 30px;
    }
    .footer-inner { padding: 30px 30px; }
    .footer-nav-area { 
        gap: 24px; 
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }
    .footer-nav-col { min-width: 80px; }
    .footer-contact {
        min-width: auto;
        width: 100%;
        max-width: none;
    }
    .footer-contact .fc-title {
        margin-bottom: 12px;
    }
    .footer-contact .fc-item {
        display: inline-block;
        margin-right: 24px;
        line-height: 1.7;
    }
    .footer-inner {
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-center {
        order: 0;
        flex: 1 1 300px;
    }
    /* 横屏手机图标样式 */
    .footer-qrcodes {
        display: flex;
        gap: 20px;
        flex-shrink: 0;
        align-self: center;
        align-items: center;
    }
    .footer-qr-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer-qr-item img,
    .footer-qr-icon {
        width: 56px;
        height: 56px;
        object-fit: cover;
        border-radius: 4px;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-qr-item p,
    .footer-qr-link p {
        font-size: 12px;
        color: rgba(255,255,255,0.9);
        margin-top: 6px;
        line-height: 1.4;
        display: block;
    }
    .footer-qr-icon svg,
    .footer-qr-link .footer-qr-icon svg {
        width: 32px;
        height: 32px;
        color: #fff;
        stroke: #fff;
        fill: none;
    }
    .footer-qr-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
    }
}
@media(max-width: 768px){
    .footer-top { display: none; }
    .footer-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        gap: 16px;
    }
    /* 版权文字：全宽，第一行，居中 */
    .footer-center {
        order: -1;
        width: 100%;
        flex: none;
        align-items: center;
        gap: 6px;
        margin-bottom: 4px;
    }
    .footer-copyright {
        font-size: 12px;
        line-height: 1.5;
    }
    .footer-intro {
        font-size: 11px;
        line-height: 1.6;
        max-width: 100%;
    }
    /* Logo：左侧 */
    .footer-logo {
        order: 0;
        flex-shrink: 0;
    }
    .footer-logo img {
        height: 32px;
    }
    /* 图标组：右侧 */
    .footer-qrcodes {
        order: 1;
        flex-shrink: 0;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-qr-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .footer-qr-item img,
    .footer-qr-icon {
        width: 40px;
        height: 40px;
        background: transparent;
        padding: 0;
    }
    .footer-qr-item p,
    .footer-qr-link p {
        display: block;
        font-size: 11px;
        color: rgba(255,255,255,0.9);
        margin: 0;
        line-height: 1.3;
        white-space: nowrap;
    }
    .footer-qr-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }
    .footer-qr-link .footer-qr-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border-radius: 0;
        padding: 0;
    }
    .footer-qr-link .footer-qr-icon svg {
        width: 32px;
        height: 32px;
        color: #fff;
        stroke: #fff;
        fill: none;
    }
    .footer-qr-link[href*="wa.me"] .footer-qr-icon svg {
        color: #fff;
        stroke: #fff;
    }
}
@media(max-width: 480px){
    .footer-top-inner { padding: 0 16px; }
    .footer-inner { padding: 16px 20px; gap: 12px; }
    .footer-nav-area { gap: 16px; }
    .footer-contact .fc-item {
        display: block;
        margin-right: 0;
    }
    .footer-copyright {
        font-size: 11px;
    }
    .footer-intro {
        font-size: 10px;
    }
    .footer-logo img {
        height: 28px;
    }
    .footer-qr-item img,
    .footer-qr-icon {
        width: 36px;
        height: 36px;
    }
    .footer-qr-link .footer-qr-icon svg {
        width: 28px;
        height: 28px;
    }
    .footer-qr-item p,
    .footer-qr-link p {
        font-size: 10px;
    }
}