html {
	overflow-y: auto;
}
/* header start */

.header {
	position: relative;
	width: 100%;
	min-width: 30rem;
	z-index: 12;
	width: 100%;
	background: url('../images/header_bg.png') no-repeat center/cover;
	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 {

}


.header .top .right-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4rem;
}

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

.mobile-links {
	display: none;
}

.header .top .right-box .links a {
	color: #BB212F;
	padding: 0 2.4rem;
}

.header .top .right-box .links a:nth-child(2) {
	border-left: 1px solid #BB212F;
	border-right: 1px solid #BB212F;
}

.header .top .right-box .links a span:hover {
	color: #d9b657;
}

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

.logo {
	width: 32%;
	margin: 0 auto;
}

.logo .logo2 {
	display: none;
}

.logo a {
	position: static;
padding-bottom:3rem;
}

.logo .logo1 {

}
.sub-logo {
	display: none;
	width: 23.5%;
}
.sub-logo a {
	position: static;
}
.sub-logo .gp-img {
 
}
.ser {
	min-width: 27rem;
}

.search {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 9px 12px;
	background: #fff;
	border: 2px solid #BB212F;
	border-radius: 4px;
}

.search .notxt {
	color: rgba(0, 0, 0, 0.26);
}

.search .notxt1 {
	background-color: #BB212F;
	width: 4rem;
	height: 100%;
}

.search .serch-icon {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 2rem;
	height: 2rem;
	margin: 0;
}

.nav {
	position: relative;
	margin: 0 6rem;
}

.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 {
	position: relative;
	font-weight: 400;
	color: #FFFFFF;
	text-align: center;
	padding: 2.4rem 0;
	transition: all .3s ease-in-out;
	border-bottom: 2px solid #BB212F;
}

.nav ul li>a::before {
	content: "";
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 8px solid #BB212F;
	transition: all .3s ease-in-out;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.nav ul li:hover>a {
	background: #fff;
	color: #BB212F;
	font-weight: 600;
}

.nav ul li:hover>a::before {
	display: block;
}


.nav .sub_nav {
	position: absolute;
	left: 0%;
	top: 100%;
	display: none;
	width: 20rem;
	/* transform: translateX(-50%); */
	background: #FFFFFF;
	box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
	border: 1px solid #DCDCDC;
	padding: 8px 0;
}

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

.nav .sub_nav dd {
	/* position: relative; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1.6rem;
	padding-right: 2.4rem;
}

.nav .sub_nav dd .sub_thr_nav,
.nav .sub_nav dd .sub_thr_nav .sub_fore_nav {
	display: none;
	position: absolute;
	left: 100%;
	top: 0%;
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	border: 1px solid #DCDCDC;
	padding: 8px 0;
	box-shadow: 3px 3px 12px 0px rgba(0, 0, 0, 0.12);
}

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

.nav .sub_nav .arrow-icon {
	width: .8rem;
	height: .8rem;
	border-right: 2px solid #777;
	border-top: 2px solid #777;
	transform: rotate(45deg);
}

.nav .sub_nav dd:hover {
	color: #BB212F;
	font-weight: 500;
	background: #FFEBED;
}

.nav .sub_nav dd:hover>a {
	color: #BB212F;
}

.nav .sub_nav dd:hover>.arrow-icon {
	border-right: 2px solid #BB212F;
	border-top: 2px solid #BB212F;
}

.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;
}

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

.nav .sub_nav dd .sub_thr_nav dd .sub_fore_nav dd:hover {
	background-color: #BB212F;
}

.nav .sub_nav dd .sub_thr_nav dd .sub_fore_nav dd:hover a {
	color: #fff;
}

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

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

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

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

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

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

.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) {
	.mobile-links {
		display: flex;
		align-items: center;
		margin: 0 2rem;
		margin-top: 2rem;
		padding-left: 2rem;
	}

	.mobile-links a {
		color: #fff;
		margin: 0 2rem;
	}

	.header .top {
		padding: 1.4rem 0 1.4rem;
	}

	.header {
		background: #BB212F;
	}

	.logo {
		width: 23%;
		margin: 0;
	}

	.logo .logo2 {
		display: block;
		padding-bottom: 18.28%;
	}

	.logo .logo1 {
		display: none;
	}


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

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

	.header .top .right-box {
		display: none;
	}
}

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

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

}

/* 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: 18px;
		text-align: left;
		width: 22px;
		z-index: 1000;
		position: absolute;
		cursor: pointer;
		margin-right: 0;
		font-weight: 700;
		text-align: right;
		right: 20px;
		top: 12px;
		-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, .1);
		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(187, 33, 47, .9);
		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;
		-webkit-transition: all .5s;
		-moz-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
		color: #fff;
		font-weight: 500;
		padding: 16px 0px 14px 4rem;
	}

	.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,
	.mobile_thre_nav,
	.mobile_fore_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);
		padding-left: 38px;
		position: relative;
		padding: 0px 0px 16px 38px;
	}

	.mobile-nav dd .arrow {
		top: -10px;
	}

	.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: #fff;
		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_thre_nav,
	.mobile_fore_nav {
		margin-left: 3rem;
	}

	.mobile_sub_nav,
	.mobile_thre_nav,
	.mobile_fore_nav {
		display: none
	}


	/* li.on .mobile_sub_nav{display:block} */
	.search .notxt1 {
		width: 6rem;
		color: #fff;
	}

	.mobile_search {
		height: 56px;
		z-index: 600;
		border-radius: 5px;
		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: auto;
		margin: 2rem;
	}

	.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%;
		height: auto;
		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;
	}


}

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

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

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

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

}

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

