@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper{width: 100%;position: fixed;z-index: 99999;top: 0;left: 0;background: rgba(255, 255, 255, 0);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: background .4s ease, opacity .4s ease;} */
.Header-wrapper>.contain{width: 100%;padding-left: 60px;}
.Header-logo{float: left;width: 143px;height: 76px;display: flex;align-items: center;position: relative;z-index: 999;}
.Header-logo img{max-width: 100%;position: absolute;transition: opacity .4s ease;}
.Header-logo img.s{opacity: 1;}
.Header-logo img.h{opacity: 0;}
.Header-try{display: flex;align-items: center;padding: 0 28px;height: 76px;float: right;background: rgba(255, 255, 255, 0);font-size: 16px;color: #fff;position: relative;z-index: 999;transition: background .4s ease;}
.Header-try:hover{background: #126aac;}
.Header-search{float: right;margin-right: 28px;}
.Header-search-click{width: 40px;height: 76px;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: 76px;line-height: 76px;top: 0;left: 0;z-index: 99;text-align: right;}
.Header-search-item .contain{padding-right: 210px;width: 100%;}
.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{position: absolute;width: 100%;left: 0;top: 0;visibility: visible;opacity: 1;}
body.PC .Header-navbar{display: block !important;}
.Header-navbar ul{display: flex;flex-wrap: wrap;justify-content: center;}
.Header-navbar li{margin-left: 58px;position: relative;z-index: 9;}
.Header-navbar li:first-child{margin-left: 0;}
.Header-menu{position: relative;height: 76px;display: flex;align-items: center;font-size: 16px;color: #fff;transition: color .4s ease;}
.Header-navbar li.active .Header-menu{color: #0092ff;}
.Header-arrow{display: none;}
.Header-drop{visibility: hidden;opacity: 0;pointer-events: none;display: flex;position: absolute;top: 76px;left: 50%;width: 226px;margin-left: -113px;transform: translateY(20px);transition: all .4s ease;}
.Header-drop-arrow{position: absolute;left: 50%;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-link{background: #fff;border-radius: 6px;pointer-events: auto;width: 100%;padding: 12px 0;box-shadow: 0 1px 38px 0 rgba(0, 0, 0, 0.1);}
.Header-drop-link a{display: flex;align-items: center;width: 100%;height: 50px;padding: 0 32px;font-size: 15px;color: #666;transition: all .4s ease;position: relative;}
.Header-drop-link a span{position: relative;z-index: 4;}
.Header-drop-link a::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: url('../images/common/drop.png') no-repeat right center/auto 100%;opacity: 0;transition: all .4s ease;}
.Header-drop-link a:hover{color: #fff;background: #126aac;}
.Header-drop-link a:hover::before{opacity: 1;}
.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, .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-navbar li.active .Header-menu, .bodyMouse .Header-navbar li.active .Header-menu, .bodySearch .Header-navbar li.active .Header-menu, .noLucency .Header-navbar li.active .Header-menu{color: #1c79be;}
.bodyScroll .Header-menu, .bodyMouse .Header-menu, .bodySearch .Header-menu, .noLucency .Header-menu{color: #333;}
.bodyScroll .Header-wrapper::after, .noLucency .Header-wrapper::after,.bodyMouse .Header-wrapper::after,.bodySearch .Header-wrapper::after{opacity: 0;}
.bodyScroll .Header-logo img.s, .noLucency .Header-logo img.s,.bodyMouse .Header-logo img.s,.bodySearch .Header-logo img.s{opacity: 0;}
.bodyScroll .Header-logo img.h, .noLucency .Header-logo img.h,.bodyMouse .Header-logo img.h, .bodySearch .Header-logo img.h{opacity: 1;}
.bodyScroll .Header-try, .noLucency .Header-try,.bodyMouse .Header-try, .bodySearch .Header-try{background: #1c79be;}
.bodyScroll .Header-search-click, .noLucency .Header-search-click,.bodyMouse .Header-search-click, .bodySearch .Header-search-click{color: #333;}
.bodyScroll .Header-search-item input[type="text"], .noLucency .Header-search-item input[type="text"],.bodyMouse .Header-search-item input[type="text"], .bodySearch .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,.bodyMouse .Header-search-item input::-webkit-input-placeholder, .bodySearch .Header-search-item input::-webkit-input-placeholder{color: #999;}
.bodyScroll .Header-search-item input:-moz-placeholder, .noLucency .Header-search-item input:-moz-placeholder,.bodyMouse .Header-search-item input:-moz-placeholder, .bodySearch .Header-search-item input:-moz-placeholder{color: #999;}
.bodyScroll .Header-search-item input::-moz-placeholder, .noLucency .Header-search-item input::-moz-placeholder,.bodyMouse .Header-search-item input::-moz-placeholder, .bodySearch .Header-search-item input::-moz-placeholder{color: #999;}
.bodyScroll .Header-search-item input:-ms-input-placeholder, .noLucency .Header-search-item input:-ms-input-placeholder,.bodyMouse .Header-search-item input:-ms-input-placeholder, .bodySearch .Header-search-item input:-ms-input-placeholder{color: #999;}
.bodyScroll .Header-search-item button, .noLucency .Header-search-item button,.bodyMouse .Header-search-item button, .bodySearch .Header-search-item button{color: #333;}
.bodySearch .Header-navbar{visibility: hidden;opacity: 0;}
/* 不透明 */
.noLucency .Container-wrapper{margin-top: 76px;}
/* 底部 */
.Footer-wrapper{width: 100%;background: #fff url('../images/common/Fbg.jpg') no-repeat center bottom/cover;position: relative;z-index: 9;}
.Footer-items{width: 100%;padding: 80px 0 60px;justify-content: space-between;align-items: flex-start;}
.Footer-info{width: auto;}
.Footer-info .logo{max-width: 274px;}
.Footer-info .text{width: 100%;margin-top: 24px;}
.Footer-info .text p{display: flex;align-items: center;font-size: 15px;color: #666;}
.Footer-info .text p:not(:first-child){margin-top: 4px;}
.Footer-info .text i{width: 18px;height: 18px;display: flex;align-items: center;justify-content: center;border-radius: 50%;background: #1c79be;}
.Footer-info .text span{width: calc(100% - 18px);padding-left: 12px;}
.Footer-code{display: flex;width: 180px;justify-content: space-between;}
.Footer-code .items{text-align: center;}
.Footer-code .items:not(:first-child){margin-left: 20px;}
.Footer-code .items .image{padding: 6px;border-radius: 5px;box-shadow: 0px 0px 8px 0px rgba(85, 98, 151, 0.3);background: #fff;}
.Footer-code .items .image img{height: 118px;}
.Footer-code .items .text{font-size: 15px;color: #666;margin-top: 8px;}
.Footer-copyright{width: 100%;border-top: 1px solid #efefef;padding: 20px 0 54px;justify-content: space-between;align-items: center;}
.Footer-copyright .info{color: #666;line-height: 18px;font-size: 14px;}
.Footer-copyright .info p:not(:first-child){margin-left: 16px;}
.Footer-copyright .info a{transition: all .4s ease;}
.Footer-copyright .info a:hover{color: #1c79be;}
.Footer-copyright .share{width: auto;align-items: center;}
.Footer-copyright .share span{font-size: 15px;color: #666;}
.Footer-copyright .share a{width: 26px;height: 26px;line-height: 26px;text-align: center;font-size: 13px;color: #fff;border-radius: 50%;background: #1c79be;display: block;position: relative;}
.Footer-copyright .share a i{font-size: inherit;}
.Footer-copyright .share a:not(:last-of-type){margin-right: 5px;}
.Footer-copyright .share a::before, .Footer-copyright .share a::after{display: none;content: "";}
/* -- */
#toShare .icon-wechat{position: relative;}
#toShare .icon-wechat .wechat-qrcode{display: none;border: 1px solid #eee;position:absolute;z-index:9;bottom:36px;left:50%;margin-left: -100px;width:200px;height:192px;color:#666;font-size:12px;text-align:center;background-color:#fff;box-shadow:0 2px 10px #ccc;transition:all 200ms;-webkit-tansition:all 350ms;-moz-transition:all 350ms; }
#toShare .icon-wechat .wechat-qrcode.bottom {top:40px;left:-84px;}
#toShare .icon-wechat .wechat-qrcode.bottom:after {display:none;}
#toShare .icon-wechat .wechat-qrcode h4{font-weight:normal;height:26px;line-height:26px;font-size:12px; background-color:#f3f3f3; margin:0;padding:0;color: #333; }
#toShare .icon-wechat .wechat-qrcode .qrcode{width:105px; margin:10px auto;}
#toShare .icon-wechat .wechat-qrcode .qrcode table{margin:0!important;}
#toShare .icon-wechat .wechat-qrcode .help p{font-weight:normal;line-height:16px;padding:0;margin:0;}
#toShare .icon-wechat .wechat-qrcode:after{content:'';position:absolute;left:50%;margin-left:-6px;bottom:-13px;width:0;height:0;border-width:8px 6px 6px 6px;border-style:solid;border-color:#fff transparent transparent transparent}
#toShare .icon-wechat:hover .wechat-qrcode{display: block;}
/* 视频弹窗 */
.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;}
.contain-1400{width: 1440px;margin: 0 auto;}
/* 申请试用 */
.toPlace{position: relative;top: -76px;display: block;height: 0;overflow: hidden;}
.freeTry{width: 100%;position: relative;}
.freeTry-bg{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.freeTry .contain{position: relative;z-index: 4;}
.freeTry-head{width: 100%;}
.freeTry-head .title{line-height: 1.1;}
.freeTry-form{width: 100%;}
.freeTry-select{width: 100%;}
.freeTry-select li{user-select: none;position: relative;padding-left: 16px;cursor: pointer;display: flex;align-items: center;}
.freeTry-select li:not(:last-child){margin-right: 30px;}
.freeTry-select li::before, .freeTry-select li::after{content: "";position: absolute;left: 0;width: 10px;height: 10px;top: 50%;margin-top: -5px;transition: all .4s ease;}
.freeTry-select li::before{background: url('../images/common/freeTryic.png');}
.freeTry-select li::after{background: url('../images/common/freeTryicH.png');opacity: 0;}
.freeTry-select li span{color: rgba(255, 255, 255, 0.6);transition: all .4s ease;line-height: 1;white-space: nowrap;}
.freeTry-select li.active::before{opacity: 0;}
.freeTry-select li.active::after{opacity: 1;}
.freeTry-select li.active span, .freeTry-select li:hover span{color: #fff;}
.freeTry-select li input{background: transparent;border-bottom: 1px solid #fff;margin-left: 8px;width: 214px;color: #fff;font-size: inherit;line-height: 1;}
.freeTry-select li.other{cursor: default;}
.freeTry-select li.other:hover span{color: rgba(255, 255, 255, 0.6);}
.freeTry-select li.other.active span{color: #fff;}
.freeTry-write{width: 100%;max-width: 1200px;}
.freeTry-write li{width: 222px;}
.freeTry-write li:last-child{flex: 1;}
.freeTry-write li:not(:first-child){margin-left: 10px;}
.freeTry-write li input{width: 100%;background: #fff;height: 46px;border-radius: 3px;padding: 0 20px;font-size: 16px;color: #555;transition: box-shadow .4s ease;}
.freeTry-write li input:focus{box-shadow: 0 4px 20px 0 rgba(255, 255, 255, 0.2);}
.freeTry-write li button{width: 100%;background: #1dadff;height: 46px;border-radius: 3px;font-size: 16px;color: #fff;transition: all .4s ease;font-weight: 700;cursor: pointer;}
.freeTry-write li button:hover{background: #1c79be;box-shadow: 0 4px 16px 0 rgba(28, 121, 190, 0.3);}
@media all and (max-width:1270px) {.freeTry-write li {width: 182px;}.freeTry-write li input {padding: 0 16px;}}
@media all and (max-width:1000px) {
    .freeTry-select li.other{margin-top: 8px;}
    .freeTry-write ul{justify-content: space-between;margin-top: -4px;}
    .freeTry-write li{width: calc(50% - 5px);margin: 10px 0 0 !important;}
    .freeTry-write li:last-child{flex: auto;width: 100%;}
}
@media all and (max-width:640px) {
    .freeTry-select ul{justify-content: space-between;margin-top: -6px;}
    .freeTry-select li{width: 116px;margin: 6px 0 0 !important;}
    .freeTry-select li:nth-child(2n){width: calc(100% - 128px);}
    .freeTry-select li input{flex: 1;width: auto;}
    .freeTry-write li {width: calc(50% - 3px);margin: 6px 0 0 !important;}
    .freeTry-write li input {padding: 0 10px;height: 36px;}
    .freeTry-write li button{height: 40px;}
}
/* 侧边栏 */
.sideBar-wrapper{position: fixed;top: 50%;right: 40px;transform: translateY(-50%);z-index: 6666;display: flex;align-items: center;flex-direction: column;}
.sideBar-wrapper a{display: flex;position: relative;margin-top: 4px;flex-direction: column;align-items: center;}
.sideBar-wrapper a .icon{width: 50px;height: 50px;position: relative;border-radius: 5px;z-index: 4;display: flex;align-items: center;justify-content: center;background: #fff;box-shadow: 0px 10px 16px 0 rgba(85, 98, 151, 0.19);transition: background .4s ease;}
.sideBar-wrapper a .icon::before{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;border-radius: 5px;background: linear-gradient(to bottom,#3fa6f3,#2188d5);transition: all .4s ease;opacity: 0;}
.sideBar-wrapper a .icon img{position: absolute;transition: all .4s ease;}
.sideBar-wrapper a .icon img.s{opacity: 1;}
.sideBar-wrapper a .icon img.h{opacity: 0;}
.sideBar-wrapper a:hover{z-index: 5;}
.sideBar-wrapper a:hover .icon img.s{opacity: 0;}
.sideBar-wrapper a:hover .icon img.h{opacity: 1;}
.sideBar-wrapper a:hover .icon::before{opacity: 1;}
.sideBar-wrapper a .info{display: none;position: absolute;right: 0;padding-right: 68px;top: 0;}
.sideBar-wrapper a .info span{display: flex;align-items: center;width: 170px;font-size: 16px;height: 50px;background: #2188d5;justify-content: center;border-radius: 5px;box-shadow: 0px 10px 16px 0 rgba(85, 98, 151, 0.19);position: relative;color: #fff;}
.sideBar-wrapper a .info span::after{content: "";position: absolute;right: -8px;top: 50%;margin-top: -8px;border-top: 8px solid transparent;border-bottom: 8px solid transparent;border-left: 8px solid #2188d5;width: 0;height: 0;}
.sideBar-wrapper a:hover .info{display: block;}
.sideBar-wrapper a.phone .info span{width: 150px;}
.sideBar-wrapper a.serve{z-index: 4;}
.sideBar-wrapper a.qq{z-index: 3;}
.sideBar-wrapper a.phone{z-index: 2;}
.sideBar-wrapper a.backTop{z-index: 1;}
.sideBar-wrapper a.serve .code{position: absolute;top: 50%;right: 68px;width: 122px;height: 122px;padding: 4px;margin-top: -61px;display: none;background: #fff;box-shadow: 0px 10px 16px 0 rgba(85, 98, 151, 0.19);}
.sideBar-wrapper a.serve .code::after{content: "";position: absolute;right: -8px;top: 50%;margin-top: -8px;border-top: 8px solid transparent;border-bottom: 8px solid transparent;border-left: 8px solid #fff;width: 0;height: 0;}
.sideBar-wrapper a.serve .code img{display: block;background-color: #fff;width: 100%;height: 100%;}
.sideBar-wrapper a.serve:hover .code{display: block;}
body.PC .sideBar-wrapper a.backTop, body.PAD .sideBar-wrapper a.backTop{display: flex !important;}
@media all and (max-width:1590px) {.sideBar-wrapper{right: 24px;}}
@media all and (max-width:1270px) {.sideBar-wrapper{right: 16px;}}
@media all and (max-width:640px) {
    .sideBar-wrapper a{display: none;}.sideBar-wrapper{right: 8px;top: auto;bottom: 32px;transform: translateY(0);}
    .sideBar-wrapper a .icon::before{opacity: 1;}.sideBar-wrapper a .icon{width: 46px;height: 46px;}
    .sideBar-wrapper a .icon img.s{opacity: 0;}.sideBar-wrapper a .icon img.h{opacity: 1;}
}
/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain{width: 1400px;}
}
@media all and (max-width:1590px) {
    /* 1440 × (700)  */
    .contain{width: 1200px;}
    .contain-1400{width: 1100px;}
    .Header-navbar li {margin-left: 50px;}
    .Header-drop-link{padding: 10px 0;}
    .Header-drop-link a {height: 46px;padding: 0 24px;}
    .Header-drop {width: 216px;margin-left: -108px;}
    .Footer-items {padding: 70px 0 50px;}
    .Footer-copyright {padding: 20px 0 40px;}
}
@media all and (max-width:1430px) {
    /* 1360 */
}
@media all and (max-width:1350px) {
    /* 1280 */
    .Header-wrapper>.contain {padding-left: 50px;}
    .Header-navbar li {margin-left: 44px;}
}
@media all and (max-width:1270px) {
    /* 1152 × (700) */
    .contain{width: 960px;}
    .contain-1400{width: 850px;}
    .Header-wrapper>.contain {padding-left: 40px;}
    .Header-navbar li {margin-left: 30px;}
    .Header-try {padding: 0 20px;}
    .Header-search {margin-right: 20px;}
    @keyframes HeaderSearch{0%{width: 0;}100%{width: 400px;}}
    .Header-search-item .contain {padding-right: 184px;}
    .Footer-items {padding: 60px 0 40px;}
    .Footer-copyright {padding: 20px 0 30px;}
}
@media all and (max-width:1140px) {
    /* 1024 */
    .Header-wrapper>.contain {padding-left: 30px;}
    .Header-navbar li {margin-left: 24px;}
    .contain{width:870px;}
}
/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .toPlace{top: -60px;}
    .contain-1400{width: 92%;}
    .Header-wrapper{background: #fff;box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);}
    .Header-menu{color: #333;}
    .Header-wrapper::after{background: rgba(0, 0, 0, 0.1);opacity: 1;}
    .Header-logo img.s{opacity: 0;}
    .Header-logo img.h{opacity: 1;}
    .Header-search-click{color: #333;}
    .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%;padding: 0;}
    .Header-try{background: transparent !important;height: 60px;padding: 0;margin: 0 14px 0 4px;font-size: 14px;}
    .Header-try span{background: #1c79be;padding: 6px 10px;border-radius: 3px;line-height: 1;}
    .Header-logo, .Header-search-click{height: 60px;}
    .Header-logo{margin-left: 4%;}
    .Header-navclick{display: flex;margin-right: 4%;}
    .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-navbar.active li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 44px;padding: 0 4%;}
    .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: #1c79be !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-link{box-shadow: none;border-radius: 0;background: transparent;padding: 0;}
    .Header-drop-link a {height: 38px;padding: 0 4%;}
    .Header-search {margin-right: 0;}
    .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 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: #1c79be;z-index: 2;color: #fff;}
    .Footer-wrapper{background-position: left 56% bottom;}
    .Footer-items{padding: 32px 0 24px;}
    .Footer-info .text {margin-top: 16px;}
    .Footer-info .text p{align-items: flex-start;}
    .Footer-info .text i{margin-top: 3px;}
    .Footer-code{margin-top: 20px;justify-content: center;width: auto;}
    .Footer-code .items:not(:first-child) {margin-left: 16px;}
    .Footer-copyright .share{display: none;}
    .Footer-copyright .info {line-height: 16px;font-size: 13px;}
    .Footer-copyright .info p:not(:first-child) {margin-left: 12px;}
    .Footer-copyright {padding: 20px 0;}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .Footer-code{width: 100%;width: 180px;margin: 30px auto 0;}
}