@charset "utf-8";
/* ====================公共样式========================= */

/* 公共颜色 236af6 */

/* 头部 */

.Header-wrapper {
	width: 100%;
	position: fixed;
	z-index: 99998;
	top: 0;
	left: 0;
	background: transparent;
	user-select: none;
	box-shadow: none;
	transition: all .4s ease;
}
/* .Header-wrapper::after{content: "";width: 100%;height: 1px;position: absolute;background: rgba(255, 255, 255, 0.2);left: 0;bottom: 0;} */



.Header-logo {
	float: left;
	width: 155px;
	height: 88px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 999;
}
.Header-logo img {
	max-width: 100%;
	position: absolute;
	transition: all .4s ease;
}
.Header-logo img.s {
	opacity: 1;
}
.Header-logo img.h {
	opacity: 0;
}
.Header-logo::before {
	content:"";
	position:absolute;
	width:89px;
	height:10px;
	z-index:9999999;
	background-color:rgba(255,255,255,.5);
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	-webkit-animation:searchLights 1.5s ease-in 1.5s infinite;
	animation:searchLights 1.5s ease-in 1.5s infinite;
	opacity:0;
}
@-webkit-keyframes searchLights {
	0% {
    	left:-90px;
    	top:40px
    }
    to {
    	left:150px;
    	top:40px
    }
}
.Header-lang {
	float: right;
	position: relative;
	z-index: 999;
	margin-right: 30px;
}
.Header-lang a:hover span{
	color: #00479d;
}
.Header-lang-more a:hover span{color: #fff;}
.Header-lang-menu {
	display: flex;
	align-items: center;
	height: 88px;
}
.Header-lang-menu span {
	display: block;
	padding-left: 26px;
	background: url('../images/langw.svg') no-repeat left center /20px auto;
	line-height: 22px;
	font-size: 14px;
	color: #fff;
	font-family: Arial;
}
.Header-lang:hover .Header-lang-menu span{background: url('../images/langH.svg') no-repeat left center /20px auto;}

/* 多个语言 */

.Header-lang-more {
	display: none;
	z-index: 9;
	width: 160px;
	box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
	background: #efefef;
	position: absolute;
	top: 88px;
	left: 50%;
	margin-left: -80px;
}
.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: #00479d;
}
.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: 88px;cursor: pointer;background: url('../fonts/searchw.svg') no-repeat center /26px auto;position: relative;z-index: 999;}

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

.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: 148px;}

.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('../fonts/search.svg') no-repeat center /26px auto;cursor: pointer;margin-right: 0;}

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



.Header-contact {
	display: block;
	float: right;
	height: 88px;
	line-height: 88px;
}
.Header-contact a {
	transition: all .4s ease;
	padding: 7px 13px;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 30px;
	font-size: 18px;
}
.Header-contact a:hover {
	color: #00479d !important;
	border-color: #00479d !important;
}
.Header-navbar {
	float: right;
	margin-right: 150px;
	visibility: visible;
	opacity: 1;
}
body.PC .Header-navbar {
	display: block !important;
}
.Header-navbar li {
	float: left;
	margin: 0 18px;
	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: 16px;
	color: #fff;
	transition: color .4s ease;
}
/* .Header-menu::before{content: "";width: 100%;left: 0;opacity: 0;height: 4px;position: absolute;bottom: 0;background: #00479d;transition: all .4s ease;} */

.Header-navbar li:hover .Header-menu, .Header-navbar li.active .Header-menu {
	color: #00479d !important;;font-weight:600;
}
.Header-navbar li.active .Header-menu::before {
	opacity: 1;
}
.Header-arrow {
	display: none;
}
.Header-drop {
	display: none;
	position: absolute;
	background: #f7f7f7;
	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 {
	background: #00479d;
	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: #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);
}
}
/* 透明 */

