@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header{width: 100%;position: fixed;z-index: 99999;top: 0;left: 0;background: transparent;user-select: none;transition: all .4s ease;}
.Header.toRun{transform: translateY(-72px);}

.Header>.contain{width: 100%;padding: 0 40px 0 50px;}

.Header-logo{float: left;width: 135px;height: 72px;display: flex;align-items: center;position: relative;z-index: 999;}
.Header-logo img{max-width: 100%;}

.Header-lang{float: right;position: relative;z-index: 999;margin-left: 12px;}
.Header-lang-menu{display: flex;align-items: center;height: 72px;color: #000;transition: color .4s ease;}
.Header-lang-menu span{font-size: 16px;font-family: Arial;}
.Header-lang-menu i{font-size: 22px;margin-right: 4px;}
.Header-lang.active .Header-lang-menu{color: #0f4c81;}
/* 多个语言 Header-lang-more添加class="hasIcon" 就会启用图标 */
.Header-lang-more{display: none;z-index: 9;width: 140px;background: #000;position: absolute;top:calc(100% - 4px);left: 50%;margin-left: -70px;border-top:4px solid #0f4c81;border-radius:5px 5px 0 0;transition: top .4s ease;}
.Header-lang-more:before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 8px 8px;border-color: transparent transparent #0f4c81 transparent;position: absolute;top: -8px;left: 50%;margin: 0 0 0 -8px;}
.Header-lang-more a{display: flex;font-size: 16px;color: #fff;justify-content: center;padding: 10px 0;transition: all .4s ease;}
.Header-lang-more.hasIcon a span{background-repeat: no-repeat;background-position: left center;padding-left: 28px;min-width: 60px;}
.Header-lang-more.hasIcon a.CN span{background-image: url('../images/common/icon-cn.png');}
.Header-lang-more.hasIcon a.FT span{background-image: url('../images/common/icon-ft.png');}
.Header-lang-more.hasIcon a.EN span{background-image: url('../images/common/icon-en.png');}
.Header-lang-more.hasIcon a.DE span{background-image: url('../images/common/icon-de.png');}
.Header-lang-more.hasIcon a.BR span{background-image: url('../images/common/icon-br.png');}
.Header-lang-more.hasIcon a.ES span{background-image: url('../images/common/icon-es.png');}
.Header-lang-more.hasIcon a.FR span{background-image: url('../images/common/icon-fr.png');}
.Header-lang-more.hasIcon a.JP span{background-image: url('../images/common/icon-jp.png');}
.Header-lang-more.hasIcon a.RU span{background-image: url('../images/common/icon-ru.png');}
.Header-lang-more a:hover {color: #fff;background: #0f4c81;}
.Header-lang.active .Header-lang-more{display: block;animation: langInUp .4s ease-out;}
@keyframes langInUp{0% {transform: translateY(20px);opacity: 0.5;}100% {transform: translateY(0);opacity: 1;}}

.Header-search{float: right;}
.Header-search-click{width: 40px;height: 72px;color: #fff;font-size: 20px;cursor: pointer;z-index: 999;transition: color .4s ease;display: flex;align-items: center;justify-content: center;position: relative;}
.Header-search-click::after{content: "\e617";font-family: "icon";}
.Header-search-click.active::after{content: "\e903";font-size: 16px;}
.Header-search-item{display: none;position: absolute;width: 100%;height: 72px;align-items: center;top: 0;left: 0;z-index: 99;text-align: right;}
.Header-search-item .contain{padding-right: 100px;width: 100%;}
.Header-search-item.active{display: flex;}
.Header-search-item input, .Header-search-item button{display: inline-block;vertical-align: middle;}
.Header-search-item input[type="text"]{width: 0px;height: 40px;border-bottom: 1px solid rgba(255, 255, 255, 0.1);font-size: 16px;color: #fff;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;font-size: 20px;color: #fff;background: transparent;cursor: pointer;margin-right: 0;}
.Header-search-item button::after{content: "\e617";font-family: "icon";}
body.bodySearch .Header-navbar{visibility: hidden;opacity: 0;}

.Header-navbar{float: right;margin-right: 28px;visibility: visible;opacity: 1;}
body.PC .Header-navbar{display: block !important;}
.Header-navbar>ul>li{float: left;padding: 0 30px;}
.Header-menu{position: relative;height: 72px;display: flex;align-items: center;font-size: 18px;color: #fff;transition: color .4s ease;}
.Header-menu.noCursor{cursor: default;}
.Header-menu::after{content: "";position: absolute;width: 100%;height: 2px;background: #0f4c81;left: 0;bottom: 0;opacity: 0;transition: all .4s ease;}
.Header-navbar>ul>li:hover .Header-menu::after{opacity: 1;}
.Header-arrow{display: none;}
.Header-drop{display: none;position: absolute;background: #141414;left: 0;width: 100%;top:72px;}
.Header-drop-menu{display: flex;width: 100%;position: relative;flex-wrap: wrap;padding: 24px 0;justify-content: center;}
.Header-drop-menu>a{display: block;text-align: center;transition: all .4s ease;opacity: 0.7;margin-left: 104px;}
.Header-drop-menu>a:first-child{margin-left: 0;}
.Header-drop-menu>a .ico{height: 30px;display: flex;align-items: center;margin: 0 auto 12px;width: 100%;justify-content: center;}
.Header-drop-menu>a .ico img{height: 100%;}
.Header-drop-menu>a .text{font-size: 16px;color: #fff;line-height: 1.14;text-transform: uppercase;}
.Header-drop-menu>a:hover{opacity: 1;}
.Header-navbar>ul>li:last-child .Header-drop-menu{justify-content: flex-end;padding-right: 140px;}
.Header-navbar>ul>li:nth-child(2) .Header-drop-menu{justify-content: flex-end;padding-right: 464px;}


/* 如果需要透明：页面body添加class="Lucency noGap"，样式修改 */
@media all and (min-width:1100px) {
    .noLucency .Header{background: #000;}
    .bodyMouse .Header, .bodySearch .Header{background: #000;}
    .toGap .Container{margin-top: 72px;}
}

.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: #fff;display: block;position: relative;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background: #fff;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);}
}

/* 底部 */
.Footer{width: 100%;background: #000;position: relative;z-index: 9;}
.Footer-items{width: 100%;padding: 98px 0 148px;justify-content: space-between;}
.Footer-info{width: auto;}
.Footer-info .logo{max-width: 135px;}
.Footer-info .text{font-size: 22px;color: #ccc;margin-top: 26px;}
.Footer-code{width: auto;text-align: center;}
.Footer-code .text{font-size: 18px;color: #fff;}
.Footer-code .img{margin-top: 16px;background: #fff;border-radius: 8px;padding: 6px;width: 140px;}
.Footer-code .img img{width: 100%;}
.Footer-navbar{width: 820px;}
.Footer-navbar>ul{justify-content: space-between;}
.Footer-navbar>ul>li{width: auto;position: relative;}
.Footer-menu{font-size: 18px;color: #fff;display: flex;user-select: none;}
.Footer-drop{width: 100%;margin-top: 20px;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop-menu{display: flex;position: relative;width: 100%;}
.Footer-drop-menu>a{user-select: none;}
.Footer-drop-menu>a, .Footer-drop-menu>span{font-size: 16px;padding: 6px 0;color: #999999;display: flex;line-height: 1.24;transition: all .4s ease;font-family: "fmil";}
.Footer-drop-menu>a:hover{color: #fff;}
.Footer-copyright{width: 100%;padding: 0 0 38px;}
.Footer-copyright .info, .Footer-copyright .link{width: 100%;justify-content: center;align-items: center;}
.Footer-copyright .info *, .Footer-copyright .link *{font-size: 16px;color: #ccc;position: relative;}
.Footer-copyright .info a, .Footer-copyright .link a{transition: all .4s ease;}
.Footer-copyright .link a{margin: 0 12px;}
.Footer-copyright .link a::before{content: "";position: absolute;width: 1px;height: 14px;top: 50%;margin-top: -7px;background: #5c5c5c;pointer-events: none;left: -12px;}
.Footer-copyright .link a:first-child:before{display: none;}
.Footer-copyright .info{margin-top: 16px;}
.Footer-copyright .info p{margin-left: 12px;}
.Footer-copyright .info p:first-child{margin-left: 0;}
.Footer-copyright .info a:hover, .Footer-copyright .link a:hover{color: #fff;}

/* 置顶 */
.backTop, .fullPageTop{display: none;right: 40px;bottom: 60px;width: 44px;height: 44px;line-height: 44px;font-size: 24px;color: #0f4c81;text-align: center;border-radius: 4px;position: fixed;cursor: pointer;z-index: 9999;transition: all .4s ease;}
.backTop::after, .fullPageTop::after{content: "\e684";font-family: "icon";}
.backTop:hover, .fullPageTop:hover{background: #0f4c81;color: #fff;}
@media all and (max-width:1590px) {.backTop, .fullPageTop{right: 30px;bottom: 40px;}}
@media all and (max-width:680px) {.backTop, .fullPageTop{right: 8px;bottom: 20px;width: 40px;height: 40px;line-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{max-width: 1000px;position: relative;opacity: 0;}
.popVideo-video{width: 100%;display: flex;justify-content: center;}
.popVideo-video video{max-height: 82vh;}
.popVideo-video iframe{width: 1000px;height: 600px;}
.popVideo-close{width: 40px;height: 40px;right: -40px;top: -40px;line-height: 40px;opacity: 0.7;text-align: center;position: absolute;z-index: 3;font-size: 22px;color: #fff;cursor: pointer;transition: all .6s ease;}
.popVideo-close:hover{opacity: 1;}
.popVideo.active{display: flex;}
.popVideo.active .popVideo-items{animation: popVideRun 1s ease both .4s;}
@keyframes popVideRun {0%{opacity: 0;transform: translateY(-200px);}100%{opacity: 1;transform: translateY(0);}}
@media all and (max-width:1100px) {.popVideo-items{width: 92%;}.popVideo-close{right: -8px;}.popVideo-video iframe{width: 100%;height: 450px;}}
@media all and (max-width:680px) {.popVideo-video iframe{height: 220px;}}

/* 加载效果 */
body.hidden{overflow-x: hidden;overflow-y: hidden;}
.Loading{overflow:hidden;display:flex;justify-content:center;align-items:center;position: fixed;width: 100%;height: 100%;z-index: 999999;background:#fff;transition: all 0.4s ease;transform-origin: center;top: 0;left: 0;}
.Loading.bg-none{background:transparent;}
.Loading:before{content: "";position: absolute;left: 0;top: 0;z-index:9999;width: 100%;height: 100%;background: url("../images/common/L_circle.png") no-repeat center center/cover;transition: transform 1s ease;}
.Loading .text{opacity:1;visibility:visible; position:relative;display: flex;}
.Loading.active .text{opacity:0;visibility:hidden;transition: all .4s ease;}
.Loading .text span{margin-left: 12px;height: 68px;}
.Loading .text span img{max-height: 100%;}
.Loading .text span:first-child{margin-left: 0;}
.Loading .text span:nth-child(odd){animation:LoadingTextDown 1.5s cubic-bezier(.63,.01,.67,0);}
.Loading .text span:nth-child(even){animation:LoadingTextUp 1.5s cubic-bezier(.63,.01,.67,0);}
.Loading.active:before{transform: scale(4);}
.Loading.hidden{display:none;}
@keyframes LoadingTextUp{0%{opacity: 0;;filter:blur(10px);transform: translateY(40px)}60%{opacity: 0;transform: translateY(30px);}100%{opacity: 1;filter:blur(0);transform: translateY(0);}}
@keyframes LoadingTextDown {0%{opacity: 0;filter:blur(10px);transform: translateY(-40px);}60%{opacity: 0;transform: translateY(-30px);}100%{opacity: 1;filter:blur(0);transform: translateY(0);}}
@media all and (max-width:1100px) {.Loading{display: none;}}

/* 中间+共用部分 */
.Container{width: 100%;}
.section{width: 100%;position: relative;overflow: hidden;}
.contain{width: 1540px;margin: 0 auto;}



/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .contain{width: 1400px;}
    .Footer-navbar {width: 720px;}
}

@media all and (max-width:1590px) {
    /* 1440 × (700)  */
    .contain{width: 1200px;}
    .Header-drop-menu>a {margin-left: 90px;}
    .Footer-navbar {width: 600px;}
    .Footer-items {padding: 70px 0 90px;}
    .Header-navbar>ul>li:nth-child(2) .Header-drop-menu{padding-right: 474px;}
}

@media all and (max-width:1430px) {
    /* 1360 */
}

@media all and (max-width:1350px) {
    /* 1280 */
}

@media all and (max-width:1270px) {
    /* 1152 × (700) */
    .Header>.contain {padding: 0 30px 0 40px;}
    .contain{width: 960px;}
    .Header-navbar>ul>li {padding: 0 24px;}
    .Header-drop-menu {padding: 20px 0;}
    .Header-drop-menu>a {margin-left: 70px;}
    .Footer-navbar {width: 440px;}
    .Footer-items {padding: 50px 0 60px;}
    .Footer-drop-menu>a, .Footer-drop-menu>span {max-width: 280px;}
    .Footer-copyright .info {margin-top: 12px;}
    .Header-navbar>ul>li:last-child .Header-drop-menu{padding-right: 124px;}
    .Header-navbar>ul>li:nth-child(2) .Header-drop-menu{padding-right: 434px;}
}

/* ------------------------平板端（开始改变头部底部）-------------------------- */
@media all and (max-width:1100px) {
    /* 1024 横屏 */
    .Header.toRun{transform: translateY(0);}
    body.bodySearch .Header-navbar{visibility: visible;opacity: 1;}
    .contain{width: 92%;}
    .Header{background: #000;}
    .Container{margin-top: 60px;}
    .toGap .Container{margin-top: 60px;}
    .Header>.contain{width: 100%;padding: 0;}
    .Header-logo, .Header-search-click, .Header-lang-menu{height: 60px;}
    .Header-logo{margin-left: 4%;}
    .Header-navclick{display: flex;margin-right: 4%;}
    .Header-lang{margin: 0 12px 0 4px;}
    .Header-lang.active .Header-lang-menu {color: #666;}
    .Header-lang-more{width: 120px;margin-left: -60px;}
    .Header-lang-more a{padding: 6px 0;}
    .Header-search{margin-right: 12px;}
    .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;color: #000;}
    .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: #0f4c81;z-index: 2;color: #fff;}
    .Header-navbar{display: none;position: absolute;width: 100%;margin-right: 0;height: calc(100vh - 60px);top: 60px;left: 0;padding: 20px 0;background: #000;}
    .Header-navbar::before{content: "";position: absolute;width: 100%;height: 1px;top: 0;left: 0;background: rgba(255, 255, 255, 0.2);}
    .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;margin: 0;padding: 0;}
    .Header-navbar.active>ul>li{opacity: 1;transform: translateY(0);}
    .Header-menu{height: 44px;padding: 0 4%;font-size: 16px;}
    .Header-menu::after{display: none;}
    .Header-arrow{display: block;width: 44px;height: 44px;line-height: 44px;transform: rotate(180deg);font-size: 18px;font-style: normal;color: #fff;text-align: center;position: absolute;z-index: 9;right: 0;top: 0;}
    .Header-arrow::after{content: "\e727";font-family: "icon";}
    .Header-arrow.active{transform: rotate(0);}
    .Header-navbar>ul>li:hover .Header-menu{color: #fff;}
    .Header-drop {position: relative;top: 0;left: 0;width: 100%;margin-left: 0;overflow: hidden;}
    .Header-drop-menu>a .text {font-size: 14px;}
    .Header-drop-menu>a {margin-left: 28px;}
    .Header-drop-menu {padding: 18px 0 !important;justify-content: center !important;}
    
    .Footer-items {padding: 40px 0 30px;}
    .Footer-info .text {font-size: 18px;margin-top: 12px;}
    .Footer-info{width: 100%;text-align: center;}
    .Footer-info .logo{margin: 0 auto;}
    .Footer-navbar{width: 100%;margin-top: 12px;text-align: center;}
    .Footer-navbar>ul>li:first-child{display: none;}
    .Footer-navbar>ul>li{width: 100%;}
    .Footer-menu{font-size: 16px;justify-content: center;}
    .Footer-drop {margin-top: 6px;}
    .Footer-drop-menu>a, .Footer-drop-menu>span {max-width: 280px;margin: 0 auto;font-size: 15px;padding: 4px 0;width: 100%;justify-content: center;}
    .Footer-code{width: 100%;text-align: center;margin-top: 10px;}
    .Footer-code .img {margin: 8px auto 0;border-radius: 6px;padding: 6px;width: 120px;}
    .Footer-code .text {font-size: 16px;}
    .Footer-copyright .info *{font-size: 14px;text-align: center;}
    .Footer-copyright .info p:first-child{width: 100%;}
    .Footer-copyright .info p:nth-child(2){margin-left: 0;}
    .Footer-copyright {padding: 0 0 28px;}
    .Footer-copyright .link a{font-size: 12px;margin: 0 6px;}
    .Footer-copyright .link a::before {height: 10px;margin-top: -5px;left: -6px;}
    .Footer-copyright .info {margin-top: 10px;}
}

@media all and (max-width:1000px) {
    /* 720 竖屏 */
}

/* ------------------------手机端-------------------------- */
@media all and (max-width:680px) {
    /* 移动终端 360 适配 */
}
