/* 交通资讯页面头部间距 */
.access-page .page-header {
	margin-bottom: 40px;
}

/* 交通资讯页面内容区域间距 */
.access-page .access-info-section {
	padding-top: 0;
}
/* 交通资讯详情页面主区域 */
.access-info-section {
	padding: 60px 20px;
	background-color: #fff;
}

/* 交通资讯详情页面容器 */
.access-info-container {
	max-width: 800px;
	margin: 0 auto;
}

/* 交通资讯详情页面内容区域 */
.access-info-content {
	text-align: center;
}

/* 交通资讯详情页面标题 */
.access-info-content h2 {
	font-size: 24px;
	color: #333;
	margin-bottom: 30px;
}

/* 交通资讯详情页面地址 */
.access-info-content .address {
	font-size: 18px;
	color: #666;
	margin-bottom: 15px;
}

/* 交通资讯详情页面电话 */
.access-info-content .tel {
	font-size: 18px;
	color: #666;
	margin-bottom: 40px;
}

/* 交通资讯详情页面详细信息区域 */
.access-details {
	text-align: left;
	margin-top: 40px;
	padding: 30px;
	background-color: #f9f9f9;
	border-radius: 10px;
}

/* 交通资讯详情页面详细信息标题 */
.access-details h3 {
	font-size: 20px;
	color: #333;
	margin-bottom: 20px;
}

/* 交通资讯详情页面列表 */
.access-details ul {
	list-style: none;
	padding: 0;
}

/* 交通资讯详情页面列表项 */
.access-details li {
	font-size: 16px;
	color: #666;
	margin-bottom: 15px;
	padding-left: 20px;
	position: relative;
}

/* 交通资讯详情页面列表项前的圆点 */
.access-details li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #8B7355;
}

/* 交通资讯页面地图区域 */
.map-section {
	padding: 0 20px 20px;
}

/* 交通资讯页面地图容器 */
.map-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* 交通资讯页面地图iframe */
.map-container iframe {
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 交通资讯页面顶部间距 */
.access-page {
	padding-top: 80px;
}

/* 页面布局 */
.container {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 10px auto;
	padding: 20px;
}

/* 左侧区域 */
.left {
	margin-top: 50px;
	width: 50%;
}

.small-title {
	font-size: 14px;
	font-weight: bold;
	color: #666;
}

h1 {
	font-size: 32px;
	margin: 5px 0;
	font-weight: bold;
	color: #C79E66;
}

.subtitle {
	font-size: 16px;
	color: #72b527;
	font-weight: bold;
}

.address {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
}

.contact {
	font-size: 16px;
	margin-top: 10px;
}

.icon {
	font-size: 18px;
	margin-right: 5px;
}

.contact a {
	text-decoration: none;
	color: #333;
}

.contact a:hover {
	text-decoration: underline;
}

/* 右侧区域 */
.right {
	width: 45%;
	background-color: #f8f8f8;
	padding: 20px;
	border-radius: 5px;
	border-left: 4px solid #C79E66;
}

.info-box {
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 10px;
}

h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}

p {
	font-size: 14px;
	margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
		align-items: center;
	}

	.left,
	.right {
		width: 90%;
		text-align: center;
	}

	.right {
		margin-top: 20px;
	}
}