/* ===== 合作客户页面专属样式 ===== */
/* 所有类名使用 .hz- 前缀，避免与其他页面冲突 */

/* ===== Banner 与联系我们页面(lxwm)完全一致 ===== */
.hz-banner-tall {
    position: relative;
    min-height: clamp(360px, 38vw, 600px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: #0056b7;
}

.hz-banner-tall .x-con {
    width: 100%;
    min-height: clamp(360px, 38vw, 600px);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hz-banner-tall .public-img {
    position: absolute;
    inset: 0;
}

.hz-banner-tall .public-img::before {
    display: none;
}

.hz-banner-tall .public-img::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 21, 47, .78), rgba(7, 21, 47, .36) 58%, rgba(7, 21, 47, .08));
    content: "";
}

.hz-banner-tall .public-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hz-banner-tall .container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 80px 0 clamp(60px, 7vw, 110px);
}

/* ===== Banner 大标题（与联系我们页面一致） ===== */
.hz-banner-tall .x-title {
    margin: 0;
    color: #fff;
    font-size: .50rem !important;
    font-weight: 400;
    line-height: calc(60/50);
    max-width: none;
    letter-spacing: normal;
}

.hz-banner-tall .x-title br {
    display: none;
}

/* ===== Banner 小字介绍（与联系我们页面一致） ===== */
.hz-banner-desc {
    max-width: 6.6rem;
    margin: .22rem 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: .18rem;
    line-height: calc(32/18);
    font-weight: 400;
}

@media (max-width: 991px) {
    .hz-banner-tall,
    .hz-banner-tall .x-con {
        min-height: clamp(360px, 38vw, 600px);
    }
}

/* ===== 合作客户页面 ===== */
    .hz-page {
        background: #fff;
    }

    /* 标题区 */
    .hz-head {
        padding: .8rem 0 .5rem;
        text-align: center;
    }

    .hz-head .c-en {
        display: block;
        margin-top: .15rem;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 6px;
        color: #0056b7;
        text-transform: uppercase;
    }

    .hz-head .c-desc {
        max-width: 760px;
        margin: .35rem auto 0;
        font-size: 16px;
        line-height: 1.9;
        color: #687b90;
    }

    /* logo 网格 */
    .hz-grid-wrap {
        padding: .4rem 0 1rem;
        background: #f6f9fc;
    }

    .hz-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: .22rem;
    }

    .hz-card {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 1.5rem;
        padding: .3rem .2rem;
        background: #fff;
        border: 1px solid #e8eef5;
        border-radius: 8px;
        overflow: hidden;
        transition: all .35s cubic-bezier(.16, 1, .3, 1);
        cursor: default;
    }

    .hz-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #0056b7, #4d7ccc);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .hz-card:hover {
        border-color: #0056b7;
        box-shadow: 0 12px 32px rgba(0, 86, 183, .12);
        transform: translateY(-6px);
    }

    .hz-card:hover::before {
        transform: scaleX(1);
    }

    .hz-card img {
        max-width: 72%;
        max-height: .85rem;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: .7;
        transition: all .35s ease;
    }

    .hz-card:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.08);
    }

    .hz-card .hz-name {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: .1rem .15rem;
        font-size: 13px;
        color: #fff;
        text-align: center;
        background: linear-gradient(180deg, rgba(0, 86, 183, 0), rgba(0, 86, 183, .85));
        opacity: 0;
        transform: translateY(100%);
        transition: all .3s ease;
    }

    .hz-card:hover .hz-name {
        opacity: 1;
        transform: translateY(0);
    }

    /* 信任数据条 */
    .hz-stats {
        padding: .6rem 0;
        background: linear-gradient(135deg, #0056b7 0%, #003d82 100%);
    }

    .hz-stats .container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: .3rem;
        text-align: center;
    }

    .hz-stat-item {
        color: #fff;
    }

    .hz-stat-num {
        font-size: .48rem;
        font-weight: 700;
        line-height: 1.2;
        font-family: 'font-shuzi', 'PingFang SC', 'Microsoft YaHei', Arial;
    }

    .hz-stat-num span {
        font-size: .24rem;
        font-weight: 400;
        margin-left: 4px;
    }

    .hz-stat-label {
        margin-top: .1rem;
        font-size: 15px;
        opacity: .85;
    }

    /* 响应式 */
    @media (max-width: 1199px) {
        .hz-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 991px) {
        .hz-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: .18rem;
        }

        .hz-card {
            min-height: 1.3rem;
        }

        .hz-stats .container {
            grid-template-columns: repeat(2, 1fr);
            gap: .35rem;
        }

        .hz-stat-num {
            font-size: .4rem;
        }
    }

    @media (max-width: 767px) {
        .hz-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: .15rem;
        }

        .hz-card {
            min-height: 1.1rem;
            padding: .2rem .1rem;
        }

        .hz-card img {
            max-width: 75%;
            max-height: .7rem;
        }

        .hz-head .c-desc {
            font-size: 14px;
            padding: 0 .2rem;
        }

        .hz-stats .container {
            grid-template-columns: repeat(2, 1fr);
        }

        .hz-stat-num {
            font-size: .34rem;
        }

        .hz-stat-label {
            font-size: 13px;
        }
    }

