#menu li:nth-child(6) a {
	color: #51f0c1;
}

#menu li:nth-child(6)::before {
	bottom: 0px;
}

/* 容器样式 */
.container {
	max-width: 1200px;
	margin: 50px auto;
	padding: 40px 20px;
}

/* 页面标题 */
.page-title {
	text-align: center;
	margin-bottom: 60px;
}

.page-title h1 {
	font-size: 2.8rem;
	color: var(--primary-color);
	position: relative;
	display: inline-block;
}

.page-title h1::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 80px;
	height: 3px;
	background: var(--secondary-color);
	transform: translateX(-50%);
}

/* 网格布局 */
.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	width: 100%;
}

/* 模块样式 */
.module {
	background: var(--card-bg);
	border-radius: 15px;
	box-shadow: 0 10px 30px var(--shadow-color);
	overflow: hidden;
	transition: all 0.3s ease;
	margin-bottom: 15px;
}

.module:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px var(--shadow-color);
}

/* 模块标题 */
.module-title {
	font-size: 1.6rem;
	color: var(--primary-color);
	padding: 20px 25px;
	border-left: 5px solid var(--secondary-color);
	margin-bottom: 25px;
}

/* 列表项 */
.list-item {
	padding: 0 25px 25px;
}

.list-item h3 {
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.list-item h3::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--secondary-color);
	margin-right: 10px;
}

.sub-list {
	list-style: none;
	padding-left: 20px;
}

.sub-list li {
	margin-bottom: 15px;
	position: relative;
}

/* 表格样式 */
.food-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
}

.food-table th,
.food-table td {
	padding: 12px 20px;
	border-bottom: 1px solid #f0f0f0;
	text-align: left;
	font-size: 0.95rem;
}

.food-table th {
	background: #f8f9fa;
	color: var(--primary-color);
	font-weight: 500;
}

.food-table tr:hover {
	background: #f9f9f9;
}

/* 季节标签 */
.season-tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	margin-right: 10px;
	font-size: 0.85rem;
}

.spring {
	background: #2ecc71;
	color: white;
}

.summer {
	background: #3498db;
	color: white;
}

.autumn {
	background: #e67e22;
	color: white;
}

.winter {
	background: #9b59b6;
	color: white;
}

/* 图片样式 */
.cover-left-image,
.cover-right-image {
	border-radius: 20px;
	width: 100%;
	max-width: 520px;
	height: auto;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	margin: 10px auto;
	display: block;
}

/* 响应式优化 */
@media (max-width: 768px) {
	.grid-container {
		grid-template-columns: 1fr;
	}

	.page-title h1 {
		font-size: 2rem;
	}

	.module-title {
		font-size: 1.4rem;
	}

	.food-table th,
	.food-table td {
		font-size: 0.9rem;
		padding: 10px;
	}
}
