@charset "utf-8";

#nav{
	width: 100%;
	text-align: center;
	padding-top: 5px;
	background: #fff;
	border-bottom: 1px solid #ccc;
}
#nav>ul{
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	width: 1050px;
	margin: 0 auto;
}
#nav>ul li{
	width: 16.6%;
}
#nav>ul li a{
	display: block;
	text-align: center;
	font-size: 12px;
	padding: 5px 0 6px;
	border-bottom: 2px solid #fff;
}
#nav>ul li a:hover,
#nav>ul li a.active{
	text-decoration: none;
	border-bottom: 2px solid #24b4c0;
}
#nav ul li>ul{
	height: auto!important;
	display: none;
	position: absolute;
	z-index: 1000;
	background: #ffffff;
	border-top: 1px solid #24b4c0;
	margin-top: -1px;
}
#nav ul li>ul li{
	float: none;
}
#nav ul li>ul li a{
	padding: 5px 0 6px;
	font-size: 12px;
	text-align: left;
	padding-left: 10px;
	width: 180px;
	background: #fff;
	border: 1px solid #ddd;
	border-bottom: none;
}
#nav ul li>ul li:last-child a{
	border-bottom: 1px solid #ddd;
	border-top: none;
}
#nav ul li>ul li a:hover{
	background: #24b4c0;
	color: #fff;
}