﻿/**
 * new5 — English template (based on new4)
 * Ink-blue base · warm gold accent · jade highlight · serif headings (.tpl-new5)
 */

:root {
	--lx-bg: #090d12;
	--lx-bg-mid: #0e141c;
	--lx-bg-elevated: #131b26;
	--lx-bg-card: rgba(255, 255, 255, 0.045);
	--lx-bg-card-hover: rgba(255, 255, 255, 0.075);
	--lx-border: rgba(232, 224, 210, 0.1);
	--lx-border-soft: rgba(232, 224, 210, 0.06);
	--lx-text: #eef2f7;
	--lx-muted: rgba(226, 230, 236, 0.62);
	--lx-nav-fg-on-dark: rgba(248, 250, 253, 0.92);
	--lx-nav-fg-on-dark-hover: #ffffff;
	--lx-dim: rgba(180, 188, 200, 0.42);
	--lx-gold: #d4a574;
	--lx-gold-dim: rgba(212, 165, 116, 0.35);
	--lx-jade: #3ecf9f;
	--lx-jade-soft: rgba(62, 207, 159, 0.22);
	--lx-sky: #7eb8ff;
	--lx-serif: 'Source Serif 4', 'Noto Serif SC', 'Songti SC', Georgia, serif;
	--lx-font: 'DM Sans', 'Noto Sans SC', system-ui, sans-serif;
	--lx-mono: 'JetBrains Mono', ui-monospace, monospace;
	--lx-max: 1280px;
	/* 顶栏胶囊宽度：约为视口宽度 80%（与安全区内边取较小值） */
	--lx-nav-bar-width: 80vw;
	--lx-radius: 18px;
	--lx-radius-lg: 26px;
	--lx-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
	--lx-shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.28);
	/* 固定顶栏占位：含安全区与「浮岛」上边距（与 .lx-nav 的 top 同步略放大） */
	--lx-nav-clear: clamp(96px, 12vw, 120px);
	--lx-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--lx-dur-reveal: 0.95s;
	--lx-dur-hero: 1.05s;
	--lx-dur-surface: 0.58s;
	--lx-dur-ui: 0.42s;
}

/* 内页：为 fixed 顶栏留出空间；首页由 new5.js 加 new5-home-body 取消 */
body.tpl-new5 {
	padding-top: var(--lx-nav-clear);
}

body.tpl-new5.new5-home-body {
	padding-top: 0;
}

/* 关于我们 / 新闻等浅色内页：取消 body 顶栏占位，避免顶栏下露一条墨底 */
body.tpl-new5:has(main.lx-research-light.lx-newszone),
body.tpl-new5.new5-light-inner-body {
	padding-top: 0;
	background:
		radial-gradient(ellipse 70% 55% at 20% 30%, rgba(212, 165, 116, 0.08), transparent 52%),
		linear-gradient(180deg, #f8f5ef 0%, #f2ebe2 50%, #ebe4d8 100%);
	color: #1a1714;
}

.tpl-new5 {
	font-family: var(--lx-font);
	background:
		radial-gradient(ellipse 120% 80% at 10% -10%, rgba(212, 165, 116, 0.07), transparent 52%),
		radial-gradient(ellipse 90% 60% at 95% 35%, rgba(62, 207, 159, 0.06), transparent 48%),
		var(--lx-bg);
	color: var(--lx-text);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.tpl-new5 #backTop {
	background: linear-gradient(145deg, var(--lx-gold), #c8956a);
	border: none;
	border-radius: 12px;
	color: #151210 !important;
	font-weight: 700;
	box-shadow: 0 14px 44px var(--lx-gold-dim);
}

.tpl-new5 #backTop:hover {
	transform: translateY(-3px);
	color: #151210 !important;
}

/* —— 滚动进度 —— */
.lx-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 11000;
	background: rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

.lx-progress span {
	display: block;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--lx-jade), var(--lx-gold));
	box-shadow: 0 0 24px var(--lx-jade-soft);
	border-radius: 0 2px 2px 0;
}

/* —— 顶栏：Palantir 式浮岛 · 强毛玻璃（#myHeader 提高优先级，避免被 styles.css .header 底色盖住） —— */
.tpl-new5 #myHeader.header.lx-nav,
.tpl-new5 .lx-nav {
	position: fixed;
	top: max(1rem, env(safe-area-inset-top, 0px));
	left: 0;
	right: 0;
	width: min(var(--lx-nav-bar-width), calc(100vw - 2 * max(1rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px))));
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 10080;
	padding: 0;
	/* overflow:hidden 在部分环境下会削弱 backdrop 合成观感 */
	overflow: visible;
	border-radius: 14px;
	border: none;
	box-shadow:
		0 12px 48px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	/*
	 * 毛玻璃：浅色雾面层（不要用深色 rgba，否则像一块黑条盖住 blur）。
	 * 背后内容由 backdrop-filter 雾化透出。
	 */
	background: rgba(255, 255, 255, 0.1) !important;
	/* 模糊再轻一档，背后内容更清晰（过重会像整块磨砂） */
	backdrop-filter: blur(12px) saturate(1.5) !important;
	-webkit-backdrop-filter: blur(12px) saturate(1.5) !important;
	transition: background 0.38s ease;
	will-change: backdrop-filter;
}

.tpl-new5 #myHeader.header.lx-nav.is-scrolled,
.tpl-new5 .lx-nav.is-scrolled {
	background: rgba(255, 255, 255, 0.16) !important;
}

@supports not (
	(backdrop-filter: blur(1px))
	or (-webkit-backdrop-filter: blur(1px))
) {
	.tpl-new5 #myHeader.header.lx-nav,
	.tpl-new5 .lx-nav {
		background: rgba(12, 14, 18, 0.82) !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	.tpl-new5 #myHeader.header.lx-nav.is-scrolled,
	.tpl-new5 .lx-nav.is-scrolled {
		background: rgba(12, 14, 18, 0.9) !important;
	}
}

/*
 * 勿在 prefers-reduced-motion 下关闭 backdrop-filter：
 * Windows「动画效果」关闭时 Chromium 会启用该媒体查询，
 * 原先写成实心深色顶栏 → 用户一直觉得「背景很黑、没有毛玻璃」。
 */
@media (prefers-reduced-motion: reduce) {
	.tpl-new5 #myHeader.header.lx-nav,
	.tpl-new5 .lx-nav {
		transition: none !important;
	}

	.tpl-new5 #myHeader.header.lx-nav.is-scrolled,
	.tpl-new5 .lx-nav.is-scrolled {
		transition: none !important;
	}
}

/* main.js 会给 #myHeader 加 .sticky，保持与默认相同的收窄宽度 */
.tpl-new5 #myHeader.header.lx-nav.sticky,
.tpl-new5 .lx-nav.sticky {
	top: max(1rem, env(safe-area-inset-top, 0px));
	left: 0;
	right: 0;
	width: min(var(--lx-nav-bar-width), calc(100vw - 2 * max(1rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px))));
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 10080;
}

