/* banner */
.image_container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner {
    display: block;
    width: 100%;
    object-fit: contain;
    transition: transform 1s ease-in-out;
    -webkit-animation: kenburns-top 3s ease-out both;
    animation: kenburns-top 3s ease-out both;
}

@keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }

    100% {
        -webkit-transform: scale(1.06) translateY(-15px);
        transform: scale(1.06) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}


.banner_text {
    position: absolute;
    top: 40%;
    right: 167px;
    color: #FFF;
    text-align: center;
    font-family: Source Han Sans CN;
    font-size: 110px;
    font-weight: 700;
    line-height: 63px;
    letter-spacing: 15px;
}

.banner_text_active {
    opacity: 0;
    transform: translateY(-15px);
    transition: all .5s ease-in;
}

.banner_text_active.active {
    opacity: 1;
    transform: translateY(0);
}

.content_container {
    box-sizing: border-box;
    overflow: hidden;
}

.introduce {
    box-sizing: border-box;
    padding: 0 15vw;
    margin: 50px auto 0 auto;
    color: #666;
    font-family: Source Han Sans CN;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 2.5px;
}

.introduce_active {
    opacity: 0;
    transform: translateX(-15px);
    transition: all .5s ease-in-out .7s;
}

.introduce_active.active {
    opacity: 1;
    transform: translateX(0);
}

.inform_book {
    margin-top: 100px;
    box-sizing: border-box;
    padding: 0 15vw;
}

.inform_title {
    color: #D80C24;
    font-family: Source Han Sans CN;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 21px;
}

.inform_title_active {
    opacity: 0;
    transform: translateX(-15px);
    transition: all .5s ease-in-out .5s;
}

.inform_title_active.active {
    opacity: 1;
    transform: translateX(0);
}

.content_txt {
    color: #666;
    font-family: Source Han Sans CN;
    font-size: 18px;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: 2.5px;
}

.content_txt_active {
    opacity: 0;
    transform: translateX(-15px);
    transition: all .5s ease-in-out .7s;
}

.content_txt_active.active {
    opacity: 1;
    transform: translateX(0);
}

.red_txt {
    color: #D80C24;

}

/* 服务网点 */
.network_container {
    box-sizing: border-box;
    padding: 66px 0;
    background: #EDEDED;
    margin: 40px 0;
}

.network_title {
    color: #D80C24;
    font-family: Source Han Sans CN;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;

}

.network_title_active {
    opacity: 0;
    transform: translateY(-15px);
    transition: all .5s ease-in-out .5s;
}

.network_title_active.active {
    opacity: 1;
    transform: translateY(0);
}

.network_introduce {
    display: flex;
    justify-content: space-between;
}

.left_item {
    box-sizing: border-box;
    padding-top: 50px;
    padding-left: 15vw;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-width: 800px;
}

.map_img {
    margin-top: 30px;
    width: 650px;
    object-fit: contain;
    margin-right: 30px;
}

.clearfix {
    display: flex;
    justify-content: space-between;
}

.numU {
    color: #D80C24;
    font-family: Source Han Sans CN;
    font-size: 48px;
    font-weight: 700;
}

.unitC {
    font-size: 25px;
}

.indc {
    color: #666;
    font-family: Source Han Sans CN;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2.5px;
}

.network_txt {
    color: #666;
    font-family: Source Han Sans CN;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 1.5px;
}

.network_txt2 {
    color: #666;
    font-family: Source Han Sans CN;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 2px;
    text-align: left;
    padding-left: 15vw;
}

/* 图文 */
.article_content {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding: 0 30px;
}

.article_content_active {
    opacity: 0;
    transform: translateX(-15px);
    transition: all .5s ease-in-out .5s;
}

.article_content_active.active {
    opacity: 1;
    transform: translateX(0);
}

.article_content2_active {
    opacity: 0;
    transform: translateX(15px);
    transition: all .5s ease-in-out 1s;
}

.article_content2_active.active {
    opacity: 1;
    transform: translateX(0);
}

.left_item_article {
    padding-left: 13vw;
    margin-right: 50px;
}

.right_item_article {
    padding-right: 13vw;
    margin-left: 50px;
}

.article_txtle_bold {
    color: #000;
    font-family: Source Han Sans CN;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 2px;
}

.article_txtle {
    margin-top: 32px;
    color: #666;
    text-align: justify;
    font-family: Source Han Sans CN;
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 2px;
}

.img {
    width: 50%;
}