@font-face {
	font-family: 'TNRR';
	src: url('../fonts/TimesNewerRoman-Regular.woff2') format('woff2'),
		url('../fonts/TimesNewerRoman-Regular.woff') format('woff'),
		url('../fonts/TimesNewerRoman-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'TNRB';
	src: url('../fonts/TimesNewerRoman-Bold.woff2') format('woff2'),
		url('../fonts/TimesNewerRoman-Bold.woff') format('woff'),
		url('../fonts/TimesNewerRoman-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* header start */

.header {
	position: relative;
	width: 100%;
	min-width: 30rem;
	z-index: 12;
	width: 100%;
	background-color: #fff;
}

.header {
	animation: header .7s linear 0s 1 both;
	transform-style: preserve-3d
}

@-webkit-keyframes header {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes header {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}

.header .top .logo-box {
	background: url('../images/logo_bg.png') no-repeat center bottom/cover;
	padding: 2.5rem 0;
}

.header .top .gp-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header .top .tq_link {
	padding: 1.6rem 0;
	background-color: #EBF6EC;
}

.header .top .tq_link .left {
	color: #4B804A;
}

.header .top .tq_link .left span:nth-of-type(2) {
	display: inline-block;
	margin: 0 30px;
}

.header .top .tq_link .right {
	display: flex;
	align-items: center;
}

.header .top .tq_link .right .search-but {
	margin-left: 1.2rem;
	cursor: pointer;
	transition: all .3s ease-in-out;
}

.header .top .tq_link .right .search-but:hover {
	transform: scale(1.2);
}

.header .top .tq_link .right .en-link {
	padding: 0 3rem;
	margin: 0 3rem;
	font-family: 'TNRR';
	border-left: 1px solid rgba(0, 0, 0, .1);
	border-right: 1px solid rgba(0, 0, 0, .1);
}

.header .header-rt {
	background: #D3EAE1;
}

.logo {
	width: 52%;
}

.logo a {
	position: static;
}

.logo a.gp-img {
	padding-bottom: 11.54%;
}

.ser {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	max-width: calc(100% - 4rem);
}

.search .notxt1 {
	background-color: #006A2D;
	color: #fff;
}

.nav {
	position: relative;
}

.nav ul {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	/*margin: 0 -3.6rem 0 0;*/
}

.nav li {
	/* flex: 1; */
	line-height: normal;
	/* margin: 0 3.6rem; */
}



.nav li>a {
	font-weight: bold;
	color: #333;
	text-align: center;
	padding: 1.8rem 1rem;
	transition: all .3s ease-in-out;
}

/* .nav ul li>a::before {
	content: "";
	position: absolute;
	width: 0%;
	height: .3rem;
	background: rgba(255, 105, 0, 1);
	bottom: 2px;
	transition: all .3s ease-in-out;
	left: 50%;
	transform: translateX(-50%);
} */
.nav ul li:hover>a {
	background: #3da93b;
	color: #fff;
}

/* .nav ul li:hover>a::before, .nav ul li>a.home::before {
	width: 100%
} */

.nav .sub_nav {
	position: absolute;
	left: 50%;
	top: 100%;
	display: none;
	width: 100%;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	padding: 8px 0;
}

.nav .sub_nav::after {
	content: "";
	display: block;
	position: absolute;
	top: -6px;
	left: 50%;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgba(255, 255, 255, 0.95);
	transform: translateX(-50%);
}

.nav .sub_nav dl {
	margin: 0 0 0;
	position: relative;
}

.nav .sub_nav dd {
	position: relative;
}

.nav .sub_nav dd .sub_thr_nav {
	display: none;
	position: absolute;
	left: 99%;
	top: 0%;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	padding: 8px 0;
}

.nav .sub_nav a {
	color: rgba(0, 0, 0, 0.9);
	display: block;
	position: relative;
	padding: 1.1rem 0;
	font-weight: 400;
	text-align: center;
}

.nav .sub_nav dd:hover>a {
	font-weight: 500;
	background: rgba(211, 234, 225, 1);
}

.nav ul li:hover .sub_nav {
	display: block;
}

.nav ul li:hover .sub_nav {
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	animation-duration: .6s;
	-webkit-animation-duration: .6s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	visibility: visible !important;
	display: block
}

.nav .sub_nav dd:hover .sub_thr_nav {
	display: block;
}

@keyframes flipInY {
	from {
		-webkit-transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, 90deg);
		transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, -20deg);
		transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, 10deg);
		transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, -5deg);
		transform: perspective(40rem) translateX(-50%) rotate3d(0, 1, 0, -5deg)
	}

	to {
		-webkit-transform: perspective(40rem) translateX(-50%);
		transform: perspective(40rem) translateX(-50%)
	}

	/* from{opacity: 0;}
	to{opacity: 1;} */
}

