/* 轮播区域 */
.banner {
	width: 100%;
	min-width: 1400px;
	height: 800px;
	position: relative;
	overflow: hidden;
}

.banner-list {
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 1s ease-in-out;
}

.banner-item {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
}

.banner-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
}

.banner-text h1 {
	font-size: 48px;
	margin-bottom: 12px;
	font-weight: 500;
}

.banner-text p {
	font-size: 18px;
	opacity: 0.9;
}

.banner-dots {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
}

.dot.active {
	background: #fff;
}

/* 通用容器 */
.container {
	width: 1400px;
	margin: 0 auto;
	padding: 40px 0;
}

.sec-title {
	text-align: center;
	margin-bottom: 40px;
}

.sec-title h2 {
	font-size: 36px;
	color: #002244;
	margin-bottom: 8px;
}

.sec-title p {
	font-size: 14px;
	color: var(--pri6);
}

.shadow {
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.10);
}

/* 公告栏 */
.notice-bar {
	width: 1400px;
	margin: 40px auto 60px;
	background: #fff;
	padding: 14px 20px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.notice-left {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #333;
	flex:1;
	margin-right:20px;
}

.notice-left span.notice-title {
	font-size: 16px;
	font-weight: bold;
	color: var(--pria);
}

	.notice-left span.notice-text {
		width:1100px;
		cursor:pointer;
	}

.notice-left span:last-child {
	font-size: 16px;
	color: var(--pri6);
}

.notice-left img {
	width: 20px;
}

.notice-more {
	background: #002244;
	color: #fff;
	font-size: 13px;
	padding: 6px 16px;
	border-radius: 14px;
}

/* 温馨提示 票价模块 */
.tip-box {
	display: flex;
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.tip-img {
	width: 600px;
	height: 350px;
	overflow: hidden;
}

.tip-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tip-info {
	flex: 1;
	padding: 0px 60px 0px 60px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
	height: 350px;
}

	.tip-info > p {
		font-size: 20px;
		color: #002647;
	}

	.price-row {
		display: flex;
		gap: 40px;
	}

.price-item{
	flex:1;
	width:30%;
}

.price-item p:first-child {
	font-size: 48px;
	color: #0877A8;
	font-weight: bold;
}

.price-item p:last-child {
	font-size: 16px;
	color: rgba(8, 119, 168, 0.7);
}

.tip-desc {
	font-size: 18px;
	color: var(--pri6);
	line-height: 1.6;
}

.tel-row {
	display: flex;
	gap: 20px;
	margin-top: 0px;
}

.tel-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	border: 1px solid #e8edf3;
	border-radius: 20px;
	font-size: 15px;
	gap: 40px;
}

.tel-btn img:first-child {
	width: 48px;
}

.tel-btn img:last-child {
	width: 24px;
}

.tel-btn span {
	flex: 1;
	text-align: left;
}

.tel-btn span div:first-child {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 35px;
	color: rgba(0, 38, 71, 1);
}

.tel-btn span div:last-child {
	font-size: 20px;
	line-height: 35px;
	color: rgba(0, 38, 71, 0.6);
}

/* 新闻资讯 */
.news-wrap {
	display: flex;
	gap: 30px;
}

.news-img {
	width: 600px;
	height: 350px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

/* 轮播图容器 */
.news-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.news-carousel:hover .carousel-slide img {
	transform: scale(1.1);
}

/* 轮播角标 + 标题叠加 */
.carousel-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 15px;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.carousel-title {
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width:450px;
}

/* 轮播指示点 */
.carousel-dots {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: flex;
	gap: 6px;
	z-index: 2;
}

.news-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.news-dot.active {
	width: 16px;
	border-radius: 4px;
	background: #fff;
}

.news-list {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-item {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 20px;
	border-bottom: 1px dashed #e8edf3;
}

.news-item:last-child {
	border-bottom: none;
}

.news-num {
	font-size: 14px;
	font-weight: bold;
	color: var(--prib);
	width: 30px;
}

.news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 680px;
}

	.news-content a {
		font-size: 15px;
		color: var(--pri);
		font-weight: bold;
		text-decoration: none;
	}

.news-content a:hover {
	color: #0877A8;
}

.news-date {
	font-size: 13px;
	color: var(--pri6);
}

.news-arrow {
	width: 16px;
	height: 16px;
}

/* 景区简介 */
.intro-sec {
	background: #002244;
	color: #fff;
	margin: 80px 0;
	padding: 80px 0;
	min-width: 1400px;
}

.intro-sec .sec-title h2 {
	color: #fff;
}

.intro-sec .sec-title p {
	color: rgba(255, 255, 255, 0.6);
}

.intro-text {
	width: 1400px;
	margin: 0 auto 40px;
	font-size: 14px;
	line-height: 2.2;
	opacity: 0.85;
}

.intro-imgs {
	width: 1400px;
	margin: 0 auto;
	position: relative;
	border-radius: 6px;
}
.intro-subimg{
	width: 1400px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.intro-track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-page {
	flex: 0 0 100%;
	display: flex;
	gap: 40px;
}

.intro-card {
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	width:calc(25% - 30px);
}

/* 覆盖通用 hover-scale：对 intro-card 不缩放容器，改为缩放内部图片，保持圆角 */
.intro-card.hover-scale {
	animation: none;
}
.intro-card.hover-scale:hover {
	animation: none;
}

.intro-card img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	display: block;
	border-radius: 6px;
	transition: transform 0.4s ease;
}

.intro-card:hover img {
	transform: scale(1.05);
}


/* 轮播箭头 */
.intro-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.85);
	color: #002244;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	padding: 0;
	line-height: 1;
}

