body {
    font-size: 16px;
}

.inner {
    width: 1600px;
    margin: 0 auto;
}

.pl-inner {
    padding-left: calc((100vw - 1600px)/2);
}

.pr-inner {
    padding-right: calc((100vw - 1600px)/2);
}

.ml-inner {
    margin-left: calc((100vw - 1600px)/2);
}

.mr-inner {
    margin-right: calc((100vw - 1600px)/2);
}

.searchBtn:hover {
    color: var(--blue);
}

.searchBox {
    background : var(--blue);
    z-index: 15;
    transform: translateY(-105%);
    transition: all .6s ;
    -webkit-transition: all .6s ;
    -moz-transition: all .6s ;
    -ms-transition: all .6s ;
    -o-transition: all .6s ;
    -webkit-transform: translateY(-105%);
    -moz-transform: translateY(-105%);
    -ms-transform: translateY(-105%);
    -o-transform: translateY(-105%);
}

.searchBox .form {
    width: calc(100% - 80px);
}

.searchBox .keys {
    width: 80%;
    background: url(../images/search-w.png) no-repeat left center;
}

.searchBox .submit {
    width: 90px;
    height: 40px;
    border: 1px solid #fff;
}

.searchBox input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .65);
}

.searchBox input:-moz-placeholder {
    color: rgba(255, 255, 255, .65);
    ;}

.searchBox input::-moz-placeholder {
    color: rgba(255, 255, 255, .65);
    ;}

.searchBox input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .65);
    ;}

.searchBox.show {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100 ;
    color: #fff;
}

header .con {
    padding: 0 5vw;
}

.logoImg {
    height: 59px;
}

.icon02 {
    display: none;
}

.oneNav {
    line-height: 100px;
    white-space: nowrap;
    display: block;
    padding: 0 2vw;
    font-size: 16px;
    font-weight: bold;
}

.oneNav span {
    position: relative;
}

.oneNav span::after {
    width: 100%;
    height: 2px;
    display: block;
    content: '';
    background: #fff;
    transition: all .36s;
    transform: scale(0,1) ;
    position: absolute;
    left: 0;
    bottom: -10px;
    -webkit-transition: all .36s;
    -moz-transition: all .36s;
    -ms-transition: all .36s;
    -o-transition: all .36s;
    -webkit-transform: scale(0,1) ;
    -moz-transform: scale(0,1) ;
    -ms-transform: scale(0,1) ;
    -o-transform: scale(0,1) ;
}

nav li {
    position: relative;
}

nav li.on .oneNav span::after,nav li:hover .oneNav span::after {
    transform: scale(1,1);
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -ms-transform: scale(1,1);
    -o-transform: scale(1,1);
}

nav:hover > li:not(:hover) .oneNav {
    color: #333;
}

nav:hover > li:not(:hover) .oneNav span::after {
    transform: scale(0,1) ;
}

nav li dl {
    position: absolute;
    text-align: center;
    min-width: 150px;
    width: auto;
    top: 100%;
    left: 50%;
    background: #fff;
    -webkit-box-shadow: 0 13px 42px 11px rgba(0,0,0,.15);
    box-shadow: 0 13px 42px 11px rgba(0,0,0,.15);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

nav li dl dd {
    white-space: nowrap;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #eee;
    transition: all .36s ease;
    -ms-transition: all .36s ease;
    -o-transition: all .36s ease;
    -webkit-transition: all .36s ease;
    -moz-transition: all .36s ease
}

nav li dl dd:last-child {
    border-bottom: 0
}

nav li dl dd a {
    padding: 0 20px;
    font-size: 14px;
    color: #333!important;
    font-weight: normal!important;
    transition: all .36s ease;
    -ms-transition: all .36s ease;
    -o-transition: all .36s ease;
    -webkit-transition: all .36s ease;
    -moz-transition: all .36s ease;
    display: block
}

nav li dl dd:hover {
    background: var(--blue)
}

nav li dl dd:hover a {
    color: #fff!important;
}

/* nav  li dl:before{content:"";position:absolute;border-width:0 9px 9px;border-style:solid;border-color:transparent transparent #f6f1e1;top:-9px;left:50%;margin-left:-9px} */
nav li dl {
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateX(-50%) translateY(20px);
    -ms-transform: translateX(-50%) translateY(20px);
    -o-transform: translateX(-50%) translateY(20px);
    -webkit-transform: translateX(-50%) translateY(20px);
    -moz-transform: translateX(-50%) translateY(20px);
    transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}

nav li:hover dl {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

header::after {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    content: '';
    transition: all .36s;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, .15);
    -webkit-transition: all .36s;
    -moz-transition: all .36s;
    -ms-transition: all .36s;
    -o-transition: all .36s;
}

header.scroll,header:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    color: #333;
}

