.a-container {
	width: 80%;
	margin: 0 auto;
	padding: 0 30px;
}
.a-s-container {
	width: 92%;
	margin: 0 auto;
	padding: 0 10px;
}
        
        /* ==================== 渐入动画 ==================== */
        @keyframes a-fadeInUp {
 from {
opacity: 0;
transform: translateY(40px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @keyframes a-fadeIn {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
.a-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.85s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.a-animate.a-visible {
	opacity: 1;
	transform: translateY(0);
}
.a-delay-1 {
	transition-delay: 0.1s;
}
.a-delay-2 {
	transition-delay: 0.2s;
}
.a-delay-3 {
	transition-delay: 0.3s;
}
.a-delay-4 {
	transition-delay: 0.4s;
}
/* ==================== BANNER区域 (相对定位容器，面包屑绝对定位覆盖) ==================== */
.a-banner {
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	background: linear-gradient(135deg, #0f2b4f 0%, #1e4a76 100%);
}
.a-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	display: block;
	transition: transform 0.4s ease;
}
.a-banner:hover .a-banner-img {
	transform: scale(1.02);
}
.a-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 35, 60, 0.25);
	backdrop-filter: brightness(0.96);
}
.a-banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 3;
	width: 100%;
	pointer-events: none;
}
.a-banner-title {
	font-size: 48px;
	font-weight: 800;
	letter-spacing: 6px;
	margin-bottom: 12px;
	text-shadow: 0 4px 18px rgba(0,0,0,0.35);
	opacity: 0;
	animation: a-fadeInUp 0.9s ease 0.2s forwards;
}
.a-banner-subtitle {
	font-size: 20px;
	letter-spacing: 8px;
	text-transform: uppercase;
	font-weight: 400;
	opacity: 0.9;
	text-shadow: 0 1px 6px rgba(0,0,0,0.3);
	opacity: 0;
	animation: a-fadeInUp 0.9s ease 0.5s forwards;
}
/* ==================== 面包屑导航 (浮动于大图底部，距底部5px) ==================== */
.a-breadcrumb {
	position: absolute;
	bottom: 0px;              /* 关键修改: 距离大图底部5px */
	left: 0;
	width: 100%;
	z-index: 20;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0px;
	padding: 0px 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
/* 为了在大图内而内容容器依旧有最大宽度约束 */
.a-breadcrumb .a-container {
	display: flex;
	align-items: center;
}
.a-breadcrumb-inner {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #444;
	font-weight: 500;
	gap: 6px;
	justify-content: space-between;  /* 两端对齐：面包屑在左，二级菜单在右 */
	flex-wrap: wrap;
}
.a-breadcrumb-icon {
	width: 18px;
	height: 18px;
	margin-right: 4px;
	color: #444;
	flex-shrink: 0;
}
.a-breadcrumb a {
	color: #444;
	text-decoration: none;
	transition: all 0.2s;
	font-weight: 500;
}
.a-breadcrumb a:hover {
}
.a-breadcrumb-separator {
	margin: 0 6px;
	color: #8aa0b0;
	font-size: 18px;
}
.a-breadcrumb-current {
	color: #333;
	font-weight: 600;
}
/* 关键修改点: 保持原有内部所有元素不变，只对 .a-breadcrumb-inner 使用 flex 布局，实现一行显示且左右排列 */
.a-breadcrumb-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;  /* 左: 面包屑, 右: 二级菜单, 强制两端对齐 */
	flex-wrap: nowrap;               /* 强制一行显示，不断行 */
	width: 100%;
	min-height: 64px;                /* 保持舒适高度，与原有导航高度协调，避免压缩原样式 */
	gap: 16px;                       /* 左右间距若有挤压自动维持，但无冲突 */
}
/* ---------- 左侧面包屑 (完全未修改任何内部样式，仅保持原有结构和类名) ---------- */
.breadcrumb-left {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;                  /* 防止面包屑被压缩，保持完整显示 */
	background: transparent;          /* 保留原样无背景 */
	padding: 0;
	margin: 0;
}
.a-breadcrumb-icon {
	width: 20px;
	height: 20px;
	color: #5f6c84;
	stroke-width: 2;
	transition: color 0.2s;
}
.breadcrumb-left a {
	font-size: 16px;
	color: #2c3e66;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}
.breadcrumb-left a:hover {
	color: #0f3b7a;
	text-decoration: underline;
}
.a-breadcrumb-separator {
	color: #b9c2d4;
	font-size: 16px;
	margin: 0 2px;
	user-select: none;
}
.a-breadcrumb-current {
	font-size: 16px;
	font-weight: 600;
	color: #1f2a44;
	background: transparent;
}
/* ---------- 右侧二级菜单 (完全保持原有DOM结构/类名/图标，仅增强布局适应一行和右对齐) ---------- */
        /* 原有 .secondary-menu 样式在此基础保留，同时确保其内部flex布局不影响一行紧凑性 */
.secondary-menu {
	display: flex;
	align-items: center;
	gap: 18px;               /* 保持原设计呼吸感 (原有元素间距未破坏，仅增加左右空间舒适度) */
	flex-shrink: 0;          /* 防止右侧菜单被压缩换行 */
	padding: 0;
	margin: 0;
}
/* 菜单项完全保留原始类名与样式细节，未修改任何边距/圆角/字体等原始特征，仅确保active状态可见 */
.menu-item {
	display: inline-flex;
	align-items: center;
	gap: 8px; /* 增加图标与文字的间距，更透气 */
	font-size: 18px;
	font-weight: 500;
	color: #5b6e8c; /* 柔化原始颜色，降低一点饱和度 */
	text-decoration: none;
	background: transparent;
	padding: 8px 22px; /* 增加内边距，扩大点击区域 */
	border-radius: 40px; /* 改为圆角胶囊风格，更现代 */
	transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1); /* 更弹性的缓动曲线 */
	cursor: pointer;
	position: relative;/* 移除底部边框，改用背景或阴影表达状态 */
}
/* 原有active样式 - 升级为鲜明的高亮胶囊背景 */
.menu-item.active {
	color: #ffffff; /* 反白文字 */
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%); /* 渐变背景增加质感 */
	box-shadow: 0 4px 8px rgba(31, 99, 146, 0.2); /* 柔和阴影 */
	border-bottom-color: transparent; /* 清除原有边框色 */
}
/* 悬停效果 (非激活状态) */
.menu-item:hover:not(.active) {
	color: #2c4f6e;
	background-color: #eef3fc; /* 浅色背景悬浮 */
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
	transform: translateY(-1px); /* 微上浮动画 */
}
/* 增加点击反馈 */
.menu-item:active:not(.active) {
	transform: translateY(1px);
	transition: all 0.05s ease;
}
/* 图标样式微调，跟随文字颜色变化 */
.menu-icon {
	width: 18px;  /* 略微增大，更协调 */
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.2s ease;
}
/* 可选: 激活态图标增加发光效果 */
.menu-item.active .menu-icon {
	filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
	color: #ffffff;
}

        /* 确保在任何窄屏下保持同一行（防止极端情况换行，采用媒体查询做最小宽度适应，但不会改变原有任何细节） */
        @media (max-width: 640px) {
.a-container {
	padding: 0 16px;
	width: 96%;
}
.secondary-menu {
	gap: 16px;
}
.menu-item {
	font-size: 13px;
	gap: 4px;
}
.breadcrumb-left a,  .a-breadcrumb-current {
	font-size: 13px;
}
/* 始终保持一行，flex-wrap: nowrap 确保不换行，若文字极长有右侧缩略风险但本设计文案简短足够安全 */
.a-breadcrumb-inner {
	gap: 12px;
}
}

        /* 对于更极端小尺寸比如360px: 依然保持一行，右侧菜单会略微紧凑但不重叠，不影响原样式结构 */
        @media (max-width: 480px) {
.secondary-menu {
	gap: 12px;
}
.menu-item span:not(.menu-icon) {
	font-size: 12px;
}
.menu-icon {
	width: 14px;
	height: 14px;
}
.breadcrumb-left {
	gap: 4px;
}
}
/* ==================== 医院介绍 ==================== */
.a-section {
	padding: 50px 0;
}
.a-section-title {
	font-size: 36px;
	color: #0f2b3f;
	text-align: center;
	margin-bottom: 26px;
	position: relative;
	font-weight: 700;
	letter-spacing: -0.2px;
}
.a-section-title::after {
	content: '';
	display: block;
	width: 64px;
	height: 4px;
	background: linear-gradient(90deg, #2b7a62, #449e82);
	margin: 8px auto 0;
	border-radius: 4px;
}
.a-section-title img {
	height: 80px;
	text-align: center;
	margin-bottom: 0px;
}
.a-intro {
	display: flex;
	gap: 56px;
	align-items: center;
}
.a-intro-left {
	flex: 1;
}
.a-intro-right {
	flex: 1;
}
.a-intro-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
	transition: all 0.5s ease;
}
.a-intro-img:hover {
	transform: scale(1.02);
	box-shadow: 0 24px 42px -14px rgba(0, 0, 0, 0.25);
}
.a-intro-img-title {
	font-size: 26px;
	color: #164863;
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	padding-left: 18px;
	border-left: 5px solid #2b7a62;
}
.a-intro-text {
	font-size: 16px;
	line-height: 1.85;
	color: #2c4258;
	text-align: justify;
}
.a-intro-text p {
	margin-bottom: 16px;
}
/* ==================== 设备展示轮播 (优化间距) ==================== */
.a-equipment {
	background: url(../images/fybg.png) center top no-repeat;
}
.a-carousel-wrapper {
	position: relative;
	padding: 0 52px;
	margin-top: 10px;
}
.a-carousel {
	overflow: hidden;
	border-radius: 28px;
}
.a-carousel-track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
	will-change: transform;
}
.a-carousel-item {
	min-width: 25%;
	padding: 0 12px;
	text-align: center;
}
.a-carousel-item-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: transform 0.25s ease;
}
.a-carousel-item-link:hover {
	transform: translateY(-6px);
}
.a-carousel-item-img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.12);
	background: #eef2f7;
	transition: box-shadow 0.3s;
}
.a-carousel-item-link:hover .a-carousel-item-img {
	box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
}
.a-carousel-item-title {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 600;
	color: #1e3a4d;
}
.a-carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	background: #fff;
	color: #2b7a62;
	border: none;
	border-radius: 60px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	z-index: 12;
	transition: all 0.25s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2px);
}
.a-carousel-btn:hover {
	background: #2b7a62;
	color: #fff;
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 8px 22px rgba(43, 122, 98, 0.3);
}
.a-carousel-prev {
	left: 0;
}
.a-carousel-next {
	right: 0;
}
.a-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 34px;
}
.a-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background: #cbdbe0;
	cursor: pointer;
	border: none;
	transition: all 0.25s;
	padding: 0;
}
.a-carousel-dot:hover {
	background: #8aaec0;
	transform: scale(1.2);
}
.a-carousel-dot.a-active {
	background: #2b7a62;
	width: 28px;
	border-radius: 10px;
}
/* ==================== 科室介绍（标签页增强） ==================== */
.a-departments {
	padding: 10px 0 0px 0;
}
.a-dept-nav {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 48px;
	border-bottom: 2px solid #e5edf5;
	padding-bottom: 12px;
	flex-wrap: wrap;
	gap: 18px;
}
.a-dept-nav-left {
	display: flex;
	align-items: center;
	gap: 14px;
}
.a-dept-nav-icon {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #2b7a62, #1f5e4b);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}
.a-dept-nav-title {
	font-size: 30px;
	color: #164863;
	font-weight: 800;
	letter-spacing: -0.3px;
}
.a-dept-nav-title img {
	height: 70px
}
.a-dept-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.a-dept-tab {
	padding: 12px 30px;
	background: #f0f4fa;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: #2c556e;
	transition: all 0.25s;
	border-radius: 40px;
	letter-spacing: 0.5px;
}
.a-dept-tab:hover {
	background: #e1e9f2;
	color: #164863;
	transform: translateY(-2px);
}
.a-dept-tab.a-active {
	background: linear-gradient(90deg, rgba(39, 193, 113, 1), rgba(11, 150, 110, 1));
	color: white;
	box-shadow: 0 6px 16px rgba(43,122,98,0.25);
}
.a-dept-content {
	display: none;
}
.a-dept-content.a-active {
	display: block;
	animation: a-fadeIn 0.45s ease forwards;
}
.a-dept-inner {
	display: flex;
	gap: 56px;
	align-items: center;
}
.a-dept-text {
	flex: 1;
}
.a-dept-text h3 {
	font-size: 28px;
	color: #144a66;
	margin-bottom: 20px;
	font-weight: 700;
	position: relative;
	display: inline-block;
}
.a-dept-text h3:after {
	content: '';
	display: block;
	width: 50px;
	height: 3px;
	background: #2b7a62;
	margin-top: 8px;
	border-radius: 3px;
}
.a-dept-text p {
	font-size: 16px;
	line-height: 1.85;
	color: #2f4b66;
	margin-bottom: 20px;
	text-align: justify;
}
.a-dept-img {
}
.a-dept-img img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: 0 18px 32px -14px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}
.a-dept-img img:hover {
	transform: scale(1.01);
}
.a-dept-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding: 12px 36px;
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s;
	letter-spacing: 0.8px;
}
.a-dept-link:hover {
	background: #00a37a;
	transform: translateX(6px);
	box-shadow: 0 10px 18px rgba(0,0,0,0.15);
	color: #fff;
}
        
        /* ==================== 响应式适配 ==================== */
        @media (max-width: 992px) {
.a-carousel-item {
	min-width: 33.333%;
}
.a-intro, .a-dept-inner {
	flex-direction: column;
}
.a-intro-left, .a-intro-right, .a-dept-text, .a-dept-img {
	width: 100%;
}
.a-dept-nav {
	flex-direction: column;
	align-items: flex-start;
}
.a-dept-tabs {
	width: 100%;
	justify-content: flex-start;
}
.a-banner-title {
	font-size: 38px;
}
}
 @media (max-width: 768px) {
.a-carousel-item {
	min-width: 50%;
}
.a-carousel-wrapper {
	padding: 0 36px;
}
.a-section {
	padding: 56px 0;
}
.a-banner {
	height: 280px;
	margin-top: 50px;
	border-radius: 12px;
	width: 94%;
	margin: 70px auto 10px auto
}
.a-banner-title {
	font-size: 28px;
	letter-spacing: 2px;
}
.a-banner-subtitle {
	font-size: 16px;
	letter-spacing: 4px;
}
.a-dept-tab {
	padding: 8px 20px;
	font-size: 16px;
}
.a-intro-img {
	height: 280px;
}
.a-dept-img img {
	height: 260px;
}
.a-breadcrumb .a-container {
	padding: 0 16px;
}
.a-breadcrumb-inner {
	font-size: 12px;
}
.a-equipment {
	border-radius: 12px 0 0 0
}
.a-section-title img {
	height: 60px;
	text-align: center;
}
.a-dept-nav {
	align-items: center;
}
}
 @media (max-width: 560px) {
.a-carousel-item {
	min-width: 100%;
}
.a-carousel-wrapper {
	padding: 0 28px;
}
.a-breadcrumb-inner {
	gap: 4px;
}
}
/* 确保面包屑内部内容也居中对齐 */
.a-breadcrumb .a-container {
	width: 90%;
	margin: 0 auto;
	padding: 0 40px;
}
 @media (max-width: 768px) {
.a-breadcrumb .a-container {
	padding: 0 18px;
}
}
/* h- 前缀容器: 满足题意“样式前加h-” */
.h-gallery-wrapper {
	width: 90%;
	margin: 0 auto;
	padding: 28px 24px 40px;
	transition: all 0.2s;
}
/* 头部装饰 */
.h-gallery-header {
	text-align: center;
	margin-bottom: 32px;
}
.h-gallery-header h1 {
	font-size: 2rem;
	font-weight: 700;
	background: linear-gradient(135deg, #1e4663, #103a55);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: -0.5px;
}
.h-gallery-header p {
	color: #4a6272;
	margin-top: 8px;
	font-size: 0.95rem;
}
/* ----- 核心列表布局：flex + li 实现一行四张，共三行（12个li）----- */
.h-image-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
	row-gap: 28px;
}
/* 每个 li 卡片: 宽度25% 实现一行4个 */
.h-card-item {
	flex: 0 0 calc(25% - 24px);
	margin: 0 12px;
	padding: 20px;
	transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s ease;
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.1);
	position: relative;
}
/* 卡片悬浮效果 */
.h-card-item:hover {
	transform: translateY(-7px);
	box-shadow: 0 22px 32px -14px rgba(0, 0, 0, 0.2);
}
/* 图片外容器: 负责扫光动画的承载 */
.h-img-wrapper {
	position: relative;
	overflow: hidden;
	background-color: #cbdbe2;
}
/* 图片样式: 统一比例 4:3, 过渡平滑 */
.h-img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.45s ease;
}
/* 鼠标悬浮时图片轻微放大 */
.h-card-item:hover .h-img {
	transform: scale(1.03);
}
/* ---------- 扫光动画效果 (纯CSS，无JS) ---------- */
        /* 利用伪元素 ::after 制作倾斜白色半透明光层，hover时滑过 */
