

/* 新闻 */
.news_center{
	padding: 0.8rem 0.8rem 0.8rem;
}
.news_top{
	padding-top: 0.8rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.news_title{
	font-size: 0.5rem;
}
.news_search{
	display: flex;
	display: none;
}
.news_search input{
	height: 0.46rem;
	border-radius: 0;
	width: 2.5rem;
	border: 1px solid rgba(216,183,150,0.5);
	padding-left: 0.1rem;
}
.news_search .search_btn{
	height: 0.46rem;
	width: 0.46rem;
	background-color: #D8B796;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #D8B796;
	cursor: pointer;
	transition: all .5s;
	opacity: 0.8;
}
@media (min-width: 768px) {
	.news_search .search_btn:hover{
		opacity: 1;
	}
}

.news_search .search_btn img{
	width: 0.28rem;
}
.news_list{
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.2rem;
}
.news_min{
	width: 23.125%;
	margin-right: 2.5%;
	position: relative;
	margin-top: 3%;
	cursor: pointer;
}
.news_min:nth-child(4n){
	margin-right: 0%;
}
.news_min_i img{
	width: 100%;
	transition: all .5s;
    height: 2.7rem;
    object-fit: cover;
} 
.news_min_time{
	font-size: 0.18rem;
	margin-top: 0.15rem;
	color: #111111;
    text-align: left;
    opacity: 0.8;
}
.news_min_detail{
	font-size: 0.2rem;
	line-height: 0.35rem;
	color: #111111;
    text-align: left;
}
.news_min{
	-webkit-transition: box-shadow .2s ease;
	transition: box-shadow .2s ease;
	-webkit-transition: -webkit-transform .6s ease;
	transition: -webkit-transform .6s ease;
	transition: transform .6s ease;
	transition: transform .6s ease,-webkit-transform .6s ease
}
@media (min-width: 768px) {
	.news_min:hover{
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px)
	}
	.news_min:hover .news_min_i img{
		box-shadow: 7px 4px 15px -1px #d1d1d1;
	}
}




.news_more{
	margin: 0.5rem auto 0;
	display: flex;
	width: 2.2rem;
	height: 0.5rem;
	border: 1px solid #D8B796;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.news_more span{
	font-size: 0.2rem;
	color: #D8B796;
}
.news_more img{
	width: 0.2rem;
	margin-left: 0.08rem;
}
.news_more.active img{
	animation: rotateMore 4s linear infinite;
}
@keyframes rotateMore {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
	.news_center{
		padding: 1.2rem 0.5rem 0;
	}
	.news_top{
		flex-direction: column;
		align-items: flex-start;
	}
	.news_title{
		text-align: center;
		width: 100%;
	}
	.news_search{
		width: 100%;
		margin-top: 0.5rem;
	}
	.news_search input{
		flex: 1;
		height: 0.7rem;
	}
	.news_search .search_btn{
	    height: 0.7rem;
	    width: 0.7rem;
	    opacity: 1;
	}
	.news_min{
		width: 100%;
		margin-right: 0%;
		margin-top: 0.5rem;
	}
	.news_list{
		margin-top: 0.5rem;
	}
	.news_min:nth-of-type(1){
		margin-top: 0rem;
	}
	.news_min_time{
		font-size: 0.28rem;
		color: #333333;
		opacity: 0.8;
	}
	.news_min_detail{
		font-size: 0.3rem;
		line-height: 0.45rem;
		color: #333333;
	}
	
	
	.page_common_btn_style{
		font-size: 0.24rem;
	}
	.iconfont{
		font-size: 0.24rem;
	}
	
	.noMore{
		margin-bottom: 1.2rem;
		color: rgba(0,0,0,0.5);
		font-size: 0.24rem;
		text-align: center;
		margin-top: 0.5rem;
		opacity: 0;
	}
	.noMore._show{
		opacity: 1;
	}
    .news_min_i img{
        height: auto;
    }
	
}
