#navhead {
	width: 100%;
	height: 40px;
	background: rgb(6, 136, 211);
	margin-bottom: 5px;
}

ul#menu {
	width: 90%;
	max-width: 1240px;
	line-height: 36px;
	margin: auto;
	display: flex;
	text-align: left;
}

ul#menu li {
	flex: 1; /**宽度相等**/
	height: 40px;
	line-height: 40px;
	position: relative;
	text-align: center;
}

ul#menu li:hover {
	background: #ffc862;
}

#navhead ul a {
	width:100%;
	height: 100%;
	color: #fff;
	display: block;
	white-space: nowrap;
	text-transform: none;
}

ul#menu a:hover {
	color: #ff0000;
}
ul#menu li:hover>ul {
	display: block;
}
/***************************** Sub-menu ********************************/
ul#menu ul {
	display: none;
	position: absolute;
	width:100%;
	top: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
}
ul#menu ul li {
	width:100%;
	height:40px;
	line-height:40px;
	padding: 3px 0;
	font-size:14px;
	text-align:center;
	display: block;
	background: #e6e6e6;
	border-top:1px solid #fff;
	border-bottom: 1px solid #c0c0c0;
}

ul#menu ul li a {
	color: #666;
}
ul#menu ul li a:hover {
	color: #ff0000;
}
ul#menu ul li:hover{
	background: #f5f5f5 url(/images_pub/arr_r.png) left center no-repeat;
	border-bottom: 4px solid #ff0000;
}
.smallmenu li:nth-child(1):before {
	content: '';
	position: absolute;
	left: 30px;
	top: -8px;
	width: 0;
	height: 0;
	/**三角**/
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid #fff;
}

/*********************************** Third Grade Menu *********************************/
ul#menu ul ul {
	position: absolute;
	top: -15px;
	left: 150%;
	z-index: 10;
}

.grandmenu li:first-child:before{
	content: '';
	position: absolute;
	left: -13px;
	top: 16px;
	width: 0;
	height: 0;
	/**左侧三角**/
	border-top: 5px solid transparent;
	border-right: 8px solid #fff;
	border-bottom: 5px solid transparent;
}

/** Clear floated elements **/
ul#menu:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
}

.bMenuActive {
	background: #f29d00;
}