.bodyScroll .Header-wrapper, .bodyMouse .Header-wrapper, .bodySearch .Header-wrapper, .noLucency .Header-wrapper {
	background: #fff;
	box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.bodyScroll .Header-menu, .bodyMouse .Header-menu, .bodySearch .Header-menu, .noLucency .Header-menu, .bodyScroll .Header-contact a, .bodyMouse .Header-contact a, .bodySearch .Header-contact a, .noLucency .Header-contact a {
	color: #333;
}
.bodyScroll .Header-contact a, .bodyMouse .Header-contact a, .bodySearch .Header-contact a, .noLucency .Header-contact a {
	border-color: #747474;
}
.bodyScroll .Header-wrapper::after, .bodyMouse .Header-wrapper::after, .noLucency .Header-wrapper::after {
	background: rgba(0, 0, 0, 0.1);
}
.bodyScroll .Header-logo img.s, .bodyMouse .Header-logo img.s, .bodySearch .Header-logo img.s, .noLucency .Header-logo img.s {
	opacity: 0;
}
.bodyScroll .Header-logo img.h, .bodyMouse .Header-logo img.h, .bodySearch .Header-logo img.h, .noLucency .Header-logo img.h,.bodyScroll .Header-logo::before {
	opacity: 1;
}
.bodyScroll .Header-lang-menu span, .bodyMouse .Header-lang-menu span, .bodySearch .Header-lang-menu span, .noLucency .Header-lang-menu span {
	color: #747474;
	background-image: url('../images/lang.svg');
}
.bodyScroll .Header-search-click, .bodyMouse .Header-search-click, .bodySearch .Header-search-click, .noLucency .Header-search-click {
	background-image: url('../images/search.svg');
}
.bodySearch .Header-navbar {
	visibility: hidden;
	opacity: 0;
}
/* 不透明 */

.noLucency .Container-wrapper {
	margin-top: 88px;
}
/* 底部 */

.Footer-wrapper {
	width: 100%;
	background: linear-gradient(135deg, rgb(0,71,157) 55%, rgb(0,176,236) 100%);
	position: relative;
	z-index: 9;
}
.Footer-items {
	width: 100%;
	padding: 250px 0 30px;
}
.Footer-items.pages {
	padding-top: 130px;
}
.Footer-logo, .Footer-navbar, .Footer-contact {
	float: left;
}
.Footer-logo {
	width: 180px;
	margin-top: 60px;
}
.Footer-logo img {
	width: 100%;
}
.Footer-navbar {
	overflow: hidden;
	user-select: none;
	margin-left: 180px;
}
.Footer-navbar li {
	margin-top: 10px;
}
.Footer-navbar li:first-child {
	margin-top: 0;
}
.Footer-contact {
	font-size: 16px;
	margin-left: 150px;
	color: #fff;
	width: 340px;
}
.Footer-address .title {

}
.Footer-address .text {
	margin-top: 15px;
}
.Footer-email {
	margin-top: 30px;
}
.Footer-email a {
	text-decoration: underline;
}
.Footer-menu {
	font-size: 16px;
	color: #fff;
	display: block;
	text-transform: uppercase;
}
.Footer-drop {
	width: 100%;
	margin-top: 12px;
}
body.PC .Footer-drop {
	display: block !important;
}
.Footer-drop a {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 1;
	padding: 7px 0;
	transition: all .4s ease;
}
.Footer-drop a:hover {
	color: #969da6;
}
.Footer-copyright .contain-1400 {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
}
.Footer-copyright h6, .Footer-copyright p {
	color: rgba(255, 255, 255, .8);
	line-height: 18px;
}
.Footer-copyright h6 {
	font-size: 12px;
	float: left;
}
.Footer-copyright p {
	font-size: 14px;
	float: right;
}
.FooterCode {
	width: 100%;
	font-size: 0;
	margin-top: 50px;
	text-align: right;
	float: left;
}
.FooterCode a {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.FooterCode a {
	width: 32px;
	text-align: center;
	margin: 0 5px;
}
.FooterCode a>img {
	width: 22px;
}
.FooterCode-img {
	display: none;
	width: 152px;
	height: 152px;
	padding: 6px;
	position: absolute;
	bottom: 36px;
	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;
}
/* 波浪 */

/* .Footer-ripple{position: absolute;left: 0;top: -100px;width: 100%;z-index: 1;height: 200px;}

.Footer-rippleW{position: absolute;left: 0;top: -85px;width: 100%;z-index: 10;height: 85px;}

.Footer-ripple::after{animation: FRipple 27s 0s linear infinite forwards; content: "";width: 1000%;height: 100%;background: url('../images/footer-rippled.png') repeat-x;position: absolute;left: 0;top: 0;}

.Footer-rippleW::after{z-index: 10; animation: FRipple 35s 0s linear infinite forwards; content: "";width: 1000%;height: 100%;background: url('../images/footer-rippleb2.png') repeat-x;position: absolute;left: 0;top: 0;} */

.Footer-ripple {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 1;
	height: 200px;
}
.Footer-rippleW {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	height: 85px;
}
.Footer-ripple::after {
	animation: FRipple 30s linear infinite;
	content: "";
	width: 1000%;
	height: 100%;
	background: url('../images/footer-ripple.png') repeat-x;
	position: absolute;
	left: 0;
	top: 0;
}
.Footer-rippleW::after {
	z-index: 10;
	animation: FRipple 30s 0s linear infinite;
	content: "";
	width: 1000%;
	height: 100%;
	background: url('../images/footer-ripplew.png') repeat-x;
	position: absolute;
	left: 0;
	top: 0;
}
.Footer-ripple.pages {
	top: -200px;
}
.Footer-rippleW.pages {
	top: -85px;
}
.Footer-ripple.pages::after {
	background-image: url('../images/footer-rippled.png');
}
.Footer-rippleW.pages::after {
	background-image: url('../images/footer-rippleb2.png');
}
 @keyframes FooterCode {
0% {
transform: translateY(-14px);
}
100% {
transform: translateY(0);
}
}
 @keyframes FRipple {
100% {
transform: translateX(-50%);
}
}
/* 置顶 */

.backTop {
	display: none;
	right: 40px;
	bottom: 60px;
	width: 44px;
	height: 44px;
	border-radius: 4px;
	position: fixed;
	cursor: pointer;
	z-index: 9999;
	background: #00479d url('../images/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%;
}
.contain-1600, .contain-1400, .contain, .contain-1150 {
	margin: 0 auto;
}
.contain-1600 {
	width: 1600px;
}
.contain-1400 {
	width: 1400px;
}
.contain-1150 {
	width: 1150px;
}
.contain {
	width: 1280px;
}













/* -------------------------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;
}
.contain-1150 {
	width: 1000px;
}
.Header-navbar {
	margin-right: 80px;
}
.Footer-navbar, .Footer-contact {
	margin-left: 100px;
}
}
 @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-contact a {
	font-size: 16px;
	padding: 5px 10px;
}
.Header-navbar {
	margin-right: 0;
}
.Header-navbar li {
	margin: 0 12px;
}
.Footer-logo {
	width: 180px;
}
.Footer-navbar, .Footer-contact {
	margin-left: 50px;
}
}
 @media all and (max-width:1151px) {
/* 1024 */

}





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

@media all and (max-width:1000px) {
/* 平板设备 720 适配 */
.Footer-logo{ margin-top:0;}
.Header-logo::before { display:none;}
.Header-wrapper {
	background: #fff;
	box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.Header-menu {
	color: #747474;
}
.Header-wrapper::after {
	background: rgba(0, 0, 0, 0.1);
}
.Header-logo img.s {
	opacity: 0;
}
.Header-logo img.h {
	opacity: 1;
}
.Header-lang-menu span {
	color: #747474;
	background-image: url('../images/lang.svg');
}
.Header-search-click {
	background-image: url('../images/search.svg');
}
.bodySearch .Header-navbar {
	visibility: visible;
	opacity: 1;
}
.noLucency .Container-wrapper {
	margin-top: 60px;
}
.contain-1600, .contain-1400, .contain, .contain-1150 {
	width: 92%;
}
.Container-wrapper {
	margin-top: 60px;
}
.Header-wrapper .contain {
	width: 100%;
}
.Header-logo, .Header-search-click, .Header-lang-menu {
	height: 60px;
}
.Header-logo {
	width: 110px;
}
.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-right: 0;
	height: calc(100vh - 60px);
	top: 60px;
	left: 0;
	padding: 20px 0;
	background: #fff;
	border-top: 1px solid #dcdcdc;
}
.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: -5px;
	background: url('../images/arrd.svg') no-repeat center /16px auto;
}
.Header-arrow.active {
	transform: rotate(180deg);
}
.Header-navbar li:hover .Header-menu {
	color: #747474 !important;
}
.Header-navbar li.active .Header-menu {
	color: #00479d !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%;
	font-size:14px;
	text-indent:20px;
}
.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: #00479d url('../images/searchw.svg') no-repeat center /26px auto !important;
	z-index: 2;
}
.Header-search-click.active {
	background-image: url('../images/close.svg') !important;
}
.Header-search-click {
	background-image: url('../images/search.svg') !important;
}
.Header-contact {
	height: 60px;
	line-height: 60px;
	margin-right: 30px;
}
.Header-contact a {
	color: #777;
	border: 1px solid #777;
	font-size: 14px;
	padding: 4px 8px;
}
.Footer-items {
	padding: 32px 0 10px;
}
.Footer-items.pages {
	padding-top: 0;
}
.Footer-items .contain {
	width: 100%;
}
.Footer-navbar {
	width: 100%;
}
.Footer-navbar li {
	width: 100% !important;
}
.Footer-menu {
	height: 40px;
	line-height: 40px;
	position: relative;
}
.Footer-menu::after {
	content: "";
	width: 44px;
	height: 40px;
	position: absolute;
	z-index: 9;
	right: 0;
	top: 0;
	background: url('../images/arrrw.svg') no-repeat center /25px auto;
}
.Footer-menu.active::after {
	transform: rotate(180deg);
}
.Footer-drop a {
	padding: 7px 4%;
}
.Footer-drop {
	display: none;
	margin-top: 0;
}
/* .Footer-copyright h6{margin-bottom: 8px;} */