/* 避免主题里 .sticky.header:before 叠一层盖住毛玻璃观感 */
.tpl-new5 #myHeader.header.sticky::before {
	content: none !important;
	display: none !important;
}

.tpl-new5 .lx-nav .container {
	max-width: 100%;
}

/* Bootstrap navbar-dark 可能带深色底，盖住顶栏雾面 */
.tpl-new5 #myHeader.header.lx-nav .navbar,
.tpl-new5 #myHeader.header.lx-nav .navbar-collapse {
	background: transparent !important;
	box-shadow: none !important;
}

.tpl-new5 .lx-nav .navbar {
	padding-top: 0.65rem;
	padding-bottom: 0.65rem;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

/* 宽屏：菜单相对顶栏水平居中，登录靠右 */
@media (min-width: 992px) {
	.tpl-new5 .lx-nav .navbar {
		position: relative;
		flex-wrap: nowrap;
	}

	.tpl-new5 .lx-nav .navbar-toggler {
		margin-left: auto;
	}

	.tpl-new5 .lx-nav .lx-nav-collapse {
		display: flex !important;
		flex: 1 1 auto;
		flex-basis: auto;
		align-items: center;
		justify-content: flex-end;
	}

	.tpl-new5 .lx-nav .lx-nav-menu {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		flex-direction: row;
		flex-wrap: nowrap;
		margin: 0 !important;
		z-index: 2;
	}

	.tpl-new5 .lx-nav .lx-nav-menu > .nav-item {
		position: relative;
	}

	.tpl-new5 .lx-nav .lx-nav-menu > .nav-item + .nav-item {
		margin-left: 0.15rem;
		padding-left: 0.85rem;
	}

	.tpl-new5 .lx-nav .lx-nav-menu > .nav-item + .nav-item::before {
		content: '|';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		font-family: var(--lx-mono);
		font-size: 0.75rem;
		font-weight: 400;
		line-height: 1;
		color: rgba(248, 250, 253, 0.38);
		pointer-events: none;
		user-select: none;
	}

	.tpl-new5 .lx-nav.lx-nav--tone-light .lx-nav-menu > .nav-item + .nav-item::before {
		color: rgba(18, 20, 26, 0.28);
	}

	.tpl-new5 .lx-nav .lx-nav-menu .nav-link {
		padding-left: 0.65rem !important;
		padding-right: 0.65rem !important;
	}

	.tpl-new5 .lx-nav .header-btn {
		position: relative;
		z-index: 3;
		margin-left: auto;
		flex-shrink: 0;
	}

	.tpl-new5 .lx-nav .logo {
		position: relative;
		z-index: 3;
		flex-shrink: 0;
	}
}

@media (max-width: 991.98px) {
	.tpl-new5 .lx-nav .lx-nav-menu > .nav-item + .nav-item::before {
		display: none;
	}
}

.tpl-new5 .lx-nav .navbar-brand img {
	width: auto;
	height: auto;
	max-height: clamp(38px, 5.25vw, 52px);
	max-width: min(230px, 46vw);
	object-fit: contain;
	transition:
		filter 0.35s ease,
		opacity 0.35s ease;
}

/* LOGO 随背后区块明暗切换（由 data-lx-nav-tone + new5.js 采样控制） */
.tpl-new5 .lx-nav.lx-nav--tone-dark .navbar-brand img {
	filter: brightness(0) invert(1);
	opacity: 0.94;
}

/* 亮背景区块：压成深色剪影（适配纯白 Logo；有色 Logo会单色化以利辨认） */
.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-brand img {
	filter: brightness(0);
	opacity: 0.96;
}

.tpl-new5 .lx-nav.lx-nav--tone-dark .navbar-brand:hover img {
	filter: brightness(0) invert(1);
	opacity: 1;
}

.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-brand:hover img {
	filter: brightness(0);
	opacity: 1;
}

.tpl-new5 .lx-nav .navbar-brand {
	padding-top: 0;
	padding-bottom: 0;
}

.tpl-new5 .lx-nav .nav-link {
	font-family: var(--lx-font);
	font-size: 0.875rem !important;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0.02em;
	color: var(--lx-nav-fg-on-dark) !important;
	padding: 0.55rem 1rem !important;
	position: relative;
	border-radius: 8px;
	transition:
		color 0.25s ease,
		background 0.25s ease;
}

.tpl-new5 .lx-nav .nav-link::after {
	display: none;
}

.tpl-new5 .lx-nav .nav-link:hover {
	color: var(--lx-nav-fg-on-dark-hover) !important;
	background: rgba(255, 255, 255, 0.08);
}

.tpl-new5 .lx-nav .dropdown-menu {
	background: rgba(18, 24, 32, 0.98);
	border: 1px solid var(--lx-border);
	border-radius: 14px;
	padding: 0.45rem;
	min-width: 13rem;
	box-shadow: var(--lx-shadow);
	margin-top: 0.35rem;
}

.tpl-new5 .lx-nav .dropdown-item {
	font-size: 0.875rem;
	color: var(--lx-muted);
	border-radius: 10px;
	padding: 0.5rem 0.75rem;
	font-family: var(--lx-font);
}

.tpl-new5 .lx-nav .dropdown-item:hover {
	background: rgba(212, 165, 116, 0.12);
	color: var(--lx-text);
}

.tpl-new5 .lx-nav .theme-btn.btn-border.white {
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
	color: var(--lx-nav-fg-on-dark) !important;
	border-radius: 999px;
	height: 40px;
	padding: 0 1.25rem;
	font-family: var(--lx-font);
	font-size: 0.8125rem !important;
	text-transform: none;
	letter-spacing: 0.02em;
	font-weight: 600;
}

.tpl-new5 .lx-nav .theme-btn.btn-border.white:hover {
	border-color: var(--lx-gold);
	background: rgba(212, 165, 116, 0.12);
	color: var(--lx-nav-fg-on-dark-hover) !important;
}

.tpl-new5 .lx-nav .navbar-toggler {
	border-color: var(--lx-border);
	border-radius: 10px;
}

/* 顶栏 CTA：预约咨询 */
.tpl-new5 .lx-nav .header-btn {
	gap: 0.65rem;
}

.tpl-new5 .lx-nav .lx-nav-cta {
	min-height: 40px;
	padding: 0 1.2rem;
	font-size: 0.8125rem !important;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-left: 0.35rem;
	flex-shrink: 0;
	white-space: nowrap;
	color: #ffffff !important;
	box-shadow:
		0 3px 0 rgba(0, 0, 0, 0.16),
		0 12px 32px rgba(62, 207, 159, 0.32);
}

.tpl-new5 .lx-nav .lx-nav-cta:hover {
	color: #ffffff !important;
	box-shadow:
		0 4px 0 rgba(0, 0, 0, 0.14),
		0 18px 40px rgba(62, 207, 159, 0.42);
}

@media (max-width: 991.98px) {
	.tpl-new5 .lx-nav .header-btn {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin-top: 0.5rem;
		padding-top: 0.75rem;
		border-top: 1px solid var(--lx-border-soft);
	}

	.tpl-new5 .lx-nav .lx-nav-cta {
		margin-left: 0;
		width: 100%;
		min-height: 44px;
	}
}

/* 顶栏菜单文案 / 按钮 / 汉堡：随 lx-nav--tone-dark | tone-light 与 LOGO 同步 */
.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-dark .navbar-nav .nav-link,
.tpl-new5 .lx-nav.lx-nav--tone-dark .navbar-nav .nav-link {
	color: var(--lx-nav-fg-on-dark) !important;
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-dark .navbar-nav .nav-link:hover,
.tpl-new5 .lx-nav.lx-nav--tone-dark .navbar-nav .nav-link:hover {
	color: var(--lx-nav-fg-on-dark-hover) !important;
	background: rgba(255, 255, 255, 0.1);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-dark .navbar-nav .dropdown-toggle::after,
.tpl-new5 .lx-nav.lx-nav--tone-dark .navbar-nav .dropdown-toggle::after {
	border-top-color: rgba(248, 250, 253, 0.78);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-dark .theme-btn.btn-border.white,
.tpl-new5 .lx-nav.lx-nav--tone-dark .theme-btn.btn-border.white {
	color: var(--lx-nav-fg-on-dark) !important;
	border-color: rgba(255, 255, 255, 0.24);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-dark .theme-btn.btn-border.white:hover,
.tpl-new5 .lx-nav.lx-nav--tone-dark .theme-btn.btn-border.white:hover {
	color: var(--lx-nav-fg-on-dark-hover) !important;
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .navbar-nav .nav-link,
.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-nav .nav-link {
	color: rgba(18, 20, 26, 0.74) !important;
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .navbar-nav .nav-link:hover,
.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-nav .nav-link:hover {
	color: rgba(6, 8, 12, 0.96) !important;
	background: rgba(0, 0, 0, 0.055);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .navbar-nav .dropdown-toggle::after,
.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-nav .dropdown-toggle::after {
	border-top-color: rgba(22, 24, 30, 0.62);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .theme-btn.btn-border.white,
.tpl-new5 .lx-nav.lx-nav--tone-light .theme-btn.btn-border.white {
	border-color: rgba(0, 0, 0, 0.16);
	background: rgba(0, 0, 0, 0.035);
	color: rgba(14, 16, 22, 0.92) !important;
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .theme-btn.btn-border.white:hover,
.tpl-new5 .lx-nav.lx-nav--tone-light .theme-btn.btn-border.white:hover {
	border-color: rgba(0, 0, 0, 0.3);
	background: rgba(0, 0, 0, 0.075);
	color: #090d12 !important;
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .navbar-toggler,
.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-toggler {
	border-color: rgba(0, 0, 0, 0.18);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .navbar-toggler-icon,
.tpl-new5 .lx-nav.lx-nav--tone-light .navbar-toggler-icon {
	filter: invert(1);
	opacity: 0.82;
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-light .header-btn-group,
.tpl-new5 .lx-nav.lx-nav--tone-light .header-btn-group {
	color: rgba(22, 24, 30, 0.42);
}

.tpl-new5 #myHeader.header.lx-nav.lx-nav--tone-dark .header-btn-group,
.tpl-new5 .lx-nav.lx-nav--tone-dark .header-btn-group {
	color: rgba(236, 240, 246, 0.62);
}

/* —— 布局 —— */
.lx-main {
	overflow-x: hidden;
}

.lx-container {
	width: 100%;
	max-width: var(--lx-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1.25rem, 5vw, 2.25rem);
	padding-right: clamp(1.25rem, 5vw, 2.25rem);
}

.lx-stack {
	counter-reset: lxsec;
}

section.lx-panel {
	counter-increment: lxsec;
}

/* —— Hero —— */
.lx-hero {
	position: relative;
	min-height: min(100vh, 940px);
	display: flex;
	align-items: center;
	padding: clamp(5.5rem, 14vh, 9.5rem) 0 clamp(4.5rem, 11vh, 7rem);
	overflow: hidden;
	border-bottom: none;
	isolation: isolate;
	background: var(--lx-bg-mid);
}

.lx-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.lx-hero__photo,
.lx-hero__video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lx-hero__photo {
	z-index: 0;
	transition: opacity var(--lx-dur-reveal) ease;
}

.lx-hero__video {
	z-index: 1;
	opacity: 0;
	transition: opacity var(--lx-dur-reveal) ease;
	pointer-events: none;
}

.lx-hero--video-ready .lx-hero__video {
	opacity: 1;
}

.lx-hero--video-ready .lx-hero__photo {
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	.lx-hero__video {
		display: none !important;
	}

	.lx-hero--video-ready .lx-hero__photo {
		opacity: 1;
	}
}

/* Hero 遮罩：科技蓝——更深、更高饱和度（略带青的蓝），右侧仍渐透出画面 */
.lx-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		rgba(0, 12, 48, 0.96) 0%,
		rgba(4, 58, 168, 0.82) 40%,
		rgba(10, 110, 235, 0.58) 100%
	);
}

.lx-hero__shell {
	position: relative;
	z-index: 10;
	width: 100%;
}

.lx-hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

.lx-hero__copy {
	min-width: 0;
}

.lx-hero__inner {
	max-width: 38rem;
}

@media (min-width: 992px) {
	.lx-hero__inner {
		max-width: 42rem;
	}
}

/* 纵向间距用 gap，避免每行外包一层 div 时 margin 折叠导致标题与副标题挤叠 */
.lx-hero-stage {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(1.15rem, 2.8vw, 1.75rem);
}

.lx-hero-stage .lx-hero__tag {
	margin-bottom: 0;
}

.lx-hero-stage .lx-hero__title {
	margin-bottom: 0;
}

.lx-hero-stage .lx-hero__lead,
.lx-hero-stage .lx-hero__pills {
	margin-top: 0;
	margin-bottom: 0;
}

.lx-hero__tag {
	font-family: var(--lx-mono);
	font-size: clamp(0.875rem, 2.1vw, 1.0625rem);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lx-gold);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.lx-hero__tag::before {
	content: '';
	width: 52px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--lx-gold), transparent);
}

.lx-hero__title {
	font-family: var(--lx-serif);
	font-size: clamp(2.35rem, 6.5vw, 3.85rem);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.02em;
	margin: 0 0 1.35rem;
	max-width: 20ch;
	/* background-clip:text 时行框偏紧，两行时底部易与副标题视觉上打架 */
	padding-bottom: 0.14em;
	background: linear-gradient(180deg, #fff 18%, rgba(230, 218, 198, 0.95) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lx-hero__lead {
	font-size: clamp(1.02rem, 2.2vw, 1.2rem);
	line-height: 1.78;
	color: var(--lx-muted);
	max-width: 40rem;
	margin: 0 0 1.5rem;
	font-weight: 400;
}

.lx-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.65rem;
	margin: 0 0 2rem;
	min-height: 1.5rem;
}

.lx-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--lx-border);
	background: rgba(255, 255, 255, 0.04);
	font-family: var(--lx-font);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: none;
	color: rgba(238, 242, 247, 0.9);
	transition:
		border-color 0.3s ease,
		background 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.lx-pill:hover {
	border-color: rgba(212, 165, 116, 0.45);
	background: rgba(212, 165, 116, 0.08);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.lx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
	align-items: center;
}

.lx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 1.75rem;
	font-family: var(--lx-font);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: none;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	text-decoration: none !important;
	transition:
		transform var(--lx-dur-ui) var(--lx-ease-out),
		box-shadow var(--lx-dur-ui) ease,
		filter var(--lx-dur-ui) ease;
}

.lx-btn--solid {
	background: linear-gradient(145deg, var(--lx-jade), #2fb889);
	color: #081510 !important;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 18px 44px var(--lx-jade-soft);
}

.lx-btn--solid:hover {
	transform: translateY(-3px);
	filter: brightness(1.05);
	box-shadow:
		0 6px 0 rgba(0, 0, 0, 0.15),
		0 26px 56px rgba(62, 207, 159, 0.35);
}

.lx-btn--gold {
	background: linear-gradient(145deg, var(--lx-gold), #c8956a);
	color: #151210 !important;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18), 0 18px 44px var(--lx-gold-dim);
}

.lx-btn--gold:hover {
	transform: translateY(-3px);
	filter: brightness(1.05);
	box-shadow:
		0 6px 0 rgba(0, 0, 0, 0.15),
		0 26px 56px rgba(212, 165, 116, 0.35);
	color: #151210 !important;
}

.lx-btn--ghost {
	background: transparent;
	color: var(--lx-muted) !important;
	border: 1px solid var(--lx-border);
	box-shadow: none;
	border-radius: 999px;
}

.lx-btn--ghost:hover {
	color: var(--lx-text) !important;
	border-color: var(--lx-gold);
	background: rgba(212, 165, 116, 0.06);
	transform: translateY(-2px);
}

/* Hero 入场 */
.lx-hero-stage .lx-hero-line {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity var(--lx-dur-hero) var(--lx-ease-out),
		transform var(--lx-dur-hero) var(--lx-ease-out);
}

.lx-hero-stage.is-ready .lx-hero-line {
	opacity: 1;
	transform: translateY(0);
}

.lx-hero-stage.is-ready .lx-hero-line:nth-child(1) {
	transition-delay: 0.06s;
}

.lx-hero-stage.is-ready .lx-hero-line:nth-child(2) {
	transition-delay: 0.16s;
}

.lx-hero-stage.is-ready .lx-hero-line:nth-child(3) {
	transition-delay: 0.28s;
}

.lx-hero-stage.is-ready .lx-hero-line:nth-child(4) {
	transition-delay: 0.42s;
}

.lx-hero-stage.is-ready .lx-hero-line:nth-child(5) {
	transition-delay: 0.56s;
}

/* —— Panel —— */
.lx-panel {
	position: relative;
	padding: clamp(4.75rem, 12vw, 7.5rem) 0;
	border-bottom: 1px solid var(--lx-border-soft);
	background: transparent;
}

.lx-panel::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: min(92%, 1080px);
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--lx-border), transparent);
	opacity: 0.85;
	pointer-events: none;
}

.lx-panel--alt {
	background: linear-gradient(180deg, rgba(19, 27, 38, 0.65) 0%, transparent 55%);
}

.lx-panel__grid {
	display: grid;
	grid-template-columns: minmax(56px, 100px) minmax(0, 1fr);
	gap: clamp(1.25rem, 4.5vw, 3.5rem);
	align-items: start;
}

@media (max-width: 767px) {
	.lx-panel__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.lx-panel__rail {
	position: relative;
	padding-top: 0.5rem;
}

@media (max-width: 767px) {
	.lx-panel__rail {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 0.5rem 1rem;
		padding-bottom: 1rem;
		border-bottom: 1px solid var(--lx-border-soft);
		margin-bottom: 0.5rem;
	}
}

.lx-panel__idx {
	font-family: var(--lx-mono);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--lx-dim);
	letter-spacing: 0.12em;
	display: block;
	line-height: 1.35;
	text-transform: uppercase;
}

.lx-panel__idx::before {
	content: counter(lxsec, decimal-leading-zero);
	font-family: var(--lx-serif);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	display: block;
	margin-bottom: 0.85rem;
	background: linear-gradient(145deg, var(--lx-gold), var(--lx-jade));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: none;
	filter: drop-shadow(0 12px 28px rgba(62, 207, 159, 0.15));
}

@media (max-width: 767px) {
	.lx-panel__idx::before {
		display: inline;
		margin-right: 0.45rem;
		margin-bottom: 0;
		font-size: 1.35rem;
		vertical-align: -0.12em;
	}

	.lx-panel__idx {
		display: inline;
		font-size: 0.8125rem;
	}
}

.lx-panel__head {
	margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
	max-width: 52rem;
}

.lx-panel__head--center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.lx-panel__head--center .lx-panel__desc {
	margin-left: auto;
	margin-right: auto;
}

.lx-panel__head-logo {
	margin: 0 auto 1.35rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 0;
}

.lx-panel__head-logo img {
	display: block;
	width: 200px;
	height: 200px;
	max-width: min(200px, 70vw);
	object-fit: contain;
}

.lx-panel__eyebrow {
	font-family: var(--lx-mono);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lx-jade);
	margin-bottom: 0.75rem;
	display: block;
}

.lx-panel__title {
	font-family: var(--lx-serif);
	font-size: clamp(1.75rem, 3.6vw, 2.65rem);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 1.1rem;
	color: var(--lx-text);
}

.lx-panel__desc {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.78;
	color: var(--lx-muted);
	max-width: 46rem;
	font-weight: 400;
}

.lx-panel__body {
	min-width: 0;
}

/* 能力矩阵：左 L-TFA 示意 · 右三张卡片 */
.tpl-new5 .lx-panel--capabilities {
	padding-top: clamp(5.25rem, 13vw, 8.25rem);
	padding-bottom: clamp(5.25rem, 13vw, 8.25rem);
}

.tpl-new5 .lx-panel--capabilities .lx-panel__head {
	margin-bottom: clamp(0.25rem, 1vw, 0.5rem);
}

.tpl-new5 .lx-cap-matrix {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4.5vw, 2.75rem);
	align-items: stretch;
	margin-top: clamp(2.25rem, 5.5vw, 3.5rem);
}

.tpl-new5 .lx-cap-matrix__viz,
.tpl-new5 .lx-cap-matrix__cards {
	min-width: 0;
}

.tpl-new5 .lx-cap-matrix__viz {
	display: flex;
	align-items: center;
	min-height: min(580px, 82vw);
}

.tpl-new5 .lx-cap-matrix__viz #ltfa-viz-home {
	width: 100%;
	flex: 1;
}

/* 与「应用场景」同款 story-stack / lx-tile--text；仅桌面端右栏收窄对齐 */
.tpl-new5 .lx-panel--capabilities .lx-story-stack--cap {
	max-width: min(52rem, 100%);
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(0.25rem, 1.5vw, 0.75rem);
	padding-right: clamp(0.25rem, 1.5vw, 0.75rem);
}

@media (min-width: 992px) {
	.tpl-new5 .lx-panel--capabilities .lx-story-stack--cap {
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.tpl-new5 .lx-panel--capabilities .lx-story-stack--cap .lx-story-step .lx-tile {
		max-width: min(100%, 26rem);
		margin-left: auto;
		margin-right: 0;
	}

	.tpl-new5 .lx-cap-matrix {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		gap: clamp(1.5rem, 3vw, 2.5rem);
		align-items: center;
		min-height: 680px;
	}

	.tpl-new5 .lx-cap-matrix__viz {
		min-height: 680px;
	}

	.tpl-new5 .lx-cap-matrix__cards {
		padding-left: clamp(0.75rem, 2vw, 1.5rem);
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

@media (max-width: 991.98px) {
	.tpl-new5 .lx-panel--capabilities .lx-story-stack--cap .lx-story-step .lx-tile {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 767.98px) {
	.tpl-new5 .lx-panel--capabilities {
		padding-top: clamp(3.5rem, 10vw, 4.75rem);
		padding-bottom: clamp(3.5rem, 10vw, 4.75rem);
	}

	.tpl-new5 .lx-cap-matrix {
		gap: 1rem;
		margin-top: 1.25rem;
	}

	.tpl-new5 .lx-cap-matrix__cards {
		padding-left: 0;
		padding-right: 0;
	}

	.tpl-new5 .lx-cap-matrix__viz {
		min-height: min(420px, 72vw);
	}
}

/* 能力矩阵板块末尾：诺·信内测提示 */
.tpl-new5 .lx-panel--capabilities .lx-normxin-outro {
	max-width: none;
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
	padding-top: clamp(1.25rem, 3vw, 1.75rem);
}

.lx-normxin-outro {
	margin-top: clamp(2.5rem, 6vw, 3.75rem);
	padding-top: clamp(2rem, 5vw, 3rem);
	border-top: 1px solid var(--lx-border-soft);
	max-width: 46rem;
}

.lx-normxin-outro__text {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.78;
	color: var(--lx-muted);
}

.lx-normxin-outro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
	align-items: center;
}

/* 实验室板块末尾：外链按钮组 */
.tpl-new5 #section-lab .lx-lab-outro {
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
	padding-top: clamp(1.25rem, 3vw, 1.75rem);
}

/* 实验室 · 横向时间轴（正方形卡片 + 拖拽滚动） */
.tpl-new5 .lx-lab-timeline {
	margin-top: clamp(1.75rem, 4.5vw, 2.75rem);
}

.tpl-new5 .lx-lab-timeline__viewport {
	overflow-x: auto;
	overflow-y: hidden;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 0;
	margin-left: max(-1.25rem, calc(-1 * clamp(1.25rem, 5vw, 2.25rem) + 0.25rem));
	margin-right: max(-1.25rem, calc(-1 * clamp(1.25rem, 5vw, 2.25rem) + 0.25rem));
	padding-left: max(1.25rem, calc(clamp(1.25rem, 5vw, 2.25rem) - 0.25rem));
	padding-right: max(1.25rem, calc(clamp(1.25rem, 5vw, 2.25rem) - 0.25rem));
}

.tpl-new5 .lx-lab-timeline__viewport::-webkit-scrollbar {
	display: none;
}

.tpl-new5 .lx-lab-timeline__viewport.is-dragging {
	cursor: grabbing;
	user-select: none;
}

.tpl-new5 .lx-lab-timeline__viewport.is-dragging .lx-tile {
	pointer-events: none;
}

.tpl-new5 .lx-lab-timeline__track {
	display: flex;
	align-items: flex-start;
	gap: clamp(1.15rem, 2.8vw, 1.85rem);
	width: max-content;
	min-width: 100%;
	padding-bottom: 2.25rem;
	position: relative;
}

.tpl-new5 .lx-lab-timeline__track::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 7px;
	height: 2px;
	background: linear-gradient(
		90deg,
		rgba(212, 165, 116, 0.08),
		rgba(212, 165, 116, 0.42) 12%,
		rgba(62, 207, 159, 0.35) 50%,
		rgba(212, 165, 116, 0.42) 88%,
		rgba(212, 165, 116, 0.08)
	);
	pointer-events: none;
}

.tpl-new5 .lx-lab-timeline__step {
	flex: 0 0 auto;
	width: clamp(260px, 28vw, 300px);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tpl-new5 .lx-lab-timeline__marker {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.35rem;
	position: relative;
	z-index: 1;
}

.tpl-new5 .lx-lab-timeline__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--lx-gold), #c8956a);
	border: 2px solid rgba(9, 13, 18, 0.92);
	box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.22);
	flex-shrink: 0;
}

.tpl-new5 .lx-lab-timeline__year {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	font-variant-numeric: tabular-nums;
	color: rgba(212, 165, 116, 0.92);
	white-space: nowrap;
	line-height: 1;
}

.tpl-new5 #section-lab .lx-tile--square {
	width: 100%;
	aspect-ratio: 1;
	padding: clamp(2.15rem, 4.5vw, 2.65rem) 1.35rem clamp(1.65rem, 3.8vw, 2rem);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	box-sizing: border-box;
	overflow: hidden;
}

.tpl-new5 #section-lab .lx-tile--square::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 130' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='base' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%230a2848' stop-opacity='0'/%3E%3Cstop offset='45%25' stop-color='%230a2848' stop-opacity='1'/%3E%3Cstop offset='100%25' stop-color='%230d3558'/%3E%3C/linearGradient%3E%3ClinearGradient id='w1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23081f38'/%3E%3Cstop offset='100%25' stop-color='%230f3a5e'/%3E%3C/linearGradient%3E%3ClinearGradient id='w2' x1='100%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23124a72'/%3E%3Cstop offset='100%25' stop-color='%2319668f'/%3E%3C/linearGradient%3E%3ClinearGradient id='w3' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%231f7aa8'/%3E%3Cstop offset='100%25' stop-color='%232d96bf'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='58' width='400' height='72' fill='url(%23base)'/%3E%3Crect x='0' y='96' width='400' height='34' fill='%230a2848'/%3E%3Cpath d='M0 130 L0 78 C40 58 75 88 115 68 C155 48 190 72 230 58 C270 44 305 68 345 54 C375 44 400 62 400 52 L400 130 Z' fill='url(%23w1)' fill-opacity='0.72'/%3E%3Cpath d='M0 130 L0 88 C40 102 75 76 115 92 C155 108 190 82 230 96 C270 110 305 84 345 98 C375 108 400 90 400 100 L400 130 Z' fill='url(%23w2)' fill-opacity='0.58'/%3E%3Cpath d='M0 130 L0 98 C45 112 85 92 125 104 C165 116 205 96 245 108 C285 120 325 100 365 112 C385 120 400 108 400 114 L400 130 Z' fill='url(%23w3)' fill-opacity='0.42'/%3E%3Cpath d='M0 130 L0 108 C35 118 70 106 105 114 C140 122 175 108 210 116 C245 124 280 110 315 118 C350 126 385 112 400 120 L400 130 Z' fill='%234ab8d8' fill-opacity='0.16'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% 100%;
	border-radius: 0 0 calc(var(--lx-radius) - 1px) calc(var(--lx-radius) - 1px);
	mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 18%, #000 38%, #000 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 18%, #000 38%, #000 100%);
	transition: opacity var(--lx-dur-ui) ease, transform var(--lx-dur-surface) var(--lx-ease-out);
}