.header.currents .top {
	display: none;
}

.header.currents {
	background: #fff;
	position: fixed;
	top: 0;
	/* box-shadow: 0rem 1rem 2.5rem 0rem rgba(37, 43, 44, 0.12); */
}

@media screen and (max-width:1780px) {
	.nav li>a {
		/* padding: 0.5rem 1rem 0.5rem 1rem; */
	}
}

@media screen and (max-width:1640px) {
	.header .con {
		margin: 0 5rem;
	}

	.logo::before {
		right: -12rem;
		clip-path: polygon(0 0, 100% 0, calc(100% - 10rem) 100%, 0 100%);
	}

	.header_rt {
		width: calc(100% - 56rem);
		position: relative;
	}

	.nav {
		font-size: 1.8rem;
	}

	.nav::before {
		left: -3rem;
	}

	.nav::after {
		left: -4rem;
	}

	.header_rt::before {
		left: -16.8rem;
		display: none;
	}

}


@media screen and (max-width:996px) {

	.header .header-rt {
		display: none;
	}

	.header .top .ser {
		display: none;
	}

	.logo {
		width: 80%;
	}

	.header .top .tq_link {
		display: none;
	}
}

@media screen and (max-width:767px) {

	.logo {
		max-width: 100%;
		position: relative;
	}

}

@media screen and (max-width:480px) {

	.logo {
		width: 85%;
	}

}

/* header end */

