*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: '微软雅黑';
}
/* 加载动画样式 */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url(http://2024jlrs.oss-cn-chengdu.aliyuncs.com/bg.png) no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loader .imgbox {
    width: 7.8125vw;
    height: 7.8125vw;
    animation: rotateD 3s linear forwards;
    -webkit-animation: rotateD 3s linear forwards;
    
}
#loadingLogo{
    opacity: 0;
}

.imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

.width95{
    width: 95%;
}

.nav{
    width: 100%;
    position: fixed;
    top:0;
    height: 7.5vw;
    padding: 0 5.208333333333334vw;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    /* border-bottom: 1px solid rgba(255,255,255,.2); */
}

.nav.scrolled{
    background-color: rgba(0,0,0,.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /*Safari*/box-shadow: 0 0.20833333333333334vw 0.78125vw rgba(0, 0, 0, 0.3);
    height: 5.5vw;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    border-bottom: 0px;
}

.nav .logobox {
    width: 17.291666666666668vw;
    height: auto; 
}

.detailNav{
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    height: 7.708333333333334vw;
    position: unset;
}

.menu .item{
    padding: 0 0.78125vw;
    display: flex;
    align-items: center;
    position: relative;
}
.menu  a{
    font-size: 1vw;
    color: #D2D2D2;
}
.menu .active a{
    color: #fff;
    font-weight: blod;
}
.menu a:hover{
    color: #fff;
}

.detailNav .menu a{
    color: #767676;
}
.detailNav .active a,.detailNav .menu a:hover{
    color: #000;
    font-weight: bold;
}

.menu .activebox::before,.detailNav .menu .item.active::before{
    content: "";
    width: 1.25vw;
    height: 0.4166666666666667vw;
    display: inline-block;
    background: transparent;
    position: absolute;
    bottom: -3.4375000000000004vw;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    opacity: 0;
    
}
.menu .activebox::after,.detailNav .menu .item.active::after{
    content: "";
    width: 0.4166666666666667vw;
    height: 0.4166666666666667vw;
    background-color: #BF1920;
    position: absolute;
    bottom: -3.4375000000000004vw;
    left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    opacity: 1;

}

.detailNav .menu .item.active::before{
    background: linear-gradient(to bottom,#fff 50%, #f9f9f9 50%);
}
.detailNav .menu .item.active::before,.detailNav .menu .item.active::after{
    bottom: -3.5416666666666665vw;
}



.scrolled .menu a{
    color: #fff;
}
.scrolled .menu a:hover{
    color: #BF1920;
}

.scrolled .menu .active a{
    color: #BF1920;
    font-weight: blod;
}
.scrolled .menu .active::after,.scrolled .menu .active::before{
    display: none;
    transition: all 0.3 linear;
    -webkit-transition: all 0.3 linear;
    -moz-transition: all 0.3 linear;
    -ms-transition: all 0.3 linear;
    -o-transition: all 0.3 linear;
}



.pc .phone {
    flex-shrink: 0;
    width: 2.1875vw;
    height: 2.1875vw;
    /* border: 1px solid #909090; */
    position: relative;
    margin-left: 1.8229166666666667vw;
    overflow: hidden;
    /* box-shadow: 0 0 0 1px #909090; */
}
.pc .phone .border{
    width: 2.1875vw;
    height: 2.1875vw;
    position: absolute;
    border: 1px solid #909090;
    left:0;
    top:0;
    z-index: -3;
}
.pc .phone .icon{
    position: relative;
}
.pc .phone .icon::before{
    width: 2.1875vw;
    height: 2.1875vw;
    position: absolute;
    left: 0;
    top:0;
    background-color: #f00;
    z-index: 3;
}
.pc .phone::before{
    content: "";
    width: 200%;
    height: 200%;
    background-color: #f00;
    display: inline-block;
    position: absolute;
    left:50%;
    top:50%;
    z-index: -2;
    border-radius: inherit;
    animation: retatioin 4s linear infinite;
    transform-origin: left top;
}
.pc .phone::after{
    content:'';
    position: absolute;
    inset:1px;
    background-color: #303337;
    display: block;
    z-index: -1;
    border-radius: inherit;
}
.pc .phonebox{
    height: 2.1875vw;
    right: 7.495833333333334vw;
    padding: 0 0.78125vw;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    opacity: 0;
    z-index: -1;
}
.pc .phone:hover + .phonebox{
    opacity: 1;
    z-index: 3;
}
.detailNav .pc .phonebox{
    background-color: #BF1920;
}
.detailNav .pc .phonebox{
    color: #fff;
}
@keyframes retatioin {
    to {
        transform: rotate(360deg);
    }
}
/* .pc .phone::after{
    content: "";
    width: 2.1354166666666665vw;
    height: 1.4583333333333333vw;
    display: inline-block;
    position: absolute;
    top:-1px;
    left:-1px;
    border-top: 1px solid #f00;
    border-right: 1px solid #f00;
} */
.pc .phone .icon{
    width: 0.8333333333333334vw;
    height: 0.8333333333333334vw;
}

.detailNav .pc .phone{
    background-color: #BF1920;
    border: 1px solid #BF1920;
}
.detailNav .pc .phone::after{
    display: none;
}

.navLine{
    margin-top: 7.5vw;
    width: 100%;
    position: fixed;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    opacity: 1;
    z-index: 999;
    background: rgba(255,255,255,.2);
    height: 1px;
}
.navLine .line{
    display: none;
    width: calc(calc( 100% - 1.25vw )*0.5);
    height: 1px;
    background: rgba(255,255,255,.2);
}
.navLine .rect{
    display: none;
    width: 0.4166666666666667vw;
    height: 0.4166666666666667vw;
    background-color: #C01A21;
}

.posibox{
    height: 4.427083333333334vw;
}
.posibox .backbox .icon{
    width: 0.8854166666666666vw;
    height: 0.8333333333333334vw;
    margin-right: 0.9375vw;
}
.posibox .linkbox a{
    color: #858585;
    display: inline-block;
    flex-shrink: 0;
}
.posibox .linkbox span{
    display: flex;
    padding: 0 10px;
}
.posibox .linkbox a:hover{
    color: #BF1920;
}
.posibox .linkbox a:last-child{
    display: inline-block;
    width: 35%;
}

.detailContent{
    
}
.detailContent .left{
    width: 35.625vw;
    padding-right: 5.625vw;
    padding-bottom: 5.625vw;
    border-right: 1px solid rgba(28,28,28,.1);
}
.detailContent .sharebox{
    margin-top: 5.625vw;
}
.detailContent .sharebox a{
    display: flex;
    width: 2.604166666666667vw;
    height: 2.604166666666667vw;
    border: 1px solid rgba(4,4,4,.1);
}
.detailContent .sharebox a:last-child{
    margin-left: 0.8333333333333334vw;
}
.detailContent .sharebox a .icon{
    width: 0.6770833333333334vw;
    height: 0.6770833333333334vw;
}
.detailContent .sharebox a .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detailContent .sharebox a:hover{
    border: 1px solid #BF1920;
}
.detailContent .right{
    width: 64.32291666666666vw;
    padding-left: 5.208333333333334vw;
}

.otherpage{
    padding: 3.125vw 5.208333333333334vw 3.125vw 40.9375vw;
    border-top: 1px solid rgba(28,28,28,.1);
    border-bottom: 1px solid rgba(28,28,28,.1);
}
.otherpage .btn:first-child{
    margin-bottom: 1.0416666666666665vw;
}
.otherpage .btn a{
    color: #000;
}
.otherpage .btn:hover a{
    color: #BF1920;
}

.moreNews{
    padding: 5.208333333333334vw;
}
.moreNews .list{
    width: 100%;
    gap: 2.083333333333333vw;
}
.moreNews .list .items{
    flex: 0 0 31.4%;
}
.moreNews .list .items .imgbox{
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 51.29%;
    overflow: hidden;
}
.moreNews .list .items .imgbox img{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}
.moreNews .list .items:hover .tit{
    color: #BF1920;
}



.pageBanner{
    width: 100vw;
    height: 30.208333333333332vw;
    background: url(../image/about_banner.png) no-repeat center center;
    background-size: cover;
}

.pageBanner.building{
    background: url(../image/building_banner.png) no-repeat center center;
    background-size: cover;
}
.pageBanner.professional{
    background: url(../image/professional_banner.png) no-repeat center center;
    background-size: cover;
}
.pageBanner.team{
    background: url(../image/team_banner.png) no-repeat center center;
    background-size: cover;
}
.pageBanner.case{
    background: url(../image/case_banner.png) no-repeat center center;
    background-size: cover;
}
.pageBanner.news{
    background: url(../image/news_banner.png) no-repeat center center;
    background-size: cover;
}
.pageBanner.contact{
    background: url(../image/contact_banner.png) no-repeat center center;
    background-size: cover;
}





/* FullPage样式 */
.section {
    width: 100vw;
}



.banner .swiper{
    width: 100vw;
    height: 100vh;
    position: relative;
}
.banner .swiper .swiper-slide{
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner .swiper .swiper-slide .textbox{}

.textbox {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s ease, transform 2s ease;
    -webkit-transition: opacity 2s ease, transform 2s ease;
    -moz-transition: opacity 2s ease, transform 2s ease;
    -ms-transition: opacity 2s ease, transform 2s ease;
    -o-transition: opacity 2s ease, transform 2s ease;
}
.textbox.active {
    opacity: 1;
    transform: translateY(0);
}
.subtitle {
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    /*初始透明度*/transition: opacity 1s ease 0.5s,transform 1s ease 0.5s;
    /*延迟效果*/-webkit-transition: opacity 1s ease 0.5s,transform 1s ease  0.5s;
    -moz-transition: opacity 1s ease 0.5s,transform 1s ease  0.5s;
    -ms-transition: opacity 1s ease 0.5s,transform 1s ease  0.5s;
    -o-transition: opacity 1s ease 0.5s,transform 1s ease  0.5s;
    -webkit-transition: opacity 1s ease 0.5s,transform 1s ease  0.5s;
}
.subtitle.active {
    opacity: 1; /* 结束透明度 */
    transform: translateY(0);
}

.banner-progress{
    position: absolute !important;
    width: 10.416666666666668vw !important;
    bottom: 5.46875vw !important;
    top:unset !important;
    left:unset !important;
}
.swiper-pagination-progressbar{
    background: rgba(255,255,255,.2) !important;
}
.swiper-pagination-progressbar-fill{
    background:#bf1a20 !important;
}
.banner .pageBox{
    bottom: 5vw ;
    z-index: 9999;
}
.banner .pageBox #curPage{
    color: rgba(191, 26, 32,1);
}
.banner .pageBox #totalPage{
    color: rgba(255,255,255,.5);
}
.banner .pageBox .pageLine{
    width: 1px;
    height: 0.78125vw;
    background-color: #B5B9BD;
    margin: 0 1.9270833333333335vw;
}
.banner .playbox {
    bottom: 5vw ;
    z-index: 9999;
}
.banner .playbox .icon{
    width: 1.1458333333333333vw;
    height: 1.1458333333333333vw;
}
.banner .playbox .icon img{
    display: none;
}
.banner .downbox{
    z-index: 9999;
}
.banner .downbox .box .icon{
    width: 2.604166666666667vw;
    height: 2.604166666666667vw;
}
.banner .downbox .box  .text{
    animation: bounce 1.5s infinite;
}


.pageBanner .textbox{
    opacity: 1;
    width: 100%;
    height: inherit;
}
.pageBanner .subtitle{
    /* opacity: 1; */
}

.pageNav {
    padding: 0 5.208333333333334vw;
    width: 100%;

}
.pageNav .pageNavMenu{
    height: 5.729166666666666vw;
    width: 100%;
    box-shadow: 0.5208333333333333vw 0 1.9791666666666665vw 0px #000000;
}
.pageNav .pageNavMenu .items{
    padding: 0 5.208333333333334vw;
    flex: 0 0 33.333333%;
    height:inherit;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
}
.news .pageNav .pageNavMenu .items{
    flex: 0 0 50%;
}
.pageNav .pageNavMenu .items a{
    display: flex;
    width: 100%;
    height: inherit;
}
.pageNav .pageNavMenu .items.active{
    background: url(../image/pageNavBg.png) no-repeat center center;
    background-size: 100% 100%;
}
.pageNav .pageNavMenu .items .items-left .icon{
    width: 1.9791666666666665vw;
    height: 1.9791666666666665vw;
    background: url(../image/about1.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu .items:nth-child(2) .items-left .icon{
    background: url(../image/about2.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu .items:nth-child(3) .items-left .icon{
    background: url(../image/about3.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu .items .items-right .dotbox .dot{
    display: inline-block;
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    background-color: #333;
}
.pageNav .pageNavMenu .items .items-right .dotbox .dot:nth-child(2){
   opacity: 0.5;
}
.pageNav .pageNavMenu .items .items-right .dotbox .dot:nth-child(3){
    opacity: 0.3;
 }
 .pageNav .pageNavMenu .items.active .text{
    color: #fff;
 }
 .pageNav .pageNavMenu .items.active .items-right .dotbox .dot{
    background-color: #fff;
 }
 .pageNav .pageNavMenu .items.active .items-right .dotbox .dot:nth-child(2){
    opacity: 0.5;
 }
 .pageNav .pageNavMenu .items.active .items-right .dotbox .dot:nth-child(3){
    opacity: 0.3;
 }
.pageNav .pageNavMenu .items:first-child.active .items-left .icon{
    background: url(../image/about1_1.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu .items:nth-child(2).active .items-left .icon{
    background: url(../image/about2_2.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu .items:nth-child(3).active .items-left .icon{
    background: url(../image/about3_3.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu .items:not(.active):hover .text{
    color: #BF1920;
 }

 .pageNav .pageNavMenu.pageNewsNavMenu .items:first-child .items-left .icon{
    background: url(../image/icon10.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu.pageNewsNavMenu .items:nth-child(2) .items-left .icon{
    background: url(../image/icon11.png) no-repeat center center;
    background-size: contain;
}

.pageNav .pageNavMenu.pageNewsNavMenu .items:first-child.active .items-left .icon{
    background: url(../image/icon10_10.png) no-repeat center center;
    background-size: contain;
}
.pageNav .pageNavMenu.pageNewsNavMenu .items:nth-child(2).active .items-left .icon{
    background: url(../image/icon11_11.png) no-repeat center center;
    background-size: contain;
}





#section2{
    padding: 0 5vw;
    height: 100vh;
}
#section2 .cont{
    height: inherit;
}
#section2 .cont .left{
    width: 35.9375vw;
    flex-shrink: 0;
    padding: 6.510416666666667vw 0;
    padding-right: 7.291666666666667vw;
}
#section2 .cont .right{
    width: calc(100% - 35.9375vw);
    height: 100%;
}
#section2 .cont .right .conts{
    height: inherit;
}
/* #section2 .cont .right .conts .item{
    flex:  0 0 33.33%;
    height: 50%;
    cursor: pointer;
} */
#section2 .cont .right .conts .item{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#section2 .cont .right .conts .swiper-slide:nth-child(odd) {
    background-color: #F7F7F7; 
}
#section2 .cont .right .conts .item .iconbox{
    width: 4.21875vw;
    height: 4.21875vw;
    z-index: 1;
}
#section2 .cont .right .conts .item .iconbox .icon{
    width: auto;
    height: 2.2916666666666665vw;
    
}
#section2 .cont .right .conts .item .iconbox .icon img{
    object-fit: contain;
    width: auto;
    height: 100%;
}
#section2 .cont .right .conts .item .iconbox .bgcircle{
    width: 2.3958333333333335vw;
    height: 2.3958333333333335vw;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #bf1a20;
    left:0;
    bottom:0;
    z-index: 0;
    transform-origin: left bottom;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
#section2 .cont .right .conts .item .subtit{
    height: 2.1875vw;
}
#section2 .cont .right .conts .item .titlebox{
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
#section2 .cont .right .conts .item .line{
    display: none;
}
#section2 .cont .right .conts .item .line .shortline{
    width: 20px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.2);
}

#section2 .cont .right .conts .item:hover .iconbox .bgcircle{
    width: 4.21875vw;
    height: 4.21875vw;
}
#section2 .cont .right .conts .item:hover .titlebox{
    color: #BF1920;
    
}
#section2 .cont .right .conts .item:hover .line .shortline{
    background-color: #BF1920;
}

