.banner-wrap  {
    margin-top: 94px;
    padding: unset;
    height: 550px;
}
.banner-wrap .swiper-slide > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-wrap .container {
    padding-top: 88px;
    position: relative;
    z-index: 1;
    display: flex;
}
.banner-wrap .container .left {
    transform: translateX(-240px);
    opacity: 0;
    transition: all 1.2s ease;
}
.banner-wrap .container .left img {
    max-width: 220px;
}
.banner-wrap .swiper-slide-active .container .left {
    transform: translateX(0px);
    opacity: 1;
}
.banner-wrap .container .right {
    flex: 1;
    margin-left: 140px;
}
.banner-wrap .container .right .rich-text {
    transform: translateY(120px);
    opacity: 0;
    transition: all 1.2s ease;
}
.banner-wrap .container .right h2 {
    font-size: 56px;
    color: #1d42ab;
    margin: unset;
    transform: translateY(-60px);
    transition: all 1.2s ease;
}
.banner-wrap .swiper-slide-active .container .right  h2 {
    transform: translateY(0);
}
.banner-wrap .container .right .rich-text p {
    line-height: 1.8;
    color: #333;
}
.banner-wrap .swiper-slide-active .container .right .rich-text {
    transform: translatey(0px);
    opacity: 1;
}
.banner-wrap .container .right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 53px;
    background: #053991;
    border-radius: 21px;
    font-size: 20px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #EFF1F5;
    transition: all 1.2s ease;
    float: right;
    transform: translateX(240px);
    opacity: 0;
    margin-top: 30px;
}
.banner-wrap .swiper-slide-active .container .right a {
    transform: translateX(0px);
    opacity: 1;
}
.banner-wrap .container .right a:hover {
    background: #14348d;
    transform: scale(1.1);
}
@media screen and (max-width: 640px) {
    .banner-wrap {
        margin: unset;
        padding-top: unset;
        height: calc(100vh - 150px);
    }
    .banner-wrap .container {
        flex-direction: column;
        padding-top: 60px;
    }
    .banner-wrap .container .rich-text {
        /*display: none;*/
        font-size: 12px;
        color: #666;
        margin: 20px 0;
    }
    .banner-wrap .container .left {
        text-align: center;
        margin-bottom: 30px;
    }
    .banner-wrap .container .left img {
        width: 40%;
        text-align: center;
    }
    .banner-wrap .container .right {
        margin: unset;
    }
    .banner-wrap .container .right h2 {
        font-size: 18px;
        text-align: center;
    }
    .banner-wrap .container .right a {
        width: 160px;
        height: 33px;
        font-size: 14px;
        float: unset;
        margin: 0 auto;
    }
}

.tabs-wrap ul {
    display: flex;
    padding-top: 40px;
    margin-bottom: 60px;
    justify-content: space-around;
}
.tabs-wrap ul li {
    margin-right: 28px;
    text-align: center;
}
.tabs-wrap ul li img {
    width: 110px;
    transition: all .3s ease;
}
.tabs-wrap ul li.active img,
.tabs-wrap ul li:hover img {
    transform: scale(1.1);
}
.tabs-wrap ul li.active,
.tabs-wrap ul li:hover a {
    color: #053991;
}
@media screen and (max-width: 640px) {
    .tabs-wrap ul {
        flex-wrap: wrap;
    }
    .tabs-wrap ul li {
        float: left;
        width: 50%;
        margin: 0 0 20px;
        font-size: 14px;
    }
}
