.n_news{
}

.content {
	background: url(../images/bg/form_bg.jpg);
	min-width: 1000px;
	min-height: 520px;
	padding: 40px 0 ;

}

.content:after {
	content: "";
	display: table;
	clear: both;
}


ul {
	/* 去掉列表前面的点号 */
	list-style-type: none;
	margin: 0 auto;
	width: 80%;
}


ul li {
	line-height: 50px;
	font-size: 16px;
	box-shadow: 0 0 10px #ccc;
	float: left;
	margin: 8px;
	display: flex;
}


ul li a {
	width: 100%;
	padding:5px 15px;
	color: #666;
	text-decoration: none;
	/* 让超链接以块级元素的形式显示，这一行非常重要 */
	display: block;
}

ul li :hover {
	/* 鼠标放上去是天蓝色 */
	/*color: #08c;*/
	/*border-radius: 5px;*/
	cursor: pointer;
	color: #333333;
	transform: scale(1.05);
	box-shadow: 0 0 10px #ccc;
	background-color: white;
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
}

/*ul li a span {*/
/*	!* 让日期浮动到最右边，注意：span一定要在标题的左边，否则低版本IE不兼容 *!*/
/*	float: right;*/
/*}*/