.serverSwiper{
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.server-pagination{
    width: 100%;
    height: 50px;
    right: unset !important;
    top:unset !important;
    bottom: 0 !important;
    position: absolute;
    z-index: 10 !important;
    left: 0 !important;
}
.server-pagination .swiper-pagination-bullet{
    display: flex;
    width: 1.6145833333333335vw;
    height: 1.6145833333333335vw;
    position: relative;
    justify-content: center;
    align-items: center;
    border: 1px solid #BF1A20;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.server-pagination .swiper-pagination-bullet::after{
    content: "";
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    display: inline-block;
    background: rgba(0, 0, 0, 0.5);

}
.server-pagination  .swiper-pagination-bullet-active{
    background: transparent !important;
}
.server-pagination  .swiper-pagination-bullet-active::after{
    background: #BF1A20 !important;
}


.more a{
    display: block;
    width: 13.072916666666668vw;
    height: 3.177083333333333vw;
    border: 1px solid #B2B2B2;
    color: #000;
    background-color: transparent;
    transition: background-color 0.2s linear;
    -webkit-transition: background-color 0.2s linear;
    -moz-transition: background-color 0.2s linear;
    -ms-transition: background-color 0.2s linear;
    -o-transition: background-color 0.2s linear;
}
.more a .txt{
    font-size: 0.8333333333333334vw;
}
.more a .btn{
    width: 100%;
    height: inherit;
}
.more a .btn .arrow-right{
    width: 0.5208333333333333vw;
    height: 0.5208333333333333vw;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.more a:hover{
    background-color: #BF1920;
    border: 1px solid #BF1920;
    color: #fff;
}
.more a:hover .btn .arrow-right{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.more-bg a{
    background-color: #BF1920;
    border: 1px solid #BF1920;
    color: #fff;
}
.more-bg a .btn .arrow-right{
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.more-bg a:hover{
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
}
.more-bg a:hover .btn .arrow-right{
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}

.multiDot span{
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    background-color: #fff;
    margin-right: 8px;
}
.multiDot span:nth-child(2){
    opacity: 0.5;
}
.multiDot span:nth-child(3){
    opacity: 0.3;
}




#section3{
    width: 100vw;
}

#section3 .left,#section3 .right{
    width: 50%;
    height: inherit;
}
#section3 .right{
    background: url('../image/bg01.png') no-repeat center center;
    background-size: cover;
}
#section3 .left{
    padding: 6.510416666666667vw 10.416666666666668vw 6.510416666666667vw 5.208333333333334vw;
}


