@charset "utf-8";
/* ====================公共样式========================= */
#cursor{width: 16px;height: 16px;background: #fff;border-radius: 50%;opacity: 0.4;position: fixed;z-index: 999999999;pointer-events: none;transition: 0.2s ease-in-out;transition-property: background, opacity, transform;}
#cursor.hidden {opacity: 0;}
#cursor.hover {opacity: 0.2;transform: scale(4);}
#cursor.active {opacity: 0.6;transform: scale(0.5);}
/* 头部 */
.Header-wrapper{width: 100%;position: absolute;z-index: 999;padding: 0 40px 0 60px;top: 0;left: 0;background: transparent;user-select: none;box-shadow: none;transition: all .4s ease;}
.Header-logo{float: left;width: 58px;height: 130px;display: flex;align-items: center;position: relative;z-index: 9999;}
.Header-logo img{width: 100%;position: absolute;transition: all .4s ease;}
.Header-logo img.s{opacity: 1;}
.Header-logo img.h{opacity: 0;}

.Header-navclick{width: auto;height: 130px;display: flex;float: right;user-select: none;align-items: center;position: relative;z-index: 9999;}
.Header-navclick-btn{position: relative;width: 40px;height: 17px;cursor: pointer;}
.Header-navclick-btn:before {content: '';width: 200%;height: 260%;position: absolute;top: -80%;left: -50%;}
.Header-navclick-btn span{position: absolute;background: #fff;width: 100%;pointer-events: none;right: 0;display: block;height: 3px;right: 0;transition: transform .4s ease,background .4s ease,width .4s ease .4s;}
.Header-navclick-btn span:first-child{top: 0;width: 60%;}
.Header-navclick-btn span:last-child{bottom: 0;width: 100%;}
.Header-navclick-btn:hover span:first-child{transform: translateY(7px);}
.Header-navclick-btn:hover span:last-child{transform: translateY(-7px);}
.Header-navclick-btn.active span{background: #ff7441;transition: transform .4s ease,background .4s ease,width 0s ease;}
.Header-navclick-btn.active span:first-child{transform: translateY(7px) rotate(45deg);width: 100%;}
.Header-navclick-btn.active span:last-child{transform: translateY(-7px) rotate(-45deg);}

.Header-wrap{position: fixed;top: 0;left: 0;width: 100%;height: 100%;z-index: 999;visibility: hidden;pointer-events: none;}
.Header-other{width: 120px;background: #fff;position: absolute;height: 100%;right: 0;top: 0;padding-top: 134px;z-index: 2;}
.Header-other-title{width: 100%;text-align: center;color: #2e2e2e;text-transform: uppercase;line-height: 24px;font-size: 16px;}
.Header-other-title p{line-height: inherit;}
.Header-other-line{width: 56px;margin: 28px auto;height: 1px;position: relative;}
.Header-other-line::after{position: absolute;content: "";width: 100%;height: 100%;background: #aeaeae;top: 0;left: 0;right: 0;margin: 0 auto;}
.Header-other-lang{width: 100%;}
.Header-other-lang a{display: flex;color: #aeaeae;font-size: 16px;align-items: center;justify-content: center;height: 32px;transition: all .4s ease;}
.Header-other-lang a:hover{color: #ff7441;}
.Header-other-lang a.active{color: #2e2e2e;}
.Header-navbar{position: absolute;width: 100%;left: 0;top: 0;background: #ff7441;height: 100%;overflow: hidden;padding-left: 230px;}
.Header-navbar ul{width: 100%;height: 100%;display: flex;flex-wrap: wrap;flex-direction: column;justify-content: center;position: relative;}
.Header-navbar li{display: block;width: 600px;}
.Header-menu{display: flex;align-items: center;height: 84px;width: 100%;font-size: 55px;color: #fff;font-weight: 700;line-height: 1;transition: all .4s ease;position: relative;}
.Header-menu::before{content: "";position: absolute;width: 0;left: 0;background: #fff;height: 6px;top: 50%;margin-top: -3px;transition: all .4s ease;opacity: 0;}
.Header-navbar li:hover .Header-menu{padding-left: 40px;}
.Header-navbar li:hover .Header-menu::before{width: 24px;opacity: 1;}
.Header-menu span{transition: all .4s ease;}
.Header-navbar-bg{position: absolute;width: 100%;height: 100%;top: 0;left: 0;padding: 30px 170px 30px 50px;opacity: .6;}
.Header-navbar-bgmix{position: relative;width: 100%;height: 100%;overflow: hidden;}
.Header-navbar-bg img{width: 100%;height: 100%;object-fit: cover;position: absolute;top: 0;left: 0;transition: all .4s ease;opacity: 0;}
.Header-navbar-bgmix::after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: rgba(198,66,5,.9);transition: all .4s ease;opacity: 0;}
.Header-navbar-bg img.active{animation: HeaderBgRun .6s ease both;}
@keyframes HeaderBgRun {0%{opacity: 0;transform: scale(1.32);}100%{opacity: 1;transform: scale(1);}}
.Header-navbar.hover .Header-navbar-bgmix::after{opacity: 1;}
/* ---- */
body.showDrop .Header-wrap {visibility: visible;pointer-events: auto;}
body.showDrop .Header-logo img.s{opacity: 0;transition: all .4s ease .4s;}
body.showDrop .Header-logo img.h{opacity: 1;transition: all .4s ease .4s;}
/* DH */
.Header-other{transform: translateX(120px);transition: all .3s ease-in;}
body.showDrop .Header-other{transform: translateX(0);}
.Header-navbar{transform: translateX(100%);transition: all .5s ease-in;}
body.showDrop .Header-navbar{transform: translateX(0);}
.Header-menu{opacity: 0;}
body.showDrop .Header-menu{animation: HeaderLiRun 1s ease both;}
@keyframes HeaderLiRun {0%{opacity: 0;transform: translateY(100px);}100%{opacity: 1;transform: translateY(0);}}
.Header-other-title{opacity: 0;transition: all .4s ease 0s;}
body.showDrop .Header-other-title{opacity: 1;transition: all .6s ease .4s;}
.Header-other-line::after{width: 0;transition: all .4s ease 0s;}
body.showDrop .Header-other-line::after{width: 100%;transition: all .6s ease .4s;}
.Header-other-lang{opacity: 0;transform: translateY(30px);transition: all .4s ease 0s;}
body.showDrop .Header-other-lang{opacity: 1;transform: translateY(0);transition: all .6s ease .4s;}
/* -- */
.Header-navbar.hover .Header-menu span{opacity: 0.2;}
.Header-navbar li:hover .Header-menu span{opacity: 1;}
/* 下拉 */
.Header-arrow{display: none;}
.Header-drop{display: none;position: absolute;width: 520px;padding-left: 80px;left: 600px;height: 100%;top: 0;flex-wrap: wrap;flex-direction: column;justify-content: center;}
.Header-drop a{display: flex;width: 100%;align-items: center;height: 70px;font-size: 40px;color: #fff;transition: all .4s ease;opacity: 0.2;}
.Header-drop a:hover{opacity: 1;}

/* 底部 */
.Footer-wrapper{width: 100%;background: #141414;position: relative;z-index: 99;padding-top: 88px;padding-bottom: 66px;}
.Footer-wrapper>div{position: relative;z-index: 4;}
.Footer-mix{display: flex;flex-wrap: wrap;justify-content: space-between;align-items: flex-start;flex-direction: row-reverse;}
.Footer-email{width: 424px;}
.Footer-email .name{display: flex;align-items: center;font-size: 42px;color: #ff7441;}
.Footer-email .name i{width: 38px;height: 34px;margin: 4px 0 0 10px;background: url('../images/common/emailH.svg') no-repeat center/100% auto;}
.Footer-email .text{color: #888;font-size: 14px;line-height: 20px;margin-top: 4px;}
.Footer-email .form{width: 100%;position: relative;margin-top: 4px;}
.Footer-email .form input{width: 100%;background: transparent;height: 42px;border-bottom: 1px solid #313131;font-size: 14px;font-weight: 700;color: #fff;padding-right: 36px;transition: border .4s ease;}
.Footer-email .form input:focus{border-bottom: 1px solid #fff;}
.Footer-email .form input::-webkit-input-placeholder{color: #313131;font-size: 14px;font-weight: 700;}
.Footer-email .form input:-moz-placeholder{color: #313131;font-size: 14px;font-weight: 700;}
.Footer-email .form input::-moz-placeholder{color: #313131;font-size: 14px;font-weight: 700;}
.Footer-email .form input:-ms-input-placeholder{color: #313131;font-size: 14px;font-weight: 700;}
.Footer-email .form button{position: absolute;top: 0;right: 0;height: 100%;width: 22px;background: url('../images/common/lineArr.svg') no-repeat center/100% auto;cursor: pointer;}
.Footer-logo{width: 105px;}
.Footer-logo img{width: 100%;}
/* -- */
.Footer-navbar{width: 1030px;overflow: hidden;user-select: none;margin-top: 50px;}
.Footer-navbar ul{display: flex;justify-content: space-between;flex-wrap: wrap;}
.Footer-navbar li{width: auto;position: relative;}
.Footer-menu{font-size: 17px;color: #fff;font-weight: 700;display: block;transition: all .4s ease;}
.Footer-menu:hover{color: #ff7441;}
.Footer-drop{width: 100%;margin-top: 10px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop a{display: block;font-size: 14px;color: #888;line-height: 1;padding: 7px 0;transition: all .4s ease;}
.Footer-drop a:hover{color: #fff;}
.Footer-arrow{display: none;}
.Footer-link{width: 100%;display: flex;margin-top: 60px;}
.Footer-link a{width: 36px;height: 36px;background: #1b1b1b;border-radius: 50%;padding: 8px;margin-left: 8px;transition: all .4s ease;display: flex;align-items: center;justify-content: center;}
.Footer-link a:first-child{margin-left: 0;}
.Footer-link a img{max-width: 100%;max-height: 100%;}
.Footer-link a:hover{background: #8f8f8f;}
.Footer-copyright{width: 100%;display: flex;flex-wrap: wrap;margin-top: 16px;justify-content: space-between;font-size: 14px;color: #888;}
.Footer-copyright .info{width: auto;}
.Footer-copyright .link{width: auto;}
.Footer-copyright .link a{position: relative;transition: all .4s ease;margin-left: 20px;}
.Footer-copyright .link a::before{content: "";position: absolute;width: 1px;height: 10px;background: #2c2c2c;pointer-events: none;top: 50%;margin-top: -5px;left: -12px;}
.Footer-copyright .link a:first-child{margin-left: 0;}
.Footer-copyright .link a:first-child::before{display: none;}
.Footer-copyright .link a:hover{color: #fff;}
.Footer-wrapper::after{content: "";animation: FooterRun 10s linear infinite;position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background: url('../images/common/Fbg.png') no-repeat right bottom/auto calc(100% - 80px);}
@keyframes FooterRun {0%{background-position: right bottom;}50%{background-position: right 160px bottom;}100%{background-position: right 0 bottom;}}
.Footer-friends{width: 100%;position: relative;padding-left: 114px;margin-top: 16px;}
.Footer-friends span, .Footer-friends a{color: #888;line-height: 24px;font-size: 14px;}
.Footer-friends span{position: absolute;left: 0;top: 0;}
.Footer-friends a{transition: all .4s ease;margin-right: 12px;}
.Footer-friends a:last-of-type{margin-right: 0;}
.Footer-friends a:hover{color: #fff;}

/* 中间+共用部分 */
.Container-wrapper{width: 100%;}
.contain{margin: 0 auto;}
.paddingL{padding-left: 100px;}
.paddingR{padding-right: 100px;}
.paddingLR{padding-left: 100px;padding-right: 100px;}

/*判断年龄*/
.warn{display: none;position: fixed;z-index: 999999;width: 100%;color: #000;font-family:'MiSans-Bold';height: 100%;top: 0;left: 0;background: rgba(0, 0, 0, .85);align-items: center;justify-content: center;}
.warn-contain{width: 664px;background: #fff;border-radius: 10px;padding: 60px 64px;}
.warn-head{width: 100%;}
.warn-head .title{text-align: center;font-size: 30px;font-weight: 700;line-height: 1.1;}
.warn-head .text{font-size: 14px;line-height: 1.52;margin-top: 24px;}
.warn-btn{width: 100%;margin-top: 24px;}
.warn-btn a{display: flex;flex-direction: column;align-items: center;justify-content: center;text-align: center;margin-top: 10px;width: 100%;height: 62px;border-radius: 10px;border: 2px solid #000;font-size: 14px;transition: all .4s ease;}
.warn-btn a p{line-height:1.42}
.warn-btn a:first-child{margin-top: 0;}
.warn-btn a:hover{background: #000;color: #fff;}
.warn-hint{width: 100%;margin-top: 24px;font-size: 14px;}
.warn.active{display:flex;}
@media all and (max-width:640px) {
    .warn-contain {width: 92%;padding: 24px 16px;}
    .warn-head .title {font-size: 24px;}
    .warn-head .text {margin-top: 8px;}
    .warn-btn a {height: 52px;}
    .warn-btn {margin-top: 16px;}
    .warn-hint {margin-top: 16px;}
}

/* 视频弹窗 */
.popVideo{display: none;align-items: center;justify-content: center;position: fixed;z-index: 999999;width: 100%;height: 100%;background: rgba(0,0,0,.8);top: 0;left: 0;}
.popVideo-items{width: 80%;position: relative;padding: 34px 34px;opacity: 0;}
.popVideo-video{width: 100%;overflow: hidden;}
.popVideo-video video{width: 100%;max-height: calc(100vh - 120px);}
.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;}
.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:1599px) {.popVideo-items{width: 76%;}}
@media all and (max-width:1100px) {.popVideo-items{width: 92%;padding: 34px 0;}.popVideo-close{right: 0;background-size: 20px;}.popVideo-video iframe{height: 400px;}}
@media all and (max-width:640px) {.popVideo-video iframe{height: 200px;}}

/* 菜单 */
.commonMenu{position: absolute;height: 100%;top: 0;right: 0;width: 350px;transform: translateX(182px);transition: all .4s ease;z-index: 6;}
.commonMenu-bg{position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 1;}
.commonMenu-bg img{position: absolute;width: 100%;height: 100%;top: 0;left: 0;transition: all .4s ease;opacity: 0;}
.commonMenu-bg::after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;background: rgba(0, 0, 0, .75);}
.commonMenu-bg img.active{opacity: 1;}
.commonMenu-menu{position: relative;z-index: 4;width: 100%;height: 100%;padding: 130px 20px 110px 66px;display: flex;flex-direction: column;justify-content: center;}
.commonMenu-link{width: 100%;display: flex;flex: 1;align-items: center;opacity: 0.5;transition: all .4s ease;}
.commonMenu-link .icon{width: 36px;height: 66px;display: flex;align-items: center;justify-content: center;position: relative;overflow: hidden;}
.commonMenu-link .icon img{max-width: 100%;max-height: 100%;display: none;}
.commonMenu-link .icon svg{fill:none;stroke:#fff;stroke-width:1;position: absolute;}
@media screen and(-ms-high-contrast:active),(-ms-high-contrast:none){.commonMenu-link .icon img{display: block;}.commonMenu-link .icon svg{display: none;}}
.commonMenu-link.link1 .icon svg {width: 180px;left: -72px;top: -46px;}
.commonMenu-link.link2 .icon svg {width: 194px;left: -72px;top: -56px;}
.commonMenu-link.link3 .icon svg {width: 194px;left: -70px;top: -52px;}
.commonMenu-link.link4 .icon svg {width: 194px;left: -78px;top: -52px;}
.commonMenu-link.link5 .icon svg {width: 178px;left: -70px;top: -48px;}
.commonMenu-link .text{font-size: 23px;color: #fff;margin-left: 28px;display: flex;align-items: center;opacity: 0;}
.commonMenu-link:hover{opacity: 1;}
.commonMenu.active{transform: translateY(0);}
.commonMenu.active .commonMenu-link .text{animation: commonMenuRun .6s ease both;}
@keyframes commonMenuRun {0%{opacity: 0;transform: translateY(20px);}100%{opacity: 1;transform: translateX(0);}}
.commonMenu-more{position: absolute;padding-right: 68px;background: #ff7d41;width: 100%;display: flex;align-items: center;height: 58px;justify-content: center;z-index: 4;left: 0;bottom: 0;}
.commonMenu-more .text{font-size: 12px;color: #fff;text-transform: uppercase;opacity: 0;transition: all .4s ease;position: relative;z-index: 2;}
.commonMenu-more .arrow{width: 54px;height: 100%;background: url('../images/index/commonMenuArr.png') no-repeat center;position: absolute;top: 0;left: 56px;transition: all .4s ease;z-index: 2;}
.commonMenu-more::after{content: "";position: absolute;width: 100%;height: 0;background: #fff;left: 0;top: 0;transition: all .4s ease;}
.commonMenu.active .commonMenu-more .text{opacity: 1;transition: opacity .4s ease .3s, color .4s ease;}
.commonMenu.active .commonMenu-more .arrow{left: calc(100% - 70px);}
.commonMenu-more:hover .text{color: #ff7d41;}
.commonMenu-more:hover .arrow{background-image: url('../images/index/commonMenuArrH.png');}
.commonMenu-more:hover::after{top: auto;bottom: 0;height: 100%;}



/* -------------------------2k端--------------------------- */
@media all and (min-width:2000px) and (max-width:3000px) {
    /* 1920设计稿 2560分辨率【所有宽度 × (2560÷1920 ≈ 1.5)】【电脑缩放1920÷2560 = 75%】 */
    #cursor{width: 24px;height: 24px;}
    .Header-wrapper{padding: 0 60px 0 90px;}
    .Header-logo{width: 87px;height: 195px;}
    .Header-navclick{height: 195px;}
    .Header-navclick-btn{width: 60px;height: 25px;}
    .Header-navclick-btn span{height: 5px;}
    .Header-navclick-btn:hover span:first-child{transform: translateY(10px);}
    .Header-navclick-btn:hover span:last-child{transform: translateY(-10px);}
    .Header-navclick-btn.active span:first-child{transform: translateY(10px) rotate(45deg);}
    .Header-navclick-btn.active span:last-child{transform: translateY(-10px) rotate(-45deg);}
    .Header-other{width: 180px;padding-top: 201px;}
    .Header-other-title{line-height: 36px;font-size: 24px;}
    .Header-other-line{width: 84px;margin: 42px auto;height: 2px;}
    .Header-other-lang a{font-size: 24px;height: 48px;}
    .Header-navbar{padding-left: 345px;}
    .Header-navbar li{width: 900px;}
    .Header-menu{height: 126px;font-size: 82px;}
    .Header-menu::before{height: 8px;margin-top: -4px;}
    .Header-menu:hover{padding-left: 60px;}
    .Header-menu:hover::before{width: 36px;}
    .Header-navbar-bg{padding: 45px 255px 45px 75px;}
    .Header-other{transform: translateX(180px);}
    @keyframes HeaderLiRun {0%{opacity: 0;transform: translateY(150px);}100%{opacity: 1;transform: translateY(0);}}
    .Header-other-lang{transform: translateY(45px);}
    .Header-drop{width: 780px;padding-left: 120px;left: 900px;}
    .Header-drop a{height: 105px;font-size: 60px;}
    .Footer-wrapper{padding-top: 132px;padding-bottom: 99px;}
    .Footer-email{width: 636px;}
    .Footer-email .name{font-size: 63px;}
    .Footer-email .name i{width: 57px;height: 51px;margin: 6px 0 0 15px;}
    .Footer-email .text{font-size: 21px;line-height: 30px;margin-top: 6px;}
    .Footer-email .form{margin-top: 6px;}
    .Footer-email .form input{height: 63px;border-bottom: 2px solid #313131;font-size: 21px;padding-right: 54px;}
    .Footer-email .form input:focus{border-bottom: 2px solid #fff;}
    .Footer-email .form input::-webkit-input-placeholder{font-size: 21px;}
    .Footer-email .form input:-moz-placeholder{font-size: 21px;}
    .Footer-email .form input::-moz-placeholder{font-size: 21px;}
    .Footer-email .form input:-ms-input-placeholder{font-size: 21px;}
    .Footer-email .form button{width: 33px;}
    .Footer-logo{width: 157px;}
    .Footer-navbar{width: 1545px;margin-top: 75px;}
    .Footer-menu{font-size: 25px;}
    .Footer-drop{margin-top: 15px;}
    .Footer-drop a{font-size: 21px;padding: 11px 0;}
    .Footer-link{margin-top: 90px;}
    .Footer-link a{width: 54px;height: 54px;padding: 12px;margin-left: 12px;}
    .Footer-copyright{margin-top: 24px;font-size: 21px;}
    .Footer-copyright .link a{margin-left: 30px;}
    .Footer-copyright .link a::before{width: 2px;height: 15px;margin-top: -7px;left: -18px;}
    .Footer-wrapper::after{background-size: auto calc(100% - 120px);}
    @keyframes FooterRun {0%{background-position: right bottom;}50%{background-position: right 240px bottom;}100%{background-position: right 0 bottom;}}
    .paddingL{padding-left: 150px;}
    .paddingR{padding-right: 150px;}
    .paddingLR{padding-left: 150px;padding-right: 150px;}
    .popVideo-items{position: relative;padding: 51px 51px;opacity: 0;}
    .popVideo-video video{max-height: calc(100vh - 180px);}
    .popVideo-video iframe{height: 750px;}
    .popVideo-close{width: 45px;height: 45px;background-size: 36px auto;}
    @keyframes popVideRun {0%{opacity: 0;transform: translateY(-300px);}100%{opacity: 1;transform: translateY(0);}}
    .commonMenu{width: 480px;transform: translateX(228px);}
    .commonMenu-menu{padding: 195px 30px 165px 99px;}
    .commonMenu-link .icon{width: 54px;height: 99px;}
    .commonMenu-link.link1 .icon svg {width: 270px;left: -108px;top: -69px;}
    .commonMenu-link.link2 .icon svg {width: 291px;left: -108px;top: -84px;}
    .commonMenu-link.link3 .icon svg {width: 291px;left: -105px;top: -79px;}
    .commonMenu-link.link4 .icon svg {width: 291px;left: -117px;top: -78px;}
    .commonMenu-link.link5 .icon svg {width: 267px;left: -105px;top: -72px;}
    .commonMenu-link .text{font-size: 34px;}
    @keyframes commonMenuRun {0%{opacity: 0;transform: translateY(30px);}100%{opacity: 1;transform: translateX(0);}}
    .commonMenu-more{padding-right: 102px;height: 87px;}
    .commonMenu-more .text{font-size: 18px;}
    .commonMenu-more .arrow{width: 81px;left: 84px;}
    .commonMenu.active .commonMenu-more .arrow{left: calc(100% - 105px);}
}

/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .paddingL{padding-left: 80px;}
    .paddingR{padding-right: 80px;}
    .paddingLR{padding-left: 80px;padding-right: 80px;}
    .Header-navbar {padding-left: 180px;}
}

@media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .Header-menu {font-size: 40px;height: 68px;}
    .Footer-wrapper {padding-top: 70px;padding-bottom: 54px;}
    .Header-navbar {padding-left: 140px;}
    .Header-navbar li {width: 500px;}
    .Header-drop {width: 480px;padding-left: 50px;left: 500px;}
    .Header-drop a {height: 64px;font-size: 36px;}
}

@media all and (max-width:1439px) {
    /* 1360 */
}

@media all and (max-width:1359px) {
    /* 1280 */
    .Header-drop {padding-left: 30px;}
}

@media all and (max-width:1279px) {
    /* 1152 × (700) */
    .Header-wrapper {padding: 0 40px;}
    .paddingL{padding-left: 50px;}
    .paddingR{padding-right: 50px;}
    .paddingLR{padding-left: 50px;padding-right: 50px;}
    .Header-menu {font-size: 32px;height: 58px;}
    .Header-navbar li {width: 440px;}
    .Header-drop {width: 390px;padding-left: 30px;left: 440px;}
    .Header-drop a {height: 58px;font-size: 30px;}
    .Header-navbar-bg {padding: 30px 150px 30px 30px;}
    .commonMenu-menu {padding: 130px 16px 110px 34px;}
    .commonMenu-link .text {font-size: 20px;margin-left: 20px;}
    .commonMenu{width: 290px;}
    .commonMenu-more .text{display: none;}
    .commonMenu-more .arrow{left: 30px;background-position: center !important;}
    .commonMenu.active .commonMenu-more .arrow{left: calc(70% - 70px);}
}

@media all and (max-width:1151px) {
    /* 1024 */
    .Footer-navbar{width: 100%;}
    .Header-navbar {padding: 0 180px 0 120px;}
    .Header-navbar ul{display: block;padding-top: 160px;}
    .Header-navbar li{position: relative;width: 100%;}
    .Header-menu{height: 100px;animation: none !important;opacity: 1;}
    .Header-arrow{display: block;width: 80px;height: 100px;position: absolute;z-index: 9;right: 0;top: 0;background: url('../images/common/arrDW.svg') no-repeat center /36px auto;}
    .Header-arrow.active{transform: rotate(180deg);}
    .Header-drop {position: relative;top: 0;left: 0;width: 100%;padding: 0;}
    .Header-drop a{opacity: 0.6;}
    .Header-navbar-bg{display: none;}
    .commonMenu-link .icon svg{display: none;}
    .commonMenu-link .icon img{display: block;}
    .Header-navbar li:hover .Header-menu{padding-left: 0;}
    .Header-menu::before{display: none;}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .paddingL{padding-left: 40px;}
    .paddingR{padding-right: 40px;}
    .paddingLR{padding-left: 40px;padding-right: 40px;}
    .Header-navbar {padding: 0 140px 0 40px;}
    .Header-menu{height: 80px;}
    .Header-arrow{height: 80px;}
    .Footer-wrapper {padding-top: 40px;padding-bottom: 38px;}
    .Footer-navbar {margin-top: 36px;}
    .Footer-navbar li{width: 100% !important;}
    .Footer-menu {height: 40px;line-height: 40px;position: relative;font-size: 16px;}
    .Footer-arrow{display: block;width: 44px;height: 40px;position: absolute;z-index: 9;right: 0;top: 0;background: url('../images/common/arrDW.svg') no-repeat center /18px auto;}
    .Footer-arrow.active{transform: rotate(180deg);}
    .Footer-drop{display: none;margin-top: 0;}
    .Footer-link {margin-top: 30px;justify-content: center;}
    .Footer-copyright .info, .Footer-copyright .link{width: 100%;}
    .Footer-copyright{text-align: center;}
    .commonMenu{position: static;transform: translateX(0);width: 100%;}
    .commonMenu-menu {margin: 0;padding: 20px 40px 60px;display: flex;flex-wrap: wrap;flex-direction: row;justify-content: flex-start;}
    .commonMenu-link .text{opacity: 1;}
    .commonMenu-link{opacity: .7;width: 33.3333%;flex: none;padding: 20px 0;}
    .commonMenu-more {padding-right: 0;}
    .commonMenu-more .text {display: block;opacity: 1;}
    .commonMenu-more .arrow {position: static;margin-left: 20px;}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .paddingL{padding-left: 4%;}
    .paddingR{padding-right: 4%;}
    .paddingLR{padding-left: 4%;padding-right: 4%;}
    .Header-wrapper {padding: 0 4%;}
    .Header-logo {height: 72px;}
    .Header-navclick {height: 72px;}
    .Header-navclick-btn {width: 32px;height: 15px;}
    .Header-navclick-btn.active span{background: #fff;}
    .Header-navclick-btn:hover span:first-child{transform: translateY(0);}
    .Header-navclick-btn:hover span:last-child{transform: translateY(0);}
    .Header-navclick-btn.active span:first-child{transform: translateY(6px) rotate(45deg);width: 100%;}
    .Header-navclick-btn.active span:last-child{transform: translateY(-6px) rotate(-45deg);}
    .Header-other {width: 100%;background: transparent;height: auto;padding: 0 4%;display: flex;top: auto;bottom: 30px;align-items: center;justify-content: space-between;}
    .Header-other-title, .Header-other-lang{width: auto;}
    .Header-other-title{color: #ddd;}
    .Header-other-line::after {background: #ddd;}
    .Header-other-line {width: 90px;margin: 0 auto;}
    .Header-other-lang a{color: #ddd !important;height: 28px;}
    .Header-other-lang a.active {color: #fff !important;}
    .Header-menu {font-size: 22px;height: 50px;}
    .Header-arrow{height: 50px;width: 40px;background-size: 20px auto;}
    .Header-menu::before {height: 4px;margin-top: -2px;}
    .Header-navbar {padding: 88px 4% 110px;}
    .Header-navbar ul{padding: 0;overflow-x: hidden;overflow-y: auto;-webkit-overflow-scrolling: touch;height: 100%;}
    .Header-drop a {height: 32px;font-size: 18px;}
    .Footer-wrapper {padding-top: 36px;padding-bottom: 30px;}
    .Footer-mix {flex-direction: row;}
    .Footer-logo{margin: 0 auto;}
    .Footer-email{width: 100%;margin-top: 16px;}
    .Footer-email .name {font-size: 28px;}
    .Footer-email .name i {width: 28px;height: 24px;margin: 2px 0 0 8px;}
    .Footer-navbar {margin-top: 24px;}
    .Footer-link {margin-top: 24px;}
    .Footer-copyright .link a {margin-left: 16px;}
    .Footer-copyright .link a::before {left: -10px;}
    .Footer-copyright .link{margin-top: 8px;}
    .Header-navclick-btn:before {width: 150%;left: -22%;}
    .commonMenu-menu {padding: 16px 4% 48px;}
    .commonMenu-link {padding: 8px 0;width: 50%;}
    .commonMenu-link .text {font-size: 16px;margin-left: 10px;}
    .commonMenu-more{height: 44px;}
}