/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	overflow-x: hidden;
	/* 防止移动端横向滚动 */
}

/* 顶部导航栏容器 */
header {
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
	position: fixed;
	/* 固定顶部，提升体验 */
	top: 0;
	left: 0;
	z-index: 999;
}

header:hover {
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);

}



/* 导航核心容器 */
nav {
	max-width: 1200px;
	margin: 0 auto;
	height: 60px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Logo样式 */
.nav-logo a {
	display: flex;
	align-items: center;
}


/* 汉堡菜单按钮 - 默认隐藏 */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.hamburger span {
	width: 100%;
	height: 2px;
	background-color: #1d1d1f;
	border-radius: 1px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

/* 汉堡菜单激活态（叉号） */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* 导航列表 - 桌面端样式 */
.nav-list {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 60px;
	/* 微调间距，适配更多屏幕 */
}

/* 导航项 */
.nav-item {
	position: relative;
	height: 60px;
	display: flex;
	align-items: center;
}

/* 导航链接 */
.nav-item>a {
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.nav-item>a:hover {
	opacity: 1;
}

/* 图标样式（搜索、购物袋） */
.nav-icon a {
	font-size: 14px;
}

/* 下拉菜单核心样式 - 桌面端 */
.dropdown {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100vw;
	background-color: #ffffff;
	padding: 40px 0 60px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 998;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* hover触发下拉显示 - 仅桌面端生效 */
.nav-item:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 下拉菜单内容容器 - 桌面端 */
.dropdown-content {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0px 10px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* grid-template-columns: repeat(3, 1fr); */
	gap: 20px;
}

.Wmiaos {
	padding: 50px 0px;
	font-size: 14px;
	line-height: 30px;
	color: rgba(0, 0, 0, 0.6);
}

/* 下拉菜单列 */
.dropdown-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* 列标题 */
.column-title {
	font-size: 12px;
	color: #86868b;
	font-weight: 400;
	margin-bottom: 8px;
}

/* 大标题链接 */
.dropdown-link {
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	color: #1d1d1f;
	text-decoration: none;
	transition: color 0.2s ease;
}

.dropdown-link:hover {
	color: #40c62d;
}

/* 小号辅助链接 */
.small-link {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

/* 底部黑色遮罩层 - 桌面端 */
.nav-mask {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100vw;
	height: calc(100vh - 60px);
	background-color: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	z-index: 997;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
}

nav:hover~.nav-mask {
	opacity: 1;
	visibility: visible;
}


/* ========================================== */
/* 响应式适配 - 平板/移动端 (768px以下) */
/* ========================================== */
@media (max-width: 768px) {

	/* 显示汉堡菜单 */
	.hamburger {
		display: flex;
	}

	/* 导航列表改为移动端侧滑菜单 */
	.nav-list {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background-color: #fbfbfd;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 80px 24px 40px;
		gap: 0;
		transform: translateX(100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
		z-index: 1000;
		overflow-y: auto;
		/* 适配长列表滚动 */
	}

	/* 移动端导航列表展开状态 */
	.nav-list.active {
		transform: translateX(0);
	}

	/* 移动端导航项样式 */
	.nav-item {
		height: auto;
		width: 100%;
		padding: 12px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.03);
	}

	.nav-item>a {
		font-size: 16px;
		opacity: 1;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* 移动端下拉菜单箭头 */
	.nav-item>a::after {
		content: "›";
		font-size: 18px;
		opacity: 0.6;
		transition: transform 0.2s ease;
	}

	/* 移动端下拉菜单样式重写 */
	.dropdown {
		position: static;
		width: 100%;
		padding: 16px 0 0;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		background: transparent;
		box-shadow: none;
		display: none;
		/* 默认隐藏，通过JS控制 */
	}

	/* 移动端下拉菜单展开状态 */
	.dropdown.active {
		display: block;
	}

	/* 移动端下拉内容容器 */
	.dropdown-content {
		max-width: 100%;
		padding: 0;
		grid-template-columns: 1fr;
		/* 单列布局 */
		gap: 16px;
	}

	/* 移动端下拉列样式 */
	.dropdown-column {
		gap: 8px;
	}

	/* 移动端下拉链接样式调整 */
	.dropdown-link {
		font-size: 18px;
	}

	.small-link {
		font-size: 14px;
	}

	/* 移动端遮罩层 */
	.nav-mask {
		top: 0;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.4);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease;
		z-index: 999;
	}

	/* 移动端遮罩层激活态 */
	.nav-mask.active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* 隐藏桌面端的搜索/购物袋图标（移动端可自定义） */
	.nav-icon {
		display: none;
	}
}

/* 小屏移动端适配（480px以下） */
@media (max-width: 480px) {
	nav:hover~.nav-mask {
		opacity: 0;
		visibility: hidden;
	}

	.nav-list {
		width: 100%;
		/* 全屏侧滑 */
	}

	.dropdown-link {
		font-size: 16px;
	}
}

/* 页面主体内容间距（适配固定导航） */
main {
	/* padding: 80px 20px 40px;
	text-align: center; */
}

/* 英雄区 */
/* 内容核心容器 */
.content-container {
	width: 100%;
	height: 700px;
	max-height: 700px;
	text-align: center;
	background-image: url(/image/bg1.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding: 10% 0px;
	margin-top: 60px;
}

/* 主标题样式 */
.main-title {
	font-size: 60px;
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .3);
	line-height: 1.1;
	margin-bottom: 16px;
	letter-spacing: 6px;
}

/* 副标题样式 */
.sub-title {
	font-size: 28px;
	font-weight: 400;
	color: #ffffff;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .3);
	line-height: 1.3;
	margin-bottom: 32px;
	letter-spacing: 4px;
}

/* 绿色按钮样式 */
.primary-btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: #0071E3;
	/* 定制品牌绿，非公共颜色名 */
	color: #ffffff;
	border-radius: 980px;
	/* 苹果同款胶囊圆角 */
	text-decoration: none;
	font-size: 17px;
	font-weight: 400;
	transition: background-color 0.2s ease;
}

/* 按钮hover效果 */
.primary-btn:hover {
	color: #ffffff;
	background-color: #0077ED;
	/* hover加深绿色，提升交互感 */
}

/* 展示图区域 */
.display-area {
	margin-top: 60px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.display-area img {
	max-width: 100%;
	height: auto;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 12px;
}

/* 响应式适配 - 平板/大屏手机 */
@media (max-width: 768px) {
	/* body {
		padding: 60px 16px 40px;
	} */

	.main-title {
		font-size: 48px;
	}

	.sub-title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.display-area {
		margin-top: 40px;
	}
}

/* 响应式适配 - 小屏手机 */
@media (max-width: 480px) {
	.content-container {
		height: 300px;
	}

	.main-title {
		font-size: 36px;
	}

	.sub-title {
		font-size: 18px;
	}

	.primary-btn {
		padding: 10px 20px;
		font-size: 16px;
	}
}

/* 首页核心价值 */
/* 四层容器 - Grid布局核心 */
.grid-container {
	width: 100%;
	padding: 14px;
	overflow: hidden;
	margin: 0 auto;
}

/* 单个层样式 */
.grid-item {
	width: calc(50% - 7px);
	float: left;
	margin-bottom: 14px;
	background-color: #F5F5F7;
	height: 600px;
	text-align: center;
	overflow: hidden;
}

.grid-item:nth-child(even) {
	margin-left: 14px;
}

/* 响应式适配：屏幕宽度小于768px时一行一个 */
@media (max-width: 768px) {
	.grid-item {
		width: 100%;
		margin-bottom: 14px;
	}

	.grid-item:nth-child(even) {
		margin-left: 0;
	}
}

.hx1 {
	background: linear-gradient(150deg, #FCDF94 0%, #ffffff 80%);
	/* background: linear-gradient(150deg, #AEDDEF 0%, #ffffff 80%); */
}

.hx2 {
	background: linear-gradient(180deg, #f2f5f7 0%, #ffffff 100%);
}

.hx3 {
	background: linear-gradient(200deg, #beffd0 0%, #ffffff 100%);
}


/* 主标题样式 */
.hx-title {
	font-size: 36px;
	color: #2d3748;
	font-weight: 700;
	letter-spacing: 1px;
	padding-top: 6%;
}

/* 副标题样式 */
.hxsub-title {
	font-size: 18px;
	color: #4a5568;
	line-height: 1.6;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* 按钮样式 */
.hx-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #0071E3;
	color: #ffffff;
	border-radius: 980px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	transition: background-color 0.2s ease;
}

.hx-btn:hover {
	color: #ffffff;
	background-color: #0077ED;
}

/* 响应式适配 - 移动端 */
@media (max-width: 768px) {

	.hx-title {
		font-size: 28px;
	}

	.hxsub-title {
		font-size: 16px;
	}

	.hx-btn {
		padding: 10px 24px;
		font-size: 14px;
	}
}

/* 更小屏幕适配 */
@media (max-width: 480px) {
	.hx-title {
		font-size: 24px;
	}

	.hxsub-title {
		font-size: 15px;
	}
}


/* 研究与整理 */
.yjzl {
	clear: both;
	width: 100%;
	padding-top: 1.5%;
}

.yjzl img {
	width: 50%;
}

/* 文化 IP 孵化 */
.whip {
	clear: both;
	width: 100%;
	padding-top: 1.5%;
}

.whip img {
	width: 70%;
}

/* 传统与传承 */
.shcc {
	clear: both;
	width: 100%;
	padding-top: 1.5%;
}

.shcc img {
	width: 65%;
}

/* 推广服务 */
.tgfw {
	clear: both;
	width: 100%;
	padding-top: 1.5%;
}

.tgfw img {
	width: 35%;
}

/* 首页品牌区域 */
/* 轮播外层容器 */
.slider-container {
	position: relative;
	width: 100vw;
	height: 600px;
	overflow: hidden;
	padding: 14px 0;
}

/* 轮播滚动容器 */
.slider-wrapper {
	display: flex;
	align-items: center;
	gap: 14px;
	/* 手机端间距 */
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
	touch-action: pan-y;
	/* 限制触摸行为，仅允许垂直滚动 */
}

/* 单个slide样式 - 响应式宽度 */
.slide {
	width: 100vw;
	/* 手机端默认宽度 */
	height: 600px;
	/* 手机端高度 */
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	background: #f2f5f7;
}

/* 视频填充 */
.slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	/* 禁止手机端视频点击暂停 */
}

/* 文字内容 */
.slide-content {
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #ffffff;
	z-index: 2;
	width: 90%;
}

.slide-content h2 {
	font-size: 1.8rem;
	line-height: 1.2;
	letter-spacing: 4px;
	margin-bottom: 0.8rem;
	font-weight: 500;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .5);
}

.slide-content span {
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	display: block;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .5);
}

.slide-content .links {
	font-size: 0.95rem;
}

.slide-content .links a {
	color: #ffffff;
	text-decoration: none;
	margin: 0 0.6rem;
	transition: opacity 0.3s;
	text-shadow: 0px 2px 4px rgba(0, 0, 0, .5);
}

.slide-content .links a:hover {
	opacity: 0.7;
}

/* 左右切换箭头 - 手机端优化 */
.slider-nav {
	position: absolute;
	top: 50%;
	left: 20%;
	transform: translateY(-50%);
	width: 60%;
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
	z-index: 10;
	pointer-events: none;
}

.slider-nav button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	border: none;
	color: #ffffff;
	font-size: 18px;
	cursor: pointer;
	pointer-events: all;
	transition: background 0.3s ease;
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-nav button:active {
	background: rgba(255, 255, 255, 0.4);
}

.slider-nav img {
	width: 50%;
}

/* 底部指示器 */
.slider-dots {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 10;
}

.slider-dots .dot {
	width: 20px;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	border: none;
	cursor: pointer;
	transition: background 0.3s ease;
	border-radius: 2px;
}

.slider-dots .dot.active {
	background: #ffffff;
}

/* 平板及以上设备适配 */
@media (min-width: 768px) {
	.slider-container {
		padding: 14px 0;
	}

	.slider-wrapper {
		gap: 14px;
		/* 桌面端间距 */
	}

	.slide {
		width: 1180px;
		/* 桌面端固定宽度 */
		height: 600px;
	}

	.slide-content h2 {
		font-size: 2.5rem;
	}

	.slide-content .links {
		font-size: 1rem;
	}

	.slider-nav {
		padding: 0 30px;
	}

	.slider-nav button {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.slider-dots .dot {
		width: 20px;
	}
}


.story-section {
	width: 100%;
	max-width: 1280px;
	/* 适配宽屏官网尺寸 */
	margin: 80px auto;
	padding: 0 40px;
}

/* 顶部标题区 - 参考图「创新故事」的排版 */
.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.main-titlex {
	font-size: 2.5rem;
	font-weight: 600;
	color: #222222;
	margin-bottom: 16px;
}

.sub-titlex {
	font-size: 1rem;
	color: #666666;
	line-height: 1.6;
}

/* 双列卡片容器 - 参考图左右分栏逻辑 */
.card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	/* 卡片间距，匹配参考图留白 */
}

/* 单个卡片样式 - 参考图的视觉质感 */
.brand-card {
	flex: 1;
	min-width: 320px;
	/* 移动端最小宽度 */
	height: 500px;
	/* 参考图卡片高度 */
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	background-color: #f2f5f7;
}

/* 卡片背景图 - 覆盖式展示 */
.card-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	transition: opacity 0.3s ease;
}

.brand-card:hover .card-bg {
	opacity: 1;
	/* 悬停增强背景图对比度 */
}

/* 卡片文字内容 - 参考图的层级排版 */
.card-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 60px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #222222;
}

/* 小标题（参考图「科技赋能新生态」） */
.card-tag {
	font-size: 0.95rem;
	color: #777777;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

/* 主标题（参考图「农业无人机白皮书发布」） */
.card-title {
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 24px;
	color: #111111;
}

/* 正文内容 */
.card-desc {
	font-size: 1rem;
	color: #555555;
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 90%;
}

/* 按钮（参考图「了解更多」） */
.card-link {
	display: inline-block;
	font-size: 0.95rem;
	color: #2a7fff;
	/* 品牌蓝，匹配参考图的链接色 */
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.card-link:hover {
	color: #1a66dd;
	transform: translateX(4px);
}

.card-link::after {
	content: " >";
	font-size: 0.85rem;
}

/* 响应式适配 - 移动端堆叠布局 */
@media (max-width: 768px) {
	.story-section {
		margin: 60px auto;
		padding: 0 20px;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.main-title {
		font-size: 2rem;
	}

	.brand-card {
		min-width: 100%;
		height: 420px;
	}

	.card-content {
		padding: 40px 25px;
	}

	.card-title {
		font-size: 1.5rem;
	}

	.card-desc {
		max-width: 100%;
	}
}

/* 超小屏适配（手机竖屏） */
@media (max-width: 480px) {
	.main-title {
		font-size: 1.7rem;
	}

	.brand-card {
		height: 380px;
	}

	.card-tag {
		font-size: 0.85rem;
	}

	.card-title {
		font-size: 1.3rem;
	}
}



/* 模块外层容器 - 专属前缀 bp- */
.bp-section {
	width: 100%;
	max-width: 1200px;
	margin: 80px auto;
	/* 	padding: 0px 24px; */
}

/* 顶部标题区 - 专属命名 */
.bp-header {
	text-align: center;
	margin-bottom: 60px;
}

.bp-main-title {
	font-size: 2.5rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
	position: relative;
	display: inline-block;
}

.bp-main-title::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #4361ee, #3a0ca3);
	border-radius: 2px;
}

.bp-sub-title {
	font-size: 1rem;
	color: #616161;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

/* 三栏卡片容器 - 专属命名 */
.bp-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	/* 增大间距提升呼吸感 */
}

/* 单个卡片基础样式 - 专属命名 */
.bp-card {
	padding: 60px 32px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	overflow: hidden;
	background-color: #f2f5f7;
	border: 1px solid #f2f5f7;
}

/* 卡片hover微动效 - 强化立体感 */
/* .bp-card:hover {
	transform: translateY(-8px) scale(1.02);
	/* box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08); 
}*/

/* 背景装饰元素 - 专属命名 */
.bp-bg-decoration {
	position: absolute;
	top: 0;
	right: 0;
	width: 120px;
	height: 120px;
	opacity: 0.05;
	z-index: 0;
}

/* ========== 代理商卡片 - 活力蓝 ========== */
.bp-card.bp-agent {
	--bp-main-color: #4361ee;
	--bp-light-color: #e8f0fe;
}

.bp-agent .bp-bg-decoration {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234361ee'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
	background-size: contain;
}

/* ========== 供应商卡片 - 活力绿 ========== */
.bp-card.bp-supplier {
	--bp-main-color: #38b000;
	--bp-light-color: #f0fdf4;
}

.bp-supplier .bp-bg-decoration {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2338b000'%3E%3Cpath d='M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
	background-size: contain;
}

/* ========== 投资关系卡片 - 活力橙 ========== */
.bp-card.bp-invest {
	--bp-main-color: #ff9f1c;
	--bp-light-color: #fff7ed;
}

.bp-invest .bp-bg-decoration {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff9f1c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
	background-size: contain;
}

/* 卡片标签 - 专属命名 */
.bp-card-tag {
	font-size: 0.9rem;
	color: var(--bp-main-color);
	margin-bottom: 16px;
	letter-spacing: 0.5px;
	font-weight: 500;
	display: inline-block;
	padding: 4px 12px;
	background-color: var(--bp-light-color);
	border-radius: 20px;
	/* 胶囊样式更精致 */
}

/* 卡片标题 - 专属命名 */
.bp-card-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
	/* 层级高于背景装饰 */
}

/* 标题hover变色 - 专属主色 */
.bp-card:hover .bp-card-title {
	color: var(--bp-main-color);
	transition: color 0.3s ease;
}

/* 卡片描述 - 专属命名 */
.bp-card-desc {
	font-size: 1rem;
	color: #555555;
	line-height: 1.8;
	margin-bottom: 32px;
	position: relative;
	z-index: 1;
}

/* 链接按钮 - 专属命名 */
.bp-card-link {
	font-size: 1rem;
	color: var(--bp-main-color);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.bp-card-link::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--bp-main-color);
	transition: width 0.3s ease;
}

.bp-card-link:hover {
	color: var(--bp-main-color);
}

.bp-card-link:hover::before {
	width: 100%;
}

.bp-card-link::after {
	content: "→";
	margin-left: 6px;
	transition: transform 0.3s ease;
	font-size: 1.1rem;
}

.bp-card-link:hover::after {
	transform: translateX(4px);
}

/* 响应式适配 - 仅作用于本模块 */
@media (max-width: 768px) {
	.bp-section {
		margin: 60px auto;
		padding: 0 16px;
	}

	.bp-main-title {
		font-size: 2rem;
	}

	.bp-card {
		padding: 40px 24px;
	}

	.bp-card-title {
		font-size: 1.5rem;
	}

	.bp-card-desc {
		font-size: 0.95rem;
	}

	.bp-bg-decoration {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 480px) {
	.bp-main-title {
		font-size: 1.7rem;
	}

	.bp-card-grid {
		gap: 20px;
	}

	.bp-card-tag {
		font-size: 0.85rem;
		padding: 3px 10px;
	}
}

/* 底部容器 - 增大上下内边距，提升高度感 */
.footer {
	background-color: #222222;
	/* 更深的背景，更显大气 */
	color: #ffffff;
	padding: 60px 20px 40px;
	/* 大幅增加上下内边距 */
	max-width: 1920px;
	margin: 0 auto;
}

/* 顶部区域 - 分栏布局 */
.footer-top {
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #444444;
	margin-bottom: 40px;
}

/* 品牌信息区 */
.footer-brand {
	flex: 1;
	min-width: 430px;
}

.footer-logo {
	font-size: 36px;
	font-weight: 700;
	color: #ffffff;
}

.footer-desc {
	color: #cccccc;
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 15px;
	max-width: 320px;
}

/* 导航分类区 - 多列布局 */
.footer-nav-wrap {
	flex: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-nav-col {
	min-width: 120px;
}

.nav-col-title {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	position: relative;
	padding-bottom: 8px;
}

/* .nav-col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background-color: #00a8ff;
} */

.footer-nav-list {
	list-style: none;
}

.footer-nav-list li {
	margin-bottom: 10px;
}

.footer-nav-list a {
	color: #cccccc;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-nav-list a:hover {
	color: #00a8ff;
}

/* 二维码展示区 */
.footer-qrcode {
	flex: 1;
	min-width: 200px;
	display: flex;
	gap: 25px;
	justify-content: flex-end;
}

.qrcode-item {
	text-align: center;
}

.qrcode-img {
	width: 120px;
	height: 120px;
	background-color: #ffffff;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 12px;
}

.qrcode-text {
	font-size: 14px;
	color: #cccccc;
}

/* 中间链接区 */
.footer-middle {
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 20px;
	/* 行列间距分开设置 */
	margin-bottom: 30px;
	font-size: 15px;
}

.footer-middle a {
	color: #cccccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-middle a:hover {
	color: #ffffff;
}

.footer-middle span {
	color: #666666;
}

/* 版权信息区 */
.footer-bottom {
	max-width: 1200px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	font-size: 14px;
	color: #999999;
	line-height: 1.6;
}

.footer-bottom a {
	color: #999999;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: #ffffff;
}

/* 响应式适配 - 更细致的断点划分 */
@media (max-width: 992px) {
	.footer-top {
		flex-direction: column;
		gap: 30px;
	}

	.footer-qrcode {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.footer {
		padding: 40px 15px 60px;
	}

	.footer-nav-wrap {
		gap: 30px;
	}

	.footer-middle {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.footer-qrcode {
		flex-direction: column;
		gap: 20px;
	}
}


/* 小城一角 */
/* ========== 沉浸式宽幅头部（宣传单页视觉锚点） ========== */
.yj-hero-section {
	width: 100%;
	height: 70vh;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* 模拟宽幅背景（纯CSS渐变，无图片依赖） */
.yj-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f8f4e9 0%, #e9e3d4 40%, #d9d0c0 100%);
	z-index: 1;
}

/* 头部文字微动效容器 */
.yj-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(30px);
	animation: yj-heroFadeIn 1.2s ease-out forwards;
}

@keyframes yj-heroFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.yj-hero-title {
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 700;
	letter-spacing: 8px;
	margin-bottom: 15px;
	color: #3a3228;
}

.yj-hero-subtitle {
	font-size: clamp(14px, 2vw, 20px);
	letter-spacing: 3px;
	color: #6a6052;
}

/* 向下滚动提示微动效 */
.yj-scroll-hint {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	opacity: 0.7;
	animation: yj-scrollBounce 2s ease-in-out infinite;
}

@keyframes yj-scrollBounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.yj-scroll-hint-line {
	width: 2px;
	height: 40px;
	background-color: #3a3228;
	margin: 0 auto;
}

.yj-scroll-hint-text {
	font-size: 12px;
	letter-spacing: 2px;
	color: #3a3228;
	margin-top: 8px;
}

/* ========== 宽幅分类卡片容器（宣传单页错落层叠布局） ========== */
.yj-category-wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 100px 0px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

/* ========== 通用分类卡片结构（仅布局，无公共样式） ========== */
.yj-category-card {
	width: 19%;
	height: 520px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-category-card:hover {
	transform: translateY(-15px) scale(1.02);
}

/* 卡片背景层（纯CSS渐变，无图片依赖） */
.yj-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

/* 卡片内容层 */
.yj-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px 35px;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-category-card:hover .yj-card-content {
	padding-bottom: 50px;
}

.yj-card-tag {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.yj-card-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.yj-card-desc {
	font-size: 15px;
	line-height: 1.9;
	opacity: 0.9;
}

/* 卡片装饰线（微动效） */
.yj-card-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	z-index: 3;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-category-card:hover .yj-card-line {
	width: 100%;
}

/* ========== 分类1：千年遗韵·名胜古迹（独立样式/配色） ========== */
.yj-card-heritage .yj-card-bg {
	background: linear-gradient(180deg, #fdf6f0 0%, #e8d5c4 100%);
}

.yj-card-heritage .yj-card-tag {
	background-color: rgba(139, 90, 43, 0.15);
	color: #8B5A2B;
}

.yj-card-heritage .yj-card-title {
	color: #5a4026;
}

.yj-card-heritage .yj-card-desc {
	color: #7a5a3a;
}

.yj-card-heritage .yj-card-line {
	background-color: #8B5A2B;
}

/* ========== 分类2：山水画卷·自然景区（独立样式/配色） ========== */
.yj-card-nature .yj-card-bg {
	background: linear-gradient(180deg, #f2f9f2 0%, #cfe6cf 100%);
}

.yj-card-nature .yj-card-tag {
	background-color: rgba(62, 142, 65, 0.15);
	color: #3E8E41;
}

.yj-card-nature .yj-card-title {
	color: #2a5d2c;
}

.yj-card-nature .yj-card-desc {
	color: #4a7d4c;
}

.yj-card-nature .yj-card-line {
	background-color: #3E8E41;
}

/* ========== 分类3：欢乐时光·主题公园（独立样式/配色） ========== */
.yj-card-park .yj-card-bg {
	background: linear-gradient(180deg, #fff5eb 0%, #ffd9b3 100%);
}

.yj-card-park .yj-card-tag {
	background-color: rgba(255, 127, 36, 0.15);
	color: #FF7F24;
}

.yj-card-park .yj-card-title {
	color: #b35211;
}

.yj-card-park .yj-card-desc {
	color: #d37231;
}

.yj-card-park .yj-card-line {
	background-color: #FF7F24;
}

/* ========== 分类4：城市印记·特色建筑（独立样式/配色） ========== */
.yj-card-building .yj-card-bg {
	background: linear-gradient(180deg, #f0f5fa 0%, #c9d9e9 100%);
}

.yj-card-building .yj-card-tag {
	background-color: rgba(70, 130, 180, 0.15);
	color: #4682B4;
}

.yj-card-building .yj-card-title {
	color: #2d5a7c;
}

.yj-card-building .yj-card-desc {
	color: #4d7a9c;
}

.yj-card-building .yj-card-line {
	background-color: #4682B4;
}

/* ========== 分类5：潮流坐标·网红打卡（独立样式/配色） ========== */
.yj-card-checkin .yj-card-bg {
	background: linear-gradient(180deg, #f8f4ff 0%, #e0d4f0 100%);
}

.yj-card-checkin .yj-card-tag {
	background-color: rgba(147, 112, 219, 0.15);
	color: #9370DB;
}

.yj-card-checkin .yj-card-title {
	color: #6a4fb9;
}

.yj-card-checkin .yj-card-desc {
	color: #8a6fd9;
}

.yj-card-checkin .yj-card-line {
	background-color: #9370DB;
}

/* ========== 生态宜居宽幅板块（独立样式/配色） ========== */
.yj-eco-section {
	margin: 0 auto;
	margin-bottom: 30px;
}

.yj-eco-card {
	width: 100%;
	height: 680px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	margin: 0 auto;
}

.yj-eco-card:hover {
	transform: translateY(-12px) scale(1.01);
}

.yj-eco-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
	z-index: 1;
}

.yj-eco-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 900px;
	text-align: center;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-eco-card:hover .yj-eco-content {
	transform: translate(-50%, -52%);
}

.yj-eco-tag {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 6px 16px;
	border-radius: 20px;
	margin-bottom: 25px;
	text-transform: uppercase;
	background-color: rgba(46, 125, 50, 0.15);
	color: #2E7D32;
}

.yj-eco-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 2px;
	color: #1B5E20;
}

.yj-eco-desc {
	font-size: clamp(14px, 1.8vw, 17px);
	line-height: 2;
	opacity: 0.9;
	color: #388E3C;
}

.yj-eco-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	z-index: 3;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	background-color: #2E7D32;
}

.yj-eco-card:hover .yj-eco-line {
	width: 100%;
}

/* ========== 商业合作板块（独立样式/配色） ========== */
.yj-coop-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0px;
}

.yj-coop-header {
	text-align: center;
	margin-bottom: 60px;
}

.yj-coop-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 10px;
	color: #3a3228;
}

.yj-coop-subtitle {
	font-size: clamp(14px, 1.8vw, 18px);
	letter-spacing: 1px;
	color: #6a6052;
}

.yj-coop-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

/* 通用商业合作卡片结构（仅布局，无公共样式） */
.yj-coop-card {
	width: 370px;
	height: 520px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-coop-card:hover {
	transform: translateY(-15px) scale(1.02);
}

.yj-coop-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.yj-coop-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px 35px;
	z-index: 2;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-coop-card:hover .yj-coop-card-content {
	padding-bottom: 50px;
}

.yj-coop-card-tag {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 1px;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.yj-coop-card-title {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.yj-coop-card-desc {
	font-size: 15px;
	line-height: 1.9;
	opacity: 0.9;
}

.yj-coop-card-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	z-index: 3;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.yj-coop-card:hover .yj-coop-card-line {
	width: 100%;
}

/* 商业合作1：旅游合作（独立样式/配色） */
.yj-card-tourism .yj-coop-card-bg {
	background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
}

.yj-card-tourism .yj-coop-card-tag {
	background-color: rgba(25, 118, 210, 0.15);
	color: #1976D2;
}

.yj-card-tourism .yj-coop-card-title {
	color: #0D47A1;
}

.yj-card-tourism .yj-coop-card-desc {
	color: #1565C0;
}

.yj-card-tourism .yj-coop-card-line {
	background-color: #1976D2;
}

/* 商业合作2：购物合作（独立样式/配色） */
.yj-card-shopping .yj-coop-card-bg {
	background: linear-gradient(180deg, #fff3e0 0%, #ffe0b2 100%);
}

.yj-card-shopping .yj-coop-card-tag {
	background-color: rgba(245, 124, 0, 0.15);
	color: #F57C00;
}

.yj-card-shopping .yj-coop-card-title {
	color: #E65100;
}

.yj-card-shopping .yj-coop-card-desc {
	color: #EF6C00;
}

.yj-card-shopping .yj-coop-card-line {
	background-color: #F57C00;
}

/* 商业合作3：本地服务合作（独立样式/配色） */
.yj-card-service .yj-coop-card-bg {
	background: linear-gradient(180deg, #f3e5f5 0%, #e1bee7 100%);
}

.yj-card-service .yj-coop-card-tag {
	background-color: rgba(156, 39, 176, 0.15);
	color: #9C27B0;
}

.yj-card-service .yj-coop-card-title {
	color: #6A1B9A;
}

.yj-card-service .yj-coop-card-desc {
	color: #7B1FA2;
}

.yj-card-service .yj-coop-card-line {
	background-color: #9C27B0;
}

/* ========== 响应式适配（手机/平板/宽屏全覆盖） ========== */
@media (max-width: 1200px) {
	.yj-category-wrapper {
		gap: 40px;
	}

	.yj-category-card {
		width: 340px;
		height: 480px;
	}

	.yj-eco-card {
		height: 380px;
	}

	.yj-coop-wrapper {
		gap: 40px;
	}

	.yj-coop-card {
		width: 340px;
		height: 480px;
	}
}

@media (max-width: 768px) {
	.yj-hero-section {
		height: 75vh;
		min-height: 400px;
	}

	.yj-category-wrapper {
		padding: 60px 20px;
		gap: 30px;
	}

	.yj-category-card {
		width: 100%;
		max-width: 420px;
		height: 450px;
	}

	.yj-card-content {
		padding: 35px 30px;
	}

	.yj-card-title {
		font-size: 24px;
	}

	.yj-eco-section {
		padding-bottom: 60px;
	}

	.yj-eco-card {
		height: 420px;
	}

	.yj-eco-content {
		width: 90%;
	}

	.yj-coop-section {
		padding-bottom: 60px;
	}

	.yj-coop-header {
		margin-bottom: 40px;
	}

	.yj-coop-wrapper {
		gap: 30px;
	}

	.yj-coop-card {
		width: 100%;
		max-width: 420px;
		height: 450px;
	}

	.yj-coop-card-content {
		padding: 35px 30px;
	}

	.yj-coop-card-title {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.yj-hero-title {
		letter-spacing: 4px;
	}

	.yj-hero-subtitle {
		letter-spacing: 1px;
	}

	.yj-category-card {
		height: 420px;
	}

	.yj-card-content {
		padding: 30px 25px;
	}

	.yj-eco-card {
		height: 450px;
	}

	.yj-eco-title {
		letter-spacing: 1px;
	}

	.yj-coop-card {
		height: 420px;
	}

	.yj-coop-card-content {
		padding: 30px 25px;
	}
}


/* 一方水土 */
/* ========== 沉浸式宽幅头部（城市名片视觉锚点） ========== */
.st-hero-section {
	width: 100%;
	height: 70vh;
	min-height: 520px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.st-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8f0f7 0%, #d0e1f2 40%, #b8d2ed 100%);
	z-index: 1;
}

.st-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(35px);
	animation: st-heroFadeIn 1.3s ease-out forwards;
}

@keyframes st-heroFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.st-hero-title {
	font-size: clamp(38px, 6.5vw, 78px);
	font-weight: 700;
	letter-spacing: 10px;
	margin-bottom: 18px;
	color: #2c3e50;
}

.st-hero-subtitle {
	font-size: clamp(15px, 2.2vw, 22px);
	letter-spacing: 4px;
	color: #5a6c7d;
}

.st-scroll-hint {
	position: absolute;
	bottom: 45px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	opacity: 0.75;
	animation: st-scrollBounce 2.1s ease-in-out infinite;
}

@keyframes st-scrollBounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(14px);
	}
}

.st-scroll-hint-line {
	width: 2px;
	height: 42px;
	background-color: #2c3e50;
	margin: 0 auto;
}

.st-scroll-hint-text {
	font-size: 12px;
	letter-spacing: 2px;
	color: #2c3e50;
	margin-top: 9px;
}

/* ========== 通用板块容器 ========== */
.st-section-wrapper {
	margin: 0 auto;
	padding: 50px 0px;
	padding-bottom: 0px;
}

.st-section-header {
	text-align: center;
	margin-bottom: 65px;
}

.st-section-title {
	font-size: clamp(30px, 4.2vw, 46px);
	font-weight: 700;
	letter-spacing: 3px;
	margin-bottom: 12px;
}

.st-section-subtitle {
	font-size: clamp(14px, 1.8vw, 18px);
	letter-spacing: 1px;
	opacity: 0.85;
}

/* ========== 通用多卡片容器 ========== */
.st-multi-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.st-multi-card {
	width: 23.5%;
	height: 520px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-multi-card:hover {
	transform: translateY(-16px) scale(1.02);
}

.st-multi-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.st-multi-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 42px 38px;
	z-index: 2;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-multi-card:hover .st-multi-card-content {
	padding-bottom: 52px;
}

.st-multi-card-tag {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 6px 17px;
	border-radius: 22px;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.st-multi-card-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: 1px;
}

.st-multi-card-desc {
	font-size: 15px;
	line-height: 2;
	opacity: 0.92;
}

.st-multi-card-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	z-index: 3;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-multi-card:hover .st-multi-card-line {
	width: 100%;
}

/* ========== 板块1：城市概况（宽幅卡片） ========== */
.st-overview-card {
	width: 100%;
	height: 600px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
	margin: 0 auto;
}

.st-overview-card:hover {
	transform: translateY(-13px) scale(1.015);
}

.st-overview-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
	z-index: 1;
}

.st-overview-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 82%;
	max-width: 950px;
	text-align: center;
	z-index: 2;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.st-overview-card:hover .st-overview-content {
	transform: translate(-50%, -52%);
}

.st-overview-tag {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 7px 18px;
	border-radius: 22px;
	margin-bottom: 28px;
	text-transform: uppercase;
	background-color: rgba(25, 118, 210, 0.16);
	color: #1976D2;
}

.st-overview-title {
	font-size: clamp(29px, 4.1vw, 44px);
	font-weight: 700;
	margin-bottom: 22px;
	letter-spacing: 2px;
	color: #0D47A1;
}

.st-overview-desc {
	font-size: clamp(15px, 1.9vw, 18px);
	line-height: 2.1;
	opacity: 0.92;
	color: #1565C0;
}

.st-overview-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	z-index: 3;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
	background-color: #1976D2;
}

.st-overview-card:hover .st-overview-line {
	width: 100%;
}

/* ========== 板块2：历史渊源（扩展为4个，符合宣传+地域发展） ========== */
/* 历史渊源1：千年古韵·源远流长（独立配色） */
.st-history-ancient .st-multi-card-bg {
	background: linear-gradient(180deg, #fdf6f0 0%, #e8d5c4 100%);
}

.st-history-ancient .st-multi-card-tag {
	background-color: rgba(139, 90, 43, 0.16);
	color: #8B5A2B;
}

.st-history-ancient .st-multi-card-title {
	color: #5a4026;
}

.st-history-ancient .st-multi-card-desc {
	color: #7a5a3a;
}

.st-history-ancient .st-multi-card-line {
	background-color: #8B5A2B;
}

/* 历史渊源2：红色记忆·精神传承（新增，独立配色） */
.st-history-red .st-multi-card-bg {
	background: linear-gradient(180deg, #ffebee 0%, #ffcdd2 100%);
}

.st-history-red .st-multi-card-tag {
	background-color: rgba(211, 47, 47, 0.16);
	color: #D32F2F;
}

.st-history-red .st-multi-card-title {
	color: #b71c1c;
}

.st-history-red .st-multi-card-desc {
	color: #c62828;
}

.st-history-red .st-multi-card-line {
	background-color: #D32F2F;
}

/* 历史渊源3：时代新篇·蓬勃发展（独立配色） */
.st-history-modern .st-multi-card-bg {
	background: linear-gradient(180deg, #f0f4f8 0%, #d9e2ec 100%);
}

.st-history-modern .st-multi-card-tag {
	background-color: rgba(52, 73, 94, 0.16);
	color: #34495E;
}

.st-history-modern .st-multi-card-title {
	color: #2c3e50;
}

.st-history-modern .st-multi-card-desc {
	color: #4a5d6f;
}

.st-history-modern .st-multi-card-line {
	background-color: #34495E;
}

/* 历史渊源4：产业崛起·城市脊梁（新增，独立配色） */
.st-history-industry .st-multi-card-bg {
	background: linear-gradient(180deg, #e8eaf6 0%, #c5cae9 100%);
}

.st-history-industry .st-multi-card-tag {
	background-color: rgba(63, 81, 181, 0.16);
	color: #3F51B5;
}

.st-history-industry .st-multi-card-title {
	color: #1a237e;
}

.st-history-industry .st-multi-card-desc {
	color: #283593;
}

.st-history-industry .st-multi-card-line {
	background-color: #3F51B5;
}

/* ========== 板块3：地域文旅（扩展为4个，符合宣传+地域文旅） ========== */
/* 地域文旅1：自然山水·生态画卷（独立配色） */
.st-tourism-nature .st-multi-card-bg {
	background: linear-gradient(180deg, #f2f9f2 0%, #cfe6cf 100%);
}

.st-tourism-nature .st-multi-card-tag {
	background-color: rgba(62, 142, 65, 0.16);
	color: #3E8E41;
}

.st-tourism-nature .st-multi-card-title {
	color: #2a5d2c;
}

.st-tourism-nature .st-multi-card-desc {
	color: #4a7d4c;
}

.st-tourism-nature .st-multi-card-line {
	background-color: #3E8E41;
}

/* 地域文旅2：人文古迹·历史见证（独立配色） */
.st-tourism-heritage .st-multi-card-bg {
	background: linear-gradient(180deg, #f8f4ff 0%, #e0d4f0 100%);
}

.st-tourism-heritage .st-multi-card-tag {
	background-color: rgba(147, 112, 219, 0.16);
	color: #9370DB;
}

.st-tourism-heritage .st-multi-card-title {
	color: #6a4fb9;
}

.st-tourism-heritage .st-multi-card-desc {
	color: #8a6fd9;
}

.st-tourism-heritage .st-multi-card-line {
	background-color: #9370DB;
}

/* 地域文旅3：非遗体验·匠心传承（新增，独立配色） */
.st-tourism-intangible .st-multi-card-bg {
	background: linear-gradient(180deg, #fff3e0 0%, #ffe0b2 100%);
}

.st-tourism-intangible .st-multi-card-tag {
	background-color: rgba(255, 152, 0, 0.16);
	color: #FF9800;
}

.st-tourism-intangible .st-multi-card-title {
	color: #e65100;
}

.st-tourism-intangible .st-multi-card-desc {
	color: #f57c00;
}

.st-tourism-intangible .st-multi-card-line {
	background-color: #FF9800;
}

/* 地域文旅4：休闲体验·惬意时光（独立配色） */
.st-tourism-leisure .st-multi-card-bg {
	background: linear-gradient(180deg, #e0f7fa 0%, #b2ebf2 100%);
}

.st-tourism-leisure .st-multi-card-tag {
	background-color: rgba(0, 188, 212, 0.16);
	color: #00BCD4;
}

.st-tourism-leisure .st-multi-card-title {
	color: #00838f;
}

.st-tourism-leisure .st-multi-card-desc {
	color: #00acc1;
}

.st-tourism-leisure .st-multi-card-line {
	background-color: #00BCD4;
}

/* ========== 板块4：风土人情（扩展为4个，符合宣传+风土人情/地方特色） ========== */
/* 风土人情1：民俗文化·传承千年（独立配色） */
.st-culture-folk .st-multi-card-bg {
	background: linear-gradient(180deg, #fce4ec 0%, #f8bbd0 100%);
}

.st-culture-folk .st-multi-card-tag {
	background-color: rgba(233, 30, 99, 0.16);
	color: #E91E63;
}

.st-culture-folk .st-multi-card-title {
	color: #ad1457;
}

.st-culture-folk .st-multi-card-desc {
	color: #c2185b;
}

.st-culture-folk .st-multi-card-line {
	background-color: #E91E63;
}

/* 风土人情2：特色美食·舌尖记忆（独立配色） */
.st-culture-food .st-multi-card-bg {
	background: linear-gradient(180deg, #fff8e1 0%, #ffecb3 100%);
}

.st-culture-food .st-multi-card-tag {
	background-color: rgba(255, 193, 7, 0.16);
	color: #FFC107;
}

.st-culture-food .st-multi-card-title {
	color: #f57f17;
}

.st-culture-food .st-multi-card-desc {
	color: #f9a825;
}

.st-culture-food .st-multi-card-line {
	background-color: #FFC107;
}

/* 风土人情3：方言乡音·文化根脉（新增，独立配色） */
.st-culture-dialect .st-multi-card-bg {
	background: linear-gradient(180deg, #f3e5f5 0%, #e1bee7 100%);
}

.st-culture-dialect .st-multi-card-tag {
	background-color: rgba(156, 39, 176, 0.16);
	color: #9C27B0;
}

.st-culture-dialect .st-multi-card-title {
	color: #6a1b9a;
}

.st-culture-dialect .st-multi-card-desc {
	color: #7b1fa2;
}

.st-culture-dialect .st-multi-card-line {
	background-color: #9C27B0;
}

/* 风土人情4：市井生活·人间烟火（独立配色） */
.st-culture-life .st-multi-card-bg {
	background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
}

.st-culture-life .st-multi-card-tag {
	background-color: rgba(76, 175, 80, 0.16);
	color: #4CAF50;
}

.st-culture-life .st-multi-card-title {
	color: #1b5e20;
}

.st-culture-life .st-multi-card-desc {
	color: #2e7d32;
}

.st-culture-life .st-multi-card-line {
	background-color: #4CAF50;
}

/* ========== 响应式适配（手机/平板/宽屏全覆盖） ========== */
@media (max-width: 1200px) {
	.st-section-wrapper {
		padding: 80px 20px;
	}

	.st-overview-card {
		height: 400px;
	}

	.st-multi-card-wrapper {
		gap: 45px;
	}

	.st-multi-card {
		width: 340px;
		height: 480px;
	}
}

@media (max-width: 768px) {
	.st-hero-section {
		height: 78vh;
		min-height: 420px;
	}

	.st-section-wrapper {
		padding: 60px 20px;
	}

	.st-section-header {
		margin-bottom: 45px;
	}

	.st-overview-card {
		height: 460px;
	}

	.st-overview-content {
		width: 90%;
	}

	.st-multi-card-wrapper {
		gap: 35px;
	}

	.st-multi-card {
		width: 100%;
		max-width: 420px;
		height: 450px;
	}

	.st-multi-card-content {
		padding: 38px 33px;
	}
}

@media (max-width: 480px) {
	.st-hero-title {
		letter-spacing: 5px;
	}

	.st-hero-subtitle {
		letter-spacing: 2px;
	}

	.st-overview-card {
		height: 500px;
	}

	.st-multi-card {
		height: 420px;
	}

	.st-multi-card-content {
		padding: 33px 28px;
	}
}

/* 地域文创 */
.zb-hero {
	width: 100%;
	height: 70vh;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.zb-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f7f8fc 0%, #eef2f9 100%);
	z-index: 1;
}

.zb-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(30px);
	animation: zb-heroIn 1.2s ease-out forwards;
}

@keyframes zb-heroIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zb-hero-title {
	font-size: clamp(36px, 6vw, 72px);
	font-weight: 700;
	letter-spacing: 8px;
	color: #2d3748;
	margin-bottom: 16px;
}

.zb-hero-sub {
	font-size: clamp(14px, 2vw, 20px);
	color: #718096;
	letter-spacing: 2px;
}

.zb-scroll-tip {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: zb-bounce 2s infinite ease-in-out;
}

@keyframes zb-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

.zb-scroll-line {
	width: 2px;
	height: 36px;
	background: #2d3748;
	margin: 0 auto 6px;
}

.zb-scroll-text {
	font-size: 12px;
	color: #2d3748;
	letter-spacing: 1px;
}

.texiao {
	/* 动态渐变背景，灵动不突兀 */
	background: linear-gradient(135deg, #fdf2e9 0%, #e6f0ff 50%, #ffeef2 75%, #e6fff2 100%);
	background-size: 400% 400%;
	animation: cswcbBgFlow 15s ease infinite alternate;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
}

/* 背景浮动粒子特效，增强灵动性 */
.texiao::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.3'/%3E%3Ccircle cx='80' cy='40' r='1.5' fill='%23ffffff' fill-opacity='0.2'/%3E%3Ccircle cx='40' cy='80' r='1' fill='%23ffffff' fill-opacity='0.25'/%3E%3Ccircle cx='70' cy='70' r='1.2' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E");
	animation: cswcbBgParticle 20s linear infinite;
	z-index: -1;
	pointer-events: none;
}

/* 通用区块样式 */
.cswcb-section {
	padding: 60px 20px;
	margin: 0 auto;
}

.cswcb-section-title {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	color: #8B5A2B;
	margin-bottom: 16px;
	background: linear-gradient(90deg, #8B5A2B, #2A5DB0, #C2185B, #00796B);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: cswcbTextGradient 4s ease infinite;
}

.cswcb-section-desc {
	font-size: 18px;
	text-align: center;
	color: #555555;
	max-width: 900px;
	margin: 0 auto 60px;
	line-height: 1.8;
}

/* 核心业务板块 - 四大文创系列（玻璃质感+对应主题色） */
.cswcb-business-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	padding: 0 20px;
}

/* 通用玻璃卡片样式 */
.cswcb-business-card {
	border-radius: 20px;
	padding: 40px 30px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0;
	transform: translateY(30px);
	position: relative;
	overflow: hidden;
}

.cswcb-business-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s ease;
}

.cswcb-business-card.visible {
	animation: cswcbFadeInUp 0.6s ease forwards;
}

.cswcb-business-card:nth-child(1).visible {
	animation-delay: 0.1s;
}

.cswcb-business-card:nth-child(2).visible {
	animation-delay: 0.2s;
}

.cswcb-business-card:nth-child(3).visible {
	animation-delay: 0.3s;
}

.cswcb-business-card:nth-child(4).visible {
	animation-delay: 0.4s;
}

.cswcb-business-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.cswcb-business-card:hover::before {
	left: 100%;
}

/* 1. 地方特色文创 - 暖米色主题 */
.cswcb-card-local {
	background: rgba(253, 242, 233, 0.7);
	border-top: 4px solid #8B5A2B;
}

.cswcb-tag-local {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	background: rgba(139, 90, 43, 0.15);
	color: #8B5A2B;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.cswcb-card-local .cswcb-card-title {
	color: #8B5A2B;
}

.cswcb-card-local .cswcb-card-desc {
	color: #795548;
}

/* 2. 校园文创 - 浅蓝主题 */
.cswcb-card-campus {
	background: rgba(230, 240, 255, 0.7);
	border-top: 4px solid #2A5DB0;
}

.cswcb-tag-campus {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	background: rgba(42, 93, 176, 0.15);
	color: #2A5DB0;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.cswcb-card-campus .cswcb-card-title {
	color: #2A5DB0;
}

.cswcb-card-campus .cswcb-card-desc {
	color: #5C6BC0;
}

/* 3. 手办潮玩 - 浅粉主题 */
.cswcb-card-toy {
	background: rgba(255, 238, 242, 0.7);
	border-top: 4px solid #C2185B;
}

.cswcb-tag-toy {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	background: rgba(194, 24, 91, 0.15);
	color: #C2185B;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.cswcb-card-toy .cswcb-card-title {
	color: #C2185B;
}

.cswcb-card-toy .cswcb-card-desc {
	color: #AD1457;
}

/* 4. 文旅周边 - 浅绿主题 */
.cswcb-card-tourism {
	background: rgba(230, 255, 242, 0.7);
	border-top: 4px solid #00796B;
}

.cswcb-tag-tourism {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	background: rgba(0, 121, 107, 0.15);
	color: #00796B;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
}

.cswcb-card-tourism .cswcb-card-title {
	color: #00796B;
}

.cswcb-card-tourism .cswcb-card-desc {
	color: #00897B;
}

/* 卡片通用文字样式 */
.cswcb-card-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.3;
}

.cswcb-card-desc {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
}

.cswcb-card-btn {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.cswcb-card-local .cswcb-card-btn {
	color: #8B5A2B;
	border-color: #8B5A2B;
	background: transparent;
}

.cswcb-card-local .cswcb-card-btn:hover {
	background: #8B5A2B;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(139, 90, 43, 0.3);
}

.cswcb-card-campus .cswcb-card-btn {
	color: #2A5DB0;
	border-color: #2A5DB0;
	background: transparent;
}

.cswcb-card-campus .cswcb-card-btn:hover {
	background: #2A5DB0;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(42, 93, 176, 0.3);
}

.cswcb-card-toy .cswcb-card-btn {
	color: #C2185B;
	border-color: #C2185B;
	background: transparent;
}

.cswcb-card-toy .cswcb-card-btn:hover {
	background: #C2185B;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(194, 24, 91, 0.3);
}

.cswcb-card-tourism .cswcb-card-btn {
	color: #00796B;
	border-color: #00796B;
	background: transparent;
}

.cswcb-card-tourism .cswcb-card-btn:hover {
	background: #00796B;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 121, 107, 0.3);
}

/* 核心价值板块（玻璃质感+青春活力） */
.cswcb-value-section {
	padding: 60px 20px;
	max-width: 1440px;
	margin: 0 auto;
}

.cswcb-value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	padding: 0 20px;
}

.cswcb-value-item {
	padding: 30px 24px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.6);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0;
	transform: translateY(30px);
}

.cswcb-value-item.visible {
	animation: cswcbFadeInUp 0.6s ease forwards;
}

.cswcb-value-item:nth-child(1).visible {
	animation-delay: 0.1s;
}

.cswcb-value-item:nth-child(2).visible {
	animation-delay: 0.2s;
}

.cswcb-value-item:nth-child(3).visible {
	animation-delay: 0.3s;
}

.cswcb-value-item:nth-child(4).visible {
	animation-delay: 0.4s;
}

.cswcb-value-item:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.8);
}

.cswcb-value-num {
	font-size: 36px;
	font-weight: 700;
	background: linear-gradient(90deg, #2A5DB0, #C2185B);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 12px;
	transition: transform 0.3s ease;
}

.cswcb-value-item:hover .cswcb-value-num {
	transform: translateX(5px);
}

.cswcb-value-title {
	font-size: 20px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 12px;
}

.cswcb-value-desc {
	font-size: 15px;
	color: #666666;
	line-height: 1.7;
}

/* 合作代理板块（玻璃质感+营销落地） */
.cswcb-cooperation-section {
	padding: 60px 20px;
	max-width: 1440px;
	margin: 0 auto;
}

.cswcb-cooperation-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 0 20px;
}

.cswcb-cooperation-card {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	opacity: 0;
	transform: translateY(30px);
}

.cswcb-cooperation-card.visible {
	animation: cswcbFadeInUp 0.6s ease forwards;
}

.cswcb-cooperation-card:nth-child(1).visible {
	animation-delay: 0.1s;
}

.cswcb-cooperation-card:nth-child(2).visible {
	animation-delay: 0.2s;
}

.cswcb-cooperation-card:nth-child(3).visible {
	animation-delay: 0.3s;
}

.cswcb-cooperation-card:nth-child(4).visible {
	animation-delay: 0.4s;
}

.cswcb-cooperation-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.8);
}

.cswcb-cooperation-card-head {
	padding: 24px 30px;
	color: #ffffff;
	transition: all 0.4s ease;
}

.cswcb-cooperation-card:nth-child(1) .cswcb-cooperation-card-head {
	background: linear-gradient(135deg, #8B5A2B, #D7CCC8);
}

.cswcb-cooperation-card:nth-child(2) .cswcb-cooperation-card-head {
	background: linear-gradient(135deg, #2A5DB0, #BBDEFB);
}

.cswcb-cooperation-card:nth-child(3) .cswcb-cooperation-card-head {
	background: linear-gradient(135deg, #C2185B, #FCE4EC);
}

.cswcb-cooperation-card:nth-child(4) .cswcb-cooperation-card-head {
	background: linear-gradient(135deg, #00796B, #B2DFDB);
}

.cswcb-cooperation-card-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}

.cswcb-cooperation-card-body {
	padding: 30px;
	color: #555555;
	line-height: 1.8;
}

.cswcb-cooperation-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cswcb-cooperation-list li {
	padding: 8px 0;
	padding-left: 24px;
	position: relative;
	font-size: 16px;
	transition: all 0.3s ease;
}

.cswcb-cooperation-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 8px;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cswcb-cooperation-card:nth-child(1) .cswcb-cooperation-list li::before {
	color: #8B5A2B;
}

.cswcb-cooperation-card:nth-child(2) .cswcb-cooperation-list li::before {
	color: #2A5DB0;
}

.cswcb-cooperation-card:nth-child(3) .cswcb-cooperation-list li::before {
	color: #C2185B;
}

.cswcb-cooperation-card:nth-child(4) .cswcb-cooperation-list li::before {
	color: #00796B;
}

.cswcb-cooperation-list li:hover {
	padding-left: 28px;
	color: #333333;
	font-weight: 500;
}

.cswcb-cooperation-list li:hover::before {
	transform: scale(1.2) rotate(360deg);
}

/* 未来规划板块（玻璃质感+时间线） */
.cswcb-future-section {
	padding: 60px 20px;
	max-width: 1440px;
	margin: 0 auto;
}

.cswcb-future-timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding-left: 40px;
}

.cswcb-future-timeline::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, #8B5A2B, #2A5DB0, #C2185B, #00796B);
	opacity: 0.3;
	border-radius: 1px;
}

.cswcb-future-item {
	position: relative;
	margin-bottom: 50px;
	opacity: 0;
	transform: translateX(-30px);
}

.cswcb-future-item.visible {
	animation: cswcbFadeInLeft 0.6s ease forwards;
}

.cswcb-future-item:nth-child(1).visible {
	animation-delay: 0.1s;
}

.cswcb-future-item:nth-child(2).visible {
	animation-delay: 0.2s;
}

.cswcb-future-item:nth-child(3).visible {
	animation-delay: 0.3s;
}

.cswcb-future-item:nth-child(4).visible {
	animation-delay: 0.4s;
}

.cswcb-future-dot {
	position: absolute;
	left: -40px;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
	animation: cswcbBreath 2s ease infinite alternate;
}

.cswcb-future-item:nth-child(1) .cswcb-future-dot {
	background: #8B5A2B;
}

.cswcb-future-item:nth-child(2) .cswcb-future-dot {
	background: #2A5DB0;
}

.cswcb-future-item:nth-child(3) .cswcb-future-dot {
	background: #C2185B;
}

.cswcb-future-item:nth-child(4) .cswcb-future-dot {
	background: #00796B;
}

.cswcb-future-item:hover .cswcb-future-dot {
	animation: none;
	transform: scale(1.2);
}

.cswcb-future-year {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.cswcb-future-item:nth-child(1):hover .cswcb-future-year {
	color: #8B5A2B;
}

.cswcb-future-item:nth-child(2):hover .cswcb-future-year {
	color: #2A5DB0;
}

.cswcb-future-item:nth-child(3):hover .cswcb-future-year {
	color: #C2185B;
}

.cswcb-future-item:nth-child(4):hover .cswcb-future-year {
	color: #00796B;
}

.cswcb-future-content {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.7);
	padding: 24px 30px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	line-height: 1.8;
	color: #555555;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cswcb-future-item:hover .cswcb-future-content {
	transform: translateX(10px);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cswcb-future-content h4 {
	font-size: 18px;
	color: #333333;
	margin-top: 0;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.cswcb-future-item:nth-child(1):hover .cswcb-future-content h4 {
	color: #8B5A2B;
}

.cswcb-future-item:nth-child(2):hover .cswcb-future-content h4 {
	color: #2A5DB0;
}

.cswcb-future-item:nth-child(3):hover .cswcb-future-content h4 {
	color: #C2185B;
}

.cswcb-future-item:nth-child(4):hover .cswcb-future-content h4 {
	color: #00796B;
}

/* 动画定义 */
@keyframes cswcbFadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cswcbFadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cswcbTextGradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes cswcbBgFlow {
	0% {
		background-position: 0% 0%;
	}

	100% {
		background-position: 100% 100%;
	}
}

@keyframes cswcbBgParticle {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 100px 100px;
	}
}

@keyframes cswcbBreath {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
	}
}

/* 响应式适配 */
@media (max-width: 768px) {
	.cswcb-section-title {
		font-size: 28px;
	}

	.cswcb-section-desc {
		font-size: 16px;
	}

	.cswcb-card-title {
		font-size: 24px;
	}

	.cswcb-future-timeline {
		padding-left: 30px;
	}

	.cswcb-future-dot {
		left: -30px;
	}
}

@media (max-width: 480px) {

	.cswcb-business-grid,
	.cswcb-value-grid,
	.cswcb-cooperation-grid {
		grid-template-columns: 1fr;
	}

	.cswcb-section-title {
		font-size: 24px;
	}
}






/* 城市周边 */
.cs-hero {
	width: 100%;
	height: 70vh;
	min-height: 500px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.cs-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f7fa 0%, #e4eaf5 100%);
	z-index: 1;
}

.cs-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	opacity: 0;
	transform: translateY(35px);
	animation: cs-hero-fade 1.3s ease-out forwards;
}

@keyframes cs-hero-fade {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cs-hero-title {
	font-size: clamp(38px, 6.5vw, 76px);
	font-weight: 700;
	letter-spacing: 10px;
	color: #2c3e50;
	margin-bottom: 20px;
}

.cs-hero-sub {
	font-size: clamp(15px, 2.1vw, 22px);
	color: #5a6c7d;
	letter-spacing: 3px;
}

.cs-scroll-tip {
	position: absolute;
	bottom: 45px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: cs-bounce 2.1s infinite ease-in-out;
}

@keyframes cs-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.cs-scroll-line {
	width: 2px;
	height: 40px;
	background: #2c3e50;
	margin: 0 auto 8px;
}

.cs-scroll-text {
	font-size: 12px;
	color: #2c3e50;
	letter-spacing: 1px;
}

/* ========== 通用板块容器 ========== */
.cs-section {
	margin: 0 auto;
	padding: 50px 0px;
}

.cs-section-head {
	text-align: center;
	margin-bottom: 70px;
}

.cs-section-title {
	font-size: clamp(30px, 4.2vw, 46px);
	font-weight: 700;
	letter-spacing: 3px;
	color: #2c3e50;
	margin-bottom: 12px;
}

.cs-section-desc {
	font-size: clamp(14px, 1.7vw, 18px);
	color: #718096;
}

/* ========== 卡片组（大气多列排版） ========== */
.cs-card-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.cs-card {
	width: 23.5%;
	height: 520px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cs-card:hover {
	transform: translateY(-16px) scale(1.02);
}

.cs-card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.cs-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 45px 38px;
	z-index: 2;
	transition: all 0.4s ease;
}

.cs-card:hover .cs-card-content {
	padding-bottom: 55px;
}

.cs-card-tag {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 22px;
}

.cs-card-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.3;
}

.cs-card-text {
	font-size: 15px;
	line-height: 1.9;
	opacity: 0.92;
}

.cs-card-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 5px;
	z-index: 3;
	transition: all 0.5s ease;
}

.cs-card:hover .cs-card-line {
	width: 100%;
}

/* ========== 1 田园风光（独立配色） ========== */
.cs-card-field .cs-card-bg {
	background: linear-gradient(180deg, #f0f9f0 0%, #d4f5d4 100%);
}

.cs-card-field .cs-card-tag {
	background: rgba(46, 139, 87, 0.15);
	color: #2e8b57;
}

.cs-card-field .cs-card-title {
	color: #1f6b40;
}

.cs-card-field .cs-card-text {
	color: #2d7a4f;
}

.cs-card-field .cs-card-line {
	background: #32a852;
}

/* ========== 2 户外活动（独立配色） ========== */
.cs-card-outdoor .cs-card-bg {
	background: linear-gradient(180deg, #e8f4fd 0%, #c8e2f8 100%);
}

.cs-card-outdoor .cs-card-tag {
	background: rgba(30, 144, 255, 0.15);
	color: #1e90ff;
}

.cs-card-outdoor .cs-card-title {
	color: #1a6bb8;
}

.cs-card-outdoor .cs-card-text {
	color: #247ac9;
}

.cs-card-outdoor .cs-card-line {
	background: #3498db;
}

/* ========== 3 网红打卡（独立配色） ========== */
.cs-card-hotspot .cs-card-bg {
	background: linear-gradient(180deg, #fff5fa 0%, #f8e1f4 100%);
}

.cs-card-hotspot .cs-card-tag {
	background: rgba(219, 68, 162, 0.15);
	color: #db44a2;
}

.cs-card-hotspot .cs-card-title {
	color: #b03a82;
}

.cs-card-hotspot .cs-card-text {
	color: #c24492;
}

.cs-card-hotspot .cs-card-line {
	background: #e84393;
}

/* ========== 4 文旅体验（独立配色） ========== */
.cs-card-travel .cs-card-bg {
	background: linear-gradient(180deg, #fffaf0 0%, #f8f0e4 100%);
}

.cs-card-travel .cs-card-tag {
	background: rgba(204, 126, 50, 0.15);
	color: #cc7e32;
}

.cs-card-travel .cs-card-title {
	color: #a16226;
}

.cs-card-travel .cs-card-text {
	color: #b87332;
}

.cs-card-travel .cs-card-line {
	background: #d48c42;
}

/* ========== 未来规划区域 —— 大厂品牌级视觉优化 ========== */
.cs-future-section {
	background: linear-gradient(155deg, #1f2937 0%, #374151 40%, #111827 100%);
	padding: 130px 20px;
	position: relative;
	overflow: hidden;
}

.cs-future-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

.cs-future-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.cs-future-title {
	text-align: center;
	font-size: clamp(30px, 4.5vw, 48px);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 3px;
	margin-bottom: 80px;
	position: relative;
}

.cs-future-title::after {
	content: '';
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #60a5fa, #34d399);
	position: absolute;
	bottom: -22px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

.cs-future-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.cs-future-card {
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	padding: 50px 36px;
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-future-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #60a5fa, #34d399, #f472b6, #fbbf24);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.6s ease;
}

.cs-future-card:hover {
	transform: translateY(-12px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.cs-future-card:hover::before {
	transform: scaleX(1);
}

.cs-future-card h4 {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.3;
}

.cs-future-card p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.9;
}

/* 响应式 */
@media (max-width: 1100px) {
	.cs-future-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.cs-future-grid {
		grid-template-columns: 1fr;
	}

	.cs-future-section {
		padding: 90px 20px;
	}
}

/* ========== 响应式适配 ========== */
@media (max-width: 1200px) {
	.cs-card {
		width: 340px;
		height: 480px;
	}
}

@media (max-width: 768px) {
	.cs-hero {
		height: 78vh;
		min-height: 460px;
	}

	.cs-section {
		padding: 70px 20px;
	}

	.cs-card {
		width: 100%;
		max-width: 420px;
	}
}

@media (max-width: 480px) {
	.cs-hero-title {
		letter-spacing: 5px;
	}

	.cs-card-content {
		padding: 35px 28px;
	}
}


/* 核心价值 */
/* 自定义样式 - hx开头 */
.hx-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.hx-section {
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}


/* 研究与整理板块 */
.hx-research {
	background: #fff;
}

.hx-research .hx-title {
	color: #2c3e50;
}


.hx-research-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.hx-research-card {
	background: #f8f9fa;
	padding: 40px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.hx-research-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #3498db, #2c3e50);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.hx-research-card:hover {
	transform: translateY(-10px);
}

.hx-research-card:hover::before {
	transform: scaleX(1);
}

.hx-research-card-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.hx-research-card-desc {
	color: #666;
	font-size: 1.1rem;
}

/* 文化IP孵化板块 - 优化后 */
.hx-ip {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.hx-ip .hx-title {
	color: white;
}

.hx-ip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.hx-ip-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.hx-ip-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffd700, #ffed4e);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.hx-ip-box:hover {
	transform: translateY(-10px) scale(1.02);
	background: rgba(255, 255, 255, 0.2);
}

.hx-ip-box:hover::before {
	transform: scaleX(1);
}

.hx-ip-box-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #ffd700;
}

.hx-ip-box-desc {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

/* 传统与传承板块 - 优化后 */
.hx-tradition {
	background: #fdfbf7;
}

.hx-tradition .hx-title {
	color: #8b4513;
}

.hx-tradition-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.hx-tradition-card {
	background: white;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.hx-tradition-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(210, 105, 30, 0.05), rgba(139, 69, 19, 0.05));
	opacity: 0;
	transition: opacity 0.4s ease;
}

.hx-tradition-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
}

.hx-tradition-card:hover::before {
	opacity: 1;
}


.hx-tradition-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #8b4513;
	position: relative;
	z-index: 2;
}

.hx-tradition-card-desc {
	color: #666;
	line-height: 1.7;
	position: relative;
	z-index: 2;
}

/* 地域推广服务板块 */
.hx-promotion {
	background: #1a1a2e;
	color: white;
}

.hx-promotion .hx-title {
	color: white;
}

.hx-promotion-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.hx-promotion-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 40px 30px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.hx-promotion-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00d9ff, #00ff88);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.hx-promotion-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(0, 217, 255, 0.3);
}

.hx-promotion-card:hover::before {
	transform: scaleX(1);
}

.hx-promotion-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #00d9ff;
}

.hx-promotion-card-desc {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}


/* 响应式设计 */
@media (max-width: 992px) {}

@media (max-width: 768px) {
	.hx-hero-subtitle {
		font-size: 1.4rem;
	}

	.hx-title {
		font-size: 2.5rem;
	}

	.hx-research-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.hx-hero-title {
		font-size: 2.2rem;
	}

	.hx-title {
		font-size: 2rem;
	}

	.hx-research-card,
	.hx-ip-box,
	.hx-tradition-card,
	.hx-promotion-card {
		padding: 30px 20px;
	}
}

/* 滚动动画 */
.hx-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.hx-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}


/* 品牌起源 */
/*  双层鼠标跟随光晕（顶级特效） */
.mouse-light-1,
.mouse-light-2 {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 999;
	mix-blend-mode: soft-light;
	transform: translate(-50%, -50%);
	transition: 0.08s ease;
}

.mouse-light-1 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, rgba(255, 193, 7, 0.18) 0%, transparent 65%);
}

.mouse-light-2 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(220, 60, 80, 0.12) 0%, transparent 70%);
	transition: 0.04s ease;
}

/*  全屏板块 + 视差动画 + 流动背景 */
.wm-fullscreen {
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding: 80px 6vw;
	display: flex;
	align-items: center;
	opacity: 0;
	transform: translateY(80px) scale(0.9);
	transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	overflow: hidden;
}

.wm-fullscreen.active {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/*  动态流光背景 */
.wm-fullscreen::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 300%;
	height: 100%;
	background: inherit;
	animation: bgFlow 20s linear infinite alternate;
	z-index: 0;
	opacity: 0.8;
}

@keyframes bgFlow {
	0% {
		transform: translateX(0) rotate(0deg);
	}

	100% {
		transform: translateX(15%) rotate(0.5deg);
	}
}

/*  中式装饰线条（纯CSS，无图片） */
.wm-decor {
	position: absolute;
	width: 120px;
	height: 120px;
	border: 2px solid rgba(0, 0, 0, 0.05);
	border-radius: 50%;
	z-index: 1;
	animation: decorRotate 25s linear infinite;
}

@keyframes decorRotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*  通用内容容器（差异化排版） */
.wm-content {
	margin: 0px auto;
	max-width: 1200px;
	position: relative;
	z-index: 2;
	transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.wm-fullscreen:hover .wm-content {
	transform: translateY(-10px) scale(1.02);
}

/*  标签流光动画 */
.wm-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 10px 26px;
	border-radius: 50px;
	margin-bottom: 32px;
	text-transform: uppercase;
	font-weight: 500;
	position: relative;
	overflow: hidden;
}

.wm-tag::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: tagShine 3s infinite linear;
}

@keyframes tagShine {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

@keyframes tagPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

/*  标题文字动效 */
.wm-title {
	font-size: clamp(38px, 6vw, 68px);
	font-weight: 600;
	margin-bottom: 40px;
	line-height: 1.2;
	letter-spacing: 1px;
	position: relative;
}

.wm-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 80px;
	height: 3px;
	border-radius: 3px;
	animation: lineGrow 1.5s ease-out;
}

@keyframes lineGrow {
	0% {
		width: 0;
	}

	100% {
		width: 80px;
	}
}

.wm-text {
	font-size: clamp(17px, 2vw, 21px);
	line-height: 2;
	text-align: justify;
	opacity: 0.95;
}

/* ==================== 差异化创意排版（不死板！） ==================== */
/* 1. 品牌起源 - 居中大气 */
.wm-hero {
	background: linear-gradient(135deg, #f6f7f9, #e9ebf0);
	justify-content: center;
	text-align: center;
}

.wm-hero .wm-content {
	max-width: 1000px;
}

.wm-hero .wm-title::after {
	left: 50%;
	transform: translateX(-50%);
}

.wm-hero .wm-tag {
	background: rgba(40, 44, 52, 0.08);
	color: #282c34;
}

.wm-hero .wm-title {
	color: #1a1d24;
}

.wm-hero .wm-text {
	color: #4a4f5a;
	text-align: center;
}

/* 2. 品牌故事 - 左侧排版 */
.wm-story {
	background: linear-gradient(135deg, #fff4f5, #ffe2e8);
	justify-content: flex-start;
}

.wm-story .wm-tag {
	background: rgba(220, 60, 80, 0.1);
	color: #d13447;
}

.wm-story .wm-title {
	color: #b8253a;
}

.wm-story .wm-text {
	color: #881c2b;
}

.wm-story .wm-title::after {
	background: #d13447;
}

/* 3. 品牌理念 - 右侧排版 */
.wm-philosophy {
	background: linear-gradient(135deg, #f0f7ff, #d6e4ff);
	justify-content: flex-end;
	text-align: right;
}

.wm-philosophy .wm-title::after {
	right: 0;
	left: auto;
	background: #146eff;
}

.wm-philosophy .wm-tag {
	background: rgba(20, 110, 255, 0.1);
	color: #146eff;
}

.wm-philosophy .wm-title {
	color: #0f5ad6;
}

.wm-philosophy .wm-text {
	color: #0a439c;
}

/* 4. 品牌价值 - 偏上排版 */
.wm-culture {
	background: linear-gradient(135deg, #fffbf2, #ffeeb9);
	align-items: flex-start;
	padding-top: 18vh;
}

.wm-culture .wm-title::after {
	background: #e6a800;
}

.wm-culture .wm-tag {
	background: rgba(255, 180, 0, 0.15);
	color: #e6a800;
}

.wm-culture .wm-title {
	color: #b97f00;
}

.wm-culture .wm-text {
	color: #805d00;
}

/* 5. 品牌资质 - 卡片包裹排版 */
.wm-qualification {
	background: linear-gradient(135deg, #f2fff9, #c1f7e2);
	justify-content: center;
}

.wm-qualification .wm-content {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	padding: 60px 50px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 20px 60px rgba(10, 200, 140, 0.1);
}

.wm-qualification .wm-title::after {
	left: 50%;
	transform: translateX(-50%);
	background: #0ac88c;
}

.wm-qualification .wm-tag {
	background: rgba(10, 200, 140, 0.1);
	color: #0ac88c;
}

.wm-qualification .wm-title {
	color: #069669;
	text-align: center;
}

.wm-qualification .wm-text {
	color: #04694a;
}


/* 响应式适配 */
@media (max-width:768px) {

	.mouse-light-1,
	.mouse-light-2 {
		display: none;
	}

	.wm-fullscreen {
		padding: 60px 24px;
		min-height: auto;
	}

	.wm-story,
	.wm-philosophy {
		justify-content: center;
		text-align: center;
	}

	.wm-title::after {
		left: 50% !important;
		transform: translateX(-50%);
	}

	.wm-qualification .wm-content {
		padding: 40px 25px;
	}
}

/* 文脉动态 */
/* 通用板块容器（更舒展） */
.wm-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 24px;
}

/* 板块标题区（优化大气感） */
.wm-section-header {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 24px;
	border-bottom: 1px solid #e4e7ed;
}

.wm-section-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 2px;
	padding: 7px 20px;
	border-radius: 4px;
	margin-bottom: 18px;
	text-transform: uppercase;
	font-weight: 500;
}

.wm-section-title {
	font-size: clamp(30px, 4.2vw, 42px);
	font-weight: 600;
	line-height: 1.3;
}

/* 统一上图下文新闻卡片（大气美观） */
.wm-news-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 32px;
}

.wm-news-item {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e4e7ed;
	transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.wm-news-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
	border-color: #dcdfe6;
}

/* 新闻图片（置顶+大气尺寸） */
.wm-news-img {
	width: 100%;
	height: 220px;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	flex-shrink: 0;
}

.wm-news-item:hover .wm-news-img {
	transform: scale(1.05);
}

/* 新闻内容（依次排列：标题→时间→描述） */
.wm-news-content {
	padding: 28px 24px 32px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.wm-news-title {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 12px;
	line-height: 1.5;
	flex-shrink: 0;
}

.wm-news-date {
	font-size: 13px;
	color: #909399;
	margin-bottom: 14px;
	flex-shrink: 0;
}

.wm-news-desc {
	font-size: 14px;
	color: #606266;
	line-height: 1.7;
	flex: 1;
}

/* ==================== 板块独立配色（沉稳高级） ==================== */
/* 1. 国家政策 */
.wm-policy .wm-section-tag {
	background-color: #f0f2f5;
	color: #4b5563;
}

.wm-policy .wm-section-title {
	color: #1f2937;
}

.wm-policy .wm-news-img {
	background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.wm-policy .wm-news-title {
	color: #1f2937;
}

/* 2. 地方资讯 */
.wm-local .wm-section-tag {
	background-color: #fee2e2;
	color: #991b1b;
}

.wm-local .wm-section-title {
	color: #991b1b;
}

.wm-local .wm-news-img {
	background: linear-gradient(135deg, #fecaca, #fca5a5);
}

.wm-local .wm-news-title {
	color: #991b1b;
}

/* 3. 民间风俗 */
.wm-custom .wm-section-tag {
	background-color: #fef3c7;
	color: #92400e;
}

.wm-custom .wm-section-title {
	color: #92400e;
}

.wm-custom .wm-news-img {
	background: linear-gradient(135deg, #fde68a, #fcd34d);
}

.wm-custom .wm-news-title {
	color: #92400e;
}

/* 4. 文脉动态 */
.wm-dynamic .wm-section-tag {
	background-color: #d1fae5;
	color: #065f46;
}

.wm-dynamic .wm-section-title {
	color: #065f46;
}

.wm-dynamic .wm-news-img {
	background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
}

.wm-dynamic .wm-news-title {
	color: #065f46;
}


/* 响应式适配 */
@media (max-width: 992px) {
	.wm-news-list {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 28px;
	}
}

@media (max-width: 768px) {
	.wm-section {
		padding: 70px 20px;
	}

	.wm-news-list {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.wm-news-img {
		height: 200px;
	}

	.wm-news-content {
		padding: 24px 20px 28px;
	}
}

/* 名胜古迹 */
/* ========== 通用滚动动画（无公共颜色，仅动效） ========== */
.msgj-scroll-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.msgj-scroll-in.active {
	opacity: 1;
	transform: translateY(0);
}

/* ========== 1. 沉浸式Hero区（非传统全屏视觉） ========== */
.msgj-hero {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f4ed 0%, #e8ded0 100%);
}

.msgj-hero-bg-decor {
	position: absolute;
	width: 80vw;
	height: 80vw;
	border: 1px solid #b89b78;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: msgj-rotate 60s linear infinite;
	opacity: 0.15;
}

@keyframes msgj-rotate {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.msgj-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	animation: msgj-fade-in 1.5s ease-out forwards;
}

@keyframes msgj-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.msgj-hero-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 6px 18px;
	border: 1px solid #8b6e46;
	border-radius: 30px;
	color: #8b6e46;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.msgj-hero-title {
	font-size: clamp(42px, 8vw, 90px);
	font-weight: 700;
	line-height: 1.2;
	color: #5a442a;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.msgj-hero-sub {
	font-size: clamp(16px, 2.5vw, 22px);
	color: #7a5f40;
	max-width: 700px;
	margin: 0 auto;
}

.msgj-scroll-tip {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: msgj-bounce 2.5s infinite ease-in-out;
}

@keyframes msgj-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.msgj-scroll-line {
	width: 2px;
	height: 40px;
	background: #8b6e46;
	margin: 0 auto 8px;
}

.msgj-scroll-text {
	font-size: 12px;
	color: #8b6e46;
	letter-spacing: 2px;
}

/* ========== 2. 文脉溯源区（非对称排版，非传统布局） ========== */
.msgj-origin {
	width: 100%;
	padding: 120px 6vw;
	background: #fff;
	position: relative;
}

.msgj-origin-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}

.msgj-origin-title-box {
	position: sticky;
	top: 30vh;
}

.msgj-origin-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #a07c4e;
	margin-bottom: 16px;
}

.msgj-origin-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.3;
	color: #5a442a;
	margin-bottom: 20px;
}

.msgj-origin-line {
	width: 80px;
	height: 3px;
	background: #c8a26e;
}

.msgj-origin-content {
	font-size: clamp(16px, 1.8vw, 18px);
	color: #66543f;
	line-height: 2;
	text-align: justify;
}

.msgj-origin-content p {
	margin-bottom: 24px;
}

.msgj-origin-content p:last-child {
	margin-bottom: 0;
}

/* ========== 3. 古迹风华区（错落悬浮布局，非传统卡片） ========== */
.msgj-feature {
	width: 100%;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #f8f4ed 0%, #f0e9df 100%);
	position: relative;
}

.msgj-feature-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.msgj-feature-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	color: #5a442a;
	margin-bottom: 16px;
}

.msgj-feature-sub {
	font-size: 16px;
	color: #7a5f40;
}

.msgj-feature-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(240px, auto);
	gap: 30px;
}

.msgj-feature-card {
	border-radius: 16px;
	padding: 40px 36px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(139, 110, 70, 0.08);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.msgj-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #c8a26e, #8b6e46);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

.msgj-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 45px rgba(139, 110, 70, 0.15);
}

.msgj-feature-card:hover::before {
	transform: scaleX(1);
}

/* 错落布局，非传统对称 */
.msgj-card-1 {
	grid-column: 1 / 8;
	grid-row: 1 / 2;
}

.msgj-card-2 {
	grid-column: 8 / 13;
	grid-row: 1 / 3;
}

.msgj-card-3 {
	grid-column: 1 / 5;
	grid-row: 2 / 3;
}

.msgj-card-4 {
	grid-column: 5 / 8;
	grid-row: 2 / 3;
}

.msgj-card-5 {
	grid-column: 1 / 13;
	grid-row: 3 / 4;
}

.msgj-card-tag {
	font-size: 13px;
	letter-spacing: 2px;
	color: #a07c4e;
	margin-bottom: 16px;
	display: inline-block;
}

.msgj-card-title {
	font-size: 24px;
	font-weight: 600;
	color: #5a442a;
	margin-bottom: 14px;
}

.msgj-card-text {
	font-size: 15px;
	color: #66543f;
	line-height: 1.9;
}

/* ========== 4. 文化传承区（全屏沉浸式，非传统排版） ========== */
.msgj-heritage {
	width: 100%;
	min-height: 80vh;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #5a442a 0%, #3a2c1c 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.msgj-heritage-content {
	max-width: 900px;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 2;
}

.msgj-heritage-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 600;
	margin-bottom: 40px;
	line-height: 1.3;
}

.msgj-heritage-text {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 2.1;
	color: #f0e9df;
	margin-bottom: 30px;
}

.msgj-heritage-quote {
	font-size: 20px;
	font-style: italic;
	color: #e0c9a6;
	margin-top: 50px;
	letter-spacing: 1px;
}

/* ========== 响应式适配（全设备兼容） ========== */
@media (max-width: 992px) {
	.msgj-origin-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.msgj-origin-title-box {
		position: relative;
		top: 0;
	}

	.msgj-feature-grid {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.msgj-hero {
		height: 90vh;
	}

	.msgj-origin,
	.msgj-feature,
	.msgj-heritage {
		padding: 80px 20px;
	}

	.msgj-feature-card {
		padding: 32px 28px;
	}
}

@media (max-width: 480px) {
	.msgj-hero-title {
		letter-spacing: 2px;
	}

	.msgj-feature-card {
		padding: 28px 24px;
	}
}


/* 自然景区 */
/* ========== 鼠标跟随光晕（当下最流行交互特效） ========== */
.zrjq-mouse-light {
	position: fixed;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
	pointer-events: none;
	z-index: 999;
	mix-blend-mode: soft-light;
	transform: translate(-50%, -50%);
	transition: 0.08s ease-out;
}

/* ========== 通用滚动渐入动画（无公共颜色，仅动效） ========== */
.zrjq-scroll-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.zrjq-scroll-in.zrjq-active {
	opacity: 1;
	transform: translateY(0);
}

.zrjq-delay-1 {
	transition-delay: 0.2s;
}

.zrjq-delay-2 {
	transition-delay: 0.4s;
}

.zrjq-delay-3 {
	transition-delay: 0.6s;
}

/* ========== 1. 沉浸式Hero区（非传统全屏视觉） ========== */
.zrjq-hero {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
}

/* 背景微流动特效 */
.zrjq-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: inherit;
	background-size: 200% 200%;
	animation: zrjq-bg-flow 20s linear infinite alternate;
	z-index: 0;
}

@keyframes zrjq-bg-flow {
	0% {
		transform: translateX(0) rotate(0deg);
	}

	100% {
		transform: translateX(20%) rotate(0.5deg);
	}
}

/* 装饰山水线条 */
.zrjq-hero-decor {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30vh;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,245.3C1248,256,1344,224,1392,208L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
	background-size: cover;
	z-index: 1;
}

.zrjq-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	animation: zrjq-fade-in 1.5s ease-out forwards;
}

@keyframes zrjq-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zrjq-hero-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 8px 22px;
	border: 1px solid #059669;
	border-radius: 50px;
	color: #059669;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.zrjq-hero-title {
	font-size: clamp(42px, 8vw, 90px);
	font-weight: 700;
	line-height: 1.1;
	color: #065f46;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.zrjq-hero-sub {
	font-size: clamp(16px, 2.5vw, 22px);
	color: #047857;
	max-width: 700px;
	margin: 0 auto;
}

.zrjq-scroll-tip {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: zrjq-bounce 2.5s infinite ease-in-out;
}

@keyframes zrjq-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.zrjq-scroll-line {
	width: 2px;
	height: 40px;
	background: #065f46;
	margin: 0 auto 8px;
}

.zrjq-scroll-text {
	font-size: 12px;
	color: #065f46;
	letter-spacing: 2px;
}

/* ========== 2. 全国盛景板块（非传统粘性不对称排版） ========== */
.zrjq-landscape {
	width: 100%;
	padding: 120px 6vw;
	background: #ffffff;
	position: relative;
}

.zrjq-landscape-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
}

/* 粘性标题，非传统滚动效果 */
.zrjq-landscape-title-box {
	position: sticky;
	top: 25vh;
}

.zrjq-landscape-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #0d9488;
	margin-bottom: 16px;
}

.zrjq-landscape-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.3;
	color: #134e4a;
	margin-bottom: 20px;
}

.zrjq-landscape-line {
	width: 80px;
	height: 3px;
	background: #14b8a6;
}

.zrjq-landscape-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.zrjq-landscape-item {
	padding: 30px;
	border-radius: 12px;
	background: #f0fdfa;
	border-left: 4px solid #14b8a6;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zrjq-landscape-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(20, 184, 166, 0.1);
}

.zrjq-item-title {
	font-size: 20px;
	font-weight: 600;
	color: #134e4a;
	margin-bottom: 10px;
}

.zrjq-item-desc {
	font-size: 15px;
	color: #334155;
	line-height: 1.8;
}

/* ========== 3. 核心体验板块（非传统错落网格卡片） ========== */
.zrjq-experience {
	width: 100%;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	position: relative;
}

.zrjq-experience-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.zrjq-experience-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	color: #166534;
	margin-bottom: 16px;
}

.zrjq-experience-sub {
	font-size: 16px;
	color: #15803d;
}

.zrjq-experience-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(220px, auto);
	gap: 24px;
}

/* 错落网格，非传统对称布局 */
.zrjq-ex-card-1 {
	grid-column: 1 / 7;
	grid-row: 1 / 2;
}

.zrjq-ex-card-2 {
	grid-column: 7 / 13;
	grid-row: 1 / 3;
}

.zrjq-ex-card-3 {
	grid-column: 1 / 4;
	grid-row: 2 / 3;
}

.zrjq-ex-card-4 {
	grid-column: 4 / 7;
	grid-row: 2 / 3;
}

.zrjq-ex-card-5 {
	grid-column: 1 / 13;
	grid-row: 3 / 4;
}

.zrjq-experience-card {
	border-radius: 16px;
	padding: 36px 32px;
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(22, 101, 52, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

/* 卡片悬浮流光特效 */
.zrjq-experience-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #22c55e, #10b981, #14b8a6);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}

.zrjq-experience-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 45px rgba(22, 101, 52, 0.12);
}

.zrjq-experience-card:hover::before {
	transform: scaleX(1);
}

.zrjq-ex-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #166534;
	margin-bottom: 12px;
}

.zrjq-ex-card-desc {
	font-size: 15px;
	color: #475569;
	line-height: 1.8;
}

/* ========== 4. 营销号召板块（全屏沉浸式非传统排版） ========== */
.zrjq-marketing {
	width: 100%;
	min-height: 80vh;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #065f46 0%, #14532d 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.zrjq-marketing-content {
	max-width: 900px;
	text-align: center;
	color: #ffffff;
	position: relative;
	z-index: 2;
}

.zrjq-marketing-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.3;
}

