@charset "UTF-8";

			/* ============================================================
           DESIGN SYSTEM ��?YUJIN INDUSTRIAL
           ============================================================ */
			:root {
				--navy: #062b49;
				--navy-deep: #041d33;
				--navy-soft: #0b416a;
				--blue: #136fa5;
				--cyan: #36a7d8;
				--text: #183148;
				--muted: #758797;
				--line: #e2ebf1;
				--line-soft: #edf3f7;
				--bg: #f3f7fa;
				--white: #ffffff;
				--shadow-soft: 0 10px 28px rgba(6, 43, 73, 0.07);
				--shadow-card: 0 18px 48px rgba(6, 43, 73, 0.10);
				--radius: 12px;
				--radius-lg: 22px;
				--container: min(1500px, 88vw);
				--header-h: 90px;
			}

			*,
			*::before,
			*::after {
				box-sizing: border-box;
				margin: 0;
				padding: 0;
			}

			html {
				scroll-behavior: smooth;
				-webkit-font-smoothing: antialiased;
			}

			body {
				font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
				font-weight: 400;
				font-size: 16px;
				line-height: 1.68;
				color: var(--text);
				background: radial-gradient(circle at 10% 0%, rgba(19, 111, 165, 0.08), transparent 28%), linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
				overflow-x: hidden;
			}

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

			button {
				font: inherit;
				border: none;
				background: none;
				cursor: pointer;
			}

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

			.container {
				width: var(--container);
				margin: 0 auto;
			}

			/* ---- TOPBAR ---- */
			.topbar {
				height: 34px;
				background: var(--navy-deep);
				color: rgba(255, 255, 255, .78);
				font-size: 12px;
			}

			.topbar-inner {
				width: var(--container);
				height: 100%;
				margin: 0 auto;
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 20px;
			}

			.topbar-inner>div {
				display: flex;
				align-items: center;
				gap: 22px;
				white-space: nowrap;
			}

			.topbar-inner a {
				color: rgba(255, 255, 255, .78);
				transition: color .25s;
			}

			.topbar-inner a:hover {
				color: #fff;
			}

			/* ---- HEADER ---- */
			.site-header {
				height: var(--header-h);
				background: rgba(255, 255, 255, .94);
				border-bottom: 1px solid rgba(226, 235, 241, .9);
				display: flex;
				align-items: center;
				justify-content: center;
				position: sticky;
				top: 0;
				z-index: 50;
				backdrop-filter: blur(14px);
				box-shadow: 0 8px 24px rgba(6, 43, 73, .05);
			}

			.header-inner {
				width: var(--container);
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 28px;
			}

			.logo {
				display: flex;
				align-items: center;
				gap: 13px;
				flex-shrink: 0;
			}

			.logo img {
				height: 53px;
				width: auto;
				object-fit: contain;
			}

			.nav {
				display: flex;
				align-items: center;
				gap: 28px;
				font-size: 16px;
				color: #385064;
				white-space: nowrap;
			}

			.nav>a,
			.nav-item>a {
				position: relative;
				padding: 15px 0;
				transition: color .22s ease;
				color: #385064;
			}

			.nav>a:hover,
			.nav>a.active,
			.nav-item>a:hover,
			.nav-item>a.active {
				color: var(--navy);
				-webkit-text-stroke: 0.5px var(--navy);
			}

			.nav>a::after,
			.nav-item>a::after {
				content: "";
				position: absolute;
				left: 50%;
				bottom: 0;
				width: 0;
				height: 3px;
				border-radius: 99px;
				background: linear-gradient(90deg, var(--blue), var(--cyan));
				transform: translateX(-50%);
				transition: width .28s ease;
			}

			.nav>a:hover::after,
			.nav>a.active::after,
			.nav-item:hover>a::after,
			.nav-item>a.active::after {
				width: 50px;
			}

			.nav-item {
				position: relative;
			}

			.nav-has-sub {
				cursor: default;
			}

			/* 1. 箭头样式：更精致、对齐更��?*/
			.nav-sub-arrow {
				width: 12px;
				height: 12px;
				margin-left: 4px;
				transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
				vertical-align: middle;
				/* 核心：确保和文字中线对齐 */
				display: inline-block;
				color: var(--muted);
			}

			/* 鼠标移入变色并旋��?*/
			.nav-has-sub:hover .nav-sub-arrow {
				transform: rotate(180deg);
				color: var(--cyan);
			}

			/* 2. 下拉菜单容器微调 */
			.nav-dropdown {
				position: absolute;
				top: calc(100% + 5px);
				/* 稍微拉开一点距离，更有高级��?*/
				left: 50%;
				transform: translateX(-50%) translateY(10px);
				/* 初始位置向下偏，配合动画 */
				min-width: 140px;
				background: rgba(255, 255, 255, 0.98);
				border: 1px solid var(--line);
				border-radius: 12px;
				box-shadow: 0 15px 35px rgba(6, 43, 73, 0.1);
				padding: 10px 0;
				opacity: 0;
				visibility: hidden;
				pointer-events: none;
				transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
				backdrop-filter: blur(10px);
			}

			/* 悬浮显示 */
			.nav-has-sub:hover .nav-dropdown {
				opacity: 1;
				visibility: visible;
				pointer-events: auto;
				transform: translateX(-50%) translateY(0);
				/* 动画滑入 */
			}

			/* 3. 顶部装饰条：彻底重做 */
			.nav-dropdown::before {
				content: "";
				position: absolute;
				top: 0;
				left: 50%;
				transform: translateX(-50%);
				/* 这里改成��?50px，比之前长一点，更显��?*/
				width: 50px;
				height: 4px;
				border-radius: 0 0 4px 4px;
				/* 只裁切底部圆角，像个挂钩 */
				background: linear-gradient(90deg, var(--blue), var(--cyan));
				/* 加一个若有若无的发光效果 */
				box-shadow: 0 2px 8px rgba(54, 167, 216, 0.3);
			}

			/* 4. 链接样式：文字居中，间距紧凑 */
			.nav-dropdown a {
				display: block;
				padding: 10px 20px;
				font-size: 14px;
				font-weight: 500;
				color: var(--text);
				text-align: center;
				/* 菜单内文字强制居��?*/
				transition: all 0.2s ease;
			}

			.nav-dropdown a:hover {
				background: var(--line-soft);
				color: var(--blue);
			}

			/* 电脑端导航搜索框 */
			.nav-search {
				display: flex;
				align-items: center;
				position: relative;
				margin-left: 15px;
			}

			.nav-search input {
				width: 140px;
				height: 38px;
				border-radius: 20px;
				border: 1px solid var(--line);
				padding: 0 16px 0 38px;
				font-size: 14px;
				outline: none;
				background: var(--bg);
				transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
				color: var(--navy-deep);
			}

			.nav-search input::placeholder {
				color: var(--muted);
			}

			.nav-search input:focus {
				width: 220px;
				border-color: var(--cyan);
				background: #fff;
				box-shadow: 0 0 15px rgba(54, 167, 216, 0.15);
			}

			.nav-search svg {
				position: absolute;
				left: 14px;
				width: 16px;
				height: 16px;
				color: var(--muted);
				pointer-events: none;
				transition: color 0.3s;
			}

			.nav-search input:focus+svg {
				color: var(--cyan);
			}

			.nav-burger {
				display: none;
				flex-direction: column;
				gap: 5px;
				padding: 8px;
				z-index: 60;
			}

			.nav-burger span {
				display: block;
				width: 24px;
				height: 2px;
				background: var(--navy);
				border-radius: 1px;
				transition: .3s ease;
			}

			.nav-burger.open span:nth-child(1) {
				transform: rotate(45deg) translate(5px, 5px);
			}

			.nav-burger.open span:nth-child(2) {
				opacity: 0;
			}

			.nav-burger.open span:nth-child(3) {
				transform: rotate(-45deg) translate(5px, -5px);
			}

			/* 手机端菜��?*/
			.mobile-menu {
				display: none;
				position: fixed;
				inset: 0;
				z-index: 49;
				background: rgba(4, 29, 51, .97);
				backdrop-filter: blur(24px);
				flex-direction: column;
				align-items: center;
				justify-content: center;
				gap: 28px;
			}

			.mobile-menu.open {
				display: flex;
			}

			.mobile-menu a {
				color: #fff;
				font-size: 22px;
				font-weight: 600;
				letter-spacing: 1px;
				transition: color .25s;
			}

			.mobile-menu a:hover {
				color: var(--cyan);
			}

			/* 手机端搜索框 */
			.mobile-search {
				width: 80%;
				max-width: 320px;
				position: relative;
				margin-bottom: 10px;
			}

			.mobile-search input {
				width: 100%;
				height: 46px;
				border-radius: 23px;
				border: none;
				padding: 0 20px 0 46px;
				font-size: 16px;
				background: rgba(255, 255, 255, 0.1);
				color: #fff;
				outline: none;
				border: 1px solid rgba(255, 255, 255, 0.1);
				transition: border-color 0.3s;
			}

			.mobile-search input:focus {
				border-color: var(--cyan);
				background: rgba(255, 255, 255, 0.15);
			}

			.mobile-search input::placeholder {
				color: rgba(255, 255, 255, 0.5);
			}

			.mobile-search svg {
				position: absolute;
				left: 16px;
				top: 50%;
				transform: translateY(-50%);
				width: 18px;
				height: 18px;
				color: rgba(255, 255, 255, 0.5);
				pointer-events: none;
			}

			.mobile-sub-group {
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 0;
			}

			.mobile-sub-parent {
				cursor: pointer !important;
				display: flex !important;
				align-items: center;
				gap: 6px;
			}

			.mobile-sub-arrow {
				font-size: 14px;
				transition: transform .25s ease;
			}

			.mobile-sub-group.open .mobile-sub-arrow {
				transform: rotate(180deg);
			}

			.mobile-sub-links {
				max-height: 0;
				overflow: hidden;
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 4px;
				transition: max-height .35s ease, opacity .25s ease;
				opacity: 0;
			}

			.mobile-sub-group.open .mobile-sub-links {
				max-height: 300px;
				opacity: 1;
			}

			.mobile-sub-links a {
				font-size: 17px !important;
				font-weight: 400 !important;
				color: rgba(255, 255, 255, .55) !important;
			}

			.mobile-sub-links a:hover {
				color: var(--cyan) !important;
			}

			/* ---- COMMON SECTION ---- */
			.section {
				padding: clamp(64px, 9vw, 100px) 0;
			}

			.section--soft {
				background: var(--bg);
				color: var(--text);
			}

			.section-tag {
				display: inline-flex;
				align-items: center;
				gap: 10px;
				font-size: 11px;
				font-weight: 700;
				letter-spacing: 2.5px;
				text-transform: uppercase;
				margin-bottom: 18px;
				color: var(--muted);
			}

			.section-tag::before {
				content: "";
				width: 22px;
				height: 1px;
				background: var(--blue);
			}

			.section-tag--light {
				color: rgba(255, 255, 255, .55);
			}

			.section-tag--light::before {
				background: var(--cyan);
			}

			.section-head {
				margin-bottom: clamp(36px, 6vw, 56px);
			}

			.section-head h2 {
				font-size: clamp(2rem, 3.6vw, 2.8rem);
				font-weight: 900;
				line-height: 1.14;
				letter-spacing: -0.5px;
			}

			.section-head p {
				color: var(--muted);
				font-size: 15px;
				line-height: 1.7;
				margin-top: 12px;
				max-width: 620px;
			}

			.reveal {
				opacity: 0;
				transform: translateY(28px);
				transition: opacity .65s ease, transform .65s ease;
			}

			.reveal.visible {
				opacity: 1;
				transform: translateY(0);
			}

			/* ============================================================
           HERO
           ============================================================ */
			.hero {
				position: relative;
				min-height: 85vh;
				display: flex;
				align-items: center;
				background: var(--navy-deep);
				overflow: hidden;
			}

			.hero-slides {
				position: absolute;
				inset: 0;
			}

			.hero-slide {
				position: absolute;
				inset: 0;
				background: center/cover no-repeat;
				opacity: 0;
				transition: opacity 1s ease;
			}

			.hero-slide.active {
				opacity: 1;
				z-index: 1;
				animation: heroZoom 7s ease forwards;
			}

			@keyframes heroZoom {
				from {
					transform: scale(1.06);
				}

				to {
					transform: scale(1);
				}
			}

			.hero-arrow {
				position: absolute;
				top: 50%;
				z-index: 3;
				width: 52px;
				height: 52px;
				border-radius: 50%;
				background: rgba(255, 255, 255, .12);
				backdrop-filter: blur(8px);
				border: 1px solid rgba(255, 255, 255, .18);
				color: #fff;
				font-size: 28px;
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				transition: all .3s ease;
				line-height: 1;
				transform: translateY(-50%);
			}

			.hero-arrow:hover {
				background: rgba(255, 255, 255, .24);
				border-color: rgba(255, 255, 255, .35);
			}

			.hero-arrow--prev {
				left: clamp(12px, 3vw, 32px);
			}

			.hero-arrow--next {
				right: clamp(12px, 3vw, 32px);
			}

			.hero-dots {
				position: absolute;
				bottom: clamp(20px, 3vw, 38px);
				left: 50%;
				transform: translateX(-50%);
				z-index: 3;
				display: flex;
				gap: 10px;
			}

			.hero-dot {
				width: 10px;
				height: 10px;
				border-radius: 50%;
				background: rgba(255, 255, 255, .35);
				border: 1px solid rgba(255, 255, 255, .25);
				cursor: pointer;
				transition: all .3s ease;
				padding: 0;
			}

			.hero-dot.active {
				background: var(--cyan);
				border-color: var(--cyan);
				width: 28px;
				border-radius: 99px;
			}

			.hero-slide-overlay {
				position: absolute;
				inset: 0;
				z-index: 1;
				background: linear-gradient(170deg, rgba(4, 29, 51, 0.45) 0%, rgba(6, 43, 73, 0.35) 35%, rgba(4, 29, 51, 0.72) 70%, rgba(4, 29, 51, 0.94) 100%);
			}

			.hero-content {
				position: relative;
				z-index: 2;
				width: var(--container);
				margin: 0 auto;
				padding: 80px 0 60px;
			}

			.hero-badge {
				display: inline-flex;
				align-items: center;
				gap: 10px;
				margin-bottom: 24px;
				padding: 7px 16px;
				border-radius: 99px;
				border: 1px solid rgba(255, 255, 255, .16);
				background: rgba(255, 255, 255, .05);
				backdrop-filter: blur(8px);
				color: var(--cyan);
				font-size: 11px;
				font-weight: 700;
				letter-spacing: 2.5px;
				text-transform: uppercase;
				animation: fadeUp .8s ease both;
			}

			.hero-badge::before {
				content: "";
				width: 6px;
				height: 6px;
				border-radius: 50%;
				background: var(--cyan);
			}

			.hero h1 {
				color: #fff;
				font-size: clamp(2.8rem, 5.5vw, 4.6rem);
				font-weight: 900;
				line-height: 1.08;
				letter-spacing: -1px;
				max-width: 800px;
				animation: fadeUp .8s .12s ease both;
			}

			.hero h1 em {
				font-style: normal;
				color: var(--cyan);
			}

			.hero-lead {
				margin-top: 22px;
				color: rgba(255, 255, 255, .68);
				font-size: clamp(1rem, 1.2vw, 1.15rem);
				line-height: 1.8;
				max-width: 500px;
				animation: fadeUp .8s .24s ease both;
			}

			.hero-nums {
				display: flex;
				gap: clamp(28px, 5vw, 56px);
				margin-top: clamp(28px, 4vh, 48px);
				animation: fadeUp .8s .36s ease both;
			}

			.hero-num b {
				display: block;
				font-size: clamp(2rem, 3.2vw, 2.8rem);
				font-weight: 900;
				line-height: 1;
				color: #fff;
			}

			.hero-num b em {
				font-style: normal;
				color: var(--cyan);
			}

			.hero-num span {
				display: block;
				font-size: 13px;
				color: rgba(255, 255, 255, .45);
				margin-top: 6px;
				letter-spacing: .5px;
			}

			@keyframes fadeUp {
				from {
					opacity: 0;
					transform: translateY(24px);
				}

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

			/* ============================================================
           INTRO V2 (高端画册质感简��?
           ============================================================ */
			.section-intro-v2 {
				background: var(--white);
				position: relative;
				padding: clamp(80px, 10vw, 120px) 0;
				overflow: hidden;
			}

			.section-intro-v2::before {
				content: '';
				position: absolute;
				top: 0;
				right: 0;
				width: 45%;
				height: 100%;
				background: radial-gradient(circle at 100% 50%, rgba(19, 111, 165, 0.03) 0%, transparent 60%);
				pointer-events: none;
			}

			.intro-grid-v2 {
				display: grid;
				grid-template-columns: 0.9fr 1.1fr;
				gap: clamp(40px, 8vw, 80px);
				align-items: center;
			}

			.intro-content-v2 {
				padding-right: 20px;
			}

			.intro-content-v2 h2 {
				font-size: clamp(2.2rem, 3.8vw, 3rem);
				font-weight: 900;
				line-height: 1.15;
				color: var(--navy-deep);
				margin-bottom: 24px;
				letter-spacing: -0.5px;
			}

			.intro-lead-v2 {
				font-size: clamp(1.1rem, 1.4vw, 1.25rem);
				color: var(--navy);
				font-weight: 600;
				line-height: 1.7;
				margin-bottom: 20px;
				padding-left: 18px;
				border-left: 4px solid var(--cyan);
			}

			.intro-desc-v2 {
				color: var(--muted);
				font-size: 15px;
				line-height: 1.85;
				margin-bottom: 35px;
			}

			.intro-features-v2 {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 16px 24px;
				margin-bottom: 40px;
				padding-top: 20px;
				border-top: 1px solid var(--line);
			}

			.intro-feat-item {
				display: flex;
				align-items: center;
				gap: 12px;
				font-size: 15px;
				font-weight: 700;
				color: var(--navy-deep);
			}

			.intro-feat-icon {
				display: flex;
				align-items: center;
				justify-content: center;
				width: 24px;
				height: 24px;
				background: rgba(54, 167, 216, 0.1);
				color: var(--cyan);
				border-radius: 50%;
				font-size: 12px;
				flex-shrink: 0;
			}

			.intro-link-v2 {
				display: inline-flex;
				align-items: center;
				gap: 8px;
				font-size: 15px;
				font-weight: 800;
				color: var(--blue);
				text-transform: uppercase;
				letter-spacing: 1px;
				transition: color 0.3s ease;
			}

			.intro-link-v2::after {
				content: '��?;
				font-size: 18px;
				transition: transform 0.3s ease;
			}

			.intro-link-v2:hover {
				color: var(--cyan);
			}

			.intro-link-v2:hover::after {
				transform: translateX(6px);
			}

			.intro-visual-v2 {
				position: relative;
				z-index: 2;
			}

			.intro-slider-v2 {
				position: relative;
				width: 100%;
				border-radius: var(--radius-lg);
				overflow: hidden;
				aspect-ratio: 4/3;
				box-shadow: 0 24px 56px rgba(6, 43, 73, 0.12);
				border: 1px solid rgba(255, 255, 255, 0.5);
			}

			.intro-slider-img {
				position: absolute;
				inset: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
				opacity: 0;
				transition: opacity 1.2s ease, transform 1.2s ease;
			}

			.intro-slider-img.active {
				opacity: 1;
				transform: scale(1);
			}

			.intro-slider-v2:hover .intro-slider-img.active {
				transform: scale(1.05);
			}

			.intro-floating-badge {
				position: absolute;
				bottom: -30px;
				left: -30px;
				background: var(--navy-deep);
				padding: 24px 32px;
				border-radius: 16px;
				box-shadow: 0 15px 35px rgba(4, 29, 51, 0.2);
				z-index: 3;
				border-top: 4px solid var(--cyan);
				display: flex;
				flex-direction: column;
				animation: floatBadge 6s ease-in-out infinite;
			}

			@keyframes floatBadge {

				0%,
				100% {
					transform: translateY(0);
				}

				50% {
					transform: translateY(-10px);
				}
			}

			.intro-floating-badge b {
				font-size: 32px;
				font-weight: 900;
				color: #fff;
				line-height: 1;
				margin-bottom: 4px;
				display: flex;
				align-items: baseline;
				gap: 4px;
			}

			.intro-floating-badge b em {
				font-style: normal;
				font-size: 16px;
				color: var(--cyan);
			}

			.intro-floating-badge span {
				font-size: 13px;
				color: rgba(255, 255, 255, 0.6);
				font-weight: 600;
				letter-spacing: 1px;
			}

			/* Intro V2 轮播图控��?*/
			.intro-arrow {
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				width: 40px;
				height: 40px;
				border-radius: 50%;
				background: rgba(255, 255, 255, 0.15);
				backdrop-filter: blur(4px);
				border: 1px solid rgba(255, 255, 255, 0.3);
				color: #fff;
				font-size: 24px;
				display: flex;
				align-items: center;
				justify-content: center;
				cursor: pointer;
				z-index: 10;
				opacity: 0;
				transition: all 0.3s ease;
			}

			.intro-slider-v2:hover .intro-arrow {
				opacity: 1;
			}

			.intro-arrow:hover {
				background: var(--cyan);
				border-color: var(--cyan);
			}

			.intro-arrow--prev {
				left: 15px;
			}

			.intro-arrow--next {
				right: 15px;
			}

			.intro-dots {
				position: absolute;
				bottom: 20px;
				left: 50%;
				transform: translateX(-50%);
				display: flex;
				gap: 8px;
				z-index: 10;
			}

			.intro-dot {
				width: 8px;
				height: 8px;
				border-radius: 50%;
				background: rgba(255, 255, 255, 0.4);
				transition: all 0.3s ease;
				padding: 0;
			}

			.intro-dot.active {
				width: 24px;
				border-radius: 99px;
				background: var(--cyan);
			}

			/* ============================================================
           CAPACITY V2 (核心产能数据大屏)
           ============================================================ */
			.section-capacity {
				background: var(--navy-deep);
				position: relative;
				overflow: hidden;
				padding: 100px 0;
				z-index: 1;
			}

			.section-capacity::before {
				content: '';
				position: absolute;
				top: -20%;
				left: -10%;
				width: 500px;
				height: 500px;
				background: radial-gradient(circle, rgba(54, 167, 216, 0.15) 0%, transparent 70%);
				z-index: -1;
			}

			.section-capacity::after {
				content: '';
				position: absolute;
				bottom: -20%;
				right: -10%;
				width: 600px;
				height: 600px;
				background: radial-gradient(circle, rgba(19, 111, 165, 0.12) 0%, transparent 70%);
				z-index: -1;
			}

			.cap-tabs-wrapper {
				display: flex;
				justify-content: center;
				margin-bottom: 50px;
			}

			.cap-tabs {
				display: inline-flex;
				background: rgba(255, 255, 255, 0.04);
				border: 1px solid rgba(255, 255, 255, 0.08);
				border-radius: 100px;
				padding: 6px;
				gap: 4px;
				overflow-x: auto;
				scrollbar-width: none;
			}

			.cap-tabs::-webkit-scrollbar {
				display: none;
			}

			.cap-tab {
				padding: 12px 28px;
				font-size: 15px;
				font-weight: 600;
				color: rgba(255, 255, 255, 0.5);
				border-radius: 100px;
				transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
				border: none;
				background: transparent;
				white-space: nowrap;
				position: relative;
			}

			.cap-tab:hover {
				color: #fff;
			}

			.cap-tab.active {
				background: linear-gradient(135deg, var(--blue), var(--cyan));
				color: #fff;
				box-shadow: 0 4px 15px rgba(54, 167, 216, 0.4);
				text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
			}

			.cap-panels {
				position: relative;
				min-height: 280px;
			}

			.cap-panel {
				display: none;
				animation: dashboardFadeIn 0.5s ease-out forwards;
			}

			.cap-panel.active {
				display: block;
			}

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

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

			.cap-cards {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
				gap: 24px;
			}

			.cap-card {
				background: rgba(255, 255, 255, 0.02);
				backdrop-filter: blur(12px);
				-webkit-backdrop-filter: blur(12px);
				border: 1px solid rgba(255, 255, 255, 0.06);
				border-radius: 16px;
				padding: 40px 30px;
				position: relative;
				transition: all 0.4s ease;
				overflow: hidden;
				text-align: center;
			}

			.cap-card::before {
				content: '';
				position: absolute;
				top: 0;
				left: 30px;
				width: 0px;
				height: 3px;
				background: var(--cyan);
				box-shadow: 0 0 10px var(--cyan);
				transition: width 0.4s ease;
			}

			.cap-card:hover {
				background: rgba(255, 255, 255, 0.04);
				border-color: rgba(54, 167, 216, 0.3);
				transform: translateY(-8px);
				box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
			}

			.cap-card:hover::before {
				width: calc(100% - 60px);
			}

			.cap-num {
				font-size: clamp(3rem, 5vw, 4rem);
				font-weight: 900;
				line-height: 1;
				letter-spacing: -2px;
				margin-bottom: 12px;
				background: linear-gradient(135deg, #ffffff 0%, #a2d2eb 100%);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				transition: transform 0.4s ease;
				display: inline-block;
			}

			.cap-num em {
				font-style: normal;
				font-size: 0.6em;
				background: linear-gradient(135deg, var(--cyan), #fff);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				margin-left: 4px;
			}

			.cap-card:hover .cap-num {
				transform: scale(1.05) translateX(5px);
			}

			.cap-label {
				font-size: 18px;
				color: #fff;
				font-weight: 700;
				margin-bottom: 8px;
				letter-spacing: 0.5px;
			}

			.cap-detail {
				font-size: 14px;
				color: rgba(255, 255, 255, 0.5);
				line-height: 1.6;
			}

			.cap-cards--overview {
				grid-template-columns: repeat(3, 1fr);
			}

			/* ============================================================
           CATEGORY BENTO (产品分类展示)
           ============================================================ */
			.cat-grid {
				display: grid;
				grid-template-columns: repeat(4, 1fr);
				grid-auto-rows: 280px;
				gap: 24px;
			}

			.cat-card--large {
				grid-column: span 2;
				grid-row: span 2;
			}

			.cat-card--wide {
				grid-column: span 2;
				grid-row: span 1;
			}

			.cat-card--small {
				grid-column: span 1;
				grid-row: span 1;
			}

			.cat-card {
				position: relative;
				border-radius: var(--radius-lg);
				overflow: hidden;
				display: block;
				text-decoration: none;
				box-shadow: var(--shadow-soft);
				isolation: isolate;
			}

			.cat-card img {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
				z-index: -2;
			}

			/* 增加了全局的高透明度黑色遮��?(rgba(0,0,0,0.4))，整体压暗图��?*/
			.cat-card::before {
				content: '';
				position: absolute;
				inset: 0;
				background: linear-gradient(to top, rgba(4, 29, 51, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
				transition: all 0.4s ease;
				z-index: -1;
			}

			/* 鼠标放上去时，遮罩稍微变蓝变亮，增加互动��?*/
			.cat-card:hover::before {
				background: linear-gradient(to top, rgba(19, 111, 165, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.2) 100%);
			}

			.cat-card:hover img {
				transform: scale(1.08);
			}

			.cat-content {
				position: absolute;
				bottom: 30px;
				left: 30px;
				right: 30px;
				color: #fff;
				display: flex;
				flex-direction: column;
				align-items: flex-start;
			}

			.cat-content h3 {
				font-size: 28px;
				font-weight: 700;
				margin-bottom: 8px;
				transform: translateY(15px);
				transition: transform 0.4s ease;
			}

			.cat-card--small .cat-content h3 {
				font-size: 22px;
			}

			.cat-content p {
				font-size: 14px;
				color: rgba(255, 255, 255, 0.75);
				transform: translateY(15px);
				transition: transform 0.4s ease;
			}

			.cat-btn {
				margin-top: 20px;
				padding: 8px 24px;
				border: 2px solid rgba(255, 255, 255, 0.8);
				border-radius: 30px;
				color: #fff;
				font-size: 14px;
				font-weight: 600;
				opacity: 0;
				transform: translateY(20px);
				transition: all 0.4s ease;
			}

			.cat-card:hover .cat-content h3,
			.cat-card:hover .cat-content p {
				transform: translateY(0);
			}

			.cat-card:hover .cat-btn {
				opacity: 1;
				transform: translateY(0);
				background: #fff;
				color: var(--navy-deep);
			}

			/* ============================================================
           QUALITY CTA (悬浮黑卡品质背书)
           ============================================================ */
			.section-quality-cta {
				background: var(--navy-deep);
				padding: clamp(80px, 8vw, 120px) 0;
				position: relative;
				z-index: 1;
			}

			.q-cta-card {
				background: radial-gradient(circle at right bottom, rgba(19, 111, 165, 0.15) 0%, rgba(255, 255, 255, 0.02) 70%);
				border: 1px solid rgba(255, 255, 255, 0.08);
				border-radius: var(--radius-lg);
				padding: clamp(40px, 5vw, 60px);
				display: grid;
				grid-template-columns: auto 1fr auto;
				gap: clamp(30px, 4vw, 50px);
				align-items: center;
				position: relative;
				overflow: hidden;
				box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
			}

			.q-cta-card::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 5px;
				height: 100%;
				background: var(--cyan);
				box-shadow: 0 0 15px var(--cyan);
			}

			.q-cta-badge {
				width: 130px;
				height: 130px;
				border: 4px double var(--cyan);
				border-radius: 50%;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				background: rgba(4, 29, 51, 0.6);
				box-shadow: 0 0 30px rgba(54, 167, 216, 0.15);
				flex-shrink: 0;
			}

			.q-cta-badge b {
				font-size: 26px;
				color: #fff;
				line-height: 1.1;
				font-weight: 900;
				letter-spacing: 1px;
			}

			.q-cta-badge span {
				font-size: 11px;
				color: var(--cyan);
				font-weight: 800;
				margin-top: 4px;
				letter-spacing: 1px;
			}

			.q-cta-text h2 {
				font-size: clamp(1.6rem, 2.5vw, 2.2rem);
				color: #fff;
				font-weight: 900;
				margin-bottom: 16px;
				letter-spacing: 1px;
			}

			.q-cta-text p {
				color: rgba(255, 255, 255, 0.65);
				font-size: 15px;
				line-height: 1.8;
				max-width: 680px;
			}

			.q-cta-actions {
				display: flex;
				flex-direction: column;
				gap: 16px;
				min-width: 180px;
			}

			.q-cta-btn {
				padding: 14px 28px;
				border-radius: 8px;
				font-size: 14px;
				font-weight: 700;
				text-align: center;
				transition: all 0.3s ease;
				letter-spacing: 0.5px;
			}

			.q-cta-btn--primary {
				background: var(--cyan);
				color: var(--navy-deep);
				box-shadow: 0 10px 20px rgba(54, 167, 216, 0.2);
			}

			.q-cta-btn--primary:hover {
				background: #fff;
				transform: translateY(-2px);
				box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
			}

			.q-cta-btn--secondary {
				border: 1px solid rgba(255, 255, 255, 0.2);
				color: #fff;
				background: transparent;
			}

			.q-cta-btn--secondary:hover {
				border-color: var(--cyan);
				color: var(--cyan);
				background: rgba(54, 167, 216, 0.05);
			}

			/* ============================================================
           NEWS V2 (高级企业期刊质感)
           ============================================================ */
			.section-news {
				background: var(--bg);
				position: relative;
			}

			.news-header-flex {
				display: flex;
				justify-content: space-between;
				align-items: flex-end;
				margin-bottom: 40px;
				flex-wrap: wrap;
				gap: 20px;
			}

			.news-view-all {
				font-size: 15px;
				font-weight: 700;
				color: var(--blue);
				border-bottom: 2px solid rgba(19, 111, 165, 0.2);
				padding-bottom: 6px;
				transition: all 0.3s ease;
				display: inline-flex;
				align-items: center;
				gap: 6px;
			}

			.news-view-all:hover {
				color: var(--cyan);
				border-bottom-color: var(--cyan);
			}

			.news-grid {
				display: grid;
				grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
				gap: 30px;
			}

			.news-card {
				background: var(--white);
				border-radius: var(--radius-lg);
				border: 1px solid var(--line);
				overflow: hidden;
				transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
				display: flex;
				flex-direction: column;
				text-decoration: none;
				color: inherit;
				position: relative;
				box-shadow: 0 4px 15px rgba(6, 43, 73, 0.02);
			}

			.news-card:hover {
				transform: translateY(-10px);
				box-shadow: 0 24px 48px rgba(6, 43, 73, 0.08);
				border-color: rgba(54, 167, 216, 0.3);
			}

			.news-img-wrap {
				position: relative;
				overflow: hidden;
				aspect-ratio: 16/10;
				background: var(--line-soft);
			}

			.news-img-wrap img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
			}

			.news-card:hover .news-img-wrap img {
				transform: scale(1.08);
			}

			.news-date-badge {
				position: absolute;
				top: 20px;
				right: 20px;
				background: rgba(255, 255, 255, 0.95);
				backdrop-filter: blur(8px);
				-webkit-backdrop-filter: blur(8px);
				padding: 8px 14px;
				border-radius: 10px;
				text-align: center;
				box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
				z-index: 2;
				min-width: 60px;
			}

			.news-date-badge b {
				display: block;
				font-size: 22px;
				color: var(--navy-deep);
				line-height: 1;
				font-weight: 900;
				letter-spacing: -0.5px;
			}

			.news-date-badge span {
				font-size: 11px;
				color: var(--cyan);
				font-weight: 800;
				text-transform: uppercase;
				letter-spacing: 1px;
				margin-top: 4px;
				display: block;
			}

			.news-body {
				padding: 32px;
				display: flex;
				flex-direction: column;
				flex-grow: 1;
			}

			.news-category {
				font-size: 13px;
				font-weight: 800;
				color: var(--blue);
				margin-bottom: 12px;
				display: flex;
				align-items: center;
				gap: 8px;
				letter-spacing: 0.5px;
			}

			.news-category::before {
				content: "";
				width: 6px;
				height: 6px;
				border-radius: 50%;
				background: var(--cyan);
			}

			.news-body h3 {
				font-size: clamp(1.1rem, 1.4vw, 1.25rem);
				font-weight: 800;
				color: var(--navy-deep);
				line-height: 1.5;
				margin-bottom: 16px;
				transition: color 0.3s ease;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden;
			}

			.news-card:hover .news-body h3 {
				color: var(--blue);
			}

			.news-body p {
				color: var(--muted);
				font-size: 14px;
				line-height: 1.7;
				margin-bottom: 24px;
				display: -webkit-box;
				-webkit-line-clamp: 3;
				-webkit-box-orient: vertical;
				overflow: hidden;
			}

			.news-footer {
				margin-top: auto;
				padding-top: 20px;
				border-top: 1px solid var(--line-soft);
				display: flex;
				justify-content: flex-start;
				align-items: center;
			}

			.news-more {
				font-size: 14px;
				font-weight: 700;
				color: var(--navy);
				display: flex;
				align-items: center;
				gap: 6px;
				transition: color 0.3s;
			}

			.news-more::after {
				content: "��?;
				color: var(--cyan);
				font-size: 18px;
				font-weight: 400;
				transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
			}

			.news-card:hover .news-more {
				color: var(--blue);
			}

			.news-card:hover .news-more::after {
				transform: translateX(6px);
			}

			/* ============================================================
           FOOTER (重构：饱满的4列布局)
           ============================================================ */
			.footer {
				background: var(--navy);
				color: rgba(255, 255, 255, .6);
				padding: clamp(60px, 8vw, 80px) 0 30px;
			}

			/* 比例精确调整��?.1份品��?| 1份关��?| 1份产��?| 2.8份联系方��?*/
			/* 再次优化比例：稍微缩小中间两列，大幅加宽最后一列，防止地址换行 */
			.footer-grid {
				display: grid;
				grid-template-columns: 1.6fr 0.8fr 0.8fr 3fr;
				gap: clamp(30px, 4vw, 60px);
				padding-bottom: clamp(40px, 5vw, 50px);
				border-bottom: 1px solid rgba(255, 255, 255, .08);
				margin-bottom: 30px;
			}

			.footer-brand img {
				height: 57px;
				width: auto;
				margin-bottom: 16px;
			}

			.footer-brand p {
				font-size: 15px;
				line-height: 1.8;
				max-width: 350px;
			}

			.footer-col h4 {
				color: #fff;
				font-size: 16px;
				font-weight: 700;
				letter-spacing: 1.5px;
				margin-bottom: 24px;
			}

			.footer-col a {
				display: block;
				font-size: 15px;
				color: rgba(255, 255, 255, .6);
				padding: 5px 0;
				transition: color .25s, transform .25s;
			}

			.footer-col a:hover {
				color: var(--cyan);
				transform: translateX(4px);
			}

			/* 联系方式区块：确保不折叠隐藏 */
			.footer-contact-wrap {
				display: flex;
				align-items: flex-start;
				gap: clamp(20px, 3vw, 40px);
				width: 100%;
			}

			.footer-contact-info {
				flex: 1;
				min-width: 0;
			}

			.footer-contact-item {
				display: flex;
				align-items: flex-start;
				gap: 12px;
				font-size: 15px;
				color: rgba(255, 255, 255, .7);
				line-height: 1.6;
				margin-bottom: 18px;
			}

			.footer-contact-item span {
				white-space: normal;
				word-break: break-all;
			}

			.contact-icon {
				flex-shrink: 0;
				width: 18px;
				height: 18px;
				margin-top: 3px;
				opacity: .7;
			}

			/* 二维码组及双行文字的排列 */
			.footer-qr-group {
				display: flex;
				gap: 16px;
				flex-shrink: 0;
			}

			.qr-item {
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 4px;
			}

			.qr-item span {
				font-size: 13px;
				color: rgba(255, 255, 255, 0.8);
				letter-spacing: 0.5px;
				margin-top: 4px;
				line-height: 1.2;
			}

			.qr-item .qr-tip {
				font-style: normal;
				font-size: 11px;
				color: rgba(255, 255, 255, 0.4);
				line-height: 1;
			}

			.footer-qr {
				flex-shrink: 0;
				width: clamp(80px, 8vw, 100px);
				height: auto;
				aspect-ratio: 1;
				border-radius: 8px;
				border: 1px solid rgba(255, 255, 255, .12);
				padding: 5px;
				background: #fff;
			}

			.footer-bottom {
				display: flex;
				justify-content: space-between;
				align-items: center;
				flex-wrap: wrap;
				gap: 12px;
				font-size: 14px;
			}

			.footer-lang {
				display: flex;
				gap: 16px;
			}

			.footer-lang a {
				color: rgba(255, 255, 255, .6);
				font-size: 14px;
				transition: color .25s;
			}

			.footer-lang a:hover {
				color: var(--cyan);
			}

			/* ====== 新增开始：右侧悬浮客服 & 返回顶部 CSS ====== */
			.floating-widget {
				position: fixed;
				right: 20px;
				bottom: 100px; /* 位于返回顶部按钮上方 */
				display: flex;
				flex-direction: column;
				gap: 12px;
				z-index: 99;
			}

			.float-item {
				position: relative;
				width: 48px;
				height: 48px;
				background: #fff;
				border: 1px solid var(--line);
				border-radius: 8px;
				display: flex;
				justify-content: center;
				align-items: center;
				cursor: pointer;
				box-shadow: 0 4px 14px rgba(6, 43, 73, 0.08);
				transition: all 0.3s ease;
			}

			.float-item:hover, .float-item.active {
				background: var(--cyan);
				border-color: var(--cyan);
			}

			.float-icon svg {
				width: 22px;
				height: 22px;
				color: var(--navy);
				transition: color 0.3s ease;
			}

			.float-item:hover .float-icon svg {
				color: #fff;
			}

			/* 悬浮弹出的内容框 */
			.float-content {
				position: absolute;
				right: calc(100% + 15px);
				top: 50%;
				transform: translateY(-50%);
				background: #fff;
				border: 1px solid var(--line);
				border-radius: 8px;
				box-shadow: 0 5px 25px rgba(6, 43, 73, 0.12);
				opacity: 0;
				visibility: hidden;
				pointer-events: none;
				transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
				white-space: nowrap;
			}

			.float-item:hover .float-content, .float-item.active .float-content {
				opacity: 1;
				visibility: visible;
				right: calc(100% + 12px); /* 动画滑入效果 */
			}

			/* 弹出框右侧的小三角指示器 */
			.float-content::after {
				content: '';
				position: absolute;
				right: -6px;
				top: 50%;
				transform: translateY(-50%);
				border-left: 6px solid #fff;
				border-top: 6px solid transparent;
				border-bottom: 6px solid transparent;
			}

			/* 文本类弹出（电话��?*/
			.float-content.text-content {
				padding: 12px 24px;
				font-weight: 700;
				font-size: 16px;
				color: var(--navy-deep);
				letter-spacing: 0.5px;
			}

			/* 图片类弹出（二维码）：固定宽度，确保两个弹窗绝对一��?*/
						.float-content.qr-content {
							padding: 12px;
							display: flex;
							flex-direction: column;
							align-items: center;
							gap: 6px;
							width: 144px; /* 【修复重点】强制固定弹窗宽��?(120px图片 + 左右��?2px边距) */
							box-sizing: border-box;
						}
			
						.float-content.qr-content img {
							width: 120px;
							height: 120px;
							border-radius: 4px;
							object-fit: cover; 
							display: block;
						}
			
						.float-content.qr-content span {
							font-size: 13px;
							color: var(--muted);
							font-weight: 600;
							white-space: normal; /* 允许文字自然换行，绝对不撑爆盒子 */
							text-align: center;
							line-height: 1.3;
						}

			/* 返回顶部按钮 */
			.back-to-top {
				position: fixed;
				right: 20px;
				bottom: 30px;
				width: 48px;
				height: 48px;
				background: #fff;
				border: 1px solid var(--line);
				border-radius: 50%;
				display: flex;
				justify-content: center;
				align-items: center;
				cursor: pointer;
				box-shadow: 0 4px 14px rgba(6, 43, 73, 0.08);
				transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
				z-index: 99;
				opacity: 0; /* 默认隐藏 */
				visibility: hidden;
			}

			.back-to-top.visible {
				opacity: 1;
				visibility: visible;
			}

			.back-to-top:hover {
				background: var(--navy);
				border-color: var(--navy);
				transform: translateY(-4px);
				box-shadow: 0 8px 25px rgba(6, 43, 73, 0.15);
			}

			.back-to-top svg {
				width: 22px;
				height: 22px;
				color: var(--navy);
				transition: color 0.3s ease;
			}

			.back-to-top:hover svg {
				color: #fff;
			}
			/* ====== 新增结束 ====== */

			/* ============================================================
           RESPONSIVE (完全重构，无死代��?
           ============================================================ */
			@media (max-width:1100px) {
				.nav {
					display: none;
				}

				.nav-burger {
					display: flex;
				}

				.nav-dropdown {
					display: none;
				}

				.intro-grid-v2 {
					grid-template-columns: 1fr;
					gap: 40px;
				}

				.intro-visual-v2 {
					width: 100%;
					max-width: 600px;
					margin: 20px auto 0;
				}

				.intro-floating-badge {
					left: 50%;
					transform: translateX(-50%);
					bottom: -20px;
					animation: none;
					text-align: center;
					padding: 12px 24px;
					white-space: nowrap;
					width: 80%;
					display: flex;
					justify-content: center;
				}

				.intro-features-v2 {
					grid-template-columns: 1fr;
				}

				.cap-cards--overview {
					grid-template-columns: repeat(2, 1fr);
				}

				.cat-grid {
					grid-template-columns: repeat(2, 1fr);
				}

				.cat-card--wide {
					grid-column: span 2;
				}

				.cat-card--large {
					grid-column: span 2;
					grid-row: span 2;
				}

				.q-cta-card {
					grid-template-columns: auto 1fr;
				}

				.q-cta-actions {
					grid-column: 1 / -1;
					flex-direction: row;
					flex-wrap: wrap;
					margin-top: 10px;
				}

				.q-cta-actions .q-cta-btn {
					flex: 1;
					min-width: 200px;
				}

				.footer-grid {
					grid-template-columns: 1fr 1fr;
				}

				.footer-contact-wrap {
					flex-direction: column;
				}
			}

			@media (max-width:760px) {
				.topbar {
					display: none;
				}
				.float-content.qr-content {
					display: none !important;
				}

				.site-header {
					height: auto;
				}

				.header-inner {
					padding: 12px 0;
					align-items: center;
					flex-direction: row;
					justify-content: space-between;
				}

				.logo img {
					height: 36px;
				}

				.nav {
					width: 100%;
					overflow-x: auto;
					white-space: nowrap;
					padding-bottom: 4px;
				}

				.nav a {
					padding: 10px 0;
				}

				.hero {
					min-height: 55vh;
				}

				.hero-content {
					padding: 40px 0 50px;
				}

				.hero h1 {
					font-size: 2rem;
					margin-bottom: 10px;
				}

				.hero-lead {
					font-size: 1rem;
					margin-top: 10px;
					display: -webkit-box;
					-webkit-line-clamp: 2;
					-webkit-box-orient: vertical;
					overflow: hidden;
				}

				.hero-nums {
					gap: 15px;
					margin-top: 25px;
				}

				.hero-num b {
					font-size: 1.6rem;
				}

				.hero-arrow {
					display: none;
				}

				.hero-dots {
					bottom: 16px;
					gap: 8px;
				}

				.hero-dot {
					width: 8px;
					height: 8px;
				}

				.hero-dot.active {
					width: 22px;
				}

				.intro-visual-v2 {
					max-width: 100%;
					margin-top: 20px;
				}

				.intro-content-v2 {
					padding-right: 0;
				}

				.intro-floating-badge {
					display: none;
				}

				.cap-tabs {
					border-radius: 8px;
					flex-wrap: nowrap;
					overflow-x: auto;
					padding: 4px;
					justify-content: flex-start;
					width: 100%;
					border: none;
					background: transparent;
				}

				.cap-tab {
					border-radius: 6px;
					padding: 10px 20px;
					border: 1px solid rgba(255, 255, 255, 0.1);
					margin-right: 8px;
				}

				.cap-cards,
				.cap-cards--overview {
					grid-template-columns: 1fr;
				}

				.cap-card {
					padding: 30px 24px;
				}

				.cat-grid {
					grid-template-columns: 1fr;
					grid-auto-rows: 240px;
				}

				.cat-card--large,
				.cat-card--wide,
				.cat-card--small {
					grid-column: span 1;
					grid-row: span 1;
				}

				.cat-content h3,
				.cat-content p,
				.cat-btn {
					transform: translateY(0);
					opacity: 1;
				}

				.cat-btn {
					margin-top: 15px;
				}

				.q-cta-card {
					grid-template-columns: 1fr;
					text-align: center;
					justify-items: center;
					padding: 40px 25px;
				}

				.q-cta-card::before {
					top: 0;
					left: 0;
					width: 100%;
					height: 5px;
				}

				.q-cta-actions {
					flex-direction: column;
					width: 100%;
				}

				.q-cta-text p {
					margin: 0 auto;
				}

				.footer-grid {
					grid-template-columns: 1fr;
				}

				/* ====== 新增开始：手机端自适应缩小悬浮��?====== */
				.floating-widget {
					right: 15px;
					bottom: 85px;
				}
				.float-item, .back-to-top {
					width: 40px;
					height: 40px;
				}
				.float-icon svg, .back-to-top svg {
					width: 18px;
					height: 18px;
				}
				.back-to-top {
					right: 15px;
					bottom: 25px;
				}
				/* ====== 新增结束 ====== */
			}

			@media (max-width:480px) {
				.hero {
					min-height: 50vh;
				}

				.hero h1 {
					font-size: 1.8rem;
				}

				.hero-nums {
					flex-wrap: wrap;
					gap: 12px;
				}
			}
		

/* =========================================
   CRITICAL MOBILE FIXES (QR content display)
   ========================================= */
@media (max-width: 760px) {
  .float-content.qr-content {
    display: flex !important;
  }
}

/* =========================================
   CRITICAL MOBILE FIXES (header-inner layout)
   ========================================= */
@media (max-width: 900px) {
  .site-header .header-inner {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
}
@media (max-width: 760px) {
    .floating-widget {
        display: none !important;
    }
}