header.scroll::after,header:hover::after {
    background-color: #fff;
    height: 100%;
}

header.scroll .oneNav span::after,header:hover .oneNav span::after {
    background: var(--blue);
}

header.scroll nav li.on .oneNav ,header:hover nav li:hover .oneNav {
    color: var(--blue);
}

header.scroll .icon01,header:hover .icon01 {
    display: none;
}

header.scroll .icon02,header:hover .icon02 {
    display: block;
}

.h_nav {
    height: 60px;
    width: 60px;
    background-color: var(--blue);
    padding: 18px 8px ;
    align-items: flex-end;
    display: flex;
}

.h_nav .burger {
    width: 100%;
    height: 1px ;
    background: #fff;
    transition: .8s;
    display: inline-block;
}

.h_nav .burger:first-child {
    animation: long 2s linear infinite;
    -webkit-animation: ;
}

.h_nav .burger:nth-of-type(2) {
    width: 50%;
}

.h_nav .burger:nth-of-type(3) {
    animation: long 3s linear infinite;
    -webkit-animation: long 3s linear infinite;
}

.h_nav.close .burger:first-child {
    display: none;
}

.h_nav.close .burger:nth-of-type(3) {
    display: none;
}

.h_nav.close .burger:nth-of-type(2) {
    position: relative;
    z-index: 1;
    width: 80%;
}

.h_nav.close .burger:nth-of-type(2):before, .h_nav.close .burger:nth-of-type(2):after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: 1;
}

.h_nav.close .burger:nth-of-type(2) {
    background: transparent;
    transform: rotate(-180deg);
}

.h_nav.close .burger:nth-of-type(2):before, .h_nav.close .burger:nth-of-type(2):after {
    opacity: 1;
    transition: all .3s;
}

.h_nav.close .burger:nth-of-type(2):before {
    transform: rotate(45deg);
}

.h_nav .burger:nth-of-type(2):after {
    transform: rotate(-45deg);
}

.nav {
    color: #fff !important;
    padding-bottom: 60px;
    width: 100%;
    height: calc(100vh - 60px) ;
    transition: all .6s ;
    transform: translateX(100%);
    background-color: #000;
    position: fixed;
    top: 60px;
    right: 0;
    flex-direction: column;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transition: all .6s ;
    -moz-transition: all .6s ;
    -ms-transition: all .6s ;
    -o-transition: all .6s ;
}

.nav.show {
    transform: translateX(0) ;
    -webkit-transform: translateX(0) ;
    -moz-transform: translateX(0) ;
    -ms-transform: translateX(0) ;
    -o-transform: translateX(0) ;
}

.nav li.go-child {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
}

.nav li.go-child>a {
    line-height: 60px;
    padding: 0 20px;
    font-size: 16px;
}

.h_nav.close {
    align-items: center;
    justify-content: center;
}

.erji {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0 ;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 10;
    background: url(../images/jia.png) no-repeat center center;
    background-size: 40% auto;
}

.nav li.go-child.on .erji {
    background: url(../images/jian.png) no-repeat center center;
    background-size: 40% auto;
}

.nav-down li a {
    line-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: block;
    padding-left: 25px;
    font-size: 14px;
    opacity: 0.8;
}

.nav {
    overflow-y: scroll;
}

