@charset "gb2312";
.news-holder {
	width: 100%;
}
.news-banner {
	width: 100%;
	height: 300px;
}
.news-banner li {
	width: 100%;
	height: 100%;
	background-image: url(../img/news-banner.jpg);
	background-repeat: repeat-x;
	background-position: center;
}
/*---------------------------------------------------------*/
.news-nav {
	width: 100%;
	height: 81px;
	padding: 20px 0px;
	margin: 0px auto 40px auto;
	border-bottom: 1px solid #DDD;
}
.news-nav li {
	width: 1200px;
	margin: auto;
}
.news-nav li a {
	display: block;
	float: left;
	height: 40px;
	padding: 0px 40px;
	margin-right: 20px;
	background-color: #38a7ff;
	color: #FFF;
	line-height: 40px;
	font-size: 16px;
}
.news-nav li a:hover {
	background-color: #0f6eb9;
}
.news-nav li .current {
	background-color: #0f6eb9;
}
/*---------------------------------------------------------*/
.news-list-holder {
	width: 1200px;
	margin: auto;
}
/*---------------------------------------------------------*/
.news-list {
	width: 100%;
}
.news-list .list {
	width: 100%;
	height: 160px;
	margin-bottom: 30px;
}
.news-list .img {
	width: 200px;
	height: 160px;
	float: left;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.news-list .content {
	margin-left: 240px;
	height: 160px;
}
.news-list .content .title {
	display: block;
	width: 100%;
	height: 30px;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	word-break: keep-all;/* 不换行 */
	white-space: nowrap;/* 不换行 */
	overflow: hidden;/* 内容超出宽度时隐藏超出部分的内容 */
	text-overflow: ellipsis;/* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
}
.news-list .list:hover .content .title {
	font-size: 22px;
}
.news-list .content .time {
	display: block;
	width: 100%;
	height: 20px;
	font-size: 12px;
	color: #CCC;
}
.news-list .content .text {
	display: block;
	width: 100%;
	height: 110px;
	line-height: 22px;
	font-size: 14px;
	color: #666;
	overflow: hidden;
}