.news_box{
	padding: .2rem 0 1rem;
	overflow: hidden;
}
.news_list{
	overflow: hidden;
	margin-bottom: .5rem;
}
.news_list li a{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: .3rem 0;
	border-bottom: 1px solid #F8F8F8;
}
.news_list li a .img{
	width: 2.5rem;
	height: 1.6rem;
	margin-right: .4rem;
	overflow: hidden;
}
.news_list li a .img img{
	display: block;
	width: 100%;
	height: 100%;
	transition: all .5s linear;
}
.news_list li:hover a .img img{
	transform: scale(1.2);
}
.news_list li a .news_content{
	width: 70%;
}
.news_list li a .news_content h3{
	color: #262626;
	font-size: .18rem;
	margin: .05rem 0 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news_list li a .news_content h6{
	color: #999;
	font-size: .14rem;
	margin: .1rem 0;
}
.news_list li a .news_content p{
	color: #595959;
	font-size: .14rem;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	word-break: break-all;
}
.news_list li a .news_content span{
	color: #1169ab;
	font-size: .14rem;
	display: block;
	width: 1.2rem;
	height: .3rem;
	line-height: .3rem;
	text-align: center;
	border: 1px solid #E3E3E3;
	margin-top: .3rem;
}




.news_detail_box{
	padding: .6rem 0 1rem;
	overflow: hidden;
}
.news_detail_box h3{
	color: #262626;
	font-size: .28rem;
	text-align: center;
}
.news_detail_box h6{
	color: #262626;
	font-size: .14rem;
	text-align: center;
	margin: .1rem 0 .3rem;
}
.news_detail_box .box{
	text-indent: 2em;
	padding-bottom: .5rem;
	border-bottom: 1px solid #D4D4D4;
}
.news_detail_box .box img{
	display: block;
	max-width: 100% !important;
	height: auto !important;
	margin: 0 auto;
}
.news_detail_box .detail_page{
	padding-top: .3rem;
	overflow: hidden;;
}
.news_detail_box .detail_page li{
	margin-top: .2rem;
}
.news_detail_box .detail_page li a{
	color: #262626;
	font-size: .16rem;
}


@media (max-width: 768px) {
	.news_detail_box{
		padding: .3rem 0 .5rem;
	}
	.news_detail_box .container{
		padding: 0 .3rem;
	}
	.news_detail_box h3{
		font-size: .38rem;
		margin-bottom: .1rem;
	}
	.news_detail_box h6{
		font-size: .18rem;
	}
	.news_detail_box .box{
		font-size: .26rem;
	}
	.news_detail_box .detail_page li a{
		font-size: .24rem;
	}


	.news_list li a .news_content{
		width: 55%;
	}
	.news_list li a .news_content span{
		display: none;
	}
	.news_list li a .news_content h3{
		font-size: .24rem;
	}
	.news_list li a .news_content h6{
		font-size: .2rem;
	}
	.news_list li a .news_content p{
		font-size: .22rem
	}
}