#section3 .numbox{
    width: 13.020833333333334vw;
    height: 28.749999999999996vw;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}
#section3 .numbox .numItem{
    width: 100%;
    height: 50%;
    background-color: #BF1920;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    justify-content: center;
    padding: 0 2.604166666666667vw;
}
#section3 .numbox .numItem:last-child{
    background-color: #AE161C;
}
#section3 .numbox .numItem .numInfo .unit{
    top:-0.3125vw;
    left:0.5208333333333333vw
}

#section4{
    background: url(../image/bg-line.png) no-repeat center 75%;
    background-size: 75% 31.25vw;
    position: relative;
    padding-bottom: 23.4375vw;
}
#section4 .toprow{
    padding: 6.510416666666667vw 0 0 5.208333333333334vw;
    position: relative;
    z-index: 2;
}
#section4 .mainSwiper{
    width: 50%;
    padding-right: 16.510416666666668vw;
    padding-top: 8.510416666666667vw;
    position: absolute;
    top:0;
    right: 0;
    z-index: 3;
}
#section4 .mainSwiper .teamnavigation {
    position: relative;
    z-index: 15;
}
#section4 .mainSwiper .teamnavigation .btn{
    width: 1.4583333333333333vw;
    height: 0.625vw;
}
#section4 .toprow .more-bg{
    z-index: 10;
}
#section4 .mainSwiper .teamnavigation .btn.team-button-prev{
    background: url(../image/prev.png) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}
#section4 .mainSwiper .teamnavigation .btn.team-button-prev:hover{
    background: url(../image/prev_hover.png) no-repeat center center;
    background-size: contain;
}
#section4 .mainSwiper .teamnavigation .btn.team-button-next{
    background: url(../image/next.png) no-repeat center center;
    background-size: contain;
    cursor: pointer;
}
#section4 .mainSwiper .teamnavigation .btn.team-button-next:hover{
    background: url(../image/next_hover.png) no-repeat center center;
    background-size: contain;
}
#section4 .teamSwiper{
    width: 100%;
}

#section4 .teamSwiperBox{
    width: 100%;
}

#section4 .teamThumbSwiper{
   height: 30.729166666666668vw;
}
#section4 .teamThumbSwiper .box{
   height: inherit;
   justify-content: center;
   align-items: end;
}
#section4 .teamThumbSwiper .box .bg{
    position: relative;
    /*  */
}
#section4 .teamThumbSwiper .box .bg::after{
    content: "";
    height: 0vw;
    width: 100%;
    background: linear-gradient( to top,rgba(191, 25, 32, 0.5),transparent 55%);
    display: inline-block;
    position: absolute;
    left:0;
    bottom:0;
    z-index: -1;
}
#section4 .teamThumbSwiper .box .bgbox{
    height: 22vw;
    justify-content: center;
    align-items: end;
    padding: 0 3vw;
    position: relative;
}
#section4 .teamThumbSwiper .box .imgbox{
    height: 18vw;
}
#section4 .teamThumbSwiper .box .imgbox img{
    width: auto;
    height: 100%;
    object-fit: contain;
}

#section4 .swiper-slide-thumb-active .box .bg::after{
    height: 22vw;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}


#section5 {
    background: url(../image/bg02.png) no-repeat center bottom;
    background-size: 100% auto;
    padding: 6.510416666666667vw 5.208333333333334vw  ;
}