.Footer-copyright {
	padding: 20px 0;
}
.FooterCode {
	text-align: left;
	margin-top: 28px;
}
.Footer-rippleW::after, .Footer-ripple::after {
	animation: unset;
	width: 100%;
	background-size: auto 100%;
}
.Footer-navbar, .Footer-contact {
	margin: 30px 0 0;
}
.Footer-wrapper {
	padding-top: 100px;
}
.Footer-ripple {
	height: 100px;
}
.Footer-ripple.pages {
	height: 100px;
	top: -100px;
}
.Footer-rippleW, .Footer-rippleW.pages {
	height: 40px;
	top: 0;
}
.Footer-contact {
	width: 100%;
}
.backTop {
	bottom: 100px;
}
}
 @media all and (max-width:640px) {
/* 移动终端以上 360 适配 */

.Header-contact {
	margin-right: 15px;
}
.Header-contact a {
	padding: 4px 6px;
	font-size: 13px;
}
.Footer-logo {
	width: 110px;
}
.Footer-rippleW::after, .Footer-ripple::after {
	background-size: 200% auto;
}
.Footer-wrapper {
	padding-top: 70px;
}
.Footer-menu::after {
	background-size: 23px auto;
}
.Footer-address .text {
	margin-top: 10px;
}
.Footer-copyright .contain-1400 {
	padding: 15px 0;
}
.Footer-copyright h6, .Footer-copyright p {
	width: 100%;
}
.Footer-copyright p {
	margin-top: 10px;
}
.backTop {
	right: 10px;
	bottom: 25px;
}
.indPro-list a:last-child {
	display: none;
}
.Footer-navbar li {
	width: 50% !important;
	float: left;
	margin-top: 0;
}
}