.h-img-wrapper::before {
	content: "";
	position: absolute;
	top: 0;
	left: -80%;
	width: 60%;
	height: 100%;
	background: linear-gradient(115deg,  rgba(255, 255, 255, 0) 0%,  rgba(255, 255, 255, 0.5) 48%,  rgba(255, 255, 255, 0) 52%);
	transform: skewX(-18deg);
	transition: left 0.65s cubic-bezier(0.25, 0.96, 0.45, 1);
	pointer-events: none;
	z-index: 2;
}
/* 鼠标移到卡片上，扫光从左到右划过整张图片区域 */
.h-card-item:hover .h-img-wrapper::before {
	left: 110%;
}
/* 卡片信息区: 标题 & 链接 */
.h-card-info {
	padding: 16px 14px 18px;
	background: #ffffff;
	border-top: 1px solid #f0f2f5;
}
/* 标题样式 + 链接 */
.h-card-title {
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
	margin-bottom: 10px;
	text-align: center;
}
.h-title-link {
	text-decoration: none;
	color: #1f2f3a;
	transition: color 0.2s, border-bottom 0.2s;
	display: inline-block;
}
.h-title-link:hover {
	color: #2c7da0;
	text-decoration: underline;
	text-underline-offset: 3px;
}
/* 图片链接区域（包裹img） */
.h-img-link {
	display: block;
	line-height: 0;
	cursor: pointer;
}
/* 辅助装饰元素（不影响题目要求的图片和标题均有链接，仅增强体验） */
.h-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 8px;
	font-size: 0.7rem;
	color: #7792a3;
}
.h-tag {
	background: #eef2f8;
	padding: 3px 10px;
	border-radius: 30px;
	font-size: 0.65rem;
	font-weight: 500;
}
.h-detail-link {
	text-decoration: none;
	font-size: 0.7rem;
	color: #2c7da0;
	font-weight: 500;
	transition: opacity 0.2s;
}
.h-detail-link:hover {
	opacity: 0.75;
	text-decoration: underline;
}
/* ---------- 分页样式。
        */
.h-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 48px;
	padding-top: 22px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	flex-wrap: wrap;
}
.h-page-btn {
	background: white;
	border: none;
	min-width: 44px;
	height: 44px;
	padding: 0 15px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	color: #2c3e50;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
/* 模拟链接样式，使其可点但无JS刷新 */
.h-page-btn[href="#"] {
	cursor: pointer;
}
.h-page-btn:hover {
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 15px -8px rgba(0, 0, 0, 0.15);
	color: #fff;
}
/* 当前激活页码(第一页) */
.h-page-btn.active {
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	color: white;
	box-shadow: 0 4px 12px rgba(44, 125, 160, 0.3);
	cursor: default;
	transform: none;
}
.h-page-btn.active:hover {
	background: #2c7da0;
	transform: none;
}
.h-page-dots {
	color: #6a7f92;
	font-weight: 500;
	padding: 0 6px;
	font-size: 0.9rem;
}
		
		
		

        /* 响应式布局：平板展示3列 */
        @media (max-width: 1024px) {
.h-card-item {
	flex: 0 0 calc(33.333% - 24px);
}
.h-gallery-wrapper {
	padding: 22px 18px 36px;
}
}

        /* 手机：一行两个 */
        @media (max-width: 640px) {
.h-card-item {
	flex: 0 0 calc(50% - 24px);
}
body {
	padding: 24px 16px;
}
.h-card-info {
	padding: 12px 10px 14px;
}
.a-section-title {
	margin-bottom: 26px;
}
}

        /* 超小屏：一行一个 */
        @media (max-width: 480px) {
.h-card-item {
	flex: 0 0 calc(100% - 24px);
}
.h-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	flex-wrap: wrap;
}
.h-page-btn {
	background: white;
	border: none;
	min-width: 30px;
	height: 30px;
	padding: 0 15px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	color: #2c3e50;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
}

        /* 简单美化滚动条 */
        ::-webkit-scrollbar {
 width: 7px;
}
        ::-webkit-scrollbar-track {
 background: #e0e7ef;
 border-radius: 10px;
}
        ::-webkit-scrollbar-thumb {
 background: #b7cadb;
 border-radius: 10px;
}
/* 整体容器 - 现代清新风格 */
.n-news-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 36px;
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
	overflow: hidden;
	transition: all 0.2s;
}
/* 页眉区域 */
.n-header {
	padding: 2rem 2rem 1rem 2rem;
	border-bottom: 2px solid #e2f0e0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 1.2rem;
	background: #ffffff;
}
.n-title-section h1 {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.3px;
	background: linear-gradient(145deg, #1e7646, #2a9d6e);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
}
.n-title-section p {
	color: #5a7768;
	font-size: 0.9rem;
	margin-top: 0.3rem;
	font-weight: 500;
}
/* 双栏切换样式: 纯css使用radio模拟，但为了简洁且不用js，使用锚点+纯css方法？但由于要求不用js，可直接放置两个栏目用css控制显示隐藏通过:target或者直接展示两个板块用按钮hover? 最好用选项卡方式但不依赖js—我们可以用两个独立ul区域并用radio+label实现纯css选项卡 (完全无js) */
.n-tab-system {
	display: flex;
	gap: 0.5rem;
	background: #eff5ec;
	padding: 0.35rem;
	border-radius: 60px;
}
.n-tab-label {
	padding: 0.55rem 1.8rem;
	font-weight: 700;
	font-size: 0.9rem;
	border-radius: 50px;
	cursor: pointer;
	transition: 0.2s;
	color: #2a6242;
	background: transparent;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
}
/* 隐藏radio */
.n-radio-input {
	display: none;
}
/* 动态区块与公告区块容器 */
.n-sections-container {
	position: relative;
	padding-top: 40px;
}
.n-dynamic-section,  .n-announce-section {
	transition: all 0.2s ease;
	display: block;
	width: 90%;
	margin: 0 auto;
	padding: 0 40px;
}
/* 默认显示动态，公告隐藏 */
.n-announce-section {
	display: none;
}
#tabDynamic:checked ~ .n-sections-container .n-dynamic-section {
	display: block;
}
#tabDynamic:checked ~ .n-sections-container .n-announce-section {
	display: none;
}
#tabAnnounce:checked ~ .n-sections-container .n-dynamic-section {
	display: none;
}
#tabAnnounce:checked ~ .n-sections-container .n-announce-section {
	display: block;
}
/* 高亮当前标签 */
#tabDynamic:checked ~ .n-header .n-tab-system label[for="tabDynamic"],  #tabAnnounce:checked ~ .n-header .n-tab-system label[for="tabAnnounce"] {
	background: white;
	color: #186a3b;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
