.news_banner{
	width: 100%;
	height: 380px;
	overflow: hidden;
	background: url(../image/news_bg.jpg) no-repeat center center;
	text-align: center;
	position: relative;
}
.news_banner h1{
	font-size: 195px;
	line-height: 310px;
	margin: 70px 0 0;
	color: rgba(0,0,0,0.14);
	font-family: "Roboto-Black_0";
}
.news_banner h2{
	width: 100%;
	line-height: 310px;
	position: absolute;
	top: 70px;
	font-size: 48px;
	color: #FFFFFF;
}
#datactt{
	width: 100%;
	overflow: hidden;
	padding: 0 0 30px;
}
.news_list{
	width: 100%;
	overflow: hidden;
	padding: 20px 0 0;
}
.news_list li{
	width: 100%;
	overflow: hidden;
	padding: 50px 0;
}
.news_list li:nth-of-type(2n){
	background-color: #f8f8f8;
}
.news_list li a{
	display: block;
	min-height: 135px;
	overflow: hidden;
}
.list_time{
	width: 100px;
	overflow: hidden;
	float: left;
	text-align: right;
	font-family: arial;
	margin-top: 35px;
}
.list_time h4{
	font-size: 24px;
	color: #c7c7c7;
	font-family: "Roboto-Regular";
}
.list_time h2{
	font-size: 36px;
	color: #d7000f;
	font-family: "Roboto-Bold";
}
.list_time img{
	margin-right: 3px;
}
.list_content{
	float: right;
	width: 1195px;
	overflow: hidden;
	color: #949494;
	font-size: 16px;
	line-height: 25px;
}
.list_content img{
	width: 325px;
	float: left;
	margin-right: 40px;
}
.list_content h3{
	color: #333333;
	font-size: 24px;
	margin: 20px 0 15px;
	line-height: 28px;
	max-height: 56px;
	overflow: hidden;
}
.news_list li a:hover .list_content h3{
	color: #d7000f;
}
.news_list li a:hover .list_time img{
	animation: imgRight 1s 0s infinite;
}
.list_content p{
	height: 75px;
	overflow: hidden;
}
@keyframes imgRight{
	from{margin-right: 20px;}
	to{margin-right: -16px;}
}
@-moz-keyframes imgRight{
	from{margin-right: 20px;}
	to{margin-right: -16px;}
}
@-ms-keyframes imgRight{
	from{margin-right: 20px;}
	to{margin-right: -16px;}
}
@-webkit-keyframes imgRight{
	from{margin-right: 20px;}
	to{margin-right: -16px;}
}
@media only screen and (max-width:991px ) {
	.list_content{
		width: 550px;
	}
}
@media only screen and (max-width:767px ) {
	.news_list{
		padding: 0 0 20px;
	}
	.banner_menu{
		margin-top: 20px;
	}
	.banner_menu a{
		width: 100px;
		height: 32px;
		line-height: 30px;
		font-size: 14px;
		border: 1px solid #FFFFFF;
		border-radius: 6px;
		margin: 0 10px;
	}
	.news_list li {
	    padding: 30px 0;
	}
	.list_time{
		width: 100%;
		line-height: 30px;
		margin: 0 0 5px;
	}
	.list_time *{
		float: left;
		margin-right: 10px;
	}
	.list_time h4{
		font-size: 18px;
		color: #c7c7c7;
		line-height: 30px;
	}
	.list_time h2{
		font-size: 24px;
		color: #003a8f;
		line-height: 30px;
		font-weight: bold;
	}
	.list_time img{
		margin: 9px 3px 0 0;
	}
	.list_content{
		width: 100%;
		font-size: 14px;
		line-height: 20px;
	}
	.list_content img{
		width: 100%;
		float: none;
	}
	.list_content h3 {
	    font-size: 18px;
	    margin: 15px 0 10px;
	    max-height: 38px;
	}
	.list_content p{
		height: 40px;
	}
	.news_banner{
		height: 280px;
		background-size: auto 100%;
	}
	.news_banner h1{
		font-size: 81px;
		line-height: 230px;
		margin: 50px 0 0;
	}
	.news_banner h2{
		line-height: 230px;
		top: 50px;
		font-size: 36px;
	}
}
@media only screen and (min-width: 992px ) {
	.list_content{
		width: 830px;
	}
}
@media only screen and (min-width: 1250px ) {
	.list_content{
		width: 995px;
	}
}
/*新闻详情*/
.news_details{
	width: 100%;
	overflow: hidden;
	min-height: 400px;
}
.details_title{
	width: 100%;
	overflow: hidden;
	text-align: center;
	color: #666666;
	margin-bottom: 20px;
}
.details_title h1{
	color: #000000;
	font-size: 26px;
	line-height: 28px;
	margin-bottom: 20px;
}
.details_content{
	width: 100%;
	overflow: hidden;
	padding: 30px 0 60px;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	color: #666666;
	font-size: 14px;
	line-height: 25px;
}
.details_content img{
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.details_page{
	width: 100%;
	overflow: hidden;
	font-size: 14px;
	color: #a4a4a4;
	padding-top: 20px;
	line-height: 16px;
	position: relative;
}
.details_page li{
	height: 16px;
	overflow: hidden;
	text-overflow:ellipsis;
    white-space:nowrap;
}
.details_page li:first-of-type{
	margin-bottom: 10px;
}
.details_page a{
	color: #a4a4a4;
}
.details_page a:hover{
	color: #000000;
}
@media only screen and (max-width: 767px) {
	.news_details{
		padding: 10px 0px 20px;
	}
	.details_content{
		padding: 20px 0 30px;
		font-size: 12px;
		line-height: 20px;
	}
	.details_title h1{
		font-size: 24px;
		line-height: 26px;
		margin-bottom: 10px;
	}
	.details_page{
		font-size: 12px;
		padding-top: 10px;
		line-height: 14px;
	}
	.details_page li:first-of-type{
		margin-bottom: 5px;
	}
}