﻿@charset "utf-8";
/* ====================公共样式========================= */

/* 头部 */
.Header-wrapper {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999999;
	background-color: #ffffff;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}

.Header-wrapper::after {
	content: '';
	display: none;
	width: 100%;
	height: 1px;
	background-color: #f0e7e7;
	position: absolute;
	left: 0;
	bottom: 0;
}

/* logo */
.Header-logo {
	float: left;
}

.Header-logo a {
	display: block;
	width: 250px;
	line-height: 100px;
}

.Header-logo a img {
	width: 100%;
	object-fit: cover;
}

/* 导航 */
.Header-navbar {
	float: right;
	width: calc(100% - 35vw);
}

.Header-navbar ul li {
	float: left;
	position: relative;
	text-align: center;
}

.Header-navbar li {
	width: calc(100% / 7);
}

.Header-navbar ul li:last-child {
	margin-right: 0;
}

.Header-navbar ul li:first-child {
	margin-left: 0;
}

.Header-navmenu {
	display: inline-block;
	font-size: 16px;
	color: #333;
	height: 100px;
	line-height: 100px;
	transition: all .4s ease;
	position: relative;
}

.Header-navmenu::after {
	content: '';
	width: 0%;
	height: 4px;
	background-color: #006837;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all .4s ease;
}

.Header-navbar ul li.ontrue .Header-navmenu::after,
.Header-navbar ul li:hover .Header-navmenu::after {
	width: 100%;
	right: auto;
	left: 0;
}

.Header-navbar ul li.ontrue .Header-navmenu,
.Header-navbar ul li:hover .Header-navmenu {
	color: #006837;
}

.Header-navarr {
	display: none;
}

/* 导航下拉 */
.Header-drop {
	
	display: none;
	width: 150%;
	position: absolute;
	left: 50%;
	top: 100px;
	/* box-shadow: 2px 0 2px rgba(0, 0, 0, 0.16); */
	transform: translate(-50%,0);
}

.Header-drop a {
	display: inline-block;
	width: 100%;
	height: auto;
	background-color: #ffffff;
	font-size: 14px;
	color: #666666;
	line-height: 50px;
	text-align: center;
	transition: all .4s ease;
}

.Header-drop a:hover {
	background-color: #006837;
	color: #ffffff;
}


/* 语言 1*/
.Header-lang {
	float: right;
	font-size: 0;
	display: flex;
}

.Header-lang i {
	display: inline-block;
	width: 24px;
	height: auto;
	line-height: 100px;
	background: url('../images/lang.png') no-repeat center;
}

.Header-lang span {
	display: inline-block;
	font-size: 16px;
	color: #006837;
	margin-left: 10px;
	height: auto;
	line-height: 100px;
}


/* 语言 2*/
.langBtn {
	display: block;
	float: right;
	width: 60px;
	height: 100px;
	cursor: pointer;
	user-select: none;
	position: relative;
	background: url(../images/lang.png) center center no-repeat
}

.langBtn .lg {
	position: absolute;
	left: -5px;
	right: -5px;
	top: 100%;
	
	background: #fff;
	display: none;
}

.langBtn .lg a {
	display: block;
	height: auto;
	line-height: 50px;
	text-align: center;
	overflow: hidden;
	color: #666;
	font-size: 15px;
	-o-transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	padding: 0 10px;
}

.langBtn .lg a.on,
.langBtn .lg a:hover {
	color: #fff;
	background: #006837;
}

/* 语言 3*/
.lg{
	float: right;
	font-size: 0;
	display: flex;
	line-height: 100px;
}

.lg img{
	height: 24px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	margin: 0 2px;
}


/* 手机菜单 */
.Header-navclick {
	width: 24px;
	height: 100px;
	align-items: center;
	cursor: pointer;
	float: right;
	user-select: none;
	display: none;
}

.Header-navclick span {
	width: 100%;
	height: 2px;
	background: #333;
	display: block;
	position: relative;
	transition: all .2s linear;
}

.Header-navclick span:before,
.Header-navclick span:after {
	content: "";
	position: absolute;
	height: 2px;
	background: #333;
	display: block;
	left: 0;
	width: 100%;
	transition: all .2s linear;
}

.Header-navclick span:before {
	top: -8px;
}

.Header-navclick span:after {
	top: 8px;
}

.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(8px) rotate(0);
		transform: translateY(8px) rotate(0);
	}

	100% {
		-moz-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}
}

@-webkit-keyframes buttonAnimationBefore {
	0% {
		-webkit-transform: translateY(0px) rotate(0);
		transform: translateY(0px) rotate(0);
	}

	50% {
		-webkit-transform: translateY(8px) rotate(0);
		transform: translateY(8px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) 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(8px) rotate(0);
		-ms-transform: translateY(8px) rotate(0);
		-webkit-transform: translateY(8px) rotate(0);
		transform: translateY(8px) rotate(0);
	}

	100% {
		-moz-transform: translateY(8px) rotate(45deg);
		-ms-transform: translateY(8px) rotate(45deg);
		-webkit-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}
}

