/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper{width: 100%;position: fixed;z-index: 999;top: 0;left: 0;background: transparent;user-select: none;box-shadow: none;transition: all .4s ease;}
.Header-wrapper .contain{position: relative;width: 100%;padding: 0 0 0 40px;}
.Header-wrapper::after{content: "";position: absolute;width: 100%;height: 1px;left: 0;bottom: 0;background: rgba(255, 255, 255, 0.1);}

.Header-logo{float: left;width: 150px;height: 80px;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-apply{float: right;position: relative;z-index: 999;height: 80px;display: flex;align-items: center;width: 162px;justify-content: center;font-size: 16px;color: #fff;transition: background .4s ease;}
.Header-apply span{padding-left: 28px;background: url('../image/yy.png') no-repeat left center/20px auto;}
.Header-apply::before{content: "";position: absolute;width: 1px;height: 100%;top: 0;left: 0;background: rgba(255, 255, 255, 0.1);}

.Header-navbar{position: absolute;z-index: 2;width: 100%;left: 0;top: 0;}
body.PC .Header-navbar{display: block !important;}
.Header-navbar>ul{display: flex;flex-wrap: wrap;justify-content: center;}
.Header-navbar>ul>li{padding: 0 30px;position: relative;z-index: 9;}
.Header-navbar>ul>li:hover{background-color: #3059DA;border-radius: 4px 4px 0 0;}
.Header-navbar>ul>li:hover a.Header-menu{color: #fff !important;}
.Header-menu{position: relative;height: 80px;display: flex;align-items: center;font-size: 18px;color: rgba(255, 255, 255, 0.85);transition: color .4s ease, background .4s ease;}
.Header-menu::before, .Header-menu::after{display: none;content: "";position: absolute;width: 12px;height: 12px;left: 0;top: 50%;margin-top: -6px;transition: all .4s ease;}
.Header-menu::before{background: url('../image/menu.png') no-repeat left center/100% auto;opacity: 0;}
.Header-menu::after{background: url('../image/menuH.png') no-repeat left center/100% auto;opacity: 0;}
.Header-navbar>ul>li:hover .Header-menu::before, .Header-navbar li.active .Header-menu::before{opacity: 1;}
.Header-navbar>ul>li:hover .Header-menu{color: #fff;}
.Header-navbar>ul>li.active .Header-menu{color: #fff;font-family: "PingFangSC-Medium","AM","noto sans",sans-serif;font-weight: 500;}
.Header-arrow{display: none;}
/* -- */

/* -- */
/* box-shadow: ; */
.Header-drop{display: none;position: absolute;background: #fff;left:50%;padding: 12px 0;box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 6%),inset 0 17px 10px -8px rgba(0, 0, 0, 0.03);transform: translateX(-50%);min-width: 196px;}
.bodyNoDot .Header-drop{left:0;right:0;margin:0 auto;transform:translateX(10px)}

/* .Header-drop::before{content: "";position: absolute;left: 0px;bottom: 0px;width: 100%;height: 100%;z-index: -1;box-shadow: inset 0 17px 10px -8px rgba(0, 0, 0, 0.03);} */
.Header-drop>a{font-size: 16px;}
.Header-drop a{display: flex;width: 100%;height: 40px;padding-bottom: 1px;color: #333;align-items: center;justify-content: center;transition: all .4s ease;font-family: "AR";}
.Header-drop>a.active, .Header-drop>a:hover{color: #3059DA;background: rgba(0,0,0,0.05);}

.Header-navclick{display: none;width: 60px;height: 60px;cursor: pointer;float: right;user-select: none;align-items: center;justify-content: center;}
.Header-navclick span{width: 24px;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, .noLucency .Header-wrapper{background: #fff;box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);}
.bodyScroll .Header-apply, .bodyMouse .Header-apply, .noLucency .Header-apply{background: #3059DA;border-radius: 4px 0 0 4px;}
.bodyScroll .Header-menu, .bodyMouse .Header-menu, .noLucency .Header-menu{color: #333;}
.bodyScroll .Header-logo img.s, .bodyMouse .Header-logo img.s, .noLucency .Header-logo img.s{opacity: 0;}
.bodyScroll .Header-logo img.h, .bodyMouse .Header-logo img.h, .noLucency .Header-logo img.h{opacity: 1;}
.bodyScroll .Header-navbar li:hover .Header-menu, .bodyScroll .Header-navbar li.active .Header-menu,
.bodyMouse .Header-navbar li:hover .Header-menu, .bodyMouse .Header-navbar li.active .Header-menu,
.noLucency .Header-navbar li:hover .Header-menu, .noLucency .Header-navbar li.active .Header-menu{color: #3059DA;}
.bodyScroll .Header-menu::before,.bodyMouse .Header-menu::before,.noLucency .Header-menu::before{opacity: 0;}
.bodyScroll .Header-navbar li:hover .Header-menu::after, .bodyScroll .Header-navbar li.active .Header-menu::after,
.bodyMouse .Header-navbar li:hover .Header-menu::after, .bodyMouse .Header-navbar li.active .Header-menu::after,
.noLucency .Header-navbar li:hover .Header-menu::after, .noLucency .Header-navbar li.active .Header-menu::after{opacity: 1;}
.bodyScroll .Header-apply:hover{
    background: #e27d1d;
}
/* 不透明 */
.noLucency .Container-wrapper{margin-top: 80px;}
.cwk {
	padding-right: 20px;
    max-height: 400px;
    overflow-y: auto;
}
.cwk::-webkit-scrollbar {width: 0;}
.cwk::-webkit-scrollbar-thumb {background: #3059DA;}
.cwk::-webkit-scrollbar-track {background: #f1f1f1;}
.cwk{scrollbar-color:#3059DA #f1f1f1;scrollbar-width:thin;}
.cwk{scrollbar-face-color: #3059DA;scrollbar-shadow-color: #3059DA;scrollbar-arrow-color: #000;scrollbar-track-color: #f1f1f1;}
.index-hw .prolb-li_title{margin-top: 30px;}
/* 底部 */
.FooterBlock{width: 100%;}
.Footer-wrapper{width: 100%;background: #0F1F2F;}
.Footer-items{width: 100%;padding: 66px 0 56px;}
.Footer-info{width: 290px;}

.Footer-info .logo{width: 100%;display: block;}
.Footer-info .logo img{height:60px}
.Footer-info .contact{width: 100%;margin-top: 32px;color: #fff;}
.Footer-info .contact p{font-size: 15px;opacity: 0.8;line-height: 18px;}
.Footer-info .contact h6{font-family: "M";line-height: 1;font-size: 18px;margin-top: 10px;display: flex;}
.Footer-info .contact h6 a{position: relative;}
.Footer-info .contact h6 a::after{content: "";position: absolute;width: 100%;height: 1px;background: #fff;left: 0;bottom: 0;opacity: 0;transition: all .4s ease;}
.Footer-info .contact h6 a:hover::after{opacity: 1;}
.Footer-info .more{width: 100%;margin-top: 24px;}
.Footer-info .more p{display: flex;width: 100%;color: #fff;font-size: 14px;line-height: 24px;margin-bottom: 5px;}
.Footer-info .more p span, .Footer-info .more p a{opacity: 0.8;transition: all .4s ease;}
.Footer-info .more p a{opacity: 1;font-family: "ML";height: 24px;padding-top: 1px;}
.Footer-codes{width: 240px;}
.Footer-code{width: 100px;
    text-align: center;
    margin-bottom: 15px;
    margin-left: 20px}
.Footer-code .image{width: 100px;margin: 0 auto;}
.Footer-code .image img{width: 100%;object-fit: cover;    border-radius: 4px;}
.Footer-code .text{color: #fff;font-size: 14px;margin-top: 10px;opacity: 0.7;line-height: 18px;text-transform: capitalize;}
.Footer-navbar{flex: 1;user-select: none;padding: 0 100px;}
.Footer-navbar ul{justify-content: space-between;}
.Footer-navbar li{width: auto;}
.Footer-menu{font-size: 18px;color: #fff;display: flex;height: 22px;align-items: center;}
.Footer-menu:hover{opacity: 0.5;}
.Footer-drop{width: 100%;margin-top: 20px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop a{display: block;font-size: 14px;color: #fff;line-height: 30px;opacity: 0.5;transition: all .4s ease;}
.Footer-drop a:hover{opacity: 1;}
/* -- */
.Footer-friend{width: 100%;display: flex;align-items: flex-start;border-top: 1px solid rgba(255, 255, 255, 0.1);padding: 20px 0;}
.Footer-friend-hint, .Footer-friend-link a {color: #fff;line-height: 24px;font-size: 12px;opacity: 0.5;}
.Footer-friend-link{flex: 1;padding-left: 8px;}
.Footer-friend-link a{transition: all .4s ease;margin-right: 16px;}
.Footer-friend-link a:last-of-type{margin-right: 0;}
.Footer-friend-link a:hover{opacity: 1;}
/* -- */
.Footer-copyright{width: 100%;border-top: 1px solid rgba(255, 255, 255, 0.1);padding: 20px 0;display: flex;flex-wrap: wrap;align-items: center;justify-content:center;}
.Footer-copyright .info p, .Footer-copyright .link a{font-size: 14px;color: #fff;opacity: 0.5;line-height: 18px;position: relative;transition: all .4s ease;}
.Footer-copyright .info p{margin-left: 10px;}
.Footer-copyright .info p:first-child{margin-left: 0;}
.Footer-copyright .link a{margin-left: 14px;}
.Footer-copyright .link a:first-child{margin-left: 0;}
.Footer-copyright .link a::before{content: "";position: absolute;width: 1px;left: -7px;height: 12px;top: 50%;margin-top: -6px;background: rgba(255, 255, 255, 0.4);pointer-events: none;}
.Footer-copyright .link a:first-child::before{display: none;}
.Footer-copyright .link a:hover{opacity: 1;}

/* 置顶 */
.backTop{display: none;right: 40px;bottom: 60px;width: 44px;height: 44px;line-height: 44px;font-size: 19px;color: #fff;clip-path: polygon(0 0, calc(100% - 8px) 0%, 100% 8px, 100% 100%, 8px 100%, 0% calc(100% - 8px));text-align: center;position: fixed;cursor: pointer;z-index: 9999;background: #3059DA;}
.backTop::after{content: "\e684";font-family: "icon";}
@media all and (max-width:1590px) {.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%;}
/* 屏蔽视频的下载按钮 */
video::-internal-media-controls-overflow-button { display: none;}
video::-webkit-media-controls { overflow: hidden !important;}
video::-webkit-media-controls-enclosure {width: calc(100%   32px);margin-left: auto;}

.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;font-size: 18px;}.popVideo-video iframe{height: 400px;}}
@media all and (max-width:640px) {.popVideo-video iframe{height: 200px;}}

/* 中间+共用部分 */
.Container-wrapper{width: 100%;position: relative;background: #fff;z-index: 4;}
.contain{width: 1440px;margin: 0 auto;}
.section{width: 100%;overflow: hidden;position: relative;}

/* 咨询 */
.getConsult{width: 100%;position: relative;overflow: hidden;padding: 70px 0;z-index: 9;}
.getConsult-bg{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.getConsult .contain{position: relative;z-index: 4;align-items: center;justify-content: center;}
.getConsult .name{font-size: 30px;font-weight: 500;color: #fff;line-height: 1.1;display: flex;align-items: center;font-family: "PingFangSC-Medium","AM","noto sans",sans-serif;}
.getConsult .name h2{margin-right: 20px;}
.getConsult .link{margin-left: 30px;}

/* 加载 */
.loading{display: none;position: fixed;width: 100%;height: 100vh;top: 0;left: 0;z-index: 9999999;overflow: hidden;}
.loading-mask{position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 1;background: #fff;overflow: hidden;transition: background 1s ease-in-out, transform 1s ease-in-out 1s;}
.loading-mask img{width: 3840px;height: 2160px;position: absolute;max-width: none;top: 50%;left: 50%;margin: -1080px 0 0 -1920px;}
.loading-mix{position: absolute;width: 100%;height: 100%;top: 0;left: 0;display: flex;align-items: center;justify-content: center;}
.loading-mix-wrap{width: 100%;}
.loading-box{position: relative;width: 530px;height: 612px;z-index: 4;margin: 0 auto;}
.loading-line{width: 100%;height: 100%;position: relative;z-index: 2;transition: opacity .6s ease;}
.loading-line>div{position: absolute;opacity: 0;top: 50%;left: 50%;display: flex;align-items: center;justify-content: center;}
.loading-line .line1{width: 530px;height: 612px;margin: -306px 0 0 -265px;}
.loading-line .line2{width: 356px;height: 410px;margin: -206px 0 0 -180px;}
.loading-line>div svg{width: 100%;}
.loading-line>div i{position: absolute;left: -6px;transform: translate3d(0,0,0);width: 12px;height: 14px;background: url('../image/loadingIcon.png') no-repeat center/100% auto;}
.loading-line .line1 i{top: -5px;}
.loading-line .line2 i{top: -7px;}
.loading-bar{position: absolute;z-index: 3;width: 100%;height: 100%;top: 0;left: 0;transition: opacity .6s ease;}
.loading-bar>div{position: absolute;opacity: 0;}
.loading-bar>div i{position: absolute;background: #3059da;}
.loading-bar>div i::after{content: "";position: absolute;width: 12px;height: 14px;top: -6px;background: url('../image/loadingIcon.png') no-repeat center/100% auto;}
.loading-bar .bar1{left: 0;top: 153px;width: 304px;height: 1px;transform-origin: left center;transform: rotate(30deg);}
.loading-bar .bar1 i{width: 0%;height: 100%;top: 0;left: 0;}
.loading-bar .bar1 i::after{right: -8px;transform: rotate(-30deg);}
.loading-bar .bar2{right: 2px;top: 153px;width: 304px;height: 1px;transform-origin: right center;transform: rotate(-30deg);}
.loading-bar .bar2 i{width: 0%;height: 100%;top: 0;right: 0;}
.loading-bar .bar2 i::after{left: -8px;transform: rotate(30deg);}
.loading-bar .bar3{left: 263px;bottom: 2px;width: 1px;height: 304px;}
.loading-bar .bar3 i{width: 100%;height: 0%;bottom: 0;left: 0;}
.loading-bar .bar3 i::after{right: -6px;}
@keyframes loadingBarW {0%{width: 0%;}100%{width: 100%;}}
@keyframes loadingBarH {0%{height: 0%;}100%{height: 100%;}}
.loading-logo{position: relative;z-index: 4;width: 100%;margin-top: 50px;text-align: center;transition: opacity 1s ease-in-out;}
.loading-logo svg{width: 150px;}
.loading.active .loading-mask{background: transparent;transform: scale(4);}
.loading.active .loading-logo{opacity: 0;}
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
}

.bg-bk {
  height: 100%;
  background-color: #e27d1d;
  transition: width 0.2s ease-out;
}
.indtrack{width: 100%;position: relative;z-index: 9;}
.indtrack-item{width: 100%;background: #fff;border-radius: 10px;padding: 20px;margin-top:70px;box-shadow: 0 2px 30px 0 rgba(48, 89, 218, 0.1);}
.indtrack-search{width: 50%;float: left;padding-right: 20px;}
.indtrack-search-title{width: 100%;font-size: 24px;color: #014d4e; margin-bottom: 15px;}
.indtrack-search-form{width: 100%;margin-top: 8px;position:relative}
.indtrack-search-form input{width: calc(100% - 190px);transition: all .4s ease;float: left;height: 54px;border: 1px solid #d2d2d2;padding: 0 16px;border-radius: 5px;font-size: 15px;color: #0d8484;}
.indtrack-search-form input:focus{border: 1px solid #0d8484;}
.indtrack-search-form button{width: 168px;height: 54px;text-transform: uppercase;letter-spacing: 0.1em;background:#3059DA;border-radius: 5px;color: #fff;font-size: 18px;float: right;cursor: pointer;transition: all .4s ease;}
.indtrack-search-form button:hover{background: #e27d1d;}
.indtrack-list{width: 50%;float: right;padding-left: 20px;}
.indtrack-list-ul{margin-left: -2%;}
.indtrack-list-link{display: flex;width: 31.3333%;float: left;text-align: center;margin-left: 2%;align-items: center;height: 124px;border-radius: 10px;transition: all .4s ease;}
.indtrack-list-center{width: 100%;transition: all .4s ease;}
.indtrack-list-img{position: relative;display: inline-block;}
.indtrack-list-img img{max-width: 42px;position: relative;z-index: 2;}
.indtrack-list-cont{width: 100%;margin-top: 18px;}
.indtrack-list-cont p{font-size: 18px;color: #3059DA;line-height: 1.1;}
.indtrack-list-link{position: relative;}
.indtrack-list-link::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
	height: 0;
	opacity: 0;
	background: #3059DA;
	border-radius: 6px;
	z-index: -1;
	transition: height .4s ease, opacity .1s ease .4s
}
.indtrack-list-link:hover::after {
    opacity: 1;
    height: 100%;
    transition: height .4s ease .1s, opacity .1s ease;
}.indtrack-list-link:hover .indtrack-list-center{transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);}
.indtrack-list-link:hover .indtrack-list-img img{filter: brightness(0) invert(1);}
.indtrack-list-link:hover .indtrack-list-cont p {
    color: #fff;
}
.error-message {
    color: red;
    display: none;
    position: absolute;
    left: 0;
    bottom: -30px;
}
#txtOrder.error {
    border: 1px solid red;
}
  #video {width: 100%;height: 100%;margin: 0 auto;position: relative;z-index: 1;border-radius: 6px;overflow: hidden;}
    #video video {width: 100%;height: 100%;object-fit: fill;}
	
    .VideoBtn {position: absolute;left: 50%;top: 50%;display: block;width: 70px;height: 70px;margin-left: -35px;margin-top: -35px;cursor: pointer;z-index: 11;}
.jsmodern-video-panel{opacity: 0;}
.abVideo-circle {display: block;position: absolute;left: 0;top: 0;width: 100%;height: 100%;}
.abVideo-circle .circle-bg {fill: none;stroke: rgba(255, 255, 255, .4);stroke-width: 1.5;}
.abVideo-circle .circle {fill: none;stroke: rgba(255, 255, 255, .8); stroke-width: 1.5;stroke-linecap: round;animation: progress 4s linear infinite;}
@keyframes progress {0% {stroke-dasharray: 0 100;}}
 .VideoBtn i {
    position: relative;
    z-index: 4;
	display: block;
    width: 100%;
    height: 100%;
    background: url(../images/abVideo-icon.png) no-repeat center;
}

@media all and (max-width:1590px) {
    .loading-box{width: 424px;height: 490px;}
    .loading-line .line1{width: 424px;height: 490px;margin: -245px 0 0 -212px;}
    .loading-line .line2{width: 285px;height: 328px;margin: -164px 0 0 -143px;}
    .loading-bar .bar1, .loading-bar .bar2 {top: 123px;width: 242px;}
    .loading-bar .bar3 {left: 210px;height: 243px;}
    .loading-mask img {width: 3072px;height: 1728px;margin: -864px 0 0 -1536px;}
    .loading-logo {margin-top: 40px;}
    .loading-logo svg {width: 120px;}
	.indtrack-list-cont p {
	    font-size: 16px;
	}
}
@media all and (max-width:640px) {
    .loading-box{width: 318px;height: 367px;}
    .loading-line .line1{width: 318px;height: 367px;margin: -184px 0 0 -159px;}
    .loading-line .line2{width: 214px;height: 246px;margin: -123px 0 0 -107px;}
    .loading-bar .bar1, .loading-bar .bar2 {top: 91px;width: 182px;}
    .loading-bar .bar3 {left: 157px;height: 182px;}
    .loading-mask img {width: 2304px;height: 1296px;margin: -648px 0 0 -1152px;}
    .loading-logo svg {width: 100px;}
}

/* 按钮 */
.commonLink{display: flex;align-items: center;justify-content: center;clip-path: polygon(0 0, calc(100% - 7px) 0%, 100% 7px, 100% 100%, 7px 100%, 0% calc(100% - 7px));width: 120px;line-height: 1;height: 40px;font-size: 14px;color: #666;transition: all .4s ease;overflow: hidden;position: relative;}
.commonLink::before, .commonLink::after{content: "";position: absolute;left: 0;width: 100%;bottom: 0;}
.commonLink::before{height: 100%;background: url('../image/bgkk.svg') no-repeat center/100% auto;transition: all .4s ease;}
.commonLink::after{height: 0;opacity: 0;background: #3059DA;transition: height .4s ease,opacity .1s ease .4s;}
.commonLink span{position: relative;z-index: 3;}
.commonLink:hover{color: #fff;}
.commonLink:hover::before{background-image: url('../image/bgkkH.svg');}
.commonLink:hover::after{opacity: 1;height: 100%;transition: height .4s ease .1s,opacity .1s ease;}
.commonLink.active{color: #fff;}
.commonLink.active::before{background-image: url('../image/bgkkH.svg');}
.commonLink.active::after{opacity: 1;height: 100%;transition: height .4s ease .1s,opacity .1s ease;}
.commonLink.white{color: #fff;}
.commonLink.white::before{background-image: url('../image/bgkkW.svg');}
.commonLink.white::after{background: #fff;}
.commonLink.white:hover{color: #3059DA;}
@media all and (max-width:640px) {.commonLink{width: 108px;height: 36px;}}

.commonLink.other{margin-left: 16px;}
.commonLink.other::after{width: 0;right: 0;margin: 0 auto;height: 100%;transition: width .4s ease,opacity .1s ease .4s;}
.commonLink.other:hover::after{opacity: 1;width: 100%;transition: width .4s ease .1s,opacity .1s ease;}

.ComXuan{position: fixed;right: 12px;display: flex;z-index: 9;flex-direction: column;justify-content: center;bottom: 40px;}
.ComXuan_b{width: 56px;box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.1);background-color: #fff;border-radius: 6px;height: 50px;margin-top: 15px;}
.ComXuan_b a{display: flex;width: 100%;height: 100%;justify-content: center;align-items: center;color: #90909A;transform: rotate(90deg);}
.ComXuan_b i{font-size: 24px;font-weight: bold;}
.ComXuan_T{width: 56px;height: 208px;background: #FFFFFF;box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.1);border-radius: 7px;display: flex;align-items: center;flex-direction: column;position: relative;}
.ComXuan_T a{display: flex;width: 100%;height: 30px;position: relative;justify-content: center;}
.ComXuan_T a>img{width: 30px;height: 100%;}
.ComXuan_T a:nth-child(1){margin-top: 70px;}
.ComXuan_T a:nth-child(2){margin-top: 47px;}
.ComXuan_T_Xing{background: url(../image/ComXuan_T_Xing.svg)center no-repeat;background-size: contain;width: 56px;height: 64px;position: absolute;top: -32px;left: 0px;}
.ComXuan_T_Xing a{margin-top: 0px !important;width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;}
.ComXuan_T_Xing a img{height: auto;width: auto;}
.ComXuan_T .ER_max{position: absolute;left: -170px;bottom: -30px;display: none;width: 180px;}
.ComXuan_T .ER_max > div{width: 156px;height: 178px;background: #FFFFFF;box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.1);border-radius: 5px;padding: 10px;}

.ComXuan_T .ComXuan_T_img>img:nth-child(1){position: absolute;opacity: 1;transition: all .4s ease;}
.ComXuan_T .ComXuan_T_img>img:nth-child(2){opacity: 0;transition: all .4s ease;}
.ComXuan_T .ComXuan_T_img:hover>img:nth-child(1){opacity: 0;}
.ComXuan_T .ComXuan_T_img:hover>img:nth-child(2){opacity: 1;}

.ER_Phone{position: absolute;left: -215px;top: -10px;display: none;width: 220px;}
.ER_Phone > div{width: 200px;height: 64px;background: #FFFFFF;box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.1);border-radius: 6px;padding: 10px;}
.ER_Phone div{text-align: center;}

.ComXuan{animation: ComXuan 1s ease;}
@keyframes ComXuan {0%{right: -100px;}100%{right: 12px;}}


.Herader-list{display: flex;justify-content: center;}
.Herader-list_title{display: flex;align-items: center;margin-bottom: 26px;}
.Herader-list_title .img{margin-right: 10px;width: 20px;height: 20px;line-height: 0;display: flex;align-items: center;}
.Herader-list_title .text{color: #000;font-weight: bold;font-size: 16px;}
.Herader-list li{padding: 0px 50px;}
.Herader-list li a{color: #333;margin-bottom: 0px;font-size: 14px;font-family: "AR";height: auto;margin-bottom: 20px;}
.Herader-list li a:hover{background-color: #fff;color: #3059DA;}
.Herader-list li a:last-child{margin-bottom: 0px;}
.Herader-list ul{display: flex;}

.Header-drop_mb{display: none;}

.Header-drop_btn {display: flex;align-items: center;font-size: 16px !important;width: fit-content !important;}
.Header-drop_btn i{margin-left: 10px;font-size: 12px;transition: all .4s ease;}
.Header-drop_btn:hover i{margin-left: 15px;}
.Header-drop_list{width: 100%;position: relative;padding-left: 145px;}
.Header-drop_list .title{position: absolute;top: 0px;left: 0px;}
.Header-drop_HOT{color: #FF0000;font-size: 14px;margin-left: 6px;font-family: "AR";}
.list-cont.lt1{width: 100%;background-color: #F0F3F9;padding: 12px;}
.list-cont.lt1 .list-title{display: flex;justify-content: space-between;}
.list-cont .list-title .list-title_li .line{width: 100%;height: 1px;background-color: #D6DBE3;margin: 12px 0px 10px 0px;}
.list-cont.lt1 .list-title .list-title_li li a{width: auto;color: #000;font-size: 14px;line-height: 20px;display: block;font-family: "AR";}
.Header-drop_list .list .name{color: #3059DA;font-family: "AM" !important;}
.list-title_li.ly1 li{margin-bottom: 10px;margin-right: 10px;width: calc(100% - 10px);}
.list-title_li.ly2 li{margin-right: 10px;margin-bottom: 10px;width: calc(100%/2 - 10px);}
.list-title_li.ly1 ul{margin-bottom: -10px;margin-right: -10px;}
.list-title_li.ly2 ul{margin-bottom: -10px;margin-right: -10px;}
.list-title_li.ly3 ul{margin-bottom: -10px;margin-right: -10px;}
.list-title_li.ly3 li{margin-right: 10px;margin-bottom: 10px;width: calc(100%/3 - 10px);}
.list-title_li.ly4 ul{margin-bottom: -10px;margin-right: -10px;}
.list-title_li.ly4 li{margin-right: 10px;margin-bottom: 10px;width: calc(100%/4 - 10px);}
.list-cont.lt1 .list-title{flex-wrap: nowrap;}
.list-cont.lt1 .list-title .list-title_li{margin-right: 50px;}
.list-cont.lt1 .list-title .list-title_li:last-child{margin-right: 0px;}
.list-cont.lt1 .list-title .list-title_li li a:hover{color: #3059DA;}
.list-cont.lt1 .list-title .list-title_li li a.not{pointer-events: none;}
.Header-drop_list .list2 .list2-muen{display: flex;justify-content: space-between;flex-wrap: nowrap;}
.Header-drop_list .list2 .list2-muen>li{margin-right: 10px;}
.Header-drop_list .list2 .list2-muen>li:last-child{margin-right: 0px;}
.Header-drop_list .list2 .list2-btn{color: #3059DA;font-family: "AM";}
.Header-drop_list .list2 .list2-btn i{font-size: 12px;margin-left: 10px;transition: all .4s ease;}
.Header-drop_list .list2 .list2-btn:hover i{margin-left: 15px;}
.Header-drop_list .list2 .list2-btn.not i{display: none;}
.Header-drop_list .list2 .list2-btn.not{pointer-events: none;}
.list-cont .list-title{flex-wrap: nowrap;}
.list-cont .list-title.ly2{margin-right: -24px;}
.list-cont .list-title.ly2 .list-title_li{width: calc(100%/2 - 24px);margin-right: 24px;}
.list-cont .list-title.ly3{margin-right: -24px;}
.list-cont .list-title.ly3 .list-title_li{width: calc(100%/3 - 24px);margin-right: 24px;}
.list-cont .list-title.Dna li{margin-right: 50px;}
.list-cont .list-title.Dna li:last-child{margin-right: 0px;}

.list-cont_title{color: #000 !important;font-family: "AM" !important;}
.list-cont_title a{font-family: "AM" !important;}
a.list-cont_title:hover{color: #3059DA !important;}
.Header-drop_mb{display: none;}
.Header_guangao{float: left;height: 80px;display: flex;padding-left: 30px;align-items: center;opacity: .7;color: #fff;position: relative;font-weight: 300;transition: all .4s ease;}
.Header_guangao::before{content: "";position: absolute;left: 15px;width: 1px;height: 40px;top: 50%;transform: translateY(-50%);background-color: #fff;transition: all .4s ease;}

.Footer-navbar li{position: relative;}

.Footer-navbar li .Footer-drop{overflow: hidden;position: relative;transition: all .4s ease;}
.Footer-navbar li .btn{content: "\e61f";position: absolute;bottom: -25px;left: 0px;font-size: 10px;width: 100%;height: 25px;color: #fff;font-family: "icon";opacity: 0;z-index: 4;display: flex;align-items: center;letter-spacing: 10px;}
.Footer-navbar li.on .btn{opacity: 1;}
.Footer-navbar li.active .btn{transform:rotate(-180deg);}
.Footer-navbar li.active .Footer-drop{height: auto !important;}

.ltbulu{color: #3059DA !important;font-family: "AM";}
/* .ltbuluUl li:nth-child(1) .list-cont_title a{color: #000 !important;display: flex !important;} */
.ltbuluUl li:nth-child(1) .list-cont_title a{color: #000 !important;font-family: "AM" !important;}
.ltbuluUl li:nth-child(1) .list-cont_title a:hover{color: #3059DA !important;}

.pt80{padding-top: 64px;}
.pb80{padding-bottom: 64px;}

.bodyScroll .Header_guangao{color: #333;}
.bodyScroll .Header_guangao::before{background-color: #333;}
.noLucency .Header_guangao{color: #333;}
.noLucency .Header_guangao::before{background-color: #333;}

.Herader-list li a{padding-left: 30px;justify-content: flex-start;}

.Header_guangao{display: none;}

.Header-logo img.IMB{display: none;}

.Header-drop>a{padding: 0px 5px;font-size: 14px;font-family: "AR";color: #333;justify-content:center;}

.Header-drop_list .list2 .list2-muen>li:last-child{width: 280px;}

.Header-drop_xiala{display: none;}

.Footer-navbar li .btn {font-size: 14px;letter-spacing: 3px;color: #bababa;transition: all .4s ease;bottom: -18px;}
.Footer-navbar li .btn:hover{color: #fff;}
.ComXuan_b i{transition: all .4s ease;}
.ComXuan_b:hover i{color: #3059DA;}

.apply .Header-wrapper {box-shadow: none;}
.apply .Header-wrapper:hover {box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);}
/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .list-cont.lt1 .list-title .list-title_li {margin-right: 20px;}
    .Header-navbar>ul>li{padding: 0px 30px;}
}

@media all and (max-width:1590px) {
    /* 1440 × (700)  */
    .contain{width: 1200px;}
    .Header-navbar>ul>li {padding: 0 20px;}
    .getConsult {padding: 48px 0;}
    .getConsult .name {font-size: 28px;}
    .Footer-items {padding: 60px 0 50px;}
    .Footer-navbar {padding: 0 30px 0 40px;}

    .list-cont.lt1 .list-title{margin-bottom: -20px;}
    /* .list-cont.lt1 .list-title .list-title_li{width: calc(100%/3 - 20px);margin-bottom: 20px;} */
    .Header-drop_list .list2 .list2-muen>li{margin-bottom: 10px;}
    .Header-drop-cont>div{margin-right: 15px;}
    .list-cont.lt1{padding: 12px 12px 30px 12px;}
    .Header-drop_list .list2 .list2-btn{display: flex !important;}
    .Header-navbar>ul{padding-left: 120px;}
  .indtrack-list-link {
      height: 110px;
  }

}

@media all and (max-width:1430px) {
.Header-menu{font-size: 16px;}
}

@media all and (max-width:1350px) {
    /* 1280 */
    .Header-drop_list {padding-left: 90px;}

.Header-logo img{height: 40px;}
    .Header-drop_list .list2 .list2-muen>li:last-child{width: 310px;}
}

@media all and (max-width:1270px) {
    /* 1152 × (700) */
    .contain{width: 960px;}
    .Header-navbar>ul>li {padding: 0 20px;}
    .getConsult {padding: 36px 0;}
    .getConsult .name {font-size: 24px;}
    .getConsult .link {margin-left: 24px;}
    .getConsult .name h2 {margin-right: 16px;}
    .Footer-items {padding: 56px 0 42px;}
    .Footer-navbar {padding: 0 40px 0 40px;}
    .Footer-info .contact {margin-top: 24px;}
    .Footer-info .more {margin-top: 18px;}
    .Footer-drop {margin-top: 16px;}
  
    .Herader-list li{padding: 0px 50px;}
    .Header-navbar>ul{padding-left: 50px;}
  

    .Header-logo img.IMB{display: block;}
    .Header-navbar>ul{padding-left: 0px;}


	.Header-apply {
	    width: 120px;
	    font-size: 16px;
	}
	.Header-apply span {
	    padding-left: 24px;
	    background: url(../image/yy.png) no-repeat left center / 18px auto;
	}
}

@media all and (max-width:1140px) {
    /* 1024 */
    .ComXuan{display: none;}
	.Header-wrapper .contain {
	    padding: 0 0 0 20px;
	}
	  .Header-navbar>ul>li {padding: 0 15px;}
	.Header-menu {font-size: 14px;}
	  .indtrack-search-form button {width: 116px;height: 42px;}
	    .indtrack-search-form input {width: calc(100% - 128px);height: 42px;}
	    .indtrack-list {padding-left: 12px;}
	    .indtrack-search {padding-right: 12px;}
	    .indtrack-search-title {font-size: 22px;}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .Header-wrapper{background: #fff;box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);}
    .Header-menu{color: #333;}
    .Header-logo img.s{opacity: 0;}
    .Header-logo img.h{opacity: 1;}
    .Header-logo, .Header-menu, .Header-apply{height: 60px;}
    .noLucency .Container-wrapper{margin-top: 60px;}
    .Header-apply{background: #3059DA;width: 116px;}
    .contain{width: 92%;}
    .Header-logo img {
        height: 36px;
    }
    .cwk {
    padding-right:0;
    max-height: none;
    overflow-y: auto;
}
    .Container-wrapper{margin-top: 60px;}
    .Header-wrapper .contain{width: 100%;padding: 0;}
    .Header-logo{margin-left: 4%;width: 130px;}
    .Header-navclick{display: flex;}
    .Header-navbar{display: none;position: absolute;width: 100%;margin-right: 0;height: calc(100vh - 60px);top: 60px;left: 0;background: #fff;padding: 0px;padding-bottom: 20px;}
    .Header-navbar::before{content: "";position: absolute;width: 100%;height: 1px;left: 0;top: 0;background: rgba(0, 0, 0, 0.1);}
    .Header-navbar>ul{display: block;width: 100%;height: 100%;overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;}
    .Header-navbar>ul>li{display: block;width: 100%;opacity: 0;transform: translateY(32px);transition: all .4s ease;padding: 0 4%;}
    .Header-navbar>ul>li::after{content:"";position:absolute;width: 92%;left:4%;bottom:0;height:1px;background:rgba(0,0,0,0.1)}
    .Header-navbar.active li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 55px;padding: 0%;font-size: 12px;}
    .Header-menu::before, .Header-menu::after{display: none !important;}
    .Header-arrow{display: block;width: 32px;height: 55px;line-height: 55px;font-size: 12px;font-style: normal;color: #333;text-align: right;position: absolute;z-index: 9;right: 4%;top: 0;}
    .Header-arrow::after{content: "\e61f";font-family: "icon";}
    .Header-arrow.active{transform: rotate(180deg);text-align:left}
    .Header-navbar>ul>li:hover .Header-menu{color: #333 !important;}
    .Header-navbar>ul>li.active .Header-menu{color: #3059DA !important;}
    .Header-drop {position: relative;top: 0;left: 0;width: 100%;margin-left: 0;overflow: hidden;box-shadow: none;padding: 0px;}
    .Header-drop a {height: 55px;line-height: 55px;justify-content: flex-start;padding-left: 10px;border-bottom: 1px dashed rgba(0, 0, 0, .1);color: #555;}
    .Header-drop>a:last-child{border-bottom: none;}

    .getConsult {padding: 24px 0;}
    .getConsult .name {font-size: 18px;width: 100%;justify-content: center;}
    .getConsult .name h2 {margin-right: 10px;}
    .getConsult .link {margin: 10px 0 0;}

    .Footer-items{padding: 34px 0 28px;}
    .Footer-info{width: 100%;text-align: center;}
    .Footer-info .contact h6 {justify-content: center;}
    .Footer-info .more p {justify-content: center;}
    .Footer-info .contact {margin-top: 20px;}
    .Footer-info .more {margin-top: 12px;}
    .Footer-codes {
    width: 100%;
      justify-content: center;
}
    .Footer-code{text-align: center;margin-top: 20px;}
    .Footer-code .text {margin-top: 12px;}
    .Footer-navbar{width: 100%;display: none;flex: none;}
    .Footer-navbar>ul>li{width: 100% !important;}
    .Footer-menu {height: 40px;line-height: 40px;padding: 0 4%;position: relative;}
    .Footer-menu::after{content: "\e61f";font-family: "icon";text-align: center;font-weight: 400;width: 44px;height: 45px;line-height: 45px;font-size: 12px;color: #fff;position: absolute;z-index: 9;right: 0;top: 0;}
    .Footer-menu.active::after{transform: rotate(180deg);}
    .Footer-drop a{padding: 7px 4%;}
    .Footer-drop{display: none;margin-top: 0;}
    .Footer-friend{display: none;}
    .Footer-copyright {padding: 18px 0;}
    .Footer-copyright .info p {margin-left: 8px;}
    .Footer-copyright .info p, .Footer-copyright .link a {font-size: 12px;line-height: 20px;}
    .Footer-copyright .info, .Footer-copyright .link{width: 100%;justify-content: center;}

    .FooterBlock{display: none;}
    .Footer-wrapper{position: relative;height: auto;opacity: 1 !important;z-index: 9;}

    .Herader-list_title .img{display: none;}
    .Header-navbar li:nth-child(3) .Header-drop{position: static;padding: 0px;}
    .Herader-list li{padding: 0px 4%;}
    .Herader-list li a {margin-bottom: 0px;font-size: 14px;}
    .Herader-list_title {margin-bottom: 0px;}
    .Herader-list{display: block;}
    .Herader-list ul{display: block;}


    .Header-drop_btn{display: none !important;}
    .Header-drop_list .title{position: static;}
    .Header-drop_list{padding-left: 0px;}
    .list-cont.lt1{display: none;}
    .list-cont .list-title.ly2{display: none;}
    .list-cont .list-title.ly3{display: none;}
    .list-cont .list-title{display: none;}
    .Header-drop_list {margin-right: 0px;}
    .Header-drop_list .list2 .list2-muen>li{width: 100%;margin-bottom: 0px;margin-right: 0px;}
    .Header-drop_list:last-child .list2{display: none;}
    .Header-drop_list .list2{margin-top: 0px;}
    .Header-drop_list .list2 .list2-muen>li .list-cont{display: none;}
    .Header-drop-cont>div{height: auto;}
    .Header-drop_mb{display: block;}
    .Header-drop_list .list2 .list2-muen>li{padding-left: 4% !important;}
    .Header-drop_list .list .name{padding-left: 4% !important;font-size: 12px;}
    .Header-drop_mb a{padding-left: 4% !important;}
    .Header-drop_list{margin-top: 0px;}
    .Herader-list_title .text{font-size: 13px;font-weight: 300;}
    .Header-drop a{font-size: 13px;}
    .Header-drop_list .list2 .list2-btn{font-size: 12px;}
    .Header-drop_mb a{font-size: 12px;}
    .Herader-list li a{font-size: 12px;}
    .Header-navclick{float: left;}
    .Header-logo{position: absolute;left: 0px;right: 0px;margin: 0px auto;}
    .Header-apply {width: 100px;}
    .Header-apply {font-size: 14px;}
    .Header-apply span{padding-left: 18px;background: url(../image/yy.png) no-repeat left center/14px auto;}
    .Header_guangao{height: 60px;display: none;}


    .Header-navbar>ul{padding-left: 0px;}

    .Header-drop{border-top: 1px solid rgba(0, 0, 0, .1);}
    .Header-drop_list .list2 .list2-muen{flex-wrap: wrap;}
    .Header-drop_list .list2 .list2-muen li{width: 100%;}
    .Header-drop_mb li{width: 100%;}
.Header-drop{margin-left: 0!important;    transform: none;}
    .Herader-list{display: none;}
    .Header-drop-cont{display: none;}
    .Header-drop_xiala{display: block;}


    .Header-drop_xiala li{}
    .Header-drop_xiala li a{padding: 0px;}
    .Header-drop_xiala li .title{position: relative;border-bottom:none;}
    .Header-drop_xiala li .hide{display: none;}
    .Header-drop_xiala li .title i {display: block !important;width: 12px;height: 55px;font-size: 12px;line-height: 55px;font-style: normal;color: #333;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Header-drop_xiala li .title i::after {content: "\e61f";font-family: "icon";position: absolute;top: 50%;transform: translateY(-50%);right: 0px;}
    .Header-drop_xiala li.active .title i::after{content: "\e61e";}
    .Header-drop_xiala li .hide>a{padding-left: 20px !important;}
    .Header-drop_xiala li{border-bottom: 1px solid rgba(0, 0, 0, .1);}
    .Header-drop_xiala li:last-child{border-bottom: 0px;}

    .Header-drop_xiala li .hide-not{position: relative;}
    .Header-drop_xiala li .hide_list{position: relative;}
    .Header-drop_xiala li .hide_list i {display: block !important;width: 40px;height: 55px;font-size: 12px;line-height: 55px;font-style: normal;color: #333;text-align: center;position: absolute;z-index: 9;right: 0px;top: 0;}
    .Header-drop_xiala li .hide_list i::after {content: "\e61f";font-family: "icon";position: absolute;top: 50%;transform: translateY(-50%);right: 0px;}
    .Header-drop_xiala li .hide_list i.active::after{content: "\e61e";}
    .hide_list a{padding-left: 20px !important;}

    
    .Header-drop_xiala li .title i {width: 12px;height: 50px;font-size: 12px;}

    .hide-not_list a{padding-left: 30px !important;}
    .hide-not_list{display: none;}

    .hide-not{border-bottom: none !important;margin-right: 40px;}
    .hide-not::before{content: "";position: absolute;bottom: 0px;left: 0px;width:calc(100% + 40px);height: 1px;background-color: rgba(0, 0, 0, .1);}
    .hide-not .hide-not_list:last-child{border-bottom: 0px;}
    .Header-drop a{font-size: 12px;}
    .Header-drop_xiala li .hide{border-top: 1px solid rgba(0, 0, 0, .1);}
    .Header-drop_xiala li a{padding-left: 10px;}
    .hide-not_list a.active{background-color: #f7f7f7;}
    .Header-menu{font-size: 15px;}
    .bodyNoDot .Header-drop {left: 0;right: auto;margin: 0 auto;transform: translateX(0);}
.indtrack-item{margin-top: 0;}
.indtrack{padding: 30px 0;}
 .indtrack-search{width: 100%;padding-right: 0;}
    .indtrack-list{width: 100%;padding-left: 0;margin-top: 20px;}
.Header-navbar>ul>li:hover {
    background-color:#fff;
}
.Header-navbar>ul>li:hover a.Header-menu {
    color: #3059DA!important;
}


}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .getConsult{padding: 25px;}
    .getConsult .link{margin-top: 12px;}
    .Footer-items {padding: 25px 0 20px;}
    .Footer-info .contact {margin-top: 15px;}
    .Footer-info .more {margin-top: 15px;}
    .Footer-code{margin-top: 15px;margin-bottom:0;}
    .Footer-copyright {padding: 20px 0;padding-bottom: 40px;}
    .getConsult .name {font-size: 16px;}

    .Header-drop_list .list2 .list2-muen{flex-wrap: wrap;}
    .Header-drop_list .list2 .list2-muen li{width: 100%;}
    .Header-drop_mb li{width: 100%;}

    .Herader-list{display: none;}
    .Header-drop-cont{display: none;}
    .Header-drop_xiala{display: block;}


    .Header-drop_xiala li{}
    .Header-drop_xiala li a{padding: 0px;}
    .Header-drop_xiala li .title{position: relative;border-bottom:none;}
    .Header-drop_xiala li .hide{display: none;}
    .Header-drop_xiala li .title i {display: block !important;width: 12px;height: 55px;font-size: 12px;line-height: 55px;font-style: normal;color: #333;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Header-drop_xiala li .title i::after {content: "\e61f";font-family: "icon";position: absolute;top: 50%;transform: translateY(-50%);right: 0px;}
    .Header-drop_xiala li.active .title i::after{content: "\e61e";}
    .Header-drop_xiala li .hide>a{padding-left: 20px !important;}
    .Header-drop_xiala li{border-bottom: 1px solid rgba(0, 0, 0, .1);}
    .Header-drop_xiala li:last-child{border-bottom: 0px;}

    .Header-drop_xiala li .hide-not{position: relative;}
    .Header-drop_xiala li .hide_list{position: relative;}
    .Header-drop_xiala li .hide_list i {display: block !important;width: 40px;height: 55px;font-size: 12px;line-height: 55px;font-style: normal;color: #333;text-align: center;position: absolute;z-index: 9;right: 0px;top: 0;}
    .Header-drop_xiala li .hide_list i::after {content: "\e61f";font-family: "icon";position: absolute;top: 50%;transform: translateY(-50%);right: 0px;}
    .Header-drop_xiala li .hide_list i.active::after{content: "\e61e";}
    .hide_list a{padding-left: 20px !important;}

    .ComXuan{display: block;z-index: 99999999999;transform: scale(.6);bottom: -30px;right: 0px;}

    .Header-drop_xiala li .hide .hide-not{padding-left: 30px;}

    .getConsult .name{font-size: 15px;}
    .getConsult .contain{width: 100%;}
    .Footer-items {padding: 40px 0 20px;}
    .Footer-info .contact {margin-top: 17px;}
    .Footer-info .contact h6 {margin-top: 8px;}
    .Footer-info .more {margin-top: 0px;}
    .Footer-info .more p{margin-top: 15px;}
    .Footer-code .text{margin-top: 10px;}
    .Footer-copyright .link{margin-top: 10px;}

    .Header-drop_xiala li .title i {width: 32px;height: 55px;font-size: 12px;text-align:right}
  
    .hide-not_list a{padding-left: 30px !important;}
    .hide-not_list{display: none;}

    .hide-not{border-bottom: none !important;margin-right: 40px;}
    .hide-not::before{content: "";position: absolute;bottom: 0px;left: 0px;width:calc(100% + 40px);height: 1px;background-color: rgba(0, 0, 0, .1);}
    .hide-not .hide-not_list:last-child{border-bottom: 0px;}
    .Header-drop a{font-size: 13px;}
    .Header-drop_xiala li .hide{border-top: 1px solid rgba(0, 0, 0, .1);}
    .Header-drop_xiala li a{padding-left: 10px;}
    .hide-not_list{background-color: #f8f8f8;position: relative;}
    /* .hide-not_list:nth-child(3){background-color: #3059DA;} */
    .Header-drop_xiala li:nth-child(2) .hide i{display: none !important;}
    .Header-drop_xiala li:nth-child(3) .hide i{display: none !important;}
    .Header-drop_xiala li:nth-child(2) .hide{background-color: #f8f8f8;}
    .Header-drop_xiala li:nth-child(3) .hide{background-color: #f8f8f8;}
    
    /* .Header-drop_xiala:nth-child(2) li:nth-child(1) .hide{background-color: #f8f8f8;}
    .Header-drop_xiala:nth-child(2) li:nth-child(1) .hide i{display: none !important;} */
    .Header-navbar>ul>li:nth-child(3) .Header-drop_xiala li .hide{background-color: #f8f8f8;}
    
    .Header-navbar>ul>li:nth-child(3) .Header-drop_xiala li .hide i{display: none !important;}
    /* .commonLink::after{opacity: 1;} */
    /* .hide-not_list::before{content: "";position: absolute;left: -4%;width: 100vw;height: 100%;background-color: #f8f8f8;top: 0px;z-index: 2;} */
    .Header-navbar{padding-bottom: 80px;}
    .Header-navbar .drop_xiala.active{border-bottom: 0px;}
    .Header-navbar>ul>li:nth-child(2) .Header-drop_xiala li:last-child .hide_list:last-child a::before{display:none}
    .Header-navbar>ul>li:nth-child(3) .Header-drop_xiala li:last-child .hide_list:last-child a::before{display:none}
.indtrack-search-title {font-size: 20px;}
    .indtrack-search-form input{width: 100%;}
    .indtrack-search-form button{width: 100%;margin-top: 8px;}
    .indtrack-list-cont p{font-size: 12px;}
    .indtrack-list-img img {max-width: 28px;}
    .indtrack-list-img::after {width: 22px;height: 22px;right: -10px;bottom: -8px;}
    .indtrack-list-cont {margin-top: 16px;}
    .indtrack-list-link {height: 90px;}	
.indtrack-search-form input {
font-size: 12px;
}	
.indtrack-search-form button {
    font-size: 16px;
}
 .indtrack-search-form input::placeholder {
        font-size: 14px;
    }
	
}