.menu-wrapper{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 2999;
	display: none;
  flex-direction: column;
}
.menu{
	overflow: auto;
  flex-grow: 1;
}
.menu-hd{
	padding: 15px 0;
	position: relative;
	border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 5px 8px 0 rgba(100, 100, 100, 0.1);
}
.menu-hd h5{
	text-align: center;
}
.menu-hd .menu-close{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.menu-hd .menu-close i{
	color: #999;
	font-weight: bold;
}
.menu-bd{
	padding: 20px 10px;
}
.menu .item{
	padding-top: 15px;
}
.menu .item:first-child{
	padding-top: 0;
}
.menu h6{
	font-size: 14px;
  	font-weight: normal;
	color: #666;
	margin-bottom: 15px;
}
.menu ul{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
	flex-wrap: wrap;
}
.menu li{
	width: 31%;
  	text-align: center;
	/*padding: 0 5px;
	line-height: 2.8;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;*/
	font-size: 14px;
	background-color: #eaeef3;
	border-radius: 4px;
	margin-bottom: 10px;
	border: 1px solid #eaeef3;
  padding: 9px 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu li:not(:nth-child(3n)){
	margin-right: 3.5%;
}
.menu a{
	color: inherit;
}
.menu li.active{
	background-color: #fff;
	border: 1px solid #3B58AD;
	color: #3B58AD;
}
.tab-nav{
	position: relative;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}

.tab-nav-item{
	display: inline-block;
	padding-bottom: 15px;
	font-size: 15px;
	margin-right: 30px;
	position: relative;
	font-weight: bold;
	color: #999;
}
.tab-nav-item.active{
	color: #333;
}
.tab-nav-item.active:after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #3B58AD;
	position: absolute;
	bottom: 0;
	left: 0;
}