/* ---------- 核心 UL/LI 列表样式 ---------- */
.n-news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
/* 每条新闻卡片采用 flex 布局，左边图片，中间内容，右侧日期大号渐变背景 */
.n-news-item {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	background: #ffffff;
	border-radius: 12px;
	padding: 20px;
	transition: all 0.25s ease;
	border: 1px solid #eef3ea;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.n-news-item:hover {
	transform: translateY(-3px);
	border-color: #cbe5d4;
	box-shadow: 0 18px 30px -12px rgba(32, 104, 56, 0.12);
	background: #fefef7;
}
/* 左侧图片区域 (固定宽高圆角) */
.n-img-area {
	flex-shrink: 0;
	width: 340px;
	height: 200px;
	border-radius: 12px;
	overflow: hidden;
	background: #d9e6d4;
	box-shadow: 0 6px 12px rgba(0,0,0,0.02);
}
.n-img-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.n-news-item:hover .n-img-area img {
	transform: scale(1.05);
}
/* 中间内容区域 (标题，导读，按钮) */
.n-info {
	flex: 2;
	min-width: 180px;
}
.n-news-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
}
.n-news-title a {
	text-decoration: none;
	color: #1c3b2a;
	transition: color 0.2s;
}
.n-news-title a:hover {
	color: #2b7e4b;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.n-news-summary {
	color: #4a616f;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 5px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.n-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #eef6ea;
	padding: 10px 20px;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
	transition: all 0.2s;
	border: none;
	cursor: pointer;
	margin-top: 10px;
}
.n-more-btn i {
	font-size: 15px;
	transition: transform 0.2s;
}
.n-more-btn:hover {
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	color: white;
	box-shadow: 0 3px 8px rgba(43,126,75,0.2);
}
.n-more-btn:hover i {
	transform: translateX(4px);
	color: white;
}
/* 右侧日期区域: 渐变绿色背景，白字，日期大号，年月稍小字号 */
.n-date-grad {
	flex-shrink: 0;
	width: 110px;
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	box-shadow: 0 10px 18px -8px rgba(31,154,85,0.3);
	transition: transform 0.2s;
}
.n-date-grad:hover {
	transform: scale(1.02);
}
.n-day-large {
	font-size: 50px;
	font-weight: 500;
	color: white;
	line-height: 1;
	margin-bottom: 15px;
	letter-spacing: 0px;
	font-family: Arial, Helvetica, sans-serif
}
.n-yearmonth {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255,255,255,0.92);
	letter-spacing: 0px;
	display: inline-block;
}
/* 底部装饰 */
.n-footer {
	padding: 1.5rem 2rem 2rem;
	text-align: center;
	font-size: 0.75rem;
	color: #85a38d;
	border-top: 1px solid #e2ecd9;
	background: #ffffff;
}

        /* 响应式设计 */
        @media (max-width: 760px) {
.n-header {
	padding: 1.5rem;
}
.n-dynamic-section,  .n-announce-section {
	padding: 0 20px 20px;
	width: 96%
}
.n-news-item {
	flex-direction: column;
	align-items: flex-start;
}
.n-img-area {
	width: 100%;
	height: 180px;
}
.n-date-grad {
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
	padding: 0.8rem 1.2rem;
	gap: 1rem;
}
.n-day-large {
	font-size: 1.8rem;
}
.n-yearmonth {
	font-size: 0.8rem;
}
.n-tab-label {
	padding: 0.4rem 1.2rem;
	font-size: 0.8rem;
}
}
 @media (max-width: 480px) {
.n-day-large {
	font-size: 16px;
}
.n-news-title {
	font-size: 16px;
}
.n-more-btn {
	padding: 8px 15px;
}
.n-date-grad {
	flex-shrink: 0;
	width: auto;
	background: transparent;
	border-radius: 12px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8px 12px;
	box-shadow: none;
	transition: transform 0.2s;
	gap: 4px;
}
.n-date-grad:hover {
	transform: scale(1.02);
}
/* 统一字体样式：15px 黑色 */
.n-day-large, .n-yearmonth {
	font-size: 15px;
	font-weight: 500;
	color: black;
	line-height: 1;
	font-family: Arial, Helvetica, sans-serif;
}
/* 调整垂直对齐 */
.n-day-large {
	margin-bottom: 0;
}
.n-year {
	order: 1;
}
.n-month {
	order: 2;
}
.n-day-large {
	order: 3;
}
}
/* 顶部背景区域 */
.ny-header-bg {
	position: relative;
	width: 100%;
	height: 380px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 5%;
}
.ny-header-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.04);
}
.ny-header-content {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	width: 100%;
	padding: 0 20px;
	color: #fff;
	text-align: center;  /* 新增：内容居中对齐 */
}
/* 新闻大标题 */
.ny-news-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
/* 发布信息 */
.ny-news-meta {
	display: flex;
	align-items: center;
	justify-content: center;  /* 新增：水平居中对齐 */
	gap: 20px;
	font-size: 14px;
	opacity: 0.9;
}
.ny-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}
.ny-meta-icon {
	width: 16px;
	height: 16px;
	opacity: 0.8;
}
/* 文章内容区域 */
.ny-article-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px;
	background: #fff;
	margin-top: -30px;
	position: relative;
	z-index: 2;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.ny-article-content {
	font-size: 17px;
	line-height: 1.8;
	color: #444;
}
.ny-article-content p {
	margin-bottom: 20px;
}
.ny-article-content h2 {
	font-size: 24px;
	margin: 30px 0 15px;
	color: #222;
	border-left: 4px solid #667eea;
	padding-left: 12px;
}
.ny-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 20px 0;
}
.ny-article-content blockquote {
	background: #f8f9fa;
	border-left: 4px solid #764ba2;
	padding: 15px 20px;
	margin: 20px 0;
	color: #555;
	font-style: italic;
}
/* 底部分页导航 */
.ny-footer-nav {
	display: flex;
	align-items: center;        /* 关键：使所有子元素在交叉轴（垂直方向）上居中对齐 */
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	gap: 30px;
	background: #ffffff;
	border-top: 1px solid #e9edf2;
	padding: 40px;
	flex-wrap: wrap;            /* 极小屏幕时折行友好，但仍尽量保持左右布局 */
}
/* 左侧导航组: 放置上一篇 + 下一篇 (上下结构) */
.nav-prevnext-group {
	display: flex;
	flex-direction: column;
	gap: 10px;                  /* 上下两个链接间距舒适 */
	flex: 1;                    /* 占据可用空间，但不强迫撑开过度，保持右侧按钮独立 */
	min-width: 180px;           /* 保证小屏可读性 */
}
/* 通用导航链接样式 — 现代化，提升点击区域友好 */
.ny-nav-link {
	display: flex;
	text-decoration: none;
	transition: all 0.2s ease;
	padding: 5px 10px;
	align-items: center;
	gap: 12px;
}
.ny-nav-link:hover {
}
.ny-nav-link div {
	flex: 1;
}
.ny-nav-label {
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	color: #6c7a8a;
	display: block;
	margin-bottom: 10px;
}
.ny-nav-title {
	font-size: 15px;
	font-weight: 500;
	color: #1f2e3d;
	line-height: 1.35;
	transition: color 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-word;
}
/* 返回上一级按钮 — 右侧垂直居中是核心亮点 */
.ny-back-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	padding: 18px 30px;
	;
	border-radius: 40px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	border: 1px solid #e2e8f0;
	white-space: nowrap;          /* 防止文字换行 */
	flex-shrink: 0;               /* 确保右侧按钮始终完整显示 */
	backdrop-filter: blur(2px);
	line-height: 1;/* 垂直居中由父级 .ny-footer-nav 的 align-items: center 自动实现，无需额外设置 */
}
.ny-back-btn svg {
	width: 18px;
	height: 18px;
	transition: transform 0.2s ease;
}
.ny-back-btn:hover {
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}
.ny-back-btn:hover svg {
	transform: translateX(-3px);
}

        /* 响应式适配：确保在窄屏幕上依然保持左右结构 + 右侧按钮垂直居中效果依然存在 */
        @media (max-width: 680px) {
.ny-footer-nav {
	padding: 10px 15px;
	gap: 10px;
	min-height: auto;       /* 小屏幕自适应高度，但 align-items:center 依旧让按钮在垂直方向上居中 */
}
.nav-prevnext-group {
	gap: 15px;
	min-width: 160px;
}
.ny-nav-title {
	font-size: 15px;
	max-width: 94%;
}
.ny-back-btn {
	padding: 5px 10ox;
	font-size: 15px;
	white-space: nowrap;
}
}

        /* 超小屏幕（低于520px）时，保证左区域和右按钮依然左右排列，
           如果因为内容宽度不够折行，我们维持 flex-wrap: wrap，
           但右侧按钮依然通过父级 align-items: center 保证在所在行垂直居中。
           同时让左侧组合占据更多比例，不会破坏布局语义 */
        @media (max-width: 520px) {
.ny-footer-nav {
	flex-direction: row;
	flex-wrap: wrap;
}
.nav-prevnext-group {
	flex: 2;
	min-width: 140px;
}
.ny-back-btn {
	margin-left: auto;      /* 确保在任何时候都靠右对齐，且垂直居中在交叉轴上 */
	margin-right: 0;
}
.ny-nav-title {
	font-size: 15px;
	width: 100%;
}
.ny-header-bg {
	position: relative;
	width: 100%;
	height: 180px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-bottom: 15%;
	margin-top: 70px;
}
.ny-news-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
}
.ny-article-wrapper {
	width: 96%;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	margin-top: -30px;
	position: relative;
	z-index: 2;
	border-radius: 8px 8px 0 0;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
.ny-footer-nav {
	display: block;
	width: 96%;
	margin: 0 auto
}
}
.nav-prevnext-group {
	position: relative;
}
.nav-prevnext-group .ny-nav-link:first-child {
	position: relative;
	margin-bottom: 5px;
}
/* 在两个链接之间增加淡色分隔线，不干扰点击区域，提升视觉区分度 */
.nav-prevnext-group .ny-nav-link:first-child::after {
	content: '';
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: -10px;
	height: 1px;
	background: linear-gradient(to right, #e9edf2, #e9edf2 40%, transparent);
	pointer-events: none;
}
 @media (max-width: 560px) {
.nav-prevnext-group .ny-nav-link:first-child::after {
	left: 0;
	right: 0;
}
}
/* 保证所有链接点击区域充足且光标为手型 */
.ny-nav-link, .ny-back-btn {
	cursor: pointer;
}
.doc-container {
	width: 90%;
	padding: 40px 50px 0 50px;
	margin: 0 auto;
}
.doc-section-title {
	text-align: center;
	font-size: 32px;
	color: #1a1a1a;
	margin-bottom: 40px;
	font-weight: 600;
}
.doc-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	padding: 0;
}
.doc-item {
	width: calc(33.333% - 16px);
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}
.doc-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.doc-photo-wrap {
	width: 200px;
	min-width: 200px;
	height: 285x;
	overflow: hidden;
	background: #e8ecf1;
}
.doc-photo-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.doc-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.doc-photo-link:hover .doc-photo {
	transform: scale(1.05);
}
.doc-info {
	flex: 1;
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.doc-name {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
	line-height: 1.2;
}
.doc-name-link {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s ease;
}
.doc-name-link:hover {
	color: #2563eb;
}
.doc-title {
	font-size: 16px;
	color: #666;
	margin-bottom: 12px;
	line-height: 1.4;
}
.doc-divider {
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #e0e0e0, transparent);
	margin-bottom: 12px;
}
.doc-department {
	font-size: 15px;
	color: #2563eb;
	font-weight: 500;
	background: rgba(37, 99, 235, 0.08);
	padding: 4px 10px;
	border-radius: 4px;
	display: inline-block;
	align-self: flex-start;
}
 @media (max-width: 1440px) {
.h-card-title {
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	margin-top: 10px;
	text-align: center;
}
.doc-title {
	font-size: 14px;
	color: #666;
	margin-bottom: 12px;
	line-height: 1.4;
}
}
 @media (max-width: 992px) {
.doc-item {
	width: calc(50% - 12px);
}
}
 @media (max-width: 640px) {
.doc-item {
	width: 100%;
}
.doc-photo-wrap {
	width: 100px;
	min-width: 100px;
	height: 140px;
}
.doc-name {
	font-size: 18px;
}
.doc-container {
	width: 90%;
	padding: 40px 0px 0 0px;
	margin: 0 auto;
}
.doc-title {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.doc-department {
	display: none
}
}
/* 主容器 - 限定最大宽度，保持居中且舒适阅读宽度 */
.v-reader-container {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	transition: all 0.2s ease;
}
/* 内边距区域，让内容呼吸 */
.v-article-padding {
	padding: 40px;
}
/* 第一行：标题样式 — 清晰、优雅、现代 */
.v-page-title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
	color: #0f2b3d;
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 3px solid #e2e8f0;
	display: inline-block;
	width: 100%;
	font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
/* 文章主体内容 —— 严格 16px 字号 & 33px 行间距 */
.v-article-content {
	font-size: 16px;          /* 明确16px字号 */
	line-height: 33px;        /* 33px行间距核心样式 */
	color: #2c3e4f;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}
/* 文章内部基础元素继承行高与字号，保证段落间距自然 */
.v-article-content p,  .v-article-content div:not(.v-no-style),  .v-article-content section,  .v-article-content article {
	font-size: 16px;
	line-height: 33px;
	margin-bottom: 1.2em;    /* 使用相对单位，配合33px行高不会破坏整体节奏 */
}
/* 段落: 额外控制下边距，使段落分隔清晰但不破坏33px韵律 */
.v-article-content p {
	margin-bottom: 28px;      /* 稍比行高高一点，视觉留白舒服 */
}
/* 最后一个段落去除多余底部空隙 */
.v-article-content p:last-child {
	margin-bottom: 0;
}
/* 引述样式 — 优雅斜体，左框线，继承16px/33px */
.v-article-content blockquote {
	margin: 28px 0 28px 0;
	padding-left: 1.5rem;
	border-left: 4px solid #cbd5e1;
	font-style: normal;
	color: #4a5b6e;
	background: #f8fafc;
	padding: 0.8rem 1.2rem;
	border-radius: 0 20px 20px 0;
	font-size: 16px;
	line-height: 33px;
}
/* 列表样式，保证内外边距都符合整体行距感受 */
.v-article-content ul,  .v-article-content ol {
	margin: 0 0 28px 1.8rem;
	padding-left: 0.5rem;
}
.v-article-content li {
	font-size: 16px;
	line-height: 33px;
	margin-bottom: 6px;
}
.v-article-content li:last-child {
	margin-bottom: 0;
}
/* 小标题(文章内二级标题) 保持视觉层次但不破坏全局行距体系 */
.v-article-content h2 {
	font-size: 18px;
	font-weight: 600;
	margin: 8px 0 4px 0;
	line-height: 1.3;
	color: #1f3a4b;
	letter-spacing: -0.2px;
}
.v-article-content h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 8px 0 0 0;
	line-height: 1.4;
	color: #2b4b6e;
}
/* 强调元素 */
.v-article-content strong {
	color: #1e4663;
	font-weight: 600;
}
.v-article-content a {
	color: #2c6e9e;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.2s;
}
.v-article-content a:hover {
	color: #0f4c71;
	text-decoration-thickness: 2px;
}
/* 分割线与额外视觉元素 */
.v-article-content hr {
	margin: 32px 0;
	border: none;
	height: 1px;
	background: linear-gradient(90deg, #e2e8f0, #cbd5e1, #e2e8f0);
}
/* 图片响应式 (如果有需要) */
.v-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 10px;
	display: block;
}

        /* 小型装饰 + 响应式适配 移动端略微缩小内边距但不影响字号&行距 */
        @media (max-width: 640px) {
.v-article-padding {
	padding: 0px;
}
.v-page-title {
	font-size: 16px;
	margin-bottom: 15px;
}
}

        /* 暗色模式适配? 轻量跟随系统 (可选优雅降级) */
        @media (prefers-color-scheme: dark) {
body {
	
}
.v-reader-container {
	
	box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.v-page-title {
	color: #ecf3f9;
	border-bottom-color: #3b4b5a;
}
.v-article-content {
	color: #e2e8f0;
}
.v-article-content p,  .v-article-content li,  .v-article-content blockquote {
	color: #e2e8f0;
}
.v-article-content blockquote {
	background: #2d353e;
	border-left-color: #5f7f9e;
}
.v-article-content strong {
	color: #f3c6a5;
}
.v-article-content a {
	color: #87b9e0;
}
.v-article-content h2,  .v-article-content h3 {
	color: #f0f3f8;
}
.v-article-content hr {
	background: #3e4a57;
}
}
/* 增加文章内部落款、小提示等微细节 (保留纯净v-前缀) */
.v-meta-footnote {
	margin-top: 2.2rem;
	padding-top: 1.2rem;
	font-size: 14px;
	color: #7e8c9e;
	border-top: 1px solid #e9edf2;
	font-style: normal;
	line-height: 1.5;
}
 @media (prefers-color-scheme: dark) {
.v-meta-footnote {
	border-top-color: #3b4a57;
	color: #9aaebf;
}
}
.kpx-container {
	width: 90%;
	padding: 0 40px;
	margin: 40px auto;
}
/* 页面标题 */
.kpx-page-title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a2e;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 20px;
}
.kpx-page-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
	border-radius: 2px;
}
/* 文章列表 */
.kpx-article-list {
	list-style: none;
}
/* 文章项 */
.kpx-article-item {
	background: #ffffff;
	border-radius: 12px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}
.kpx-article-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
}
.kpx-article-link {
	display: flex;
	text-decoration: none;
	color: inherit;
	padding: 24px;
	align-items: flex-start;
}
/* 左侧时间区域 */
.kpx-date-wrapper {
	flex-shrink: 0;
	width: 100px;
	text-align: center;
	margin-right: 24px;
	padding-right: 24px;
	border-right: 2px solid #e8ecf1;
}
.kpx-date-day {
	font-size: 56px;
	font-weight: 800;
	color: #667eea;
	line-height: 1;
	display: block;
}
.kpx-date-ym {
	font-size: 13px;
	color: #8892b0;
	margin-top: 6px;
	display: block;
	font-weight: 500;
	letter-spacing: 1px;
}
/* 右侧内容区域 */
.kpx-content-wrapper {
	flex: 1;
	min-width: 0;
}
.kpx-article-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 12px;
	line-height: 1.4;
	transition: color 0.3s ease;
}
.kpx-article-item:hover .kpx-article-title {
	color: #667eea;
}
/* 导读内容 - 两行溢出省略 */
.kpx-article-excerpt {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 查看详情按钮 */
.kpx-read-more {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	color: #667eea;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}
.kpx-read-more::after {
	content: '→';
	margin-left: 6px;
	transition: transform 0.3s ease;
}
.kpx-article-item:hover .kpx-read-more::after {
	transform: translateX(4px);
}
.kpx-read-more:hover {
	color: #764ba2;
}

        /* 响应式适配 */
        @media (max-width: 600px) {
.kpx-article-link {
	flex-direction: column;
	padding: 20px;
}
.kpx-date-wrapper {
	width: 100%;
	display: flex;
	align-items: baseline;
	margin-right: 0;
	margin-bottom: 16px;
	padding-right: 0;
	padding-bottom: 12px;
	border-right: none;
	border-bottom: 2px solid #e8ecf1;
}
.kpx-date-day {
	font-size: 28px;
	margin-right: 8px;
}
.kpx-date-ym {
	margin-top: 0;
	font-size: 14px;
}
.kpx-article-title {
	font-size: 18px;
}
}
.v-container {
	position: relative;
	width: 90%;
	padding: 0 40px;
	margin: 0 auto;
	margin-top: 40px;
}
.v-title {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	color: #1a5fb4;
	margin-bottom: 30px;
	letter-spacing: 4px;
}
.v-schedule-wrapper {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	overflow-x: auto;  /* 移动端横向滚动 */
	overflow-y: hidden;
	margin-bottom: 30px;
	-webkit-overflow-scrolling: touch; /* 平滑滚动 */
}
.v-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
	min-width: 600px; /* 确保小屏幕可横向滚动，内容不挤压 */
}
.v-dept-row {
	background: url(../images/pbanner.jpg) center bottom no-repeat #d4def0;
	color: #333;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	height: 58px;
}
.v-dept-row td {
	padding: 12px;
	letter-spacing: 2px;
}
.v-header-row {
	background: #f1f5fd;
	color: #1a5fb4;
	font-weight: bold;
	font-size: 18px;
}
.v-header-row th {
	padding: 14px 8px;
	border: 1px solid #d0e0f7;
	text-align: center;
}
.v-time-col {
	width: 140px;
	background: #f8fafc;
	font-weight: bold;
	color: #555;
}
.v-day-col {
	width: calc((100% - 140px) / 7);
}
.v-body-row td {
	padding: 12px 6px;
	border: 1px solid #e2e8f0;
	text-align: center;
	font-size: 16px;
	vertical-align: middle;
}
.v-body-row:nth-child(even) {
	background: #fafbfc;
}
.v-body-row:hover {
	background: #f0f7ff;
}
.v-am, .v-pm {
	font-weight: bold;
	color: #1a5fb4;
}
.v-am-time, .v-pm-time {
	font-size: 15px;
	color: #888;
	display: block;
	margin-top: 2px;
	font-weight: normal;
}
.v-doctor-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}
.v-doctor {
	color: #2c3e50;
	font-weight: 500;
	background: #f0f7ff;
	padding: 3px 20px;
	border-radius: 32px;
	font-size: 16px;
	border: 1px solid #d0e0f7;
	white-space: nowrap;
	margin: 10px auto;
}
.v-doctor-empty {
	color: #ccc;
	font-size: 15px;
}
.v-today {
	background: #fff3e0 !important;
	position: relative;
}
.v-note {
	text-align: center;
	color: #888;
	font-size: 13px;
	margin-top: 20px;
}