.intro-arrow:hover {
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transform: translateY(-50%) scale(1.05);
}

.intro-arrow-left { left: -62px; }
.intro-arrow-right { right: -62px; }


/* 轮播圆点 */
.intro-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.intro-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.3s ease;
}

.intro-dot.active {
	background: #fff;
	width: 24px;
	border-radius: 5px;
}

/* 热门景点 */
.spot-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.spot-card {
	position: relative;
	background: #1a2c44;
	border-radius: 12px;
	overflow: hidden;
	height: 400px;
}

.spot-card-img {
	width: 100%;
	height: 100%;
}

.spot-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spot-card-text {
	position: absolute;
	right: 0;
	top: 0;
	width: 45%;
	height: 100%;
	padding: 28px;
	display: flex;
	flex-direction: column;
	background: linear-gradient(30deg, rgba(40, 52, 66, 0) 0%, rgba(40, 52, 66, 1) 100%);
}

.spot-card-text h3 {
	font-size: 20px;
	color: #fff;
	margin-bottom: 12px;
	font-weight: 600;
	border-bottom:1px solid #ffffff40;
	padding-bottom:12px;
}

.spot-card-text .date {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 16px;
}

.spot-card-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	flex: 1;
}


/* 旅行服务 */
.service-sec {
	background: #051e34;
	color: #fff;
	min-width: 1400px;
	padding: 80px 0;
}

.service-sec .sec-title {
	text-align: center;
	margin-bottom: 50px;
}

.service-sec .sec-title h2 {
	color: #fff;
	font-size: 32px;
	margin-bottom: 12px;
}

.service-sec .sec-title p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
}

.service-wrap {
	width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 460px 1fr;
	gap: 10px;
}

.service-big {
	border-radius: 12px;
	overflow: hidden;
	width:460px;
	height: 600px;
	display: flex;
}

.service-big div{
	flex:1;
	position: relative;
}

.service-big img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-big .text {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.service-big h3 {
	font-size: 32px;
	margin-bottom: 8px;
}

.service-big p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

.service-small-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	flex:1;
}

.service-small {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	height: 100%;
	width:100%
}

.service-small div {
	height: 100%;
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.service-small:hover {
	/* background: rgba(255, 255, 255, 0.1); */
	border-color: rgba(255, 255, 255, 0.2);
}

.service-small img {
	width: 58px;
	height: 58px;
}

.service-small p {
	font-size: 24px;
	color: #fff;
	font-weight: 600;
}

/* 二维码引流区 */
.qr-sec {
	width: 1400px;
	margin: 80px auto;
	background: linear-gradient(99.11deg, rgba(68, 124, 173, 1) 0%, rgba(0, 38, 71, 1) 100%);
	border-radius: 24px;
	display: flex;
	overflow: hidden;
	min-height: 360px;
}

.qr-img-left {
	width: 550px;
	height: 550px;
	position: relative;
	overflow: hidden;
}

.qr-img-left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qr-text {
	padding: 50px 50px 50px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.qr-text h2 {
	font-size: 42px;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.3;
}

.qr-text p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 30px;
}

.qr-box {
	display: flex;
	gap: 40px;
}

.qr-item {
	text-align: center;
}

.qr-item img {
	width: 100px;
	height: 100px;
	margin-bottom: 10px;
}

.qr-item span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
}

/* 底部资质栏（独立深色区块） */
.cert-bar {
	min-width: 1400px;
	background: #0a2545;
	padding: 35px 0 30px;
}

.cert-wrap {
	width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cert-top {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 160px;
}

.cert-loc {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.cert-location {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
}

.cert-air {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	gap: 6px;
}

.air-level {
	font-style: normal;
	background: #FFC300;
	color: #fff;
	border-radius: 3px;
	font-size: 12px;
	width: 20px;
	height:20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cert-weather {
	display: flex;
	gap: 80px;
}

.weather-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.weather-item img {
	width: 58px;
	height: auto;
}

.weather-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: #fff;
	line-height: 1.3;
}

.weather-day {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
}

.weather-temp {
	font-size: 14px;
	font-weight: 600;
}

.weather-state {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
}

.cert-logos {
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	overflow: hidden;
}

.cert-logos-scroll {
	width: 100%;
	overflow: hidden;
}

.cert-logos-inner {
	display: flex;
}
.cert-logos-inner-anim {
	animation: scrollLogos 30s linear infinite;
}
	.cert-logos-inner:hover {
		animation-play-state: paused;
	}

@keyframes scrollLogos {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* 回到顶部按钮 */
.back-to-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	width: 48px;
	height: 48px;
	background: rgba(0, 38, 71, 0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 999;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: rgba(0, 38, 71, 1);
	transform: translateY(-2px);
}

/* 纯 CSS 向上箭头 */
.back-to-top-arrow {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-left: 3px solid #fff;
	border-top: 3px solid #fff;
	transform: rotate(45deg);
	margin-top: 4px;
}

.cert-logo-item {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-shrink: 0;
	margin-right: 60px;
}

.cert-logos img {
	height: 48px;
}

.cert-logos p {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

/* 手机媒体查询，最大宽度768px以下设备 */
@media screen and (max-width:1200px) {
	.intro-subimg, .intro-imgs, .intro-text {
		width: 1280px;
	}
}