@charset "utf-8";

/* ====================公共样式========================= */

/* 头部 */

.Header-wrapper{width: 100%;position: fixed;z-index: 99999;top: 0;left: 0;background: #fff;user-select: none;box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);transition: all .4s ease;}



.Header-logo{float: left;height: 88px;display: flex;align-items: center;position: relative;z-index: 999;}

.Header-logo img{height: auto;}

.Header-logo img.s{display: block;}

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





.Header-search{float: right;}

.Header-search-click{width: 40px;height: 88px;cursor: pointer;background: url('../images/common/search.svg') no-repeat center /26px auto;position: relative;z-index: 999;}

.Header-search-click.active{background: url('../images/common/close.svg') no-repeat center/20px auto;}

.Header-search-item{display: none;position: absolute;width: 100%;height: 88px;line-height: 88px;top: 0;left: 0;z-index: 99;text-align: right;}

.Header-search-item .contain{padding-right: 60px;}

.Header-search-item.active{display: block;}

.Header-search-item input, .Header-search-item button{display: inline-block;vertical-align: middle;}

.Header-search-item input[type="text"]{width: 0px;height: 40px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);font-size: 16px;color: #747474;background: transparent;}

.Header-search-item.active input[type="text"]{animation: HeaderSearch 0.8s ease both;}

@keyframes HeaderSearch{0%{width: 0;}100%{width: 520px;}}

.Header-search-item button{width: 50px;height: 40px;background: url('../images/common/search.svg') no-repeat center /26px auto;cursor: pointer;margin-right: 0;}

body.onSearch .Header-navbar{visibility: hidden;opacity: 0;}



.Header-navbar{float: left;margin-left:155px;visibility: visible;opacity: 1;}

body.PC .Header-navbar{display: block !important;}
.Header-navbar li{float: left;margin: 0 28px;position: relative;z-index: 9;}
.Header-navbar li:last-child{margin-right: 0;}
.Header-navbar li:first-child{margin-left: 0;}
.Header-menu{position: relative;height: 88px;display: flex;align-items: center;font-size: 17px;color: #747474;transition: color .4s ease;}
.Header-menu::before{content: "";width: 100%;left: 0;opacity: 0;height: 4px;position: absolute;bottom: 0;background: #016fdf;transition: all .4s ease;}
.Header-navbar li.active .Header-menu{color: #016fdf;}
.Header-navbar li.active .Header-menu::before,.Header-navbar li:hover .Header-menu::before{opacity: 1;}
.Header-arrow{display: none;}
.Header-drop{display: none;position: absolute;background: #fff;top: 88px;left: 50%;width: 200px;margin-left: -100px;}
.Header-drop a{display: block;width: 100%;height: 54px;line-height: 54px;font-size: 16px;color: #666;text-align: center;transition: all .4s ease;}
.Header-drop a.active, .Header-drop a:hover{color: #016fdf;}
.Header-drop-mix.Header-drop{width: 756px;margin-left: -168px;padding: 50px 68px 70px 134px;}
.Header-drop-ul{display: flex;}
.Header-drop-menu{display:flex;align-items: center;font-size: 18px;color: #333;font-weight: 700;position: relative;padding-bottom: 14px;z-index: 1;}
.Header-drop-menu::before{content: '';width: 28px;height: 1px;background-color: #2970d6;position: absolute;left: 0;bottom: 0;z-index: 3;}
.Header-drop-menu::after{content: '';width: 100%;height: 1px;background-color: #f2f2f2;position: absolute;left: 0;bottom: 0;z-index: 2;}
.Header-drop-menu i{display: flex;justify-content: center;align-items: center;width: 28px;height: 28px;border-radius: 50%;background-color: #2970d6;margin-right: 14px;}
.Header-drop-menu i img{max-width: 88%;max-height: 88%;object-fit: cover;}
.Header-drop-li+.Header-drop-li{margin-left: 100px;}
.Header-drop-submenu {margin-top: 15px;}
.Header-drop-submenu a{text-align: left;height: 45px;line-height: 45px;}

.Header-drop-show.Header-drop{width: 860px;padding: 50px 74px 88px;}
.Header-drop-show .Header-drop-li{width: calc(100% - 448px);padding-right: 65px;}
.Header-drop-show .Header-drop-submenu{display: flex;justify-content: space-between;flex-wrap: wrap;width: 100%;}
.Header-drop-show .Header-drop-submenu a{width: 50%;}
.Header-drop-img{width: 448px;max-height: 222px;overflow: hidden;border-radius: 5px;}
.Header-drop-img img{width: 100%;object-fit: cover;}


.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: #777;display: block;position: relative;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background: #777;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);}
}



/* 透明 */

body.NoGap .Container-wrapper{margin-top: 0;}
body.Lucency .Header-wrapper{background: transparent;box-shadow: none;}
body.Lucency .Header-logo img.s{display: none;}
body.Lucency .Header-logo img.h{display: block;}
body.Lucency .Header-menu,body.Lucency .Header-navbar li.active .Header-menu{color: #fff;}
body.Lucency .Header-search-click{background-image: url('../images/common/searchW.svg');}
body.Lucency .Header-lang-menu span{color: #fff;background-image: url('../images/common/langW.svg');}
body.Lucency .Header-menu::before{background:#fff}

/* -- */

body.Lucency.Mouse .Header-wrapper{background: #fff;box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);}
body.Lucency.Mouse .Header-logo img.s{display: block;}
body.Lucency.Mouse .Header-logo img.h{display: none;}
body.Lucency.Mouse .Header-menu{color: #747474;}
body.Lucency.Mouse .Header-menu::before{background: #016fdf;}
body.Mouse .Header-navbar li:hover .Header-menu{color: #016fdf !important}
body.Lucency.Mouse .Header-search-click{background-image: url('../images/common/search.svg');}
body.Lucency.Mouse .Header-lang-menu span{color: #747474;background-image: url('../images/common/lang.svg');}

/* -- */

body.Lucency.onSearch .Header-wrapper{background: #fff;box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);}
body.Lucency.onSearch .Header-logo img.s{display: block;}
body.Lucency.onSearch .Header-logo img.h{display: none;}
body.Lucency.onSearch .Header-menu{color: #747474;}
body.Lucency.onSearch .Header-search-click.active{background-image: url('../images/common/close.svg');}
body.Lucency.onSearch .Header-lang-menu span{color: #747474;background-image: url('../images/common/lang.svg');}


body.Mouse .Header-navbar li.active .Header-menu{color: #016fdf}
body.Mouse .Header-navbar li.active .Header-menu::before{background: #016fdf}



/* 底部 */

.Footer-wrapper{width: 100%;background: #0b2241;position: relative;z-index: 4;}
.Footer-items{width: 100%;padding: 90px 0 85px;display: flex;flex-wrap: wrap;justify-content: space-between;}
.Footer-navbar{width: 964px;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: #fff;font-weight: 700;display: block;line-height: 1;}
.Footer-cont h4{font-size: 14px;color: #99aabe;line-height: 1;margin-bottom: 8px;}
.Footer-hotline,.Footer-adress{margin-top: 20px;}
.Footer-hotline span{font-size: 20px;color: #fff;}
.Footer-adress p{font-size: 14px;color: #fff;line-height: 20px;}
.Footer-drop{width: 100%;margin-top: 22px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop a{display: block;font-size: 14px;color: #99aabe;line-height: 1;padding: 10px 0;transition: all .4s ease;}
.Footer-drop a:hover{color: #fff;}
.Footer-copyright{width: 100%;border-top: 1px solid #1e3350;padding: 22px 0;}
.Footer-copyright h6, .Footer-copyright p{color: #cdcdcd;line-height: 18px;}
.Footer-copyright h6{font-size: 14px;float: left;}
.Footer-copyright p{font-size: 14px;float: right;}
.Footer-copyright p a{display: inline-block;vertical-align: middle;position: relative;font-size: 14px;transition: all .4s ease;padding: 0 12px;}
.Footer-copyright p a:hover{color: #fff;}



.Footer-cont-desc{width: 100%;margin-top: 34px;}
.Footer-cont-desc h4{line-height: 1;color: #fff;font-weight: 700;font-size: 26px;}
.Footer-cont-desc p{font-size: 14px;color: #cdcdcd;line-height: 1;margin-top: 16px;}
.FooterCode{display: flex;width: 100%;font-size: 0;margin-top: 36px;}
.FooterCode span, .FooterCode a{display: inline-block;vertical-align: middle;position: relative;}
.FooterCode span{font-size: 14px;color: #cdcdcd;font-weight: 500;margin-right: 12px;}


.FooterCode a{display: flex;justify-content: center;align-items: center;width: 36px;height: 36px;border-radius: 50%;background-color: #233956;margin: 0 5px;vertical-align: middle;position: relative;}
.FooterCode a>img{width: 20px;}
.FooterCode-img{display: none;width: 152px;height: 152px;padding: 6px;position: absolute;bottom: 34px;left: 50%;margin-left: -76px;background: #fff;border-radius: 4px;}
.FooterCode-img::after{content: "";display: block;width: 0px;height: 0px;border: 8px solid transparent;border-top-color: #fff;position: absolute;bottom: -16px;left: 50%;margin-left: -8px;}
.FooterCode-img img{width: 100%;height: 100%;object-fit: cover;}
.FooterCode a:hover .FooterCode-img{display: block;animation: FooterCode .6s ease-in-out both;}
@keyframes FooterCode{0%{transform: translateY(-14px);}100%{transform: translateY(0);}}



/* 置顶 */

.backTop {display: none;right: 40px;bottom: 60px;width: 44px;height: 44px;border-radius: 4px;position: fixed;cursor: pointer;z-index: 9999; background: #016fdf url('../images/common/top.svg') no-repeat center/22px auto;}
@media all and (max-width:1599px) {.backTop {right: 30px;bottom: 40px;}}
@media all and (max-width:640px) {.backTop {right: 8px;bottom: 20px;width: 40px;height: 40px;background-size: 20px auto;}}


/* 中间+共用部分 */
.Container-wrapper{width: 100%;margin-top: 88px;}
.contain-1600, .contain-1400, .contain{margin: 0 auto;}
.contain-1600{width: 1600px;}
.contain-1400{width: 1400px;}
.contain{width: 1280px;}



.privacy{width: 100%;padding: 100px 0;}
.privacy-title{width: 100%;text-align: center;}
.privacy-title h2{font-size: 36px;color: #333;font-weight: 500;}
.privacy-intro{width: 100%;margin-top: 48px;}
.privacy-intro p{font-size: 18px;color: #666;line-height: 30px;}
/* 在线咨询 */

.consult{width: 100%;background-color: #0d4591;padding: 50px 0;position: relative;z-index: 1;overflow: hidden;}
/* .consult::after{content: '';width: 747px;height: 219px;background: url('../images/index/consult_Bj.png') no-repeat center;position: absolute;right: 0;left: 0;bottom:-68px;margin: 0 auto;z-index: -1;} */
.consult-intro{width: 100%;text-align: center;position: relative;z-index: 6;}
.consult-intro h2{font-size: 26px;color: #fff;font-weight: 700;margin-bottom: 16px;}
.consult-intro a{display: flex;justify-content: center;align-items: center;width: 124px;height: 40px;margin: 0 auto; border: 1px solid #fff;border-radius: 4px;font-size: 14px;color: #fff;transition: all .4s ease;}
.consult-intro a:hover{background: linear-gradient(to right,#3077e0,#68399b);border: none;}
.consult i{position: absolute;right: 0;left: 0;bottom: -652px;margin: 0 auto; display: inline-block;width: 800px;height: 800px;border-radius: 50%;background-color: rgba(12, 80, 154, 1);}
.consult i::after{content: '';width: 400px;height:400px;border-radius: 50%;background-color: rgba(12, 80, 154, 1);position: absolute;left: 50%;top: 40px;margin-left: -200px;z-index: 3;}
.consult i{animation: reldotsRing 2.5s linear infinite 0.6s;}
.consult i::after{animation: reldotsRing 2.5s linear infinite 0s;}
@keyframes reldotsRing {from {transform: scale(0);opacity: 1;}to {transform: scale(1);opacity: 0;}}


.cirleBox{position: absolute;right: 0;left: 0;bottom: -732px;margin: 0 auto; display: inline-block;width: 800px;height: 800px;border-radius: 50%;}
.circle,.circle1,.circle2,.circle3{animation: cirUp 3s linear infinite;width: 300px;height: 300px;border-radius: 50%;background: rgba(12, 80, 154, 0.85);border: 1px solid rgba(12, 80, 154, 0.9);position: absolute;left: 50%;margin-left: -150px;opacity: 0;}
/* .circle1,.circle2,.circle3{animation:cirUp 3s infinite linear;}
.circle1{animation-delay: 1s;z-index: 3;}
.circle2{animation-delay: 2s;z-index: 2;}
.circle3{animation-delay: 3s;z-index: 1;}
@keyframes cirUp{
    0%{transform: scale(1);opacity: 0.95;}
    25%{transform: scale(1.2);opacity: 0.75;}
    50%{transform: scale(1.4);opacity: 0.5;}
    75%{transform: scale(1.6);opacity: 0.25;}
    100%{transform: scale(1.8);opacity: 0.05;}
} */
.circle3{display: none;}
.circle {animation-delay: 0s;}
.circle1 {animation-delay: 1s;}
.circle2 {animation-delay: 2s;}
@keyframes cirUp{0%{opacity:0;transform:scale(.1)}5%{opacity:1}to{opacity:0;transform:scale(2.4)}}



/* 视频弹窗 */
.popVideo{display: none;opacity: 0;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;display: none;padding: 34px 34px 0;}
.popVideo-video{width: 100%;}
.popVideo-video video{width: 100%;}
.popVideo-video iframe{width: 100%;height: 500px;}
.popVideo-close{width: 30px;height: 30px;position: absolute;right: 0;top: 0;z-index: 3;background: url('../images/common/closeW.svg') no-repeat center/24px auto;cursor: pointer;opacity: .7;transition: all .6s ease;}
.popVideo-close:hover{opacity: 1;}
@media all and (max-width:1100px) {.popVideo-items{width: 92%;padding: 34px 0 0;}.popVideo-close{right: 0;}.popVideo-video iframe{height: 400px;}}
@media all and (max-width:640px) {.popVideo-video iframe{height: 200px;}}

/* -------------------------PC端--------------------------- */

@media all and (max-width:1700px) {

    /* 1600 × (900) */

    .contain-1600{width: 1400px;}

}



@media all and (max-width:1599px) {

    /* 1440 × (700)  */

    .contain-1600, .contain-1400{width: 1200px;}

    .contain{width: 1080px;}

    .Header-drop-show.Header-drop{margin-left: -430px;}



    .Footer-navbar{width: 860px;}

    .Footer-items {padding: 80px 0 68px;}

}



@media all and (max-width:1439px) {

    /* 1360 */

}



@media all and (max-width:1359px) {

    /* 1280 */

}



@media all and (max-width:1279px) {

    /* 1152 × (700) */

    .contain-1600, .contain-1400{width: 960px;}

    .contain{width: 880px;}

    .Header-navbar li {margin: 0 12px;}



    .Footer-items {padding: 60px 0 50px;}

    .Footer-navbar {width: 700px;}

    .FooterCode a {margin: 0 2px;}


    .privacy{padding:80px 0;}
    .privacy-title h2{font-size: 30px;}
    .privacy-intro{margin-top: 48px;}

    .consult-intro h2{font-size: 20px;}

}



@media all and (max-width:1151px) {

    /* 1024 */

}





/* ------------------------手机端-------------------------- */

@media all and (max-width:1000px) {

    /* 平板设备 720 适配 */

    body.onSearch .Header-navbar{visibility: visible;opacity: 1;}

    .contain-1600, .contain-1400, .contain{width: 92%;}

    .Container-wrapper{margin-top: 60px;}

    .Header-wrapper .contain{width: 100%;}

    .Header-wrapper::after{content: "";width: 100%;height: 1px;position: absolute;background: rgba(0, 0, 0, 0.1);left: 0;bottom: 0;}

    .Header-logo, .Header-search-click, .Header-lang-menu{height: 60px;}
    .Header-logo img{max-height: 44px;}

    .Header-navclick{display: flex;}

    .Header-lang{margin: 0 12px 0 4px;}

    .Header-lang-more{width: 120px;margin-left: -60px;top: 60px;}

    .Header-lang-more a{padding: 6px 0;}

    .Header-navbar{display: none;position: absolute;width:100%;margin-left: 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-menu::before{display: none;}

    .Header-arrow{display: block;width: 44px;height: 44px;position: absolute;z-index: 9;right: 0;top: 0;background: url('../images/common/arrD.svg') no-repeat center /18px auto;}

    .Header-arrow.active{transform: rotate(180deg);}

    .Header-navbar li:hover .Header-menu{color: #747474 !important;}

    .Header-navbar li.active .Header-menu{color: #016fdf !important;}

    .Header-drop {position: relative;top: 0;left: 0;width: 100%;margin-left: 0;overflow: hidden;padding: 8px 0;}

    .Header-drop a {height: 34px;line-height: 34px;text-align: left;padding: 0 4%;}

    .Header-drop-mix.Header-drop{width: 100%;padding:20px 4%;margin-left: 0;}
    .Header-drop-li+.Header-drop-li{margin-left: 60px;}
    .Header-drop-submenu a{padding: 0;}
    .Header-drop-show.Header-drop {margin-left: 0;width: 100%; padding: 30px 4% 38px;}

    .Header-search-item {display: none;width: 100%;line-height: normal;height: 45px;top: 60px;border-bottom: 1px solid rgba(0, 0, 0, 0.1);padding: 0;background: #fff;}

    .Header-search-item .contain {padding-right: 0;}

    .Header-search-item input[type="text"]{width: 100%;height: 44px;padding: 0 50px 0 4%;border-bottom: none;}

    .Header-search-item.active input[type="text"] {animation: none;}

    .Header-search-item button{position: absolute;right: 0;top: 0;width: 44px;height: 46px;top: -1px;background: #016fdf url('../images/common/searchW.svg') no-repeat center /26px auto !important;z-index: 2;}

    .Header-search-click.active {background-image: url('../images/common/close.svg') !important;}

    .Header-search-click {background-image: url('../images/common/search.svg') !important;}



    .Footer-wrapper .contain-1400 {width: 100%;}

    .Footer-items{padding: 32px 0;display: block;}

    .Footer-navbar{width: 100%;}

    .Footer-navbar li{width: 100% !important;}

    .Footer-menu{font-size: 16px;}

    .Footer-menu {height: 40px;line-height: 40px;padding: 0 4%;position: relative;}

    .Footer-menu::after{content: "";width: 44px;height: 40px;position: absolute;z-index: 2;right: 0;top: 0;background: url('../images/common/arrDW.svg') no-repeat center /18px auto;}

    .Footer-menu.active::after{transform: rotate(180deg);}

    .Footer-drop a{padding: 8px 4%;}

    .Footer-drop{display: none;margin-top: 0;}

    .Footer-mix{width: 100%;padding: 0 4%;margin-bottom: 28px;}

    .FooterCode {margin-top: 20px;}

    .Footer-copyright {padding: 20px 0;text-align: center;}

    .Footer-copyright h6{width: 100%;margin-bottom: 8px;}

    .Footer-copyright p{width: 100%;}


    .privacy{padding:60px 0;}
    .privacy-title h2{font-size: 28px;}
    .privacy-intro{margin-top: 38px;}

    .consult-intro h2{font-size: 18px;}

}

@media all and (max-width:640px) {

    /* 移动终端以上 360 适配 */

    .consult-intro a{width: 98px;height: 38px;}

    .consult-intro h2{font-size: 16px;}

    .Header-drop-ul{flex-wrap: wrap;}
    .Header-drop-li{width: 100%;}
    .Header-drop-li+.Header-drop-li {margin-left: 0px;margin-top: 20px;}
    .Header-drop-show.Header-drop { padding: 12px 4% 24px;}
    .Header-drop-show .Header-drop-li {width: 100%;padding-right: 0; }
    .Header-drop-img{width: 100%;margin-top: 20px;}

    .privacy{padding:40px 0;}
    .privacy-title h2{font-size: 24px;}
    .privacy-intro{margin-top: 28px;text-align: justify;}
    .privacy-intro p{font-size: 16px;line-height: 28px;}

}