* {
	margin: 0;
	padding: 0;
}

body {
	background: #0A0E12;
	overflow: hidden;
}




.news_body {
	margin: 1rem auto 1.08rem;
}

.news_body .news_name_cn {
	font-weight: 400;
	font-size: 0.54rem;
	color: #F2A366;
	text-align: center;
	margin-bottom: 0.23rem;
}

.news_body .news_name_en {
	font-weight: 300;
	font-size: 0.16rem;
	color: #F2A366;
	letter-spacing: 0.15rem;
	text-align: center;
}


.news_nav{
	display: flex;
	justify-content: center;
	margin-top: 1.2rem;
	margin-bottom: 1.17rem;
}
.news_nav .news_url{
	width: auto;
	height: auto;
	padding: 0.1rem 0.36rem;
	box-sizing: border-box;
	margin: 0 0.15rem;
	font-weight: normal;
	font-size: 0.16rem;
	color: #F2A467;
	border-radius: 0.04rem;
	border: 0.01rem solid #F2A366;
}
.news_nav .news_url.act{
	background: #F2A366;
	color: #0A0E12;
}



.news_list{
	display: flex;
	flex-wrap: wrap;
}
.news_list .news_item {
	width: 5.6rem;
	height: auto;
	margin-bottom: 1.1rem;
	margin-right: 0.45rem;
}

.news_list .news_item:nth-child(3n) {
	margin-right: 0;
}

.news_list .news_item .news_img {
	width: 100%;
	height: 3.32rem;
	position: relative;
}

.news_list .news_item .news_img::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border: 0.03rem solid #707070;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: 0.5s;
	opacity: 0;
}

.news_list .news_item:hover .news_img::before {
	width: calc(100% + 0.16rem);
	height: calc(100% + 0.16rem);
	opacity: 1;
}

.news_list .news_item .news_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.news_list .news_item:hover .news_img img {
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
}

.news_list .news_item .news_txt .news_title {
	margin-top: 0.22rem;
	width: 100%;
	height: 0.66rem;
	font-weight: normal;
	font-size: 0.24rem;
	color: #FFFFFF;
	line-height: 0.34rem;
	margin-bottom: 0.1rem;
}

.news_list .news_item:hover .news_txt .news_title {
	color: #F2A467;
	transition: 0.3s;
}

.news_list .news_item .news_txt .news_time {
	font-weight: normal;
	font-size: 0.16rem;
	color: rgba(255, 255, 255, 0.62);
	line-height: 0.34rem;
}



.page_box{
	margin-top: 0.8rem;
	margin-bottom: 0;
}


.footer {
	border-top: 0.01rem solid #C68656;
}






@media only screen and (max-width: 1024px) {
	.news_nav{
		margin-top: 0.6rem;
		margin-bottom: 0.8rem;
	}

	.news_list{
		gap: 0.2rem;
	}
	.news_list .news_item{
		width: calc(50% - 0.1rem);
		margin: 0;
	}


	.news_list .news_item .news_img{
		height: 2.2rem;
	}
}