/* mob_nav */
@media screen and (max-width:996px) {
	.mobile_header {
		position: absolute;
		z-index: 1000;
		top: 0;
		width: 100%;
	}

	.mob_nav_btn {
		height: 38px;
		text-align: left;
		width: 38px;
		z-index: 1000;
		position: absolute;
		cursor: pointer;
		margin-right: 0;
		font-weight: 700;
		text-align: right;
		right: 20px;
		top: 30px;
		-webkit-transition: background .5s;
		-moz-transition: background .5s;
		-o-transition: background .5s;
		transition: background .5s;
		border-radius: 50%;
	}

	.mob_nav_btn.on {
		/*background-image:url(../images/m_nav2.png);*/
		/* right:20px; */
		/* top:20px; */
		position: fixed;
	}

	.mob_nav_btn span {
		position: absolute;
		left: calc((100% - 22px)/ 2);
		top: calc((100% - 1px)/ 2);
		width: 22px;
		height: 2px;
		background-color: #fff;
		animation-duration: .5s;
		animation-fill-mode: both;
	}

	.mob_nav_btn.on span {
		background: #fff;
	}

	.mob_nav_btn span:nth-child(1) {
		transform: translateY(4px) rotate(0);
		animation-name: outfirst
	}

	.mob_nav_btn span:nth-child(2) {
		transform: translateY(-4px) rotate(0);
		animation-name: outsecond
	}

	.mob_nav_btn span:nth-child(3) {
		transform: translateY(-4px) rotate(0);
		animation-name: outthird
	}

	@keyframes outfirst {
		0% {
			transform: translateY(0) rotate(-45deg)
		}

		100% {
			transform: translateY(-8px) rotate(0)
		}
	}

	@keyframes outsecond {
		0% {
			transform: translateY(0) rotate(45deg)
		}

		100% {
			transform: translateY(0px) rotate(0)
		}
	}

	@keyframes outthird {
		0% {
			transform: translateY(0) rotate(90deg)
		}

		100% {
			transform: translateY(8px) rotate(0)
		}
	}

	.mob_nav_btn.on span:nth-child(1) {
		animation-name: clickfirst
	}

	.mob_nav_btn.on span:nth-child(2) {
		animation-name: clicksecond
	}

	.mob_nav_btn.on span:nth-child(3) {
		animation-name: clickthird
	}

	@keyframes clickfirst {
		0% {
			transform: translateY(4px) rotate(0)
		}

		100% {
			transform: translateY(0) rotate(45deg)
		}
	}

	@keyframes clicksecond {
		0% {
			transform: translateY(-4px) rotate(0)
		}

		100% {
			transform: translateY(0) rotate(-45deg)
		}
	}

	@keyframes clickthird {
		0% {
			opacity: 0
		}

		100% {
			opacity: 0
		}
	}

	.mobile_header_cover {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 100%;
		background: rgba(0, 0, 0, .7);
		z-index: 9;
		transition: all ease-in-out .2s;
		-ms-transition: all ease-in-out .2s;
		-moz-transition: all ease-in-out .2s;
		-webkit-transition: all ease-in-out .2s;
		-o-transition: all ease-in-out .2s
	}

	.mobile_header_cover.on {
		bottom: 0
	}

	.mobile-header {
		width: 100%;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 995;
		overflow: auto;
		overflow-x: hidden;
		background: rgba(211, 234, 225, 1);
		display: none;
		height: 100vh;
	}

	.mobile-header.on {
		animation-duration: .5s;
		animation-fill-mode: both;
		animation-name: y_scale;
		display: block
	}

	.mobile-nav {
		width: 100%;
		padding-top: 50px;
	}

	.mobile-nav li {
		position: relative;
		padding: 0 0;
		margin: 0 12px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.4)
	}

	.mobile-nav li a {
		display: block;
		text-decoration: none;
		font-size: 18px;
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		color: #333;
		font-weight: 500;
		padding: 16px 0px 14px 38px;
	}

	.mobile-nav dd a {
		-webkit-animation-duration: .5s;
		animation-duration: .5s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: returnToNormal;
		animation-name: returnToNormal
	}

	@-webkit-keyframes returnToNormal {
		from {
			opacity: 0;
			-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0)
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none
		}
	}

	@keyframes returnToNormal {
		from {
			opacity: 0;
			-webkit-transform: translate3d(100%, 0, 0);
			transform: translate3d(100%, 0, 0)
		}

		to {
			opacity: 1;
			-webkit-transform: none;
			transform: none
		}
	}

	.mobile_sub_nav {
		overflow: hidden;
	}

	.mobile-nav dd {
		position: relative;
	}

	.mobile-nav dd a {
		/* height:35px; */
		line-height: 22px;
		border-top: 1px solid rgba(135, 135, 135, .1);
		font-size: 16px;
		padding-left: 38px;
		position: relative;
		padding: 0px 0px 16px 58px;
	}

	.mobile-nav dd:first-child a {
		border-top: 0;
	}



	.mobile-nav dd:hover a {
		color: #fff
	}

	.mobile-nav dd .mobile_sub_nav {
		margin-left: 15px;
	}

	.mobile-nav dd .mobile_sub_nav dd a {
		padding-top: 0;
	}

	.mobile-nav .arrow {
		color: #333;
		position: absolute;
		right: 0;
		top: 2px;
		font-size: 15px;
		cursor: pointer;
		width: 45px;
		height: 45px;
		text-align: center;
		line-height: 45px;
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		/*background:url(../images/mobile_arrow1.png) center no-repeat;*/
	}

	.mobile-nav .on .arrow {
		/*background-image:url(../images/mobile_arrow2.png)*/
		transform: rotate(90deg);
	}

	.mobile-nav dd .arrow {
		/*background-image:url(../images/mobile_arrow2.png)*/
		transform: rotate(0deg) !important;
	}

	.mobile-nav dd.on .arrow {
		/*background-image:url(../images/mobile_arrow2.png)*/
		transform: rotate(90deg) !important;
		top: -8px;
	}

	.mobile_sub_nav {
		display: none
	}


	/* li.on .mobile_sub_nav{display:block} */
	.mobile_search {
		height: 56px;
		z-index: 600;
		overflow: hidden;
		position: relative;
		transition: all ease-in-out .3s;
		-ms-transition: all ease-in-out .3s;
		-moz-transition: all ease-in-out .3s;
		-webkit-transition: all ease-in-out .3s;
		-o-transition: all ease-in-out .3s;
		margin: 30px 40px 15px;
		border: 1px solid #d3d3d3
	}


	.mob_links {
		color: #fff;
		text-align: center;
		line-height: 40px
	}

	.mob_linksIn {
		overflow: hidden;
		float: right;
		margin-right: 50px
	}

	.mob_links dl dt::before {
		background: #fff;
		opacity: .75
	}

	.mob_links dl {
		margin: 0 0 10px;
		overflow: hidden;
	}

	.mob_links dl:nth-child(2) {
		margin: 0
	}

	.mob_links dl a {
		color: #333;
		opacity: .75;
		font-size: 14px
	}

	.mob_links dl dt {
		position: relative
	}

	.mob_links dl dt::before {
		content: '';
		position: absolute;
		width: 16px;
		height: 2px;
		background: #a7a8a7;
		bottom: 0;
		left: calc(50% - 8px);
	}

	.mob_links dl dt a {
		font-size: 14px;
		color: #333;
		font-weight: 700
	}

	.mob_links dl dd {
		padding: 0 10px;
		position: relative;
		display: inline-block;
	}

	.mob_links dl dd::before {
		content: '';
		position: absolute;
		width: 5px;
		height: 1px;
		opacity: .3;
		background: #fff;
		right: 10px;
		top: 50%
	}

	.mob_links dl dd:last-child::before {
		display: none
	}

	.mobile_search {
		height: 36px;
		margin: 20px;
	}

	.mobile-phone {
		margin: 20px;
		color: #EB721C;
	}

	.mobile-phone span {
		display: block;
		text-align: center;
		font-size: 18px;
	}

	.mobile_search .search {
		display: flex;
		align-items: center;
		position: relative;
		width: 100%;
		padding: 10px 12px;
		background: #fff;
		border: none;
	}

	/* .mobile_search .search input.notxt1{background-color: #fff; background-size: 20px; } */
	.mobile_search .search i {
		position: absolute;
		z-index: 2;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		text-align: center;
		font-size: 18px;
		width: 25%;
		pointer-events: none;
		color: #94070a;
	}

	.mob_links {
		font-size: 16px;
	}

	.mob_links a {
		display: inline-block;
		margin: 0 1rem;
	}

}