.nav::-webkit-scrollbar {
    /*滚动条整体样式*/
    /*高宽分别对应横竖滚动条的尺寸*/
    width: 1px;
}

.nav::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 3px;
    background: #555;
    width: 1px;
}

.nav::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 3px;
    background: #000;
    width: 1px;
}

.zwHeader {
    height: 100px;
}

.zw {
    margin-top: -100px;
    padding-top: 100px;
}

.idxBan .swiper-slide::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-image: linear-gradient(to bottom,rgba(0,0,0,.5),transparent);
}

.idxBanImg {
    /*animation: swiper_img_move 8s linear 0s infinite normal both;*/
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    min-height: 360px;
}

.idxBan .text {
    position: absolute;
    z-index: 20;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.idxBanDown {
    position: absolute;
    bottom: 5%;
    left: 50%;
    display: inline-block;
    transform: translateX(-50%);
    z-index: 20;
    animation: ani-svg 1s linear 0s alternate infinite;
    -webkit-animation: ani-svg 1s linear 0s alternate infinite;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.idxScoll {
    width: 50px;
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: 8%;
    z-index: 15;
    display: none;
}

.idxTitYin {
    height: 1em;
}

.idxMore::before {
    transition: all .36s;
    width: 3em;
    height: 3em;
    display: block;
    position: absolute;
    left: -.8em;
    top: 50%;
    margin-top: -1.5em;
    content: '';
    background: var(--blue);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: all .36s;
    -moz-transition: all .36s;
    -ms-transition: all .36s;
    -o-transition: all .36s;
}

.idxMore:hover::before {
    width: calc(100% + .8em);
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.idxMore:hover {
    color: #fff;
}

.idxProList li {
    width: calc((100% - 45px)/4);
    margin-right: 15px;
    margin-bottom: 15px;
}

.idxProList li:nth-child(4n) {
    margin-right: 0;
}

.prolist li {
    width: calc((100% - 1.5vw)/2);
    margin-right: 1.5vw;
}

.prolist li:nth-child(2n) {
    margin-right: 0;
}

.proItem .more {
    margin-top: 6vw;
}

.proItem .round {
    width: 46px;
    height: 46px;
}

.proItem .proImg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 10;
    max-height: 70%;
    max-width: 21%;
}

.proItem::before {
    display: block;
    content: '';
    width: 25%;
    opacity: 0;
    position: absolute;
    height: 100%;
    left: 0;
    background: var(--blue);
    top: 0;
    transition: all .36s;
    -webkit-transition: all .36s;
    -moz-transition: all .36s;
    -ms-transition: all .36s;
    -o-transition: all .36s;
}

.proItem:hover::before {
    width: 100%;
    opacity: 1;
}

.proItem:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);
    transform: translateY(-10px);
    color: #fff;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.proItem:hover .more .round {
    color: var(--blue);
}

