
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper{width: 100%;position: fixed;z-index: 99999;top: 0;left: 0;background: #fff;transition: top .3s linear;user-select: none;box-shadow: 0 10px 10px 0px rgba(141, 183, 237, 0.1);}

.HeaderBar{width: 100%;background: #f3f7fa;position: relative;z-index: 99;}
.HeaderBar .contain-padding{padding: 0;}
.HeaderBar-tele{float: left;height: 50px;line-height: 50px;font-size: 14px;color: #999;}
.HeaderBar-tele a{font-size: 16px;font-family: Arial}
.HeaderBar-call{display: flex;align-items: center;justify-content: center;width: 180px;height: 50px;background: #00b1a0;float: right;user-select: none;}
.HeaderBar-call span{font-size: 14px;color: #fff;padding-left: 24px;background: url('../image/call.png') no-repeat left center;}
.HeaderBar-lang{float: right;position: relative;user-select: none;}
.HeaderBar-lang-menu{display: flex;align-items: center;justify-content: center;width: 180px;height: 50px;background: #bce2d7;float: right;cursor: pointer;}
.HeaderBar-lang-menu span{font-size: 14px;color: #fff;padding-right: 24px;position: relative;}
.HeaderBar-lang-menu span::after{width: 14px;height: 100%;content: "";position: absolute;right: 0;top: 0;background: url('../image/arrowWhite.svg') no-repeat right center/13px auto;}
.HeaderBar-lang-drop{display: none;z-index: 4;width: 106px;border-radius: 8px;padding: 10px;box-shadow: 0 0 6px 2px rgba(20, 23, 40, 0.2);background: #fff;position: absolute;top: 46px;left: 50%;margin-left: -53px;}
.HeaderBar-lang-drop::before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 6px 6px;border-color: transparent transparent #fff transparent;position: absolute;top: -6px;left: 50%;margin-left: -6px;}
.HeaderBar-lang-drop a{display: flex;align-items: center;width: 100%;height: 34px;border-radius: 4px;font-size: 14px;color: #636363;padding: 0 12px;transition: all .4s ease;}
.HeaderBar-lang-drop a:hover{background: #00b1a0;color: #fff;}
.HeaderBar-lang.active .HeaderBar-lang-drop{display: block;animation: langInUp .4s ease-out;}
@keyframes langInUp{0% {transform: translateY(20px);opacity: 0.5;}100% {transform: translateY(0);opacity: 1;}}
.HeaderBar-search{float: right;margin-right: 16px;position: relative;}
.HeaderBar-search-click{width: 40px;height: 50px;cursor: pointer;background: url('../image/search.svg') no-repeat center /24px auto;position: relative;}
.HeaderBar-search-click.active{background: url('../image/close.svg') no-repeat center/18px auto;}
.HeaderBar-search-item{display: none;position: absolute;width: 288px;height: 50px;align-items: center;top: 0;right: 44px;justify-content: flex-end;}
.HeaderBar-search-item form{width: 0%;position: relative;}
.HeaderBar-search-item.active{display: flex;}
.HeaderBar-search-item input[type="text"]{width: 100%;height: 30px;background: transparent;border-bottom: 2px solid #8db7ed;font-size: 14px;color: #666;padding-left: 32px;}
.HeaderBar-search-item.active form{animation: HeaderBarSearch 0.8s ease both;}
@keyframes HeaderBarSearch{0%{width: 40px;}100%{width: 100%;}}
.HeaderBar-search-item button{width: 28px;height: 28px;background: url('../image/searchBlue.svg') no-repeat left center/24px auto;cursor: pointer;position: absolute;left: 0;top: 0;z-index: 4;}

.HeaderBar-language{display: flex;align-items: center;justify-content: center;font-size: 14px;color: #fff;width: 150px;height: 50px;background: #a1d5c6;float: right;user-select: none;}
.HeaderBar-language p a:hover{color: #00b1a0;}
.HeaderBar-phone{display: flex;flex-direction: column;justify-content: center;text-align: center;width: 150px;height: 50px;background: #edcfab;float: right;user-select: none;color: #fff;}
.HeaderBar-phone h6{font-size: 16px;font-weight: 700;}
.HeaderBar-phone p{font-size: 20px;transform: scale(0.5);line-height: 0.5;}

.Header-online{float: right;position: relative;user-select: none;height: 96px;display: flex;align-items: center;margin-left: 30px;}
.Header-online-menu{display: flex;align-items: center;justify-content: center;width: 156px;height: 50px;background: #00b1a0;float: right;cursor: pointer;}
.Header-online-menu span{font-size: 14px;color: #fff;padding-right: 24px;position: relative;}
.Header-online-menu span::after{width: 14px;height: 100%;content: "";position: absolute;right: 0;top: 0;background: url('../image/arrowWhite.svg') no-repeat right center/13px auto;}
.Header-online-drop{display: none;z-index: 4;width: 166px;border-radius: 12px;padding: 8px;box-shadow: 0 0 6px 2px rgba(20, 23, 40, 0.2);background: #fff;position: absolute;top: 70px;left: 50%;margin-left: -83px;}
.Header-online-drop::before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 6px 6px;border-color: transparent transparent #fff transparent;position: absolute;top: -6px;left: 50%;margin-left: -6px;}
.Header-online-drop a{display: flex;align-items: center;justify-content: center;width: 100%;height: 40px;border-radius: 4px;overflow: hidden;font-size: 14px;color: #636363;padding: 0 12px;transition: all .4s ease;position: relative;}
.Header-online-drop a::after{content: "";position: absolute;width: 100%;height: 1px;background: #ccefec;left: 0;bottom: 0;}
.Header-online-drop a:last-child:after{display: none;}
.Header-online-drop a:hover{background: #00b1a0;color: #fff;}
.Header-online.active .Header-online-drop{display: block;animation: langInUp .4s ease-out;}
@keyframes langInUp{0% {transform: translateY(20px);opacity: 0.5;}100% {transform: translateY(0);opacity: 1;}}

.HeaderMix{width: 100%;}
.Header-logo{float: left;height: 96px;display: flex;align-items: center;position: relative;}
.Header-logo img{height: auto;}

.Header-navbar{float: right;}
body.PC .Header-navbar{display: block !important;}
.Header-navbar li{float: left;padding: 0 30px;position: relative;z-index: 2;}
.Header-menu{position: relative;height: 96px;display: flex;align-items: center;font-size: 16px;color: #363636;transition: color .4s ease;}
.Header-navbar li:hover .Header-menu, .Header-navbar li.active .Header-menu{color: #00b1a0;}
.Header-menu::before{content: "";width: 100%;left: 0;opacity: 0;height: 4px;position: absolute;bottom: 0;background: #00b1a0;transition: all .4s ease;}
.Header-arrow{display: none;position: absolute;right: 20px;width: 12px;height: 12px;background: url('../image/arrow.svg') no-repeat center/12px auto;top: 50%;margin-top: -6px;}
.Header-navbar li:hover .Header-arrow, .Header-navbar li.active .Header-arrow{background-image: url('../image/arrowBlue.svg');}
.Header-drop{display: none;position: absolute;background: #fff;top: 96px;left: 0;width: calc(100% + 50px);padding: 18px 0 48px;min-height: 330px;}
.Header-drop a{display: block;width: 100%;padding-left: 30px;height: 44px;line-height: 44px;font-size: 14px;color: #636363;transition: all .4s ease;position: relative;z-index: 2;}
.Header-drop a.active, .Header-drop a:hover{color: #00b1a0;}
.Header-drop::after{content: "";position: absolute;width: 8000px;height: 100%;background: #fff;left: -4000px;top: 0;box-shadow: 0 10px 10px 0px rgba(141, 183, 237, 0.1);}
.Header-drop::before{content: "";position: absolute;width: calc(100% - 50px);height: 6px;top: -6px;left: 0;background: #00b1a0;}

.Header-navclick{display: none;width: 26px;height: 60px;cursor: pointer;float: right;user-select: none;align-items: center;}
.Header-navclick span{width: 100%;height: 2px;background: #666;display: block;position: relative;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background: #666;display: block;left: 0;width: 100%;transition: all .2s linear;}
.Header-navclick span:before{top: -8px;}
.Header-navclick span:after{top: 8px;}
.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(8px) rotate(0);transform: translateY(8px) rotate(0);}
    100% {-moz-transform: translateY(8px) rotate(45deg);transform: translateY(8px) rotate(45deg);}
}
@-webkit-keyframes buttonAnimationBefore {
    0% {-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0);}
    50% {-webkit-transform: translateY(8px) rotate(0);transform: translateY(8px) rotate(0);}
    100% {-webkit-transform: translateY(8px) rotate(45deg);transform: translateY(8px) 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(8px) rotate(0);-ms-transform: translateY(8px) rotate(0);-webkit-transform: translateY(8px) rotate(0);transform: translateY(8px) rotate(0);}
    100% {-moz-transform: translateY(8px) rotate(45deg);-ms-transform: translateY(8px) rotate(45deg);-webkit-transform: translateY(8px) rotate(45deg);transform: translateY(8px) rotate(45deg);}
}
@-moz-keyframes buttonAnimationAfter {
    0% {-moz-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}
    50% {-moz-transform: translateY(-8px) rotate(0);transform: translateY(-8px) rotate(0);}
    100% {-moz-transform: translateY(-8px) rotate(-45deg);transform: translateY(-8px) rotate(-45deg);}
}
@-webkit-keyframes buttonAnimationAfter {
    0% {-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0);}
    50% {-webkit-transform: translateY(-8px) rotate(0);transform: translateY(-8px) rotate(0);}
    100% {-webkit-transform: translateY(-8px) rotate(-45deg);transform: translateY(-8px) 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(-8px) rotate(0);-ms-transform: translateY(-8px) rotate(0);-webkit-transform: translateY(-8px) rotate(0);transform: translateY(-8px) rotate(0);}
    100% {-moz-transform: translateY(-8px) rotate(-45deg);-ms-transform: translateY(-8px) rotate(-45deg);-webkit-transform: translateY(-8px) rotate(-45deg);transform: translateY(-8px) 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);}
}

/* 底部 */
.Footer-wrapper{width: 100%;background: #fff;position: relative;z-index: 4;}
.Footer-items{width: 100%;padding: 100px 0 140px;border-bottom: 1px solid #d7d7d7;}
.Footer-info{width: 458px;float: left;}
.Footer-info-logo{width: 100%;}
.Footer-info-cont{width: 100%;margin-top: 40px;}
.Footer-info-cont h2{font-size: 18px;color: #363636;font-weight: 500;margin-bottom: 12px;}
.Footer-info-cont p{font-size: 16px;color: #363636;font-weight: 300;line-height: 28px;}
.Footer-info-cont p b{font-weight: 500;}
.Footer-navbar{width: 680px;float: right;overflow: hidden;user-select: none;}
.Footer-navbar ul{display: flex;flex-wrap: wrap;justify-content: space-between;}
.Footer-navbar li{width: auto;}
.Footer-menu{font-size: 18px;color: #363636;font-weight: 500;display: block;}
.Footer-drop, .Footer-code{width: 100%;margin-top: 12px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop a{display: block;font-size: 16px;color: #363636;line-height: 1;padding: 8px 0;transition: all .4s ease;}
.Footer-drop a:hover{color: #363636;}
.Footer-code img{width: 124px;margin-top: 8px;}
.Footer-copyright{width: 100%;padding: 40px 0 50px;text-align: center;}
.Footer-copyright p{font-size: 0;width: 100%;color: #363636;font-weight: 300;}
.Footer-copyright a, .Footer-copyright span{display: inline-block;vertical-align: middle;font-size: 14px;margin: 0 18px;transition: all .4s ease;}
.Footer-copyright a:hover{color: #00b1a0;}

/* 中间+共用部分 */
body.HD .Header-wrapper{top: -50px;}
.HeaderBlank{width: 100%;height: 146px;background: #f5f7fa;}
body.HomePage .HeaderBlank{background: #f2fafd;}

.Container-wrapper{width: 100%;}
.contain-padding{width: 100%;padding: 0 120px;}
.contain{width: 1400px;margin: 0 auto;}
.Backtop{display: none;position: fixed;right: 68px;bottom: 130px;cursor: pointer;user-select: none;z-index: 99;width: 50px;height: 50px;background: url('../image/toTop.png') no-repeat center/100%;border-radius: 50%;}

.Tocall{width: 100%;overflow: hidden;padding: 104px 0;background-size: cover;background-repeat: no-repeat;background-position: center;}
.Tocall-cont{max-width: 604px;margin: 0 auto;text-align: center;}
.Tocall-cont h2{font-size: 36px;color: #fff;font-weight: 700;line-height: 1;}
.Tocall-cont p{font-size: 20px;color: #fff;font-weight: 300;line-height: 30px;margin: 36px 0 68px;}
.Tocall-cont a{display: flex;align-items: center;margin: 0 auto;justify-content: center;background: #fff;color: #00b1a0;border-radius: 8px;font-size: 18px;width: 210px;height: 60px;font-weight: 500;transition: all .4s ease;}
.Tocall-cont a:hover{box-shadow: 0 0 20px 6px rgba(141, 183, 237, 0.4);}

.TocallPop{position: fixed;z-index: 999991;width: 100%;height: 100%;top: 0;left: 0;background: rgba(0, 0, 0, 0.75);display: none;align-items: center;justify-content: center;}
.TocallPop.active{display: flex;}
.TocallPop-contain{width: 760px;position: relative;opacity: 0;}
.TocallPop.active .TocallPop-contain{animation: tocallRun 0.6s ease both;}
@keyframes tocallRun {0%{opacity: 0;transform: scale(0.6);}100%{opacity: 1;transform: scale(1);}}
.TocallPop-close{position: absolute;cursor: pointer;width: 40px;transition: all .6s ease;height: 40px;background: url('../image/closeWhite.svg') no-repeat center/19px auto;right: -40px;top: -50px;}
.TocallPop-close:hover{background-size: 22px auto;}
.TocallPop-title{width: 100%;background: #01b1a0;color: #fff;padding: 24px 0;text-align: center;}
.TocallPop-title h4{font-size: 24px;font-weight: 500;line-height: 1;}
.TocallPop-list{width: 100%;padding: 70px 66px 78px;background: #fff url('../image/TocallSd.png') no-repeat right top/auto 100%;overflow: hidden;}
.TocallPop-ul{margin-top: -34px;}
.TocallPop-link{display: flex;width: 276px;overflow: hidden;margin-top: 34px;height: 55px;align-items: center;justify-content: center;position: relative;font-size: 16px;color: #565656;font-weight: 500;transition: all .4s ease;}
.TocallPop-link span{position: relative;z-index: 6;}
.TocallPop-link:nth-child(2n+1){float: left;}
.TocallPop-link:nth-child(2n){float: right;}
.TocallPop-link::before, .TocallPop-link::after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.TocallPop-link::before{background: url('../image/TocallQq.png') no-repeat top left/100% 100%;}
.TocallPop-link::after{background: url('../image/TocallQqH.png') no-repeat top left/100% 100%;opacity: 0;transition: all .4s ease;}
.TocallPop-link:hover{color: #fff;}
.TocallPop-link:hover::after{opacity: 1;}


/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain-padding{padding: 0 100px;}
    .Header-navbar li {padding: 0 24px;}
    .Header-online{margin-left: 24px;}
    .Header-drop a{padding-left: 24px;}
}

@media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .contain-padding{padding: 0 80px;}
    .contain{width: 1200px;}
    .Header-navbar li {padding: 0 16px;}
    .Header-online{margin-left: 16px;}
    .Header-arrow{right: 16px;}
    .Header-drop a {padding-left: 16px;height: 38px;line-height: 38px;}
    .Header-drop {top: 96px;padding: 16px 0 40px;min-height: 286px;}
    .Header-drop{width: calc(100% + 60px);}
    .Header-drop::before{width: calc(100% - 60px);}

    .Footer-items {padding: 80px 0 100px;}
    .Footer-navbar{width: 620px;}
    .Backtop{right: 40px;}

    .Tocall {padding: 88px 0;}
    .Tocall-cont h2 {font-size: 32px;}
    .Tocall-cont p {margin: 28px 0 44px;}
    .Tocall-cont a {width: 190px;height: 54px;}
}

@media all and (max-width:1439px) {
    /* 1360 */
    .Header-navbar li {padding: 0 14px;}
    .Header-online{margin-left: 14px;}
    .Header-arrow{right: 14px;}
    .Header-drop a {padding-left: 14px;}
    .Header-drop{width: calc(100% + 66px);}
    .Header-drop::before{width: calc(100% - 66px);}
    .Header-online-menu{width: 140px;}
    .Header-online-drop {width: 160px;margin-left: -80px;}
}

@media all and (max-width:1359px) {
    /* 1280 */
    .contain-padding{padding: 0 40px;}
}

@media all and (max-width:1279px) {
    /* 1152 × (700) */
    .contain{width: 940px;}
    .Header-navbar li {padding: 0 8px;}
    .Header-arrow{right: 8px;}
    .Header-online{margin-left: 8px;}
    .Header-drop a {padding-left: 8px;}
    /* .Header-navbar li.Header-menu-drop .Header-menu {padding-right: 16px;} */
    .Header-drop{width: calc(100% + 66px);}
    .Header-drop::before{width: calc(100% - 66px);}
    .Header-online-menu{width: 120px;}

    .Footer-items {padding: 68px 0 80px;}
    .Footer-info {width: 300px;}
    .Footer-navbar {width: 580px;}
    .Footer-info-cont {margin-top: 32px;}
    .Footer-copyright {padding: 34px 0 40px;}

    .Tocall {padding: 70px 0;}
    .Tocall-cont h2 {font-size: 28px;}
    .Tocall-cont p {margin: 20px 0 36px;}
}

@media all and (max-width:1151px) {
    /* 1024 */
    .HeaderBar-call{width: 150px;}
    .HeaderBar-lang-menu{width: 150px;}
    .Header-navbar li {padding: 0 4px;}
    .Header-arrow{right: 4px;}
    .Header-online{margin-left: 6px;}
    .Header-drop a {padding-left: 4px;}
    .Header-menu{font-size: 15px;}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    body.HD .Header-wrapper{top: -40px;}
    body.HD .Header-navbar{height: calc(100vh - 60px);}

    .contain{width: 92%;}
    .contain-padding{padding: 0 4%;}

    .HeaderBlank{height: 100px;}

    .HeaderBar-call{width: 60px;height: 40px;}
    .HeaderBar-call span{padding-left: 0;background: none;font-size: 12px;}
    .HeaderBar-lang-menu{width: 60px;height: 40px;}
    .HeaderBar-lang-menu span{padding-right: 0;font-size: 12px;}
    .HeaderBar-lang-menu span::after{display: none;}
    .HeaderBar-lang-drop {width: 80px;padding: 6px;top: 40px;margin-left: -40px;}
    .HeaderBar-lang-drop a{height: 28px;font-size: 12px;padding: 0;justify-content: center;}
    .HeaderBar-tele {height: 40px;line-height: 40px;font-size: 12px;}
    .HeaderBar-tele a{font-size: 12px;font-weight: 700;}
    .HeaderBar-search {margin-right: 0;position: static;}
    .HeaderBar-search-click{height: 40px;position: absolute;right: 0;top: 0;background-color: #f3f7fa;}
    .HeaderBar-search-item {width: calc(100% - 40px);height: 40px;right: 40px;background: #f3f7fa;}
    .HeaderBar-search-item input[type="text"]{height: 40px;padding-left: 40px;}
    .HeaderBar-search-item button{height: 40px;width: 40px;background-position: center;}
    .HeaderBar-language {font-size: 13px;width: 50%;height: 40px;float: left;padding-top: 2px;}
    .HeaderBar-phone {width: 50%;height: 40px;float: left;}
    .HeaderBar-phone h6 {font-size: 13px;line-height: 1;}
    .HeaderBar-phone p {font-size: 12px;transform: scale(1);line-height: 1;}
    .HeaderBar{padding-right: 40px;}

    .Header-online-menu span {padding-right: 0;}
    .Header-online-menu span::after{display: none;}
    .Header-online{height: 60px;margin: 0 8px 0 0;}
    .Header-online-menu{width: 76px;height: 32px;border-radius: 4px;}
    .Header-online-drop{top: 46px;}

    .HeaderMix .contain-padding{padding: 0;}
    .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 - 100px);top: 100px;left: 0;padding: 16px 0 20px;background: #fff;border-top: 1px solid 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 li{display: block;width: 100%;opacity: 0;transform: translateY(32px);transition: all .4s ease;padding: 0;}
    .Header-navbar.active li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 44px;padding: 0 4%;font-size: 16px;}
    .Header-arrow{display: block;width: 44px;height: 44px;position: absolute;z-index: 2;right: 0;top: 0;background: url('../image/arrow.svg') no-repeat center /16px auto;margin: 0;}
    .Header-arrow.active{transform: rotate(180deg);}
    .Header-navbar li:hover .Header-menu{color: #363636;}
    .Header-navbar li.active .Header-menu{color: #00b1a0;}
    .Header-drop::before, .Header-drop::after{display: none !important;}
    .Header-drop {position: relative;top: 0;left: 0;width: 100%;margin-left: 0;overflow: hidden;padding: 10px 0;min-height: auto;background: #f3f7fa;}
    .Header-drop a {height: 34px;line-height: 34px;text-align: left;padding: 0 4%;}

    .Footer-items{padding: 36px 0;}
    .Footer-items .contain {width: 100%;}
    .Footer-info{width: 100%;padding: 0 4%;}
    .Footer-info-cont {margin-top: 20px;}
    .Footer-info-cont h2 {margin-bottom: 8px;}
    .Footer-navbar{width: 100%;margin-top: 16px;}
    .Footer-navbar li{width: 100% !important;}
    .Footer-menu {height: 34px;line-height: 34px;padding: 0 4%;position: relative;font-size: 16px;}
    .Footer-menu::after{content: "";width: 44px;height: 34px;position: absolute;z-index: 2;right: 0;top: 0;background: url('../image/arrow.svg') no-repeat center /16px auto;}
    .Footer-menu.active::after{transform: rotate(180deg);}
    .Footer-drop a{padding: 7px 4%;}
    .Footer-drop{display: none;margin-top: 0;background: #f3f7fa;padding: 8px 0;}
    .Footer-navbar li.Footer-navbar-code{margin-top: 12px;}
    .Footer-navbar-code .Footer-menu{text-align: center;}
    .Footer-navbar-code .Footer-menu::after{display: none;}
    .Footer-code{width: 100%;text-align: center;margin-top: 0;}
    .Footer-code img {margin-top: 2px;}
    .Footer-copyright {padding: 16px 0 20px;}
    .Footer-copyright a, .Footer-copyright span{line-height: 20px;margin: 0;}
    .Footer-copyright span{display: block;width: 100%;margin-top: 4px;}

    .Backtop{position: fixed;right: 4%;bottom: 20px;}

    .TocallPop-contain{width: 92%;}
    .TocallPop-close {right: -10px;top: -40px;}
    .TocallPop-list {padding: 50px 40px 60px;}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .Tocall-cont h2 {font-size: 24px;}
    .Tocall-cont p {font-size: 16px;line-height: 26px;margin: 16px 0 20px;}
    .Tocall-cont a {width: 160px;height: 46px;}
    .Tocall {padding: 40px 0;}
    .TocallPop-title h4 {font-size: 18px;}
    .TocallPop-title {padding: 16px 0;}
    .TocallPop-list {padding: 32px 20px 40px;}
    .TocallPop-ul {margin-top: -20px;}
    .TocallPop-link {width: 222px;margin: 20px auto 0;height: 44px;float: none !important;}

    .Footer-info-cont p {font-size: 14px;line-height: 24px;}
}