.hzhb .grid{
	gap: 1rem;
    grid-template-columns: repeat(7, 1fr);

}
.hzhb .grid .item{
	background: #fff;
	height: auto;
    aspect-ratio: 210/115;
	position: relative;
	display: flex;
	border-radius: .6rem;
	overflow: hidden;
    border: 1px solid #e2d6c1;
}
.hzhb .grid .item .img{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hzhb .grid .item .img img{
	max-width: 70%;
	max-height: 60%;
	object-fit: contain;
}
.hzhb .grid .item .txt{
	position: absolute;
	height: 100%;
	width: 100%;
	align-items: center;
	display: flex;
	justify-content: center;
    text-align: center;
	left: 0;
	top: 0;
	background: var(--noBtnBgColor);
    color: #fff;
	font-size: var(--f20);
	opacity: 0;
    font-family: 'pingfangm-font';
	transition: all .5s;
}
.hzhb .grid .item:hover .txt{
	opacity: 1;
}