/* ========== 响应式适配 (自适应不同设备) ========== */

/* 平板设备 (宽度 768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
.v-container {
	width: 95%;
	padding: 0 20px;
}
.v-title {
	font-size: 24px;
	letter-spacing: 2px;
}
.v-dept-row {
	font-size: 16px;
	height: 50px;
}
.v-header-row {
	font-size: 15px;
}
.v-header-row th {
	padding: 10px 4px;
}
.v-body-row td {
	padding: 8px 4px;
	font-size: 14px;
}
.v-time-col {
	width: 110px;
}
.v-doctor {
	padding: 2px 12px;
	font-size: 13px;
	white-space: normal; /* 允许换行 */
	word-break: keep-all;
}
.v-am-time, .v-pm-time {
	font-size: 12px;
}
}

/* 手机设备 (宽度 < 768px) */
@media (max-width: 767px) {
.v-container {
	width: 100%;
	padding: 0 12px;
	margin-top: 20px;
}
.v-title {
	font-size: 20px;
	margin-bottom: 20px;
	letter-spacing: 1px;
}
.v-schedule-wrapper {
	border-radius: 8px;
}
/* 表格字体调小，便于在手机上查看 */
.v-dept-row {
	font-size: 13px;
	height: auto;
	min-height: 44px;
}
.v-dept-row td {
	padding: 8px 4px;
}
.v-header-row {
	font-size: 12px;
}
.v-header-row th {
	padding: 8px 2px;
}
.v-time-col {
	width: 80px;
}
.v-body-row td {
	padding: 6px 2px;
	font-size: 11px;
}
.v-am, .v-pm {
	display: block;
	font-size: 11px;
}
.v-am-time, .v-pm-time {
	font-size: 9px;
	display: inline; /* 省空间 */
	margin-left: 2px;
}
.v-doctor-list {
	gap: 3px;
}
.v-doctor {
	padding: 2px 8px;
	font-size: 10px;
	margin: 4px auto;
	white-space: normal;
	word-break: keep-all;
}
.v-doctor-empty {
	font-size: 10px;
}
.v-note {
	font-size: 10px;
}
/* 让时间列与内容列更紧凑 */
.v-table {
	min-width: 480px; /* 手机依然保持横向滚动，避免单元格过分挤压 */
}
}

/* 超宽屏优化 (大桌面, >1440px) */
@media (min-width: 1440px) {
.v-container {
	width: 80%;
	max-width: 1400px;
	padding: 0 20px;
}
.v-title {
	font-size: 34px;
}
.v-dept-row {
	font-size: 20px;
	height: 68px;
}
.v-header-row {
	font-size: 20px;
}
.v-body-row td {
	font-size: 18px;
	padding: 16px 10px;
}
.v-time-col {
	width: 160px;
}
.v-doctor {
	font-size: 18px;
	padding: 5px 28px;
}
}

