@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::after{content: "";width: 100%;height: 1px;position: absolute;background: rgba(255, 255, 255, 0.2);left: 0;bottom: 0;transition: all .4s ease;}

.Header-logo{float: left;height: 92px;display: flex;align-items: center;position: relative;z-index: 999;}
.Header-logo .image{width: 64px;height: 65px;position: relative;display: flex;align-items: center;}
.Header-logo img{max-height: 100%;position: absolute;transition: opacity .4s ease;}
.Header-logo img.s{opacity: 1;}
.Header-logo img.h{opacity: 0;}
.Header-logo .text{font-size: 34px;color: #fff;font-weight: 700;letter-spacing: 10px;margin-left: 22px;transition: all .4s ease;}

.Header-lang{float: right;position: relative;z-index: 999;}
.Header-lang-menu{display: flex;align-items: center;height: 92px;color: #fff;transition: color .4s ease;}
.Header-lang-menu i{font-size: 22px;}
/* 多个语言 */
.Header-lang-more{display: none;z-index: 9;width: 140px;background: #fff;position: absolute;top: 92px;padding: 12px 0;left: 50%;margin-left: -70px;box-shadow: 0 1px 38px 0 rgba(0, 0, 0, 0.1);transition: background .4s ease;}
.Header-lang-more:before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 10px 10px;border-color: transparent transparent #fff transparent;position: absolute;top: -10px;left: 50%;margin: 0 0 0 -10px;transition: border-color .4s ease;}
.Header-lang-more a{display: flex;font-size: 16px;color: #333;height: 44px;align-items: center;justify-content: center;transition: all .4s ease;}
.Header-lang-more a span{padding-left: 32px;background-position: left center;background-repeat: no-repeat;min-width: 64px;}
.Header-lang-more a.CN span{background-image: url('../images/common/icon-cn.png');}
.Header-lang-more a.EN span{background-image: url('../images/common/icon-en.png');}
.Header-lang-more a:hover {color: #fff;background: #0079c3;}
.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;margin-right: 24px;}
.Header-search-click{width: 40px;height: 92px;color: #fff;font-size: 20px;cursor: pointer;z-index: 999;display: flex;align-items: center;justify-content: center;position: relative;transition: color .4s ease;}
.Header-search-click::after{content: "\e649";font-family: "icon";}
.Header-search-click.active::after{content: "\e64e";}
.Header-search-item{display: none;position: absolute;width: 100%;height: 92px;line-height: 92px;top: 0;left: 0;z-index: 99;text-align: right;}
.Header-search-item .contain{padding-right: 110px;}
.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(255, 255, 255, 0.2);font-size: 16px;color: #fff;background: transparent;transition: color .4s ease, border .4s ease;}
.Header-search-item input::-webkit-input-placeholder{color: rgba(255, 255, 255, 0.7);transition: color .4s ease;}
.Header-search-item input:-moz-placeholder{color: rgba(255, 255, 255, 0.7);transition: color .4s ease;}
.Header-search-item input::-moz-placeholder{color: rgba(255, 255, 255, 0.7);transition: color .4s ease;}
.Header-search-item input:-ms-input-placeholder{color: rgba(255, 255, 255, 0.7);transition: color .4s ease;}
.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;font-size: 20px;color: #fff;background: transparent;cursor: pointer;margin-right: 0;transition: color .4s ease;}
.Header-search-item button::after{content: "\e649";font-family: "icon";}
body.onSearch .Header-navbar{visibility: hidden;opacity: 0;}

.Header-navbar{visibility: visible;opacity: 1;}
body.PC .Header-navbar{display: block !important;}
.Header-navbar ul{position: absolute;width: 100%;top: 0;left: 0;display: flex;justify-content: center;padding-left: calc(174px - 86px - 28px);}
.Header-navbar li{padding: 0 27px;z-index: 9;}
.Header-menu{position: relative;height: 92px;display: flex;align-items: center;font-size: 18px;color: #fff;transition: color .4s ease;}
.Header-navbar li.active .Header-menu{color: #fff;}
.Header-arrow{display: none;}
.Header-drop{visibility: hidden;opacity: 0;pointer-events: none;display: flex;position: absolute;top: 92px;left: 0;width: 100%;justify-items: center;transform: translateY(20px);transition: all .4s ease;}
.Header-drop-arrow{position: absolute;left: 0%;pointer-events: auto;z-index: 2;top: -14px;margin-left: -14px;border-left: 14px solid transparent;border-right: 14px solid transparent;border-bottom: 14px solid #fff;width: 0;height: 0;transform: translate3d(0,0,0);}
.Header-drop-box{background: #fff;margin: 0 auto;pointer-events: auto;padding: 44px 54px 54px;display: flex;border-radius: 6px;box-shadow: 0 1px 38px 0 rgba(0, 0, 0, 0.1);overflow: hidden;transform: translate3d(0,0,0);}
.Header-drop-info{width: 300px;padding-right: 50px;position: relative;}
.Header-drop-info::before, .Header-drop-info::after{content: "";position: absolute;right: 0;}
.Header-drop-info::before{height: 200%;top: -50%;width: 1px;background: #eaeff3;}
.Header-drop-info::after{width: 262px;height: 262px;background: url('../images/common/drop1.png') no-repeat right bottom/100% auto;bottom: -64px;}
.Header-drop-info .name{line-height: 1;font-size: 20px;color: #1489d1;font-weight: 700;padding-left: 22px;position: relative;z-index: 2;}
.Header-drop-info .name::before{width: 14px;height: 14px;content: "";position: absolute;border-radius: 50%;border: 2px solid #1489d1;left: 0;top: 50%;margin-top: -7px;}
.Header-drop-info .text{width: 100%;font-size: 15px;color: #666;line-height: 26px;margin-top: 18px;position: relative;z-index: 2;}
.Header-drop-list{padding: 0 60px;display: flex;}
.Header-drop-items{min-width: 128px;}
.Header-drop-items:not(:first-child){margin-left: 60px;}
.Header-drop-items .name{width: 100%;height: 44px;margin-bottom: 16px;border-bottom: 1px solid #d9dfe3;font-size: 18px;color: #000;}
.Header-drop-items .name a{transition: all .4s ease;}
.Header-drop-items .name a:hover{color: #1489d1;}
.Header-drop-items .link{width: 100%;}
.Header-drop-items .link a{display: block;padding: 0 0 14px;transition: all .4s ease;font-size: 15px;color: #777;}
.Header-drop-items .link a:hover, .Header-drop-items .link a.active{color: #1489d1;}
.Header-drop.Header-drop-solve .Header-drop-box{padding-bottom: 80px;}
.Header-drop.Header-drop-solve .Header-drop-items{min-width: 200px;}
.Header-drop.Header-drop-solve .Header-drop-info::after{bottom: -80px;}
.Header-drop-image{width: 326px;border-radius: 6px;overflow: hidden;}
.Header-drop-image img{width: 100%;}
.Header-drop.show{transform: translateY(0);visibility: visible;opacity: 1;}

.Header-navclick{display: none;width: 24px;height: 60px;cursor: pointer;float: right;user-select: none;align-items: center;}
.Header-navclick span{width: 100%;height: 2px;background: #333;display: block;position: relative;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background: #333;display: block;left: 0;width: 100%;transition: all .2s linear;}
.Header-navclick span:before{top: -7px;}
.Header-navclick span:after{top: 7px;}
.Header-navclick.active span{-moz-animation: buttonAnimation 0.3s ease forwards;-webkit-animation: buttonAnimation 0.3s ease forwards;animation: buttonAnimation 0.3s ease forwards;}
.Header-navclick.active span:before{-moz-animation: buttonAnimationBefore 0.3s ease forwards;-webkit-animation: buttonAnimationBefore 0.3s ease forwards;animation: buttonAnimationBefore 0.3s ease forwards; }
.Header-navclick.active span:after{-moz-animation: buttonAnimationAfter 0.3s ease forwards;-webkit-animation: buttonAnimationAfter 0.3s ease forwards;animation: buttonAnimationAfter 0.3s ease forwards;}
@-moz-keyframes buttonAnimationBefore {
    0% {-moz-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}
    50% {-moz-transform: translateY(7px) rotate(0);transform: translateY(7px) rotate(0);}
    100% {-moz-transform: translateY(7px) rotate(45deg);transform: translateY(7px) rotate(45deg);}
}
@-webkit-keyframes buttonAnimationBefore {
    0% {-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}
    50% {-webkit-transform: translateY(7px) rotate(0);transform: translateY(7px) rotate(0);}
    100% {-webkit-transform: translateY(7px) rotate(45deg);transform: translateY(7px) rotate(45deg);}
}
@keyframes buttonAnimationBefore {
    0% {-moz-transform: translateY(0px) rotate(0);-ms-transform: translateY(0px) rotate(0);-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}
    50% {-moz-transform: translateY(7px) rotate(0);-ms-transform: translateY(7px) rotate(0);-webkit-transform: translateY(7px) rotate(0);transform: translateY(7px) rotate(0);}
    100% {-moz-transform: translateY(7px) rotate(45deg);-ms-transform: translateY(7px) rotate(45deg);-webkit-transform: translateY(7px) rotate(45deg);transform: translateY(7px) rotate(45deg);}
}
@-moz-keyframes buttonAnimationAfter {
    0% {-moz-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}
    50% {-moz-transform: translateY(-7px) rotate(0);transform: translateY(-7px) rotate(0);}
    100% {-moz-transform: translateY(-7px) rotate(-45deg);transform: translateY(-7px) rotate(-45deg);}
}
@-webkit-keyframes buttonAnimationAfter {
    0% {-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}
    50% {-webkit-transform: translateY(-7px) rotate(0);transform: translateY(-7px) rotate(0);}
    100% {-webkit-transform: translateY(-7px) rotate(-45deg);transform: translateY(-7px) rotate(-45deg);}
}
@keyframes buttonAnimationAfter {
    0% {-moz-transform: translateY(0) rotate(0);-ms-transform: translateY(0) rotate(0);-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}
    50% {-moz-transform: translateY(-7px) rotate(0);-ms-transform: translateY(-7px) rotate(0);-webkit-transform: translateY(-7px) rotate(0);transform: translateY(-7px) rotate(0);}
    100% {-moz-transform: translateY(-7px) rotate(-45deg);-ms-transform: translateY(-7px) rotate(-45deg);-webkit-transform: translateY(-7px) rotate(-45deg);transform: translateY(-7px) rotate(-45deg);}
}
@-moz-keyframes buttonAnimation {
    0% {background: transparent;}
    50% {background: rgba(255, 255, 255, 0);}
    100% {background: rgba(255, 255, 255, 0);}
}
@-webkit-keyframes buttonAnimation {
    0% {background: transparent; }
    50% {background: rgba(255, 255, 255, 0);}
    100% {background: rgba(255, 255, 255, 0);}
}
@keyframes buttonAnimation {
    0% {background: transparent; }
    50% {background: rgba(255, 255, 255, 0);}
    100% {background: rgba(255, 255, 255, 0);}
}

/* 透明 */
.bodyScroll .Header-wrapper, .noLucency .Header-wrapper{background: #fff;box-shadow: 0 1px 38px 0px rgba(0, 0, 0, 0.1);}
.bodyScroll .Header-menu, .noLucency .Header-menu{color: #333;}
.bodyScroll .Header-navbar li.active .Header-menu, .noLucency .Header-navbar li.active .Header-menu{color: #0079c3;}
.bodyScroll .Header-wrapper::after, .noLucency .Header-wrapper::after{background: #eaeff3;}
.bodyScroll .Header-logo img.s, .noLucency .Header-logo img.s{opacity: 0;}
.bodyScroll .Header-logo img.h, .noLucency .Header-logo img.h{opacity: 1;}
.bodyScroll .Header-logo .text, .noLucency .Header-logo .text{color: #0079c3;}
.bodyScroll .Header-lang-menu, .noLucency .Header-lang-menu{color: #333;}
.bodyScroll .Header-search-click, .noLucency .Header-search-click{color: #333;}
.bodyScroll .Header-search-item input[type="text"], .noLucency .Header-search-item input[type="text"]{border-bottom: 1px solid rgba(0, 0, 0, 0.1);color: #333;}
.bodyScroll .Header-search-item input::-webkit-input-placeholder, .noLucency .Header-search-item input::-webkit-input-placeholder{color: #999;}
.bodyScroll .Header-search-item input:-moz-placeholder, .noLucency .Header-search-item input:-moz-placeholder{color: #999;}
.bodyScroll .Header-search-item input::-moz-placeholder, .noLucency .Header-search-item input::-moz-placeholder{color: #999;}
.bodyScroll .Header-search-item input:-ms-input-placeholder, .noLucency .Header-search-item input:-ms-input-placeholder{color: #999;}
.bodyScroll .Header-search-item button, .noLucency .Header-search-item button{color: #333;}
.bodySearch .Header-navbar{visibility: hidden;opacity: 0;}
/* 不透明 */
.noLucency .Container-wrapper{margin-top: 92px;}

/* 底部 */
.Footer-wrapper{width: 100%;background: #081d37;position: relative;z-index: 9;}
.Footer-info{width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 28px 0 36px;border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.Footer-info .logo a{display: flex;align-items: center;}
.Footer-info .logo a img{width: 68px;}
.Footer-info .logo a span{font-size: 34px;color: #0079c3;font-weight: 700;letter-spacing: 10px;margin-left: 22px;}
.Footer-info .phone a{font-size: 28px;font-family: siyuan;color: #fff;line-height: 1.1;padding-left: 36px;background: url('../images/common/Fic1.png') no-repeat left center;}
.Footer-items{width: 100%;padding: 50px 0 68px;justify-content: space-between;display: flex;align-items: flex-start;}
.Footer-navbar{width: 1140px;user-select: none;}
.Footer-navbar ul{justify-content: space-between;}
.Footer-navbar li{width: auto;}
.Footer-menu{font-size: 20px;color: #fff;font-weight: 700;display: block;}
.Footer-arrow{display: none;}
.Footer-drop{width: 100%;margin-top: 18px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop a{display: block;font-size: 15px;color: #a4aab3;line-height: 1.32;padding: 5px 0;transition: all .4s ease;max-width: 160px;}
.Footer-drop a:hover{color: #fff;}
.Footer-code{width: auto;display: flex;flex-direction: column;align-items: flex-end}
.Footer-code .image{max-width: 87px;}
.Footer-code .cont{margin-top: 10px;display: flex;flex-direction: column;align-items: flex-end;}
.Footer-code .text{height: 30px;display: flex;align-items: center;font-size: 15px;color: #fff;}
.Footer-code .text.email{padding-left: 30px;background: url('../images/common/Fic2.png') no-repeat left;}
.Footer-code .text.tel{padding-left: 28px;background: url('../images/common/Fic3.png') no-repeat left;}
.Footer-copyright{width: 100%;border-top: 1px solid rgba(255, 255, 255, 0.1);padding: 32px 0;display: flex;justify-content: space-between;align-items: center;}
.Footer-copyright .info{color: #a8acaf;line-height: 18px;font-size: 15px;}
.Footer-copyright .info p:not(:first-child){margin-left: 16px;}
.Footer-copyright .info a{transition: all .4s ease;}
.Footer-copyright .info a:hover{color: #fff;}

/* 置顶 */
.backTop{display: none;right: 40px;bottom: 60px;width: 44px;height: 44px;line-height: 44px;font-size: 23px;color: #fff;text-align: center;border-radius: 4px;position: fixed;cursor: pointer;z-index: 9999;background: #0079c3;}
.backTop::after{content: "\e684";font-family: "icon";}
@media all and (max-width:1599px) {.backTop {right: 30px;bottom: 40px;}}
@media all and (max-width:640px) {.backTop {right: 8px;bottom: 20px;width: 40px;height: 40px;background-size: 20px auto;}}

/* 视频弹窗 */
.popVideo{display: none;align-items: center;justify-content: center;position: fixed;z-index: 999999;width: 100%;height: 100%;background: rgba(0,0,0,.5);top: 0;left: 0;}
.popVideo-items{width: 1000px;position: relative;opacity: 0;}
.popVideo-video{width: 100%;}
.popVideo-video video{width: 100%;}
.popVideo-video iframe{width: 100%;height: 500px;}
.popVideo-close{width: 40px;height: 40px;right: -40px;top: -40px;line-height: 40px;opacity: 0.7;text-align: center;position: absolute;z-index: 3;font-size: 22px;color: #fff;cursor: pointer;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%;}.popVideo-close{right: -8px;}.popVideo-video iframe{height: 400px;}}
@media all and (max-width:640px) {.popVideo-video iframe{height: 200px;}}

/* 中间+共用部分 */
.Container-wrapper{width: 100%;}
.section{width: 100%;position: relative;overflow: hidden;}
.contain{width: 1500px;margin: 0 auto;}

.contactUs{width: 100%;background: url('../images/common/contactUs.jpg') no-repeat center/cover;padding: 76px 0;}
.contactUs .contain{justify-content: space-between;align-items: center;}
.contactUs .text{color: #444;line-height: 1.1;}
.contactUs .text span{color: #0079c3;}
.contactUs .link{width: auto;color: #555;}
.contactUs .link a{align-items: center;}
.contactUs .link span{position: relative;transition: all .4s ease;}
.contactUs .link span::after{content: "";position: absolute;width: 100%;height: 1px;background: #555;left: 0;bottom: 0;transition: all .4s ease;}
.contactUs .link i{width: 38px;height: 38px;border-radius: 50%;background: #0079c3 url('../images/common/arrowW.svg') no-repeat center/23px auto;margin-left: 12px;transform: rotate(-45deg);transition: all .4s ease;}
.contactUs .link a:hover span{color: #0079c3;}
.contactUs .link a:hover span::after{background: #0079c3;}
.contactUs .link a:hover i{transform: rotate(0);}

.ARR{font-family: "ARR";}
.ARRB{font-family: "ARRB";}











/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain{width: 1400px;}
}

@media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .contain{width: 1200px;}
    .Header-logo .text {font-size: 30px;letter-spacing: 6px;margin-left: 20px;}
    .Header-navbar ul{padding-left: calc(156px - 86px - 28px);}
    .Header-navbar li {padding: 0 18px;}
    .Header-drop-box {padding: 36px 40px 44px;}
    .Header-drop-info {width: 270px;padding-right: 30px;}
    .Header-drop-list {padding: 0 40px;}
    .Header-drop-items .link a {padding: 0 0 10px;}
    .Header-drop-info::after {width: 220px;height: 220px;bottom: -44px;}
    .Header-drop.Header-drop-solve .Header-drop-box {padding-bottom: 54px;}
    .Header-drop.Header-drop-solve .Header-drop-info::after{bottom: -54px;}
    .Header-drop-items:not(:first-child) {margin-left: 32px;}
    .Header-drop-image {width: 310px;}

    .Footer-info .logo a span{font-size: 30px;letter-spacing: 6px;margin-left: 20px;}
    .Footer-info {padding: 24px 0 28px;}
    .Footer-items {padding: 50px 0 60px;}
    .Footer-navbar {width: 920px;}
    .Footer-menu {font-size: 18px;}
    .Footer-copyright {padding: 28px 0;}

    .contactUs{padding: 60px 0;}
}

@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-logo .text {font-size: 24px;letter-spacing: 4px;margin-left: 16px;}
    .Header-menu {font-size: 16px;}
    .Header-navbar ul{padding-left: calc(136px - 86px - 20px);}
    .Header-navbar li {padding: 0 12px;}
    .Header-drop-box {padding: 30px 30px 32px;}
    .Header-drop-info {width: 180px;padding-right: 20px;}
    .Header-drop-list {padding: 0 24px;}
    .Header-drop-items .link a {padding: 0 0 6px;}
    .Header-drop-items:not(:first-child) {margin-left: 24px;}
    .Header-drop.Header-drop-solve .Header-drop-items {min-width: auto;}
    .Header-drop-info::after {width: 200px;height: 180px;bottom: -32px;}
    .Header-drop-image {width: 280px;}
    .Header-drop.Header-drop-solve .Header-drop-box {padding-bottom: 36px;}
    .Header-drop.Header-drop-solve .Header-drop-info::after {bottom: -36px;}
    @keyframes HeaderSearch{0%{width: 0;}100%{width: 420px;}}

    .Footer-info .logo a span{font-size: 24px;letter-spacing: 4px;margin-left: 16px;}
    .Footer-info {padding: 20px 0 24px;}
    .Footer-items {padding: 40px 0 44px;}
    .Footer-navbar {width: 740px;}
    .Footer-menu {font-size: 16px;}
    .Footer-copyright {padding: 24px 0;}

    .contactUs{padding: 40px 0;}
}

@media all and (max-width:1151px) {
    /* 1024 */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .Header-wrapper{background: #fff;box-shadow: 0 1px 38px 0px rgba(0, 0, 0, 0.1);}
    .Header-menu{color: #333;}
    .Header-wrapper::after{background: #eaeff3;}
    .Header-logo img.s{opacity: 0;}
    .Header-logo img.h{opacity: 1;}
    .Header-lang-menu{color: #333;}
    .Header-search-click{color: #333;}
    .Header-logo .text{color: #0079c3;}
    .Header-search-item input[type="text"]{border-bottom: 1px solid rgba(0, 0, 0, 0.1);color: #333;}
    .Header-search-item input::-webkit-input-placeholder{color: #999;}
    .Header-search-item input:-moz-placeholder{color: #999;}
    .Header-search-item input::-moz-placeholder{color: #999;}
    .Header-search-item input:-ms-input-placeholder{color: #999;}
    .Header-search-item button{color: #333;}
    .bodySearch .Header-navbar{visibility: visible;opacity: 1;}
    .noLucency .Container-wrapper{margin-top: 60px;}
    
    .contain{width: 92%;}
    .Container-wrapper{margin-top: 60px;}
    .Header-wrapper .contain{width: 100%;}
    .Header-logo, .Header-search-click, .Header-lang-menu{height: 60px;}
    .Header-logo{margin-left: 4%;}
    .Header-logo .image {width: 45px;height: 46px;}
    .Header-logo .text {font-size: 20px;margin-left: 12px;}
    .Header-navclick{display: flex;margin-right: 4%;}
    .Header-lang{margin-right: 15px;}
    .Header-lang-menu i{font-size: 26px;}
    .Header-lang-menu i.icon-yuyan:before {content: "\e640";}
    .Header-lang-more{width: 120px;margin-left: -60px;top: 60px;}
    .Header-lang-more a{padding: 6px 0;height: 40px;}
    .Header-search {margin-right: 7px;}
    .Header-search-item {display: none;width: 100%;line-height: normal;height: 45px;top: 60px;border-bottom: 1px solid #eaeff3;padding: 0;background: #fff;}
    .Header-search-item .contain {padding-right: 0;}
    .Header-search-item input[type="text"]{width: 100%;height: 44px;padding: 0 54px 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: 46px;height: 46px;top: -1px;background: #0079c3;z-index: 2;color: #fff;}
    .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;position: static;width: 100%;height: 100%;overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;padding: 0;}
    .Header-navbar li{display: block;width: 100%;opacity: 0;transform: translateY(32px);transition: all .4s ease;margin: 0;padding: 0;}
    .Header-navbar.active li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 44px;padding: 0 4%;color: #333;}
    .Header-arrow{display: block;width: 44px;height: 44px;line-height: 44px;font-size: 18px;font-style: normal;color: #333;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Header-arrow::after{content: "\e61f";font-family: "icon";}
    .Header-arrow.active::after{content: "\e61e";}
    .Header-navbar li:hover .Header-menu{color: #333 !important;}
    .Header-navbar li.active .Header-menu{color: #0079c3 !important;}
    .Header-drop {display: none;position: relative;top: 0;left: 0;width: 100%;background: #F6F8FA;margin-left: 0;overflow: hidden;padding: 12px 0;visibility: visible;opacity: 1;pointer-events: auto;transition: all 0s ease 0s !important;transform: translateY(0);}
    .Header-drop-arrow{display: none;}
    .Header-drop-box {box-shadow: none;padding: 0 4% !important;border-radius: 0;background: transparent;}
    .Header-drop-info, .Header-drop-image{display: none;}
    .Header-drop-list{width: 100%;padding: 0;flex-wrap: wrap;}
    .Header-drop-items{min-width: auto !important;width: 100%;}
    .Header-drop-items .link a{height: 32px;align-items: center;padding: 0;display: flex;}
    .Header-drop-items:not(:first-child) {margin-left: 0;margin-top: 12px;}
    .Header-drop-items .name {height: 32px;margin-bottom: 6px;font-size: 16px;}

    .Footer-wrapper .contain{width: 100%;}
    .Footer-info .logo a img {width: 50px;}
    .Footer-info .logo a span {font-size: 20px;margin-left: 12px;}
    .Footer-info .phone a {font-size: 20px;padding-left: 30px;background-size: 20px auto;}
    .Footer-info {padding: 16px 4% 18px;}
    .Footer-items{padding: 14px 0 24px;flex-wrap: wrap;}
    .Footer-navbar{width: 100%;}
    .Footer-navbar li{width: 100% !important;position: relative;}
    .Footer-menu {height: 34px;line-height: 34px;padding: 0 4%;position: relative;font-size: 15px;}
    .Footer-arrow{display: block;width: 40px;height: 34px;line-height: 34px;font-size: 16px;font-style: normal;color: #fff;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Footer-arrow::after{content: "\e61f";font-family: "icon";}
    .Footer-arrow.active::after{content: "\e61e";}
    .Footer-drop a{padding: 4px 4%;max-width: none;font-size: 14px;}
    .Footer-drop{display: none;margin-top: 0;}
    .Footer-code{width: 100%;flex-direction: row;justify-content: space-between;align-items: flex-end;padding: 0 4%;margin-top: 16px;}
    .Footer-code .cont {margin-top: 0;}
    .Footer-copyright {padding: 18px 4%;flex-wrap: wrap;}
    .Footer-copyright .info {font-size: 12px;width: 100%;justify-content: center;}
    .Footer-copyright .info.link{margin-top: 6px;}
    .Footer-copyright .info p:not(:first-child) {margin-left: 12px;}

    .contactUs .contain{flex-direction: column;justify-content: center;}
    .contactUs .link{margin-top: 16px;}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .contactUs{padding: 28px 0 24px;}
    .contactUs .text{font-size: 15px;font-weight: 700;}
    .contactUs .link{margin-top: 8px;}
    .contactUs .link a{font-size: 15px;}
    .contactUs .link i {width: 28px;height: 28px;margin-left: 8px;background-size: 19px auto;}
}