.zrjq-marketing-text {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 2.1;
	color: #dcfce7;
	margin-bottom: 50px;
}

.zrjq-marketing-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	background: #22c55e;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.zrjq-marketing-btn:hover {
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
	background: #16a34a;
}


/* ========== 响应式适配（全设备兼容） ========== */
@media (max-width: 992px) {
	.zrjq-landscape-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.zrjq-landscape-title-box {
		position: relative;
		top: 0;
	}

	.zrjq-experience-grid {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.zrjq-mouse-light {
		display: none;
	}
}

@media (max-width: 768px) {
	.zrjq-hero {
		height: 90vh;
	}

	.zrjq-landscape,
	.zrjq-experience,
	.zrjq-marketing {
		padding: 80px 20px;
	}

	.zrjq-experience-card {
		padding: 30px 26px;
	}
}

@media (max-width: 480px) {
	.zrjq-hero-title {
		letter-spacing: 2px;
	}

	.zrjq-experience-card {
		padding: 28px 22px;
	}
}


/* 主题公园 */
/* ========== 鼠标跟随双光晕（当下最流行交互特效） ========== */
.ztgy-mouse-light-1,
.ztgy-mouse-light-2 {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 999;
	mix-blend-mode: screen;
	transform: translate(-50%, -50%);
}

.ztgy-mouse-light-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
	transition: 0.08s ease-out;
}

