@charset 'utf-8';
.news-detail{
	width: 1200px;
	margin: 0 auto;}
.news-detail h2{
	text-align: center;
	line-height: 2
}
.news-detail .date{
	padding-bottom: 6px;
}
.news-detail .date,
.news-detail .info{ 
	text-align: center;
	line-height: 1.5;
}
.news-detail .news-content{
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 20px;
	margin-top: 10px;
}
.news-detail .news-content .img-wrap{
	text-align: center;
}
.news-detail .news-content h3{
	line-height: 3;
	text-indent: 2em;
}
.news-detail .news-content p{
	line-height: 2;
	text-indent: 2em;
}
.news-toggle-wrap{
	line-height: 60px;
}
.news-toggle-wrap>a:first-child{
	float:left;
}
.news-toggle-wrap>a:last-child{
	float:right;
}
.news-toggle-wrap>a:hover{
	color: #008ffd;
}

/* 功能条样式 */
.product-toolbar{
    line-height: 36px;
    margin: 10px 0 20px;
    background: #eeeeee;
}
.product-toolbar .toolbar-btn{
    display: block;
    float: left;
    cursor: pointer;
    padding: 0 20px;
}
.product-toolbar .toolbar-btn.active{
    background: #f30d0d;
    color: #fff;
}

/* 新闻列表样式 */
.news-list{
	text-align: left;
	font-size: 13px;
}
.news-list li{
	display: inline-block;
	width: 387px;
	margin: 0px 5px 10px;
	background: #eee;
}
.news-list li .new-img-wrap{
	height: 260px;
	overflow: hidden;
	position: relative;
}
.news-list li .new-img-wrap>img{
	position: absolute;
	width: 100%;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.news-list li .new-text-wrap{
	padding: 14px 24px 14px;
}
.news-list li .new-text-wrap h3{
	overflow: hidden;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 2;
}
.news-list li .new-text-wrap span{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-size: 12px;
	line-height: 1.8;
}
.news-list li .new-foot-wrap{
	padding: 8px 0;
	margin: 0 10px;
	border-top: 1px dashed #999;
}

.news-list li .new-foot-wrap .more-btn{
	display: block;
	float: right;
	padding: 3px 8px;
	font-size: 12px;
	border: 1px solid #ccc;
	background: #fff;
	transition: all 0.3s;
	-ms-transition: all 0.3s; 	/* IE 9 */
	-moz-transition: all 0.3s; 	/* Firefox */
	-webkit-transition: all 0.3s; /* Safari 和 Chrome */
	-o-transition: all 0.3s; 	/* Opera */

}
.news-list li .new-foot-wrap .more-btn:hover{
	background: #f30d0d;
	color: #fff;
	border-color: #f30d0d;
}
.news-list li .new-foot-wrap .more-btn:active{
	background: #d30a0a;
}