:root {
	--pri: #002647;
	--pria: #0877A8;
	--prib: #1EA7D9;
	--pri6: rgba(0, 38, 71, 0.6);
	--pria7: rgba(8, 119, 168, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", sans-serif;
}

body {
	min-width: 1400px;
	color: #333;
	background: #fff;
	overflow-x: auto;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleHover {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.03);
	}
}

.animate-fade {
	opacity: 0;
	transform: translateY(80px);
	transition: all 0.8s ease-out;
}

.animate-fade.active {
	opacity: 1;
	transform: translateY(0);
}

.hover-scale {
  animation: scaleOut 0.4s ease forwards;
}
.hover-scale:hover {
  animation: scaleHover 0.4s ease forwards;
}

/* 放大动画 */
@keyframes scaleHover {
  to { transform: scale(1.05); }
}
/* 缩小还原动画 */
@keyframes scaleOut {
  to { transform: scale(1); }
}

.hover-scalebig {
  animation: scaleOutBig 0.4s ease forwards;
}
.hover-scalebig:hover {
  animation: scaleHoverBig 0.4s ease forwards;
}

/* 放大动画 */
@keyframes scaleHoverBig{
  to { transform: scale(1.1); }
}
/* 缩小还原动画 */
@keyframes scaleOutBig {
  to { transform: scale(1); }
}
.container {
	width: 1400px;
	margin: 0 auto;
}

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

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

.sec-title p {
	font-size: 15px;
	color: #999;
}

/* 顶部悬浮导航 */
.header-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1400px;
	background: transparent rgba(0, 30, 60, 0);
	z-index: 999;
	transition: background 0.3s;
}

.header-nav.scrolled {
	background: rgba(0, 20, 40, 0.95);
}

.nav-wrap {
	width: 1400px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	width: 100px;
	height: 93px;
}

.nav-logo img {
	width: 100%;
	height: 100%;
}

.nav-menu {
	display: flex;
	gap: 6px;
}

.menu-item {
	position: relative;
	padding: 0 40px;
	height: 70px;
	line-height: 70px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

.menu-item:hover {
	color: #b1d3fc;
}

.submenu {
	position: absolute;
	top: 81px;
	left: 0;
	width: 160px;
	background: rgba(0, 20, 40, 0.9);
	border-radius: 4px;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}

.menu-item:hover .submenu {
	max-height: 800px;
}

.submenu li {
	color: #eee;
	font-size: 13px;
	text-align: center;
	padding:0;
}
	.submenu li a {
		padding: 12px 16px;
		line-height: 24px;
		width:100%;
		display:block;
	}

.submenu li:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #b1d3fc;
}

.lang-btn {
	color: #fff;
	font-size: 13px;
	padding: 4px 10px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
}

/* 面包屑导航 */
.breadcrumb {
	min-width: 1400px;
	padding: 30px 0 20px;
	background: transparent;
}

.breadcrumb .container {
	width: 1400px;
	margin: 0 auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	padding: 18px 30px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.breadcrumb span {
	font-size: 14px;
	color: #0877A8;
	display: inline-flex;
	align-items: center;
	transition: color 0.25s ease;
	white-space:nowrap;
}

.breadcrumb span:not(.separator):not(.current):hover {
	color: #1EA7D9;
	cursor: pointer;
}

.breadcrumb span img {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}

.breadcrumb .separator {
	color: #0877A8;
	opacity: 0.6;
}

.breadcrumb .current {
	color: #1EA7D9;
}

/* 页脚 */
footer {
	min-width: 1400px;
	background: #f5f0e8;
	padding: 60px 0 30px;
}

.footer-wrap {
	width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap:200px;
}

.footer-logo img {
	width: 160px;
}

.footer-info {
	display: flex;
	gap: 100px;
}

.footer-col{
	width:200px;
}

.footer-col a {
	font-size: 16px;
	color: var(--pri);
	line-height: 2.2;
	display: block;
	cursor: pointer;
}
	.footer-col a:last-child {
		width:450px;
	}
	.links a:hover {
		color: var(--prib);
	}

.copyright {
	width: 1400px;
	margin: 40px auto 0;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	text-align: center;
	font-size: 16px;
	color: var(--pri);
	line-height: 2;
}

	.copyright a {
		display: inline-flex;
		align-items: center;
		text-decoration: none;
	}

.copyright-records {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: nowrap;
}

.copyright-img{
	width:25px;
	height:25px;
	margin-right:10px;
}



/* 分页 */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 50px;
	flex-wrap: wrap;
}