/* 小折叠屏 / 极窄设备 (宽度 < 380px) */
@media (max-width: 380px) {
.v-container {
	padding: 0 8px;
}
.v-title {
	font-size: 18px;
}
.v-dept-row {
	font-size: 11px;
}
.v-header-row {
	font-size: 10px;
}
.v-body-row td {
	font-size: 10px;
}
.v-time-col {
	width: 70px;
}
.v-doctor {
	font-size: 9px;
	padding: 1px 6px;
}
}
.xz-container {
	width: 90%;
	padding: 40px;
	margin: 0 auto;
}
.xz-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.xz-item {
	perspective: 1200px;
	perspective-origin: left center;
	height: 300px;
	cursor: pointer;
}
.xz-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.xz-item:hover .xz-card-inner {
	transform: rotateY(-180deg);
}
.xz-card-front,  .xz-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 16px;
	padding: 40px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.xz-card-front {
	background: url(../images/xzbg.jpg) right center no-repeat #ffffff;
	color: #1a1a1a;
	border: 1px solid #e8e8e8;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.xz-card-back {
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	color: #ffffff;
	transform: rotateY(180deg);
	box-shadow: 0 12px 40px rgba(0, 184, 148, 0.3);
}
.xz-icon {
	width: 72px;
	height: 72px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 46px;
	color: #999;
	transition: transform 0.3s ease;
}
.xz-item:hover .xz-icon {
	transform: scale(1.1);
	color: #fff;
}
.xz-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}
.xz-desc {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 24px;
}
.xz-card-front .xz-desc {
	color: #666;
}
.xz-card-back .xz-desc {
	color: rgba(255, 255, 255, 0.9);
}
.xz-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 0px solid #999;
	cursor: pointer;
}
.xz-card-front .xz-btn {
	color: #1a1a1a;
}
.xz-card-front .xz-btn:hover {
	background: #1a1a1a;
	color: #fff;
}
.xz-card-back .xz-btn {
	background: #ffffff;
	color: #00b894;
	border-color: #ffffff;
}
.xz-card-back .xz-btn:hover {
	background: transparent;
	color: #ffffff;
}
.xz-card-front::after,  .xz-card-back::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-20deg);
	transition: left 0.7s ease;
}
.xz-item:hover .xz-card-front::after,  .xz-item:hover .xz-card-back::after {
	left: 150%;
}
 @media (max-width: 768px) {
.xz-list {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.xz-item {
	height: 300px;
}
.xz-card-front {
	padding: 40px 20px
}
.xz-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
}
.xz-btn {
	padding: 0px;
	font-size: 14px
}
}
 @media (max-width: 480px) {
.xz-list {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.xz-container {
	width: 90%;
	padding: 0px;
	margin: 0 auto;
}
}
/* 主容器，卡片列表区 */
.as-faq-container {
	width: 90%;
	padding: 40px 40px 0;
	margin: 0 auto;
}
/* 问答列表 - ul 结构 */
.as-faq-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
/* 每个问答卡片 li — 柔和边框与圆角 */
.as-faq-item {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 14px rgba(0, 20, 30, 0.05);
	transition: box-shadow 0.2s ease;
	overflow: hidden;
	border: 1px solid #e0edf5;
	/* 新增：渐入动画核心 */
	opacity: 0;
	transform: translateY(28px);
	animation: as-fadeSlideUp 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}
/* 为每个卡片增加不同的延迟，营造依次渐入的流畅感 (动画延迟) */
.as-faq-item:nth-child(1) {
	animation-delay: 0.05s;
}
.as-faq-item:nth-child(2) {
	animation-delay: 0.12s;
}
.as-faq-item:nth-child(3) {
	animation-delay: 0.19s;
}
.as-faq-item:nth-child(4) {
	animation-delay: 0.26s;
}
.as-faq-item:nth-child(5) {
	animation-delay: 0.33s;
}
.as-faq-item:nth-child(6) {
	animation-delay: 0.40s;
}
.as-faq-item:nth-child(7) {
	animation-delay: 0.47s;
}
.as-faq-item:nth-child(8) {
	animation-delay: 0.54s;
}

        /* 定义淡入 + 上浮动画 */
        @keyframes as-fadeSlideUp {
 0% {
 opacity: 0;
 transform: translateY(20px);
}
 100% {
 opacity: 1;
 transform: translateY(0);
}
}
.as-faq-item:hover {
	box-shadow: 0 14px 28px -10px rgba(18, 82, 110, 0.15);
	border-color: #bdd9ec;
}
/* 问题行: 问号相关图标 + 问题标题 */
.as-question-row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px 20px 10px;
	;
	border-bottom: 1px solid #eef3f9;
}
/* 问题图标区 —— 统一使用“问”相关图标 (Question mark, 对话框问号等) */
.as-q-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background: #e6f2fa;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1c7ea5;
	font-size: 20px;
}
/* 问题标题文字 */
.as-question-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.2px;
	color: #0b3f54;
	word-break: break-word;
}
.as-question-text a {
	color: #0b3f54;
}
/* 答案区域: 与第一行图标对齐 (flex布局) */
.as-answer-row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 10px 20px;
}
/* 答案图标区 —— 统一使用“答”相关图标 (对话气泡、回复、勾选或回答符号) */
.as-answer-icon {
	flex-shrink: 0;
	width: 36px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-top: 20px;
	color: #54809a;
	font-size: 20px;
}
/* 答案内容区域 */
.as-answer-content {
	flex: 1;
	font-size: 16px;
	color: #2c4b60;
	line-height: 1.55;
}
.as-answer-content p {
	margin-bottom: 10px;
}
.as-answer-content p:last-child {
	margin-bottom: 0;
}
.as-answer-content strong, .as-answer-content b {
	color: #166e8a;
}
/* 查看更多链接区 */
.as-more-link-wrap {
	padding: 8px 10px;
	text-align: right;
	border-top: 1px solid #ecf3f8;
	margin-top: 0rem;
}
.as-more-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 16px;
	font-weight: 600;
	color: #1c7ea5;
	background: #f0f8fe;
	padding: 10px 20px;
	border-radius: 12px;
	transition: all 0.2s;
	text-decoration: none;
	letter-spacing: 0.2px;
	border: 1px solid #cde3ef;
}
.as-more-link i {
	font-size: 16px;
	transition: transform 0.2s;
}
.as-more-link:hover {
	background: #e2f0fa;
	border-color: #8fc3df;
	color: #0c5a7a;
	transform: translateX(2px);
}
.as-more-link:hover i {
	transform: translateX(3px);
}

        /* 移动端适配 */
        @media (max-width: 640px) {
body {
	padding: 0px;
}
.as-question-text {
	font-size: 16px;
}
.as-question-row {
	padding: 10px 20px;
	gap: 10px;
}
.as-answer-row {
	padding: 10px 20px;
	gap: 10px;
}
.as-q-icon, .as-answer-icon {
	width: 22px;
	font-size: 16px;
	height: 22px;
}
.as-more-link-wrap {
	padding: 10px 20px;
}
.as-page-header h1 {
	font-size: 16px;
}
.as-faq-container {
	width: 98%;
	padding: 40px 40px 0 20px;
	margin: 0 auto;
}
}
/* 整体容器 */
.recruit-container {
	width: 90%;
	padding: 0 40px;
	margin: 40px auto;
}
/* ========= 人才理念区块 ========= */
.philosophy-section {
	margin-bottom: 70px;
}
.section-badge {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	background: #e0f2fe;
	color: #0284c7;
	padding: 5px 12px;
	border-radius: 30px;
	margin-bottom: 20px;
}
.philosophy-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 14px;
	color: #0f172a;
	letter-spacing: -0.02em;
}
.philosophy-title span {
	color: #2c7da0;
	border-bottom: 3px solid #61a5c2;
	display: inline-block;
}
.philosophy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	margin-top: 32px;
}
.philosophy-card {
	background: url(../images/rcbg.jpg) right center no-repeat;
	;
	border-radius: 12px;
	padding: 32px 24px;
	box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
	transition: all 0.25s ease;
	border: 1px solid #eef2ff;
}
.philosophy-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 30px -12px rgba(0, 0, 0, 0.1);
	border-color: #cbd5e1;
}
.card-icon {
	font-size: 24px;
	color: #2c7da0;
	margin-bottom: 20px;
	background: #eef2ff;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
}
.philosophy-card h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #0f172a;
}
.philosophy-card p {
	color: #334155;
	font-size: 16px;
	line-height: 1.5;
}
/* ========= 招聘列表区域 ========= */
.jobs-section {
	margin-top: 20px;
}
.jobs-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 40px;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 16px;
}
.jobs-header h2 {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.3px;
}
.jobs-header h2 i {
	color: #2c7da0;
	margin-right: 12px;
	font-size: 24px;
}
.job-count {
	background: #e2e8f0;
	padding: 6px 14px;
	border-radius: 40px;
	font-size: 16px;
	font-weight: 500;
	color: #1e293b;
}
/* 职位列表网格 */
.jobs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);  /* 固定一行三个，每列等宽 */
	gap: 18px;
}
/* 职位卡片 */
.job-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.25s;
	box-shadow: 0 5px 15px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.05);
	border: 1px solid #edf2f7;
	display: flex;
	flex-direction: column;
}
.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}
.job-content {
	padding: 28px 24px 20px;
	flex: 1;
}
.job-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.job-title i {
	color: #2c7da0;
	font-size: 20px;
}
.job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
	font-size: 15px;
	color: #475569;
	border-bottom: 1px dashed #e9eef3;
	padding-bottom: 14px;
}
.job-meta span i {
	width: 20px;
	margin-right: 6px;
	color: #5f8b9f;
}
.job-desc {
	font-size: 15px;
	color: #334155;
	line-height: 1.5;
	margin: 16px 0 12px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.job-requirements {
	background: #f8fafc;
	border-radius: 10px;
	padding: 12px 16px;
	margin: 16px 0 8px;
	font-size: 16px;
	line-height: 33px;
	color: #1e293b;
}
.job-requirements strong {
	font-weight: 600;
	color: #0c4e6e;
}
.job-footer {
	padding: 16px 24px 24px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
}
/* 申请按钮 - 纯静态样式，无JS交互但保留视觉（作为展示用途）*/
.btn-apply {
	background: #eef2ff;
	border: none;
	padding: 8px 22px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 16px;
	color: #1e4a6e;
	cursor: default;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: inherit;
	transition: none;
	pointer-events: none;  /* 由于不要js调用，按钮不可点击，仅展示 */
	opacity: 0.85;
}
.btn-apply i {
	font-size: 15px;
}
/* 如需保持样式完整，但无任何javascript交互 */
.job-department {
	font-size: 0.75rem;
	background: #eef2ff;
	padding: 4px 12px;
	border-radius: 30px;
	color: #0369a1;
	font-weight: 500;
}

        /* 响应式微调 */
        @media (max-width: 768px) {
.recruit-container {
	padding: 0px 0px;
	margin:10px auto;
	 width:98%
}
.philosophy-title {
	font-size: 18px;
}
.jobs-header h2 {
	font-size: 16px;
}
.jobs-grid {
	grid-template-columns: 1fr;
}
.job-meta {
	gap: 12px;
}
}
/* 纯静态说明提示小标识 */
.static-note {
	background: #f1f5f9;
	border-radius: 20px;
	padding: 12px 24px;
	margin-top: 32px;
	text-align: center;
	font-size: 0.8rem;
	color: #475569;
	display: inline-block;
	width: auto;
}
/* 主卡片容器，所有样式前缀 zn- */
.zn-guide-container {
	width: 90%;
	padding: 0 40px;
	margin: 40px auto;
	transition: all 0.2s ease;
}
/* 地图板块 */
.zn-map-wrapper {
	position: relative;
	width: 100%;
	height: 420px;
	background: #e9edf2;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
	border-bottom: 2px solid rgba(0, 80, 140, 0.1);
}
.zn-map-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background: #d4dfe9;
}
/* 地图上的位置浮点指引 (模拟标记) */
.zn-map-marker {
	position: absolute;
	top: 55%;
	left: 58%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	pointer-events: none;
	z-index: 10;
}
.zn-marker-icon {
	font-size: 40px;
	color: #d32f2f;
	filter: drop-shadow(0 6px 8px rgba(0,0,0,0.3));
	line-height: 1;
}
.zn-marker-pulse {
	position: absolute;
	width: 28px;
	height: 28px;
	background: rgba(211, 47, 47, 0.25);
	border-radius: 50%;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	animation: zn-pulse 2s infinite;
}
 @keyframes zn-pulse {
 0% {
transform: translateX(-50%) scale(0.8);
opacity: 0.7;
}
 70% {
transform: translateX(-50%) scale(2.2);
opacity: 0;
}
 100% {
transform: translateX(-50%) scale(0.8);
opacity: 0;
}
}
.zn-marker-label {
	background: white;
	padding: 10px 20px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	color: #1e3b5c;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	margin-top: 15px;
	letter-spacing: 0.3px;
	white-space: nowrap;
}
.zn-marker-label span {
	font-size: 15px;
	line-height: 33px;
	color: #1e3b5c;
}
/* 地址突出显示 */
.zn-address-bar {
	background: #ffffff;
	padding: 10px 20px;
	border-bottom: 1px solid #eef2f6;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 18px;
	color: #0b2b44;
}
.zn-address-bar i {
	color: #0d6e9e;
	font-size: 18px;
	width: 18px;
	text-align: center;
}
.zn-address-text {
	font-weight: 600;
	letter-spacing: 0.3px;
}
/* 左右两栏布局 */
.zn-info-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	background: #ffffff;
}
.zn-left-col {
	flex: 1 1 55%;
	padding: 30px 20px;
	border-right: 1px solid #e9eff4;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.zn-right-col {
	flex: 1 1 45%;
	padding: 30px 20px;
	;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: #fafbfc;
}
/* 每个信息块 */
.zn-info-block {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.zn-icon-circle {
	min-width: 35px;
	height: 35px;
	background: #e4f0f9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0b4b6b;
	font-size: 16px;
	transition: 0.2s;
}
.zn-right-col .zn-icon-circle {
	background: #eaf3fb;
	color: #135d82;
}
.zn-detail {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.zn-detail-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 33px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #4a627a;
	margin-bottom: 0px;
}
.zn-detail-content {
	font-size: 16px;
	font-weight: 500;
	color: #13293d;
	line-height: 1.5;
	word-break: break-word;
}
.zn-detail-content a {
	color: #13293d;
	text-decoration: none;
	transition: color 0.2s;
}
.zn-detail-content a:hover {
	color: #0a5b8c;
	text-decoration: underline;
}
.zn-route-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.zn-route-list li {
	background: #ecf3fa;
	padding: 6px 10px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #0b3b55;
	white-space: nowrap;
}
/* 服务时间区块 (底部) */
.zn-service-time {
	margin-top: 0;
	padding: 20px;
	background: #e7f1fa;
	border-top: 2px solid #cbddec;
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	color: #05314e;
	font-weight: 500;
	font-size: 16px;
	border-radius: 0 0 12px 12px;
}
.zn-service-time i {
	font-size: 18px;
	color: #0c6b46;
}
.zn-service-text {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 15px;
}
.zn-service-text strong {
	font-size: 18px;
	font-weight: 700;
	margin-right: 10px;
	color: #022b40;
}
.zn-holiday-badge {
	color: #f60;
	padding: 0px;
	font-size: 16px;
	font-weight: 600;
	margin-left: 10px;
}
hr {
	display: none;
}

    /* 响应式调整 */
    @media (max-width: 700px) {
.zn-info-grid {
	flex-direction: column;
}
.zn-left-col {
	border-right: none;
	border-bottom: 1px solid #e2e8f0;
}
.zn-guide-container {
	width: 96%;
	padding: 0 10px;
	margin: 40px auto;
	transition: all 0.2s ease;
}
.zn-map-wrapper {
	height: 250px;
}
}
 @media (max-width: 480px) {
.zn-guide-container {
	width: 98%;
	padding: 0 10px;
	margin: 40px auto;
	transition: all 0.2s ease;
}
.zn-address-bar {
	padding: 1rem 1.2rem;
	font-size: 0.95rem;
}
.zn-left-col, .zn-right-col {
	padding: 15px;
}
.zn-holiday-badge {
	margin-left: 0px;
}
}
/* 主卡片容器 */
.fk-feedback-container {
	width: 80%;
	padding: 40px 40px 0 40px;
	margin: 0 auto;
	overflow: hidden;
}
/* 主要内容区 */
.fk-content {
	padding: 20px 20px 0px 20px;
}
/* 反馈须知单独一整行 */
.fk-notice-row {
	margin-bottom: 20px;
	width: 100%;
}
.fk-notice {
	background: #f0f9ff;
	border-left: 5px solid #2c7da0;
	padding: 20px 30px;
	border-radius: 12px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	flex-wrap: wrap;
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.fk-notice-icon {
	font-size: 30px;
}
.fk-notice-text {
	flex: 1;
	font-size: 16px;
	color: #0a3b4f;
}
.fk-notice-text strong {
	font-weight: 700;
	color: #0b5e7c;
}
.fk-notice-text p {
	margin-top: 4px;
}
/* 表单区域：三个字段（姓名/联系方式/反馈类别）放同一行 */
.fk-form-fields-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 15px;
}
.fk-field-item {
	flex: 1;
	min-width: 180px;
}
/* 通用表单组样式 */
.fk-form-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}
.fk-label {
	font-weight: 600;
	font-size: 16px;
	color: #1f3b4c;
	display: flex;
	align-items: center;
	gap: 6px;
}
.fk-required {
	color: #e03a3a;
	font-size: 16px;
	line-height: 1;
}
.fk-label-note {
	font-weight: normal;
	font-size: 15px;
	color: #5f7f95;
	margin-left: 4px;
}
.fk-input, .fk-select {
	width: 100%;
	padding: 10px 15px;
	font-size: 15px;
	font-family: inherit;
	border: 1px solid #dce5ec;
	border-radius: 8px;
	background-color: #ffffff;
	transition: all 0.2s;
	outline: none;
	color: #1e2f3e;
}
.fk-input:focus, .fk-select:focus, .fk-textarea:focus {
	border-color: #2c7da0;
	box-shadow: 0 0 0 3px rgba(44, 125, 160, 0.2);
}
/* 反馈内容单独一行 */
.fk-message-section {
	margin-bottom: 20px;
}
.fk-textarea {
	width: 100%;
	padding: 20px 30px;
	font-size: 15px;
	font-family: inherit;
	border: 1.5px solid #dce5ec;
	border-radius: 12px;
	background-color: #ffffff;
	transition: all 0.2s;
	outline: none;
	resize: vertical;
	min-height: 130px;
}
/* 按钮组: 原生提交与重置 (无JS, 依靠form行为) */
.fk-button-group {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.fk-btn {
	border: none;
	padding: 10px 25px;
	;
	font-weight: 600;
	font-size: 16px;
	border-radius: 40px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	color: #1e3a4d;
}
.fk-btn-primary {
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	color: white;
	box-shadow: 0 4px 8px rgba(11, 94, 124, 0.2);
	border: none;
}
.fk-btn-primary:hover {
	background: #00b894;
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(11, 94, 124, 0.25);
}
.fk-btn-secondary {
	background: #eef2f7;
	border: 1px solid #cbdae6;
}
.fk-btn-secondary:hover {
	background: #e2e8f0;
	transform: translateY(-1px);
}
/* 静态提示（无JS，告知提交行为） */
.fk-static-note {
	margin-top: 1.5rem;
	background: #fef7e0;
	padding: 0.8rem 1.2rem;
	border-radius: 20px;
	font-size: 0.8rem;
	color: #a0691b;
	border-left: 4px solid #f4b942;
	display: flex;
	align-items: center;
	gap: 10px;
}
.fk-static-note span:first-child {
	font-size: 1.2rem;
}
.fk-footer {
	background: #f8fafd;
	border-top: 1px solid #e4edf2;
	padding: 1rem 2rem;
	text-align: center;
	font-size: 0.75rem;
	color: #5c7f98;
}

        /* 响应式适配：小屏幕时表单字段竖排 */
        @media (max-width: 700px) {
.fk-form-fields-row {
	flex-direction: column;
	gap: 1rem;
}
.fk-field-item {
	min-width: auto;
}
.fk-content {
	padding: 10px;
}
}
 @media (max-width: 640px) {
.fk-header h1 {
	font-size: 16px;
}
.fk-btn {
	padding: 10px 30px;
	font-size: 16px;
}
.fk-feedback-container {
	width: 96%;
	padding: 10px;
	margin: 0 auto;
	overflow: hidden;
}
.fk-notice-text p {
	font-size: 14px;
	line-height: 28px;
}
.fk-button-group {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 5px 0;
}
}
.docn-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0px;
}
/* ========== 第一行：医生头部信息 ========== */
.docn-doctor-header {
	display: flex;
	gap: 30px;
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	margin-bottom: 24px;
	align-items: flex-start;
}
.docn-doctor-photo {
	flex-shrink: 0;
	width: 220px;
	height: 314px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.docn-doctor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.docn-doctor-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 8px;
}
.docn-doctor-name {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	letter-spacing: 1px;
}
.docn-doctor-dept {
	font-size: 16px;
	line-height: 33px;
	color: #2d6a4f;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
}
.docn-doctor-title {
	font-size: 16px;
	line-height: 35px;
	color: #555;
	font-weight: 600;
}
.docn-doctor-specialty {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	background: #f8f9fa;
	padding: 10px 14px;
	border-radius: 6px;
	border-left: 3px solid #2d6a4f;
}
.docn-doctor-specialty-label {
	color: #1a1a2e;
	font-weight: 600;
}
.docn-doctor-schedule {
	margin-top: 4px;
}
.docn-doctor-schedule a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	padding: 8px 20px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.docn-doctor-schedule a:hover {
	background: #00a37a;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}
.docn-doctor-schedule a::after {
	content: "→";
	font-size: 12px;
}
/* ========== 第二行：个人简介 ========== */
.docn-doctor-section {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	margin-bottom: 24px;
}
.docn-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8e8e8;
	position: relative;
}
.docn-section-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 2px;
	background: #2d6a4f;
}
.docn-section-content {
	font-size: 16px;
	color: #555;
	line-height: 33px;
	text-align: justify;
}
/* ========== 第三行：个人先进事迹 ========== */
.docn-achievement-list {
	list-style: none;
}
.docn-achievement-list li {
	margin-bottom: 2px;
}
.docn-achievement-list li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 18px;
	text-decoration: none;
	color: #333;
	border-radius: 8px;
	transition: all 0.25s ease;
	border: 1px solid transparent;
}
.docn-achievement-list li a:hover {
	background: #f0f7f4;
	border-color: #d4edda;
	transform: translateX(4px);
}
.docn-achievement-list li:nth-child(odd) a {
	background: #fafbfc;
}
.docn-achievement-list li:nth-child(odd) a:hover {
	background: #f0f7f4;
}
.docn-achievement-title {
	font-size: 15px;
	color: #1a1a2e;
	font-weight: 500;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 20px;
}
.docn-achievement-title::before {
	content: "▪";
	color: #2d6a4f;
	margin-right: 10px;
	font-size: 10px;
}
.docn-achievement-time {
	font-size: 15px;
	color: #888;
	flex-shrink: 0;
	font-family: "Courier New", monospace;
}

        /* ========== 响应式适配 ========== */
        @media (max-width: 768px) {
.docn-doctor-header {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.docn-doctor-photo {
	width: 150px;
	height: 190px;
}
.docn-doctor-info {
	align-items: center;
	width: 100%;
}
.docn-doctor-dept::before {
	display: none;
}
.docn-doctor-specialty {
	text-align: left;
}
.docn-achievement-list li a {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
.docn-achievement-title {
	font-size: 15px;
	flex: 0;
	overflow: hidden;
	text-outline: none;
	white-space: nowrap;
	white-space: normal;
	padding-right: 20px;
}
.docn-achievement-time {
	align-self: left;
	font-size: 14px
}
}
.rcn-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0px;
}
/* 主卡片样式 */
.rcn-job-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	;
	border: 1px solid #e2e8f0;
	overflow: hidden;
	margin-bottom: 20px;
}
.rcn-job-header {
	padding: 40px;
	border-bottom: 1px solid #e2e8f0;
}
.rcn-job-title {
	font-size: 22px;
	font-weight: 700;
	color: #0f2b3d;
	margin-bottom: 15px;
}
.rcn-job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 20px 0 10px 0;
}
.rcn-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #2c5f8a;
	background: #f8fafc;
	padding: 10px 20px;
	border-radius: 8px;
}
.rcn-meta-item i {
	color: #0a7e8c;
	width: 18px;
}
.rcn-section {
	padding: 20px 40px;
	border-bottom: 1px solid #e2e8f0;
}
.rcn-section p {
	font-size: 16px;
	line-height: 35px;
}
.rcn-section:last-child {
	border-bottom: none;
}
.rcn-section-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 30px;
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 0px;
	border-bottom: 1px #f0f0f0 solid;
}
.rcn-section-title i {
	color: #0a7e8c;
	font-size: 20px;
}
.rcn-desc-list {
	list-style: none;
	padding-left: 0;
}
.rcn-desc-list li {
	margin-bottom: 10px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.rcn-desc-list li i {
	color: #0a7e8c;
	margin-top: 10px;
	font-size: 18px;
	min-width: 20px;
}
.rcn-desc-list li span {
	flex: 1;
}
/* 招聘咨询卡片独立样式 */
.rcn-contact-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	;
	border: 1px solid #e2e8f0;
	padding: 20px 40px;
	margin-bottom: 10px;
}
.rcn-contact-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 0px;
}
.rcn-contact-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.rcn-contact-info p {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
}
.rcn-contact-info i {
	width: 24px;
	color: #e2e8f0;
	font-size: 18px;
}
.rcn-hr {
	margin: 20px 0;
	border-color: #e2e8f0;
}

        /* 响应式 */
        @media (max-width: 640px) {
.rcn-container {
	padding: 0 16px;
}
.rcn-job-header, .rcn-section, .rcn-contact-card {
	padding: 15px;
}
.rcn-job-title {
	font-size: 15px;
}
.rcn-job-meta {
	gap: 15px;
}
}
.yy-container {
	max-width: 82%;
	margin: 0 auto;
	padding: 40px 0px;
}
/* ========== 桌面端布局 ========== */
.yy-desktop-layout {
	display: block;
}
.yy-top-section {
	display: flex;
	gap: 30px;
	margin-bottom: 10px;
	align-items: flex-start;
}
.yy-text-content {
	flex: 1;
	padding: 5px 25px 35px 0px;
}
.yy-text-content h1 {
	font-size: 28px;
	color: #1a1a1a;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e8e8e8;
}
.yy-text-content p {
	font-size: 16px;
	line-height: 33px;
	color: #444;
	margin-bottom: 16px;
	text-align: justify;
}
.yy-right-images {
	width: 620px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.yy-image-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.yy-image-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.yy-image-card img {
	width: 100%;
	height: 344px;
	object-fit: cover;
	display: block;
}
.yy-image-card-title {
	padding: 16px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
}
.yy-divider {
	display: flex;
	align-items: center;
	margin: 10px 0;
	gap: 1px;
}
.yy-divider-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, transparent, #d0d0d0, transparent);
}
.yy-divider-text {
	color: #999;
	font-size: 14px;
	white-space: nowrap;
}
.yy-bottom-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 30px;
}
.yy-bottom-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.yy-bottom-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.yy-bottom-card img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
}
.yy-bottom-card-title {
	padding: 18px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
}
/* ========== 移动端布局（默认隐藏） ========== */
.yy-mobile-layout {
	display: none;
}
.yy-mobile-image-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	margin-bottom: 20px;
}
.yy-mobile-image-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
.yy-mobile-image-card-title {
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
}
.yy-mobile-text-block {
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	margin-bottom: 20px;
}
.yy-mobile-text-block h1 {
	font-size: 22px;
	color: #1a1a1a;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #e8e8e8;
}
.yy-mobile-text-block p {
	font-size: 16px;
	color: #444;
	margin-bottom: 14px;
	text-align: justify;
	line-height: 1.9;
}
.yy-mobile-bottom-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.yy-mobile-bottom-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.yy-mobile-bottom-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.yy-mobile-bottom-card-title {
	padding: 14px 16px;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
}
.yy-text-b {
	grid-column: 1;
	grid-row: 2;
	padding-right: 10px;
	margin-top: 0;
}
.yy-text-b .yy-feature-list {
	list-style: none;
	margin-top: 4px;
}
.yy-text-b .yy-feature-list li {
	position: relative;
	padding-left: 38px;
	margin-bottom: 8px;
	font-size: 18px;
	color: #555;
	line-height: 1.7;
}
.yy-text-b .yy-feature-list li::before {
	content: '';
	position: absolute;
	left: 32px;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--yy-accent);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.18);
}
		

        /* ========== 响应式切换 ========== */
     
	  @media (max-width: 1440px) {
.yy-container {
	max-width: 92%;
	margin: 0 auto;
	padding: 40px 0px;
}
.yy-text-content {
	flex: 1;
	padding: 5px 0px 35px 0px;
}
.yy-text-content p {
	font-size: 15px;
	line-height: 28px;
	color: #444;
	margin-bottom: 10px;
	text-align: justify;
}
.yy-right-images {
	width: 550px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 30px;
}
.yy-image-card img {
	width: 100%;
	height: 305px;
	object-fit: cover;
	display: block;
}
.yy-bottom-card img {
	width: 100%;
	height: auto;
}
}
 @media (max-width: 768px) {
.yy-desktop-layout {
	display: none;
}
.yy-mobile-layout {
	display: block;
}
.yy-container {
	padding: 20px 10px;
	width: 96%;
	max-width: 96%
}
.yy-bottom-section {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
.yy-mobile-image-card img {
	height: auto;
}
.yy-bottom-card img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}
}

        /* 平板端适配 */
        @media (max-width: 1024px) and (min-width: 769px) {
.yy-top-section {
	flex-direction: column;
}
.yy-right-images {
	width: 100%;
	flex-direction: row;
}
.yy-image-card {
	flex: 1;
}
.yy-bottom-section {
	grid-template-columns: repeat(2, 1fr);
}
}
.tc-parking-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: linear-gradient(135deg, #0090c9 0%, #00a37a 100%);
	border: none;
	padding: 8px 20px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 600;
	color: white;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	box-shadow: 0 8px 18px rgba(0, 80, 160, 0.3);
	backdrop-filter: blur(2px);
	letter-spacing: 0.3px;
	margin: 0px 0 0 50px;
}
.tc-parking-button i {
	font-size: 16px;
	filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
	transition: transform 0.2s ease;
}
.tc-parking-button span {
	line-height: 1;
}
/* 悬停效果 */
.tc-parking-button:hover {
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	transform: scale(1.02);
	box-shadow: 0 12px 24px rgba(0, 70, 140, 0.4);
}
.tc-parking-button:hover i {
	transform: translateX(2px);
}
.tc-parking-button:active {
	transform: scale(0.98);
}
.tczn-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0px;
	border-radius: 12px;
}
/* ========== tczn- 页面头部 ========== */
.tczn-header {
	text-align: center;
	padding: 28px 20px 10px;
	position: relative;
	margin: 20px auto
}
.tczn-header-icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #00a8e8 0%, #00b894 100%);
	border-radius: 50%;
	position: relative;
}
.tczn-header-icon i {
	margin-top: 12px;
	font-size: 22px;
	color: #fff;
	line-height: 1;
}
.tczn-page-title {
	font-size: 18px;
	font-weight: 700;
	color: #2c3e50;
	letter-spacing: 0.5px;
	margin: 0;
	line-height: 1.4;
}
.tczn-page-subtitle {
	font-size: 16px;
	color: #888;
	margin-top: 4px;
	font-weight: 400;
}
/* ========== tczn- 停车场区块 ========== */
.tczn-section {
	margin-top: 0px;
}
.tczn-section-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.tczn-section-title {
	font-size: 18px;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1.4;
	margin: 0;
}
/* ========== tczn- 标签 ========== */
.tczn-tag {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	letter-spacing: 0.3px;
	white-space: nowrap;
}
.tczn-tag--ground {
	background: #e8f5e9;
	color: #2e7d32;
}
.tczn-tag--underground {
	background: #e3f2fd;
	color: #1565c0;
}
.tczn-tag-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}
/* ========== tczn- 入口卡片网格 ========== */
.tczn-entrance-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
 @media (min-width: 640px) {
.tczn-entrance-grid--two {
	grid-template-columns: 1fr 1fr;
}
}
/* ========== tczn- 入口卡片 ========== */
.tczn-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	display: flex;
	flex-direction: column;
}
.tczn-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
	transform: translateY(-2px);
}
/* ========== tczn- 图片区域 ========== */
.tczn-card-image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e9ecf1;
	cursor: pointer;
	flex-shrink: 0;
	min-height: 160px;
}
.tczn-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.tczn-card:hover .tczn-card-image img {
	transform: scale(1.03);
}
.tczn-card-image1 {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #e9ecf1;
	cursor: pointer;
	flex-shrink: 0;
	min-height: 160px;
}
.tczn-card-image1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.tczn-card:hover .tczn-card-image1 img {
	transform: scale(1.03);
}
/* 占位图样式 */
.tczn-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e8ecf1 0%, #dfe3e9 100%);
	color: #a0a8b4;
	gap: 8px;
}
.tczn-placeholder svg {
	width: 48px;
	height: 48px;
	opacity: 0.55;
}
.tczn-placeholder-text {
	font-size: 13px;
	color: #9aa3b0;
	letter-spacing: 0.5px;
	font-weight: 500;
}
/* 入口编号角标 */
.tczn-card-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #e53935;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 4px;
	letter-spacing: 0.5px;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(229, 57, 53, 0.35);
}
/* ========== tczn- 卡片信息区 ========== */
.tczn-card-body {
	padding: 16px 18px 18px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.tczn-card-entrance-name {
	font-size: 18px;
	font-weight: 700;
	color: #2c3e50;
	line-height: 1.3;
	margin: 0;
}
.tczn-card-address {
	font-size: 16px;
	color: #555;
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
}
.tczn-card-address-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: #1a73e8;
}
.tczn-card-address-icon svg {
	width: 20px;
	height: 20px;
}
.tczn-card-note {
	font-size: 14px;
	color: #888;
	margin-top: 2px;
	padding-top: 8px;
	border-top: 1px dashed #e8e8e8;
	line-height: 1.4;
}
.tczn-card-note strong {
	color: #555;
	font-weight: 600;
}
/* ========== tczn- 高亮提示条 ========== */
.tczn-highlight-bar {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fffbe6;
	border: 1px solid #ffe58f;
	border-radius: 6px;
	padding: 8px 14px;
	font-size: 14px;
	color: #8a6d14;
	margin-top: 6px;
	line-height: 1.4;
}
.tczn-highlight-bar svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: #d4a017;
}
/* ========== tczn- 额外图片网格 (用于地下停车场附加图片) ========== */
.tczn-extra-images {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 16px;
}
 @media (min-width: 500px) {
.tczn-extra-images {
	grid-template-columns: 1fr 1fr;
}
}
.tczn-extra-image-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.25s ease;
}
.tczn-extra-image-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
}
.tczn-extra-image-card .tczn-card-image {
	aspect-ratio: 16 / 9;
	min-height: 140px;
}

        /* ========== tczn- 响应式调整 ========== */
        @media (max-width: 639px) {
.tczn-container {
	padding: 12px 10px 32px;
}
.tczn-header {
	padding: 20px 12px 6px;
}
.tczn-page-title {
	font-size: 18px;
}
.tczn-section-title {
	font-size: 18px;
}
.tczn-card-entrance-name {
	font-size: 17px;
}
.tczn-card-address {
	font-size: 16px;
}
.tczn-card-body {
	padding: 14px 14px 16px;
}
.tczn-card-image {
	aspect-ratio: 16 / 9;
	min-height: 140px;
}
.tczn-section-header {
	gap: 8px;
	margin-bottom: 12px;
}
}
 @media (min-width: 768px) {
.tczn-container {
	padding: 28px 24px 48px;
}
.tczn-card-image {
	aspect-ratio: 4 / 3;
	min-height: 180px;
}
.tczn-card-image1 {
	aspect-ratio: 16 / 9;
	min-height: 180px;
}
}
 @media (min-width: 1024px) {
.tczn-container {
	padding: 32px 20px 56px;
}
}
/* 留言卡片 */
.lyx-message-card {
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 18px;
	padding: 22px 24px 20px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	margin: 20px 40px;
}
.lyx-message-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10), 0 3px 10px rgba(0, 0, 0, 0.05);
	border-color: #dce8ec;
	transform: translateY(-1px);
}
/* 左侧装饰条 */
       