.ztgy-mouse-light-2 {
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
	transition: 0.04s ease-out;
}

/* ========== 通用滚动渐入动画（无公共颜色，仅动效） ========== */
.ztgy-scroll-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.ztgy-scroll-in.ztgy-active {
	opacity: 1;
	transform: translateY(0);
}

.ztgy-delay-1 {
	transition-delay: 0.2s;
}

.ztgy-delay-2 {
	transition-delay: 0.4s;
}

.ztgy-delay-3 {
	transition-delay: 0.6s;
}

/* ========== 1. 沉浸式Hero区（非传统全屏视觉） ========== */
.ztgy-hero {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fecaca 100%);
}

/* 背景微流动特效 */
.ztgy-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: inherit;
	background-size: 200% 200%;
	animation: ztgy-bg-flow 20s linear infinite alternate;
	z-index: 0;
}

@keyframes ztgy-bg-flow {
	0% {
		transform: translateX(0) rotate(0deg);
	}

	100% {
		transform: translateX(20%) rotate(0.5deg);
	}
}

/* 装饰波浪 */
.ztgy-hero-decor {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30vh;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,186.7C960,192,1056,160,1152,138.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
	background-size: cover;
	z-index: 1;
}

.ztgy-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	animation: ztgy-fade-in 1.5s ease-out forwards;
}

