.banner {
    width: 100%;
    height: 100vh;
    position: relative;
}
.banner ul{
    width: 1150px;
    height: 80px;
    background: rgba(245, 245, 245, 0.8);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.banner ul li{
    width: 230px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner ul li img{
    width: 19px;
    height: 19px;
    margin-right: 8px;
}
.banner ul li:hover{
    background: #ED1B2F;
    color: #fff;
}
.banner ul li:hover img{
    filter: grayscale(1) brightness(4);
}
.section {
    width: 100%;
    height: auto;
    background: white;
    overflow: hidden;
}
.section .warp{
    width: 1400px;
    margin: 138px auto 101px;
}
.section .warp .title span{
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
}
.section .warp .title .line{
    margin-top: 14px;
    width: 24px;
    height: 2px;
    background: #ED1B2F;
}
.section .warp .content{
    margin-top: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 96px;
}
.section .warp .content .con_l,
.section .warp .content .con_r {
    width: 46%;
    max-width: 46%;
}
.section .warp .content .con_l span{
    font-size: 33px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 40px;
}
.section .warp .content .con_l p{
    width: 383px;
    font-size: 14px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #999999;
    line-height: 22px;
    margin-top: 38px;
}
.section .warp .content .con_l .images{
    margin-top: 102px;
    width: 100%;
    height: fit-content;
    overflow: hidden;
    cursor: pointer;
}
.section .warp .content .con_l .images img{
    width: 100%;
    height: 100%;
    transition: 2.5s;
}
.section .warp .content .con_l .images:hover img{
    transform: scale(1.1);
}
.section .warp .content .con_r {
    flex: 1;
}
.section .warp .content .con_r .text p{
    width: 645px;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
}
.section .warp .content .con_r .figure{
    margin-top: 95px;
    display: flex;
}
.section .warp .content .con_r .figure .item:first-child{
    margin-right: 301px;
}
.section .warp .content .con_r .figure .item .bor{
    width: 80px;
    height: 80px;
    background: rgba(0, 139, 208, 0);
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 37px;
}
.section .warp .content .con_r .figure .item .num p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #262626;
    margin-bottom: 11px;
    position: relative;
}
.section .warp .content .con_r .figure .item .num p:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 110%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #CCCCCC;
}
.section .warp .content .con_r .figure .item .num span{
    font-size: 36px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #262626;
}
.section2 {
    width: 100%;
    height: auto;
    background: white;
    overflow: hidden;
}
.section2 .warp{
    width: 1400px;
    margin: 0 auto 272px;
}
.section2 .warp .title span{
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
}
.section2 .warp .title .line{
    width: 24px;
    height: 2px;
    background: #ED1B2F;
    margin-top: 15px;
}
.section2 .warp .content{
    margin-top: 78px;
    display: flex;
    align-items: center;
}
.section2 .warp .content .text{
    width: 479px;
}
.section2 .warp .content .text:first-child{
    text-align: right;
}
.section2 .warp .content .text h1{
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    margin-bottom: 16px;
}
.section2 .warp .content .text p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
}
.section2 .warp .content .images{
    margin-left: 54px;
    margin-right: 54px;
    text-align: center;
    position: relative;
}
.section2 .warp .content .images h1{
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    margin-bottom: 14px;
}
.section2 .warp .content .images p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    margin-bottom: 54px;
}
.section2 .warp .content .images .xian{
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(0deg);
    animation: 4s zhuanq infinite linear;
}
@keyframes zhuanq {
    100%{
        transform: translate(-50%,-50%) rotate(360deg);
    }
}
.section3{
    width: 100%;
    height: 730px;
    background: #F5F5F5;
    overflow: hidden;
}
.section3 .warp{
    margin-top: 110px;
    display: flex;
    align-items: center;
}
.section3 .warp .images{
    width: 50%;
    height: 620px;
    overflow: hidden;
    cursor: pointer;
}
.section3 .warp .images img{
    width: 100%;
    height: 100%;
    transition: 3s;
    object-fit: cover;
}
.section3 .warp .images:hover img{
    transform: scale(1.1);
}
.section3 .warp .text .text_t{
    margin-left: 116px;
}
.section3 .warp .text .text_t span{
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
}
.section3 .warp .text .text_t .line{
    width: 24px;
    height: 2px;
    background: #ED1B2F;
    margin-top: 14px;
}
.section3 .warp .text{
    width: 50%;
    position: relative;
}
.section3 .warp .text .text_warp{
    width: 275px;
    margin-left: 116px;
    margin-top: 84px;
}
.section3 .warp .text .text_warp .swiper-slide p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    opacity: 0;
    transition: 0.6s;
}
.section3 .warp .text .text_warp .swiper-slide-active p{
    opacity: 1;
}
.section3 .warp .text .text_warp2{
    width: 90%;
    height: 120px;
    margin-top: 95px;
}
.section3 .warp .text .text_warp2 .swiper-wrapper{
    margin-top: 20px;
}
.section3 .warp .text .text_z:after{
    content: "";
    position: absolute;
    top: 75.8%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CCCCCC;
}
.section3 .warp .text .text_warp2 .swiper-slide{
    text-align: center;
    cursor: pointer;
}
.section3 .warp .text .text_warp2 .swiper-slide .circle{
    width: 12px;
    height: 12px;
    background: #ED1B2F;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    margin: auto;
    transition: 0.6s;
    position: relative;
}
.section3 .warp .text .text_warp2 .swiper-slide .circle:after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 24px;
    height: 24px;
    background: #F5F5F5;
    border: 2px solid #ED1B2F;
    border-radius: 50%;
    opacity: 0;
    transition: 0.6s;
}
.section3 .warp .text .text_warp2 .swiper-slide-active .circle:after{
    opacity: 1;
}
.section3 .warp .text .text_warp2 .swiper-slide p{
    font-size: 22px;
    font-family: DINSchrift;
    font-weight: 400;
    color: #666666;
    margin-top: 36px;
    transition: 0.6s;
}
.section3 .warp .text .text_warp2 .swiper-slide-active p{
    font-size: 30px;
    color: #ED1B2F;
}
.section4{
    width: 100%;
    height: auto;
    background: white;
    overflow: hidden;
}
.section4 .warp{
    width: 1400px;
    margin: 207px auto 249px;
}
.section4 .warp .title span{
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
}
.section4 .warp .title .line {
    margin-top: 14px;
    width: 24px;
    height: 2px;
    background: #ED1B2F;
}
.section4 .warp .honor{
    margin-top: 135px;
    position: relative;
}
.section4 .warp .honor_warp{
    width: 80%;
    margin: auto;
    overflow: hidden;
}
.section4 .warp .honor_warp .swiper-slide{
    text-align: center;
}
.section4 .warp .honor_warp .swiper-slide .images{
    width: 99%;
    height: 180px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 34px;
    transition: 0.6s;
}
.section4 .warp .honor_warp .swiper-slide .images:hover{
    border: 1px solid #ED1B2F;
}
.section4 .warp .honor_warp .swiper-slide .images img{
    height: 80%;
    width: 80%;
    object-fit: contain;
}
.section4 .warp .honor_warp .swiper-slide p{
    font-size: 14px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #666666;
}
.section4 .warp .honor .button {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 0;
    display: flex;
    justify-content: space-between;
}
.section4 .warp .honor .button div{
    width: 90px;
    height: 90px;
    background: #ED1B2F;
    /* border: 1px solid #CCCCCC; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: static;
    cursor: pointer;
    /* transition: 0.6s; */
    justify-content: unset;
}
/* .section4 .warp .honor .button div:hover{
    background: #ED1B2F;
}
.section4 .warp .honor .button div:hover svg path{
    fill: #fff;
} */
.section4 .warp .honor .button div:hover p{
    color: #fff;
}
.section4 .warp .honor .button div:after{
    display: none;
}
.section3 .content .button div:after{
    display: none;
}
.section4 .warp .honor .button div svg{
    margin-right: 3px;
    margin-left: 3px;
    transform: rotate(90deg);
}
.section4 .warp .honor .button div svg path{
    fill: #fff;
    /* transition: 0.6s; */
}
.section4 .warp .honor .button div p{
    font-size: 12px;
    font-family: ITC Avant Garde Gothic Std;
    font-weight: normal;
    color: #333333;
    transition: 0.6s;
}
.section4 .warp .honor .button div:last-child{
    flex-direction: row-reverse;
}
.section4 .warp .honor .button div:last-child svg{
    transform: rotate(-90deg);
}
.section5{
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #F5F5F5;
}
.section5 .warp{
    margin-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 1920px){
    .section5 .warp{
        /*float: right;*/
    }
}
.section5 .warp .text{
    width: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
}
.section5 .warp .text div:first-child{
    width: 100%;
}
.section5 .warp .text div span{
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
}
.section5 .warp .text div .line{
    width: 24px;
    height: 2px;
    background: #ED1B2F;
    margin-top: 14px;
    margin-bottom: 74px;
}
.section5 .warp .text div .sign p{
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    position: relative;
}