.proItem::after {
    display: block;
    content: '';
    width: 19vw;
    height: 19vw;
    background: rgba(255, 255, 255, .15);
    position: absolute;
    right: -4.5vw;
    top: 10%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.idxTit {
    background: url(../images/idxtitbg.png) no-repeat center center;
    background-size: 150% auto;
}

.idxAppUl li {
    width: 53%;
    height: 65vh;
    flex-shrink: 0;
}

.idxAppUl li::before {
    display: block;
    content: '';
    z-index: 2;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(8, 28, 58, .4);
}

.idxAppUl li:hover .bigImg {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.idxAppUl li:first-child {
    -webkit-clip-path: polygon(100% 0,90% 100%, 0 100%, 0 0);
}

.idxAppUl li:last-child {
    -webkit-clip-path: polygon(100% 0,100% 100%, 0 100%, 10% 0);
    margin-left: -4%;
}

.idxAppUl li:hover .more {
    transform: translateX(18px);
    -webkit-transform: translateX(18px);
    -moz-transform: translateX(18px);
    -ms-transform: translateX(18px);
    -o-transform: translateX(18px);
}

.idxAppLeft {
    position: absolute;
    left: 0;
    height: 453px;
    top: -122px;
    z-index: 5;
}

.idxAppRight {
    position: absolute;
    right: 0;
    height: 453px;
    bottom: -141px;
    z-index: 5;
}

.newItem .img {
    width: 100%;
    height: 0;
    padding-bottom: 65%;
}

.newItem .more::before {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    background: var(--blue);
    position: absolute;
    left: 0;
    top: 0;
    transition: all .36s;
    -webkit-transition: all .36s;
    -moz-transition: all .36s;
    -ms-transition: all .36s;
    -o-transition: all .36s;
}

.newItem:hover .more::before {
    width: 100%;
}

.newItem:hover .more {
    color: #fff;
    padding-left: 18px;
    padding-right: 18px;
}

.linka a:hover {
    color: var(--blue);
}

.newItem .tit span {
    /*text-decoration: underline;
    */
    background-image: linear-gradient(currentColor 0, currentColor 0);
    background-image: linear-gradient(currentColor 0 0);
    background-position: 0 calc(100% - 1px);
    background-size: 0 1px;
    background-repeat: no-repeat;
    transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
    -webkit-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
    -moz-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
    -ms-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
    -o-transition: 400ms cubic-bezier(0.645, 0.045, 0.355, 1), background-position 0s 400ms cubic-bezier(0.645, 0.045, 0.355, 1), color 0ms;
}

.newItem:hover .tit span {
    background-position: 100% calc(100% - 1px);
    background-size: 100% 1px
}

.mySwiperBtn {
    width: 56px;
    height: 56px;
}

.mySwiperBtn:hover {
    color: #fff;
    background: var(--blue);
}

.idxNews .pagination {
    height: 4px;
    position: relative;
    background-color: #eef2f9;
}

footer {
    background: #f3f7f9;
}

.footround {
    width: 50px;
    height: 50px;
}

.neiBanImg {
    min-height: 250px;
    max-height: 100vh;
    width: 100%;
    object-fit: cover;
    animation: zoomBig 2s forwards;
    -webkit-animation: zoomBig 2s forwards;
}

.neiBan::after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .25);
    z-index: 1;
}

.neibanLine {
    width: 1em;
    height: 5px;
}

.neiBanScoll {
    display: none;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
    z-index: 10;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.neiBanScoll:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, .5);
    border-color: var(--blue);
    background: var(--blue);
}

.proLeft {
    width: 28%;
    box-shadow: 5px 0 27px rgb(0 0 0 / 10%);
}

.proRight {
    width: 72%;
}

.firstNav {
    line-height: 80px;
    border-radius: 0 40px 40px 0;
}

.firstNav i {
    width: 30px;
    height: 30px;
}

.secondNav {
    line-height: 80px;
}

.thirdNav {
    line-height: 80px;
    background: #f3f4f7;
}

.thirdNav .on {
    color: var(--blue);
}

.pro_nav ul li:first-child,.pro_nav ul li ul li:first-child {
    border-top: none;
}

.pro_nav ul {
    display: none
}

.pro_nav li ul li {
    border-top: 1px solid #eaeaea;
}

.pro_nav li ul a:hover {
    color: var(--blue);
}

.sjj_nav_i_se {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.pro_nav .on ul.secondNavUl {
    display: block;
}

.proInfo {
    background: url(../images/proinfobg.jpg) no-repeat center top;
    background-size: cover;
}

.proinfoLine {
    background: #cdcdcd;
    height: 1px;
    width: 100%;
}

.proinfoLine::after {
    display: block;
    content: '';
    width: 2em;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--blue);
}

.proInfo .text .desc {
    height: 15em;
}

.proInfo .text .button {
    height: 66px;
}

.proInfo .text .button:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
}

.proInfo .text .button img {
    height: 1em;
}

.params-container {
    display: table;
}

.param-item {
    display: table-row;
}

.param-cell {
    display: table-cell;
}

/*border: none !important;

 background: var(--blue); color: #fff;
 */
