.animated {
    opacity: 0;
}



#index-swiper {
    width: 100%;
    height: 100vh;
}

#index-swiper>.swiper-wrapper {
    /* transition: all 3s ease-in-out !important; */
    /* transition-delay: .3s; */
}

#index-swiper>.swiper-wrapper>.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
}


.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
    /* transition-delay: .3s !important; */
}

.slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transform: translateX(-200px); */
    /* opacity: 0; */
    transition: all .4s;
    position: relative;
    z-index: 1;
}


.ani-slide .slide-inner {
    transform: translateX(0);
    opacity: 1;
}

#banner-swiper {
    height: 100%;
}

#banner-swiper .content-img {
    height: 100%;
}

.banner-swiper-prev,
.banner-swiper-next {
    color: #eaeaea;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transition: all ease-out .3s;
}

.banner-swiper-prev:hover,
.banner-swiper-next:hover {
    background-color: rgba(0, 0, 0, .6);
}

.banner-swiper-prev {
    left: 20px;
    padding-right: 3px;
}

.banner-swiper-prev::after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 36px;
}

.banner-swiper-next {
    right: 20px;
    padding-left: 3px;
}

.banner-swiper-next::after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 36px;
}

.index-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #008d88;
    opacity: 1;
    transform: scale(0.6);
    margin: 13px 0 !important;
}

.index-swiper-pagination .swiper-pagination-bullet-active {
    transform: scale(1);
    position: relative;
}

.index-swiper-pagination .swiper-pagination-bullet-active::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -4px;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background: transparent;
    border: 2px solid #008d88;
    border-radius: 10px;
}

/* banner */
.banner-swiper-box {
    position: absolute;
    transform: rotate(-45deg);
    right: -820px;
    bottom: 0px;
    z-index: 10;
}

.banner-swiper-list {
    padding: 10px 0;
}

#bannerA,
#bannerB {
    width: 2160px;
    height: 270px;
    overflow: hidden;
}

.banner-swiper-list .img {
    float: left;
    width: 550px;
    height: 250px;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
}

.banner-swiper-list .img img {
    transition: all 0.3s;
    filter: grayscale(100%);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.banner-swiper-list .img:hover img {
    filter: grayscale(20%);
    transform: rotate(45deg) scale(1.2, 1.2);
}


.banner-bg {
    position: absolute;
    left: 100px;
    bottom: 45px;
}

.banner-text {
    position: absolute;
    left: 15%;
    top: 20%;
    margin: auto;
    text-align: left;
    max-width: 680px;
}

.banner-text h1 {
    font-size: 40px;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 100px;
}

.banner-text h2 {
    font-size: 16px;
    color: #848484;
    line-height: 2;
}



/* 小于lg */
@media (max-width: 991px) {}

/* 小于md */
@media (max-width:767px) {

    #index-swiper {
        height: auto;
    }

    #index-swiper>.swiper-wrapper {
        height: auto;
        flex-direction: column;
    }

    #index-swiper>.swiper-wrapper>.swiper-slide {
        background-color: #f4f4f4;
        flex-direction: column;
    }

    #index-swiper>.swiper-wrapper>.swiper-slide:nth-child(1) .slide-inner {
        overflow: hidden;
        height: 100vh;
    }

    .banner-logo {
        left: 20px;
        top: 35px;
    }

    .banner-logo img {
        height: 40px;
    }

    .banner-text {
        left: 0;
        top: 100px;
        padding: 0 20px;
    }

    .banner-text h1 {
        margin-bottom: 20px;
    }

    .banner-text img {
        max-width: 100%;
    }

    .banner-text h2 {
        font-size: 12px;
    }

    .banner-bg {
        left: 0;
        bottom: 65px;
        padding: 0 20px;
    }

    .banner-bg img {
        max-width: 100%;
    }


    .banner-swiper-box {
        right: -170px;
        bottom: 30px;
    }

    #bannerA,
    #bannerB {
        width: 432px;
        height: 70px;
        padding: 0;
    }

    .banner-swiper-list .img {
        width: 110px;
        height: 60px;
        margin: 5px;
    }


}

/* 手机 */
@media (max-width: 576px) {}<!--耗时0.00024890899658203秒-->