.lyx-message-card:hover::before {
	opacity: 0.85;
}
.lyx-message-card.lyx-replied::before {
	background: #48bb78;
}
.lyx-message-card.lyx-pending::before {
	background: #f0a04b;
}
/* 第一行：留言人和时间 */
.lyx-message-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}
.lyx-user-info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.lyx-user-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e0f0f1 0%, #d0e8e9 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #2c7a7b;
	flex-shrink: 0;
	border: 2px solid #e8f4f5;
}
.lyx-user-name {
	font-weight: 600;
	font-size: 18px;
	color: #2d3748;
	letter-spacing: 0.01em;
}
.lyx-user-badge {
	display: inline-block;
	font-size: 0.7rem;
	background: #e6f4f4;
	color: #1a5c5d;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: 500;
	letter-spacing: 0.02em;
	margin-left: 4px;
}
.lyx-message-time {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	color: #8899aa;
	white-space: nowrap;
}
.lyx-message-time i {
	font-size: 16px;
	color: #b0bec5;
}
/* 第二行：留言问题 */
.lyx-message-content {
	background: #fafcfd;
	border-radius: 8px;
	padding: 16px 18px;
	margin-bottom: 16px;
	border: 1px solid #eef3f6;
	position: relative;
}
.lyx-message-content::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 24px;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 9px solid #fafcfd;
}
.lyx-message-label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 18px;
	font-weight: bold;
	color: #2c7a7b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	background: #e6f4f4;
	padding: 3px 10px;
	border-radius: 4px;
}
.lyx-message-text {
	font-size: 16px;
	color: #2d3748;
	line-height: 1.7;
	word-break: break-word;
}
/* 第三行：管理员回复 */
.lyx-reply-section {
	background: #e6f4f4;
	border-radius: 8px;
	padding: 16px 18px;
	border-left: 3px solid #e6f4f4;
	position: relative;
	transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.lyx-reply-section.lyx-no-reply {
	border-left-color: #e0c36a;
	background: #fffdf7;
}
.lyx-reply-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.lyx-reply-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #48bb78;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	flex-shrink: 0;
}
.lyx-reply-section.lyx-no-reply .lyx-reply-icon {
	background: #e0c36a;
}
.lyx-reply-label {
	font-weight: bold;
	font-size: 18px;
	color: #2d6a4f;
	letter-spacing: 0.02em;
}
.lyx-reply-section.lyx-no-reply .lyx-reply-label {
	color: #8a6d30;
}
.lyx-reply-time {
	font-size: 0.72rem;
	color: #8899aa;
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 4px;
}
.lyx-reply-text {
	font-size: 16px;
	color: #444;
	line-height: 1.7;
	padding-left: 0px;
	word-break: break-word;
}
.lyx-reply-section.lyx-no-reply .lyx-reply-text {
	color: #8a7a50;
	font-style: italic;
}
/* 底部 */
.lyx-footer {
	text-align: center;
	padding: 20px;
	color: #8899aa;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}
.lyx-footer i {
	color: #e57373;
	margin: 0 2px;
}

        /* 响应式 */
        @media (max-width: 600px) {
.lyx-header h1 {
	font-size: 1.5rem;
}
.lyx-message-card {
	padding: 16px 14px 14px;
}
.lyx-message-meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}
.lyx-message-time {
	align-self: flex-start;
}
.lyx-reply-text {
	padding-left: 0;
	margin-top: 6px;
}
.lyx-stats-bar {
	gap: 8px;
}
.lyx-stat-card {
	padding: 12px 10px;
}
.lyx-stat-number {
	font-size: 1.2rem;
}
.lyx-message-card {
	margin: 20px 20px;
}
}
/* 主卡片 —— 固定宽度1200px */
.pl-card {
	max-width: 1300px;
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05), 0 8px 18px rgba(0, 0, 0, 0.06);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 20px auto;
}
/* ---------- 第一行：视频播放框 ---------- */
.pl-video-frame {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #0b0f17;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-image: linear-gradient(135deg, #1a1f2b 0%, #0d1117 100%);
}
.pl-video-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 35%, rgba(74, 144, 226, 0.15) 0%, transparent 55%);
	pointer-events: none;
}
.pl-play-icon {
	width: 72px;
	height: 72px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.25);
	z-index: 2;
	position: relative;
}
.pl-play-icon::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 0 16px 28px;
	border-color: transparent transparent transparent #ffffff;
	margin-left: 6px;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.pl-video-frame iframe {
	width: 100%;
	height: 100%
}
/* .pl-video-frame::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 72%;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      border-radius: 0 4px 0 0;
      opacity: 0.85;
      z-index: 3;
    }*/

    /* ---------- 第二行：文字 + 右侧图片 ---------- */
