* {
	margin: 0;
	padding: 0;
	font-size: 16px;
	box-sizing: border-box;
}




.news_body{
	padding: 76px 0 65px;
}
.news_body .main{
	width: 94%;
	max-width: 1600px;
	margin: 0 auto;
}
.news_body .news_list{
	display: flex;
	flex-wrap: wrap;
	column-gap: 34px;
	row-gap: 41px;
}
.news_body .news_item{
	width: calc((100% - 68px) / 3);
	height: auto;
	display: block;
}
.news_body .news_item .news_img{
	width: 100%;
    height: 0;
    padding-bottom: 78.4%;
    overflow: hidden;
    position: relative;
	margin-bottom: 27px;
}
.news_body .news_item .news_img img{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}
.news_body .news_item .news_img:hover img{
	transform: scale(1.1);
}
.news_body .news_item .news_txt{
	padding-bottom: 42px;
	border-bottom: 1px solid #DFDFDF;
	position: relative;
}
.news_body .news_item .news_txt::before{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width:0;
	height: 1px;
	transition: all 0.5s;
}
.news_body .news_item:hover .news_txt::before{
	width: 100%;
	left: 0;
}
.news_body .news_item .news_txt .news_time{
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 16px;
	color: #888888;
}
.news_body .news_item .news_txt .news_time i{
	width: 20px;
	height: 20px;
	background: url(../img/time_icon.png) no-repeat center center;
	background-size: cover;
}
.news_body .news_item .news_txt .news_title{
	margin-top: 28px;
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 24px;
	color: #333333;
	line-height: 1.25;
}




/* 详情 */
.news_body .main.view_box{
	display: flex;
	justify-content: space-between;
}
.news_body .view_cont{
	width: 68.75%;
}
.news_body .view_cont .view_title{
	font-family: Arial, Arial;
	font-weight: bold;
	font-size: 40px;
	color: #222222;
	line-height: 1.4;
}
.news_body .view_cont .view_txt{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: 37px;
	margin: 64px 0 47px;
}
.news_body .view_cont .view_txt .view_txt1{
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 16px;
	color: #717171;
}
.news_body .view_cont .view_content{
	padding: 52px 0 62px;
	border-top: 1px solid rgba(102,102,102,0.5);
	border-bottom: 1px solid rgba(102,102,102,0.5);
	margin-bottom: 52px;
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 1.75;
}
.news_body .view_cont .view_content p{
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 1.75;
}
.news_body .view_cont .view_content img{
	max-width: 100%;
	height: auto;
}
.news_body .view_cont .prev,
.news_body .view_cont .next{
	width: fit-content;
	max-width: 100%;
	display: block;
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 16px;
	color: #555555;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news_body .view_cont .prev{
	margin-bottom: 15px;
}
.news_body .view_list{
	width: 26.25%;
	height: auto;
} 
.news_body .view_list .view_class{
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 30px;
	color: #222222;
}
.news_body .view_list .view_hr{
	width: 40px;
	height: 7px;
	/* background: #6FB82C; */
	position: relative;
	margin: 12px 0 49px;
}
.news_body .view_list .view_hr::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 5px;
	width: 60px;
	height: 7px;
	/* background: #6FB82C; */
	transform: matrix(1, 0, -1, 1, 0, 0);
}
.news_body .view_list .news_item{
	width: 100%;
	height: auto;
	margin-bottom: 33px;
}
.news_body .view_list .news_item .news_img{
	margin-bottom: 18px;
}
.news_body .view_list .news_item .news_txt .news_time{
	color: #999;
}
.news_body .view_list .news_item .news_txt .news_title{
	margin-top: 19px;
	font-size: 20px;
	line-height: 1.5;
}



@media only screen and (min-width: 768px) and (max-width: 991px) {
	.news_body .news_item{
		width: calc((100% - 34px) / 2);
	}


	.news_body .main.view_box{
		flex-wrap: wrap;
		row-gap: 40px;
	}
	.news_body .view_cont,
	.news_body .view_list{
		width: 100%;
	}
	.news_body .view_cont .view_title{
		font-size: 30px;
	}

	.news_body .view_list .view_ul{
		display: flex;
		flex-wrap: wrap;
		column-gap: 12px;
	}
	.news_body .view_list .news_item{
		width: calc(33.33% - 8px);
	}
}
@media only screen and (max-width: 767px) {
	.news_body .news_item{
		width: 100%;
	}
	.news_body .news_item .news_txt{
		padding-bottom: 30px;
	}
	.news_body .news_item .news_txt .news_title{
		font-size: 18px;
		margin-top: 18px;
	}

	.news_body .view_cont{
		width: 100%;
	}
	.news_body .view_cont .view_title{
		font-size: 24px;
	}
	.news_body .view_list{
		display: none;
	}
}






