.goods {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, max-content));
	column-gap: 40px;
	row-gap: 45px;
}

.goods {
	margin: 30px;
}

.goods a {
	text-decoration: none;
	color: black;
}

.goods > * {
	display: grid;
    grid-template-areas:
        "img hint"
        "img name"
        "img desc";
	width: fit-content;
	column-gap: 25px;
}

.goods > .disabled {
	opacity: 0.3;
}

.goods > * > img {
	grid-area: img;
	max-height: 76px;
}

.goods > * > .hint {
	grid-area: hint;
	color: #b3b3b3;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.goods > * > .name {
	grid-area: name;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	white-space: nowrap;
}

.goods > * > .desc {
	grid-area: desc;
	color: #505050;
	font-size: 15px;
	line-height: 17px;
	margin-top: 4px;
	max-height: 34px;
	overflow: hidden;
	text-overflow: ellipsis;
}