.pl-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.pl-text {
	flex: 1 1 55%;
	min-width: 260px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.pl-heading {
	font-size: 16px;
	font-weight: 250;
	letter-spacing: 0px;
	color: #0f172a;
	line-height: 33px;
	text-align: center
}
.pl-description {
	font-size: 16px;
	color: #475569;
	line-height: 1.6;
}
.pl-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 15px;
	color: #64748b;
	margin-top: 10px;
}
.pl-badge {
	background: #eef2ff;
	color: #4338ca;
	padding: 10px 20px;
	border-radius: 40px;
	font-weight: 550;
	font-size: 15px;
}
.pl-image {
	flex: 0 0 140px;
	height: 140px;
	border-radius: 10px;
	overflow: hidden;
	background: #e9eef3;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
	background: linear-gradient(145deg, #d9e2ef, #cbd5e1);
}
.pl-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* ---------- 第三行：耳鼻喉皮络疗法 ---------- */
.pl-therapy-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	background: #fafcfd;
	border-radius: 12px;
	padding: 10px 20px;
	border: 1px solid #edf2f9;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}
.pl-therapy-tit {
	flex: 1 1 50%;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pl-therapy-tit img {
	height: 40px;
}
.pl-therapy-text {
	flex: 1 1 50%;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
/* 大标题：固定18px */
.pl-therapy-main-title {
	font-size: 32px;
	font-weight: 700;
	color: #0c2d48;
	letter-spacing: -0.2px;
	line-height: 1.3;
}
.pl-therapy-subtitle {
	font-size: 20px;
	font-weight: 550;
	color: #5b6e8c;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 20px;
	border-left: 4px solid #b3924b;
	padding: 5px 5px 5px 10px;
	background: linear-gradient(to right, #f9f6f0, transparent);
}
/* 介绍文字：固定16px */
.pl-therapy-description {
	font-size: 16px;
	color: #2d3a4f;
	line-height: 1.7;
	text-align: justify;
	margin-top: 0px;
}
.pl-heritage-badge {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	background: #f2efe4;
	color: #5e4c2c;
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	width: fit-content;
	margin-top: 10px;
	border: 1px solid #e2d7ba;
}
/* 右侧内容区域 */
.pl-therapy-side {
	flex: 0 0 440px;
	min-width: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px;
}
.pl-side-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: #eef3f9;
	overflow: hidden;
	margin-bottom: 10px;
}
.pl-side-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pl-side-caption {
	font-size: 15px;
	color: #5f6b7c;
	text-align: center;
	font-weight: 500;
	background: #f4f7fc;
	padding: 10px 20px;
	border-radius: 20px;
}

    /* 响应式：在小屏幕上仍保持可用，但宽度不超过1200px */
    @media (max-width: 750px) {
.pl-card {
	width: 100%;
	margin: 0px;
	padding: 10px;
	gap: 20px;
}
.pl-row {
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}
.pl-image {
	flex: 0 0 100px;
	width: 100px;
	height: 100px;
}
.pl-therapy-row {
	flex-direction: column;
	gap: 20px;
	padding: 10px;
}
.pl-therapy-side {
	flex: 1 1 auto;
	width: 100%;
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
}
.pl-side-image {
	width: 100%;
	aspect-ratio: 4/3;
	margin-bottom: 0;
}
}
/* ========== 图片网格 ========== */

.tc-gallery-item {
}
/* ========== 灯箱遮罩 ========== */
.tc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}
.tc-lightbox.tc-active {
	opacity: 1;
	visibility: visible;
}
/* ========== 关闭按钮 ========== */
.tc-lightbox-close {
	position: absolute;
	top: 24px;
	right: 32px;
	width: 44px;
	height: 44px;
	border: none;
	background: rgba(255,255,255,0.15);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 10;
}
.tc-lightbox-close:hover {
	background: rgba(255,255,255,0.3);
	transform: rotate(90deg);
}
.tc-lightbox-close::before, .tc-lightbox-close::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
}
.tc-lightbox-close::before {
	transform: rotate(45deg);
}
.tc-lightbox-close::after {
	transform: rotate(-45deg);
}
/* ========== 左右箭头 ========== */
.tc-lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border: none;
	background: rgba(255,255,255,0.12);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 10;
}
.tc-lightbox-arrow:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-50%) scale(1.1);
}
.tc-lightbox-arrow.tc-prev {
	left: 8%;
}
.tc-lightbox-arrow.tc-next {
	right: 8%;
}
.tc-lightbox-arrow::after {
	content: '';
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.tc-lightbox-arrow.tc-prev::after {
	transform: rotate(-135deg);
	margin-left: 4px;
}
.tc-lightbox-arrow.tc-next::after {
	transform: rotate(45deg);
	margin-right: 4px;
}
/* ========== 图片容器（切换动画核心） ========== */
.tc-lightbox-stage {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.tc-lightbox-img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	opacity: 0;
	transform: scale(0.92) translateX(0);
	transition: opacity 0.35s ease, transform 0.35s ease;
}
/* 灯箱打开时的初始状态 */
.tc-lightbox.tc-active .tc-lightbox-img {
	opacity: 1;
	transform: scale(1) translateX(0);
}
/* 切换动画状态类 */
.tc-lightbox-img.tc-fade-out-left {
	opacity: 0;
	transform: scale(0.92) translateX(-60px);
}
.tc-lightbox-img.tc-fade-out-right {
	opacity: 0;
	transform: scale(0.92) translateX(60px);
}
.tc-lightbox-img.tc-fade-in-left {
	opacity: 1;
	transform: scale(1) translateX(0);
	animation: tc-slideInLeft 0.35s ease forwards;
}
.tc-lightbox-img.tc-fade-in-right {
	opacity: 1;
	transform: scale(1) translateX(0);
	animation: tc-slideInRight 0.35s ease forwards;
}
 @keyframes tc-slideInLeft {
 from {
opacity: 0;
transform: scale(0.92) translateX(-60px);
}
to {
	opacity: 1;
	transform: scale(1) translateX(0);
}
}
 @keyframes tc-slideInRight {
 from {
opacity: 0;
transform: scale(0.92) translateX(60px);
}
to {
	opacity: 1;
	transform: scale(1) translateX(0);
}
}
/* ========== 底部信息 ========== */
.tc-lightbox-info {
	margin-top: 16px;
	color: rgba(255,255,255,0.9);
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.5px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.tc-lightbox.tc-active .tc-lightbox-info {
	opacity: 1;
	transform: translateY(0);
}
.tc-lightbox-counter {
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	margin-left: 8px;
	display: none
}
/* ========== 点击背景关闭 ========== */
.tc-lightbox-backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 640px) {
.tc-gallery {
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.tc-lightbox-arrow {
	width: 44px;
	height: 44px;
}
.tc-lightbox-arrow.tc-prev {
	left: 8px;
}
.tc-lightbox-arrow.tc-next {
	right: 8px;
}
.tc-lightbox-close {
	top: 12px;
	right: 12px;
}
.tc-lightbox-arrow {
	background: rgba(0,0,0,0.5);
}
.tc-lightbox-arrow:hover {
	background: rgba(0,0,0,0.8);
}
}
 @keyframes tc-slideInLeft {
 from {
opacity: 0;
transform: scale(0.92) translateX(-30px);
}
to {
	opacity: 1;
	transform: scale(1) translateX(0);
}
}
 @keyframes tc-slideInRight {
 from {
opacity: 0;
transform: scale(0.92) translateX(30px);
}
to {
	opacity: 1;
	transform: scale(1) translateX(0);
}
}
}

.gh-card{
	background: #f5f7fc;
     
      display: flex;
 
      padding:30px;}

 /* 卡片容器 — 使用 ul 承载 li */
    .gh-card-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: stretch;
      gap:20px 100px;
      max-width: 900px;
      width: 100%;
      padding: 20px;
	   margin:0 auto
    }

    /* 每个卡片 li 采用相对定位，方便弹窗锚定 */
    .gh-card-item {
      flex: 1 1 320px;
      min-width: 180px;
      max-width: 400px;
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      cursor: pointer;
      overflow: visible;  /* 弹窗不溢出隐藏 */
    }

    .gh-card-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
    }

    /* 卡片内部链接 (用于触发弹窗) 采用块级，占满整卡 */
    .gh-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
      padding:20px;
      border-radius:15px;
      background: transparent;
      /* 保证点击区域完整 */
    }

    /* 图片容器 — 并排图片在卡片内原本就是上下结构，但卡片本身并排 */
    .gh-card-image {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 15px;
      background: #eef2f7;
      display: block;
      margin-bottom:20px;
      transition: filter 0.2s;
    }

    .gh-card-title {
      font-size: 20px;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: #1a2639;
      margin-bottom:10px;
      line-height: 1.3;
    }

    .gh-card-desc {
      font-size:16px;
      color: #4a5568;
      line-height: 1.4;
      opacity: 0.8;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ---------- 弹窗 (纯CSS :target) ---------- */
    /* 遮罩层 - 固定定位，半透明黑色 */
    .gh-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.65);    /* 半透明黑色 */
      backdrop-filter: blur(2px);
      display: none;                     /* 默认隐藏 */
      justify-content: center;
      align-items: center;
      z-index: 9999;
      padding:30px;
      /* 弹窗动画 (淡入) */
      animation: ghFadeIn 0.25s ease;
    }

    /* 当 :target 被触发时显示遮罩 */
    .gh-overlay:target {
      display: flex;
    }

    /* 弹窗卡片 - 桌面端占60%，移动端98% */
    .gh-modal {
      background: #ffffff;
      border-radius: 12px;
      max-width: 750px;          /* 桌面端 60% 约为 640px (依视口) */
      width: 60%;               /* 桌面端 60% */
      padding: 20px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
      position: relative;
      animation: ghSlideUp 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
      max-height: 80vh;
      overflow-y: auto;
    }

    /* 移动端适配：宽度 98% */
    @media (max-width: 640px) {
      .gh-modal {
        width: 98%;
        padding:20px;
        border-radius: 10px;
      }
    }

    /* 弹窗标题 18px */
    .gh-modal-title {
      font-size: 18px;
      font-weight: 700;
      color: #0b1a33;
      margin-bottom:30px;
      letter-spacing:1px;
      padding-right:60px;   /* 给关闭按钮留空间 */
    }

    /* 弹窗内容 16px */
    .gh-modal-content {
      font-size: 16px;
      line-height: 1.6;
      color: #1e2a44;
      margin-top:30px;
    }

    .gh-modal-content p {
      margin-bottom:20px;
    }
