@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper{width: 100%;position: fixed;z-index: 999999;top: 0;left: 0;user-select: none}
.Header-wrapper.color{background: #fff;box-shadow: 12px 0 10px rgba(0, 0, 0, 0.1);}
.Header-wrapper.white{background: #fff;box-shadow: 12px 0 10px rgba(0, 0, 0, 0.1);}
.header{width: 1800px;margin: 0 auto}

.Header-logo{float: left;height: 100px;display: flex;align-items:center;position: relative;z-index: 9999;}
.Header-logo img{height: auto;}
.Header-wrapper.color .logo2,.Header-logo .logo2{display: block}
.Header-wrapper.color .logo1,.Header-logo .logo2{display: none}
.Header-wrapper.white .logo2,.Header-logo .logo2{display: block}
.Header-wrapper.white .logo1,.Header-logo .logo2{display: none}

.Header-lang{float: right;position: relative;z-index: 9999;margin-left: 12px;}
.Header-lang-menu{display: flex;align-items: center;height: 100px;}
.Header-lang-menu span{display: block;padding-left: 26px;background: url('../images/common/lang.svg') no-repeat left center /20px auto;line-height: 22px;font-size: 14px;color: #777;font-family: Arial;}
.Header-lang.active .Header-lang-menu span{background-image: url('../images/common/langHover.svg');color: #015198;}
/* 多个语言 */
.Header-lang-more{display: none;z-index: 4;width: 160px;box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);background: #fff;position: absolute;top: 100px;left: 50%;margin-left: -100px;}
.Header-lang-more:before{content: "";display: block;width: 0px;height: 0px;border-style: solid;border-width: 0 8px 8px;border-color: transparent transparent #efefef transparent;position: absolute;top: -8px;left: 50%;margin: 0 0 0 -8px;}
.Header-lang-more a{display: block;font-size: 16px;color: #666;text-align: center;padding: 10px 0;}
.Header-lang-more a span{display: inline-block;}
.Header-lang-more a:hover {color: #fff;background: #015198;}
.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: 100px;cursor: pointer;background: url('../images/common/searchColor.svg') no-repeat center /26px auto;position: relative;z-index: 9999;}
.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: 100px;line-height: 100px;top: 0;left: 0;background: transparent;z-index: 999;text-align: right;}
.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 #fff;font-size: 16px;color: #fff;background: unset}
.Header-wrapper.color .Header-search-item input[type="text"]{color: #666;border-color: #666}
.Header-wrapper.white .Header-search-item input[type="text"]{color: #666;border-color: #666}
.Header-search-item input::placeholder{color: #fff}
.Header-wrapper.color .Header-search-item input::placeholder{color: #666}
.Header-wrapper.color .Header-search-click.active{background: url('../images/common/closeHover.svg') no-repeat center/20px auto}
.Header-wrapper.white .Header-search-click.active{background: url('../images/common/closeHover.svg') no-repeat center/20px auto}
.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/searchColor.svg') no-repeat center /26px auto;cursor: pointer;margin-right: 0;}
.Header-search-item button:hover{background-image: url('../images/common/searchHover.svg');}

.Header-navbar{float: right;margin-right: 60px;}
body.PC .Header-navbar{display: block !important;}
body.PC .Header-navbar.none{display: none!important}
.Header-navbar li{float: left;margin: 0 30px;position: relative;z-index: 2;}
.Header-navbar li:last-child{margin-right: 0;}
.Header-navbar li:first-child{margin-left: 0;}
.Header-menu{position: relative;height: 100px;display: flex;align-items: center;font-size: 17px;color: #fff;transition: all .4s ease;}
.Header-wrapper.white .Header-menu{color: #666;}
.Header-menu::before{content: "";width: 100%;left: 0;opacity: 0;height: 4px;position: absolute;bottom: 0;background: #32b9ff;transition: all .4s ease;}
.Header-navbar li:hover .Header-menu, .Header-navbar li.active .Header-menu{color: #32b9ff;}
.Header-navbar li.active .Header-menu::before{opacity: 1;}

.Header-arrow{display: none;}
.Header-drop{display: none;position: absolute;background: rgba(255,255,255,.95);top: 88px;left: 50%;width: 172px;margin-left: -85px;z-index: 999}
.Header-wrapper.color .Header-drop{background:#e5edf5}
.Header-navbar li:not(:first-child) .Header-menu:after{content:"";width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:0 solid #fff;position:absolute;bottom:12px;left:50%;transform:translateX(-50%);opacity:0;transition:all .4s ease}
.Header-navbar li:not(:first-child) .Header-menu.on:after{opacity:1;border-bottom:10px solid #fff}
.Header-wrapper.color li:not(:first-child) .Header-menu.on:after{border-bottom:10px solid rgba(1,81,152,.1)}
.Header-drop a{display: block;width: 100%;height: 50px;line-height: 50px;font-size: 15px;color: #444;text-align: center;transition: all .4s ease;}
.Header-drop a.active, .Header-drop a:hover{background: #1061a8;color: #fff;}

.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-wrapper.color .Header-navclick span,.Header-wrapper.color .Header-navclick span:before,.Header-wrapper.color .Header-navclick span:after{background: #666}
.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);}
}

/* color-header */
.Header-wrapper.color .Header-menu{color: #666}
.Header-wrapper.color .Header-search-click{color: #666;background: url(../images/common/search.svg) no-repeat center /26px auto}
.Header-wrapper.white .Header-search-click{color: #666;background: url(../images/common/search.svg) no-repeat center /26px auto}
/* 底部 */
.Footer-wrapper{width: 100%;background: #f5f5f5;position: relative;z-index: 4;}
.Footer-item{width: 100%;padding: 50px 0 60px;background: url("../images/common/footer-bg.jpg")no-repeat center 0 /cover}
.Footer-item .contain{display: flex}
.Footer-navbar{width: 39%;overflow: hidden;user-select: none;margin-left: 70px}
.Footer-navbar li{float: left;width: 25%}
.Footer-menu{font-size: 20px;color: #015198;font-weight: 700;display: block;height: 46px;}
.Footer-drop{width: 100%;}
body.PC .Footer-drop{display: block !important;}
.Footer-drop a{display: block;font-size: 15px;color: #888;line-height: 1;padding: 8px 0;transition: all .4s ease;}
.Footer-drop a:hover{color: #015198}
.Footer-copyright{width: 100%;background: #015198;}
.Footer-copyright .contain{padding: 30px 0;border-top: 1px solid #e3e3e3;}
.Footer-copyright h6, .Footer-copyright p{color: #fff;line-height: 18px;}
.Footer-copyright h6{font-size: 15px;float: left;}
.Footer-copyright p{font-size: 15px;float: right;}
.Footer-info{margin-left: auto;text-align: right}
.Footer-info p{font-size: 20px;line-height: 32px;color: #015198;font-weight: bold}
.Footer-info a{font-size: 24px;font-family: 'impact';color: #015198;line-height: 32px}
.Footer-info img{display: none;width: 100px;height: 100px;margin:16px 0 0 auto}

    /* 中间+共用部分 */
.Container-wrapper{width: 100%}
.contain{width: 1600px;margin: 0 auto;}
.incontain{width: 1400px;margin: 0 auto;}
.obj-cover{width:100%;height:100%;object-fit:cover}
.of-hidden{overflow: hidden}
.placeholder{visibility:hidden!important;height:0!important;border:0!important;padding:0!important;margin:0!important}/*space-between占位*/






/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
    .header,.contain{width: 1440px}
}

@media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .header,.contain{width: 1280px}
    .incontain{width: 1200px;}
}

@media all and (max-width:1439px) {
    /* 1360 */
    .header,.contain{width: 1100px}
}

@media all and (max-width:1359px) {
    /* 1280 */
}

@media all and (max-width:1279px) {
    /* 1152 × (700) */
    .incontain{width: 960px;}
}

@media all and (max-width:1151px) {
    /* 1024 */
    .header,.contain{width: 92%}
    .Footer-navbar{width: 55%}
    .Footer-menu{font-size: 18px}
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    /* 平板设备 720 适配 */
    .incontain{width: 92%;}
    .Header-wrapper .contain{width: 100%;}
    .header{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{margin-left: 4%;align-items: center}
    .Header-logo img{max-height: 44px;}
    .Header-navclick{display: flex;margin-right: 4%;}
    .Header-lang{margin: 0 12px 0 4px;}
    .Header-lang-more{width: 100px;margin-left: -60px;top: 60px;}
    .Header-lang-more a{padding: 6px 0;}
    .Header-navbar{display: none;position: absolute;width: 100%;margin-right: 0;height: calc(100vh - 60px);top: 60px;left: 0;padding: 12px 0 20px;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: 36px;padding: 0 4%;color:#666;}
    .Header-menu::before{display: none;}
    .Header-navbar li:hover .Header-menu{color: #747474;}
    .Header-navbar li.active .Header-menu{color: #015198;}
    .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;}
    .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: #015198 url('../images/common/searchColor.svg') no-repeat center /26px auto !important;z-index: 2;}
    .Header-search-click.active {background-image: url('../images/common/close.svg') !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-arrow{display: block;width: 44px;height: 36px;position: absolute;z-index: 2;right: 0;top: 0;background: url('../images/common/arrowDownHover.svg') no-repeat center /18px auto;}
    .Header-arrow.active{transform: rotate(180deg);}

    .Footer-logo{display: none}
    .Footer-item{padding: 32px 0 36px;background: #f5f5f5}
    .Footer-item .contain {width: 100%;flex-direction: column}
    .Footer-navbar{width: 100%;margin: 0}
    .Footer-navbar li{width: 100% !important;}
    .Footer-menu {height: 34px;line-height: 34px;padding: 0 4%;position: relative;}
    .Footer-menu::after{content: "";width: 44px;height: 34px;position: absolute;z-index: 2;right: 0;top: 0;background: url('../images/common/arrowDownHover.svg') no-repeat center /18px auto;}
    .Footer-menu.active::after{transform: rotate(180deg);}
    .Footer-drop a{padding: 7px 4%;}
    .Footer-drop{display: none;}
    .Footer-copyright h6{width: 100%;margin-bottom: 8px;}
    .Footer-copyright {text-align: center}
    .Footer-copyright p{width: 100%;text-align: center}
    .Footer-info{margin-right: auto;text-align: center;margin-top: 40px}
    .Footer-info img{margin: 16px auto}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
}