<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.honor{
	position: relative;
}
.honor .page-bg{
	position: absolute;
	top: 0;
	z-index: -1;
}
.honor .honor-list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 20px;
	margin-bottom: 30px;
}
.honor .honor-list li{
	cursor: pointer;
	position: relative;
}
.honor .honor-list li .img-warp{
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.2s ease;
}
.honor .honor-list li .img-warp img{
	border-radius: 5px;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: all 0.2s ease;
}
.honor .honor-list li:hover .img-warp img{
	transform: scale(1.1);
}
.honor .honor-list li .txt-warp{
	width: 100%;
	height: 55px;
	text-align: center;
	color: #FFFFFF;
	line-height: 65px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
	border-radius: 0 0 5px 5px;
	position: absolute;
	z-index: 8;
	bottom: 0;
}
.decorate{
	width: 10px;
	height: 10px;
	background: #333333;
	border-radius: 50%;
	margin: 0 auto 75px auto;
	position: relative;
}
.decorate::before{
	content: "";
	width: 105px;
	border-bottom: 1px dashed #888888;
	transform: rotate(-45deg);
	position: absolute;
	left: -90px;
	top: 45px;
}
.decorate::after{
	content: "";
	width: 105px;
	transform: rotate(45deg);
	border-bottom: 1px dashed #888888;
	position: absolute;
	right: -90px;
	top: 45px;
}


@media (max-width: 576px){
	.honor .honor-list{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 15px;
		grid-row-gap: 20px;
	}
    .honor .honor-list li .txt-warp{
        width: 100%;
        height: 36px;
        line-height: 40px;
        font-size: 0.3734rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
		overflow: hidden;
		text-overflow: ellipsis;
    }
	
}


.imgs-body .img-warp img{
	width: 100%;
	height: 100%;
}</pre></body></html>