@keyframes ztgy-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ztgy-hero-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 8px 22px;
	border: 1px solid #c2410c;
	border-radius: 50px;
	color: #c2410c;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.ztgy-hero-title {
	font-size: clamp(42px, 8vw, 90px);
	font-weight: 700;
	line-height: 1.1;
	color: #9a3412;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.ztgy-hero-sub {
	font-size: clamp(16px, 2.5vw, 22px);
	color: #b45309;
	max-width: 700px;
	margin: 0 auto;
}

.ztgy-scroll-tip {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: ztgy-bounce 2.5s infinite ease-in-out;
}

@keyframes ztgy-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.ztgy-scroll-line {
	width: 2px;
	height: 40px;
	background: #9a3412;
	margin: 0 auto 8px;
}

.ztgy-scroll-text {
	font-size: 12px;
	color: #9a3412;
	letter-spacing: 2px;
}

/* ========== 2. 全国乐园矩阵区（非传统左右分栏粘性排版） ========== */
.ztgy-park {
	width: 100%;
	padding: 120px 6vw;
	background: #ffffff;
	position: relative;
}

.ztgy-park-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: start;
}

/* 粘性内容区，非传统滚动效果 */
.ztgy-park-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.ztgy-park-item {
	padding: 30px;
	border-radius: 12px;
	background: #fff7ed;
	border-right: 4px solid #ea580c;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ztgy-park-item:hover {
	transform: translateX(-10px);
	box-shadow: 0 10px 30px rgba(234, 88, 12, 0.1);
}

.ztgy-park-title-box {
	position: sticky;
	top: 25vh;
}

.ztgy-park-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #9333ea;
	margin-bottom: 16px;
}

.ztgy-park-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.3;
	color: #581c87;
	margin-bottom: 20px;
}

.ztgy-park-line {
	width: 80px;
	height: 3px;
	background: #c084fc;
}

.ztgy-item-title {
	font-size: 20px;
	font-weight: 600;
	color: #9a3412;
	margin-bottom: 10px;
}

.ztgy-item-desc {
	font-size: 15px;
	color: #431407;
	line-height: 1.8;
}

/* ========== 3. 核心欢乐体验区（非传统瀑布流错落网格） ========== */
.ztgy-experience {
	width: 100%;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	position: relative;
}

.ztgy-experience-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.ztgy-experience-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	color: #075985;
	margin-bottom: 16px;
}

.ztgy-experience-sub {
	font-size: 16px;
	color: #0369a1;
}

.ztgy-experience-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: minmax(200px, auto);
	gap: 24px;
}

/* 瀑布流错落布局，非传统对称 */
.ztgy-ex-card-1 {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.ztgy-ex-card-2 {
	grid-column: 2 / 4;
	grid-row: 1 / 2;
}

.ztgy-ex-card-3 {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.ztgy-ex-card-4 {
	grid-column: 3 / 4;
	grid-row: 2 / 4;
}

.ztgy-ex-card-5 {
	grid-column: 1 / 3;
	grid-row: 3 / 4;
}

.ztgy-experience-card {
	border-radius: 16px;
	padding: 36px 32px;
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(7, 89, 133, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 卡片悬浮流光边框特效 */
.ztgy-experience-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-radius: 16px;
	background: linear-gradient(90deg, #0ea5e9, #7c3aed, #f97316) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.ztgy-experience-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 45px rgba(7, 89, 133, 0.12);
}

.ztgy-experience-card:hover::before {
	opacity: 1;
}

.ztgy-ex-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #0c4a6e;
	margin-bottom: 12px;
}

.ztgy-ex-card-desc {
	font-size: 15px;
	color: #475569;
	line-height: 1.8;
}

/* ========== 4. 营销合作号召区（全屏沉浸式非传统排版） ========== */
.ztgy-marketing {
	width: 100%;
	min-height: 80vh;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ztgy-marketing-content {
	max-width: 900px;
	text-align: center;
	color: #ffffff;
	position: relative;
	z-index: 2;
}

.ztgy-marketing-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.3;
}

.ztgy-marketing-text {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 2.1;
	color: #ede9fe;
	margin-bottom: 50px;
}

.ztgy-marketing-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	background: #f97316;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
	animation: ztgy-pulse 3s infinite ease-in-out;
}

@keyframes ztgy-pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}

.ztgy-marketing-btn:hover {
	color: #ffffff;
	transform: scale(1.05);
	box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
	background: #ea580c;
	animation: none;
}

/* ========== 响应式适配（全设备兼容） ========== */
@media (max-width: 992px) {
	.ztgy-park-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.ztgy-park-title-box {
		position: relative;
		top: 0;
	}

	.ztgy-experience-grid {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.ztgy-mouse-light-1,
	.ztgy-mouse-light-2 {
		display: none;
	}
}

@media (max-width: 768px) {
	.ztgy-hero {
		height: 90vh;
	}

	.ztgy-park,
	.ztgy-experience,
	.ztgy-marketing {
		padding: 80px 20px;
	}

	.ztgy-experience-card {
		padding: 30px 26px;
	}
}

@media (max-width: 480px) {
	.ztgy-hero-title {
		letter-spacing: 2px;
	}

	.ztgy-experience-card {
		padding: 28px 22px;
	}
}

/* 特色建筑 */
/* ========== 鼠标跟随双光晕（当下最流行交互特效） ========== */
.tsgy-mouse-light-1,
.tsgy-mouse-light-2 {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 999;
	mix-blend-mode: soft-light;
	transform: translate(-50%, -50%);
}

.tsgy-mouse-light-1 {
	width: 550px;
	height: 550px;
	background: radial-gradient(circle, rgba(208, 170, 109, 0.18) 0%, transparent 70%);
	transition: 0.08s ease-out;
}

.tsgy-mouse-light-2 {
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(30, 41, 59, 0.12) 0%, transparent 70%);
	transition: 0.04s ease-out;
}

/* ========== 通用滚动渐入动画（无公共颜色，仅动效） ========== */
.tsgy-scroll-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.tsgy-scroll-in.tsgy-active {
	opacity: 1;
	transform: translateY(0);
}

.tsgy-delay-1 {
	transition-delay: 0.2s;
}

.tsgy-delay-2 {
	transition-delay: 0.4s;
}

.tsgy-delay-3 {
	transition-delay: 0.6s;
}

/* ========== 1. 沉浸式Hero区（非传统全屏视觉） ========== */
.tsgy-hero {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
}

/* 背景微流动特效 */
.tsgy-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: inherit;
	background-size: 200% 200%;
	animation: tsgy-bg-flow 20s linear infinite alternate;
	z-index: 0;
}

@keyframes tsgy-bg-flow {
	0% {
		transform: translateX(0) rotate(0deg);
	}

	100% {
		transform: translateX(20%) rotate(0.5deg);
	}
}

/* 建筑线条装饰 */
.tsgy-hero-decor {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35vh;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,208C672,213,768,203,864,192C960,181,1056,171,1152,176C1248,181,1344,203,1392,213.3L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
	background-size: cover;
	z-index: 1;
}

.tsgy-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	animation: tsgy-fade-in 1.5s ease-out forwards;
}

@keyframes tsgy-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tsgy-hero-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 8px 22px;
	border: 1px solid #475569;
	border-radius: 50px;
	color: #475569;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.tsgy-hero-title {
	font-size: clamp(42px, 8vw, 90px);
	font-weight: 700;
	line-height: 1.1;
	color: #1e293b;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.tsgy-hero-sub {
	font-size: clamp(16px, 2.5vw, 22px);
	color: #334155;
	max-width: 700px;
	margin: 0 auto;
}

.tsgy-scroll-tip {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: tsgy-bounce 2.5s infinite ease-in-out;
}

@keyframes tsgy-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.tsgy-scroll-line {
	width: 2px;
	height: 40px;
	background: #1e293b;
	margin: 0 auto 8px;
}

.tsgy-scroll-text {
	font-size: 12px;
	color: #1e293b;
	letter-spacing: 2px;
}

/* ========== 2. 中国建筑矩阵区（非传统左右分栏粘性排版） ========== */
.tsgy-architecture {
	width: 100%;
	padding: 120px 6vw;
	background: #ffffff;
	position: relative;
}

.tsgy-architecture-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
}

/* 粘性标题区，非传统滚动效果 */
.tsgy-architecture-title-box {
	position: sticky;
	top: 25vh;
}

.tsgy-architecture-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #b45309;
	margin-bottom: 16px;
}

.tsgy-architecture-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.3;
	color: #92400e;
	margin-bottom: 20px;
}

.tsgy-architecture-line {
	width: 80px;
	height: 3px;
	background: #d97706;
}

.tsgy-architecture-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.tsgy-architecture-item {
	padding: 30px;
	border-radius: 12px;
	background: #fffbeb;
	border-left: 4px solid #d97706;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tsgy-architecture-item:hover {
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
}

.tsgy-item-title {
	font-size: 20px;
	font-weight: 600;
	color: #92400e;
	margin-bottom: 10px;
}

.tsgy-item-desc {
	font-size: 15px;
	color: #451a03;
	line-height: 1.8;
}

/* ========== 3. 建筑美学价值区（非传统错落网格布局） ========== */
.tsgy-value {
	width: 100%;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	position: relative;
}

.tsgy-value-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.tsgy-value-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 16px;
}

.tsgy-value-sub {
	font-size: 16px;
	color: #334155;
}

.tsgy-value-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: minmax(200px, auto);
	gap: 24px;
}

/* 瀑布流错落布局，非传统对称 */
.tsgy-value-card-1 {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}

.tsgy-value-card-2 {
	grid-column: 3 / 4;
	grid-row: 1 / 3;
}

.tsgy-value-card-3 {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}

.tsgy-value-card-4 {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.tsgy-value-card-5 {
	grid-column: 1 / 4;
	grid-row: 3 / 4;
}

.tsgy-value-card {
	border-radius: 16px;
	padding: 36px 32px;
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 卡片悬浮渐变边框特效 */
.tsgy-value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-radius: 16px;
	background: linear-gradient(90deg, #d97706, #1e293b, #94a3b8) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.tsgy-value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
}

.tsgy-value-card:hover::before {
	opacity: 1;
}

.tsgy-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 12px;
}

.tsgy-card-desc {
	font-size: 15px;
	color: #475569;
	line-height: 1.8;
}

/* ========== 4. 营销合作号召区（全屏沉浸式非传统排版） ========== */
.tsgy-marketing {
	width: 100%;
	min-height: 80vh;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.tsgy-marketing-content {
	max-width: 900px;
	text-align: center;
	color: #ffffff;
	position: relative;
	z-index: 2;
}

.tsgy-marketing-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.3;
}

.tsgy-marketing-text {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 2.1;
	color: #cbd5e1;
	margin-bottom: 50px;
}

.tsgy-marketing-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	background: #d97706;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
	animation: tsgy-pulse 3s infinite ease-in-out;
}

@keyframes tsgy-pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}

.tsgy-marketing-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
	color: #ffffff;
	background: #b45309;
	animation: none;
}


/* ========== 响应式适配（全设备兼容） ========== */
@media (max-width: 992px) {
	.tsgy-architecture-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.tsgy-architecture-title-box {
		position: relative;
		top: 0;
	}

	.tsgy-value-grid {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.tsgy-mouse-light-1,
	.tsgy-mouse-light-2 {
		display: none;
	}
}

@media (max-width: 768px) {
	.tsgy-hero {
		height: 90vh;
	}

	.tsgy-architecture,
	.tsgy-value,
	.tsgy-marketing {
		padding: 80px 20px;
	}

	.tsgy-value-card {
		padding: 30px 26px;
	}
}

@media (max-width: 480px) {
	.tsgy-hero-title {
		letter-spacing: 2px;
	}

	.tsgy-value-card {
		padding: 28px 22px;
	}
}


/* 网红打卡 */
/* ========== 鼠标跟随双光晕（当下最流行交互特效） ========== */
.whdk-mouse-light-1,
.whdk-mouse-light-2 {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 999;
	mix-blend-mode: screen;
	transform: translate(-50%, -50%);
}

.whdk-mouse-light-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, transparent 70%);
	transition: 0.08s ease-out;
}

.whdk-mouse-light-2 {
	width: 220px;
	height: 220px;
	background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
	transition: 0.04s ease-out;
}

/* ========== 通用滚动渐入动画（无公共颜色，仅动效） ========== */
.whdk-scroll-in {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.whdk-scroll-in.whdk-active {
	opacity: 1;
	transform: translateY(0);
}

.whdk-delay-1 {
	transition-delay: 0.2s;
}

.whdk-delay-2 {
	transition-delay: 0.4s;
}

.whdk-delay-3 {
	transition-delay: 0.6s;
}

/* ========== 1. 沉浸式Hero区（非传统全屏视觉） ========== */
.whdk-hero {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #fdf2f8 0%, #fae8ff 50%, #ede9fe 100%);
}

/* 背景微流动特效 */
.whdk-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: inherit;
	background-size: 200% 200%;
	animation: whdk-bg-flow 20s linear infinite alternate;
	z-index: 0;
}

@keyframes whdk-bg-flow {
	0% {
		transform: translateX(0) rotate(0deg);
	}

	100% {
		transform: translateX(20%) rotate(0.5deg);
	}
}

/* 潮流波浪装饰 */
.whdk-hero-decor {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30vh;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
	background-size: cover;
	z-index: 1;
}

.whdk-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	animation: whdk-fade-in 1.5s ease-out forwards;
}

@keyframes whdk-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.whdk-hero-tag {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 3px;
	padding: 8px 22px;
	border: 1px solid #be185d;
	border-radius: 50px;
	color: #be185d;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.whdk-hero-title {
	font-size: clamp(42px, 8vw, 90px);
	font-weight: 700;
	line-height: 1.1;
	background: linear-gradient(90deg, #be185d, #7c3aed);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.whdk-hero-sub {
	font-size: clamp(16px, 2.5vw, 22px);
	color: #9f1239;
	max-width: 700px;
	margin: 0 auto;
}

.whdk-scroll-tip {
	position: absolute;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: whdk-bounce 2.5s infinite ease-in-out;
}

@keyframes whdk-bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(12px);
	}
}

.whdk-scroll-line {
	width: 2px;
	height: 40px;
	background: #be185d;
	margin: 0 auto 8px;
}

.whdk-scroll-text {
	font-size: 12px;
	color: #be185d;
	letter-spacing: 2px;
}

/* ========== 2. 全国打卡地标区（非传统错位网格排版） ========== */
.whdk-landmark {
	width: 100%;
	padding: 120px 6vw;
	background: #ffffff;
	position: relative;
}

.whdk-landmark-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 80px;
}

.whdk-landmark-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #7c3aed;
	margin-bottom: 16px;
}

.whdk-landmark-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	color: #5b21b6;
	margin-bottom: 16px;
}

.whdk-landmark-sub {
	font-size: 16px;
	color: #6d28d9;
}

.whdk-landmark-grid {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: minmax(220px, auto);
	gap: 24px;
}

/* 错位网格布局，完全非传统对称 */
.whdk-card-1 {
	grid-column: 1 / 8;
	grid-row: 1 / 2;
}

.whdk-card-2 {
	grid-column: 8 / 13;
	grid-row: 1 / 3;
}

.whdk-card-3 {
	grid-column: 1 / 5;
	grid-row: 2 / 3;
}

.whdk-card-4 {
	grid-column: 5 / 8;
	grid-row: 2 / 3;
}

.whdk-card-5 {
	grid-column: 1 / 13;
	grid-row: 3 / 4;
}

.whdk-landmark-card {
	border-radius: 16px;
	padding: 36px 32px;
	background: linear-gradient(135deg, #fdf2f8 0%, #fae8ff 100%);
	box-shadow: 0 8px 30px rgba(190, 24, 93, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 卡片悬浮流光边框特效 */
.whdk-landmark-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-radius: 16px;
	background: linear-gradient(90deg, #ec4899, #7c3aed, #8b5cf6) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.whdk-landmark-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 16px 45px rgba(190, 24, 93, 0.12);
}

.whdk-landmark-card:hover::before {
	opacity: 1;
}

.whdk-card-title {
	font-size: 22px;
	font-weight: 600;
	color: #9f1239;
	margin-bottom: 12px;
}

.whdk-card-desc {
	font-size: 15px;
	color: #831843;
	line-height: 1.8;
}

/* ========== 3. 打卡核心价值区（非传统左右分栏粘性排版） ========== */
.whdk-value {
	width: 100%;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
	position: relative;
}

.whdk-value-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 80px;
	align-items: start;
}

.whdk-value-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.whdk-value-item {
	padding: 30px;
	border-radius: 12px;
	background: #ffffff;
	border-right: 4px solid #7c3aed;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whdk-value-item:hover {
	transform: translateX(-10px);
	box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

/* 粘性标题区，非传统滚动效果 */
.whdk-value-title-box {
	position: sticky;
	top: 25vh;
}

.whdk-value-tag {
	font-size: 14px;
	letter-spacing: 2px;
	color: #be185d;
	margin-bottom: 16px;
}

.whdk-value-title {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.3;
	color: #9f1239;
	margin-bottom: 20px;
}

.whdk-value-line {
	width: 80px;
	height: 3px;
	background: #ec4899;
}

.whdk-item-title {
	font-size: 20px;
	font-weight: 600;
	color: #5b21b6;
	margin-bottom: 10px;
}

.whdk-item-desc {
	font-size: 15px;
	color: #4c1d95;
	line-height: 1.8;
}

/* ========== 4. 营销合作号召区（全屏沉浸式非传统排版） ========== */
.whdk-marketing {
	width: 100%;
	min-height: 80vh;
	padding: 120px 6vw;
	background: linear-gradient(135deg, #be185d 0%, #5b21b6 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.whdk-marketing-content {
	max-width: 900px;
	text-align: center;
	color: #ffffff;
	position: relative;
	z-index: 2;
}

.whdk-marketing-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 600;
	margin-bottom: 30px;
	line-height: 1.3;
}

.whdk-marketing-text {
	font-size: clamp(16px, 2vw, 19px);
	line-height: 2.1;
	color: #f3e8ff;
	margin-bottom: 50px;
}

.whdk-marketing-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	background: #ffffff;
	color: #be185d;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s ease;
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
	animation: whdk-pulse 3s infinite ease-in-out;
}

@keyframes whdk-pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.03);
	}
}

.whdk-marketing-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
	background: #ffffff;
	background: #fdf2f8;
	animation: none;
}



/* ========== 响应式适配（全设备兼容） ========== */
@media (max-width: 992px) {
	.whdk-value-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.whdk-value-title-box {
		position: relative;
		top: 0;
	}

	.whdk-landmark-grid {
		grid-template-columns: 1fr;
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.whdk-mouse-light-1,
	.whdk-mouse-light-2 {
		display: none;
	}
}

@media (max-width: 768px) {
	.whdk-hero {
		height: 90vh;
	}

	.whdk-landmark,
	.whdk-value,
	.whdk-marketing {
		padding: 80px 20px;
	}

	.whdk-landmark-card,
	.whdk-value-item {
		padding: 30px 26px;
	}
}

@media (max-width: 480px) {
	.whdk-hero-title {
		letter-spacing: 2px;
	}

	.whdk-landmark-card,
	.whdk-value-item {
		padding: 28px 22px;
	}
}


/* 历史渊源 */
/* 页面滚动容器 - 实现一屏一滚核心效果 */
.lsyys-page-wrapper {
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.lsyys-page-wrapper::-webkit-scrollbar {
	display: none;
}

/* 单屏板块基础样式 */
.lsyys-screen-section {
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* 右侧固定导航小圆点 */
.lsyys-fixed-nav {
	position: fixed;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.lsyys-nav-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lsyys-nav-dot.active {
	width: 16px;
	height: 16px;
	background: #ffffff;
	border-color: #ffffff;
	transform: scale(1.2);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* 内容容器通用样式 */
.lsyys-content-wrapper {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

/* 标题通用基础样式 */
.lsyys-main-title {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lsyys-sub-title {
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 40px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.lsyys-content-text {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.lsyys-content-card-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.lsyys-content-card {
	padding: 30px 25px;
	border-radius: 12px;
	transition: all 0.4s ease;
}

.lsyys-card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.lsyys-card-desc {
	font-size: 16px;
	line-height: 1.6;
}

/* 板块入场动画激活类 */
.lsyys-section-animate .lsyys-main-title,
.lsyys-section-animate .lsyys-sub-title,
.lsyys-section-animate .lsyys-content-text,
.lsyys-section-animate .lsyys-content-card-group {
	opacity: 1;
	transform: translateY(0);
}

/* ========== 第一板块：千年古韵·源远流长 ========== */
#lsyys-section-1 {
	background: linear-gradient(135deg, #1a120b 0%, #2d1f13 50%, #1a120b 100%);
}

/* 古风背景特效 */
.lsyys-bg-1 {
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(45deg, rgba(218, 165, 32, 0.03) 0px, rgba(218, 165, 32, 0.03) 1px, transparent 1px, transparent 50px),
		repeating-linear-gradient(-45deg, rgba(218, 165, 32, 0.03) 0px, rgba(218, 165, 32, 0.03) 1px, transparent 1px, transparent 50px);
	animation: lsyys-bg-move-1 30s linear infinite;
	z-index: 1;
}

@keyframes lsyys-bg-move-1 {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	100% {
		transform: translate(-50px, -50px) rotate(360deg);
	}
}

#lsyys-section-1 .lsyys-main-title {
	background: linear-gradient(90deg, #f8d49d 0%, #daa520 50%, #f8d49d 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

#lsyys-section-1 .lsyys-sub-title {
	color: #e6d0b0;
}

#lsyys-section-1 .lsyys-content-text {
	color: #d4c2a8;
	max-width: 900px;
}

#lsyys-section-1 .lsyys-content-card {
	background: rgba(218, 165, 32, 0.08);
	border: 1px solid rgba(218, 165, 32, 0.2);
}

#lsyys-section-1 .lsyys-content-card:hover {
	transform: translateY(-10px);
	background: rgba(218, 165, 32, 0.15);
	border-color: #daa520;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

#lsyys-section-1 .lsyys-card-title {
	color: #f8d49d;
}

#lsyys-section-1 .lsyys-card-desc {
	color: #e6d0b0;
}

/* ========== 第二板块：红色记忆·精神传承 ========== */
#lsyys-section-2 {
	background: linear-gradient(135deg, #8b0000 0%, #a80000 50%, #8b0000 100%);
}

/* 红色脉动光晕特效 */
.lsyys-bg-2 {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
	animation: lsyys-pulse-2 4s ease-in-out infinite;
	z-index: 1;
}

@keyframes lsyys-pulse-2 {
	0% {
		transform: scale(0.8);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.8;
	}

	100% {
		transform: scale(0.8);
		opacity: 0.5;
	}
}

#lsyys-section-2 .lsyys-main-title {
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#lsyys-section-2 .lsyys-sub-title {
	color: #ffd700;
}

#lsyys-section-2 .lsyys-content-text {
	color: #f8f0e3;
	max-width: 900px;
}

#lsyys-section-2 .lsyys-content-card {
	background: rgba(255, 255, 255, 0.1);
	border-left: 4px solid #ffd700;
}

#lsyys-section-2 .lsyys-content-card:hover {
	background: #ffffff;
	transform: translateX(10px);
}

#lsyys-section-2 .lsyys-content-card:hover .lsyys-card-title {
	color: #8b0000;
}

