/**
 * 公共样式文件
 *
 * 二级导航
 */

.w_header_nav > ul {
    width: 1120px;
	white-space:nowrap !important;
}
.w_header_nav > ul > li {
	position: relative;
	padding-top: 0;
	padding-bottom: 0;
}
.w_header_nav > ul > li > a {
	height: 55px;
	line-height: 55px;
	color: white !important;
}

.w_header_nav > ul > li > ul {
	min-width: 100%;
	position: absolute;
	top: 100%;
	padding-left: 0;
	text-align: center;
	list-style: none;
	background: #fff;
	z-index: 990;
	display: none;
}
.w_header_nav > ul > li > ul > li a {
	display: inline-block;
	width: 100%;
	padding: 10px 15px;
}
.w_header_nav > ul > li > ul > li > a:hover {
	color: red;
}
.w_header_nav > ul > li:hover > ul{
	color: red !important;
	display: block;
}
.w_header_nav > ul > li > a {
	width: auto;
	padding: 0 20px;
}

/**
 * 返回顶部
 */
#topcontrol {
	bottom: 55px !important;
}

/**
 * 隐藏屏幕小于768px时出现的logo
 */
@media only screen and (max-width: 768px) and (min-width: 100px){
	.w_logo {
	    display: none;
	}
}

/**
 * 文章列表中的发布人昵称、阅读量、发布时间滑过变为小手
 */
span.count {
	cursor: pointer;
}

/**
 * 屏幕宽度小于1200px时隐藏搜索框
 */
@media screen and (max-width: 1200px) {
	.w_searchbox {
		display: none;
	}
}

/**
 * 设定导航菜单高度
 */
.w_header .container {
    height: 55px;
}