<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.img_tips{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	z-index: 2;
	top: 0;
	display: flex;
	flex-direction: column;
	color: #fff;
	opacity: 0;
	transition: all .5s;
	pointer-events: none;
}
.zoom_icon{
	width: 100%;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}
.zoom_icon img{
	width: 0.3rem;
	opacity: 0.5;
}
.name_down_box{
	display: flex;
	height: 0.7rem;
}
.name_down_box .name{
	flex: 1;
	padding-left: 0.4rem;
	font-size: 0.2rem;
	border-top: 1px solid rgba(255,255,255,.3);
	line-height: 0.7rem;
}
.down_icon{
	width: 0.7rem;
	border-top: 1px solid rgba(255,255,255,.3);
	border-left: 1px solid rgba(255,255,255,.3);
	display: flex;
	justify-content: center;
	align-items: center;
    transition: all .3s;
}
.down_icon:hover{
	border-left: 1px solid #00d4d4;
    border-top: 1px solid #00d4d4;
    background: #00d4d4;
}
.down_icon img{
	width: 0.2rem;
}
.news_min:hover .img_tips{
	opacity: 1;
	pointer-events: auto;
}
.news_min:nth-child(3n-1){
	margin: 0 1.1% 1vw;
}



@media (max-width: 768px){
	.news_min{
		width: 48.1%;
		margin-bottom: 3vw;
	}
	.n_m_img{
		height: auto;
	}
	.news_min:hover .img_tips{
		opacity: 0;
		pointer-events: none;
	}
	.news_min:nth-child(3n-1){
		margin: 0;
	}
	.news_other{
		justify-content: space-between;
	}
}
</pre></body></html>