#lsyys-section-2 .lsyys-content-card:hover .lsyys-card-desc {
	color: #333333;
}

#lsyys-section-2 .lsyys-card-title {
	color: #ffffff;
	transition: all 0.4s ease;
}

#lsyys-section-2 .lsyys-card-desc {
	color: #f8f0e3;
	transition: all 0.4s ease;
}

/* ========== 第三板块：时代新篇·蓬勃发展 ========== */
#lsyys-section-3 {
	background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 50%, #0a2463 100%);
}

/* 科技流动线条特效 */
.lsyys-bg-3 {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
		linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: lsyys-line-move-3 20s linear infinite;
	z-index: 1;
}

@keyframes lsyys-line-move-3 {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 50px 50px;
	}
}

#lsyys-section-3 .lsyys-main-title {
	background: linear-gradient(90deg, #ffffff 0%, #3b82f6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

#lsyys-section-3 .lsyys-sub-title {
	color: #bfdbfe;
}

#lsyys-section-3 .lsyys-content-text {
	color: #dbeafe;
	max-width: 900px;
}

#lsyys-section-3 .lsyys-content-card {
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

#lsyys-section-3 .lsyys-content-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
	transition: all 0.6s ease;
}

#lsyys-section-3 .lsyys-content-card:hover::before {
	left: 100%;
}

#lsyys-section-3 .lsyys-content-card:hover {
	transform: translateY(-8px) scale(1.02);
	border-color: #3b82f6;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

#lsyys-section-3 .lsyys-card-title {
	color: #ffffff;
}

#lsyys-section-3 .lsyys-card-desc {
	color: #bfdbfe;
}

/* ========== 第四板块：产业崛起·城市脊梁 ========== */
#lsyys-section-4 {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* 3D网格特效 */
.lsyys-bg-4 {
	position: absolute;
	inset: 0;
	perspective: 1000px;
	overflow: hidden;
	z-index: 1;
}

.lsyys-grid-4 {
	position: absolute;
	width: 200%;
	height: 200%;
	left: -50%;
	top: -50%;
	background-image:
		linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
		linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	transform: rotateX(60deg);
	animation: lsyys-grid-move-4 15s linear infinite;
}

@keyframes lsyys-grid-move-4 {
	0% {
		transform: rotateX(60deg) translateY(0);
	}

	100% {
		transform: rotateX(60deg) translateY(40px);
	}
}

#lsyys-section-4 .lsyys-main-title {
	background: linear-gradient(90deg, #f1f5f9 0%, #0ea5e9 50%, #f1f5f9 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

#lsyys-section-4 .lsyys-sub-title {
	color: #cbd5e1;
}

#lsyys-section-4 .lsyys-content-text {
	color: #e2e8f0;
	max-width: 900px;
}

#lsyys-section-4 .lsyys-content-card {
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.2);
	border-radius: 12px;
}

#lsyys-section-4 .lsyys-content-card:hover {
	transform: rotateY(5deg) translateZ(20px);
	background: rgba(14, 165, 233, 0.15);
	border-color: #0ea5e9;
	box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
}

#lsyys-section-4 .lsyys-card-title {
	color: #f1f5f9;
}

#lsyys-section-4 .lsyys-card-desc {
	color: #cbd5e1;
}

/* ========== 响应式适配 ========== */
@media screen and (max-width: 992px) {
	.lsyys-main-title {
		font-size: 42px;
	}

	.lsyys-sub-title {
		font-size: 20px;
	}

	.lsyys-content-text {
		font-size: 16px;
	}

	.lsyys-content-card-group {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 768px) {
	.lsyys-fixed-nav {
		right: auto;
		top: auto;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
	}

	.lsyys-main-title {
		font-size: 32px;
	}

	.lsyys-sub-title {
		font-size: 18px;
		margin-bottom: 30px;
	}

	.lsyys-content-text {
		font-size: 15px;
	}

	.lsyys-content-card-group {
		grid-template-columns: 1fr;
		gap: 15px;
		margin-top: 30px;
	}

	.lsyys-content-card {
		padding: 20px;
	}
}


/* 地域文脉 */

/* 全屏滚动核心容器 保留丝滑切换核心能力 */
.dywls-page-container {
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.dywls-page-container::-webkit-scrollbar {
	display: none;
}

/* 单屏板块基础样式 统一屏高规范 */
.dywls-screen-module {
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 右侧固定导航 全新环形设计 与历史版完全区分 */
.dywls-fixed-sidebar {
	position: fixed;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.dywls-nav-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.dywls-nav-dot::before {
	content: '';
	position: absolute;
	inset: 50%;
	border-radius: 50%;
	background: #ffffff;
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	opacity: 0;
}

.dywls-nav-dot.active {
	border-color: #ffffff;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.dywls-nav-dot.active::before {
	inset: 2px;
	opacity: 1;
}

.dywls-nav-dot:hover {
	transform: scale(1.3);
	border-color: rgba(255, 255, 255, 0.8);
}

/* 内容容器通用规范 */
.dywls-content-wrap {
	width: 92%;
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

/* 标题通用样式 全新动画逻辑 与历史版平移效果区分 */
.dywls-module-title {
	font-size: 58px;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 1px;
	opacity: 0;
	filter: blur(10px);
	transform: scale(0.8);
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dywls-module-subtitle {
	font-size: 22px;
	font-weight: 300;
	line-height: 1.6;
	margin-top: 16px;
	margin-bottom: 48px;
	opacity: 0;
	filter: blur(8px);
	transform: scale(0.85);
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s;
}

.dywls-module-desc {
	font-size: 17px;
	line-height: 1.8;
	opacity: 0;
	filter: blur(5px);
	transform: scale(0.9);
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

/* 板块入场动画激活类 全新模糊转清晰逻辑 */
.dywls-animate-active .dywls-module-title,
.dywls-animate-active .dywls-module-subtitle,
.dywls-animate-active .dywls-module-desc,
.dywls-animate-active .dywls-card-group,
.dywls-animate-active .dywls-timeline-group,
.dywls-animate-active .dywls-diamond-group,
.dywls-animate-active .dywls-stack-group {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
}

/* ========== 第一板块：自然山水·生态画卷 纯CSS波纹背景 无任何图片 ========== */
#dywls-module-1 {
	background: linear-gradient(135deg, #0a4a3f 0%, #146d5c 50%, #0a4a3f 100%);
}

/* 纯CSS山水波纹背景 无图片 纯渐变+动画实现 */
.dywls-wave-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.dywls-wave-layer {
	position: absolute;
	width: 200%;
	height: 100%;
	left: -50%;
	bottom: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(255, 255, 255, 0.03) 100%);
	border-radius: 45%;
	animation: dywls-wave-swing 20s linear infinite;
}

.dywls-wave-layer:nth-child(2) {
	animation-duration: 15s;
	bottom: -10%;
	opacity: 0.6;
}

.dywls-wave-layer:nth-child(3) {
	animation-duration: 25s;
	bottom: -20%;
	opacity: 0.4;
}

@keyframes dywls-wave-swing {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* 居中对称布局 与历史版左文右卡完全区分 */
#dywls-module-1 .dywls-content-wrap {
	text-align: center;
}

#dywls-module-1 .dywls-module-title {
	background: linear-gradient(90deg, #f0f9f7 0%, #52e0c4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

#dywls-module-1 .dywls-module-subtitle {
	color: #b8e8df;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

#dywls-module-1 .dywls-module-desc {
	color: #d0f0eb;
	max-width: 900px;
	margin: 0 auto 50px;
}

/* 玻璃态渐变卡片 纯CSS实现 无图片 */
.dywls-card-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	opacity: 0;
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}

.dywls-landscape-card {
	padding: 35px 25px;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(82, 224, 196, 0.2);
	transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: default;
	position: relative;
	overflow: hidden;
}

.dywls-landscape-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(82, 224, 196, 0.2) 0%, transparent 100%);
	opacity: 0;
	transition: all 0.5s ease;
}

.dywls-card-icon {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg, #52e0c4 0%, #279b83 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.dywls-card-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.dywls-card-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #b8e8df;
	position: relative;
	z-index: 2;
}

.dywls-landscape-card:hover {
	transform: translateY(-12px) rotate(2deg);
	border-color: #52e0c4;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dywls-landscape-card:hover::before {
	opacity: 1;
}

/* ========== 第二板块：人文古迹·历史见证 纯CSS年轮背景 无任何图片 ========== */
#dywls-module-2 {
	background: linear-gradient(135deg, #382516 0%, #50341e 50%, #382516 100%);
}

/* 纯CSS年轮时光背景 无图片 纯径向渐变+动画实现 */
.dywls-ring-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.dywls-time-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(255, 215, 170, 0.1);
	animation: dywls-ring-expand 15s linear infinite;
}

.dywls-time-ring:nth-child(1) {
	width: 300px;
	height: 300px;
	animation-duration: 20s;
}

.dywls-time-ring:nth-child(2) {
	width: 600px;
	height: 600px;
	animation-duration: 25s;
}

.dywls-time-ring:nth-child(3) {
	width: 900px;
	height: 900px;
	animation-duration: 30s;
}

.dywls-time-ring:nth-child(4) {
	width: 1200px;
	height: 1200px;
	animation-duration: 35s;
}

@keyframes dywls-ring-expand {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
		opacity: 0.8;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

/* 左文右时间线布局 与历史版网格布局完全区分 */
.dywls-timeline-layout {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 60px;
	align-items: center;
}

#dywls-module-2 .dywls-module-title {
	color: #ffddb0;
}

#dywls-module-2 .dywls-module-subtitle {
	color: #e6c498;
}

#dywls-module-2 .dywls-module-desc {
	color: #f0e0cc;
}

/* 纵向时间线卡片 纯CSS实现 无图片 */
.dywls-timeline-group {
	position: relative;
	padding-left: 40px;
	opacity: 0;
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}

.dywls-timeline-line {
	position: absolute;
	left: 8px;
	top: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, #ffddb0 0%, transparent 100%);
}

.dywls-timeline-card {
	position: relative;
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border-left: 3px solid #ffddb0;
	transition: all 0.5s ease;
	cursor: default;
}

.dywls-timeline-card::before {
	content: '';
	position: absolute;
	left: -46px;
	top: 30px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #ffddb0;
	box-shadow: 0 0 10px rgba(255, 221, 176, 0.6);
}

.dywls-timeline-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffddb0;
	margin-bottom: 10px;
}

.dywls-timeline-text {
	font-size: 15px;
	line-height: 1.6;
	color: #f0e0cc;
}

.dywls-timeline-card:hover {
	transform: translateX(15px);
	background: rgba(255, 221, 176, 0.1);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========== 第三板块：非遗体验·匠心传承 纯CSS线条动画 无任何图片 ========== */
#dywls-module-3 {
	background: linear-gradient(135deg, #661a1a 0%, #882222 50%, #661a1a 100%);
}

/* 纯CSS手绘线条背景 无图片 内联SVG+CSS动画实现 */
.dywls-line-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.dywls-hand-line {
	stroke: rgba(255, 200, 150, 0.15);
	stroke-width: 1;
	fill: none;
	stroke-dasharray: 1500;
	stroke-dashoffset: 1500;
	animation: dywls-line-draw 10s ease-in-out infinite alternate;
}

@keyframes dywls-line-draw {
	0% {
		stroke-dashoffset: 1500;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

/* 菱形四格布局 与历史版所有布局完全区分 */
#dywls-module-3 .dywls-content-wrap {
	text-align: center;
}

#dywls-module-3 .dywls-module-title {
	color: #ffebd6;
	margin-bottom: 20px;
}

#dywls-module-3 .dywls-module-subtitle {
	color: #ffd7b0;
	max-width: 700px;
	margin: 0 auto 60px;
}

/* 3D翻转菱形卡片 纯CSS实现 无图片 */
.dywls-diamond-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
	opacity: 0;
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
	perspective: 1000px;
}

.dywls-heritage-card {
	height: 220px;
	border-radius: 16px;
	position: relative;
	cursor: default;
	transform-style: preserve-3d;
	transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dywls-card-front,
.dywls-card-back {
	position: absolute;
	inset: 0;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.dywls-card-front {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 215, 176, 0.3);
}

.dywls-card-back {
	background: linear-gradient(135deg, #ffd7b0 0%, #ffb070 100%);
	transform: rotateY(180deg);
}

.dywls-heritage-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ffd7b0 0%, #ffb070 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #661a1a;
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 20px;
}

.dywls-heritage-title {
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
}

.dywls-heritage-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #661a1a;
	font-weight: 500;
}

.dywls-heritage-card:hover {
	transform: rotateY(180deg);
}

/* ========== 第四板块：休闲体验·惬意时光 纯CSS粒子背景 无任何图片 ========== */
#dywls-module-4 {
	background: linear-gradient(135deg, #1e3a66 0%, #2d5288 50%, #1e3a66 100%);
}

/* 纯CSS粒子浮动背景 无图片 纯阴影+动画实现 */
.dywls-particle-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.dywls-particle {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: dywls-particle-float 20s linear infinite;
}

.dywls-particle:nth-child(1) {
	width: 8px;
	height: 8px;
	left: 10%;
	animation-duration: 15s;
}

.dywls-particle:nth-child(2) {
	width: 12px;
	height: 12px;
	left: 25%;
	animation-duration: 20s;
	animation-delay: 2s;
}

.dywls-particle:nth-child(3) {
	width: 6px;
	height: 6px;
	left: 40%;
	animation-duration: 18s;
	animation-delay: 4s;
}

.dywls-particle:nth-child(4) {
	width: 10px;
	height: 10px;
	left: 60%;
	animation-duration: 22s;
	animation-delay: 6s;
}

.dywls-particle:nth-child(5) {
	width: 7px;
	height: 7px;
	left: 75%;
	animation-duration: 16s;
	animation-delay: 8s;
}

.dywls-particle:nth-child(6) {
	width: 9px;
	height: 9px;
	left: 90%;
	animation-duration: 25s;
	animation-delay: 10s;
}

@keyframes dywls-particle-float {
	0% {
		transform: translateY(100vh) translateX(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) translateX(50px);
		opacity: 0;
	}
}

/* 左卡右文反向布局 与历史版左文右卡完全区分 */
.dywls-reverse-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}

#dywls-module-4 .dywls-module-title {
	background: linear-gradient(90deg, #ffffff 0%, #8ab4f8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

#dywls-module-4 .dywls-module-subtitle {
	color: #bfdbfe;
}

#dywls-module-4 .dywls-module-desc {
	color: #dbeafe;
}

/* ========== 优化后的堆叠式卡片 层次分明 凸显效果 ========== */
.dywls-stack-group {
	position: relative;
	height: 480px;
	opacity: 0;
	transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s;
}

.dywls-stack-card {
	position: absolute;
	width: 80%;
	height: 180px;
	border-radius: 18px;
	padding: 32px 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid rgba(138, 180, 248, 0.15);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	cursor: pointer;
}

/* 清晰的层级定位 避免混乱 */
.dywls-stack-card:nth-child(1) {
	top: 0;
	left: 0;
	z-index: 4;
	background: linear-gradient(145deg, rgba(138, 180, 248, 0.18) 0%, rgba(255, 255, 255, 0.05) 100%);
	border-color: rgba(138, 180, 248, 0.3);
}

.dywls-stack-card:nth-child(2) {
	top: 100px;
	left: 20%;
	z-index: 3;
	background: linear-gradient(145deg, rgba(138, 180, 248, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
	border-color: rgba(138, 180, 248, 0.25);
}

.dywls-stack-card:nth-child(3) {
	top: 200px;
	left: 0;
	z-index: 2;
	background: linear-gradient(145deg, rgba(138, 180, 248, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
	border-color: rgba(138, 180, 248, 0.2);
}

.dywls-stack-card:nth-child(4) {
	top: 300px;
	left: 20%;
	z-index: 1;
	background: linear-gradient(145deg, rgba(138, 180, 248, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
	border-color: rgba(138, 180, 248, 0.15);
}

.dywls-stack-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.dywls-stack-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #d0e5ff;
	position: relative;
	z-index: 2;
}

/* 鼠标指向时的凸显效果 层次分明 */
.dywls-stack-group:hover .dywls-stack-card {
	filter: brightness(0.7);
}

.dywls-stack-card:hover {
	filter: brightness(1) !important;
	z-index: 10 !important;
	transform: translate(-10px, -15px) scale(1.05);
	background: linear-gradient(145deg, rgba(138, 180, 248, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
	border-color: #8ab4f8;
	box-shadow: 0 20px 50px rgba(138, 180, 248, 0.25), 0 8px 20px rgba(0, 0, 0, 0.2);
}

.dywls-stack-card:hover .dywls-stack-title {
	color: #ffffff;
	text-shadow: 0 0 10px rgba(138, 180, 248, 0.5);
}

.dywls-stack-card:hover .dywls-stack-desc {
	color: #e6f0ff;
}

/* ========== 全尺寸响应式适配 ========== */
@media screen and (max-width: 1200px) {
	.dywls-card-group {
		grid-template-columns: repeat(2, 1fr);
	}

	.dywls-timeline-layout,
	.dywls-reverse-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dywls-diamond-group {
		gap: 20px;
	}
}

@media screen and (max-width: 992px) {
	.dywls-module-title {
		font-size: 42px;
	}

	.dywls-module-subtitle {
		font-size: 20px;
	}

	.dywls-fixed-sidebar {
		right: 20px;
	}

	.dywls-diamond-group {
		grid-template-columns: 1fr;
		max-width: 500px;
	}

	.dywls-stack-group {
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.dywls-stack-card {
		position: static;
		width: 100%;
		height: auto;
		filter: brightness(1) !important;
	}
}

@media screen and (max-width: 768px) {
	.dywls-fixed-sidebar {
		right: auto;
		top: auto;
		bottom: 25px;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
		gap: 25px;
	}

	.dywls-module-title {
		font-size: 32px;
		letter-spacing: 0;
	}

	.dywls-module-subtitle {
		font-size: 17px;
		margin-bottom: 30px;
	}

	.dywls-module-desc {
		font-size: 15px;
	}

	.dywls-card-group {
		grid-template-columns: 1fr;
	}

	.dywls-timeline-group {
		padding-left: 30px;
	}

	.dywls-timeline-card::before {
		left: -36px;
	}
}

/* 风土人情 */

/* 全屏滚动核心容器 */
.ftrqs-page-container {
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	scroll-snap-type: y mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.ftrqs-page-container::-webkit-scrollbar {
	display: none;
}

/* 单屏板块基础样式 */
.ftrqs-screen-section {
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 右侧固定导航 简洁长条设计 */
.ftrqs-fixed-sidebar {
	position: fixed;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.ftrqs-nav-dot {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ftrqs-nav-dot.active {
	height: 32px;
	background: #ffffff;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.ftrqs-nav-dot:hover {
	background: rgba(255, 255, 255, 0.7);
	transform: scale(1.15);
}

/* 内容容器通用规范 统一布局 */
.ftrqs-content-wrap {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	text-align: center;
}

/* 标题通用样式 简洁左滑入 */
.ftrqs-module-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.5px;
	opacity: 0;
	transform: translateX(-60px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ftrqs-module-subtitle {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	margin-top: 12px;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateX(-40px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s;
}

.ftrqs-module-desc {
	font-size: 16px;
	line-height: 1.8;
	max-width: 850px;
	margin: 0 auto 45px;
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.24s;
}

/* 板块入场动画激活类 */
.ftrqs-animate-active .ftrqs-module-title,
.ftrqs-animate-active .ftrqs-module-subtitle,
.ftrqs-animate-active .ftrqs-module-desc,
.ftrqs-animate-active .ftrqs-card-group {
	opacity: 1;
	transform: translateX(0);
}

/* 统一卡片组规范 四列等比例 */
.ftrqs-card-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.36s;
}

/* 统一卡片基础样式 */
.ftrqs-card {
	padding: 28px 24px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: default;
	text-align: left;
}

.ftrqs-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.ftrqs-card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.ftrqs-card-desc {
	font-size: 14px;
	line-height: 1.6;
}

.ftrqs-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 16px;
}

/* 自然流动背景 简洁不张扬 */
.ftrqs-flow-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.ftrqs-flow-layer {
	position: absolute;
	width: 200%;
	height: 200%;
	top: -50%;
	left: -50%;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
	animation: ftrqs-flow-move 20s linear infinite;
}

@keyframes ftrqs-flow-move {
	0% {
		transform: rotate(0deg) translateX(0);
	}

	100% {
		transform: rotate(360deg) translateX(30px);
	}
}

/* ========== 第一板块：民俗文化·传承千年 活力暖橙 ========== */
#ftrqs-module-1 {
	background: linear-gradient(135deg, #d97706 0%, #f97316 50%, #d97706 100%);
}

#ftrqs-module-1 .ftrqs-flow-layer {
	background: radial-gradient(ellipse at center, rgba(255, 237, 213, 0.1) 0%, transparent 60%);
}

#ftrqs-module-1 .ftrqs-module-title {
	color: #ffffff;
}

#ftrqs-module-1 .ftrqs-module-subtitle {
	color: #ffedd5;
}

#ftrqs-module-1 .ftrqs-module-desc {
	color: #fff7ed;
}

#ftrqs-module-1 .ftrqs-card-title {
	color: #ffffff;
}

#ftrqs-module-1 .ftrqs-card-desc {
	color: #ffedd5;
}

#ftrqs-module-1 .ftrqs-card-icon {
	background: linear-gradient(135deg, #ffffff 0%, #ffedd5 100%);
	color: #d97706;
}

/* ========== 第二板块：特色美食·舌尖记忆 活力暖金 ========== */
#ftrqs-module-2 {
	background: linear-gradient(135deg, #b45309 0%, #f59e0b 50%, #b45309 100%);
}

#ftrqs-module-2 .ftrqs-flow-layer {
	background: radial-gradient(ellipse at center, rgba(254, 243, 199, 0.1) 0%, transparent 60%);
	animation-direction: reverse;
}

#ftrqs-module-2 .ftrqs-module-title {
	color: #ffffff;
}

#ftrqs-module-2 .ftrqs-module-subtitle {
	color: #fef3c7;
}

#ftrqs-module-2 .ftrqs-module-desc {
	color: #fffbeb;
}

#ftrqs-module-2 .ftrqs-card-title {
	color: #ffffff;
}

#ftrqs-module-2 .ftrqs-card-desc {
	color: #fef3c7;
}

#ftrqs-module-2 .ftrqs-card-icon {
	background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
	color: #b45309;
}

/* ========== 第三板块：方言乡音·文化根脉 活力青蓝 ========== */
#ftrqs-module-3 {
	background: linear-gradient(135deg, #4b5563 0%, #60a5fa 50%, #4b5563 100%);
}

#ftrqs-module-3 .ftrqs-flow-layer {
	background: radial-gradient(ellipse at center, rgba(219, 234, 254, 0.1) 0%, transparent 60%);
	animation-duration: 25s;
}

#ftrqs-module-3 .ftrqs-module-title {
	color: #ffffff;
}

#ftrqs-module-3 .ftrqs-module-subtitle {
	color: #dbeafe;
}

#ftrqs-module-3 .ftrqs-module-desc {
	color: #eff6ff;
}

#ftrqs-module-3 .ftrqs-card-title {
	color: #ffffff;
}

#ftrqs-module-3 .ftrqs-card-desc {
	color: #dbeafe;
}

#ftrqs-module-3 .ftrqs-card-icon {
	background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
	color: #4b5563;
}

/* ========== 第四板块：市井生活·人间烟火 活力暖橘 ========== */
#ftrqs-module-4 {
	background: linear-gradient(135deg, #44403c 0%, #fb923c 50%, #44403c 100%);
}

#ftrqs-module-4 .ftrqs-flow-layer {
	background: radial-gradient(ellipse at center, rgba(255, 237, 213, 0.1) 0%, transparent 60%);
	animation-duration: 18s;
}

#ftrqs-module-4 .ftrqs-module-title {
	color: #ffffff;
}

#ftrqs-module-4 .ftrqs-module-subtitle {
	color: #ffedd5;
}

#ftrqs-module-4 .ftrqs-module-desc {
	color: #fff7ed;
}

#ftrqs-module-4 .ftrqs-card-title {
	color: #ffffff;
}

#ftrqs-module-4 .ftrqs-card-desc {
	color: #ffedd5;
}

#ftrqs-module-4 .ftrqs-card-icon {
	background: linear-gradient(135deg, #ffffff 0%, #ffedd5 100%);
	color: #44403c;
}