.page-btn,
.page-num {
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #666;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: all 0.25s ease;
	cursor: pointer;
	text-decoration: none;
}

.page-btn:hover,
.page-num:hover {
	color: #fff;
	background: #0877A8;
	border-color: #0877A8;
}

.page-num.active {
	color: #fff;
	background: #0877A8;
	border-color: #0877A8;
}

.page-dots {
	color: #999;
	font-size: 14px;
	padding: 0 4px;
}

.arrow-left,
.arrow-right {
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.arrow-left  { transform: rotate(-135deg); margin-left: 3px; }
.arrow-right { transform: rotate(45deg);   margin-right: 3px; }

.page-jump {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-left: 8px;
	color: #666;
	font-size: 14px;
}

.page-input {
	width: 50px;
	height: 36px;
	padding: 0 8px;
	text-align: center;
	font-size: 14px;
	color: #666;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	outline: none;
	transition: border-color 0.25s ease;
}

.page-input:focus { border-color: #0877A8; }

.page-jump-text { color: #999; }

.page-total {
	color: #999;
	font-size: 14px;
	margin-left: 4px;
}

.page-total em {
	font-style: normal;
	color: #666;
	margin: 0 2px;
}


/* ===== 扫码购票弹窗 ===== */
.modal-mask {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

	.modal-mask.show {
		opacity: 1;
		visibility: visible;
	}

.modal-box {
	position: relative;
	width: 720px;
	height: 480px;
	background: linear-gradient(180deg, #0877A8 0%, #002647 100%);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	animation: modalIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes modalIn {
	from {
		transform: scale(0.85) translateY(20px);
		opacity: 0;
	}

	to {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

/* 祥云背景纹理 */
.modal-pattern {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(ellipse 90px 50px at 18% 28%, rgba(255, 220, 200, 0.10) 50%, transparent 51%), radial-gradient(ellipse 110px 60px at 72% 18%, rgba(255, 220, 200, 0.08) 50%, transparent 51%), radial-gradient(ellipse 130px 70px at 45% 55%, rgba(255, 220, 200, 0.06) 50%, transparent 51%), radial-gradient(ellipse 100px 55px at 85% 48%, rgba(255, 220, 200, 0.08) 50%, transparent 51%), radial-gradient(ellipse 80px 45px at 12% 70%, rgba(255, 220, 200, 0.07) 50%, transparent 51%);
	pointer-events: none;
}

/* 关闭按钮 */
.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	padding: 0;
}

	.modal-close:hover {
		background: rgba(255, 255, 255, 0.35);
		transform: rotate(90deg);
	}

/* 主体两栏 */
.modal-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 60px 50px 110px;
}

.modal-text {
	flex: 1;
	color: #fff;
}

	.modal-text h2 {
		font-size: 30px;
		font-weight: 700;
		line-height: 1.7;
		margin: 0 0 28px;
		text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
		letter-spacing: 2px;
	}

.modal-btn {
	display: inline-block;
	padding: 13px 36px;
	font-size: 16px;
	font-weight: 500;
	color: #6b0d0a;
	background: linear-gradient(180deg, #fbe28a 0%, #e0a83c 100%);
	border: 2px solid #c89524;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	letter-spacing: 1px;
}

	.modal-btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
	}

	.modal-btn:active {
		transform: translateY(0);
	}

/* 二维码卡片 */
.modal-qr {
	position: relative;
	width: 180px;
	height: 180px;
	padding: 10px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

	.modal-qr img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		display: block;
	}

/* 二维码四角装饰 */
.qr-corner {
	position: absolute;
	width: 26px;
	height: 26px;
	border: 3px solid #e0a83c;
}

.qr-corner-tl {
	top: -10px;
	left: -10px;
	border-right: none;
	border-bottom: none;
}

.qr-corner-tr {
	top: -10px;
	right: -10px;
	border-left: none;
	border-bottom: none;
}

.qr-corner-bl {
	bottom: -10px;
	left: -10px;
	border-right: none;
	border-top: none;
}

.qr-corner-br {
	bottom: -10px;
	right: -10px;
	border-left: none;
	border-top: none;
}



.slh {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-wrap: break-word;
}

.slhTwo {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-wrap: break-word;
}

.slhTwo3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	word-wrap: break-word;
}

.slhTwo4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	word-wrap: break-word;
}