#section5 .listbox .item{
    flex: 0 0 32%;
    height: 34.375vw;
}
#section5 .listbox .item .imgbox{
    width: 100%;
    height: 14.583333333333334vw;
}
#section5 .listbox .newsItem .infobox{
    padding: 1.875vw;
}
#section5 .listbox .newsItem .infobox .title{
    height: 3.75vw;
}
#section5 .listbox .newsItem .infobox .desc{
    height: 4.0625vw;
}
#section5 .listbox .newsItem .line{
    width: calc(100% - (1.875vw *2) );
    height: 1px;
    background-color: #E5E5E5;
    box-sizing: border-box;
    margin: 0 auto;
}
 .timebox .moreA{
    width: 1.9791666666666665vw;
    height: 1.9791666666666665vw;
    background-color: #cdcdcd;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
 .timebox .moreA .iconbox{
    width: 1.0416666666666665vw;
    height: 1.0416666666666665vw;
    transform-origin: center center;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.newsitems{
    flex: 0 0 48.5465116279%;
}
.newsitems .box .imgbox{
    flex:0 0 48%;
}
.team02 .newsitems .box .imgbox{
    flex: 0 0 43.126512%;
}
.newsitems .box .infobox{
    flex:0 0 52%;
}
.newsitems .box .imgbox{
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    overflow: hidden;
}
.team02 .newsitems .box .imgbox{
    padding-bottom: 60%;
}
.newsitems .box .imgbox img{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}
.newsitems .box .infobox{
    border:1px solid rgba(0, 0, 0, 0.1);
    border-left:0;
    padding: 2.083333333333333vw;
}
.newsitems .box .infobox .title{
    height: 3.6458333333333335vw;
}
.team02 .newsitems .box .infobox .title{
    height: auto;
}

.newsitems .box .infobox .timebox{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    
}
.team02 .newsitems .box .infobox .timebox{
    border-top: 0;
    padding-left: 0;
    padding-top: 0;
}
.team02 .newsitems .box .infobox .desc{
    height: 14.374999999999998vw;
    overflow-y: scroll;
}
.newsitems .box .infobox .timebox::before{
    content: "";
    width: 0%;
    height: 1px;
    background-color: #BF1920;
    display: inline-block;
    position: absolute;
    left:0;
    top:0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.newsitems:hover .box .infobox .timebox::before{
    width: 50%;
}
.team02 .newsitems .box .infobox .timebox::before{
    display: none;
}
#section5 .listbox .newsItem:hover .timebox .moreA,.newsitems:hover .timebox .moreA {
    background-color: #BF1920;
}
#section5 .listbox .newsItem:hover .timebox .moreA .iconbox,.newsitems:hover .timebox .moreA .iconbox {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

#section5 .listbox .newsList{
    padding: 1.875vw;
    overflow-y: hidden;
    position: relative;
}
#section5 .listbox .newsList .listbox{
    width: 100%;
    height: inherit;
    overflow-y: scroll;
}
#section5 .listbox .newsList .listbox::-webkit-scrollbar{
    width: 0.26041666666666663vw !important;
    height: 0.5208333333333333vw !important;
    background-color: #e5e5e5 !important;
    border-radius: 0.20833333333333334vw;
    -webkit-border-radius: 0.20833333333333334vw;
    -moz-border-radius: 0.20833333333333334vw;
    -ms-border-radius: 0.20833333333333334vw;
    -o-border-radius: 0.20833333333333334vw;
}
#section5 .listbox .newsList .listbox::-webkit-scrollbar-thumb {
    background-color: #BF1920;
    border-radius: 0.20833333333333334vw;
    -webkit-border-radius: 0.20833333333333334vw;
    -moz-border-radius: 0.20833333333333334vw;
    -ms-border-radius: 0.20833333333333334vw;
    -o-border-radius: 0.20833333333333334vw;
}

#section5 .listbox .newsList .listbox .titItem{
    padding: 0.5208333333333333vw 0;
}
#section5 .listbox .newsList .listbox .titItem:hover .tit{
    color: #BF1920;
}
#section5 .listbox .newsList .morebox{
    background: linear-gradient(to top,#fff 55%,transparent) ;
    position: absolute;
    width: 100%;
    bottom: 0;
    left:0;
    padding-top: 5.208333333333334vw;
    padding-bottom: 2.604166666666667vw;
}