/* ===== 销售网络介绍 ===== */
.hz-sales {
    padding: .7rem 0;
    background: #fff;
}

.hz-sales .container {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.hz-sales-text {
    flex: 1;
}

.hz-sales-text h3 {
    font-size: .3rem;
    font-weight: 700;
    color: #1a2b45;
    margin-bottom: .1rem;
}

.hz-sales-text h3 small {
    display: block;
    font-size: .15rem;
    font-weight: 400;
    color: #0056b7;
    letter-spacing: 3px;
    margin-top: .05rem;
}

.hz-sales-text p {
    font-size: .15rem;
    line-height: 1.9;
    color: #5a6d85;
    margin-bottom: .12rem;
}

.hz-sales-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .1rem;
    margin-top: .2rem;
}

.hz-sales-tag {
    padding: .06rem .16rem;
    background: #e8f1fc;
    color: #0056b7;
    font-size: .13rem;
    border-radius: 4px;
    font-weight: 600;
}

.hz-sales-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.hz-sales-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 86, 183, .1);
}

/* ===== 全球客户分布地图 ===== */
.hz-map-section {
    padding: .7rem 0;
    background: #f6f9fc;
}

.hz-map-head {
    text-align: center;
    margin-bottom: .4rem;
}

.hz-map-head h3 {
    font-size: .32rem;
    font-weight: 700;
    color: #1a2b45;
}

.hz-map-head h3 small {
    display: block;
    font-size: .15rem;
    font-weight: 400;
    color: #8a9bb0;
    letter-spacing: 3px;
    margin-top: .05rem;
}

.hz-map-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 86, 183, .1);
    border: 1px solid #e8eef5;
}

#hzGlobalMap {
    width: 100%;
    height: 5rem;
}

.hz-map-legend {
    position: absolute;
    bottom: .15rem;
    left: .15rem;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    padding: .1rem .15rem;
    border-radius: 8px;
    font-size: .12rem;
    color: #4a5d75;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.hz-map-legend-item {
    display: flex;
    align-items: center;
    gap: .06rem;
    margin-bottom: .04rem;
}

.hz-map-legend-item:last-child {
    margin-bottom: 0;
}

.hz-map-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hz-map-dot.hq {
    background: #ffb400;
    box-shadow: 0 0 0 3px rgba(255, 180, 0, .3);
}

.hz-map-dot.customer {
    background: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, .2);
}

/* ===== 产品分类占比 ===== */
.hz-pie-section {
    padding: .7rem 0;
    background: #fff;
}

.hz-pie-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}

.hz-pie-chart {
    flex: 0 0 2.8rem;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #0056b7 0% 55%,
        #4d94e8 55% 75%,
        #e53935 75% 90%,
        #ffb400 90% 95%,
        #b0bec5 95% 100%
    );
    box-shadow: 0 8px 24px rgba(0, 86, 183, .15);
}

.hz-pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.4rem;
    height: 1.4rem;
    background: #fff;
    border-radius: 50%;
}

.hz-pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hz-pie-center-num {
    font-size: .28rem;
    font-weight: 700;
    color: #0056b7;
    line-height: 1;
}

.hz-pie-center-label {
    font-size: .11rem;
    color: #8a9bb0;
    margin-top: .04rem;
}

.hz-pie-legend {
    flex: 0 0 auto;
}

.hz-pie-legend-item {
    display: flex;
    align-items: center;
    gap: .1rem;
    margin-bottom: .12rem;
    font-size: .14rem;
    color: #4a5d75;
}

.hz-pie-legend-item:last-child {
    margin-bottom: 0;
}

.hz-pie-legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.hz-pie-legend-name {
    flex: 1;
    min-width: 1.2rem;
}

.hz-pie-legend-value {
    font-weight: 700;
    color: #1a2b45;
    min-width: .5rem;
    text-align: right;
}

/* ===== 响应式 - 新增部分 ===== */
@media (max-width: 991px) {
    .hz-sales .container {
        flex-direction: column;
        gap: .3rem;
    }

    .hz-sales-img {
        flex: 1;
        max-width: 100%;
    }

    #hzGlobalMap {
        height: 4rem;
    }

    .hz-pie-wrap {
        flex-direction: column;
        gap: .3rem;
    }
}

@media (max-width: 767px) {
    .hz-sales {
        padding: .5rem 0;
    }

    .hz-sales-text h3 {
        font-size: .24rem;
    }

    .hz-sales-text p {
        font-size: .14rem;
    }

    .hz-map-section {
        padding: .5rem 0;
    }

    #hzGlobalMap {
        height: 3.2rem;
    }

    .hz-map-legend {
        font-size: .11rem;
        padding: .08rem .1rem;
    }

    .hz-pie-section {
        padding: .5rem 0;
    }

    .hz-pie-chart {
        flex: 0 0 2.2rem;
        width: 2.2rem;
        height: 2.2rem;
    }

    .hz-pie-chart::after {
        width: 1.1rem;
        height: 1.1rem;
    }
}