.section5 .warp .text div .sign .p{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    /*opacity: 0;*/
    transition: 0.6s;
    line-height: 25px;
}
.section5 .warp .text div .sign .swiper-slide-active .p{
    opacity: 1;
}
.section5 .warp .text div .sign .swiper-slide-active p:first-child:after{
    opacity: 1;
}
.section5 .warp .text div .sign .swiper-slide .test{
    line-height: 22px;
}
.section5 .warp .text div .sign .swiper-slide .test p{
    white-space: nowrap;
    margin-right: 20px;
    width: auto;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.section5 .warp .text div .sign .swiper-slide .test .xian{
    overflow: hidden;
    height: 1px;
    background: #CCCCCC;
    /*opacity: 0;*/
    transition: 0.6s;
    position: relative;
    top: 10px;
}
.section5 .warp .text div .sign .swiper-slide-active .test .xian{
    opacity: 1;
}
.section5 .warp .text .sign .swiper{
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.section5 .warp .text .sign .swiper .swiper-slide{
    cursor: pointer;
}
.section5 .warp .images{
    width: 960px;
    height: 620px;
    overflow: hidden;
    cursor: pointer;
    margin-left: 126px;
    display: none;
}
.section5 .warp .images img{
    width: 100%;
    height: 100%;
    transition: 2.5s;
}
.section5 .warp .images img:hover{
    transform: scale(1.1);
}
.section3 .content{
    width: 1450px;
    margin: 100px auto 0;
    position: relative;
}
.section3 .content .licheng{
    width: 1250px;
    position: relative;
    overflow: hidden;
    margin: auto;
}
.section3 .content .licheng:after{
    content: '';
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #d1d1d1;
    width: 100%;
    height: 1px;
}
.section3 .content .licheng .swiper-slide{
    display: flex;
    flex-direction: column;
}
.section3 .content .licheng .swiper-slide .information{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.section3 .content .licheng .swiper-slide .information div{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #727272;
    font-size: 16px;
}
.section3 .content .licheng .swiper-slide .information span{
    width: 100%;
    height: 37px;
    font-size: 16px;
    color: #616161;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8e8e8;
}
.section3 .content .licheng .swiper-slide .information:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 15px solid #e8e8e8;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
}
.section3 .content .licheng .swiper-slide:hover span{
    background-color: #E8494F;
    color: #fff;
}
.section3 .content .licheng .swiper-slide:hover .information:after{
    border-top: 15px solid #E8494F;
}
.section3 .content .licheng .swiper-slide:nth-child(even) .information:hover:after{
    border-bottom: 15px solid #E8494F;
}
.section3 .content .licheng .swiper-slide .circle{
    width: 18px;
    height: 18px;
    background: #c2c2c2;
    border-radius: 50%;
    margin: 10px auto 0;
}
.section3 .content .licheng .swiper-slide:nth-child(even){
    margin-top: 131px;
    flex-direction: column-reverse;
    position: relative;
    top: -12px;
}
.section3 .content .licheng .swiper-slide:nth-child(even) .information:after{
    border-top: 15px solid transparent;
    border-bottom: 15px solid #e8e8e8;
    top: -30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.section3 .content .licheng .swiper-slide:nth-child(even) .information{
    margin-top: 30px;
    flex-direction: column-reverse;
}
.section3 .content .licheng .swiper-slide:hover .circle{
    background: #E8494F;
}
.section3 .content .button{
    width: 100%;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: space-between;
    z-index: 999;
}
.section3 .content .button div{
    width: 40px;
    height: 40px;
    border: 2px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 1!important;
    z-index: 9999;
    pointer-events: unset!important;
    cursor: pointer!important;
}
.section3 .content .button div:after{
    font-size: 15px;
    color: #e8e8e8;
}