

/*part6*/
.member-nav {
	position: relative;
}
.member-nav a {
	width: 20%;
	height: 80px;
	background: #eaeaea;
	display: block;
	float: left;
	text-align: center;
	position: relative;
}
.member-nav a::after {
	content:"";
	position: absolute;
	width: 1px;
	height: 37px;
	background: #ddd;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.member-nav a:last-child::after {
	display: none;
}
.member-nav a:first-child {
	border-radius: 5px 0 0 0;
}
.member-nav a:last-child {
	border-radius: 0 5px 0 0;
}
.member-nav a b {
	font-size: 20px;
	color: #999;
	display: block;
	margin-top: 20px;
}
.member-nav a em {
	font-style: normal;
	display: block;
	color: #d6d6d6;
	font-size: 14px;
	margin-top: 10px;
}
.member-nav a strong {
	font-weight: normal;
	display: block;
	margin-top: 4px;
	display: none;
}
.member-nav a strong i {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url("/style/images/stars-ico.png") no-repeat;
	background-size: cover;
	margin: 0 3px;
}
.member-nav a.focus {
	color: #fff;
	height: 92px;
	margin-top: -12px;
	border-radius: 5px 5px 0 0;
	background: url("/style/images/member-nav.png") no-repeat;
	background-size: cover;
	box-shadow: 0px 1px 6px 0 rgba(115,254,108,0.4);
}
.member-nav a.focus::after {
	display: none;
}
.member-nav a.focus b{
	color: #fff;
}
.member-nav a.focus em{
	color: #fff;
}
.member-nav a.focus strong {
	display: block;
}
.member-list {
	display: none;
	height: 330px;
	background: #fff;
	overflow: hidden;
}
.member-list ul {
	padding: 15px;
	overflow: hidden;
}
.member-list ul li {
	width: 25%;
	float: left;
	padding: 0 10px;
	box-sizing: border-box;
}
.member-list ul li p {
	height: 55px;
	line-height: 55px;
	overflow: hidden;
	font-size: 14px;
	border-bottom: 1px #e8e8e8 dashed;
}

.member-list ul li p span {
	height: 20px;
	line-height: 20px;
	display: inline-block;
	font-size: 12px;
	color: #fff;
	background: #46c53f;
	width: 45px;
	border-radius: 20px;
	position: relative;
	margin-left: 10px;
	text-indent: 16px;
	box-shadow: 0px 2px 4px 0 rgba(115,254,108,0.4);
	margin-right: 7px;
	top: -2px;
}
.member-list ul li p span b {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -10px;
	box-shadow: 2px 0px 2px 0 rgba(115,254,108,0.6);
	background: url("/style/images/member-ico.png") no-repeat;
	background-size: cover;
}
.member-list ul li p a {
	color: #333;
}
.member-list ul li p a:hover {
	color: #46c53f;
	//font-weight: bold;
}
/*part6 End*/