* {
	margin: 0;
	padding: 0;
}

.body{
	margin-bottom: 1.4rem;
	width: 100%;
	height: auto;
	margin-top: 0.8rem;
}
.news_list .news_item{
	width: 100%;
	height: 2.6rem;
	background: #F5F5F5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	margin-bottom: 0.25rem;
}
.news_list .news_item:last-child{
	margin-bottom: 0;
}
.news_list .news_item .news_fl{
	width: calc(100% - 2.6rem);
	display: flex;
	align-items: center;
}
.news_list .news_item .news_img{
	width: 3.5rem;
	height: 2.2rem;
	overflow: hidden;
	margin: 0.2rem 0.5rem 0.2rem 0.2rem;
	float: left;
	overflow: hidden;
}
.news_list .news_item .news_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition:all .4s;
	-moz-transition:all .4s;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
}
.news_list .news_item .news_txt{
	width: 8.7rem;
}
.news_list .news_item .news_title{
	width: 8.7rem;
	font-family: AlibabaPuHuiTi-SemiBold;
	font-size: 0.2rem;
	color: #234529;
	margin-bottom: 0.28rem;
}
.news_list .news_item .news_cont{
	width: 8.7rem;
	height: 0.52rem;
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.16rem;
	color: #666666;
	line-height: 0.3rem;
	margin-bottom: 0.4rem;
}
.news_list .news_item .news_more{
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.16rem;
	color: #666666;
	display: flex;
	align-items: center;
}
.news_list .news_item .news_more i{
	width: 0.12rem;
	height: 0.12rem;
	background: url(../img/news_more2.png) center no-repeat;
	background-size: cover;
	margin-left: 0.08rem;
	display: block;
}
.news_list .news_item .news_time{
	width: 1.8rem;
	height: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	position: relative;
	color: #333333;
}
.news_list .news_item .news_time::before{
	content: "";
	position: absolute;
	width: 0.01rem;
	height: 1.86rem;
	background: #EBEBEB;
	top: 0.37rem;
	left: 0.05rem;
}
.news_list .news_item .news_time .news_date{
	font-family: AlibabaPuHuiTi-Bold;
	font-size: 0.57rem;
	width: 100%;
	text-align: center;
	display: block;
}
.news_list .news_item .news_time .news_y{
	font-family: AlibabaPuHuiTi-Regular;
	font-size: 0.2rem;
	width: 100%;
	text-align: center;
	display: block;
}
.news_list .news_item:hover{
	background: #FFFFFF;
	box-shadow: 0rem 0rem 0.08rem 0.01rem rgba(0,0,0,0.22);
}
.news_list .news_item:hover .news_img img{
	transform:scale(1.1);
}
.news_list .news_item:hover .news_title{
	color: #234529;
}
.news_list .news_item:hover .news_more{
	color: #234529;
}
.news_list .news_item:hover .news_more i{
	background: url(../img/news_more1.png) center no-repeat;
}
.news_list .news_item:hover .news_time{
	background: url(../img/news_bg.png) center no-repeat;
	background-size: cover;
	color: #fff;
}
.news_list .news_item:hover .news_time::before{
	display: none;
}
