.swiper-container {
    width: 100%;
    height: 100%;
}


.customer-all {
    margin-bottom: 186px;
    margin-top: 30px;
}

.customer-back {
    margin-bottom: 90px;
}

.customer-content {
    width: 380px;
    height: 436px;
    background-color: #fff;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    margin-right: 30px;
    margin-bottom: 30px;
}

/* 动画 */
/* .customer-animation {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.customer-animation:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.customer-img {
    transition: transform 0.5s ease;
}

.customer-img:hover {
    cursor: pointer;
} */

.customer-title {
    padding: 20px 20px 0;
    font-size: 16px;
}
.customer-title-e{
    padding: 20px 12px 0;
    font-size: 16px;
    text-align: center;
}

/* .customer-title:hover {
    color: #336df6;
} */

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width:1215px) {
    .customer-content:nth-child(3n) {
        margin-right: 0;
    }

}

@media (max-width:798px) {
    .customer-content {
        margin-right: 0px;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 300ms;
        transform: scale(0.8);
        background-color: #fff !important;
    }

    .slide-text {
        padding-bottom: 20px;
    }

}

@media (min-width:1012px) {

    .slide-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        /* 允许点击穿透到图片 */
        z-index: 999;
        display: none;
    }

    .swiper-button-prev1 {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;

    }

    .swiper-button-next1 {
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
    }

    /* 默认所有 slide 无背景 */
    .swiper-slide {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 300ms;
        background-color: transparent !important;
        transition: all 0.4s ease;
        transform: scale(0.7);
    }

    /* 白色模糊遮罩层（仅两侧显示） */
    .swiper-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.5);
        /* 白色半透明 */
        backdrop-filter: blur(2px);
        opacity: 0;
    }

    /* 下一张图 */
    .swiper-slide-next {
        /* width: 510px !important; */
        background-color: #fff !important;
        padding: 15px;
    }

    /* 上一张图 */
    .swiper-slide-prev {
        /* width: 510px !important; */
        background-color: #fff !important;
        padding: 15px;
    }

    /* 两侧slide显示遮罩 */
    .swiper-slide:not(.swiper-slide-active)::before {
        opacity: 1;
        /* 显示遮罩 */
    }


    /* 图片基础样式 */
    .customer-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 仅中间激活的 slide 显示白色背景 */
    .swiper-slide-active {
        filter: none !important;
        /* 取消模糊 */
        transform: scale(1);
        width: 580px !important;
        background-color: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px 17px;
    }
    .swiper-slide-active .slide-nav{
        display: block;

    }

    /* 文字样式（仅中间 slide 显示） */
    .slide-text {
        display: none;
    }

    .swiper-slide-active .slide-text {
        display: block;
        margin-top: 20px;
        /* 仅激活 slide 显示文字 */
    }

    /* 中间图片正常大小 */
    .swiper-slide-active,
    .swiper-slide-duplicate-active {
        transform: scale(1);
    }


    .flex-wrap-column {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .customer-pc {
        display: block;
    }

    .customer-phone {
        display: none;
    }

}

@media (max-width:1011px) {

    .customer-back {
        margin-bottom: 0px;
    }
    .customer-phone {
        display: block;
    }

    .customer-pc {
        display: none;
    }

    .swiper-slide {
        width: 100%;
    }

    .swiper-slide img {
        padding: 20px;
        max-width: 100%;
    }

    .customer-all {
        margin-bottom: 0px;
    }

}