body {
	margin: 0 auto;
	font-family: 'Noto Sans SC', sans-serif;
	background-color: #f7f7f7;
	color: #333;
}
.cat-container {
	max-width: 100%;
	padding: 16px;
}
.cat-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 6px;
}
.cat-subtitle {
	font-size: 14px;
	color: #999;
	margin-bottom: 16px;
}
.cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}
.cat-card {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s;
}
.cat-card:hover {
	transform: translateY(-2px);
}
.cat-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}
.cat-card-content {
	padding: 12px;
}
.cat-tag {
	display: inline-block;
	background-color: #000;
	color: #fff;
	font-size: 12px;
	padding: 3px 3px;
	border-radius: 4px;
	margin-bottom: 6px;
}
.cat-title-small {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 4px;
}
.cat-desc {
	font-size: 13px;
	color: #555;
	margin-bottom: 8px;
}
.cat-price {
	font-size: 15px;
	color: #e60012;
	font-weight: bold;
}
@media screen and (max-width: 480px) {
	.cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.cat-tagzb {
	display: inline-block;
	background-color: #ff2800;
	color: #fff;
	font-size: 12px;
	padding: 3px 3px;
	border-radius: 4px;
	margin-bottom: 6px;
}

.cat-taglb {
	display: inline-block;
	background-color: #00bfa0;
	color: #fff;
	font-size: 12px;
	padding: 3px 3px;
	border-radius: 4px;
	margin-bottom: 6px;
}