/* 全局基础优化 */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #f9f9f9;
	color: #333;
}

/* 菜单当前项高亮 */
#menu li:nth-child(4) a {
	color: #51f0c1;
}

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

/* 主容器 */
.container {
	max-width: 1200px;
	margin: 2em auto;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
}

.container p {
	text-align: right;
	margin-right: 2em;
	margin-bottom: 1em;
}

/* 主要区块 */
section {
	width: 100%;
	padding: 20px;
	margin-top: 50px;
	overflow: hidden;
}

/* 标题样式 */
section h1 {
	text-align: center;
	color: #333;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
	font-size: 2.5em;
	margin-top: 2em;
}

section h2 {
	text-align: center;
	color: #46cfa7;
	margin: 2em auto;
}

section h3 {
	color: #46cfa7;
	font-size: 1.5em;
	margin-bottom: 2em;
	text-align: center;
}

/* 段落样式 */
section p {
	color: #555;
	font-size: 1.1em;
	margin-bottom: 1em;
}

/* 旅游介绍部分 */
.Tourism_Introduction {
	margin: 1em 2em;
}

.Tourism_Introduction p {
	text-indent: 2em;
	line-height: 1.7em;
}

/* 链接样式 */
section a {
	color: #007bff;
	text-decoration: none;
	display: inline-block;
	margin: 1em 1em 0 auto;
	text-align: right;
	transition: color 0.3s ease;
}

section a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* 景点卡片 */
.scenic-item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
	border: 1px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	position: relative;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
}

.scenic-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #46cfa7;
}

/* 图片样式 */
.scenic-item img {
	border-radius: 10px;
	width: 95%;
	height: calc(80vw / 3);
	min-width: 250px;
	object-fit: cover;
}

/* 文化中心容器 */
#culture-center {
	width: 85vw;
	margin: 0 auto;
}

/* 历史链接段 */
.history-link {
	display: block;
	text-align: left;
	font-weight: bold;
	text-decoration: none;
	margin-top: 20px;
	width: 100%;
}

.history-link p {
	margin: 0 auto 30px;
	text-indent: 2em;
	width: 80%;
	color: #444;
	line-height: 1.6;
}

/* 响应式优化 */
@media (max-width: 768px) {
	.scenic-item {
		flex-direction: column;
		align-items: center;
	}

	.scenic-item img {
		width: 100%;
		margin: 1em 0 0;
	}

	section a {
		float: none;
		display: block;
		text-align: right;
		margin-right: 0;
	}
}


div.explore {
	background-color: var(--primary);
	color: white;
	text-align: center;
	padding: 6rem 0;
}

div.explore h2 {
	color: white;
	margin-bottom: 2rem;
}

div.explore p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: 0 auto 3rem;
}

div.explore-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

a.explore-button {
	background-color: white;
	color: var(--primary);
	padding: 0.75rem 2rem;
	border-radius: 9999px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

a.explore-button:hover {
	background-color: rgba(255, 255, 255, 0.9);
	transform: scale(1.05);
	text-decoration: none;
	color: var(--primary);
}

div.container-s{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
