@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.clearfix:after {
	content: "."; 
	display: block; 
	height:0; 
	clear:both; 
	visibility: hidden;
}
.clearfix{
	*zoom:1;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
a{
	text-decoration: none;
}
html,
body {
	position: relative;
	height: 100%;
	background: #eee;
}
img{
	max-width: 100%;
}

/* 头部 */
.header{
	height: 180px;
	padding: 30px 40px 0 35px;
}
.header .logo{
	font-size: 0;
}
.header .logo .img{
	max-height: 100px;
}
.header .title-group{
	
}
.header .title-group .en_title{
	font-size: 28px;
	color: #FFFFFF;
	font-weight: lighter;
}
.header .title-group .title{
	font-size: 20px;
	color: #FFFFFF;
	font-weight: lighter;
}
.header .knav{
	margin-left: 40px;
}
.header .knav .language-box{
	margin-bottom: 20px;
}
.header .knav .language-box a{
	font-size: 16px;
	color: #ffffff;
	font-weight: lighter;
	margin-right: 30px;
}
.header .knav .language-box a:last-child{
	margin-right: 0;
}
.header .knav .nav{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header .knav .nav .item {
	font-size: 14px;
	color: #ffffff;
	font-weight: lighter;
}
.header .knav .nav .item:last-child {
	margin-top: 0;
}
.header .knav .nav .item.active{
	background: #7d7488;
}
.header .menu{
	display: none;
}
.mask{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	z-index: 88;
}
.wapnav{
	position: fixed;
	background-color: #92d14f;
	z-index: 99;
	width: 200px;
	left: -100%;
	top: 0;
	height: 100%;
	transition: all .3s;
}
.wapnav .title{
	font-size: 16px;
	padding: 15px;
	border-bottom: 1px solid #ffffff;
	text-align: center;
	color: #FFFFFF;
}
.wapnav .nav{
	display: flex;
	flex-direction: column;
}
.wapnav .nav .item{
	padding: 15px;
	border-bottom: 1px solid #ffffff;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
}
.wapnav .language-box{
	display: flex;
	align-items: center;
	justify-content: center;
}
.wapnav .language-box a{
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	font-size: 14px;
	color: #ffffff;
	position: relative;
}
.wapnav .language-box a::after{
	content: '';
	display: inline-block;
	position: absolute;
	width: 1px;
	height: 20px;
	background: #ffffff;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	-ms-transform: translate(0,-50%);
	-o-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.wapnav .language-box a:last-child::after{
	display: none;
}
/* 头部 */
@media screen and (max-width: 749px) {
	.header{
		height: 70px;
		padding: 0 15px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.header::after{
		display: none;
	}
	.header .logo .img {
	    max-height: 40px;
	}
	.header .title-group{
		display: none;
	}
	.header .knav{
		display: none;
	}
	.header .menu{
		display: block;
		width: 35px;
		height: 35px;
		background: #ffffff url(../image/icon1.png) no-repeat center;
		background-size: 30px 30px;
		border-radius: 5px;
	}
}