/*左侧菜单导航*/
.left_nav{
	width: 15%;
	height: 100%;
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.left_nav li{
	height: 48px;
	line-height: 48px;
	width: 100%;
	display: flex;
	justify-content: center;
}
.left_nav li a{
	color: #303336;
	display: block;
	margin: 0 8px;
	width: 36%;
	height: 100%;
	text-align: center;
}
.left_nav li a:hover,
.left_nav li a:active,
.left_nav li a:focus,
.left_nav li .active,
.left_nav li a:hover span{	
	color: #009040;
	font-weight: 600;
}
.left_nav li .active::after{
	background: #AAE6C5;
	height: 8px;
	width: 100%;
}
.left_nav li a::after {
	content: '';
	width: 0;
	height: 8px;
	background: #AAE6C5;
	display: block;
	margin-top: -20px;
	transition: all 0.3s;
}
.left_nav li a:hover::after{
	width: 100%;
	
}
.left_nav_two li a{
	margin-right: 18px;
}
.left_nav_two .two_menu{
	align-items: center;
}
.left_nav_two .one_menu a{
	margin-left: -2px;
}
.left_nav_two .two_menu span{
	color: #969A9D;
	font-size: 8px;
}
/*鼠标经过出二级菜单*/
.left_nav li .sub_nav{
	display: none;
}
.left_nav_two li:hover .sub_nav,
.left_nav_two li:focus .sub_nav{
	display: block;
	background: rgba(213, 236, 223, 0.7);
	border-radius: 0px 30px 30px 0px;
	position: absolute;
	left: 12%;
	top: 24%;
	z-index: 999;
	padding: 24px 0;
}
.left_nav_two li:hover .sub_nav a::after{
	display: none;
}
.left_nav_two .sub_nav li{
	height: 48px;
	line-height: 48px;
	padding: 0 4px 0 0;
	margin: 0 8px 8px 8px;
}
.left_nav_two .sub_nav li:last-child{
	margin-bottom: 0;
}
.left_nav_two .sub_nav li:hover a{
	background: rgba(0, 144, 64, 0.5);
	color: #fff;
	border-radius: 0px 22px 0px 22px;
}
.left_nav_two .sub_nav li a{
	color: #303336;
	display: block;
	width: 100%;
}
