@font-face {
    font-family: 'iconfont';
    src: url('../font/iconfont.woff2') format('woff2'),
    url('../font/iconfont.woff') format('woff'),
    url('../font/iconfont.ttf') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}
@font-face {
    font-family: 'SourceHanSansCN';
    src: url('../font/SourceHanSansCN.woff') format('woff'),
      url('../font/SourceHanSansCN.ttf') format('truetype');
;
}

body,
html {
    height: 100%;
    color: #3e3e3e;
    font-family: SourceHanSansCN,"microsoft yahei", serif;
    font-size: 0.8vw;
    /*font-weight: 200;*/
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
.container{
    width: 90%;
    margin: 0px auto;
    position: relative;
}
ul,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #231815;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #231815;
    width: 7px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab;
}

::selection {
    background: #231815;
    color: #fff;
}

input {
    -webkit-appearance: none;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}
textarea,
input {
    font-family: "Microsoft YaHei", '微软雅黑', "Arial";
    font-size: 14px;
}
.loading{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background: #07232f;
    z-index: 999;
}
.loading.active{
    display: none;
}
.pc{
    display: block;
}
.mobile{
    display: none;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.pic {
    background: center center no-repeat;
    background-size: cover;
    -webkit-transition: all 0.5s;
}
/*header*/
.header {
    width: 100%;
    height: auto;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0px 5%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    align-items: center;
    background: color(rec2020 0 0 0 / 0.36);
}
.header::before{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: rgb(10 10 10 / 0%);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.header.active::before{
    background: #fff;
}

.logo {
    width: 15%;
    height: auto;
    position: relative;
    display: block;
}
.logo img{
    transition: all 0.4s;
}
.logo img:nth-child(2){
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    opacity: 0;
}
.header.active .logo img:nth-child(1){
    opacity: 0;
}
.header.active .logo img:nth-child(2){
    opacity: 1;
}

.header.active .nav ul li a{
    color: #051c24;
}
.nav {
    width: 60%;
    height: auto;
}

.nav ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav ul li {
    width: calc(100% / 6);
    transition: all 0.4s;
}

.nav ul li .firstLab{
    width: 100%;
    position: relative;
    /*font-weight: bold;*/
}

.nav ul li .firstLab::after{
    width: 0%;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    background: #184791;
    transition: all 0.35s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.nav ul li .firstLab .active::after {
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: #184791;
    transition: all 0.35s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.nav ul li:hover .firstLab::after{
    width: 100%;
    left: 0%;
}

.nav ul li:hover{
    background: #fff;
}

.nav ul li:hover .firstLab a{
    color: #184791;
}

.nav ul li .secondLab{
    width: 100%;
    height: auto;
    position: absolute;
    padding: 35px 5%;
    left: 0;
    top: 80px;
    background: #f7f7f7;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
}

.nav ul li:hover .secondLab{
    opacity: 1;
    pointer-events: auto;
}

.nav ul li .secondLab .menu{
    width: 200px;
}

.nav ul li .secondLab .menu a{
    line-height: 30px;
    color: #171717;
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.nav ul li .secondLab .menu a::after,.nav ul li .secondLab .solution_item .name::after,.nav ul li .secondLab .case_item::after{
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    content: '';
    background:#184791;
    transition: all 0.35s cubic-bezier(0.215, 0.610, 0.355, 1);
}


.nav ul li .secondLab .case_item{
    width: auto;
    line-height: 30px;
    color: #171717;
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    margin: 0px 1vw;
}

.nav ul li .secondLab .case_item p{
    margin-right: 10px;
}

.nav ul li .secondLab .solution_item{
    width: 12%;
    margin: 0px 1vw;
}
.nav ul li .secondLab .solution_item .inner{
    padding-top: 60%;
}

.nav ul li .secondLab .solution_item .name{
    line-height: 30px;
    color: #171717;
    display: flex;
    justify-content: space-between;
    padding: 25px 0px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.nav ul li:nth-child(n+3) .secondLab{
    justify-content: center;
}



.nav ul li .secondLab .menu a:hover::after,.nav ul li .secondLab .menu a.active::after,.nav ul li .secondLab .solution_item:hover .name::after,.nav ul li .secondLab .case_item:hover::after{
    width: 100%;
}

.nav ul li .secondLab .solution_item:hover img{
    transform: scale(1.05);
}

.nav ul li .secondLab .menu a:hover,.nav ul li .secondLab .menu a.active,.nav ul li .secondLab .solution_item:hover .name,.nav ul li .secondLab .case_item:hover{
    color: #184791;
}

.nav ul li .secondLab .sr_box{
    width: calc(100% - 230px);
    overflow: hidden;
    position: relative;
}
.nc_box1 .swiper-pagination-progressbar{
    top: auto !important;
    bottom: 0px !important;
}

.nc_box1 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: #184791;
}

.nc_box1{
    width: 100%;
    height: 0px;
    position: relative;
    overflow: hidden;
}

.nc_box1.active{
    height: auto;
}

.nav ul li .secondLab .sr_warp{
    width: 100%;
    position: relative;
    display: flex;
    padding-bottom: 25px;
    overflow: hidden;
}
.swiper-scrollbar{
    height: 10px !important;
    cursor: pointer;
}
.swiper-scrollbar-drag{
    background:#184791 !important;
}
.zl-scrollBarBox{
    height: 10px !important;
    position:absolute;
    background: gainsboro;
    border-radius: 5px;
    overflow: hidden;
}
.zl-scrollBar{
    height: 10px !important;
    position:absolute;
    left:0;
    top:0;
    background:#184791;
    transition:background 0.3s;
    cursor: pointer;
}
.zl-scrollBar.zl-verticalBar{
    min-height:15px;
    height: 20px;
}

.zl-scrollBar.zl-horizontalBar{
    min-width:10px;
}
.zl-scrollBar:hover{
    background:#184791;
}
.zl-scrollContentDiv{
    position:relative !important;
    width:100% !important;
    height:100% !important;
    padding:0 !important;
    margin:0 !important;
    top:0;
    left:0;
}
.nav ul li .secondLab .sr_warp a{
    width: 260px;
    height: auto;
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
    line-height: 1;
    margin-right: 15px;
    padding-bottom: 35px;
    cursor: grab;
}

.nav ul li .secondLab .sr_warp a:hover .name{
    color: #184791;
}

.nav ul li .secondLab .sr_warp a:hover .pic{
    transform: scale(1.05);
}

.nav ul li .secondLab .sr_warp a .thum{
    margin-bottom: 20px;
    width: 80%;
    margin-left: 10%;
}

.nav ul li .secondLab .sr_warp a .name{
    /*font-weight: bold;*/
    margin-top: 10px;
    color: #171717;
    line-height: 20px;
}

.nav ul li a {
    display: block;
    width: 100%;
    line-height: 80px;
    text-align: center;
    color: #fff;
  font-size: 1vw;;
}

.headerR{
    width:30%;
    position: relative;
    display: flex;
    color: #fff;
    align-items: center;
    z-index: 1;
}
@media screen and (max-width: 1200px) {
    .headerR{
        width: 40%;
    }
}
.headerR .hottel{
    width: 50%;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 30px;
    color: #fff;
}

.header.active .headerR .hottel,.header.active .headerR .version{
    color: #3e3e3e;
}

.headerR .hottel::after{
    width: 1px;
    height: 60%;
    position: absolute;
    right: 0%;
    top: 25%;
    content: '';
    background: rgba(255, 255, 255, 0.1);
}

.header.open .headerR .hottel::after{
    background: rgba(0, 0, 0, 0.1);
}

.headerR .hottel .icon{
    width: 30px;
    height: 30px;
    font-size: 26px;
}

.headerR .hottel p{
    font-size:20px;
}

.langung {
    display: flex;
    font-size: 1vw;
    cursor: pointer;
    line-height: 80px;
    margin-right: 15px;
    padding: 0px 10px;
    color: rgba(255, 255, 255, .3);
}

.langung a {
    padding: 0px 10px;
    color: rgba(255, 255, 255, .3);
}

.langung a:hover {
    color: rgba(255, 255, 255, .7);
    text-decoration: underline;
}

.langung a.active {
    color: rgba(255, 255, 255, .7);
}
.active .langung {
    color: rgb(144 143 143);
}
.active .langung a.active{
    color: #0C0C0C;
}
.active .langung a {
    padding: 0px 10px;
    color: rgb(144 143 143);
}
@media screen and (max-width: 1024px) {
    .pc {display: none;}
    .mobile {display: block;}
    .sp_header {
        height: 6vh;
        overflow: hidden;
        background: #fff;
        position: fixed;
        z-index: 999;
        width: 100%;
        top: 0
    }
    .sp_logo {
        float: left;
        height: 6vh;
        width: auto;
    }
    .sp_logo img {
        margin: auto;
        height: 100%;
        width: auto;
        transition: .35s all ease-in-out;
    }
    .sp_nav {
        width: 50px;
        height: 50px;
        float: right;
        position: relative;
        cursor: pointer;
        margin: 0 2vw;
    }

    .sp_nav span {
        display: block;
        background: #184791;
        width: 30px;
        height: 2px;
        position: absolute;
        left: 10px;
        transition: all ease .35s
    }
    .sp_nav span:nth-of-type(1) {top: 15px;}
    .sp_nav span:nth-of-type(2) {top: 25px}
    .sp_nav span:nth-of-type(3) {top: 35px}

    .sp_flex{display: flex;}
    .sp_black{
        width: 50px;
        height: 100%;
        position: fixed;
        background: black;
        right: -100%;
        top: 0;
        transition: top ease .35s
    }
    .sp_flex .mengBan{
        width: 15%;
        height: 100%;
        background: rgba(0,0,0,.5);
        position: fixed;
        z-index: 999;
        top: 0;
        right: -100%;
        transition: right ease .35s
    }
    .sjj_nav {
        position: fixed;
        z-index: 999;
        background: white;
        width: 85%;
        height: 100%;
        font-size: 14px;
        line-height: 40px;
        top: 0;
        right: -100%;
        padding-top: 15vw;
        overflow: auto;
        overflow-x: hidden;
        transition: right ease .35s
    }
    .nav_show {right: 0;}
    .nav_show2 {right: 85% !important;}
    .sp_flex .sjj_nav .close{
        width: 25px;
        position: absolute;
        right: 4vw;
        top: 4vw;
    }
    .sjj_nav ul li {
        border-top: 1px #ddd solid;
        position: relative;
        line-height: 55px;
        font-size: 14px;
    }
    .sjj_nav > ul > li:first-child {
        overflow: hidden;
        border-top: 0;
    }
    .sjj_nav ul li a {
        color: rgba(0, 0, 0, .8);
        width: 80%;
        display: block;
        font-size: 16px;
        padding-left: 25px;
    }
    .sjj_nav ul li i {
        position: absolute;
        top: 5px;
        right: 0;
        height: 30px;
        padding: 0 7px;
    }
    .sjj_nav ul li ul {
        background: #f3f3f3;
        display: none;
        border-top: 1px #ddd solid;
        padding: 10px 0;
    }
    .sjj_nav ul li ul li {
        border: transparent;
        line-height: 30px;
    }
    .sjj_nav ul li i svg {
        width: 20px;
        height: 20px;
        fill: #184791;
    }
    .sjj_nav ul li i svg {
        transform: rotate(-90deg);
        transition: all ease .35s;
    }
    .sjj_nav ul li .sjj_nav_i_se svg {
        transform: rotate(0);
    }
    .sjj_nav ul li .sjj_nav_i_se svg {
        fill: #184791;
    }
}
/*header end*/
/*footer*/
.footer {
    width: 100%;
    height: auto;
    position: relative;
    background: #184791;
    color: rgba(255, 255, 255, 0.5);;
    padding: 50px 5% 15px;
}

.footer .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 15px;
}

.footer .top .left {
    width: 55%;
}

.footer .top .right {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}


.footer .flogo {
    width: 200px;
    margin-bottom: 10px;
}

.footer .adds {
    width: 100%;
    height: auto;
    position: relative;
}

.footer .adds ul li {
    width: 100%;
    height: auto;
    display: flex;
    line-height: 30px;
}

.footer .adds ul li p {
    width: 85px;
}

.footer .adds ul li b {
    display: block;
    width: calc(100% - 45px);
    font-weight: normal;
}

.footer .fnav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer .fnav a {
    display: block;
    width: 20%;
    color: rgba(255, 255, 255, 0.5);
    line-height: 35px;
    position: relative;
    text-align: center;
    transition: all .5s;
}

.footer .fnav a::before {
    width: 1px;
    height: 40%;
    position: absolute;
    right: 0%;
    top: 30%;
    background: rgba(255, 255, 255, 0.2);
    content: '';
}

.footer .fnav a:last-child::before {
    display: none;
}

.footer .fnav a::after {
    background: #fff;
    border-radius: 5px;
    bottom: 0px;
    content: "";
    height: 1px;
    left: 25%;
    position: absolute;
    transform: scaleX(0);
    transition: all .5s cubic-bezier(.19, 1, .22, 1);
    width: 50%;
}

.footer .fnav a:hover {
    color: #fff;
}

.footer .fnav a:hover::after {
    animation: inUnderHoverKey .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.785, .135, .15, .86);
    backface-visibility: hidden;
    transform-origin: center right;
    will-change: transform;
}

@keyframes inUnderHoverKey {
    0% {
        transform: scale(0, 1);
        transform-origin: center left;
    }

    47.5% {
        transform: scale(1, 1);
        transform-origin: center left;
    }

    55% {
        transform: scale(1, 1);
        transform-origin: center right;
    }

    100% {
        transform: scale(0, 1);
        transform-origin: center right;
    }

}
.footer .bottom {
    width: 100%;
    display: flex;
    justify-content: space-around;
    line-height: 25px;
    text-transform: uppercase;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    color: rgba(255, 255, 255, .5);
}

.footer .bottom a {
    color: rgba(255, 255, 255, .5);
    text-transform: initial;
}

.footer .bottom a:hover {
    color: rgba(255, 255, 255, 1);
}
/*面包屑*/
.CommonNav{background-color: rgba(0, 0, 0, .2);position: absolute;bottom: 0px;left: 0px;width: 100%;}
.CommonNav-list {display: flex;align-items: center; color: #fff; font-size: 14px;}

.CommonNav-list a{
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    height: 62px;
    position: relative;
    transition: all .4s ease;
    color: #ffffff;
}
.CommonNav-list .home{padding-right: 20px;}
.CommonNav-list a.home span{margin-right: 10px; color: #ffffff;}
.CommonNav-list a.muen:hover{color: #e60012 !important;}
@media screen and (max-width: 1024px) {
    .CommonNav-list{font-size: 3vw;}
    .CommonNav-list a{height: 4vh;}
    .footer {padding: 10px 5% 10px;}
    .footer .flogo {width: 50%;height: auto;}
    .footer .top {flex-direction: column;}
    .footer .top .left{width: 100%; display: flex;flex-wrap: nowrap;align-items: center; flex-direction: column;}
    .footer .adds {width: 100%;}
    .footer .adds ul li {font-size: 2.5vw;}
    .footer .adds ul li p {width: 30%;}
    .footer .adds ul li b {width: calc(100% - 30%);}
    .footer .top .right {width: 100%;}
    .footer .fnav {margin-bottom: 0;}
    .footer .fnav a {line-height: 35px; font-size: 3vw;}
    .footer .bottom {font-size: 2vw;}
}

/*客服*/
.floating_ck{position:fixed;right:20px;top:30%;z-index: 2;}
.floating_ck dl dd{
    position:relative;
    width:70px;
    height:70px;
    background-color: #184791;
    text-align:center;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center 30%;
    cursor: pointer;
    margin-bottom: 10px;
}
.floating_ck dl dd:hover{
    /*background-color:#e40231;*/
}
.floating_ck dl dd:hover .floating_left{display:block;}
.consult{background-image:url(../images/ico-tel.png);
    background-size: 25px 25px;
}
.qrcord{background-image:url(../images/ico-sys.png);
    background-size: 25px 25px;}
.return{background-image:url(../images/ico-top.png);
    background-size: 25px 25px;}
.floating_ck dd span{
    color:#fff;
    line-height: 105px;
    font-size: 12px;
}
.floating_ck dd .clos{
    color:#fff;
    line-height: 120px;
    font-size: 12px;
}
.floating_left{
    position:absolute;
    left:-300px;
    top:0;
    width:280px;
    height:80px;
    background: #ffffff;
    border-radius: 10px;
    /*background-color:#0000cc;*/
    z-index: 999999;
    display:none;
}
.floating_left a{color:#000;line-height:80px;}
/*.floating_ck dd a{color:#fff;display:block;padding-top:54px;}*/
.floating_ewms{height:260px;}
.floating_ewms img{
    width: 150px;
    margin-top: 30px;
    display: initial;
}
.floating_ewms p{color:#4A4A4A;margin-top:5px;}
.floating_ewms .qrcord_p01{font-size:14px;line-height:20px;}
/*.floating_tel {background: #179B92; }*/
.floating_tel p{color: #4A4A4A;text-align: left;font-size: 16px;margin-top: 10px; margin-left: 20px;}
.floating_tel a{color: #4A4A4A;text-align: left;font-size: 26px; line-height: 40px;font-weight:600;
    display: block;
    width: 100%;
    margin-left: 20px;
}
