@charset "UTF-8";

/* ============================================================
           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.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);
			}

						/* ============================================================
           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;
				}

				.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;
				}
			}
		</style>

/* =========================================
   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;
  }
}