.proCon table tr:first-child td {
    /* font-weight: bold; */
    /* position: sticky; */
    /* line-height: 2; */
    /* left: 0; */
    /* top: 100px; */
    /* z-index: 30; */
}

.proCon table tr td {
    padding: 0 5px;
    line-height: 2.8;
}

.proCon table tr td .btn {
    line-height: 2;
}

.proCon table tr td .btn:hover {
    background: var(--blue) ;
    color: #fff;
}

/* 
.proCon .params-container { border-bottom:  none;max-width: 100%;}
.proCon .params-container  .param-item:first-child{ background: var(--blue); color: #fff; font-weight: bold;}
.proCon .params-container .param-cell{ padding: 0 5px; height: 5em; line-height: 5em; border-bottom: 1px solid #e5e5e5; }
.proCon .params-container .param-cell .btn{  line-height: 2;}
.proCon .params-container .param-cell .btn:hover{ background: var(--blue); color: #fff;} 
*/
.servicelist li {
    width: calc((100% - 2vw)/4);
    margin-right: 0.5vw;
    border-radius: 12px;
    overflow: hidden;
}

.servicelist li:nth-child(2n) {
    /* margin-right: 0; */
}

.servicelist li .img {
    width: 100%;
    height: 0;
    padding-bottom: 68%;
}