.footer{
    /* padding: 4.791666666666667vw 5.208333333333334vw; */
    padding:  0    5.208333333333334vw ;
}
.footer .info{
    width: 100%;
}
.footer .info .left,.footer .info .right{
    padding-top: 4.791666666666667vw;
}
.footer .info .left{
    width: 30.46875vw;
    padding-right: 4.947916666666666vw;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .info .right{
    padding-left: 9.21875vw;
    width: calc(100% - 30.46875vw);
}
.footer .info .right .menulist .items{
    flex: 0 0 14%
}
.footer .info .right .contactleft .items .icon{
    width: 0.9375vw;
    height: 0.9375vw;
}
.footer .info .right .contactright .btnbox{
    width: 2.7083333333333335vw;
    height: 2.7083333333333335vw;
    position: relative;
}
.footer .info .right .contactright .btnbox.wx{
    background: url(../image/wx.png) no-repeat center center;
    background-size: cover;
}
.footer .info .right .contactright .btnbox.dy{
    background: url(../image/dy.png) no-repeat center center;
    background-size: cover;
}
.footer .info .right .contactright .btnbox.wx:hover{
    background: url(../image/wx_hover.png) no-repeat center center;
    background-size: cover;
}
.footer .info .right .contactright .btnbox.dy:hover{
    background: url(../image/dy_hover.png) no-repeat center center;
    background-size: cover;
}


.footer .info .right .contactright .btnbox .qr{
    width: 5.208333333333334vw;
    height: 5.208333333333334vw;
    position: absolute;
    left:0;
    top:-200%;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    z-index: 5;
}
.footer .info .right .contactright .btnbox.wx:hover .qr{
    opacity: 1;
}
.footer .info .right .contactright .btnbox.dy:hover .qr{
    opacity: 1;
}

.footerInput{
    background-color: transparent !important;
    width: 100%;
    outline: unset;
    border: 0;
    padding: 0.6770833333333334vw 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 0.8333333333333334vw;
}

.footer .info .left .logo {
    height: 2.5520833333333335vw;
    width: auto;
}
.footer .info .left .logo a{
    display: block;
    height: 2.5520833333333335vw;
    width: auto;
}
.footer .info .left .logo a img{
    height: inherit;
    width: auto;
}
.footer .copyright{
    height: 4.6875vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer .subitem  .moreA{
    width: 1.9791666666666665vw;
    height: 1.9791666666666665vw;
    background-color: #BF1920;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.footer .subitem .moreA .iconbox{
    width: 1.0416666666666665vw;
    height: 1.0416666666666665vw;
    transform-origin: center center;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.backtop{
    width: 2.7083333333333335vw;
    height: 2.7083333333333335vw;
    right: 5.208333333333334vw;
    bottom: 35vh;
    z-index: 999;
    background: url(../image/backTop_hover.png) no-repeat center center;
    background-size: cover;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.backtop:hover{
    background: url(../image/backTop_hover.png) no-repeat center center;
    background-size: cover;
}



.about01{}
.about01 .left{
    width: 42.1875vw;
    margin-right: auto;
}
.about01 .right{
    width: 42.135416666666664vw;
}
.about01 .left .numbox{
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
}
.about01 .left .numbox .numItem{
    flex: 0 0 50%;
    padding: 2.03125vw 2.5520833333333335vw;
}
.about01 .left .numbox .numItem:first-child{
    border-right: 1px solid rgba(0,0,0,.1);
}
.about01 .left .numbox .numItem .numinfos{
    width: 100%;
}
.about01 .left .numbox .numItem .numinfos .multiDot span{
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    background-color: #BF1920;
    opacity: 1;
}
.about01 .left .numbox .numItem .numinfos .multiDot span:nth-child(2){
    opacity: 0.5 !important;
}
.about01 .left .numbox .numItem .numinfos .multiDot span:nth-child(3){
    opacity: 0.3 !important;
}

.about02{
    padding: 6.510416666666667vw 0;
    background: url(../image/aboutbg.png) no-repeat center center;
    background-size: cover;
}
.about02 .desc .text{
    /* border-top: 1px dashed #fff;
    border-bottom: 1px dashed #fff; */
    background: url(../image/dashed.png) no-repeat center center;
    background-size: 100% 100%;
}
.about03{
    padding: 6.510416666666667vw 5.208333333333334vw;
    background: url(../image/aboutImg01.png) no-repeat center center;
    background-size: cover;
}
.about03 .cont {
    width: 100%;
    overflow: hidden;
}
.about03 .cont .scrollbox{
    width: 100%;
}
.about03 .cont .scrollbox .items{
    width: 100%;
    padding: 4.6875vw 2.604166666666667vw;
    background: url(../image/aboutBg001.png) no-repeat center center;
    background-size: 100% 100%;
    margin-right: 0.78125vw;
}
.about03 .cont .scrollbox .items:last-child{
    margin-right: 0;
}
.about03 .cont .scrollbox .items.active{
    width: 50.260416666666664vw;
}
.about03 .cont .scrollbox .items .list .listItems{
    height: 15.25vw;
    overflow-y: scroll;
    padding-right: 1.0416666666666665vw;
}

.about03 .cont .scrollbox .items .list .listItems::-webkit-scrollbar{
    width: 0.26041666666666663vw !important;
    height: 0.5208333333333333vw !important;
    background-color: #e5e5e5 !important;
    border-radius:0.20833333333333334vw;
    -webkit-border-radius:0.20833333333333334vw;
    -moz-border-radius:0.20833333333333334vw;
    -ms-border-radius:0.20833333333333334vw;
    -o-border-radius:0.20833333333333334vw;
}
.about03 .cont .scrollbox .items .list .listItems::-webkit-scrollbar-thumb {
    background-color: #BF1920;
    border-radius: 0.20833333333333334vw;
    -webkit-border-radius: 0.20833333333333334vw;
    -moz-border-radius: 0.20833333333333334vw;
    -ms-border-radius: 0.20833333333333334vw;
    -o-border-radius: 0.20833333333333334vw;
}

.about03 .cont .scrollbox .items .list .listItems .item{
    padding: 0.26041666666666663vw 0;
    position: relative;
    padding-left: 0.5208333333333333vw;
}
.about03 .cont .scrollbox .items .list .listItems .item.actives{
    color: #BF1920;
}
.about03 .cont .scrollbox .items .list .listItems .item::before{
    content: "";
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left:0;
    top:0.78125vw;
}
.about03 .cont .scrollbox .items .list .listItems .item:hover{
    color: #BF1920;
}
.about03 .cont .scrollbox .items .list .listItems .item:hover::before{
    background-color: #BF1920;
}
.about03 .cont .scrollbox .items .list .imgbox{
    width: 18.75vw;
    height: 15.625vw;
    margin-left: 2.083333333333333vw;
    overflow: hidden;
}
.about03 .cont .scrollbox .items .list .imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about03 .cont .scrollbox .swiper-slide .items .list .imgbox{
    display: none;
}
.about03 .cont .scrollbox .swiper-slide.active .items .list .imgbox{
    display: block;
}





.building01 .content{
    width: 100%;
    background-color: #fff;
    height: 35.41666666666667vw;
}

.building02 .listbox .newsitems{
    margin-bottom: 2.604166666666667vw;
}
.building02 .listbox .newsitems:nth-child(even){
    margin-left: auto;
}

.professional01 .content .items{
    width: 43.48958333333333vw;
    height: 26.041666666666668vw;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.604166666666667vw;
}

.professional01 .content .items:nth-child(even){
    margin-left: auto;
}
.professional01 .content .items .imgbox{
    width: 100%;
    height: 0;
    padding-bottom: 59.8888888%;
    overflow: hidden;
    position: relative;
}
.professional01 .content .items .imgbox img{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}

.professional01 .content .items .baseinfobox{
    width: 100%;
}
.professional01 .content .items .baseinfobox .info{
    margin-right: auto;
}
.professional01 .content .items .baseinfobox .iconbox{
    width: 4.21875vw;
    height: 4.21875vw;
    z-index: 1;
}
.professional01 .content .items .baseinfobox .iconbox .icon{
    width: auto;
    height: 2.2916666666666665vw;
    
}
.professional01 .content .items .baseinfobox .iconbox .icon img{
    object-fit: contain;
    width: auto;
    height: 100%;
}
.professional01 .content .items .baseinfobox .iconbox .bgcircle{
    width: 2.3958333333333335vw;
    height: 2.3958333333333335vw;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background-color: #bf1a20;
    left:0;
    bottom:0;
    z-index: 0;
    transform-origin: left bottom;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.professional01 .content .items .details{
    cursor: pointer;
    width: 100%;
    height: inherit;
    top:100%;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.professional01 .content .items .details .detailsbox .multiDot span{
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    background-color: #BF1920;
    opacity: 1;
}
.professional01 .content .items .details .detailsbox .multiDot span:nth-child(2){
    opacity: 0.5 !important;
}
.professional01 .content .items .details .detailsbox .multiDot span:nth-child(3){
    opacity: 0.3 !important;
}

.professional01 .content .items .details .detailsbox .textinfo{
    padding-top: 0 !important;
}
.professional01 .content .items .details .detailsbox .textinfo .text{
    flex: 0 0 50%;
}   
.professional01 .content .items .details .detailsbox .textinfo .text-left .subtit{
    width: 80%;
}
.professional01 .content .items .details .detailsbox .textinfo .text-right{
    padding-top: 2.604166666666667vw;
}
.professional01 .content .items .details .detailsbox .textinfo .rightDetails{
    height: 11.458333333333332vw;
    overflow-y: scroll;
}
.professional01 .content .items .details .detailsbox .textinfo .rightDetails::-webkit-scrollbar{
    width: 0.26041666666666663vw !important;
    height: 0.5208333333333333vw !important;
    background-color: #e5e5e5 !important;
    border-radius:0.20833333333333334vw;
    -webkit-border-radius:0.20833333333333334vw;
    -moz-border-radius:0.20833333333333334vw;
    -ms-border-radius:0.20833333333333334vw;
    -o-border-radius:0.20833333333333334vw;
}

.professional01 .content .items .details .detailsbox .textinfo .rightDetails::-webkit-scrollbar-thumb {
    background-color: #BF1920;
    border-radius: 0.20833333333333334vw;
    -webkit-border-radius: 0.20833333333333334vw;
    -moz-border-radius: 0.20833333333333334vw;
    -ms-border-radius: 0.20833333333333334vw;
    -o-border-radius: 0.20833333333333334vw;

}
.professional01 .content .items:hover .details{
    top:0;
}



.case01{
    margin-top: 2.083333333333333vw;
}

.case01 .catelist{
    width: 100%;
    padding: 2.083333333333333vw 0;
    overflow-x: scroll;
}
.case01 .catelist .item{
    flex-shrink: 0;
}
.case01 .catelist a{
    color: #737373;
    font-size: 1.0416666666666665vw;
    display: inline-block;
    margin-right: 2.083333333333333vw;
    position: relative;
}
.case01 .catelist a:hover{
    color: #454545;
}

.case01 .cate-swiper{
    width: 100%;
}
.case01 .cate-swiper .swiper-slide{
    width: auto;
    position: relative;
}
.case01 .cate-swiper .swiper-slide a{
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 2.083333333333333vw 0;
}
.case01 .cate-swiper .swiper-slide.swiper-slide-active a{
    color: #454545;
}
.case01 .cate-swiper .swiper-slide a.active::after{
    content: "";
    width: 78%;
    height: 1px;
    background-color: #BF1920;
    display: inline-block;
    position: absolute;
    left:0;
    bottom: 0;
}   
.case01 .caselist {
    gap: 2.604166666666667vw;
    margin-bottom: 2.604166666666667vw;
}
.case01 .caselist .items{
    flex:0 0 31.39534%;
    padding: 2.083333333333333vw;
    border: 1px solid rgba(0, 0, 0, 0.1);
    
}
.news01 .caselist .items{
    padding: 0;
}
.case01 .caselist .items:hover{}

.case01 .caselist .items:hover .title{
    transition: all 0.3s linear;
    color: #BF1920;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.case01 .caselist .items:hover .moreA {
    background-color: #BF1920;
}
.case01 .caselist .items:hover .moreA .iconbox {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.news01 .caselist .items .imgbox{
    width: 100%;
    height: 0;
    padding-bottom: 55.7955%;
    position: relative;
    overflow: hidden;
}
.news01 .caselist .items .imgbox img{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}
.news01 .caselist .items .info{
    padding: 2.083333333333333vw;
}
.news01 .caselist .items .info .timebox{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    
}


.news01 .caselist .items .info .timebox::before{
    content: "";
    width: 0%;
    height: 1px;
    background-color: #BF1920;
    display: inline-block;
    position: absolute;
    left:0;
    top:0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.news01 .caselist .items:hover .info .timebox::before{
    width: 50%;
}




.pagebox .page a{
    display: inline-block;
    width: 2.604166666666667vw;
    height: 2.604166666666667vw;
    font-size: 0.7291666666666666vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.pagebox .page a:not(.btn){
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 1);
    margin: 0 0.26041666666666663vw;
}
.pagebox .page a:not(.btn).active,.pagebox .page a:not(.btn):hover{
    background-color: #BF1920;
    border: 1px solid #BF1920;
    color: #fff;
}
.pagebox .page a#prev{
    background: url(../image/prevPage.png) no-repeat center center;
    background-size: 100% 100%;
    margin-right: 0.78125vw;
}
.pagebox .page a#prev:hover{
    background: url(../image/prevPage_hover.png) no-repeat center center;
    background-size: 100% 100%;
}
.pagebox .page a#next{
    background: url(../image/nextPage.png) no-repeat center center;
    background-size: 100% 100%;
    margin-left: 0.78125vw;
}
.pagebox .page a#next:hover{
    background: url(../image/nextPage_hover.png) no-repeat center center;
    background-size: 100% 100%;
}

.news01SwiperBox{
    width: 100%;
    overflow: hidden;
}
.news01SwiperBox a .imgbox{
    width: 61.458333333333336vw;
    position: relative;
    height: 0;
    padding-bottom: 31.398%;
    overflow: hidden;
}
.news01SwiperBox a .imgbox img{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transform: translate(-50%, -50%); 
}
.news01SwiperBox a .info{
    width: 28.125vw;
    padding: 2.083333333333333vw;
}
.news01SwiperBox a .info .line{
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}
.news01SwiperBox .newsTopSwiper .newsTop-pagination{
    width: 28.125vw;
    z-index: 10;
    left:unset;
    right: 0;
    bottom: 2.96875vw;
    padding-left: 2.083333333333333vw;
}

.news01SwiperBox .newsTopSwiper .newsTop-pagination span{
    position: relative;
    width: 0.20833333333333334vw;
    height: 0.20833333333333334vw;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
    margin: 0 0.78125vw;
}
.news01SwiperBox .newsTopSwiper .newsTop-pagination span.swiper-pagination-bullet-active{
    background-color: #BF1920;
}
.news01SwiperBox .newsTopSwiper .newsTop-pagination span.swiper-pagination-bullet-active::before{
    content: "";
    width: 1.5625vw;
    height: 1.5625vw;
    border: 1px solid #BF1920;
    display: inline-block;
    position: absolute;
    top: -0.78125vw;
    left: -0.7291666666666666vw;
}

.contact01 .content{
    padding: 2.604166666666667vw;
}
.contact01 .content .left{
    width: 49.47916666666667vw;
}
.contact01 .content .left .itembox{
    width: 100%;
}
.contact01 .content .left .itembox .items{
    border: 1px solid rgba(4, 4, 4, .1);
    padding: 0.78125vw 1.5625vw;
    width: 100%;
    flex:0 0 48%
}
.contact01 .content .left .itembox .items:last-child{
    margin-left: auto;
}
.contact01 .content .left input{
    border: 0px;
    outline: unset;
    width: 100%;
    height: 2.604166666666667vw;
}
.contact01 .content .left .itembox .items .icon,.contact01 .content .left .messbox .icon{
    width: 0.9375vw;
    height: 0.9375vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.78125vw;
}
.contact01 .content .left .itembox .items .icon img,.contact01 .content .left .messbox .icon img{
    width: auto;
    height: 100%;
}
.contact01 .content .left .itembox .items .inputbox{
    width: 100%;
}
.contact01 .content .left .messbox{
    width: 100%;
    height: 15.625vw;
    border: 1px solid rgba(4, 4, 4, .1);
    padding: 0.78125vw 1.5625vw;
}
.contact01 .content .left .messbox .tips{
    width: 100%;
    height: 13.958333333333334vw;
}
.contact01 .content .left .messbox .tips textarea{
    border: 0;
    outline: unset;
    width: 100%;
    resize: none;
    height: inherit;
}

.contact01 .content .left .btnbox .btn{
    width: 13.020833333333334vw;
    height: 3.125vw;
}
.contact01 .content .left .btnbox .btn .arr{
    width: 0.4166666666666667vw;
    height: 0.4166666666666667vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-left: 0.26041666666666663vw;
    position: relative;
    top:0.10416666666666667vw;
}


.contact01 .content .right{
    padding-left: 5.208333333333334vw;
}

.contact01 .content .right .items .icon{
    width: 0.9375vw;
    height: 0.9375vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.78125vw;
}
.contact01 .content .right .items .icon img{
    width: auto;
    height: 100%;
}
.contact01 .content .right .qrbox .qr:nth-child(2){
    margin-left: 4.166666666666666vw;
}
.contact01 .content .right .qrbox .qr .imgbox {
    width: 8.333333333333332vw;
    height: 8.333333333333332vw;
}
.contact01 .content .right .qrbox .qr .imgbox  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact01 .mapbox{
    width: 100%;
    height: 0;
    padding-bottom: 41.569999999%;
    overflow: hidden;
}
.contact01 .mapbox .left,.contact01 .mapbox .right{
    width: 50%;
    height: 0;
    padding-bottom: 41.569999999%;
    overflow: hidden;
}
.contact01 .mapbox .right{
    background: url("../image/path.png") no-repeat 100% 80%,#fff;
    background-size: 50% 50%;
}
.contact01 .mapbox .mapbg{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.contact01 .mapbox .maposbox{
    width: 18.072916666666668vw;
    height: 5.364583333333333vw;
    left: 48%;
    top: 28%;
}

.contact01 .mapbox .maposbox img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.honors-container {
    overflow: hidden;
    width: 100%; /* 根据需要设置宽度 */
    position: relative;
    display: flex;
}
.honors-container .swiper-slide{
    width: 33.333333%;
}

/* .honors-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.honors-slide {
    min-width: 33.333333%; 
} */


@keyframes teamBgAnimation {

}
@keyframes rotateD {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(180deg);
    }
}
.nav .navbox .mobile,#mnavbox{
    display: none;
}
.honors-container {
    width: 100%;
}
.honors-container .swiper-slide {
    /* width: 100% !important; */
    transition: width 0.3s; 
}
/* .honors-container .active {
    width: 46% !important; 
} */
.redline{
    width: 0.5208333333333333vw;
    height: 2px;
    background-color: #BF1920;
    margin: 1.5625vw 0;
}
.detailContent .left .teambox{
    width: 19.270833333333336vw;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}
.detailContent .left .teambox img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.infos{}
.infos .infoLeft,.infos .infoRight{
    flex: 0 0 48%
}
.infos .infoRight{
    margin-left: auto;
}



@media (max-width: 768px) {
    .pc,.swiper-pagination-progressbar,.banner .playbox{
        display: none;
    }
    .nav{
        height: 60px;
    }
    .nav.scrolled{
        height: 60px;
    }
    .nav .logobox{
        width: 130px;
        display: flex;
    }
    .nav .logobox a{
        display: flex;
        align-items: center;
    }
    .navLine{
        display: none;
    }
    .nav .navbox .mobile{
        display: flex;
    }
    .nav .navbox .mobile .mpan{
        display: inline-block;
        width: 18px;
        height: 2px;
        background: #BF1920;
        position: relative;
    }
    .nav .navbox .mobile .mpan::before,.nav .navbox .mobile .mpan::after{
        content: "";
        width: 18px;
        height: 2px;
        background: #BF1920;
        display: inline-block;
        position: absolute;
        left:0;
    }
    .nav .navbox .mobile .mpan::before{
        top:-6px;
    }
    .nav .navbox .mobile .mpan::after{
        top:6px;
    }


    #mnavbox{
        width: 100vw;
        height: 100vh;
        position: fixed;
        top:0;
        left:-100%;
        z-index: 999999;
        background: rgba(255,255,255,.9);
        padding: 30px;
        transition: left 0.3s linear;
        -webkit-transition: left 0.3s linear;
        -moz-transition: left 0.3s linear;
        -ms-transition: left 0.3s linear;
        -o-transition: left 0.3s linear;
    }
    #mnavbox.open{
        left: 0;
        display: block;
    }
    #mnavbox .closebox{
        position: absolute;
        width: 15px;
        height: 15px;
        top:23px;
        right: 22px;
    }
    #mnavbox .closebox::before,#mnavbox .closebox::after{
        content: "";
        width: 18px;
        height: 2px;
        display: inline-block;
        transform-origin: center center;
        background-color: #BF1920;
        position: absolute;
        left:-4px;
        top:7px;
    }
    #mnavbox .closebox::before{
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }
    #mnavbox .closebox::after{
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }
    #mnavbox .logo{
        position: absolute;
        left: 22px;
        top:21px;
    }
    #mnavbox .logo a{
        width: 130px;
        display: inline-block;
    }
    #mnavbox .logo a img{
        width: 100%;
        height: auto;
    }
    #mnavbox .list{
        margin-top: 30px;
    }
    #mnavbox .list .item {
        padding: 10px 0;
        border-bottom: 1px solid #e1e1e1;
    }
    #mnavbox .list .item a{
        font-size: 14px;
        color: #454545;
    }
    #mnavbox .list .item.active a{
        color: #BF1A20;
    }

    .banner .swiper{
        height: 30vh;
    }
    .banner .swiper .swiper-slide .textbox{
        height: 30vh !important;
    }
    .banner .swiper .swiper-slide .textbox .title{
        font-size: 16px;
    }
    .banner .swiper .swiper-slide .textbox .subtitle{
        font-size: 12px;
        padding: 0 30px;
        text-align: center;
    }
    .banner .downbox .box .icon{
        width: 20px;
        height: 20px;
    }
    .banner .downbox .box .text{
        font-size: 10px;
    }
    .banner .pageBox{
        right: 20px;
    }
    .banner .pageBox .pageLine{
        height: 12px;
    }
    #section2{
        height: auto;
    }
    #section2 .cont{
        flex-direction: column;
    }
    #section2 .cont .left,#section2 .cont .right{
        width: 100%;
    }
    #section2 .cont .left{
        padding-right: 0;
    }
    .more a{
        width: 90px;
        height: 30px;
    }
    .more a .txt{
        font-size: 12px;
    }
    .more a .btn .arrow-right{
        width: 8px; 
        height: 8px;
    }
    #section3{
        flex-direction: column;
    }
    #section3 .left, #section3 .right{
        width: 100%;
    }
    #section3 .left{
        padding-right: 20px;
    }
    #section3 .numbox{
        position: unset;
        display: flex;
        width: 100%;
        
    }
    #section3 .numbox .numItem{
        padding: 20px ;
        height: auto;
    }
    .multiDot span{
        width: 4px;
        height: 4px;
    }
    #section2 .cont .right .conts{
        height: 70vh;
    }
    #section2 .cont .right .conts .item .iconbox{
        width: 40px;
        height: 40px;
    }
    #section2 .cont .right .conts .item .iconbox .bgcircle{
        width: 20px;
        height: 20px;
    }
    #section2 .cont .right .conts .item .iconbox .icon{
        width: 30px;
        height: 30px;
    }
    #section2 .cont .right .conts .swiper-slide:nth-child(odd) {
        background-color: #fff;
    }
    #section2 .cont .right .conts .swiper-slide:nth-child(2),#section2 .cont .right .conts .swiper-slide:nth-child(3) {
        background-color: #f7f7f7;
    }
    #section2 .cont .right .conts .swiper-slide:nth-child(6),#section2 .cont .right .conts .swiper-slide:nth-child(7) {
        background-color: #f7f7f7;
    }
    #section2 .cont .right .conts .swiper-slide:nth-child(10),#section2 .cont .right .conts .swiper-slide:nth-child(11) {
        background-color: #f7f7f7;
    }
    #section2 .cont .right .conts .swiper-slide:nth-child(14),#section2 .cont .right .conts .swiper-slide:nth-child(15) {
        background-color: #f7f7f7;
    }
    #section4 .mainSwiper{
        position: unset;
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
    .teamnavigation{
        display: none;
    }
    #section4{
        padding-bottom: 20px;
    }
    #section4 .teamSwiperBox{
        position: unset;
    }
    #section4 .teamThumbSwiper{
        height: 20vh;
        
    }
    #section4 .teamThumbSwiper .box .bgbox{
        height: 20vh;
    }
    #section4 .teamThumbSwiper .box .imgbox{
        height: 15vh;
    }
    #section4 .more-bg{
        display: none;
    }
    #section5 .listbox{
        flex-direction: column;
    }
    #section5 .listbox .item{
        height: 30vh;
        margin-bottom: 15px;
    }
    #section5 .listbox .item .imgbox{
        height: 20vh;
    }
    #section5 .listbox .newsItem .infobox{
        padding: 15px;
    }
    #section5 .listbox .newsItem .infobox .title{
        height: auto;
    }
    #section5 .listbox .newsItem .infobox .desc{
        height: auto;
    }
    .timebox .moreA{
        width: 24px;
        height: 24px;
    }
    .timebox .moreA .iconbox{
        width: 12px;
        height: 12px;
    }
    .footer .info{
        flex-direction: column;
    }
    .footer .info .left,.footer .info .right{
        width: 100%;
    }
    .footer .info .left{
        padding-right: 0;
        border-right: 0px;
    }
    .footer .info .left .logo{
        width: 100%;
        height: auto;
    }
    .footer .info .left .logo a{
        width: 70%;
        height: auto;
    }
    .footer .info .left .logo a img{
        width: 100%;
    }
    .footerInput{
        font-size: 12px;
    }
    .footer .info .left .formbox .items{
        margin-top: 15px;
    }
    .footer .subitem{
        margin-top: 20px;
    }
    .footer .subitem .moreA{
        width: 30px;
        height: 30px;
    }
    .footer .subitem .moreA .iconbox{
        height: 15px;
        width: 15px;
    }
    .footer .info .right{
        padding-left: 0;
    }
    .footer .info .right .menulist{
        flex-wrap: wrap;
    }
    .footer .info .right .menulist .items{
        flex: 0 0 25%;
        margin-top: 25px;
    }
    .footer .info .right .contactbox{
        margin-top: 20px;
    }
    .footer .info .right .contactright .btnbox{
        width: 35px;
        height: 35px;
        display: none;
    }
    .footer .info .right .contactleft .items .icon{
        width: 12px;
        height: 12px;
        margin-right: 8px;
    }
    .footer .copyright{
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        height: auto;
        padding: 10px 0;
    }
    .backtop{
        width: 30px;
        height: 30px;
    }
    .pageBanner{
        height: 30vh;
    }
    .pageNav{
        padding: 0 10px;
    }
    .pageNav .pageNavMenu{}
    .pageNav .pageNavMenu .items{
        height: 40px;
        background-color: #fff;
    }
    .pageNav .pageNavMenu .items .items-left .icon{
        width: 15px;
        height: 15px;
    }
    .pageNav .pageNavMenu .items .items-right{
        display: none;
    }
    .pageNav .pageNavMenu .items .text{
        font-size: 13px;
    }
    #about01{
        flex-direction: column;
    }
    #about01 .left,#about01 .right{
        width: 100%;
    }
    #about01 .left{
        padding-top: 30px;
    }
    #about01 .right{
        margin-top: 15px;
    }
    .about03 .cont .scrollbox .items .list .listItems{
        height: 25vh;
    }
    .honors-container .swiper-slide {
        width: 100% !important;
        transition: width 0.3s; 
    }
    .honors-container .active {
        width: 100% !important; 
    }
    .about03 .cont .scrollbox .items .list .listItems{
        width: 100%;
        padding-right: 0;
    }
    .about03 .cont .scrollbox .items .list .imgbox{
        margin-top: 10px;
        width: 100%;
        height: 0;
        padding-bottom: 80%;
        overflow: hidden;
        position: relative;
        margin-left: 0;
    }
    .about03 .cont .scrollbox .items .list .imgbox img{
        position: absolute; 
        top: 50%; 
        left: 50%; 
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        transform: translate(-50%, -50%); 
    }
    .about03 .cont .scrollbox .items .list{
        width: 100%;
        flex-wrap: wrap;
    }
    .pageBanner .subtitle{
        padding: 0 20px;
    }
    .newsitems{
        flex: 0 0 100%
    }
    .newsitems .box .infobox .title{
        height: auto;
    }
    .pagebox .page a{
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    .professional01 .content .items{
        flex: 0 0 100%;
        height: 25vh;
    }
    .professional01 .content .items .baseinfobox .iconbox{
        width: 40px;
        height: 40px;
    }
    .professional01 .content .items .baseinfobox .iconbox .bgcircle{
        width: 20px;
        height: 20px;
    }
    .professional01 .content .items .baseinfobox .iconbox .icon{
        width: 20px;
        height: 20px;
    }
    .professional01 .content .items .details .detailsbox .textinfo .rightDetails{
        height: 20vh;
    }
    .team02 .newsitems .box .infobox .desc{
        height: 15vh;
    }
    .case01 .catelist{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .case01 .catelist a{
        font-size: 14px;
    }
    .case01 .caselist .items{
        flex: 0 0 100%;
    }
    .posibox{
        height: auto;
        padding: 15px;
        flex-direction: column;
        justify-content: space-between;
    }
    .posibox .backbox {
        margin-bottom: 15px;
        margin-right: auto;
    }
    .posibox .backbox .icon{
        width: 12px;
        height: 12px;
    }
    .detailContent {
        width: 100%;
        flex-wrap: wrap;
    }
    .detailContent .left,.detailContent .right{
        width: 100%;
    }
    .detailContent .left{
        padding-right: 0;
        border-right: 0;
    }
    .detailContent .sharebox{
        display: none;
    }
    .detailContent .right{
        padding-left: 0;
    }
    .otherpage{
        padding-left: 20px;
    }
    .otherpage .btn span{
        flex-shrink: 0;
    }
    .moreNews .list{
        flex-wrap: wrap;
    }
    .moreNews .list .items{
        flex:0 0 100%
    }
    .news01SwiperBox a {
        flex-wrap: wrap;
    }
    .news01SwiperBox a .imgbox{
        width: 100%;
        padding-bottom: 48%;
    }
    .news01SwiperBox a .info{
        width: 100%;
    }
    .news01SwiperBox .newsTopSwiper .newsTop-pagination{
        display: none;
    }
    .contact01 .content{
        flex-direction: column;
    }
    .contact01 .content .left,.contact01 .content .right{
        width: 100%;
    }
    .contact01 .content .left .itembox .items{
        padding: 5px;
    }
    .contact01 .content .left .messbox{
        padding: 5px;
    }
    .contact01 .content .left .itembox .items .icon, .contact01 .content .left .messbox .icon,.contact01 .content .right .items .icon{
        width: 12px;
        height: 12px;
    }
    .contact01 .content .left input{
        height: auto;
        font-size: 12px;
        height: 30px;
    }
    .contact01 .content .left .messbox{
        height: 15vh;
    }
    .contact01 .content .left .btnbox .btn{
        width: 90px;
        height: 35px;
    }
    .contact01 .content .left .btnbox .btn .arr{
        width: 8px;
        height: 8px;
    }
    .about01 .right{
        margin-top: 25px;
    }
    .contact01 .content .right{
        padding-left: 0;
    }
    .contact01 .content .right .qrbox .qr .imgbox{
        width: 100px;
        height: 100px;
    }
    .server-pagination {
        display: flex;
        bottom: 6px !important;
        height: 12px;
    }
    .server-pagination .swiper-pagination-bullet{
        width: 12px;
        height: 12px;
        background: #fff;
    }
    .server-pagination .swiper-pagination-bullet::after{
        width: 3px;
        height: 3px;
    }
    .detailContent .left{
        display: flex;
        justify-content: center;
    }
    .detailContent .left .teambox{
        width: 80%;
    }
    .posibox .linkbox {
        display: flex;
        justify-content: end;
        align-items: end;
        width: 100%;
    }
    .posibox .linkbox a:last-child{
        width: auto;
    }
    .redline{
        width: 10px;
        height: 1px;
    }
}







