

#news{
	width: 100%;
	background: #fff;
	padding: 50px 0 130px 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

	/*列表*/
	#news .news-list{
		width: 100%;
		max-width: 1200px;
		min-width: 1000px;
		margin: 0 auto;
		overflow: hidden;
		min-height: 600px;
	}
		#news .news-list .news-block{
			margin:18px;
			padding: 15px;
			width: 360px;
			display: inline-block;
			border: 1px solid #f2f2f2;
			-webkit-transition: all 0.2s ease-in;
			transition: all 0.2s ease-in;
			box-shadow:0 0 0 0 rgba(0,0,0,0.05);
		}
		
			#news .news-list .news-block a{
				overflow: hidden;
				display: block;
			}
			#news .news-list .news-block .pic{
				overflow: hidden;
				width: 100%;
				height: 180px;
			}
				#news .news-list .news-block .pic img{
					width: 100%;
					-webkit-transition: all 0.2s ease-in;
					transition: all 0.2s ease-in;
				}
		#news .news-list .news-block:hover{
			box-shadow: 0 5px 20px 0 rgba(0,0,0,0.5);
		}
			#news .news-list .news-block:hover .pic img{
			   	-webkit-transform:scale(1.05,1.05);
			   	transform:scale(1.05,1.05);
				width: 100%;
			}
		
			#news .news-list .news-block h1{
				color: #333;
				font-size: 16px;
				white-space:nowrap; 
				text-overflow:ellipsis;
				line-height: 26px;
				height: 35px;
				overflow: hidden;
				padding-top: 10px;
				-webkit-transition: all 0.2s ease-in;
				transition: all 0.2s ease-in;
			}
			#news .news-list .news-block a:hover h1{
				color: #023894;
			}
			
			#news .news-list .news-block span.date{
				display: block;
				color: #888;
				font-size: 12px;
				margin-bottom: 5px;
			}
			#news .news-list .news-block p{
				height: 100px;
				color: #333;
			}
			#news .news-list .news-block .label{
				line-height: 1em;
				margin:12px 0 8px 0;
				color: #888;
			}
				#news .news-list .news-block .label a{
					display: inline-block;
					color: #023894;
				}
	
	/*详情*/
	#news .news-detail{
		width: 100%;
		max-width: 1200px;
		min-width: 1000px;
		margin: 0 auto;
		overflow: hidden;
	}
		/*相关新闻*/
		#news .news-detail .relevantNews {
			float: right;
		    width: 350px;
		    overflow: hidden;		    
		    background: #fbfbfb;
		    padding: 25px 0 0;
		    color: #1d1d1d;
		    font-size: 14px;
		}
			#news .news-detail .relevantNews h5{
			    font-size: 18px;
			    line-height: 18px;
			    font-weight: 700;
			    border-left: 5px solid #023894;
			    padding-left: 25px;
			}
			#news .news-detail .relevantNews ul.RN_list {
			    padding: 15px 30px;
			}
				#news .news-detail .relevantNews ul.RN_list li {
				    border-bottom: 1px solid #ececec;
				    padding: 10px 0;
				}
				#news .news-detail .relevantNews ul.RN_list li a {
				    max-height: 46px;
				    overflow: hidden;
				    color: #333;
					font-size: 16px;
				}
				#news .news-detail .relevantNews ul.RN_list li p {
				    color: #999;
				    margin-top: 3px;
				    font-size: 12px;
				}
		/*新闻详情*/
		#news .news-detail .detailCon{
			float: left;
		    width: 830px;
		    overflow: hidden;		    
		    background: #fbfbfb;
		    padding: 25px;
		    color: #1d1d1d;
		    font-size: 14px;
		}
			#news .news-detail .detailCon h1{
				color: #333;
				font-size: 26px;
				font-weight: bolder;
				line-height: 45px;
			}
			#news .news-detail .detailCon span.date{
				display: block;
			    color: #888;
			    font-size: 13px;
			    margin-bottom: 30px;
			}
			#news .news-detail .detailCon .text{
				width: 100%;
				overflow: hidden;
			}
				#news .news-detail .detailCon .text p{
					color: #333;
				    font-size: 14px;
				    line-height: 25px;
				    text-indent: 25px;
				}
