/* ========== 导游导览公共 ========== */
.guide-banner {
	width: 100%;
	min-width: 1400px;
	height: 400px;
	overflow: hidden;
}

.guide-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.guide-main {
	padding: 30px 0 80px;
	min-width: 1400px;
	background: #fff;
}

.guide-main .container {
	padding: 0;
}

/* ========== Tab 切换 ========== */
.guide-tabs {
	display: flex;
	justify-content: center;
	gap: 80px;
	padding: 10px 0 10px;
	margin-bottom: 50px;
}

.guide-tab {
	position: relative;
	font-size: 24px;
	color: var(--pri6);
	text-decoration: none;
	padding: 8px 4px;
	transition: color 0.25s ease;
}

.guide-tab:hover {
	color: var(--prib);
}

.guide-tab.active {
	color: var(--prib);
	font-weight: 600;
}

.guide-tab.active::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--prib);
	border-radius: 2px;
}

/* ========== 语音导游：2列网格 ========== */
.voice-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.voice-card {
	display: flex;
	gap: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(30px);
}

.voice-card.visible {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.6s ease-out;
}

.voice-card:hover {
	box-shadow: 0 8px 28px rgba(8, 119, 168, 0.15);
	transform: translateY(-3px);
}

.voice-img {
	flex-shrink: 0;
	width: 300px;
	height: 100%;
	height: 230px;
	overflow: hidden;
	background: #f5f5f5;
}

.voice-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.voice-card:hover .voice-img img {
	transform: scale(1.08);
}

.voice-content {
	flex: 1;
	min-width: 0;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.voice-title {
	font-size: 20px;
	font-weight: 700;
	color: #002647;
	line-height: 1.4;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.voice-card:hover .voice-title {
	color: #0877A8;
}

.voice-desc {
	font-size: 13px;
	color: var(--pri6);
	line-height: 1.7;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.voice-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 8px;
}

/* 查看更多 */
.btn-more {
	display: inline-block;
	padding: 6px 18px;
	font-size: 14px;
	color: #0877A8;
	background: #fff;
	border: 1px solid #0877A8;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.btn-more:hover {
	background: #0877A8;
	color: #fff;
}

/* 讲解 */
.btn-listen {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #0877A8;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.btn-listen:hover {
	opacity: 0.75;
}

.btn-listen img {
	width: 22px;
	height: 22px;
}

/* ========== 智能导游导览地图 ========== */
.map-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.map-wrap img {
	width: 100%;
	max-width: 1280px;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