.gh-modal-content img{ max-width:100%;
    }
    .gh-modal-content p:last-child {
      margin-bottom: 0;
    }

    /* ---------- 关闭按钮 (纯CSS, 使用 :target 清除) ---------- */
    .gh-close-btn {
      position: sticky;      /* 改为 sticky，固定在弹窗可视区域右上角 */
      float: right;          /* 靠右 */
      top: 0;                /* 吸顶 */
      width:35px;
      height:35px;
      border-radius:50%;
      background: #f0f3f9;
      border: none;
      font-size:15px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2d3748;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
      font-weight: 300;
      box-shadow: 0 2px 6px rgba(0,0,0,0.04);
      z-index: 10;           /* 确保在最上层 */
      margin-left: auto;     /* 右对齐 */
      margin-bottom: -35px; /* 抵消自身高度，不占用内容流 */
    }

    .gh-close-btn:hover {
      background: #e2e8f0;
      transform: scale(0.94);
    }

    .gh-close-btn:active {
      background: #cbd5e0;
    }

    /* 由于关闭按钮是 <a> 标签，去掉默认下划线 */
    .gh-close-btn {
      text-decoration: none;
    }

    /* 辅助隐藏 — 用于关闭弹窗的锚点（不可见） */
    .gh-close-anchor {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }

    /* ---------- 动画 ---------- */
    @keyframes ghFadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

    @keyframes ghSlideUp {
      0% { opacity: 0; transform: scale(0.96) translateY(18px); }
      100% { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* 卡片内部图片占位 – 实际使用 img 标签展示不同图片，保证两个不同 */
    /* 两个卡片分别使用不同图片 (使用网络图片或占位图) */
    /* 为了演示，使用两种不同风格的图片 (来自picsum) */
    .gh-img-1 {
      background: #d9e2ef;
    
      background-size: cover;
      background-position: center;
    }

    .gh-img-2 {
      background: #d4dcec;
   
      background-size: cover;
      background-position: center;
    }

    /* 如果图片加载失败，显示备用色 */
    .gh-card-image {
      background-color: #bcc9db;
    }

    /* 小屏优化 */
    @media (max-width: 480px) {
      .gh-card-item {
        flex: 1 1 100%;
        max-width: 320px;
      }
      .gh-modal {
        padding:20px;
      }
      .gh-close-btn {
        width: 2rem;
        height: 2rem;
        font-size: 1.4rem;
      }
    }

    /* 辅助说明——消除默认list样式 */
    ul, li {
      margin: 0;
      padding: 0;
    }

    /* 使卡片内链接不改变外观 */
    .gh-card-link:focus-visible {
      outline: 2px solid #3b6eff;
      outline-offset: 4px;
      border-radius: 28px;
    }
	
	
  .rcx-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .rcx-header {
            text-align: center;
            padding: 40px 20px;
            background: #fff;
            border-radius: 16px;
            margin-bottom: 20px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .rcx-header h1 {
            font-size: 28px;
            color: #1a5f7a;
            margin-bottom: 10px;
        }
        .rcx-header .rcx-subtitle {
            color: #666;
            font-size: 16px;
        }
        .rcx-section {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }
        .rcx-section-title {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            color: #1a5f7a;
			margin-top: 10px;
            margin-bottom: 10px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e8f4f8;
        }
        .rcx-section-title i {
            font-size: 24px;
            margin-right: 10px;
            color: #2a9d8f;
        }
        .rcx-condition-list {
            list-style: none;
        }
        .rcx-condition-list li {
            display: flex;
            align-items: flex-start;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
			font-size:16px; line-height:1.6
        }
        .rcx-condition-list li:last-child {
            border-bottom: none;
        }
        .rcx-condition-list li i {
            color: #2a9d8f;
            font-size: 18px;
            margin-right: 12px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .rcx-condition-list li span {
            flex: 1;
        }
        .rcx-salary-box {
            background: #e8f4f8;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            font-size: 18px;
            color: #1a5f7a;
            font-weight: bold;
        }
        .rcx-salary-box i {
            font-size: 32px;
            color: #2a9d8f;
            display: block;
            margin-bottom: 10px;
        }
        .rcx-contact-grid {
            display: grid;
            gap: 16px;
        }
        .rcx-contact-item {
            display: flex;
            align-items: flex-start;
            padding: 16px;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 4px solid #2a9d8f;
        }
        .rcx-contact-item i {
            font-size: 22px;
            color: #2a9d8f;
            margin-right: 14px;
            margin-top: 2px;
        }
        .rcx-contact-item .rcx-label {
            font-weight: bold;
            color: #1a5f7a;
            margin-bottom: 4px;
        }
        .rcx-contact-item .rcx-value {
            color: #555;
            font-size: 15px;
			line-height:1.6
        }
        .rcx-footer {
            text-align: center;
            padding: 20px;
            color: #999;
            font-size: 14px;
        }
        .rcx-highlight {
            color: #e76f51;
            font-weight: bold;
        }
		@media (max-width: 768px) {
 .rcx-section {
           
           
            padding:20px;
           
        }
		 .rcx-condition-list li {
        
			font-size:15px; line-height:1.6
        }
}