@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper{width: 100%;position: fixed;z-index: 99999;top: 0;left: 0;background: transparent;user-select: none;box-shadow: none;transition: all .4s ease;}
.Header-wrapper .contain{
    width: 100%;
    padding: 0 66px;
}

.Header-logo{float: left;width: 180px;height: 88px;display: flex;align-items: center;position: relative;z-index: 999;}
.Header-logo img{max-width: 100%;position: absolute;transition: all .4s ease;}
.Header-logo img.s{opacity: 0}
.Header-logo img.h{opacity: 1}

.Header-lang{float: right;position: relative;z-index: 999;margin-left: 12px;}
.Header-lang-menu{display: flex;align-items: center;height: 88px;}
.Header-lang-menu span{display: block;padding-left: 26px;background: url('../images/common/langW.svg') no-repeat left center /20px auto;line-height: 22px;font-size: 14px;color: #fff;font-family: Arial;}
/* 多个语言 */
.Header-lang-more{display: none;z-index: 9;width: 160px;box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);background: #fff;position: absolute;top: 88px;left: 50%;margin-left: -80px;}
.Header-lang-more:before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 8px 8px;border-color: transparent transparent #efefef transparent;position: absolute;top: -8px;left: 50%;margin: 0 0 0 -8px;}
.Header-lang-more a{display: block;font-size: 16px;color: #666;text-align: center;padding: 10px 0;}
.Header-lang-more a span{display: inline-block;}
.Header-lang-more a:hover {color: #fff;background: #239ad0;}
.Header-lang.active .Header-lang-more{display: block;animation: langInUp .4s ease-out;}
@keyframes langInUp{0% {transform: translateY(20px);opacity: 0.5;}100% {transform: translateY(0);opacity: 1;}}

.Header-search{float: right;}
.Header-search-click{width: 40px;height: 88px;cursor: pointer;background: url('../images/common/searchW.svg') no-repeat center /26px auto;position: relative;z-index: 999;}
.Header-search-click.active{background: url('../images/common/close.svg') no-repeat center/20px auto !important;}
.Header-search-item{display: none;position: absolute;width: 100%;height: 88px;line-height: 88px;top: 0;left: 0;z-index: 99;text-align: right;}
.Header-search-item .contain{padding-right: 148px;}
.Header-search-item.active{display: block;}
.Header-search-item input, .Header-search-item button{display: inline-block;vertical-align: middle;}
.Header-search-item input[type="text"]{width: 0px;height: 40px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);font-size: 16px;color: #747474;background: transparent;}
.Header-search-item.active input[type="text"]{animation: HeaderSearch 0.8s ease both;}
@keyframes HeaderSearch{0%{width: 0;}100%{width: 520px;}}
.Header-search-item button{width: 50px;height: 40px;background: url('../images/common/search.svg') no-repeat center /26px auto;cursor: pointer;margin-right: 0;}
body.onSearch .Header-navbar{visibility: hidden;opacity: 0;}

.Header-navbar{float:right;visibility:visible;opacity:1}
body.PC .Header-navbar{display:block!important}
.Header-navbar li{float:left;position:relative;z-index:9;transition:padding-left .4s ease}
.Header-navbar li:after{content:'';width:0;height:1px;background:#fff;position:absolute;left:0;top:50%;opacity:0;transform:scale(0);transform-origin:center;transition:all .4s ease}
.Header-navbar li+li{margin-left:14px;padding-left:14px}
.Header-navbar li:last-child{margin-right:0}
.Header-navbar li:first-child{margin-left:0}
.Header-menu{position:relative;height:88px;display:flex;align-items:center;font-size:16px;color:#fff;transition:color .4s ease}
.Header-navbar li.active{padding-left:36px}
.Header-navbar li.active:after,.Header-navbar li:hover:after{width:20px;opacity:1;transform:scale(1)}
.Header-navbar li:not(.active):hover{padding-left:36px}
.Header-navclick{transform-origin:center center;transform:rotate(0);cursor:pointer;transition:transform .3s ease;float:right;height:88px;display:flex;align-items:center;margin-left:40px;position:relative;z-index:991}
.Header-navclick .in{height:14px;width:21px;display:flex;flex-direction:column;justify-content:space-between;align-items:flex-end;position:relative}
.Header-navclick span{height:2px;width:3px;background-color:#fff;transition:width .2s ease}
.Header-navclick span:nth-child(1){width:100%;transition-delay:.2s;transition:background-color .4s ease,width .2s ease}
.Header-navclick span:nth-child(2){width:14px;transition:all .4s ease;position:relative}
.Header-navclick span:nth-child(3){width:100%;transition-delay:.4s;transition:background-color .4s ease,width .2s ease}
.Header-navclick span:nth-child(4){position:absolute;top:0;left:50%;transform:translateX(-50%);display:block;width:2px;height:0;transition:height .4s,background-color .4s ease}
.Header-navclick.on{transform:rotate(45deg);transition-delay:.4s}
.Header-navclick.on span:nth-child(1){width:0}
.Header-navclick.on span:nth-child(2){width:20px;top:3px}
.Header-navclick.on span:nth-child(3){width:0;transition-delay:150ms}
.Header-navclick.on span:nth-child(4){height:20px;transition:height .2s ease;transition-delay:.2s}
.Header-navclick.on span{background:#fff!important}

/* 下拉 */
.Header-drop-bar{
    position: absolute;
    right: 0;
    top: 0;
    background: #191b1f;
    height: 100vh;
    opacity: 0;
    width: 312px;
    transform: translate(310px,0);
    overflow: hidden;
    transition: all .8s;
    padding: 180px 0 0 60px;
    z-index: 99;
}
.Header-drop-bar.open{
    transform: translate(0,0);
    opacity: 1;
}
.Header-drop-bar .item{
    font-size: 19px;
    color: #fff;
    display: block;
    width: 100%;
    position: relative;
    font-weight: 500;
    border-bottom: 2px solid #242425;
    transition: color .4s ease;
}
.Header-drop-bar .item:after{
    content:'';
    width: 39px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    background: #096fc8;
    transition: all .4s ease;
}
.Header-drop-bar li.active .item,.Header-drop-bar .item:hover{
    color: #096fc8;
}
.Header-drop-bar li.active .item:after{
    transform: scale(1);
}
.Header-drop-bar li:first-child .item span{
    padding-top: 0;
}
.Header-drop-bar .item span{
    padding: 20px 0;
    display: block;
    line-height: 1;
}
.Header-drop-bar .list{
    transition: all .6s;
    height: 0;
    overflow: hidden;
}
.Header-drop-bar .list a{
    display: block;
    font-size: 15px;
    color: #737373;
    font-weight: 500;
    transition: all .4s ease;
}
.Header-drop-bar .list a+a{
    margin-top: 10px;
}
.Header-drop-bar .list a:first-child{
    margin-top: 20px;
}
.Header-drop-bar .list a:hover{
    color: #fff;
}

/* 透明 */
.bodyScroll .Header-wrapper, .bodyMouse .Header-wrapper, .bodySearch .Header-wrapper, .noLucency .Header-wrapper{background: #fff;box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);}
.bodyScroll .Header-menu, .bodyMouse .Header-menu, .bodySearch .Header-menu, .noLucency .Header-menu{color: #747474;}
.bodyScroll .Header-navbar li:after,.bodyMouse .Header-navbar li:after,.bodyScroll .Header-navclick span,.bodyMouse .Header-navclick span{background: #747474}
.bodyScroll .Header-wrapper::after, .bodyMouse .Header-wrapper::after, .noLucency .Header-wrapper::after{background: rgba(0, 0, 0, 0.1);}
.bodyScroll .Header-logo img.s, .bodyMouse .Header-logo img.s, .bodySearch .Header-logo img.s, .noLucency .Header-logo img.s{opacity: 1;}
.bodyScroll .Header-logo img.h, .bodyMouse .Header-logo img.h, .bodySearch .Header-logo img.h, .noLucency .Header-logo img.h{opacity: 0;}
.bodyScroll .Header-lang-menu span, .bodyMouse .Header-lang-menu span, .bodySearch .Header-lang-menu span, .noLucency .Header-lang-menu span{color: #747474;background-image: url('../images/common/lang.svg');}
.bodyScroll .Header-search-click, .bodyMouse .Header-search-click, .bodySearch .Header-search-click, .noLucency .Header-search-click{background-image: url('../images/common/search.svg');}
.bodySearch .Header-navbar{visibility: hidden;opacity: 0;}
/* 不透明 */
.noLucency .Container-wrapper{margin-top: 88px;}

/* 底部 */
.Footer-wrapper{width: 100%;background:#191b1f;position: relative;z-index: 9;}
.Footer-items{width: 100%;padding: 90px 0 40px;}
.Footer-items .contain{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.Footer-info{
    color: #fff;
}
.Footer-info .desc{
    font-size: 16px;
}
.Footer-info .phone{
    font-family: neuehaasdisplay-bold;
    line-height: 1;
}
.Footer-navbar{overflow: hidden;user-select: none;width: 67.6%}
.Footer-navbar ul{
    display: flex;
    justify-content: space-between;
}
.Footer-navbar li{width: 23.5%;}
.Footer-navbar li:last-child{
    width: auto;
}
.Footer-menu{font-size: 16px;color: #fff;font-weight: 500;display: block;}
.Footer-drop{width: 100%;margin-top: 16px;display: flex;flex-direction: column;align-items: flex-start}
.Footer-drop p{
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}
body.PC .Footer-drop{display: flex !important;}
.Footer-drop a{font-size: 14px;color: #fff;line-height: 1;padding: 0 0 8px;transition: all .4s ease;border-bottom: 2px solid #fff;display:inline-block}
.Footer-drop a:hover{
    opacity: .8;
}
.Footer-drop a+a{margin-top: 14px}
.Footer-drop a:hover{color: #fff;}
.Footer-drop .qr-code .pic{
    width: 100%;
    height: 128px;
}
.Footer-drop .qr-code li{
    text-align: center;
    width: 128px;
}
.Footer-drop .qr-code li+li{
    margin-left: 40px;
}
.Footer-drop .qr-code li p{
    margin-top: 10px;
    line-height: 1;
}
.Footer-bott{
    width: 100%;
}
.Footer-bott{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.Footer-bott .lft{
    font-size: 13px;
    color: #8d9599;
    font-weight: 500;
}
.Footer-bott .lft a:hover,.Footer-link a:hover{
    text-decoration: underline;
}
.Footer-bott .lft p{
    margin-top: 6px;
}
.Footer-bott .rgt{
    width: 67.7%;
}
.Footer-bott .rgt ul{
    display: flex;
}
.Footer-bott .rgt li{
    width: 23.5%;
}
.Footer-bott .rgt li a{
    font-size: 14px;
    color: #8d9599;
    line-height: 1;
    padding: 0 0 8px;
    transition: all .4s ease;
    border-bottom: 2px solid #8d9599;
    display: inline-block;
}
.Footer-copyright .contain{
    border-top: 1px solid #26282c;
    padding: 28px 0 38px;
}
.Footer-link{
    font-size: 13px;
    color: #8d9599;
    display: flex;
}
.Footer-link .tit{
    white-space: nowrap;
}
.Footer-link ul{
    display: flex;
    flex-wrap: wrap;
    margin-left: 22px;
    padding-left: 18px;
    position: relative;
}
.Footer-link ul:after{
    content: '';
    width: 1px;
    height: 14px;
    background: #363a3e;
    top:3px;
    left: 0;
    position: absolute;
}
.Footer-link li{
    margin-right: 28px;
}

/* 中间+共用部分 */
.Container-wrapper{width: 100%;}
.contain{width: 1530px;margin: 0 auto;}

/* 视频弹窗 */
.popVideo{display: none;align-items: center;justify-content: center;position: fixed;z-index: 999999;width: 100%;height: 100%;top: 0;left: 0;}
.popVideo .mask{
    background: rgba(0,0,0,.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.popVideo-items{width: 1000px;position: relative;padding: 34px 34px 0;opacity: 0;}
.popVideo-video{width: 100%;}
.popVideo-video video{width: 100%;}
.popVideo-video iframe{width: 100%;height: 500px;}
.popVideo-close{width: 30px;height: 30px;position: absolute;right: 0;top: 0;z-index: 3;background: url('../images/common/closeW.svg') no-repeat center/24px auto;cursor: pointer;opacity: .7;transition: all .6s ease;}
.popVideo-close:hover{opacity: 1;}
.popVideo.active{display: flex;}
.popVideo.active .popVideo-items{animation: popVideRun 1s ease both .4s;}
@keyframes popVideRun {0%{opacity: 0;transform: translateY(-200px);}100%{opacity: 1;transform: translateY(0);}}
@media all and (max-width:1100px) {.popVideo-items{width: 92%;padding: 34px 0 0;}.popVideo-close{right: 0;}.popVideo-video iframe{height: 400px;}}
@media all and (max-width:640px) {.popVideo-video iframe{height: 200px;}}

/* 侧栏 */
.sideBar-wrapper{position: fixed;top: 50%;right: 0;margin-top: -127px;width: 50px;height: 254px;z-index: 6666;}
.sideBar-wrapper ul li{height: 50px;position: absolute;left: 0;}
.sideBar-wrapper ul li.backTop{top: 0;width: 62px;}
.sideBar-wrapper ul li.relQq{top: 51px;width: 126px;transition: all .4s;}
.sideBar-wrapper ul li.relDh{top: 102px;width: 172px;transition: all .4s;}
.sideBar-wrapper ul li.relKf{top: 153px;width: 126px;transition: all .4s;}
.sideBar-wrapper ul li.relEwm{top: 204px;width: 62px;}
.sideBar-wrapper ul li a{display: block;font-family: "Microsoft Yahei";color: #fff;font-size: 14px;height: 50px;line-height: 50px;overflow: hidden;background-color: #000;opacity: .7;border-radius: 6px;}
.sideBar-wrapper ul li a img{display: block;float: left;width: 24px;height: 24px;margin: 12px 12px 14px 14px;}
.sideBar-wrapper ul li a:hover{background: #239ad0;opacity: 1;}
.sideBar-wrapper ul li.relQq:hover{left: -70px;}
.sideBar-wrapper ul li.relDh:hover{left: -116px;}
.sideBar-wrapper ul li.relKf:hover{left: -70px;}
.sideBar-wrapper-ewm{position: absolute;top: -144px;left: -144px;background: url('../images/common/side-arr.png') no-repeat bottom right;width: 140px;height: 149px;padding-bottom: 9px;display: none;}
.sideBar-wrapper-ewm img{display: block;background-color: #FFF;width: 140px;height: 140px;}
.sideBar-wrapper ul li.relEwm:hover .sideBar-wrapper-ewm{display: block;}
@media all and (max-width:1000px) {
    .sideBar-wrapper{display: block;}
    .sideBar-wrapper ul li{display: none;height: 46px;}
    .sideBar-wrapper ul li.backTop{display: block;width: 46px;}
    .sideBar-wrapper {right: 4px;width: 50px;height: auto;top: auto;bottom: 110px;}
    .sideBar-wrapper ul li a{height: 46px;line-height: 46px;}
    .sideBar-wrapper ul li a img {margin: 11px 10px 11px 12px;}
}

/* btn */
.view-more-btn{display:flex;align-items:center;font-family:neuehaasdisplay-bold;font-size:13px;line-height:1.1;color:#333;padding-bottom:8px;border-bottom:2px solid #333;transition:color .4s ease,border .4s ease}
.view-more-btn i{display:block;background:url(../images/index/view-more-btn-icon.png) no-repeat center/100%;width:13px;height:13px;margin-right:9px;transition:background .4s ease}
.view-more-btn:hover{color:#239ad0;border-color:#239ad0}
.view-more-btn:hover i{background-image:url(../images/index/view-more-btn-icon-c.png)}

/* per-banner */
.per-banner{background:#0764c0;color:#fff;position:relative;z-index:2}
.per-banner canvas{position:absolute;left:0;top:0;width:100%;height:100%;z-index:-1;opacity:.3}
.per-banner .lft{background:#fff;color:#096fc8;display:inline-block;padding:24px 73px;text-align:center;line-height:1;font-weight:700}
.per-banner .lft .year span{font-family:neuehaasdisplay-bold;display:inline-block;line-height:.8}
.per-banner .lft p{margin-top:6px}
.per-banner .rgt{margin-left:76px;font-weight:700}
.per-banner .rgt .button{margin-top:16px;font-size:0}
.per-banner .rgt .button a{font-size:15px;border:2px solid #fff;line-height:1.1;padding:8px 34px;display:inline-block;transition:all .4s ease}
.per-banner .rgt .button a+a{margin-left:14px}
.per-banner .rgt .button a:first-child{background:#fff;color:#0764c0}
.per-banner .rgt .button a:hover{box-shadow:0 0 0 .2em rgba(255,255,255,.5)}

/* 客户 */
.client{background:#f5f5f5}
.client .data{width:25%;display:flex;align-items:center;justify-content:center;flex-direction:column}
.client .data .row{color:#096fc8;font-family:neuehaasdisplay-bold;line-height:1;display:flex;flex-wrap:wrap}
.client .data .row span{text-transform:uppercase;font-size:135px;display:block;line-height:.8;text-align:center;background-clip:text;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-image:url(../images/index/index-client-num-bg.jpg);animation:numRun 100s ease-out infinite;margin-right:15px}
.client .data p{color:#555;font-weight:500;margin-top:5px;text-align:center}
.client .top ul{width:75%}
.client .top ul li{width:calc(16.6667% + 1px)}
.client ul{border:1px solid #ededed;border-right:0;border-bottom:0}
.client ul li{width:calc(12.5% + 1px);background:#fff;height:136px;display:flex;align-items:center;justify-content:center;border:1px solid #ededed;margin:-1px 0 0 -1px;transition:box-shadow .4s ease}
.client ul li:hover{box-shadow:0 3px 7px 0 rgba(0,0,0,.23);z-index:2}
.client .main{margin-top:-1px}
@keyframes numRun{0%,100%{background-position:center}20%{background-position:left bottom}40%{background-position:center bottom}60%{background-position:top}80%{background-position:right}}
@keyframes numRun2{0%,100%{background-position:center}20%{background-position:left center}40%{background-position:center top}60%{background-position:top right}80%{background-position:top left}}


/* title */
.com-tit {
  position: relative;
}
.com-tit .cn {
  font-weight: bold;
  color: #333333;
  position: relative;
  z-index: 2;
  line-height: 1;
}
.com-tit .en {
  font-family: OPPOSANS-B;
  line-height: 1;
  position: absolute;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  color: #e9e9e9;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #e9e9e9 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.com-tit.white .cn {
  color: #fff;
}
.com-tit.white .en {
  opacity: 0.1;
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 80%);
  -webkit-background-clip: text;
}
.com-tit.text-center .en {
  left: 50%;
  transform: translate(-50%, -50%);
}



/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain{width: 1400px}
    .Header-drop-bar{padding: 150px 0 0 50px}
    .Footer-drop .qr-code li{width: 120px}
    .Footer-drop .qr-code .pic{height: 120px}
    .Footer-copyright .contain{padding: 20px 0}
    .Footer-drop .qr-code li+li{margin-left: 30px}

    .client .data .row span{font-size: 110px}
    .client ul li{height: 130px}
}

@media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .contain{width: 1200px}
    .Footer-drop .qr-code .pic{height: 100px}
    .Footer-drop .qr-code li{width: 100px}
    .Footer-drop{margin-top: 10px}
    .Footer-drop a,.Footer-bott .rgt li a{padding-bottom: 5px}
    .Footer-items{padding: 60px 0 40px}

    .client ul li{height: 120px}
    .client .data .row span{font-size: 100px;margin-right: 10px}
}

@media all and (max-width:1439px) {
    /* 1360 */
}

@media all and (max-width:1359px) {
    /* 1280 */
}

@media all and (max-width:1279px) {
    /* 1152 × (700) */
    .contain{width: 960px}
    .Header-drop-bar{padding-left: 40px}
    .Header-drop-bar .item{font-size: 18px}
    .Header-drop-bar .item span{padding: 15px 0}
    .Header-drop-bar .list a{font-size: 14px}
    .Footer-drop .qr-code li{width: 90px!important}
    .Footer-drop .qr-code .pic{height: 90px!important}
    .Footer-drop .qr-code li+li{margin-left: 20px}
    .Footer-navbar{width: 70%}
    .Footer-bott{justify-content: space-between}
    .Footer-bott .rgt{width: auto}
    .Footer-bott .rgt li{width: auto}
    .Footer-bott .rgt li+li{margin-left: 20px}
    .Footer-link li{margin-right: 20px}
    .Footer-link ul{padding-left: 15px;margin-left: 15px}

    .client .data .row span{font-size: 80px}
    .client .data p{font-size: 16px}
    .client ul li{height: 100px}
}

@media all and (max-width:1151px) {
    /* 1024 */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .Header-wrapper{background: #fff;box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);}
    .Header-menu{color: #747474;}
    .Header-wrapper::after{background: rgba(0, 0, 0, 0.1);}
    .Header-logo img.s{opacity: 1;}
    .Header-logo img.h{opacity: 0;}
    .Header-lang-menu span{color: #747474;background-image: url('../images/common/lang.svg');}
    .Header-search-click{background-image: url('../images/common/search.svg');}
    .bodySearch .Header-navbar{visibility: visible;opacity: 1;}
    .noLucency .Container-wrapper{margin-top: 60px;}
    
    .contain-1600, .contain-1400, .contain{width: 92%;}
    .Container-wrapper{margin-top: 60px;}
    .Header-wrapper .contain{width: 100%;padding: 0}
    .Header-logo, .Header-search-click, .Header-lang-menu{height: 60px;}
    .Header-logo{margin-left: 4%;width: 110px;}
    .Header-navclick{display: flex;margin-right: 4%;height: 60px}
    .Header-navbar li:after,.Header-navclick span{background: #747474}
    .Header-lang{margin: 0 12px 0 4px;}
    .Header-lang-more{width: 120px;margin-left: -60px;top: 60px;}
    .Header-lang-more a{padding: 6px 0;}
    .Header-navbar{display: none;position: absolute;width: 100%;margin-right: 0;height: calc(100vh - 60px);top: 60px;left: 0;padding: 20px 0;background: #fff;}
    .Header-navbar ul{display: block;width: 100%;height: 100%;overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch}
    .Header-navbar li{display: block;width: 100%;opacity: 0;transform: translateY(32px);transition: all .4s ease;margin: 0;}
    .Header-drop-bar{width: 100%;transform: none;padding:80px 4%;visibility: hidden}
    .Header-drop-bar.open{visibility: visible}
    .Header-drop-bar li:first-child .item span{padding-top: 15px}
    .Header-drop-bar .item i{position: absolute;right: 0;top: 50%;transform: translateY(-50%);width: 40px;height: 30px;background: url("../images/common/arrDW.svg")no-repeat center /14px}
    .Header-drop-bar .list a:first-child{margin-top: 10px}
    .Header-drop-bar .item{font-size: 16px}
    .Header-navbar.active li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 44px;padding: 0 4%;}
    .Header-navbar li:hover .Header-menu{color: #747474 !important;}
    .Header-navbar li.active .Header-menu{color: #239ad0 !important;}
    .Header-drop-bar .list{height: auto;display: none;transition: none}
    .Header-search-item {display: none;width: 100%;line-height: normal;height: 45px;top: 60px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);padding: 0;background: #fff;}
    .Header-search-item .contain {padding-right: 0;}
    .Header-search-item input[type="text"]{width: 100%;height: 44px;padding: 0 50px 0 4%;border-bottom: none;}
    .Header-search-item.active input[type="text"] {animation: none;}
    .Header-search-item button{position: absolute;right: 0;top: 0;width: 44px;height: 46px;top: -1px;background: #239ad0 url('../images/common/searchW.svg') no-repeat center /26px auto !important;z-index: 2;}
    .Header-search-click.active {background-image: url('../images/common/close.svg') !important;}
    .Header-search-click {background-image: url('../images/common/search.svg') !important;}

    .Footer-items{padding: 32px 0 36px;}
    .Footer-items .contain {width: 100%;padding: 0 4%}
    .Footer-navbar{width: 100%;margin-top: 30px}
    .Footer-navbar li{width: 33.33% !important;}
    .Footer-navbar li:last-child{width: 100%;position: absolute;top: 20px;right: 4%}
    .Footer-navbar .qr-code li{position: static}
    .Footer-menu {height: 40px;line-height: 40px;position: relative;}
    .Footer-navbar ul{flex-wrap: wrap}
    .Footer-drop{margin-top: 5px}
    .Footer-copyright{display: none}

    .per-banner .lft{width: 50%;padding:20px;margin:0 auto}
    .per-banner .rgt{margin: 20px 0 0;text-align: center;width: 100%}

    .client .data .row span{font-size: 60px}
    .client ul li{height: 90px}
    .client .data p{font-size: 12px}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .Footer-navbar li{width: 50%!important}
    .Footer-navbar li:last-child{position: static;width: 100% !important;margin-top: 20px}
    .Footer-navbar li:nth-child(3) {flex-direction: row;margin-top: 20px;width: 100%!important;}
    .Footer-navbar li:nth-child(3) .Footer-drop{flex-direction: row}
    .Footer-navbar li:nth-child(3) .Footer-drop a+a{margin:0 0 0 10px}
    .Footer-navbar .qr-code li{width: 90px!important;margin-top: 0!important}
    .Footer-bott{flex-wrap: wrap}
    .Footer-bott .rgt{margin-top: 10px}
    .Footer-copyright .contain{padding: 15px 0}

    .client .data{width: 100%}
    .client .top ul{width: 100%;margin-top: 15px}
    .client .top ul li,.client ul li{width: calc(50% + 1px)}
}