@charset "utf-8";

/**********************头部导航*********************/

body {
	overflow-x: hidden;
  overflow-y:scroll;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 24px 5% 24px 5%;
	transition: all 0.5s;
}

.header .logo_box {
	width: 12%;
	height: auto;
}

.header .logo_box img {
	width: 100%;
}

.header .nav_list {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
	width: calc(100% - 10% - 92px);
	padding: 0 5%;
}

.header .nav_list li {
	width: calc(100% / 8);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.header .nav_list li>a {
	color: #fff;
	font-size: 16px;
	display: block;
	position: relative;
	line-height: 20px;
	transition: all 0.5s;
	height: 64px;
	display: flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	text-transform: uppercase;
	padding: 0 5px;
}

.header .nav_list li.active>a,
.header .nav_list li:hover>a {
	color: #e30213;
}

.header .nav_list li>a:after {
	width: 100%;
	height: 4px;
	background: #e30213;
	content: "";
	display: block;
	transform: scaleX(0);
	transition: all 0.5s;
	position:absolute;
	bottom:0;
}

.header .nav_list li>a.active:after,
.header .nav_list li:hover>a:after {
	transform: scaleX(1);
}

.header .language {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding: 0 8px;
	height: 18px;
	transition: all 0.6s;
}

.header .language li {
	font-size: 16px;
	color: #fff;
	padding: 0 8px;
	transition: all 0.5s;
	cursor: pointer;
}

.header .language li.active {
	color: #e30213 !important;
}

.header.fixed {
	background: #fff;
	border-bottom: 1px solid #dfdfdf;
}

.header.fixed .nav_list li>a {
	color: #333;
}

.header.fixed .language li {
	color: #666;
}
.header .menu_btn {
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 20;
	display:none;
}

.header .menu_btn .hbg_icon {
	transition: all 0.3s 0.3s;
}

.header .menu_btn.close_btn .hbg_icon {
	transform: scaleY(1.5);
}

.header .menu_btn span {
	width: 43px;
	height: 3px;
	background: #FFF;
	margin: 8px 0;
	display: block;
	transform-origin: left;
	transition: all 0.3s 0.3s;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}
.header.fixed .menu_btn span{
	background: #333;
}
.header .menu_btn span:nth-child(2) {
	transition: all 0.3s;
}

.header .menu_btn.close_btn span:nth-child(2) {
	transform: scaleX(0);
}

.header .menu_btn.close_btn span:nth-child(1) {
	transform: rotateZ(30deg);
}

.header .menu_btn.close_btn span:nth-child(3) {
	transform: rotateZ(-30deg);
}

.header .menu_btn i {
	font-size: 14px;
	color: #fff;
	font-style: normal;
}

.header .menu_btn.close_btn i {
	display: none;
}

@media only screen and (min-width: 100px) and (max-width: 1500px){
	.header .nav_list li>a{
		font-size:14px;
	}
	.header .language li {
		font-size:14px
	}
}
@media only screen and (min-width: 100px) and (max-width: 1200px) {
	.header .menu_btn{
		display:block;
	}
	.header .nav_list{
		position: fixed;
		top:0;
		left:0;
		width: 100%;
		height: 100vh;
		background: rgba(0,0,0,.8);
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		padding: 130px 0 80px;
		transform: scaleY(0);
		transform-origin: top;
		transition: all 0.5s;
	}
	.header .nav_list li{
		width: 100%;
	}
	.header .logo_box{
		background: url(../images/header_logo2.png) no-repeat left center;
		background-size:auto 100% ;
	}
	.header .logo_box,
	.header .logo_box img{
		height: 40px;
		width: auto;
		position: relative;
		z-index: 22;
		transition: all 0.5s;
	}
	
	.header .language{
		position: fixed;
		top:90px;
		left:0;
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		border:none;
		opacity: 0;
		transition: all 1s;
	}
	.header.show .logo_box img{
		opacity: 0;
	}
	.header.show  .nav_list{
		transform: scaleY(1);
	}
	.header.show .language{
		opacity: 1;
	}
	.header.fixed.show {
	background: none;
	border-bottom: 1px solid #dfdfdf;
}

.header.fixed.show .nav_list li>a {
	color: #fff;
}

.header.fixed.show .language li {
	color: #fff;
}
.header.fixed.show .menu_btn span{
	background:#fff;	
}
}

@media only screen and (min-width: 100px) and (max-width: 640px){
	.header .logo_box,
	.header .logo_box img{
		height: 30px;
		width: auto;
	}
	.header .menu_btn{
		transform: scale(0.8);
	}
}
/**********************头部导航*********************/


/**********************底部导航*********************/

.footer {
	background: #333333;
	padding: 60px 0;
}

.footer .inner_box {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.footer .inner_box .footer_nav {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid #fff;
	flex-wrap: wrap;
}

.footer .inner_box .footer_nav a {
	color: #fff;
	margin-right: 30px;
	line-height: 20px;
	padding-bottom: 20px;
	display: block;
	text-transform: uppercase;
}

.footer .inner_box .address_box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	padding-top: 40px;
}

.footer .inner_box .address_box p {
	font-size: 14px;
	color: #fff;
	line-height: 2em;
	color: rgba(255, 255, 255, .6)
}

.footer .inner_box .address_box p a {
	font-size: inherit;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
}

.footer .inner_box .address_box p:last-child {
	padding-top: 10px;
}

.footer .inner_box .address_box .right_ewm {
	padding-bottom: 10px;
}
.footer .inner_box .address_box .right_ewm img{
	width: 120px;
}
@media only screen and (min-width: 100px) and (max-width: 940px) {
	.footer {
		padding:0 0 20px;
	}
	.footer .inner_box .footer_nav{
		display:none;
	}
	.footer .inner_box .footer_nav a{
		margin: 0 15px;
	}
	.footer .inner_box .address_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.footer .inner_box .address_box p {
		text-align: center;
		font-size: 12px;
	}
	.footer .inner_box .address_box .right_ewm{
		margin-top: 20px;
	}
}

/**********************底部导航*********************/


/**********************内页banner*********************/

.inner_banner_box {
	position: relative;
}

.inner_banner_box .img_box {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
@media only screen and (min-width: 100px) and (max-width: 640px) {
	.inner_banner_box .img_box{
		height: 350px;
	}
}
.inner_banner_box .img_box img {
	min-width: 100%;
	height: 100%
}

.inner_banner_box .text_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 34px;
	color: #fff;
	line-height: 62px;
}
@media only screen and (min-width: 100px) and (max-width: 640px) {
	.inner_banner_box .text_box{
		padding-bottom: 12%;
	}
}
.inner_banner_box .text_box h3.en {
	font-weight: normal;
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3em;
}

.inner_banner_box .text_box h4.cn {
	font-size: 34px;
}

.inner_sub_nav {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-top: 200px;
}

.inner_sub_nav ul {
	width: 90%;
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.inner_sub_nav ul li {
	background: #c90004;
	color: #fff;
	margin: 2px 1px 0;
}

.inner_sub_nav ul li:nth-child(2) {
	animation-delay: 0.6s;
}

.inner_sub_nav ul li:nth-child(3) {
	animation-delay: 1.2s;
}

.inner_sub_nav ul li:nth-child(4) {
	animation-delay: 1.8s;
}

.inner_sub_nav ul li:nth-child(5) {
	animation-delay: 2.4s;
}

.inner_sub_nav ul li a {
	background: #ad2f24;
	color: #fff;
	width: 100%;
	height: 66px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	text-transform: uppercase;
	padding: 0 20px;
	text-align: center;
}
@media only screen and (min-width: 100px) and (max-width: 640px) {
	.inner_sub_nav ul li a{
		font-size:14px;
	}
}

.inner_sub_nav ul li.active a {
	color: #c90004;
	background: #fff;
}


/**********************内页banner*********************/


/**********************标题元素*********************/


/*1*/

.title_box {
	text-align: center;
}

.title_box h3 {
	font-size: 24px;
	color: #444;
	line-height: 54px;
}

.title_box h4 {
	font-size: 20px;
	line-height: 1.2em;
	color: #999999;
	font-weight: normal;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.title_box.width h3,
.title_box.width h4 {
	color: #fff;
}

.title_box.left {
	text-align: left;
}


/*1*/


/*2*/

.title2_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
}

.title2_box h3 {
	font-size: 20px;
	line-height: 2em;
	padding: 0 20px;
	background: url(../images/title2_bg.png) no-repeat center bottom;
	background-size: 100% 2px;
	text-transform: uppercase;
	text-align: center;
}

.title2_box p {
	font-size: 15px;
	color: #333333;
	line-height: 2.3em;
	text-transform: uppercase;
}


/*2*/


/*3*/

.title3_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.title3_box.left {
	align-items: flex-start;
}

.title3_box h3 {
	font-size: 20px;
	color: #333;
	line-height: 1.8em;
	text-transform: uppercase;
}

.title3_box.white h3 {
	color: #fff;
}

.title3_box em {
	width: 76px;
	height: 3px;
	background: #d2ab77;
	display: block;
}


/*3*/


/**********************标题元素*********************/

.scroll_pst {}


/*********************分页**********************/

.page_box {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.page_box ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}

.page_box ul li a {
	width: 30px;
	height: 30px;
	background: #e2e2e2;
	display: block;
	text-align: center;
	line-height: 30px;
	margin: 0 7px;
	color: #333;
	transition: all .3s linear;
}

.page_box ul li.active a,
.page_box ul li:hover a {
	background: #e60012;
	color: #fff;
}


/*********************分页**********************/