.hzhb{
	background: #f0f3f5;
}
.hzhb .grid{
	gap: .6rem;
	grid-template-columns: repeat(8,1fr);
}
.hzhb .grid .item{
	background: #fff;
	height: 9rem;
	position: relative;
	display: flex;
	border-radius: .6rem;
	overflow: hidden;
}
.hzhb .grid .item .img{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hzhb .grid .item .img img{
	max-width: 80%;
	max-height: 60%;
	object-fit: contain;
}
.hzhb .grid .item .txt{
	position: absolute;
	height: 100%;
	width: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
	left: 0;
	top: 0;
	background: var(--themeColor2);
	color: #fff;
	font-size: var(--f20);
	opacity: 0;
	transition: all .5s;
}
.hzhb .grid .item:hover .txt{
	opacity: 1;
}
.hzhb .grid .item:nth-child(1),
.hzhb .grid .item:nth-child(9),
.hzhb .grid .item:nth-child(18),
.hzhb .grid .item:nth-child(28){
	grid-area: auto / span 2;
}


.hzhb-page.page a:hover,
.hzhb-page.page a.on,
.hzhb-page .pagination-block li.active span,
.hzhb-page  .pagination-block li:hover span,
.hzhb-page  .pagination-block li:hover a {
	background: var(--themeColor);
	border: 1px solid var(--themeColor);
}