.tpl-new5 #section-lab .lx-tile--square:hover::after {
	opacity: 1;
	transform: translateY(-2px);
}

.tpl-new5 #section-lab .lx-tile--square .lx-tile__title {
	font-size: 1.1875rem;
	margin: 0 0 0.65rem;
	width: 100%;
	position: relative;
	z-index: 1;
}

.tpl-new5 #section-lab .lx-tile--square .lx-tile__text {
	font-size: 0.9375rem;
	line-height: 1.68;
	flex: 1;
	min-height: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	position: relative;
	z-index: 1;
}

.tpl-new5 #section-lab .lx-tile--square:hover {
	transform: translateY(-6px);
}

/* 开放科研创新合作 · 独立母版页 researchopen.html */
.tpl-new5 .lx-research-open-hero {
	padding-top: clamp(1.5rem, 4vw, 2.5rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
}

.tpl-new5 .lx-research-open-hero .position {
	margin-bottom: 1.25rem;
}

.tpl-new5 .lx-research-open-body {
	padding-top: clamp(2.5rem, 6vw, 3.5rem);
	padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.tpl-new5 .lx-research-open-partners.lx-newszone {
	padding-top: clamp(3rem, 8vw, 5rem);
	padding-bottom: clamp(3rem, 8vw, 5rem);
}

.tpl-new5 .lx-research-open-partners .lx-marquee-wrap {
	margin-top: 0.5rem;
	background: rgba(255, 253, 249, 0.92);
	border: 1px solid rgba(26, 23, 20, 0.08);
	box-shadow: 0 8px 32px rgba(26, 23, 20, 0.06);
}

.tpl-new5 .lx-research-open-cta {
	padding-top: clamp(3rem, 8vw, 5rem);
	padding-bottom: clamp(4rem, 10vw, 6rem);
}

.tpl-new5 .lx-research-open-cta__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
	justify-content: center;
	align-items: center;
}

.lx-lab-outro {
	margin-top: clamp(2.5rem, 6vw, 3.75rem);
	padding-top: clamp(2rem, 5vw, 3rem);
	border-top: 1px solid var(--lx-border-soft);
	max-width: 46rem;
}

.lx-lab-outro__lead {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.78;
	color: var(--lx-muted);
}

.lx-lab-outro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
	align-items: center;
}

