.el-header {
	background-color: #545c64;
	color: #fff;
	line-height: 60px;
	text-align: center;
	height: 70px;
	background-color: rgba(0, 0, 0, 0.68);
	padding: 10px 0;
}

.el-menu--horizontal.el-menu {
	border: 0;
}

#viewId2 {
	padding-top: 40px;
}

.table-container {
	max-width: 1400px;
	margin: 0 auto;
	border: 1px solid #9c27b0;
	border-radius: 8px;
	overflow: hidden;
	/* margin-top: 40px; */
}
.cate-img2 {
	margin-top: 20px;
}
.cate-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	margin-top: 40px;
}
#viewId2 {
	margin-top: 30px;
}
/* 表头样式 */
.table-header {
	display: flex;
	background-color: #9c27b0;
	font-weight: bold;
	color: #1fe0ff;
}

/* 行样式 */
.table-row {
	display: flex;
	border-bottom: 1px solid #752583;
	font-size: 14px;
}

.table-row:last-child {
	border-bottom: none;
}

.table-row:nth-child(even) {
	background-color: #222;
}

/* 单元格通用样式 */
.cell {
	padding: 12px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-right: 1px solid #752583;
	word-break: break-word;
}

.cell:last-child {
	border-right: none;
}

/* 列宽分配 */
.col-category {
	flex: 1.2;
}

.col-case {
	flex: 2.5;
}

.col-company {
	flex: 2;
}

.col-brand {
	flex: 1.2;
}

.col-award {
	flex: 0.8;
}

/* 奖项颜色 */
.award-gold {
	color: #ffd700;
	font-weight: bold;
}

.award-silver {
	color: #c0c0c0;
	font-weight: bold;
}

.award-bronze {
	color: #cd7f32;
	font-weight: bold;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.table-header {
		display: none;
	}

	.table-row {
		flex-direction: column;
		padding: 10px 0;
	}

	.cell {
		border-right: none;
		border-bottom: 1px solid #333;
		justify-content: flex-start;
		text-align: left;
		padding: 8px 15px;
	}

	.cell::before {
		content: attr(data-label);
		font-weight: bold;
		color: #ce93d8;
		width: 80px;
		display: inline-block;
		flex-shrink: 0;
	}

	.cell:last-child {
		border-bottom: none;
	}
}

/* 图片容器：核心 Flex 布局 */
.img-container {
	display: flex;
	flex-wrap: wrap; /* 自动换行 */
	gap: 12px; /* 图片之间的间距，可自由修改 */
	max-width: 1400px; /* 限制最大宽度，美观 */
	margin: 0 auto; /* 居中 */
	margin-top: 30px;
}

/* 图片项：一行固定 3 个 */
.img-item {
	/* 核心：一行3个 = 宽度 33.333% - 间距 */
	flex: 0 0 calc(33.333% - 8px);

	/* 图片容器保持正方形，可选 */
	/* aspect-ratio: 1/1; */
	overflow: hidden;
	border-radius: 4px; /* 圆角，美观 */
}

/* 图片自适应填充，不变形 */
.img-item img {
	width: 100%;
	height: auto;
	object-fit: cover; /* 关键：图片不变形 */
	display: block;
}