/* footer start */
footer {
	position: relative;
	padding-top: 2.2rem;
	background: url('../images/footer_bg.png') no-repeat center top/cover;
}

footer .con {
	display:none;
}

footer .con .footer-logo {
	width: 22.5%;
	margin-right: 10rem;
}

footer .con .footer-logo .logo2 {
	display: none;
}

footer .con .footer-logo .gp-img {
	position: static;
	padding-bottom: 63.25%;
}

footer .con .list {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
}

footer .con .list .item {
	width: 33%;
}

footer .con .list .item .title-text {
	display: block;
	margin-bottom: 1.2rem;
	font-weight: 600;
}

footer .con .list .item dd {
	margin-top: 1.6rem;
}

footer .con .list .item dd a {
	display: block;
	color: #fff;
}

footer .con .list .item dd a:hover {
	color: #f38b37;
}

footer .copying {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2.4rem 0;
}

footer .copying span {
	display: inline-block;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 2rem;
}

@media screen and (max-width: 996px) {
	footer {
		padding-top: 5rem;
		padding-bottom: 3rem;
	}

	footer .copying {
		flex-direction: column;
	}

	footer .copying span {
		margin: 0rem;
		margin-bottom: 8px;
	}

	footer .con {
		flex-direction: column;
	}

	footer .con .footer-logo {
		width: 27%;
		margin: 0 auto;
		margin-bottom: 5rem;
	}

	footer .con .footer-logo .logo2 {
		display: block;
		padding-bottom: 18.35%;
	}

	footer .con .footer-logo .logo1 {
		display: none;
	}

	footer .con .list .item .title-text {
		font-size: 14px;
	}

	footer .con .list .item dd {
		font-size: 12px;

	}
}

@media screen and (max-width: 680px) {
	footer .con {
		padding-left: 0;
		padding-right: 0;
	}

	footer .con .list .item {
		width: 50%;
		margin-bottom: 5rem;
	}

	footer .con .footer-logo {
		width: 67%;
	}
}

@media screen and (max-width: 320px) {
	footer .con .list .item {
		width: 100%;
		margin-bottom: 5rem;
	}
	footer .con .footer-logo {
		width: 90%;
	}
}