.shop-group {
	display: flex;
	gap: 8px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.shop-item {
	height: auto;
	background-color: #F6F6F6;
	width: 216px;
	padding: 16px;
	border-radius: 8px;
}
.shop-item a {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #333333;
	border-bottom: 1px solid #333333;
}
.shop-item a.img-container {
	border-bottom: none;
}
.shop-item img {
	border-radius: 8px;
}
.shop-container {
	display: flex;
	gap: 20px;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.shop-item:hover {
	background-color: #f0f0f0;
	cursor: pointer;
}
.title-shop-group {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 24px;
}
.shop-item-info {
	background-color: #333333;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.shop-item-info:hover {
	background-color: #333333;
	cursor: default;
}
.shop-item-info-title-number {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
}
.shop-item-info-number a {
	color: #fff;
}
.shop-item-info-number {
	display: flex;
	flex-direction: row;
	gap: 4px;
}
.shop-item-info-operating-mode {
	display: flex;
	flex-direction: row;
	gap: 4px;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	align-items: center;
}
.img-container {
	border-radius: 8px;
	background-color: #fff;
	width: 184px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.img-container div {
	padding: 0 10px;
}
@media (max-width: 580px) {
	.shop-item {
		flex: 0 0 calc(50% - 8px);
		padding: 12px;
	}
	.shop-item-info-title-number {
		font-size: 14px;
	}
	.shop-item a {
		font-size: 14px;
	}
	.shop-item-info-operating-mode {
		font-size: 13px;
		align-items: flex-start;
		flex-direction: column;
	}
	.shop-container {
		gap: 12px;
	}
	.shop-group {
		margin-bottom: 20px;
	}
	.title-shop-group {
		font-weight: 400;
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 20px;
	}
	.img-container {
		width: auto;
	}
	.img-container div {
		padding: 0 10px;
	}
	.img-container img {
		width: 100%;
	}
}