/* ========== 全尺寸响应式适配 ========== */
@media screen and (max-width: 1200px) {
	.ftrqs-card-group {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 992px) {
	.ftrqs-module-title {
		font-size: 40px;
	}

	.ftrqs-module-subtitle {
		font-size: 18px;
	}

	.ftrqs-fixed-sidebar {
		right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.ftrqs-fixed-sidebar {
		right: auto;
		top: auto;
		bottom: 25px;
		left: 50%;
		transform: translateX(-50%);
		flex-direction: row;
		gap: 22px;
	}

	.ftrqs-nav-dot.active {
		height: 10px;
		width: 32px;
	}

	.ftrqs-module-title {
		font-size: 30px;
		letter-spacing: 0;
	}

	.ftrqs-module-subtitle {
		font-size: 16px;
		margin-bottom: 25px;
	}

	.ftrqs-module-desc {
		font-size: 14px;
		margin-bottom: 35px;
	}

	.ftrqs-card-group {
		grid-template-columns: 1fr;
	}
}

/* 城市概况 */
/* 核心滚动容器 */
.csgks-wrapper {
	width: 100%;
	height: 100vh;
	position: relative;
	-webkit-transition: transform 0.8s cubic-bezier(0.42, 0, 0.15, 1);
	transition: transform 0.8s cubic-bezier(0.42, 0, 0.15, 1);
	will-change: transform;
}

/* 单屏板块基础样式 - 全部围绕城市概况主题 */
.csgks-section {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 0 5%;
}

.csgks-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* 右侧导航小圆点 */
.csgks-nav-dots {
	position: fixed;
	right: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.csgks-nav-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.5);
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.csgks-nav-dot.active {
	background: #d4af37;
	border-color: #d4af37;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.csgks-nav-dot:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	border-color: rgba(255, 255, 255, 0.8);
}

/* 动画基础定义 */
.csgks-animate-item {
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.csgks-animate-active .csgks-animate-item {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.csgks-delay-1 {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.csgks-delay-2 {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.csgks-delay-3 {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.csgks-delay-4 {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.csgks-delay-5 {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

@keyframes csgks-float {

	0%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	50% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

@keyframes csgks-line-grow {
	0% {
		width: 0;
	}

	100% {
		width: 100px;
	}
}

@keyframes csgks-number-up {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes csgks-ring-pulse {
	0% {
		transform: scale(0.8);
		opacity: 0.8;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.4;
	}

	100% {
		transform: scale(0.8);
		opacity: 0.8;
	}
}

/* 第一屏：主题封面 - 城市概况核心主题 */
.csgks-section-hero {
	background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
	color: #ffffff;
	text-align: center;
}

.csgks-hero-decor-ring {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	border: 1px solid rgba(212, 175, 55, 0.3);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1;
	-webkit-animation: csgks-ring-pulse 6s ease-in-out infinite;
	animation: csgks-ring-pulse 6s ease-in-out infinite;
}

.csgks-hero-decor-ring:nth-child(2) {
	width: 450px;
	height: 450px;
	animation-delay: 1s;
}

.csgks-hero-decor-ring:nth-child(3) {
	width: 300px;
	height: 300px;
	animation-delay: 2s;
}

.csgks-hero-title {
	font-size: clamp(2.5rem, 8vw, 5rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #ffffff 0%, #d4af37 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.csgks-hero-line {
	width: 0;
	height: 3px;
	background: #d4af37;
	margin: 0 auto 30px;
}

.csgks-animate-active .csgks-hero-line {
	-webkit-animation: csgks-line-grow 1s ease forwards 0.3s;
	animation: csgks-line-grow 1s ease forwards 0.3s;
}

.csgks-hero-subtitle {
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 300;
	letter-spacing: 0.1em;
	opacity: 0.9;
}

/* 第二屏：核心定位 - 城市概况核心定位 */
.csgks-section-position {
	background: #f8f9fa;
	color: #1a365d;
}

.csgks-section-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	margin-bottom: 20px;
}

.csgks-title-line {
	width: 80px;
	height: 4px;
	background: #d4af37;
	margin-bottom: 40px;
}

.csgks-position-desc {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	line-height: 2;
	max-width: 900px;
	margin-bottom: 60px;
	opacity: 0.85;
}

.csgks-position-tag-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.csgks-position-tag {
	padding: 15px 35px;
	border-radius: 50px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	font-size: 1.1rem;
	font-weight: 500;
	color: #1a365d;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.csgks-position-tag:hover {
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
	background: #1a365d;
	color: #ffffff;
	border-color: #1a365d;
	box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
}

/* 第三屏：禀赋优势 - 城市概况核心禀赋 */
.csgks-section-advantage {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #ffffff;
}

.csgks-advantage-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.csgks-advantage-card {
	padding: 40px 30px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.csgks-advantage-card:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(212, 175, 55, 0.5);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.csgks-advantage-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 20px;
}

.csgks-advantage-card h4 {
	font-size: 1.6rem;
	margin-bottom: 15px;
	color: #ffffff;
}

.csgks-advantage-card p {
	font-size: 1.05rem;
	line-height: 1.8;
	opacity: 0.85;
}

/* 第四屏：发展实力 - 城市概况发展成果 */
.csgks-section-development {
	background: #ffffff;
	color: #1a365d;
}

.csgks-number-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 60px;
}

.csgks-number-item {
	text-align: center;
	padding: 40px 20px;
	border-radius: 16px;
	background: #f8fafc;
	border-left: 4px solid #2c5282;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.csgks-number-item:hover {
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	border-left-color: #d4af37;
	box-shadow: 0 15px 40px rgba(26, 54, 93, 0.1);
}

.csgks-number {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #2c5282;
	margin-bottom: 15px;
	line-height: 1;
}

.csgks-number-text {
	font-size: 1.1rem;
	opacity: 0.8;
	font-weight: 500;
}

.csgks-animate-active .csgks-number {
	-webkit-animation: csgks-number-up 0.8s ease forwards;
	animation: csgks-number-up 0.8s ease forwards;
}

/* 第五屏：人文内核 - 城市概况文化底蕴 */
.csgks-section-culture {
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
	color: #451a03;
}

.csgks-culture-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.csgks-culture-desc {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	line-height: 2;
	margin-bottom: 50px;
	opacity: 0.85;
}

.csgks-culture-decor {
	position: absolute;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	top: 10%;
	left: 5%;
	z-index: 1;
	-webkit-animation: csgks-float 8s ease-in-out infinite;
	animation: csgks-float 8s ease-in-out infinite;
}

.csgks-culture-decor:nth-child(2) {
	top: auto;
	bottom: 10%;
	left: auto;
	right: 5%;
	animation-delay: 2s;
}

/* 第六屏：未来展望 - 城市概况未来可期 */
.csgks-section-future {
	background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
	color: #ffffff;
	text-align: center;
}

.csgks-future-title {
	font-size: clamp(2.2rem, 6vw, 4rem);
	font-weight: 700;
	margin-bottom: 30px;
}

.csgks-future-desc {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	line-height: 2;
	max-width: 900px;
	margin: 0 auto 60px;
	opacity: 0.9;
}

.csgks-future-btn {
	display: inline-block;
	padding: 18px 50px;
	border-radius: 50px;
	background: #ffffff;
	color: #064e3b;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.csgks-future-btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	background: #d4af37;
	color: #064e3b;
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* 响应式适配 */
@media (max-width: 992px) {
	.csgks-advantage-grid {
		grid-template-columns: 1fr;
	}

	.csgks-number-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.csgks-nav-dots {
		right: 20px;
	}
}

@media (max-width: 576px) {
	.csgks-nav-dots {
		right: 15px;
	}

	.csgks-nav-dot {
		width: 10px;
		height: 10px;
	}

	.csgks-number-grid {
		grid-template-columns: 1fr;
	}

	.csgks-position-tag-wrap {
		gap: 12px;
	}

	.csgks-position-tag {
		padding: 10px 25px;
		font-size: 1rem;
	}

	.csgks-advantage-card {
		padding: 30px 20px;
	}
}


/* 研究与整理 */
/* 英雄区 - 斜切视觉+渐变，非传统矩形布局 */
.yjzlb-hero {
	position: relative;
	padding: 10rem 0rem;
	background: linear-gradient(135deg, #1A365D, #2C5282);
	color: #FFFFFF;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.yjzlb-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3rem;
	background: linear-gradient(90deg, #F6AD55, #ED8936);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.yjzlb-hero .yjzlb-container {
	max-width: 1150px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.yjzlb-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	letter-spacing: 2px;
	font-weight: 700;
}

.yjzlb-hero p {
	font-size: 1rem;
	max-width: 800px;
	opacity: 0.9;
	line-height: 1.8;
}

/* 核心理念区 - 悬浮卡片，偏离传统居中块 */
.yjzlb-concept {
	max-width: 1200px;
	margin: -4rem auto 6rem;
	padding: 0 2rem;
	position: relative;
	z-index: 3;
}

.yjzlb-concept-card {
	background: #FFFFFF;
	padding: 3rem 2.5rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.yjzlb-concept-card:hover {
	transform: translateY(0);
	box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
}

.yjzlb-concept-card h2 {
	font-size: 2rem;
	color: #1A365D;
	margin-bottom: 1.2rem;
	border-left: 5px solid #ED8936;
	padding-left: 1rem;
}

.yjzlb-concept-card p {
	font-size: 1.1rem;
	color: #4A5568;
	line-height: 1.9;
}

/* 六大核心板块 - 错落网格布局，非传统等距排列 */
.yjzlb-core-modules {
	padding: 2rem 2rem 8rem;
	background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
}

.yjzlb-core-modules .yjzlb-section-title {
	max-width: 1200px;
	margin: 0 auto 4rem;
	text-align: center;
	font-size: 2.5rem;
	color: #1A365D;
	position: relative;
}

.yjzlb-core-modules .yjzlb-section-title::after {
	content: "";
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #ED8936, #F6AD55);
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

/* 手风琴核心容器 */
.ctyj-container {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	height: 50vh;
	min-height: 500px;
	display: flex;
	gap: 2px;
	border-radius: 12px;
	overflow: hidden;
	background-color: #f2f5f7;
	box-shadow: 0 8px 32px rgba(45, 55, 72, 0.12);
}

/* 手风琴单项 */
.ctyj-item {
	flex: 1.5;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 未展开时的淡淡渐变背景 */
.ctyj-item:nth-child(1) {
	border-top: 4px solid #4299E1;
	background: #ffffff;
	border-image: linear-gradient(to top, #3182CE, #4299E1) 1;
}

.ctyj-item:nth-child(2) {
	border-top: 4px solid #48BB78;
	background: #ffffff;
	border-image: linear-gradient(to top, #38B2AC, #48BB78) 1;
}

.ctyj-item:nth-child(3) {
	border-top: 4px solid #805AD5;
	background: #ffffff;
	border-image: linear-gradient(to top, #9F7AEA, #805AD5) 1;
}

.ctyj-item:nth-child(4) {
	border-top: 4px solid #ED8936;
	background: #ffffff;
	border-image: linear-gradient(to top, #ED8936, #F6AD55) 1;
}

.ctyj-item:nth-child(5) {
	border-top: 4px solid #E53E3E;
	background: #ffffff;
	border-image: linear-gradient(to top, #E53E3E, #FC8181) 1;
}

.ctyj-item:nth-child(6) {
	border-top: 4px solid #A0AEC0;
	background: #ffffff;
	border-image: linear-gradient(to top, #718096, #A0AEC0) 1;
}

/* 展开时背景渐变 */
.ctyj-container:hover .ctyj-item {
	flex: 1.5;
}

.ctyj-container .ctyj-item:hover,
.ctyj-container .ctyj-item.ctyj-active {
	flex: 6;
	border-left: none;
}

.ctyj-item:nth-child(1):hover,
.ctyj-item:nth-child(1).ctyj-active {
	background: linear-gradient(90deg, #3182CE, #4299E1);
}

.ctyj-item:nth-child(2):hover,
.ctyj-item:nth-child(2).ctyj-active {
	background: linear-gradient(90deg, #38B2AC, #48BB78);
}

.ctyj-item:nth-child(3):hover,
.ctyj-item:nth-child(3).ctyj-active {
	background: linear-gradient(90deg, #9F7AEA, #805AD5);
}

.ctyj-item:nth-child(4):hover,
.ctyj-item:nth-child(4).ctyj-active {
	background: linear-gradient(90deg, #ED8936, #F6AD55);
}

.ctyj-item:nth-child(5):hover,
.ctyj-item:nth-child(5).ctyj-active {
	background: linear-gradient(90deg, #E53E3E, #FC8181);
}

.ctyj-item:nth-child(6):hover,
.ctyj-item:nth-child(6).ctyj-active {
	background: linear-gradient(90deg, #718096, #A0AEC0);
}

/* 简约点缀元素 */
.ctyj-decoration {
	position: absolute;
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 1;
}

/* 未展开时的淡淡点缀 */
.ctyj-item .ctyj-decoration {
	opacity: 0.15;
}

/* 展开时的点缀 */
.ctyj-item:hover .ctyj-decoration,
.ctyj-item.ctyj-active .ctyj-decoration {
	opacity: 0.1;
}

.ctyj-decoration-line {
	width: 2px;
	height: 60px;
	background: currentColor;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
}

.ctyj-decoration-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	bottom: 30px;
	right: 30px;
}

.ctyj-decoration-corner {
	width: 40px;
	height: 40px;
	border: 2px solid currentColor;
	border-top: none;
	border-left: none;
	bottom: 20px;
	right: 20px;
	opacity: 0.1;
}

/* 为每个板块设置点缀元素颜色 */
.ctyj-item:nth-child(1) .ctyj-decoration {
	color: #3182CE;
}

.ctyj-item:nth-child(2) .ctyj-decoration {
	color: #38B2AC;
}

.ctyj-item:nth-child(3) .ctyj-decoration {
	color: #9F7AEA;
}

.ctyj-item:nth-child(4) .ctyj-decoration {
	color: #ED8936;
}

.ctyj-item:nth-child(5) .ctyj-decoration {
	color: #E53E3E;
}

.ctyj-item:nth-child(6) .ctyj-decoration {
	color: #718096;
}

/* 展开时点缀元素颜色为白色 */
.ctyj-item:hover .ctyj-decoration,
.ctyj-item.ctyj-active .ctyj-decoration {
	color: #ffffff;
}

/* 标题样式 */
.ctyj-item-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	color: #2d3748;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	opacity: 1;
	z-index: 2;
}

/* 展开时标题样式 */
.ctyj-item:hover .ctyj-item-title,
.ctyj-item.ctyj-active .ctyj-item-title {
	top: 48px;
	left: 48px;
	transform: translate(0, 0);
	color: #ffffff;
	font-size: 30px;
}

/* 详情内容容器 */
.ctyj-item-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 120px 48px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #ffffff;
	opacity: 0;
	transition: all 0.4s ease 0.15s;
	z-index: 2;
}

/* 展开时内容显示 */
.ctyj-item:hover .ctyj-item-content,
.ctyj-item.ctyj-active .ctyj-item-content {
	opacity: 1;
}

/* 内容正文 */
.ctyj-item-content p {
	font-size: 18px;
	line-height: 1.9;
	max-width: 720px;
	opacity: 0.95;
	font-weight: 300;
	margin-bottom: 20px;
}

/* 内容列表 */
.ctyj-item-content ul {
	padding-left: 24px;
}

.ctyj-item-content li {
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.9;
	margin-bottom: 10px;
	position: relative;
}

.ctyj-item-content li::before {
	content: "—";
	position: absolute;
	left: -20px;
	color: rgba(255, 255, 255, 0.8);
}

/* 响应式适配：平板设备 */
@media (max-width: 992px) {
	.ctyj-main-title {
		font-size: 30px;
	}

	.ctyj-container {
		height: 60vh;
		min-height: 460px;
	}

	.ctyj-item-title {
		font-size: 18px;
	}

	.ctyj-item:hover .ctyj-item-title,
	.ctyj-item.ctyj-active .ctyj-item-title {
		font-size: 22px;
		left: 32px;
		top: 36px;
	}

	.ctyj-item-content {
		padding: 100px 32px 32px;
	}

	.ctyj-decoration-corner {
		display: none;
	}
}

/* 响应式适配：手机设备 */
@media (max-width: 768px) {
	.ctyj-wrap {
		padding: 40px 16px;
		justify-content: flex-start;
	}

	.ctyj-header {
		margin-bottom: 32px;
	}

	.ctyj-subtitle {
		font-size: 15px;
	}

	.ctyj-main-title {
		font-size: 24px;
		letter-spacing: 2px;
	}

	/* 移动端改为纵向手风琴 */
	.ctyj-container {
		flex-direction: column;
		height: auto;
		min-height: auto;
		border-radius: 8px;
	}

	.ctyj-item {
		width: 100%;
		min-height: 70px;
		flex: none;
		border-left: none !important;
		border-bottom: 1px solid #e2e8f0;
	}

	.ctyj-item:last-child {
		border-bottom: none;
	}

	.ctyj-container:hover .ctyj-item {
		flex: none;
	}

	.ctyj-container .ctyj-item:hover,
	.ctyj-container .ctyj-item.ctyj-active {
		flex: none;
		height: 360px;
		border-bottom: 1px solid #e2e8f0;
	}

	/* 移动端未展开时顶部渐变边框 */
	.ctyj-item:nth-child(1) {
		border-top: 3px solid;
		border-image: linear-gradient(to right, #3182CE, #4299E1) 1;
	}

	.ctyj-item:nth-child(2) {
		border-top: 3px solid;
		border-image: linear-gradient(to right, #38B2AC, #48BB78) 1;
	}

	.ctyj-item:nth-child(3) {
		border-top: 3px solid;
		border-image: linear-gradient(to right, #9F7AEA, #805AD5) 1;
	}

	.ctyj-item:nth-child(4) {
		border-top: 3px solid;
		border-image: linear-gradient(to right, #ED8936, #F6AD55) 1;
	}

	.ctyj-item:nth-child(5) {
		border-top: 3px solid;
		border-image: linear-gradient(to right, #E53E3E, #FC8181) 1;
	}

	.ctyj-item:nth-child(6) {
		border-top: 3px solid;
		border-image: linear-gradient(to right, #718096, #A0AEC0) 1;
	}

	/* 移动端标题 */
	.ctyj-item-title {
		transform: translate(0, -50%);
		left: 24px;
		top: 50%;
		font-size: 18px;
	}

	.ctyj-item:hover .ctyj-item-title,
	.ctyj-item.ctyj-active .ctyj-item-title {
		top: 24px;
		left: 24px;
		transform: translate(0, 0);
		font-size: 20px;
	}

	.ctyj-item-content {
		padding: 65px 24px 24px;
	}

	.ctyj-item-content p {
		font-size: 15px;
		line-height: 1.8;
	}

	.ctyj-decoration {
		display: none;
	}
}

/* 响应式适配：小屏手机 */
@media (max-width: 480px) {
	.ctyj-main-title {
		font-size: 20px;
	}

	.ctyj-container .ctyj-item:hover,
	.ctyj-container .ctyj-item.ctyj-active {
		height: 400px;
	}
}


/* 结语区 - 简约大气，呼应用户行动 */
.yjzlb-conclusion {
	max-width: 1200px;
	margin: 6rem auto;
	padding: 0 2rem;
	text-align: center;
}

.yjzlb-conclusion h2 {
	font-size: 2.3rem;
	color: #1A365D;
	margin-bottom: 1.5rem;
}

.yjzlb-conclusion p {
	font-size: 1.2rem;
	color: #4A5568;
	max-width: 1000px;
	margin: 0 auto 2.5rem;
	line-height: 1.9;
}

.yjzlb-conclusion .yjzlb-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(90deg, #ED8936, #F6AD55);
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(237, 137, 54, 0.3);
}

.yjzlb-conclusion .yjzlb-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(237, 137, 54, 0.4);
	background: linear-gradient(90deg, #D69E2E, #ED8936);
}

/* 响应式媒体查询 - 适配手机/平板/桌面 */
@media (max-width: 768px) {
	.yjzlb-hero {
		padding: 5rem 2rem 4rem;
		clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
	}

	.yjzlb-hero h1 {
		font-size: 2.2rem;
	}

	.yjzlb-hero p {
		font-size: 1rem;
	}

	.yjzlb-concept {
		margin: -2rem auto 4rem;
	}

	.yjzlb-concept-card {
		padding: 2rem 1.5rem;
	}

	.yjzlb-concept-card h2 {
		font-size: 1.6rem;
	}

	.yjzlb-core-modules .yjzlb-section-title {
		font-size: 2rem;
	}

	.yjzlb-modules-grid {
		grid-template-columns: 1fr;
		gap: 1.8rem;
	}

	.yjzlb-module-card {
		padding: 2rem 1.5rem;
	}

	.yjzlb-value-upgrade {
		padding: 4rem 2rem;
		clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
	}

	.yjzlb-value-container {
		flex-direction: column;
		gap: 2rem;
	}

	.yjzlb-value-item h2 {
		font-size: 1.8rem;
	}

	.yjzlb-conclusion h2 {
		font-size: 1.8rem;
	}

	.yjzlb-conclusion p {
		font-size: 1rem;
	}
}

@media (max-width: 425px) {
	.yjzlb-hero h1 {
		font-size: 1.8rem;
	}

	.yjzlb-module-card h3 {
		font-size: 1.3rem;
	}

	.yjzlb-conclusion .yjzlb-btn {
		padding: 0.8rem 2rem;
		font-size: 1rem;
	}
}

/* 文化IP */
.whfu-hero {
	position: relative;
	padding: 10rem 0rem;
	background: linear-gradient(135deg, #581C87, #7C3AED);
	color: #FFFFFF;
	clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
	overflow: hidden;
}

.whfu-hero .whfu-container {
	max-width: 1150px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.whfu-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.8rem;
	letter-spacing: 3px;
	font-weight: 800;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whfu-hero p {
	font-size: 1.2rem;
	max-width: 850px;
	opacity: 0.95;
	line-height: 1.9;
}

/* 核心理念区 - 悬浮错位卡片，视觉层次感拉满 */
.whfu-concept {
	max-width: 1200px;
	margin: -5rem auto 7rem;
	padding: 0 2rem;
	position: relative;
	z-index: 3;
}

.whfu-concept-card {
	background: #FFFFFF;
	padding: 3.5rem 3rem;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(88, 28, 135, 0.15);
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.whfu-concept-card:hover {
	transform: translateY(0);
	box-shadow: 0 20px 50px rgba(88, 28, 135, 0.2);
}

.whfu-concept-card h2 {
	font-size: 2rem;
	color: #581C87;
	margin-bottom: 1.5rem;
	border-left: 6px solid #F59E0B;
	padding-left: 1.2rem;
}

.whfu-concept-card p {
	font-size: 1.1rem;
	color: #475569;
	line-height: 2;
}

/* 六大核心孵化板块 - 错落网格+彩色渐变顶条 */
.whfu-core-modules {
	padding: 2rem 2rem 9rem;
	background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
}

.whfu-core-modules .whfu-section-title {
	max-width: 1150px;
	margin: 0 auto 5rem;
	text-align: center;
	font-size: 2.8rem;
	color: #581C87;
	position: relative;
}

.whfu-core-modules .whfu-section-title::after {
	content: "";
	width: 100px;
	height: 5px;
	background: linear-gradient(90deg, #F59E0B, #EC4899);
	position: absolute;
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 3px;
}

/* 非对称网格布局，桌面3列，平板2列，手机1列 */
.whfu-modules-grid {
	max-width: 1150px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 2rem;
}

.whfu-module-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 3rem 2.5rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 卡片顶部渐变条，区分不同板块 */
.whfu-module-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: linear-gradient(90deg, #7C3AED, #A78BFA);
}

.whfu-module-card:nth-child(2)::before {
	background: linear-gradient(90deg, #EC4899, #F472B6);
}

.whfu-module-card:nth-child(3)::before {
	background: linear-gradient(90deg, #F59E0B, #FBBF24);
}

.whfu-module-card:nth-child(4)::before {
	background: linear-gradient(90deg, #10B981, #34D399);
}

.whfu-module-card:nth-child(5)::before {
	background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.whfu-module-card:nth-child(6)::before {
	background: linear-gradient(90deg, #EF4444, #F87171);
}

/* 卡片悬浮动态效果 */
.whfu-module-card:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 20px 45px rgba(88, 28, 135, 0.12);
}

.whfu-module-card h3 {
	font-size: 1.6rem;
	color: #581C87;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* CSS符号替代图标，无图片 */
.whfu-module-card h3::before {
	content: "✦";
	font-size: 2rem;
	color: inherit;
}

.whfu-module-card p {
	color: #64748B;
	font-size: 1.05rem;
	line-height: 1.9;
}

.whfu-module-card p strong {
	color: #581C87;
	font-weight: 700;
}

/* 结语区 - 行动呼吁，强化营销属性 */
.whfu-conclusion {
	max-width: 1200px;
	margin: 7rem auto;
	padding: 0 2rem;
	text-align: center;
}

.whfu-conclusion h2 {
	font-size: 2.5rem;
	color: #581C87;
	margin-bottom: 1.8rem;
}

.whfu-conclusion p {
	font-size: 1.25rem;
	color: #64748B;
	max-width: 1000px;
	margin: 0 auto 3rem;
	line-height: 2;
}

.whfu-btn {
	display: inline-block;
	padding: 1.2rem 3.5rem;
	background: linear-gradient(90deg, #F59E0B, #EC4899);
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 700;
	transition: all 0.4s ease;
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.whfu-btn:hover {
	color: #FFFFFF;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
	background: linear-gradient(90deg, #D97706, #DB2777);
}

/* 响应式媒体查询 - 全设备适配 */
@media (max-width: 768px) {
	.whfu-hero {
		padding: 6rem 2rem 5rem;
		clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
	}

	.whfu-hero h1 {
		font-size: 2.5rem;
	}

	.whfu-hero p {
		font-size: 1.1rem;
	}

	.whfu-concept {
		margin: -3rem auto 5rem;
	}

	.whfu-concept-card {
		padding: 2.5rem 2rem;
	}

	.whfu-concept-card h2 {
		font-size: 1.8rem;
	}

	.whfu-core-modules .whfu-section-title {
		font-size: 2.2rem;
	}

	.whfu-modules-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.whfu-module-card {
		padding: 2.5rem 2rem;
	}

	.whfu-achievements {
		padding: 5rem 2rem;
		clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
	}

	.whfu-achievements-container {
		flex-direction: column;
		gap: 3rem;
	}

	.whfu-achievements-item h2 {
		font-size: 2rem;
	}

	.whfu-value h2 {
		font-size: 2.1rem;
	}

	.whfu-conclusion h2 {
		font-size: 2rem;
	}

	.whfu-conclusion p {
		font-size: 1.1rem;
	}

	.whfu-btn {
		padding: 1rem 2.8rem;
		font-size: 1.1rem;
	}
}

@media (max-width: 425px) {
	.whfu-hero h1 {
		font-size: 2rem;
	}

	.whfu-module-card h3 {
		font-size: 1.4rem;
	}

	.whfu-value h2 {
		font-size: 1.8rem;
	}

	.whfu-btn {
		padding: 0.9rem 2.5rem;
		font-size: 1rem;
	}
}

/* 传统与传承 */
/* 英雄区 - 双斜切流动光效，打破传统矩形 */
.ctcc-hero {
	position: relative;
	padding: 10rem 0rem;
	background: linear-gradient(135deg, #C41E3A 0%, #FF6F61 100%);
	color: #FFFFFF;
	clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
	overflow: hidden;
}

.ctcc-hero .ctcc-container {
	max-width: 1150px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.ctcc-hero h1 {
	font-size: 4rem;
	margin-bottom: 2rem;
	letter-spacing: 4px;
	font-weight: 800;
}


.ctcc-hero p {
	font-size: 1.2rem;
	max-width: 880px;
	opacity: 0.96;
	line-height: 2;
}

/* 核心理念区 - 阶梯式悬浮卡片，非居中错位 */
.ctcc-concept {
	max-width: 1200px;
	margin: -5.5rem auto 8rem;
	padding: 0 2rem;
	position: relative;
	z-index: 3;
}

.ctcc-concept-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	align-items: flex-end;
}

.ctcc-concept-card {
	flex: 1;
	min-width: 320px;
	background: #FFFFFF;
	padding: 3.2rem 2.8rem;
	border-radius: 18px;
	box-shadow: 0 14px 45px rgba(196, 30, 58, 0.12);
	transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ctcc-concept-card:nth-child(1) {
	transform: translateY(25px);
}

.ctcc-concept-card:nth-child(2) {
	transform: translateY(10px);
}

.ctcc-concept-card:hover {
	transform: translateY(0) scale(1.02);
	box-shadow: 0 22px 60px rgba(196, 30, 58, 0.18);
}

.ctcc-concept-card h2 {
	font-size: 2rem;
	color: #C41E3A;
	margin-bottom: 1.6rem;
	border-left: 7px solid #FFD700;
	padding-left: 1.3rem;
}

.ctcc-concept-card p {
	font-size: 1.1rem;
	color: #5A3A2E;
	line-height: 2;
}

/* 核心实践区 - 非对称网格+纯CSS装饰 */
.ctcc-practices {
	padding: 0rem 2rem 10rem;
	background: linear-gradient(180deg, #FFFFFF 0%, #F5F0EB 100%);
}

.ctcc-practices .ctcc-section-title {
	max-width: 1200px;
	margin: 0 auto 5.5rem;
	text-align: center;
	font-size: 2.9rem;
	color: #2D1810;
	position: relative;
}

.ctcc-practices .ctcc-section-title::after {
	content: "";
	width: 110px;
	height: 6px;
	background: linear-gradient(90deg, #C41E3A, #FFD700, #1A7F7F);
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 4px;
}

.ctcc-practices-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 3.2rem;
}

.ctcc-practice-card {
	background: #FFFFFF;
	border-radius: 14px;
	padding: 3.2rem 2.6rem;
	box-shadow: 0 9px 32px rgba(45, 24, 16, 0.06);
	position: relative;
	overflow: hidden;
	transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 纯CSS装饰顶条+角标 */
.ctcc-practice-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #C41E3A, #FF6F61);
}

.ctcc-practice-card:nth-child(2)::before {
	background: linear-gradient(90deg, #1A7F7F, #4ECDC4);
}

.ctcc-practice-card:nth-child(3)::before {
	background: linear-gradient(90deg, #FFD700, #FFA500);
}

.ctcc-practice-card:nth-child(4)::before {
	background: linear-gradient(90deg, #8B4513, #D2691E);
}

.ctcc-practice-card:nth-child(5)::before {
	background: linear-gradient(90deg, #4B0082, #9370DB);
}

.ctcc-practice-card:hover {
	transform: translateY(-18px) scale(1.03);
	box-shadow: 0 24px 55px rgba(45, 24, 16, 0.1);
}

.ctcc-practice-card h3 {
	font-size: 1.7rem;
	color: #2D1810;
	margin-bottom: 1.4rem;
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

/* 纯CSS符号替代图标 */
.ctcc-practice-card h3::before {
	content: "✦";
	font-size: 2.2rem;
	color: inherit;
}

.ctcc-practice-card p {
	color: #5A3A2E;
	font-size: 1.08rem;
	line-height: 1.95;
}

.ctcc-practice-card p strong {
	color: #C41E3A;
	font-weight: 700;
}


/* 行动呼吁区 - 全宽渐变块+醒目CTA */
.ctcc-cta {
	max-width: 1200px;
	margin: 8rem auto;
	padding: 0 2rem;
	text-align: center;
}

.ctcc-cta h2 {
	font-size: 2.7rem;
	color: #2D1810;
	margin-bottom: 2rem;
}

.ctcc-cta p {
	font-size: 1.28rem;
	color: #5A3A2E;
	max-width: 1000px;
	margin: 0 auto 3.5rem;
	line-height: 2.05;
}

.ctcc-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.ctcc-btn {
	display: inline-block;
	padding: 1.3rem 3.8rem;
	background: linear-gradient(90deg, #C41E3A, #FF6F61);
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 55px;
	font-size: 1.22rem;
	font-weight: 700;
	transition: all 0.45s ease;
	box-shadow: 0 7px 22px rgba(196, 30, 58, 0.32);
}

.ctcc-btn:nth-child(2) {
	background: linear-gradient(90deg, #1A7F7F, #4ECDC4);
	box-shadow: 0 7px 22px rgba(26, 127, 127, 0.32);
}

.ctcc-btn:hover {
	color: #FFFFFF;
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(196, 30, 58, 0.42);
	background: linear-gradient(90deg, #A01830, #E65A50);
}

.ctcc-btn:nth-child(2):hover {
	color: #FFFFFF;
	box-shadow: 0 12px 32px rgba(26, 127, 127, 0.42);
	background: linear-gradient(90deg, #146666, #3BB8B0);
}

/* 响应式媒体查询 - 全设备适配 */
@media (max-width: 1024px) {
	.ctcc-hero h1 {
		font-size: 3.2rem;
	}

	.ctcc-concept-grid {
		align-items: stretch;
	}

	.ctcc-concept-card {
		transform: translateY(0) !important;
	}
}

@media (max-width: 768px) {
	.ctcc-hero {
		padding: 6.5rem 2rem 5.5rem;
		clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
	}

	.ctcc-hero h1 {
		font-size: 2.6rem;
		letter-spacing: 2px;
	}

	.ctcc-hero p {
		font-size: 1.15rem;
	}

	.ctcc-concept {
		margin: -3.5rem auto 6rem;
	}

	.ctcc-concept-card {
		padding: 2.6rem 2.2rem;
	}

	.ctcc-concept-card h2 {
		font-size: 1.85rem;
	}

	.ctcc-practices .ctcc-section-title {
		font-size: 2.35rem;
	}

	.ctcc-practices-grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}

	.ctcc-practice-card {
		padding: 2.8rem 2.3rem;
	}

	.ctcc-impact {
		padding: 6rem 2rem;
		clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
	}

	.ctcc-impact-container {
		flex-direction: column;
		gap: 3.5rem;
	}

	.ctcc-impact-item h2 {
		font-size: 2.15rem;
	}

	.ctcc-cta h2 {
		font-size: 2.2rem;
	}

	.ctcc-cta p {
		font-size: 1.15rem;
	}

	.ctcc-btn {
		padding: 1.1rem 3.2rem;
		font-size: 1.12rem;
	}
}

@media (max-width: 425px) {
	.ctcc-hero h1 {
		font-size: 2.1rem;
	}

	.ctcc-practice-card h3 {
		font-size: 1.5rem;
	}

	.ctcc-cta h2 {
		font-size: 1.9rem;
	}

	.ctcc-btn {
		padding: 1rem 2.8rem;
		font-size: 1.05rem;
	}
}

/* 地域推广服务 */
/* 英雄区 - 双波浪斜切+三色流动光效 */
.dytgf-hero {
	position: relative;
	padding: 10rem 0rem;
	background: linear-gradient(135deg, #D4A574 0%, #2E8B57 50%, #CD5C5C 100%);
	color: #FFFFFF;
	clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
	overflow: hidden;
}

.dytgf-hero .dytgf-container {
	max-width: 1150px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.dytgf-hero h1 {
	font-size: 4rem;
	margin-bottom: 2.2rem;
	letter-spacing: 4.5px;
	font-weight: 800;
}


.dytgf-hero p {
	font-size: 1.2rem;
	max-width: 900px;
	opacity: 0.97;
	line-height: 2.05;
}

/* 核心理念区 - 三列悬浮错位卡片 */
.dytgf-concept {
	max-width: 1200px;
	margin: -6rem auto 8.5rem;
	padding: 0 2rem;
	position: relative;
	z-index: 3;
}

.dytgf-concept-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2.8rem;
	align-items: flex-end;
}

.dytgf-concept-card {
	flex: 1;
	min-width: 310px;
	background: #FFFFFF;
	padding: 3.4rem 2.9rem;
	border-radius: 20px;
	box-shadow: 0 16px 50px rgba(212, 165, 116, 0.14);
	transition: all 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.dytgf-concept-card:nth-child(1) {
	transform: translateY(30px);
}

.dytgf-concept-card:nth-child(2) {
	transform: translateY(15px);
}

.dytgf-concept-card:hover {
	transform: translateY(0) scale(1.025);
	box-shadow: 0 24px 65px rgba(212, 165, 116, 0.2);
}

.dytgf-concept-card h2 {
	font-size: 2rem;
	color: #D4A574;
	margin-bottom: 1.7rem;
	border-left: 8px solid #FFD700;
	padding-left: 1.4rem;
}

.dytgf-concept-card:nth-child(2) h2 {
	color: #2E8B57;
	border-left-color: #98FB98;
}

.dytgf-concept-card:nth-child(3) h2 {
	color: #CD5C5C;
	border-left-color: #FFB6C1;
}

.dytgf-concept-card p {
	font-size: 1.1rem;
	color: #5A3A2E;
	line-height: 2.05;
}

/* 核心服务模块 - 非对称彩色阶梯式网格 */
.dytgf-services {
	padding: 1.5rem 2rem 10.5rem;
	background: linear-gradient(180deg, #FFFFFF 0%, #F5F0EB 100%);
}

.dytgf-services .dytgf-section-title {
	max-width: 1200px;
	margin: 0 auto 6rem;
	text-align: center;
	font-size: 3rem;
	color: #2D1810;
	position: relative;
}

.dytgf-services .dytgf-section-title::after {
	content: "";
	width: 120px;
	height: 7px;
	background: linear-gradient(90deg, #D4A574, #2E8B57, #CD5C5C);
	position: absolute;
	bottom: -22px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5px;
}

.dytgf-services-grid {
	max-width: 1150px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 2rem;
}

.dytgf-service-card {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 3.4rem 2.7rem;
	box-shadow: 0 10px 35px rgba(45, 24, 16, 0.07);
	position: relative;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 纯CSS地域感彩色顶条+角标 */
.dytgf-service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 9px;
	background: linear-gradient(90deg, #D4A574, #E6C9A8);
}

.dytgf-service-card:nth-child(2)::before {
	background: linear-gradient(90deg, #2E8B57, #98FB98);
}

.dytgf-service-card:nth-child(3)::before {
	background: linear-gradient(90deg, #CD5C5C, #FFB6C1);
}

.dytgf-service-card:nth-child(4)::before {
	background: linear-gradient(90deg, #4682B4, #87CEEB);
}

.dytgf-service-card:nth-child(5)::before {
	background: linear-gradient(90deg, #8B4513, #D2691E);
}

.dytgf-service-card:nth-child(6)::before {
	background: linear-gradient(90deg, #696969, #A9A9A9);
}


.dytgf-service-card:hover {
	transform: translateY(-20px) scale(1.035);
	box-shadow: 0 26px 60px rgba(45, 24, 16, 0.12);
}

.dytgf-service-card h3 {
	font-size: 1.75rem;
	color: #2D1810;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

/* 纯CSS地域符号替代图标 */
.dytgf-service-card h3::before {
	content: "✦";
	font-size: 2.3rem;
	color: inherit;
}

.dytgf-service-card:nth-child(2) h3::before {
	content: "✦";
}

.dytgf-service-card:nth-child(3) h3::before {
	content: "✦";
}

.dytgf-service-card:nth-child(4) h3::before {
	content: "✦";
}

.dytgf-service-card:nth-child(5) h3::before {
	content: "✦";
}

.dytgf-service-card:nth-child(6) h3::before {
	content: "✦";
}

.dytgf-service-card p {
	color: #5A3A2E;
	font-size: 1.1rem;
	line-height: 2;
}

.dytgf-service-card p strong {
	color: #D4A574;
	font-weight: 700;
}

.dytgf-service-card:nth-child(2) p strong {
	color: #2E8B57;
}

.dytgf-service-card:nth-child(3) p strong {
	color: #CD5C5C;
}

.dytgf-service-card:nth-child(4) p strong {
	color: #4682B4;
}

.dytgf-service-card:nth-child(5) p strong {
	color: #8B4513;
}

.dytgf-service-card:nth-child(6) p strong {
	color: #696969;
}

/* 行动呼吁区 - 全宽三色渐变块+双醒目CTA */
.dytgf-cta {
	max-width: 1200px;
	margin: 8.5rem auto;
	padding: 0 1rem;
	text-align: center;
}

.dytgf-cta h2 {
	font-size: 2.8rem;
	color: #2D1810;
	margin-bottom: 2.2rem;
}

.dytgf-cta p {
	font-size: 1.3rem;
	color: #5A3A2E;
	max-width: 1000px;
	margin: 0 auto 3.8rem;
	line-height: 2.1;
}

.dytgf-btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: 2.2rem;
	justify-content: center;
}

.dytgf-btn {
	display: inline-block;
	padding: 1.4rem 4rem;
	background: linear-gradient(90deg, #D4A574, #E6C9A8);
	color: #2D1810;
	text-decoration: none;
	border-radius: 60px;
	font-size: 1.25rem;
	font-weight: 700;
	transition: all 0.5s ease;
	box-shadow: 0 8px 25px rgba(212, 165, 116, 0.35);
}

.dytgf-btn:nth-child(2) {
	background: linear-gradient(90deg, #2E8B57, #98FB98);
	box-shadow: 0 8px 25px rgba(46, 139, 87, 0.35);
}

.dytgf-btn:hover {
	color: #ffffff;
	transform: translateY(-7px);
	box-shadow: 0 14px 35px rgba(212, 165, 116, 0.45);
	background: linear-gradient(90deg, #B8926A, #D4A574);
}

.dytgf-btn:nth-child(2):hover {
	color: #ffffff;
	box-shadow: 0 14px 35px rgba(46, 139, 87, 0.45);
	background: linear-gradient(90deg, #267A4A, #2E8B57);
}

/* 响应式媒体查询 - 全设备适配 */
@media (max-width: 1024px) {
	.dytgf-hero h1 {
		font-size: 3.4rem;
	}

	.dytgf-concept-grid {
		align-items: stretch;
	}

	.dytgf-concept-card {
		transform: translateY(0) !important;
	}
}

@media (max-width: 768px) {
	.dytgf-hero {
		padding: 7rem 2rem 6rem;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
	}

	.dytgf-hero h1 {
		font-size: 2.7rem;
		letter-spacing: 2.5px;
	}

	.dytgf-hero p {
		font-size: 1.18rem;
	}

	.dytgf-concept {
		margin: -4rem auto 6.5rem;
	}

	.dytgf-concept-card {
		padding: 2.8rem 2.4rem;
	}

	.dytgf-concept-card h2 {
		font-size: 1.9rem;
	}

	.dytgf-services .dytgf-section-title {
		font-size: 2.45rem;
	}

	.dytgf-services-grid {
		grid-template-columns: 1fr;
		gap: 2.6rem;
	}

	.dytgf-service-card {
		padding: 3rem 2.5rem;
	}

	.dytgf-impact {
		padding: 6.5rem 2rem;
		clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
	}

	.dytgf-impact-container {
		flex-direction: column;
		gap: 4rem;
	}

	.dytgf-impact-item h2 {
		font-size: 2.25rem;
	}

	.dytgf-cta h2 {
		font-size: 2.3rem;
	}

	.dytgf-cta p {
		font-size: 1.18rem;
	}

	.dytgf-btn {
		padding: 1.2rem 3.4rem;
		font-size: 1.15rem;
	}
}

@media (max-width: 425px) {
	.dytgf-hero h1 {
		font-size: 2.2rem;
	}

	.dytgf-service-card h3 {
		font-size: 1.55rem;
	}

	.dytgf-cta h2 {
		font-size: 2rem;
	}

	.dytgf-btn {
		padding: 1.1rem 3rem;
		font-size: 1.08rem;
		width: 100%;
	}
}

/* 投资者关系 */
/* 通用区块基础样式 */
.tzgx-section {
	padding-top: 100px;
	max-width: 1200px;
	margin: 0 auto;
	opacity: 0;
	transform: translateY(35px) scale(0.98);
	transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.tzgx-section.animate {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.tzgx-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.tzgx-section-title {
	font-size: 38px;
	font-weight: 700;
	color: #E67E22;
	margin-bottom: 16px;
	line-height: 1.3;
}

.tzgx-section-desc {
	font-size: 18px;
	color: #666666;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

/* 时代机遇板块样式 */
.tzgx-chance-section {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 60px 40px;
	box-shadow: 0 4px 20px rgba(230, 126, 34, 0.06);
	margin-bottom: 80px;
	position: relative;
	overflow: hidden;
}



@keyframes tzgxGradientMove {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: 200% 50%;
	}
}

.tzgx-chance-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	align-items: center;
}

.tzgx-chance-item {
	padding: 20px 0;
	transition: transform 0.3s ease;
}

.tzgx-chance-item:hover {
	transform: translateX(8px);
}

.tzgx-chance-item h3 {
	font-size: 24px;
	font-weight: 600;
	color: #E67E22;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tzgx-chance-item h3::before {
	content: '';
	width: 6px;
	height: 24px;
	background: linear-gradient(180deg, #E67E22 0%, #F39C12 100%);
	border-radius: 3px;
	transition: height 0.3s ease;
}

.tzgx-chance-item:hover h3::before {
	height: 30px;
}

.tzgx-chance-item p {
	font-size: 16px;
	color: #555555;
	line-height: 1.8;
	padding-left: 16px;
}

/* 核心价值卡片网格样式 */
.tzgx-value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.tzgx-value-card {
	padding: 40px 32px;
	border-radius: 16px;
	background-color: #ffffff;
	border: 1px solid #FDE8D5;
	transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.tzgx-value-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #E67E22 0%, #F39C12 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.tzgx-value-card::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.tzgx-value-card:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: 0 16px 40px rgba(230, 126, 34, 0.12);
	border-color: transparent;
	background-color: #FFFBF7;
}

.tzgx-value-card:hover::before {
	transform: scaleX(1);
}

.tzgx-value-card:hover::after {
	bottom: -15px;
	right: -15px;
	opacity: 1;
}

.tzgx-card-title {
	font-size: 24px;
	font-weight: 700;
	color: #E67E22;
	margin-bottom: 16px;
	transition: color 0.3s ease;
}

.tzgx-value-card:hover .tzgx-card-title {
	color: #D35400;
}

.tzgx-card-desc {
	font-size: 16px;
	color: #555555;
	line-height: 1.8;
}

/* 未来商业规划板块 */
.tzgx-plan-timeline {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
	position: relative;
	z-index: 2;
}

.tzgx-plan-item {
	padding: 30px 24px;
	background-color: #ffffff;
	border-radius: 12px;
	border-left: 5px solid #E67E22;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.tzgx-plan-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, rgba(230, 126, 34, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
	transition: width 0.4s ease;
}

.tzgx-plan-item:hover {
	box-shadow: 0 12px 30px rgba(230, 126, 34, 0.1);
	transform: translateX(8px) translateY(-3px);
	border-left-width: 8px;
}

.tzgx-plan-item:hover::before {
	width: 100%;
}

.tzgx-plan-term {
	font-size: 18px;
	font-weight: 700;
	color: #E67E22;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.tzgx-plan-desc {
	font-size: 15px;
	color: #555555;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}

/* 投资者保障体系样式 */
.tzgx-commitment-content {
	margin-top: 100px;
	width: 100%;
	background: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
	padding: 60px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	animation: tzgxBreathe 6s infinite ease-in-out;
}

.tzgx-commitment-content::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	animation: tzgxFloat 12s infinite ease-in-out;
}

@keyframes tzgxFloat {

	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-20px, 20px);
	}
}

.tzgx-commitment-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 40px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.tzgx-commitment-grid {
	max-width: 1200px;
	margin: 0px auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	position: relative;
	z-index: 2;
}

.tzgx-commitment-item {
	padding: 20px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.08);
	transition: all 0.35s ease;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.tzgx-commitment-item:hover {
	background-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.3);
}

.tzgx-commitment-item h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
}

.tzgx-commitment-item p {
	font-size: 15px;
	line-height: 1.8;
	opacity: 0.95;
}

/* 社会价值区块样式 */
.tzgx-social-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.tzgx-social-card {
	padding: 32px;
	border-radius: 12px;
	background-color: #ffffff;
	border: 1px solid #FDE8D5;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.tzgx-social-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, rgba(230, 126, 34, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
	transition: height 0.4s ease;
}

.tzgx-social-card:hover {
	background-color: #FFFBF7;
	transform: scale(1.03) translateY(-5px);
	box-shadow: 0 12px 30px rgba(230, 126, 34, 0.1);
	border-color: transparent;
}

.tzgx-social-card:hover::before {
	height: 100%;
}

.tzgx-social-card h4 {
	font-size: 22px;
	font-weight: 700;
	color: #E67E22;
	margin-bottom: 12px;
	position: relative;
	z-index: 2;
}

.tzgx-social-card p {
	font-size: 16px;
	color: #555555;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}

/* CTA邀约区块样式 */
.tzgx-cta-section {
	background: linear-gradient(135deg, #FFF9F5 0%, #FDF2E9 100%);
	padding: 200px 0px;
	text-align: center;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.tzgx-cta-section::before {
	content: '';
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 800px;
	background: radial-gradient(circle, rgba(230, 126, 34, 0.04) 0%, rgba(255, 249, 245, 0) 70%);
	border-radius: 50%;
}

.tzgx-cta-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.tzgx-cta-title {
	font-size: 36px;
	font-weight: 700;
	color: #E67E22;
	margin-bottom: 20px;
	line-height: 1.3;
}

.tzgx-cta-desc {
	font-size: 18px;
	color: #666666;
	margin-bottom: 40px;
	line-height: 1.8;
}

.tzgx-btn {
	display: inline-block;
	padding: 14px 40px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.tzgx-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background-color: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.tzgx-btn:hover::before {
	width: 300px;
	height: 300px;
}

.tzgx-btn-primary {
	background: linear-gradient(90deg, #E67E22 0%, #F39C12 100%);
	color: #ffffff;
	box-shadow: 0 10px 20px rgba(230, 126, 34, 0.25);
}

.tzgx-btn-primary:hover {
	color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 16px 35px rgba(230, 126, 34, 0.3);
}

.tzgx-btn-outline {
	background-color: transparent;
	color: #E67E22;
	border: 2px solid #E67E22;
}

.tzgx-btn-outline:hover {
	background-color: #E67E22;
	color: #ffffff;
	transform: translateY(-4px);
	box-shadow: 0 12px 25px rgba(230, 126, 34, 0.2);
}

.tzgx-btn span {
	position: relative;
	z-index: 2;
}


/* 响应式适配 - 平板端 */
@media (max-width: 992px) {
	.tzgx-value-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tzgx-plan-timeline {
		grid-template-columns: 1fr;
	}

	.tzgx-chance-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

/* 响应式适配 - 手机端 */
@media (max-width: 768px) {
	.tzgx-section {
		padding: 60px 24px;
	}

	.tzgx-section-title {
		font-size: 30px;
	}

	.tzgx-section-desc {
		font-size: 16px;
	}

	.tzgx-section-header {
		margin-bottom: 40px;
	}

	.tzgx-value-grid {
		grid-template-columns: 1fr;
	}

	.tzgx-chance-section,
	.tzgx-plan-section {
		padding: 40px 24px;
	}

	.tzgx-commitment-content {
		padding: 40px 24px;
	}

	.tzgx-commitment-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.tzgx-commitment-title {
		font-size: 26px;
	}

	.tzgx-social-grid {
		grid-template-columns: 1fr;
	}

	.tzgx-cta-title {
		font-size: 28px;
	}

	.tzgx-cta-desc {
		font-size: 16px;
	}
}

/* 供应商 */
/* 模拟宽幅背景（纯CSS渐变，无图片依赖） */
.gys-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f0f7f4 0%, #f0f7f4 40%, #f0f7f4 100%);
	z-index: 1;
}

.gysq-concept {
	padding: 120px 5%;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
	position: relative;
	overflow: hidden;
}

/* 背景微妙装饰 纯CSS无图片 不影响核心内容 */
.gysq-concept::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -5%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(19, 119, 82, 0.03) 0%, transparent 70%);
	z-index: 0;
}

.gysq-concept::after {
	content: '';
	position: absolute;
	bottom: -15%;
	left: -5%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(67, 170, 139, 0.03) 0%, transparent 70%);
	z-index: 0;
}

.gysq-concept-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 80px;
	align-items: center;
	position: relative;
	z-index: 1;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gysq-concept-wrapper.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.gysq-concept-label {
	display: inline-block;
	padding: 6px 20px;
	background-color: #e8f5f0;
	color: #38b000;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.gysq-concept-title {
	font-size: 44px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.25;
	margin-bottom: 28px;
	letter-spacing: 0.5px;
}

.gysq-concept-title span {
	color: #38b000;
	position: relative;
}

.gysq-concept-title span::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 0;
	width: 100%;
	height: 8px;
	background-color: rgba(19, 119, 82, 0.1);
	z-index: -1;
	border-radius: 4px;
}

.gysq-concept-desc {
	font-size: 17px;
	color: #444444;
	line-height: 1.8;
	margin-bottom: 16px;
}

.gysq-concept-desc:last-of-type {
	margin-bottom: 36px;
}

.gysq-concept-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gysq-concept-tag {
	display: inline-block;
	padding: 10px 26px;
	background-color: #ffffff;
	color: #38b000;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	border: 1px solid #e0eee8;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gysq-concept-tag:hover {
	background-color: #38b000;
	color: #ffffff;
	border-color: #38b000;
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(19, 119, 82, 0.15);
}

.gysq-concept-animation {
	width: 100%;
	height: 420px;
	border-radius: 20px;
	background: linear-gradient(135deg, #38b000 0%, #38b000 50%, #38b000 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(19, 119, 82, 0.12);
	transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gysq-concept-animation:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 50px rgba(19, 119, 82, 0.18);
}

/* 多层动画元素 纯CSS无图片 */
.gysq-concept-animation::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
	animation: gysqConceptFloat 12s infinite ease-in-out;
	z-index: 1;
}

.gysq-concept-animation::after {
	content: '';
	position: absolute;
	width: 180%;
	height: 180%;
	background: radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	animation: gysqConceptFloatReverse 10s infinite ease-in-out;
	z-index: 1;
}

.gysq-concept-animation-decor {
	position: absolute;
	width: 120px;
	height: 120px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	animation: gysqConceptRotate 15s infinite linear;
	z-index: 1;
}

.gysq-concept-animation-decor:nth-child(2) {
	width: 200px;
	height: 200px;
	animation-duration: 20s;
	animation-direction: reverse;
}

.gysq-concept-animation-text {
	font-size: 38px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	z-index: 2;
	letter-spacing: 3px;
	line-height: 1.4;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.gysq-concept-animation:hover .gysq-concept-animation-text {
	transform: scale(1.05);
	letter-spacing: 4px;
}

/* 动画关键帧 */
@keyframes gysqConceptFloat {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(-5%, -5%) scale(1.1);
	}
}

@keyframes gysqConceptFloatReverse {

	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}

	50% {
		transform: translate(5%, 5%) scale(1.05);
	}
}

@keyframes gysqConceptRotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* 合作优势板块 - 完全保留原有代码 */
.gysq-advantage {
	padding: 100px 5%;
	background-color: #f0f7f4;
}

.gysq-section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.gysq-section-title {
	font-size: 40px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
}

.gysq-section-title span {
	color: #38b000;
}

.gysq-section-desc {
	font-size: 18px;
	color: #666666;
	line-height: 1.8;
}

.gysq-advantage-list {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.gysq-advantage-item {
	background-color: #ffffff;
	padding: 40px 30px;
	border-radius: 12px;
	border: 1px solid #e5e5e5;
	transition: all 0.4s ease;
	opacity: 0;
	transform: translateY(30px);
}

.gysq-advantage-item.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.gysq-advantage-item:hover {
	border-color: #38b000;
	transform: translateY(-8px);
	box-shadow: 0 15px 30px rgba(19, 119, 82, 0.1);
	background-color: #f8fbf9;
}

.gysq-advantage-num {
	font-size: 48px;
	font-weight: 700;
	color: #38b000;
	line-height: 1;
	margin-bottom: 20px;
	opacity: 0.2;
	transition: all 0.3s ease;
}

.gysq-advantage-item:hover .gysq-advantage-num {
	opacity: 1;
}

.gysq-advantage-item-title {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
	transition: all 0.3s ease;
}

.gysq-advantage-item:hover .gysq-advantage-item-title {
	color: #38b000;
}

.gysq-advantage-item-desc {
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
}

/* 合作流程板块 - 完全保留原有代码 */
.gysq-process {
	padding: 100px 5%;
	background-color: #ffffff;
}

.gysq-process-list {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.gysq-process-list::before {
	content: '';
	position: absolute;
	top: 50px;
	left: 60px;
	right: 60px;
	height: 2px;
	background-color: #e5e5e5;
	z-index: 1;
}

.gysq-process-item {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 20%;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.4s ease;
}

.gysq-process-item.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.gysq-process-step {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 2px solid #e5e5e5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
	font-size: 20px;
	font-weight: 700;
	color: #666666;
	transition: all 0.4s ease;
}

.gysq-process-item:hover .gysq-process-step {
	background-color: #38b000;
	border-color: #38b000;
	color: #ffffff;
	transform: scale(1.1);
	box-shadow: 0 10px 20px rgba(19, 119, 82, 0.2);
}

.gysq-process-item.active .gysq-process-step {
	background-color: #38b000;
	border-color: #38b000;
	color: #ffffff;
}

.gysq-process-item-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.gysq-process-item-desc {
	font-size: 14px;
	color: #666666;
	line-height: 1.6;
}

/* 合作申请板块 - 完全保留原有代码 */
.gysq-apply {
	padding: 100px 5%;
	background: linear-gradient(135deg, #38b000 0%, #38b000 100%);
	text-align: center;
}

.gysq-apply-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.gysq-apply-title {
	font-size: 40px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 20px;
}

.gysq-apply-desc {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 40px;
}

.gysq-apply-btn {
	display: inline-block;
	padding: 18px 60px;
	background-color: #ffffff;
	color: #38b000;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 18px;
	transition: all 0.3s ease;
	border: 2px solid #ffffff;
}

.gysq-apply-btn:hover {
	background-color: transparent;
	color: #ffffff;
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gysq-apply-btn:active {
	transform: translateY(0);
}


/* 响应式适配 - 平板端 仅优化本版块相关，其余完全保留 */
@media (max-width: 1199px) {

	/* 本版块平板适配 */
	.gysq-concept {
		padding: 80px 5%;
	}

	.gysq-concept-wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.gysq-concept-title {
		font-size: 36px;
	}

	.gysq-concept-animation {
		height: 350px;
	}

	.gysq-concept-animation-text {
		font-size: 32px;
	}

	/* 其余原有代码完全保留 */
	.gysq-concept-title {
		font-size: 32px;
	}

	.gysq-concept-animation-text {
		font-size: 28px;
	}

	.gysq-advantage-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.gysq-section-title {
		font-size: 32px;
	}

	.gysq-process-list {
		flex-wrap: wrap;
		gap: 40px 0;
	}

	.gysq-process-list::before {
		display: none;
	}

	.gysq-process-item {
		width: 33.333%;
	}
}

/* 响应式适配 - 移动端 仅优化本版块相关，其余完全保留 */
@media (max-width: 767px) {

	/* 本版块移动端适配 */
	.gysq-concept {
		padding: 60px 5%;
	}

	.gysq-concept-wrapper {
		gap: 40px;
	}

	.gysq-concept-title {
		font-size: 30px;
		margin-bottom: 20px;
	}

	.gysq-concept-desc {
		font-size: 16px;
	}

	.gysq-concept-desc:last-of-type {
		margin-bottom: 28px;
	}

	.gysq-concept-tags {
		gap: 10px;
	}

	.gysq-concept-tag {
		padding: 8px 20px;
		font-size: 13px;
	}

	.gysq-concept-animation {
		height: 280px;
		border-radius: 16px;
	}

	.gysq-concept-animation-text {
		font-size: 26px;
		letter-spacing: 2px;
	}

	/* 其余原有代码完全保留 */
	.gysq-advantage {
		padding: 60px 5%;
	}

	.gysq-section-header {
		margin-bottom: 40px;
	}

	.gysq-section-title {
		font-size: 28px;
	}

	.gysq-section-desc {
		font-size: 16px;
	}

	.gysq-advantage-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gysq-advantage-item {
		padding: 30px 24px;
	}

	.gysq-process {
		padding: 60px 5%;
	}

	.gysq-process-item {
		width: 100%;
		display: flex;
		align-items: center;
		text-align: left;
		gap: 20px;
	}

	.gysq-process-step {
		width: 60px;
		height: 60px;
		margin: 0;
		font-size: 16px;
		flex-shrink: 0;
	}

	.gysq-apply {
		padding: 60px 5%;
	}

	.gysq-apply-title {
		font-size: 28px;
	}

	.gysq-apply-desc {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.gysq-apply-btn {
		padding: 14px 40px;
		font-size: 16px;
	}
}


/* 关于我们 */
:root {
	--gywm-color-primary: #10B981;
	/* 活力青柠绿 */
	--gywm-color-secondary: #34D399;
	/* 浅薄荷绿 */
	--gywm-color-accent: #F59E0B;
	/* 活力橙点缀 */
	--gywm-color-bg: #F0FDF4;
	/* 极淡绿背景 */
	--gywm-color-white: #FFFFFF;
	--gywm-color-text-dark: #064E3B;
	--gywm-color-text-gray: #64748B;
}

/* --- 动态背景特效 --- */
.gywm-bg-blob {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

.gywm-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.6;
	animation: gywm-float 18s infinite ease-in-out alternate;
}

.gywm-blob-1 {
	width: 600px;
	height: 600px;
	background: var(--gywm-color-secondary);
	top: -100px;
	left: -100px;
}

.gywm-blob-2 {
	width: 500px;
	height: 500px;
	background: #A7F3D0;
	bottom: 10%;
	right: 10%;
	animation-delay: -5s;
}

.gywm-blob-3 {
	width: 400px;
	height: 400px;
	background: #FDE68A;
	top: 40%;
	left: 50%;
	animation-delay: -10s;
}

@keyframes gywm-float {
	0% {
		transform: translate(0, 0) scale(1);
	}

	100% {
		transform: translate(50px, 100px) scale(1.1);
	}
}

/* --- 通用滚动动画 --- */
.gywm-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gywm-reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* --- 磁悬浮按钮通用样式 --- */
.gywm-btn-magnetic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	background: var(--gywm-color-text-dark);
	color: var(--gywm-color-white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 1px;
	transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(6, 78, 59, 0.2);
}

.gywm-btn-magnetic:hover {
	color: #ffffff;
	box-shadow: 0 15px 40px rgba(6, 78, 59, 0.3);
	background: var(--gywm-color-primary);
}

/* --- 板块通用标题样式 --- */
.gywm-section {
	padding: 100px 0%;
	max-width: 1150px;
	margin: 0 auto;
}

.gywm-section-header {
	margin-bottom: 60px;
}

.gywm-section-label {
	color: var(--gywm-color-primary);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.gywm-section-title {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: var(--gywm-color-text-dark);
	line-height: 1.2;
}

/* --- Hero主视觉板块 --- */
.gywm-hero {
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	position: relative;
}

.gywm-hero-badge {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	color: var(--gywm-color-primary);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.gywm-hero-title {
	font-size: clamp(40px, 8vw, 80px);
	font-weight: 800;
	color: var(--gywm-color-text-dark);
	margin-bottom: 10px;
	letter-spacing: -2px;
}

.gywm-hero-title span {
	background: linear-gradient(135deg, var(--gywm-color-primary), #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gywm-hero-subtitle {
	font-size: clamp(16px, 3vw, 22px);
	color: var(--gywm-color-text-gray);
	max-width: 600px;
	margin-bottom: 40px;
}

/* --- 公司简介板块 --- */
.gywm-company-intro {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	border-radius: 24px;
	padding: 60px 50px;
	margin-bottom: 80px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 10px 40px rgba(16, 185, 129, 0.08);
}

.gywm-intro-text {
	font-size: 17px;
	color: var(--gywm-color-text-gray);
	line-height: 2;
	margin-bottom: 30px;
	text-align: justify;
}

.gywm-intro-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.gywm-intro-item {
	padding: 25px 20px;
	border-left: 3px solid var(--gywm-color-primary);
	background: rgba(16, 185, 129, 0.03);
	border-radius: 0 8px 8px 0;
	transition: all 0.3s ease;
}

.gywm-intro-item:hover {
	transform: translateX(5px);
	background: rgba(16, 185, 129, 0.08);
}

.gywm-intro-item-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--gywm-color-text-dark);
	margin-bottom: 8px;
}

.gywm-intro-item-desc {
	font-size: 15px;
	color: var(--gywm-color-text-gray);
}

/* --- 品牌理念板块 --- */
.gywm-about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.gywm-about-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 40px 35px;
	border-radius: 24px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.gywm-about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--gywm-color-primary), var(--gywm-color-secondary));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.gywm-about-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
	border-color: var(--gywm-color-secondary);
}

.gywm-about-card:hover::before {
	transform: scaleX(1);
}

.gywm-card-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--gywm-color-text-dark);
}

.gywm-card-desc {
	color: var(--gywm-color-text-gray);
	font-size: 15px;
	line-height: 1.8;
}

/* --- 我们的初心 手风琴板块 --- */
.gywm-accordion-wrapper {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gywm-accordion-item {
	border-bottom: 1px solid #ECFDF5;
	transition: background 0.3s;
}

.gywm-accordion-item:last-child {
	border-bottom: none;
}

.gywm-accordion-header {
	width: 100%;
	padding: 30px;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	color: var(--gywm-color-text-dark);
	transition: all 0.3s;
}

.gywm-accordion-header:hover {
	color: var(--gywm-color-primary);
	background: rgba(16, 185, 129, 0.03);
}

.gywm-accordion-item.active .gywm-accordion-header {
	color: var(--gywm-color-primary);
	background: rgba(16, 185, 129, 0.06);
}

.gywm-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	padding: 0 30px;
}

.gywm-accordion-item.active .gywm-accordion-content {
	max-height: 300px;
	padding-bottom: 30px;
}

.gywm-accordion-body {
	color: var(--gywm-color-text-gray);
	font-size: 16px;
	line-height: 1.8;
	padding-top: 10px;
	border-left: 3px solid var(--gywm-color-secondary);
	padding-left: 20px;
	margin-top: 30px
}

/* --- 当下践行 3D卡片板块 --- */
.gywm-action-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

@media (max-width: 768px) {
	.gywm-action-grid {
		grid-template-columns: 1fr;
	}
}

.gywm-action-card {
	background: var(--gywm-color-white);
	border-radius: 20px;
	padding: 50px 40px;
	position: relative;
	cursor: pointer;
	transform-style: preserve-3d;
	transition: transform 0.1s;
	border: 1px solid transparent;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.gywm-action-card:hover {
	border-color: #D1FAE5;
	box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
}

.gywm-action-title {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 15px;
	color: var(--gywm-color-text-dark);
}

.gywm-action-desc {
	color: var(--gywm-color-text-gray);
	font-size: 16px;
	line-height: 1.8;
}

/* --- 品牌愿景 收尾板块 --- */
.gywm-vision {
	background: linear-gradient(135deg, var(--gywm-color-primary) 0%, #059669 100%);
	padding: 80px 50px;
	text-align: center;
	margin: 100px auto;
	margin-bottom: 0px;
	position: relative;
	overflow: hidden;
}

.gywm-vision::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: 0.5;
}

.gywm-vision-content {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
}

.gywm-vision-title {
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 800;
	color: var(--gywm-color-white);
	margin-bottom: 25px;
	line-height: 1.3;
}

.gywm-vision-text {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 2;
	margin-bottom: 40px;
}

.gywm-vision .gywm-btn-magnetic {
	background: var(--gywm-color-white);
	color: var(--gywm-color-primary);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gywm-vision .gywm-btn-magnetic:hover {
	background: var(--gywm-color-text-dark);
	color: var(--gywm-color-white);
	transform: scale(1.05);
}

/* --- 响应式适配 --- */
@media (max-width: 768px) {
	.gywm-company-intro {
		padding: 40px 25px;
	}

	.gywm-vision {
		padding: 60px 25px;
		margin: 60px 5%;
	}

	.gywm-section {
		padding: 60px 5%;
	}

	.gywm-accordion-header {
		font-size: 18px;
		padding: 25px 20px;
	}

	.gywm-accordion-body {
		padding-left: 15px;
	}
}


/* 代理商 */
/* 全局容器规范 */
.dlsq-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* 全局按钮规范 */
.dlsq-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 48px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dlsq-btn-primary {
	background-color: #165DFF;
	color: #FFFFFF;
	box-shadow: 0 4px 12px rgba(22, 93, 255, 0.25);
}

.dlsq-btn-primary:hover {
	color: #FFFFFF;
	background-color: #0E42C9;
	box-shadow: 0 8px 20px rgba(22, 93, 255, 0.35);
	transform: translateY(-2px);
}

.dlsq-btn-outline {
	background-color: transparent;
	color: #165DFF;
	border: 2px solid #165DFF;
}

.dlsq-btn-outline:hover {
	background-color: #165DFF;
	color: #FFFFFF;
	transform: translateY(-2px);
}

/* 滚动动画通用类 */
.dlsq-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dlsq-fade-in.dlsq-show {
	opacity: 1;
	transform: translateY(0);
}

/* 板块标题通用规范 */
.dlsq-section-header {
	text-align: center;
	margin-bottom: 64px;
}

.dlsq-section-tag {
	display: inline-block;
	padding: 6px 18px;
	background-color: #E8F3FF;
	color: #165DFF;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
}

.dlsq-section-title {
	font-size: 40px;
	font-weight: 700;
	color: #1D2129;
	line-height: 1.2;
	margin-bottom: 16px;
}

.dlsq-section-desc {
	font-size: 16px;
	color: #4E5969;
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.8;
}

/* ========== Hero首屏板块 ========== */
.dlsq-hero {
	width: 100%;
	min-height: 80vh;
	background: linear-gradient(135deg, #165DFF 0%, #0E42C9 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 100px 24px;
	position: relative;
	overflow: hidden;
}

/* 背景装饰（纯CSS无图片） */
.dlsq-hero-bg-decor {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
	z-index: 1;
}

.dlsq-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}

.dlsq-hero-subtitle {
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.dlsq-hero-title {
	font-size: 64px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -1px;
}

.dlsq-hero-desc {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
	max-width: 720px;
	margin: 0 auto 48px;
}

.dlsq-hero-btn-group {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.dlsq-hero-btn-group .dlsq-btn {
	min-width: 180px;
}

.dlsq-hero-btn-group .dlsq-btn-outline {
	color: #FFFFFF;
	border-color: #FFFFFF;
}

.dlsq-hero-btn-group .dlsq-btn-outline:hover {
	background-color: #FFFFFF;
	color: #165DFF;
}

/* ========== 为什么是现在（市场前景）板块 ========== */
.dlsq-market {
	padding: 120px 0;
	background-color: #FFFFFF;
}

.dlsq-market-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}

.dlsq-market-card {
	background-color: #FFFFFF;
	padding: 48px 32px;
	border-radius: 8px;
	border: 1px solid #F2F3F5;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dlsq-market-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(22, 93, 255, 0.12);
	border-color: #165DFF;
}

.dlsq-market-icon {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	background: linear-gradient(135deg, #165DFF 0%, #4080FF 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	color: #FFFFFF;
	margin-bottom: 24px;
}

.dlsq-market-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #1D2129;
	margin-bottom: 16px;
}

.dlsq-market-card p {
	font-size: 15px;
	color: #4E5969;
	line-height: 1.8;
	flex-grow: 1;
}

/* ========== 核心加盟优势板块 ========== */
.dlsq-advantage {
	padding: 120px 0;
	background-color: #F7F9FC;
}

.dlsq-advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.dlsq-advantage-item {
	background-color: #FFFFFF;
	padding: 40px 32px;
	border-radius: 8px;
	transition: all 0.3s ease;
	border-top: 3px solid transparent;
}

.dlsq-advantage-item:hover {
	border-top-color: #165DFF;
	box-shadow: 0 8px 24px rgba(22, 93, 255, 0.08);
	transform: translateY(-4px);
}

.dlsq-advantage-num {
	font-size: 48px;
	font-weight: 800;
	color: #E8F3FF;
	line-height: 1;
	margin-bottom: 16px;
	transition: color 0.3s ease;
}

.dlsq-advantage-item:hover .dlsq-advantage-num {
	color: #165DFF;
}

.dlsq-advantage-item h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1D2129;
	margin-bottom: 12px;
}

.dlsq-advantage-item p {
	font-size: 14px;
	color: #4E5969;
	line-height: 1.8;
}

/* ========== 总部全链路支持板块 ========== */
.dlsq-support {
	padding: 120px 0;
	background-color: #FFFFFF;
}

.dlsq-support-wrapper {
	display: grid;
	grid-template-columns: 380px 1fr;
	gap: 60px;
	align-items: center;
}

.dlsq-support-content {
	position: sticky;
	top: 80px;
}

.dlsq-support-content .dlsq-section-tag {
	margin-bottom: 20px;
}

.dlsq-support-content .dlsq-section-title {
	text-align: left;
	margin-bottom: 20px;
}

.dlsq-support-content .dlsq-section-desc {
	text-align: left;
	margin: 0 0 32px;
}

.dlsq-support-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.dlsq-support-card {
	background-color: #F7F9FC;
	padding: 32px 24px;
	border-radius: 8px;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.dlsq-support-card:hover {
	background-color: #FFFFFF;
	border-left-color: #165DFF;
	box-shadow: 0 8px 20px rgba(22, 93, 255, 0.08);
}

.dlsq-support-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: #1D2129;
	margin-bottom: 10px;
}

.dlsq-support-card p {
	font-size: 14px;
	color: #4E5969;
	line-height: 1.7;
}

/* ========== 合作流程板块 ========== */
.dlsq-process {
	padding: 120px 0;
	background: linear-gradient(135deg, #165DFF 0%, #0E42C9 100%);
}

.dlsq-process .dlsq-section-tag {
	background-color: rgba(255, 255, 255, 0.2);
	color: #FFFFFF;
}

.dlsq-process .dlsq-section-title {
	color: #FFFFFF;
}

.dlsq-process .dlsq-section-desc {
	color: rgba(255, 255, 255, 0.85);
}

.dlsq-process-track {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 80px;
}

/* 流程连接线 */
.dlsq-process-track::before {
	content: '';
	position: absolute;
	top: 13px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
	z-index: 1;
}

.dlsq-process-step {
	position: relative;
	width: 15%;
	text-align: center;
	z-index: 2;
	transition: all 0.3s ease;
}

.dlsq-step-dot {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	border: 4px solid #FFFFFF;
	margin: 0 auto 24px;
	transition: all 0.4s ease;
}

.dlsq-process-step:hover .dlsq-step-dot {
	background-color: #FFFFFF;
	transform: scale(1.3);
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

.dlsq-process-step h3 {
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.dlsq-process-step p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* ========== 加盟条件板块 ========== */
.dlsq-condition {
	padding: 120px 0;
	background-color: #F7F9FC;
}

.dlsq-condition-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.dlsq-condition-item {
	background-color: #FFFFFF;
	padding: 28px 32px;
	border-radius: 8px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	transition: all 0.3s ease;
}

.dlsq-condition-item:hover {
	box-shadow: 0 8px 20px rgba(22, 93, 255, 0.08);
	transform: translateX(6px);
}

.dlsq-condition-check {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #165DFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #FFFFFF;
	flex-shrink: 0;
	margin-top: 2px;
}

.dlsq-condition-item p {
	font-size: 16px;
	color: #1D2129;
	font-weight: 500;
	line-height: 1.8;
}

/* ========== CTA加盟咨询板块 ========== */
.dlsq-cta {
	padding: 100px 0;
	background-color: #FFFFFF;
	text-align: center;
}

.dlsq-cta-box {
	margin: 0 auto;
	padding: 80px 40px;
	background: linear-gradient(135deg, #165DFF 0%, #4080FF 100%);
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(22, 93, 255, 0.2);
}

.dlsq-cta-title {
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 16px;
	line-height: 1.2;
}

.dlsq-cta-desc {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 600px;
	margin: 0 auto 40px;
	line-height: 1.8;
}

.dlsq-cta-box .dlsq-btn-primary {
	background-color: #FFFFFF;
	color: #165DFF;
	min-width: 200px;
}

.dlsq-cta-box .dlsq-btn-primary:hover {
	background-color: #F7F9FC;
	transform: translateY(-3px);
}

/* ========== 响应式适配 ========== */
@media screen and (max-width: 1199px) {
	.dlsq-hero-title {
		font-size: 48px;
	}

	.dlsq-section-title {
		font-size: 32px;
	}

	.dlsq-support-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dlsq-support-content {
		position: static;
		text-align: center;
	}

	.dlsq-support-content .dlsq-section-title,
	.dlsq-support-content .dlsq-section-desc {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.dlsq-advantage-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 767px) {
	.dlsq-hero {
		min-height: auto;
		padding: 80px 24px;
	}

	.dlsq-hero-title {
		font-size: 32px;
	}

	.dlsq-hero-desc {
		font-size: 16px;
	}

	.dlsq-hero-btn-group {
		flex-direction: column;
		align-items: center;
	}

	.dlsq-hero-btn-group .dlsq-btn {
		width: 100%;
	}

	.dlsq-market,
	.dlsq-advantage,
	.dlsq-support,
	.dlsq-process,
	.dlsq-condition,
	.dlsq-cta {
		padding: 60px 0;
	}

	.dlsq-section-title {
		font-size: 24px;
	}

	.dlsq-market-grid,
	.dlsq-advantage-grid,
	.dlsq-support-list,
	.dlsq-condition-grid {
		grid-template-columns: 1fr;
	}

	.dlsq-process-track {
		flex-direction: column;
		gap: 40px;
		padding-left: 30px;
		margin-top: 40px;
	}

	.dlsq-process-track::before {
		width: 2px;
		height: 100%;
		top: 0;
		left: 13px;
	}

	.dlsq-process-step {
		width: 100%;
		text-align: left;
	}

	.dlsq-step-dot {
		margin: 0 0 16px 0;
	}

	.dlsq-cta-box {
		padding: 40px 24px;
	}

	.dlsq-cta-title {
		font-size: 24px;
	}
}


/* 公司愿景 */

/* 背景特效层 - 极简时尚微光浮动，纯点缀不抢镜 */
.gsyj-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
	background: #ffffff;
	overflow: hidden;
}

/* 时尚浮动光点 - 低饱和、慢动态，高端简约 */
.gsyj-float-dot {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, #d4af3715, #0ea5e915);
	animation: gsyj-float 20s infinite ease-in-out;
}

/* 光点样式差异化，时尚层次感 */
.gsyj-dot-1 {
	width: 180px;
	height: 180px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.gsyj-dot-2 {
	width: 120px;
	height: 120px;
	top: 60%;
	right: 8%;
	animation-delay: 5s;
}

.gsyj-dot-3 {
	width: 150px;
	height: 150px;
	bottom: 15%;
	left: 15%;
	animation-delay: 10s;
}

.gsyj-dot-4 {
	width: 90px;
	height: 90px;
	top: 30%;
	right: 20%;
	animation-delay: 15s;
}

/* 浮动动画 - 缓慢轻柔，时尚呼吸感 */
@keyframes gsyj-float {
	0% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}

	50% {
		transform: translate(20px, -20px) scale(1.1);
		opacity: 0.5;
	}

	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.3;
	}
}

/* 页面主容器 */
.gsyj-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 80px 24px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 品牌标识 */
.gsyj-brand {
	font-size: 14px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: #64748b;
	text-align: center;
	margin-bottom: 48px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 愿景核心标题区 */
.gsyj-vision-header {
	text-align: center;
	margin-bottom: 64px;
}

.gsyj-vision-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 24px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.gsyj-vision-core {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	color: #334155;
	max-width: 1000px;
	margin: 0 auto;
	line-height: 1.8;
	font-weight: 300;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.gsyj-vision-core strong {
	color: #0f172a;
	font-weight: 600;
}

/* 愿景落地核心版块 */
.gsyj-vision-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.gsyj-vision-card {
	padding: 36px 30px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gsyj-vision-card:hover {
	transform: translateY(-8px);
	border-color: #d4af37;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	background: #ffffff;
}

.gsyj-card-num {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 8px;
	background: linear-gradient(135deg, #d4af37 0%, #fbbf24 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 20px;
}

.gsyj-card-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 12px;
}

.gsyj-card-desc {
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.7;
}

/* 动画激活类 */
.gsyj-animate-active {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.gsyj-wrapper {
		padding: 60px 20px 60px 20px;
	}

	.gsyj-vision-header {
		margin-bottom: 48px;
	}

	.gsyj-vision-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.gsyj-vision-card {
		padding: 28px 24px;
	}
}

@media (max-width: 480px) {
	.gsyj-brand {
		letter-spacing: 4px;
		margin-bottom: 32px;
	}

	.gsyj-vision-card {
		padding: 24px 20px;
	}
}


/* 发展历程 */
.fzlc-page-wrapper {
	width: 100%;
	min-height: 100vh;
	padding: 60px 0px;
	background-color: #ffffff;
}

/* 手风琴核心容器 */
.fzlc-accordion-container {
	max-width: 1000px;
	margin: 0 auto;
}

/* 手风琴单个项目 */
.fzlc-accordion-item {
	margin-bottom: 15px;
	border-radius: 8px;
	border: 1px solid #f2f3f5;
	background-color: #ffffff;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.fzlc-accordion-item:hover {
	border-color: #e5e6eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* 手风琴头部（可点击区域） */
.fzlc-accordion-header {
	padding: 25px 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	user-select: none;
}

.fzlc-accordion-item:hover .fzlc-accordion-header {
	background-color: #fafafa;
}

/* 头部左侧内容 */
.fzlc-header-left {
	display: flex;
	align-items: baseline;
	gap: 18px;
	flex: 1;
}

/* 年份展示 */
.fzlc-year-display {
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 700;
	color: #165dff;
	line-height: 1.2;
	transition: all 0.3s ease;
}

/* 主题与描述容器 */
.fzlc-theme-wrapper {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* 年度主题 */
.fzlc-year-theme {
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	font-weight: 600;
	color: #1d2129;
	transition: all 0.3s ease;
}

/* 营销描述（关闭状态显示） */
.fzlc-marketing-desc {
	font-size: 0.95rem;
	color: #86909c;
	font-weight: 300;
	transition: all 0.3s ease;
}

/* 展开箭头 */
.fzlc-expand-arrow {
	width: 24px;
	height: 24px;
	position: relative;
	flex-shrink: 0;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.fzlc-expand-arrow::before,
.fzlc-expand-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 12px;
	height: 2px;
	background-color: #86909c;
	transition: all 0.3s ease;
}

.fzlc-expand-arrow::before {
	left: 2px;
	transform: translateY(-50%) rotate(45deg);
}

.fzlc-expand-arrow::after {
	right: 2px;
	transform: translateY(-50%) rotate(-45deg);
}

/* 手风琴展开状态 */
.fzlc-accordion-item.active {
	border-color: #165dff;
	box-shadow: 0 6px 16px rgba(22, 93, 255, 0.08);
}

.fzlc-accordion-item.active .fzlc-accordion-header {
	background-color: #f0f7ff;
	padding-bottom: 20px;
}

.fzlc-accordion-item.active .fzlc-year-display {
	transform: scale(1.05);
}

.fzlc-accordion-item.active .fzlc-year-theme {
	color: #165dff;
}

.fzlc-accordion-item.active .fzlc-marketing-desc {
	opacity: 0;
	height: 0;
	margin: 0;
	overflow: hidden;
}

.fzlc-accordion-item.active .fzlc-expand-arrow {
	transform: rotate(180deg);
}

.fzlc-accordion-item.active .fzlc-expand-arrow::before,
.fzlc-accordion-item.active .fzlc-expand-arrow::after {
	background-color: #165dff;
}

/* 手风琴内容区域 */
.fzlc-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fzlc-accordion-item.active .fzlc-accordion-content {
	max-height: 1200px;
}

/* 内容内部包装 */
.fzlc-content-inner {
	padding: 0 30px 25px;
}

/* 事件列表 */
.fzlc-event-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 10px;
	border-top: 1px solid #e5e6eb;
}

/* 事件条目 */
.fzlc-event-item {
	font-size: 1rem;
	color: #4e5969;
	padding: 10px 16px;
	border-radius: 6px;
	background-color: #fafafa;
	border-left: 3px solid transparent;
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.fzlc-event-item:hover {
	background-color: #f0f7ff;
	border-left-color: #165dff;
	transform: translateX(6px);
	color: #1d2129;
}

/* 响应式适配 */
@media (max-width: 768px) {
	.fzlc-page-wrapper {
		padding: 40px 15px;
	}

	.fzlc-page-header {
		margin-bottom: 40px;
	}

	.fzlc-accordion-header {
		padding: 20px;
	}

	.fzlc-header-left {
		gap: 12px;
		flex-direction: column;
		align-items: flex-start;
	}

	.fzlc-content-inner {
		padding: 0 20px 20px;
	}

	.fzlc-event-item {
		padding: 8px 12px;
		font-size: 0.95rem;
	}
}


/* 手机端底部信息部分隐藏 */
@media (max-width: 480px) {
	.grid-item {
		height: auto;

	}

	.lsyys-screen-section {
		height: 130vh;
	}

	.footer-nav-wrap {
		display: none;
	}

	.footer-qrcode {
		display: none;
	}

	.footer-middle {
		display: none;
	}
}