



/*新闻中心*/
.news_center{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 130px;
}
.news_list{
	position: relative;
	width: 580px;
	height: 240px;
	padding: 20px;
	margin-bottom: 40px;
	border: 1px solid #e1e1e1;
	box-sizing: border-box;
	/*overflow: hidden;*/
}


.news_top,.news_right,.news_bottom,.news_left{
	position: absolute;
	z-index: 2;
	background-color: rgb(206,0,0);
}
.news_top,.news_bottom{
	width: 0;
	height: 1px;
}
.news_right,.news_left{
	width: 1px;
	height: 0;
}
.news_top{
	top: -1px;
	left: -1px;
}
.news_right{
	top: -1px;
	right: -1px;	
}
.news_bottom{
	bottom: -1px;
	right: -1px; 
}
.news_left{
	bottom: -1px;
	left: -1px;
}


.news_img{
	width: 200px;
	height: 200px;
	float: left;
	background-color: #C03F3E;
	overflow: hidden;
}
.news_img img{
	display: block;
	width: 100%;
	height: 100%;
	transition: all 2s;
}
.news_list:hover{
	box-shadow: 0 0 10px #b6b6b6;
}
.news_list:hover img{
	transform: scale(1.5,1.5);
	-ms-transform: scale(1.5,1.5);
	-webkit-transform: scale(1.5,1.5);
}
.news_content{
	position: relative;
	left: 20px;
	top: 0;
	float: right;
	width: 320px;
	height: 200px;
}
.news_title{
	font-size: 20px;
	padding-right: 20px;
	box-sizing:border-box;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.news_time{
	color: #808080;
	padding: 15px 0;
}
.news_text,.news_time{
	font-size: 15px;
}
.news_text{
	display: inline-block;
	height: 60px;
	line-height: 30px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	padding-right: 20px;
	box-sizing:border-box;
}
.news_btn{
	/*display: none;*/
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 35px;
	line-height: 35px;
	background-size: 100% 100%;
}

.news_list_btn{
	width: 100%;
	padding-bottom: 20px;
}
.news_list_btn .btn{
	margin: 0 auto;
}
.newsList_none{
	text-align: center;
	padding-bottom: 30px;
}






/*窗口宽度大于768px小于1200px*/
@media screen and (min-width:768px) and (max-width:1200px){


.news_list{
	width: 100%;
	/*height: 180px;*/
}


.news_img{
	width: 200px;
	height: 200px;
}
.news_content{
	width: 492px;
}



.news_btn{
	left: auto;
	right: 20px;
	width: 120px;
	height: 40px;
	font-size: 15px;
	line-height: 40px;
}



}







/*******************手机***********************/
@media screen and (max-width:767px){

.news_center{
	margin-top: 90px;
}

.news_list{
	width: 100%;
	height: auto;
	padding: 0.4rem;
}
.news_img{
	width: 30%;
	height: 100%;
}
.news_content{
	width: 70%;
	height: auto;
	left: 0;
	float: left;
	padding: 0 0 0 0.5rem;
	box-sizing: border-box;
}
.news_title{
	font-size: 18px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.news_time{
	padding: 0.2rem 0;
}
.news_text{
	padding: 0;
	height: 43px;
	line-height: 21px;
}
.news_btn{
	display: none;
}






}