.servicelist li:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.servicelist li .text {
    background-image: linear-gradient(to top,rgba(3,70,137,1),transparent);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.servicelist li .round {
    width: 46px;
    height: 46px;
}

.servicelist li:hover .text {
    /* transform: translateY(100%); */
    /* -webkit-transform: translateY(100%); */
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.newslist li {
    width: calc((100% - 7.2vw)/3);
    margin-right: 3.6vw;
}

.newslist li:nth-child(3n) {
    margin-right: 0;
}

.location .iconfont {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
}

.newsLeft {
    width: 65%;
}

.newsRight {
    width: 31%;
}

.newsRight .tit::after {
    height: 1em;
    width: 6px;
    background: var(--blue);
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.newsRightUl {
    position: sticky;
    right: 0;
    top: 110px;
}

.newsRightUl a .img {
    width: 185px;
    height: 115px;
}

.newsRightUl a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsRightUl a .text {
    width: calc(100% - 204px);
}

.newsRightUl a:hover .img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

#wonder {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}

.video-background {
    position: absolute;
    left: 50%;
    top: 50%;
    /*保证视频内容始终居中*/
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.briefIcon {
    height: 65px;
}

.cultureuL li {
    perspective: 800px;
    padding: 155px 20px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.cultureuL li .line {
    background: rgba(255, 255, 255, .5);
    width: 1px;
    height: 5vw;
}

.cultureuL li:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transform-origin: left center 0;
    transition: 0.54s;
    background: rgba(0,0,0,.3);
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
}

.cultureuL li:hover::before {
    transform: rotateY(60deg);
    -webkit-transform: rotateY(60deg);
    -moz-transform: rotateY(60deg);
    opacity: 0;
    visibility: hidden;
    -ms-transform: rotateY(60deg);
    -o-transform: rotateY(60deg);
}

.cultureuL li:hover .line {
    height: 0;
}

.cultureIcon {
    height: 75px;
}

.honor {
    background: url(../images/honorbg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.honor .mySwiperBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.honor .next {
    right: -80px;
}

.honor .prev {
    left: -80px;
}

.honor .swiper-container .swiper-slide .img {
    cursor: pointer;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
}

.wappagination .swiper-pagination-bullet {
    margin: 0 3px;
    width: 6px;
    height: 6px;
}

.yinIcon {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 4.5vw;
}

/* swiper-pagination-bullet swiper-pagination-bullet-active */
.jobBox {
    background: url(../images/jobbg.jpg) no-repeat center top;
    background-size: 100% auto;
}

.jobBox .engtt {
    letter-spacing: 10px;
}

.joblist li .img {
    width: 100%;
    padding-bottom: 100%;
    height: 0;
}

.none {
    display: none;
}

.pop {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: none;
}

.pop .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .3) ;
    z-index: 1;
}

.pop .con {
    width: 1000px;
    background-image: linear-gradient(to bottom,#d1e6fb,#fff);
    position: absolute;
    left: 50%;
    margin-left: -500px;
    top: 50%;
    transform: translateY(-50%) ;
    z-index: 5;
    -webkit-transform: translateY(-50%) ;
    -moz-transform: translateY(-50%) ;
    -ms-transform: translateY(-50%) ;
    -o-transform: translateY(-50%) ;
}

.pop .close {
    width: 50px;
    position: absolute;
    right: 0;
    top: -60px;
    filter: grayscale(100%) brightness(500%);
}

.pop .close:hover {
    transform: rotate(90deg);
    filter: grayscale(0%) brightness(100%);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -webkit-filter: grayscale(0%) brightness(100%);
}

.popjobInfo {
    max-height: 40vh;
    overflow-y: scroll;
}

.popjobInfo::-webkit-scrollbar {
    /*滚动条整体样式*/
    /*高宽分别对应横竖滚动条的尺寸*/
    width: 2px;
}

.popjobInfo::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 3px;
    background: var(--blue);
    width: 2px;
}

.popjobInfo::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 3px;
    background: #f2f5f9;
    width: 2px;
}

.searchbigBox {
    margin-top: -80px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 5;
}

.serviceback {
    width: 160px;
    line-height: 50px;
    display: block;
    perspective: 500;
    -webkit-perspective: 500;
}

.serviceback .w {
    position: relative;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    pointer-events: none;
}

.serviceback .f {
    background: rgba(1, 102, 179, .1);
    padding: 0 30px;
    color: #333;
}

.serviceback .t {
    position: absolute;
    background-color: var(--blue);
    width: 100%;
    height: 100%;
    padding: 0 30px;
    left: 0;
    color: #fff;
    top: -50px;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.serviceback:hover .w {
    -webkit-transform: translateY(25px) translateZ(-25px) rotate3d(1, 0, 0, -90deg);
    transform: translateY(25px) translateZ(-25px) rotate3d(1, 0, 0, -90deg);
}

.searchbigBox .input {
    line-height: 50px;
    width: 72%;
    padding: 0 25px;
    color: #000;
    border: 1px solid #e5e5e5;
}

.searchbigBox button {
    line-height: 50px;
    width: 14%;
}

.searchbot ul a {
    border-bottom: 1px solid #e5e5e5;
}

.searchbot ul a:last-child {
    border-bottom: none;
}

.searchbot ul a:hover {
    color: var(--blue);.wrap {
    flex-wrap: wrap;
}
}

.searchbot ul a span {
    width: 80%;
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wrap {
    flex-wrap: wrap;
}.proItem:hover .proImg {
    filter: brightness(10);
}.flex-center.font20.DIN {
    margin-bottom: 20px;
}.infoImg img {
    width: 70%;
    margin: 0 auto;
    display: block;
}



@media (max-width: 767px) {
 


.dalanm {padding-right: 0px!important;overflow: hidden;display: block;}

.dalanm li {
    width: 23%;
    margin: 4% 1%!important;
}.dalanm {
    display: block!important;
}
}
.inner.flex-between-center.wapFlexC div {
    text-align: center;
    display: block;
    margin: 0 auto;
}
.flex-center.font20.DIN span {
    width: calc(100% - 71px);
}.line-height2-4 {
    text-indent: 34px;
}.infoImg table {
    width: 70%;
    background: #fff;
}.infoimg td:nth-child(2) {
    text-align: left;
}

.infoImg tr td:nth-child(2) {
    text-align: left;
    padding-left: 33px;
}




@media (max-width: 767px) {
.infoImg img {
    width: 90%;
    margin: 0 auto;
    display: block;
}

.infoImg table {
    width: 90%;
    background: #fff;
}

.infoImg tr td:nth-child(2) {
    text-align: left;
    padding-left: 7px;
}
}
@media screen and (max-width: 767px) {
.anniu {
    width: 122px;
}}

