.banner {
    width: 100%;
    height: 95rem;
    position: relative;
    padding: 0 26rem;
    color: #fff;
}

.banner div,
.banner p,
.banner span {
    z-index: 1;
}

.banner-swiper {
    height: 100%;
    /* display: flex;
justify-content: space-between; */
}

.banner-swiper-center {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.banner-swiper-img {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
    background-color: rgba(5, 23, 60, 0.2);
}

.banner-swiper-img>img {
    width: 100%;
    height: 100%;
    transition: all 1s;
    object-fit: cover;
}

.banner-title {
    font-size: 5rem;
    line-height: 6.9rem;
    font-weight: 900;
    width: 60.2rem;
    flex-wrap: wrap;
}

.banner-swiper-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.banner-swiper-left p {
    width: 43.7rem;
    font-size: 2.4rem;
    line-height: 3.9rem;
    margin: 3.2rem 0 6.4rem;
}

.banner-swiper-right {
    position: relative;
    display: flex;
    height: 100%;
    padding: 4rem 0;
    justify-content: flex-end;
    align-items: flex-end;
}

.banner-prev,
.banner-next {
    width: 4rem;
    height: 4rem;
    margin-left: 2.4rem;
    opacity: 0.4;
}

.banner-prev img,
.banner-next img {
    width: 100%;
    height: 100%;
}

.banner-prev img {
    transform: rotate(180deg);
}

.banner-next:hover,
.banner-prev:hover {
    opacity: 1;
    cursor: pointer;
}

.banner-next-img {
    width: 30rem;
    height: 18rem;
    margin-left: 3.2rem;
    position: relative;
    padding: 1.6rem 1.2rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border-radius: 0.9rem;
    overflow: hidden;
}

.banner-next-img>img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    /*transition: all 1s;*/
}

.banner-num span {
    font-size: 1.6rem;
    font-weight: bold;
}

.banner-num span:first-child {
    font-size: 4rem;
}

.banner-out {
    width: 6rem;
    height: 6rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.banner-out img {
    width: 100%;
    height: 100%;
}

@keyframes right {
    0% {
        transform: rotate(-135deg);
    }

    50%,
    100% {
        transform: rotate(45deg);
    }

}

@keyframes left {

    0%,
    50% {
        transform: rotate(-135deg);
    }

    100% {
        transform: rotate(45deg);
    }
}


.circle-wrap {
    width: 3rem;
    height: 6rem;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
}

.circle-wrap:nth-child(2) {
    left: 3rem;
}

.warp-all {
    width: 6rem !important;
    height: 6rem !important;
    box-sizing: border-box;
    border: 0.1rem solid transparent;
    border-radius: 50%;
    position: absolute;
    top: 0;
    transition-timing-function: linear;
}


.circle-wrap .left {
    left: 0;
    border-bottom: 0.1rem solid #FFFFFF;
    border-left: 0.1rem solid #FFFFFF;
    transform: rotate(-135deg);
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.circle-wrap .right {
    right: 0;
    border-top: 0.1rem solid #FFFFFF;
    border-right: 0.1rem solid #FFFFFF;
    transform: rotate(-135deg);
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.pause {
    animation-play-state: paused;
}

.startL {
    animation-name: left;

}

.startR {
    animation-name: right;
}

.handoff {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .banner {
        width: 100%;
        height: 75.2rem;
        position: relative;
        padding: 0 1.6rem;
        color: #fff;
        background-color: rgba(5, 23, 60, 0.2);
    }

    .banner-swiper-left {
        padding-bottom: 8rem;
    }

    .banner-title {
        font-size: 2.4rem;
        line-height: 3.4rem;
        font-weight: 900;
        width: 27rem;
        flex-wrap: wrap;
    }

    .banner-swiper-left p {
        width: 25.5rem;
        font-size: 1.4rem;
        line-height: 1.8rem;
        margin: 3.2rem 0 16rem;
    }

    .banner-swiper-right {
        position: absolute;
        display: flex;
        height: 100%;
        padding: 1.6rem 0;
        justify-content: flex-end;
        align-items: flex-end;
        right: 1.6rem;
        top: 0;
    }

    .banner-prev,
    .banner-next {
        display: none;
    }

    .banner-next-img {
        width: 16.6rem;
        height: 10rem;
        margin-left: 3.2rem;
        position: relative;
        padding: 0.8rem;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        border-radius: 0.8rem;
        overflow: hidden;
    }

    .banner-next-img>img {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        /*transition: all 1s;*/
    }

    .banner-num span {
        font-size: 1rem;
        font-weight: bold;
    }

    .banner-num span:first-child {
        font-size: 2.4rem;
    }

    .banner-out {
        width: 4rem;
        height: 4rem;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .banner-out img {
        width: 100%;
        height: 100%;
    }



    .circle-wrap {
        width: 2rem;
        height: 4rem;
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        left: 0;
    }

    .circle-wrap:nth-child(2) {
        left: 2rem;
    }

    .warp-all {
        width: 4rem !important;
        height: 4rem !important;
        box-sizing: border-box;
        border: 0.1rem solid transparent;
        border-radius: 50%;
        position: absolute;
        top: 0;
        transition-timing-function: linear;
    }


}

