/* 手机端 */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.puppet {
    flex: 1;
}

.banner {
    width: 100%;
    height: 100px;
    background: url('../imgs/partner-banner2.png') no-repeat center / cover;
}

.banner-wrap {
    display: flex;
    justify-content: flex-end;
}

.banner-content {
    height: 100%;
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 31px;
}

.banner-title {
    font-weight: bold;
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-weight: 400;
    font-size: 10px;
    color: #FFFFFF;
    line-height: 1;
    margin-top: 12px;
    letter-spacing: 1px;
}

.partners {
    width: 100%;
    height: 400px;
    background: url('../imgs/partner-bg2.png') no-repeat top / 100% 191px;
    padding-top: 22px;
}

.partners-pic {
    width: 100%;
    height: 80px;
    background: url('../imgs/partner-2.png') no-repeat center / cover;
}

.swiper-box {
    position: relative;
    width: 100%;
    height: 354px;
    overflow: hidden;
}

.swiper-container {
    position: absolute;
    width: 120%;
    left: -10%;
    /* overflow: hidden; */
}

.swiper-slide {
    transition: transform 0.3s ease;
    transform: scale(0.75);
    text-align: center;
    width: 614px;
    height: 354px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.swiper-slide-active {
    transform: scale(1);
    z-index: 999;
}

/* pc端 */
@media screen and (min-width: 768px) {
    .page-wrapper {
        display: block;
    }

    .puppet {
        display: none;
    }

    .banner {
        width: 100%;
        min-width: 1200px;
        height: 380px;
        background: url('../imgs/partner-banner.png') no-repeat center / cover;
    }

    .banner-wrap {
        display: flex;
        justify-content: flex-end;
    }

    .banner-content {
        height: 100%;
        width: 680px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 125px;
    }

    .banner-title {
        font-weight: bold;
        font-size: 36px;
        color: #FFFFFF;
        line-height: 1;
        letter-spacing: 2px;
    }

    .banner-subtitle {
        font-weight: 400;
        font-size: 20px;
        color: #FFFFFF;
        line-height: 1;
        margin-top: 36px;
        letter-spacing: 1px;
    }

    .partners {
        width: 100%;
        min-width: 1200px;
        height: 906px;
        background: url('../imgs/partner-bg.png') no-repeat top 46px center / 1638px 633px;
        padding-top: 80px;
    }

    .partners-pic {
        width: 100%;
        height: 275px;
        background: url('../imgs/partner.png') no-repeat center / cover;
        margin-bottom: -15px;
    }

    .swiper-box {
        position: relative;
        width: 100%;
        height: 354px;
        overflow: hidden;
        top: -20px;
    }

    .swiper-container {
        position: absolute;
        width: 120%;
        left: -10%;
        /* overflow: hidden; */
    }

    .swiper-slide {
        transition: transform 0.3s ease;
        transform: scale(0.75);
        text-align: center;
        width: 614px;
        height: 354px;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .swiper-slide-active {
        transform: scale(1);
        z-index: 999;
    }
}