@charset "utf-8";

.honor_list{
	width:auto;
	height:auto;
	margin:auto;
	max-width:var(--max_width);
	overflow:hidden;
	display:grid;
	grid-template-columns: calc(25% - 60px/4) calc(25% - 60px/4) calc(25% - 60px/4) calc(25% - 60px/4); 
	row-gap:20px;
	column-gap: 20px;
	padding:10px;
	margin-top:var(--margin_top);
	margin-bottom:var(--margin_top);
}
@media (max-width:767px){
	.honor_list{
		grid-template-columns: calc(50% - 10px/2) calc(50% - 10px/2);
		row-gap:10px;
		column-gap:10px;
	}
}
.honor_tb{
	display:block;
	width:auto;
	height:auto;
	overflow:hidden;
}

.honor_pic{
	display:block;
	width:auto;
	height:auto;
	overflow:hidden;
	margin:auto;
	position:relative;
	padding-bottom:125%;
}
.honor_name{
	display:block;
	width:auto;
	height:auto;
	overflow:hidden;
	margin:auto;
	padding: 10px;
	text-align: center;
}