/* Tiles */
.lx-tiles {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.15rem;
}

@media (min-width: 768px) {
	.lx-tiles {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.35rem;
	}
}

.lx-tile {
	position: relative;
	padding: 1.75rem 1.55rem;
	border-radius: var(--lx-radius);
	background: var(--lx-bg-card);
	border: 1px solid var(--lx-border-soft);
	overflow: hidden;
	transition:
		transform var(--lx-dur-surface) var(--lx-ease-out),
		border-color var(--lx-dur-ui) ease,
		background var(--lx-dur-ui) ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.lx-tile::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(145deg, rgba(212, 165, 116, 0.35), transparent 42%, rgba(62, 207, 159, 0.22));
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.lx-tile:hover {
	transform: translateY(-8px);
	border-color: rgba(212, 165, 116, 0.22);
	background: var(--lx-bg-card-hover);
}

.lx-tile__icon {
	width: 56px;
	height: 56px;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--lx-border);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lx-tile__icon img {
	max-width: 28px;
	max-height: 28px;
	object-fit: contain;
	opacity: 0.92;
	transition:
		opacity var(--lx-dur-ui) ease,
		transform var(--lx-dur-ui) ease;
}

.lx-tile:hover .lx-tile__icon img {
	opacity: 1;
	transform: scale(1.08);
}

.lx-tile__title {
	font-family: var(--lx-serif);
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 0.65rem;
	line-height: 1.35;
	letter-spacing: -0.015em;
	color: var(--lx-text);
}

.lx-tile__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.68;
	color: var(--lx-muted);
}

