/* 公共样式-start */
/* 定义总体宽度 */
.container{
	width: 1180px;
	margin: 0 auto;
}
/* 定义清除浮动 */
.clearfix::after{
	content: "";
	display: block;
	clear: both;
}
/* 左右浮动 */
.float-left{
	float: left;
}
.float-right{
	float: right;
}
/* 定义定位 */
.posi-rea{
	position: relative;
}
/* 页面样式 */
/* 导航-header-start */
header{
	height: 100px;
	background-color: #FFFFFF;
}
header .container{
	position: relative;
}
.logo{
	width: 426px;
	height: 313px;
	position: absolute;
	z-index: 9;
	border-radius: 0 0 50px 10px;
	text-align: center;
}
.logo-img{
	width: 100%;
	margin-top: 12px;
}
.navigation {
	padding: 28px 0;
	height: 100px;
	box-sizing: border-box;
}
.navigation li{
	float: left;
	height: 100%;
}
.navigation li>a{
	display: inline-block;
	font-size: 18px;
	color: #455164;
	padding: 0 10px;
	position: relative;
	height: 100%;
	margin-top: 10px;
}
.navigation li.active>a{
	color: #00a13d;
}
.navigation li.active>a::after{
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #00A13D;
}
nav .sign-in{
	display: block;
	margin: 28px 0 38px 20px;
	width: 99px;
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	height: 34px;
	line-height: 34px;
	background-color: #00a13d;
	border-radius: 17px;
}
/* 导航-header-end */