@charset "utf-8";

/*--------------------
	news
--------------------*/
#news {
	margin: 0 10px;
}
#news .category{
	overflow: scroll;
}
#news .category_list {
	margin: 0;
	width: 1050px;
	height: 52px;
    list-style: none;
	background: #eee;
}
#news .category_list li {
	position: relative;
    width: 150px; height: 50px;
	line-height: 50px;
	margin: 0;
	border: 1px solid #FF6666;
	box-sizing: border-box;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 15px;
	background-color: #FF6666;
    float: left;
    cursor: pointer;
	transition: 300ms;
	z-index: 1;
}
#news .category_list li:last-child {
	margin-right: 0;
}
#news .category_list li:hover, #news .category_list li.active {
	color: #FF6666;
    background: #fff;
}

#news .category_list .news_culturecenter {
	line-height: normal;
	padding-top: 3px;
	font-size: 0.8em;
}
#news .category_list li span {
	display: block;
}
main[data-fsize="large"] #news .category_list .news_culturecenter {
	padding-top: 1px;
}

#news .news_list {
	margin-top: -2px;
	padding: 5px 10px;
	height: 500px;
	border: 1px solid #FF6666;
	background: #fff;
	overflow: auto scroll;
}
#news .news_list ul {
	display: none;
	margin: 0;
	list-style: none;
}

#news .news_list li {
	margin: 0;
	border-bottom: solid 1px #ccc;
}
#news .news_list li a {
	display: block;
	padding: 3px 5px;
	color: inherit;
	text-decoration: none;
	transition: 150ms;
}
#news .news_list li a .date::after {
	content: ".";
	display: inline-block;
	width: 30px;
	margin: 0 10px;
	padding: 2px 10px;
	font-size: 0;
}
#news .news_list li.new a .date::after {
	content: "NEW";
	margin-top: -1px;
	border-radius: 5px;
	color: #fff;
	font-size: 0.8em;
	background: #ff0000;
}
#news .news_list li a .category {
	padding: 2px 10px;
	border-radius: 5px;
	color: #fff;
	font-size: 0.8em;
}