.lx-tile--text .lx-tile__title {
	font-size: 1.1875rem;
}

/* Marquee tray */
.lx-marquee-wrap {
	margin-top: 0.5rem;
	padding: 1.35rem 1rem;
	border-radius: var(--lx-radius);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--lx-border-soft);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.lx-marquee {
	position: relative;
	overflow: hidden;
	padding: 0.35rem 0;
}

.lx-marquee__track {
	display: flex;
	width: max-content;
	gap: clamp(2.5rem, 6vw, 4.5rem);
	animation: lx-marquee 44s linear infinite;
	align-items: center;
	will-change: transform;
	backface-visibility: hidden;
}

.lx-marquee:hover .lx-marquee__track {
	animation-play-state: paused;
}

.lx-marquee img {
	height: clamp(48px, 8.5vw, 68px);
	width: auto;
	max-width: 180px;
	object-fit: contain;
	opacity: 1;
	transform: scale(1);
	transform-origin: center center;
	transition:
		transform var(--lx-dur-ui) var(--lx-ease-out),
		filter var(--lx-dur-ui) ease;
}

.lx-marquee img:hover {
	transform: scale(1.14);
}

@keyframes lx-marquee {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

/* CTA */
.lx-cta {
	position: relative;
	padding: clamp(4rem, 11vw, 6.5rem) 0;
	background:
		radial-gradient(ellipse 55% 90% at 50% 120%, rgba(62, 207, 159, 0.09), transparent 58%),
		radial-gradient(ellipse 40% 70% at 15% 40%, rgba(212, 165, 116, 0.06), transparent 55%);
	border-bottom: none;
}

.lx-cta::before {
	display: none;
}

.lx-cta__card {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: clamp(2.25rem, 6vw, 3.25rem) clamp(1.5rem, 5vw, 2.5rem);
	border-radius: var(--lx-radius-lg);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid var(--lx-border);
	box-shadow: var(--lx-shadow-soft);
}

.lx-cta__text {
	font-family: var(--lx-serif);
	font-size: clamp(1.15rem, 2.5vw, 1.45rem);
	line-height: 1.65;
	color: var(--lx-muted);
	margin: 0 auto 1.75rem;
	font-weight: 500;
	max-width: 36rem;
}

.lx-cta .lx-btn--solid {
	min-width: 200px;
}

/* News */
.lx-newszone.lx-panel::before {
	background: linear-gradient(90deg, transparent, rgba(26, 23, 20, 0.1), transparent);
	opacity: 0.55;
}

.lx-newszone {
	padding: clamp(5rem, 12vw, 8rem) 0;
	background:
		radial-gradient(ellipse 70% 55% at 20% 30%, rgba(212, 165, 116, 0.08), transparent 52%),
		linear-gradient(180deg, #f8f5ef 0%, #f2ebe2 50%, #ebe4d8 100%);
	color: #1a1714;
	border-top: 1px solid rgba(26, 23, 20, 0.06);
}

.lx-newszone .lx-panel__title {
	color: #141210;
	font-weight: 600;
}

.lx-newszone .lx-panel__eyebrow {
	color: #2d7a63;
}

.lx-newszone .lx-panel__idx {
	color: rgba(26, 23, 20, 0.45);
}

.lx-newszone .lx-panel__idx::before {
	background: linear-gradient(145deg, #2d7a63, #c4956a);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* 浅色区内文本卡片（应用场景等）：与 .lx-newscard 同一气质 */
.lx-newszone .lx-panel__desc {
	color: rgba(26, 23, 20, 0.58);
}

.lx-newszone .lx-tile {
	background: #fffdf9;
	border: 1px solid rgba(26, 23, 20, 0.06);
	box-shadow: 0 8px 32px rgba(26, 23, 20, 0.05);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.lx-newszone .lx-tile:hover {
	transform: translateY(-6px);
	border-color: rgba(45, 122, 99, 0.18);
	background: #fffdf9;
}

.lx-newszone .lx-tile__title {
	color: #141210;
}

.lx-newszone .lx-tile__text {
	color: rgba(26, 23, 20, 0.52);
}

/* 研究博客列表 / 详情：浅色整页；顶栏下由 light-inner 规则统一处理 */
body.tpl-new5:has(main.lx-research-light.lx-newszone) main.lx-research-light.lx-newszone,
body.tpl-new5.new5-light-inner-body main.lx-research-light.lx-newszone,
.tpl-new5 main.lx-research-light.lx-newszone {
	margin-top: 0;
	padding-top: calc(var(--lx-nav-clear) + clamp(1.75rem, 4vw, 2.75rem));
	padding-bottom: clamp(3rem, 8vw, 5rem);
}

body.tpl-new5:not(:has(main.lx-research-light.lx-newszone)):not(.new5-light-inner-body) main.lx-research-light.lx-newszone {
	margin-top: calc(-1 * var(--lx-nav-clear));
}

.tpl-new5 .lx-research-light h1,
.tpl-new5 .lx-research-light .display-4 {
	color: #141210;
}

.tpl-new5 .lx-research-light .lead {
	color: rgba(26, 23, 20, 0.62);
}

.tpl-new5 .lx-research-light .position,
.tpl-new5 .lx-research-light .position a {
	color: rgba(26, 23, 20, 0.45) !important;
}

/* 关于我们 / 联系我们等单页：标题与表单标签 */
.tpl-new5 .lx-research-light .pages h2,
.tpl-new5 .lx-research-light .pages h3,
.tpl-new5 .lx-research-light .pages h4 {
	color: #141210;
}

.tpl-new5 .lx-research-light .pages label {
	color: rgba(26, 23, 20, 0.78);
	font-weight: 500;
}

.tpl-new5 .lx-research-light .pages .btn-info {
	background: linear-gradient(145deg, #2d7a63, #246652);
	border: none;
	color: #faf8f4 !important;
}

/* 新闻列表 newslist.html */
.tpl-new5 .lx-research-light .pages > ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.tpl-new5 .lx-research-light .pages > ul > li {
	padding: 0.65rem 0;
}

.tpl-new5 .lx-research-light .pages > ul > li a {
	color: #141210;
	text-decoration: none;
}

.tpl-new5 .lx-research-light .pages > ul > li a:hover {
	color: #246652;
}

.tpl-new5 .lx-research-light .pages > ul > li a .float-right {
	color: rgba(26, 23, 20, 0.48);
}

.tpl-new5 .lx-research-light .pages .border-bottom-dashed {
	border-bottom-color: rgba(26, 23, 20, 0.14) !important;
}

.tpl-new5 .lx-research-light .pages ul .fa-gg {
	color: rgba(45, 122, 99, 0.65);
	margin-right: 0.35rem;
}

.tpl-new5 .lx-research-light .h3,
.tpl-new5 .lx-research-light h2.h3 {
	color: #141210;
}

.tpl-new5 .lx-research-light .card {
	background: #fffdf9;
	border: 1px solid rgba(26, 23, 20, 0.06) !important;
	border-radius: var(--lx-radius);
	box-shadow: 0 8px 32px rgba(26, 23, 20, 0.05);
}

.tpl-new5 .lx-research-light .card-img-top {
	border-radius: calc(var(--lx-radius) - 1px) calc(var(--lx-radius) - 1px) 0 0;
}

.tpl-new5 .lx-research-light .card-title a.text-dark {
	color: #141210 !important;
}

.tpl-new5 .lx-research-light .card-text.text-muted {
	color: rgba(26, 23, 20, 0.52) !important;
}

.tpl-new5 .lx-research-light .form-control {
	background: #fffdfb;
	border-color: rgba(26, 23, 20, 0.12);
	color: #1a1714;
}

.tpl-new5 .lx-research-light .form-control::placeholder {
	color: rgba(26, 23, 20, 0.38);
}

.tpl-new5 .lx-research-light .input-group .btn-primary {
	background: linear-gradient(145deg, #2d7a63, #246652);
	border: none;
	color: #faf8f4 !important;
}

.tpl-new5 .lx-research-light .btn-outline-secondary {
	border-color: rgba(26, 23, 20, 0.22);
	color: #141210;
}

.tpl-new5 .lx-research-light .btn-outline-secondary:hover {
	background: rgba(26, 23, 20, 0.06);
	border-color: rgba(26, 23, 20, 0.32);
	color: #090d12;
}

.tpl-new5 .lx-research-light .text-secondary {
	color: rgba(26, 23, 20, 0.48) !important;
}

.tpl-new5 .lx-research-light .sonsort .btn-light {
	background: #fffdf9;
	border-color: rgba(26, 23, 20, 0.14);
	color: #141210;
}

.tpl-new5 .lx-research-light .sonsort .btn-info {
	background: linear-gradient(145deg, #2d7a63, #246652);
	border: none;
	color: #faf8f4 !important;
}

/* 详情 research.html：正文、侧栏、分享 */
.tpl-new5 .lx-research-light .content {
	color: rgba(26, 23, 20, 0.82);
}

.tpl-new5 .lx-research-light .content a {
	color: #246652;
}

.tpl-new5 .lx-research-light .content a:hover {
	color: #1a5242;
}

.tpl-new5 .lx-research-light .research-areas .h5,
.tpl-new5 .lx-research-light .related-tools .h5,
.tpl-new5 .lx-research-light .related-projects .h5 {
	color: #141210;
	font-weight: 600;
}

.tpl-new5 .lx-research-light .research-areas a,
.tpl-new5 .lx-research-light .related-tools a,
.tpl-new5 .lx-research-light .related-projects a {
	background-color: #fffdfb;
	border: 1px solid rgba(26, 23, 20, 0.1);
	color: rgba(26, 23, 20, 0.72);
}

.tpl-new5 .lx-research-light .research-areas a:hover,
.tpl-new5 .lx-research-light .related-tools a:hover,
.tpl-new5 .lx-research-light .related-projects a:hover {
	background-color: #f5f0e8;
	color: #090d12;
}

.tpl-new5 .lx-research-light .share-item {
	background-color: rgba(255, 253, 249, 0.95);
	border: 1px solid rgba(26, 23, 20, 0.1);
	color: #2a2624;
}

.tpl-new5 .lx-research-light .share-item:hover {
	background: rgba(45, 122, 99, 0.12);
	color: #1a5242;
	border-color: rgba(45, 122, 99, 0.25);
}

.tpl-new5 .lx-research-light #weixinModal .modal-content {
	background: #fffdf9;
	color: #141210;
}

.tpl-new5 .lx-research-light .blogico img {
	border-radius: var(--lx-radius);
}

.tpl-new5 .lx-research-light > .container .shadow-sm.bg-white {
	box-shadow: 0 8px 32px rgba(26, 23, 20, 0.06) !important;
	border: 1px solid rgba(26, 23, 20, 0.08) !important;
}

.tpl-new5 .lx-research-light > .container h4 {
	color: #141210;
}

.tpl-new5 .lx-research-light > .container .btn-info {
	background: linear-gradient(145deg, #2d7a63, #246652);
	border: none;
	color: #faf8f4 !important;
}

.tpl-new5 .lx-research-light > .container .media-body small {
	color: rgba(26, 23, 20, 0.48) !important;
}

.tpl-new5 .lx-research-light > .container .page-link {
	color: #141210;
	border-color: rgba(26, 23, 20, 0.15);
	background: #fffdfb;
}

.tpl-new5 .lx-research-light > .container .page-link:hover {
	background: rgba(26, 23, 20, 0.06);
	border-color: rgba(26, 23, 20, 0.22);
}

.lx-newsgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
	gap: 1.15rem;
}

.lx-newscard {
	border-radius: var(--lx-radius);
	padding: 1.45rem 1.5rem;
	background: #fffdf9;
	border: 1px solid rgba(26, 23, 20, 0.06);
	box-shadow: 0 8px 32px rgba(26, 23, 20, 0.05);
	transition:
		transform var(--lx-dur-surface) var(--lx-ease-out),
		box-shadow var(--lx-dur-ui) ease;
}

.lx-newscard:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 48px rgba(45, 122, 99, 0.1);
}

.lx-newscard h5 {
	font-family: var(--lx-serif);
	font-size: 1.0625rem;
	font-weight: 600;
	margin: 0 0 0.55rem;
	line-height: 1.38;
}

.lx-newscard h5 a {
	color: #141210 !important;
	text-decoration: none !important;
	background-image: linear-gradient(transparent calc(100% - 2px), rgba(45, 122, 99, 0.55) 2px);
	background-size: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.35s ease;
}

.lx-newscard:hover h5 a {
	background-size: 100% 100%;
}

.lx-newscard p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.58;
	color: rgba(26, 23, 20, 0.52);
}

.lx-newscard p a {
	color: inherit !important;
	text-decoration: none !important;
}

.lx-news-more {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}

.lx-news-more .lx-btn {
	background: linear-gradient(145deg, #2d7a63, #246652);
	color: #faf8f4 !important;
	box-shadow: 0 18px 44px rgba(45, 122, 99, 0.22);
}

.lx-news-more .lx-btn:hover {
	filter: brightness(1.06);
	box-shadow: 0 24px 52px rgba(45, 122, 99, 0.28);
}

/* Footer */
.tpl-new5 footer.lx-footer {
	background: linear-gradient(180deg, var(--lx-bg-mid) 0%, var(--lx-bg) 100%);
	border-top: 1px solid var(--lx-border-soft);
	padding-top: 4.25rem;
	padding-bottom: 2.25rem;
	color: var(--lx-muted);
}

.tpl-new5 footer.lx-footer h3 {
	font-family: var(--lx-font);
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--lx-text);
	margin-bottom: 1.15rem;
}

.tpl-new5 footer.lx-footer .footer-wrapper p,
.tpl-new5 footer.lx-footer .footer-wrapper ul li a {
	color: var(--lx-muted) !important;
	font-size: 0.9rem;
	transition: color 0.25s ease;
	line-height: 1.55;
}

.tpl-new5 footer.lx-footer .footer-wrapper ul li a:hover {
	color: var(--lx-gold) !important;
}

.tpl-new5 footer.lx-footer .footer-social a {
	color: var(--lx-text) !important;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--lx-border-soft);
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	transition:
		border-color 0.25s ease,
		background 0.25s ease,
		transform 0.25s ease;
}

.tpl-new5 footer.lx-footer .footer-social a:hover {
	border-color: var(--lx-gold);
	background: rgba(212, 165, 116, 0.1);
	transform: translateY(-2px);
}

.tpl-new5 footer.lx-footer .footer-bottom {
	border-top: 1px solid var(--lx-border-soft);
	padding-top: 1.85rem;
	margin-top: 2.25rem;
	text-align: center;
	font-size: 0.8125rem;
	color: var(--lx-dim);
}

.tpl-new5 footer.lx-footer .footer-bottom a {
	color: var(--lx-muted) !important;
}

.tpl-new5 footer.lx-footer .footer-bottom a:hover {
	color: var(--lx-gold) !important;
}

/* Reveal */
.lx-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity var(--lx-dur-reveal) var(--lx-ease-out),
		transform var(--lx-dur-reveal) var(--lx-ease-out);
}

.lx-reveal.lx-reveal--in {
	opacity: 1;
	transform: translateY(0);
}

.new5-home .section,
.new5-home .section2,
.new5-home .launch {
	background: transparent !important;
}

@media (prefers-reduced-motion: reduce) {
	.lx-marquee__track {
		animation: none !important;
	}

	.lx-hero-stage .lx-hero-line,
	.lx-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.lx-progress span {
		transition: none;
	}

	.lx-tile:hover,
	.lx-newscard:hover {
		transform: none;
	}
}

/* Language switcher */
.tpl-new5 .lx-lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-right: 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.tpl-new5 .lx-lang-switch__link {
	color: var(--lx-nav-fg-on-dark);
	opacity: 0.65;
	text-decoration: none;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.tpl-new5 .lx-lang-switch__link:hover,
.tpl-new5 .lx-lang-switch__link.is-active {
	opacity: 1;
	color: var(--lx-gold);
}

.tpl-new5 .lx-lang-switch__sep {
	opacity: 0.35;
	color: var(--lx-nav-fg-on-dark);
	user-select: none;
}