@-moz-keyframes buttonAnimationAfter {
	0% {
		-moz-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-moz-transform: translateY(-8px) rotate(0);
		transform: translateY(-8px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}
}

@-webkit-keyframes buttonAnimationAfter {
	0% {
		-webkit-transform: translateY(0) rotate(0);
		transform: translateY(0) rotate(0);
	}

	50% {
		-webkit-transform: translateY(-8px) rotate(0);
		transform: translateY(-8px) rotate(0);
	}

	100% {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) 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(-8px) rotate(0);
		-ms-transform: translateY(-8px) rotate(0);
		-webkit-transform: translateY(-8px) rotate(0);
		transform: translateY(-8px) rotate(0);
	}

	100% {
		-moz-transform: translateY(-8px) rotate(-45deg);
		-ms-transform: translateY(-8px) rotate(-45deg);
		-webkit-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) 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-wrapper {
	width: 100%;
	background: url(../images/footerbg.png)no-repeat left top/100% 100%;
}

.Footer-navbaritem {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.Footer-navbar {
	width: 78%;
	overflow: hidden;
	padding: 56px 0 76px;
}

.Footer-navbar ul li {
	float: left;
	width: 14.28%;
	font-size: 0;
}

.Footer-menu {
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 16px;
	font-weight: 600;
}

.Footer-link {
	width: 100%;
}

.Footer-link a {
	display: block;
	font-size: 14px;
	color: #fff;
	line-height: 30px;
	transition: all .4s ease;
}


.Footer-ewmitem {
	float: right;
	overflow: hidden;
	padding: 56px 0 76px;
	width: auto;
	display: flex;
	flex-direction: column;
	padding-left: 26px;
}

.Footer-ewmul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.Footer-wechat {
	width: 118px;
	height: 128px;
	padding: 0px 0 10px;
	margin: 0 auto 10px;
	background: #ffffff;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}

.Footer-wechat img {
	max-width: 88%;
	max-height: 88%;
	object-fit: cover;
}

.Footer-wechat span {
	font-size: 14px;
	color: #000000;
	display: inline-block;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}

.Footer-contact {
	font-size: 20px;
	color: #ffffff;
	margin-top: 4px;
	font-family: Arial;
	font-weight: 700;
}

.Footer-contact i {
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url('../images/phoneicon.png')no-repeat center;
	margin-right: 4px;
}

.Footer-copy {
	width: 100%;
	border-top: 1px solid #999;
	height: 77px;
}

.Footer-copy .contain {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.Footer-recorditem {
	color: #fff;
}

.Footer-recorditem span {
	font-size: 14px;
}

.Footer-copyaddress p {
	font-size: 14px;
	color: #fff;
}

/* 中间+共用部分 */
.Container-wrapper {
	position: relative;
	width: 100%;
}

.incontain {
	position: relative;
	width: 1500px;
	margin: 0 auto;
}

.contain {
	position: relative;
	width: 1500px;
	margin: 0 auto;
}



/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
	/* 1600 × (900) */
}

@media all and (max-width:1599px) {

	/* 1440 × (700)  */
	.incontain {
		width: auto;
		padding: 0 5vw;
	}

	.contain {
		width: auto;
		padding: 0 5vw;
	}

	.Header-navbar ul li {
		margin: 0 16px;
	}

	.Header-navbar li {
		width: auto;
	}
	
	.Footer-wechat {
		width: 100px;
		height: 116px;
	}
}

@media all and (max-width:1439px) {
	/* 1360 */
	
	.Header-navbar li {
		width: auto;
	}
	
	.Header-navbar {
      margin-right: 18px;
      width: calc(100% - 40vw);
    }
    
    .Header-navbar ul li {
      margin: 0 13px;
    }
	
}

@media all and (max-width:1359px) {
	/* 1280 */
}

@media all and (max-width:1279px) {

	/* 1152 × (700) */
	.incontain {
		width: auto;
	}

	.contain {
		width: auto;
	}

	.Header-navbar {
		margin-right: 18px;
	}

	.Header-navbar ul li {
		margin: 0 8px;
	}

	.Header-drop {
		width: 158px;
		right: 0;
	}

	
	.langBtn {
		display: block;
		float: right;
		width: 60px;
		height: 60px;
		cursor: pointer;
		user-select: none;
		position: relative;
		background: url(../images/lang.png) center center no-repeat
	}
	
	.langBtn .lg {
		position: absolute;
		left: -5px;
		right: -5px;
		top: 100%;
		padding: 0;
		background: #006837;
		display: none
	}
	
	.langBtn .lg a {
		display: block;
		height: 30px;
		line-height: 30px;
		text-align: center;
		overflow: hidden;
		color: #fff;
		font-size: 14px;
		-o-transition: .3s;
		-ms-transition: .3s;
		-moz-transition: .3s;
		-webkit-transition: .3s;
		transition: .3s;
	}
	
	.langBtn .lg a.on,
	.langBtn .lg a:hover {
		background-color: rgba(255, 255, 255, .1)
	}
	
	
	
	/* 语言 3*/
	.lg{
		float: right;
		font-size: 0;
		display: flex;
		line-height: 100px;
	}
	
	.lg img{
		height: 30px;
		border: 1px solid #ddd;
		box-sizing: border-box;
		margin: 0 2px;
	}
	
	
	.Footer-navbar {
		width: 76%;
	}

	.Footer-ewmitem {
		width: 24%;
	}

	.Footer-wechat {
		width: 88px;
		height: 106px;
	}

	.Footer-wechat span {
		font-size: 12px;
	}
}

@media all and (max-width:1151px) {
	/* 1024 */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {

	/* 平板设备 720 适配 */
	.incontain {
		width: 96%;
	}

	.contain {
		width: 96%;
	}

	.Header-wrapper::after {
		display: block;
	}

	.Header-logo a {
		width: 160px;
		line-height: 60px;
	}

	.Header-navclick {
		display: flex;
		margin-left: 24px;
		height: 60px;
	}
	
	.lg{
		float: right;
		font-size: 0;
		display: flex;
		line-height: 65px;
	}

	.Header-lang i {
		height: 60px;
	}

	.Header-lang span {
		height: 60px;
		line-height: 60px;
	}

	.Header-navbar {
		display: none;
		width: 100%;
		background-color: #ffffff;
		position: absolute;
		left: 0;
		top: 60px;
		height: calc(100vh - 60px);
	}

	.Header-navbar ul {
		width: 100%;
		display: flex;
		flex-direction: column;
		padding: 0 4%;
	}

	.Header-navbar ul li {
		width: 100%;
		margin: 0;
		position: relative;
		margin-bottom: 8px;
	}

	.Header-navmenu {
		width: 100%;
		height: 32px;
		line-height: 32px;
	}

	.Header-navmenu::after {
		display: none;
	}

	.Header-navarr {
		display: block;
		width: 24px;
		height: 32px;
		background: url('../images/droparrh.svg')no-repeat center/18px auto;
		position: absolute;
		right: 0;
		top: 0px;
		transition: all .4s ease;
	}

	.Header-navarr.active {
		transform: rotate(180deg);
	}

	.Header-drop {
		width: 100%;
		position: static;
		box-shadow: none;
		height: auto !important;
		padding: 0 6px;
	}

	.Header-drop a {
		text-align: center;
		height: auto;
		line-height: 32px;
		font-size: 14px;
	}

	.Footer-wrapper {
		background-size: 100% 100%;
	}

	.Footer-navbaritem {
		flex-direction: column;
	}

	.Footer-navbar {
		width: 100%;
		border: none;
		padding: 56px 0 0px;

		display: none;
	}

	.Footer-navbar ul {
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.Footer-navbar ul li {
		width: 100%;
		margin-bottom: 14px;
	}

	.Footer-menu {
		width: 100%;
		position: relative;
		margin-bottom: 10px;
	}

	.Footer-menu::after {
		content: '';
		width: 24px;
		height: 32px;
		background: url('../fonts/droparr.svg')no-repeat center/18px auto;
		position: absolute;
		right: 0;
		top: 0px;
	}

	.Footer-menu.active::after {
		transform: rotate(180deg);
	}

	.Footer-link {
		display: none;
		padding: 12px 0;
	}

	.Footer-link a {
		line-height: 24px;
	}

	.Footer-ewmitem {
		width: 100%;
		align-items: center;
		justify-content: center;
		padding: 30px 0;
	}

	.Footer-wechat {
		width: 100px;
		height: 116px;
		margin-right: 0px;
	}

	.Footer-copy .contain {
		flex-direction: column-reverse;
		justify-content: center;
	}

	.Footer-copyaddress {
		margin-bottom: 4px;
	}

	.Container-wrapper {
		margin-top: 60px;
	}
}

@media all and (max-width:640px) {

	/* 移动终端以上 360 适配 */
	.Header-navbar ul li {
		margin-bottom: 0;
	}

	.Header-navmenu {
		height: 36px;
		line-height: 36px;
	}

	.Footer-navbar ul li {
		margin-bottom: 6px;
	}

	.Footer-navbar {
		display: none;
		padding: 40px 0 0px;
	}

	.Footer-menu {
		margin-bottom: 0;
	}

	.Footer-ewmitem {
		padding: 25px 0;
	}

	.Footer-wechat {
		width: 100px;
		height: 116px;
	}

	.Footer-contact {
		font-size: 18px;
		margin-top: 10px;
	}

	.Footer-wechat span {
		line-height: 18px;
	}

	.Footer-copyaddress p {
		font-size: 12px;
	}

	.Footer-recorditem {
		display: flex;
		flex-direction: column;
		text-align: center;
	}
}