@media screen and (max-width:767px) {
	.mob_nav_btn {
		top: 15px;
	}


	.mobile-nav .arrow {
		top: 6px
	}

	.mobile_search .search input.notxt1 {
		width: 60px;
	}

	.search input.notxt {
		width: calc(100% - 60px);
		padding-left: 20px;
	}

}

/* mob_nav end */
/* header end */

/* footer start */
footer {
	position: relative;
	z-index: 1;
	padding: 5rem 0 4rem;
	line-height: 1.5;
	background: url('../images/footer_bg.png') no-repeat center top/cover;
}

footer .con {
	display: flex;
	justify-content: space-between;
}

footer .footer-logo {
	width: 68rem;
	margin-bottom: 2.8rem;
}

footer .footer-logo .gp-img {
	position: relative;
	padding-bottom: 11.48%;
}

footer .item-list {
	color: #fff;
}

footer .item-list .item {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

footer .item-list .item .icon {
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	margin-right: 1rem;
}

footer .item-list .item .icon.phone-icon {
	background: url('../images/phone_icon.png') no-repeat center/cover;
}

footer .item-list .item .icon.email-icon {
	background: url('../images/email_icon.png') no-repeat center/cover;
}

footer .item-list .item .icon.dw-icon {
	background: url('../images/dw_icon.png') no-repeat center/cover;
}

footer .right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
}

footer .copyright {
	color: #FFF;
}

footer .copyright span {
	display: block;
	text-align: right;
}

footer .copyright span:first-child {
	margin-bottom: 2rem;
}

footer .ewm-link-list {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}

footer .ewm-link-list .link {
	position: relative;
	margin: 0 5px;
}

footer .ewm-link-list .link .ewm {}

footer .ewm-link-list .link .ewm img {
	width: 12.7rem;
	display: block;
	margin: 0px auto;
}

footer .ewm-link-list .link .ewm p {
	margin: 0.6rem 0px 0px;
	color: #fff;
}

footer .ewm-link-list .link .icon {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	margin: 0 1rem;
	cursor: pointer;
}

footer .ewm-link-list .link:hover .ewm {
	display: block;
}

@media screen and (max-width:996px) {
	footer .con {
		flex-direction: column;
		align-items: flex-start;
	}

	footer .left,
	footer .right {
		width: 100%;
	}

	footer .footer-logo {
		width: 70%;
	}

	footer .right {
		align-items: center;
		justify-content: space-between;
	}

	footer .ewm-link-list {
		margin: 2rem 0;
	}

	footer .copyright span {
		text-align: center;
	}
}

@media screen and (max-width:800px) {}

@media screen and (max-width:680px) {
	footer .footer-logo {
		width: 100%;
	}
}

@media screen and (max-width:480px) {
	footer .ewm-link-list {
		flex-direction: column;
	}

	footer .ewm-link-list .link {
		margin: 5px;
	}
	footer .ewm-link-list .link .ewm img {
		width: 25rem;
	}
}


/* footer end */
