/* 内页样式 — 派拉纶主题 */

:root {
	--page-hero-height: 531px;
}

.page-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(var(--page-hero-height) + var(--header-height-scrolled));
	padding-top: var(--header-height-scrolled);
}

.page-hero__bg {
	position: absolute;
	top: var(--header-height-scrolled);
	left: 0;
	right: 0;
	height: var(--page-hero-height);
	overflow: hidden;
}

.page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.page-hero__img--mobile {
	display: none;
}

.page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
}

.page-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-block: 48px;
}

.page-hero__title {
	font-size: 32px;
	font-weight: 400;
	color: var(--color-white);
	margin: 0;
}

.page-hero__title--lg {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
}

.page-hero__subtitle {
	font-size: 20px;
	line-height: 1.5;
	color: var(--color-white);
	margin: 16px 0 0;
	max-width: 693px;
	opacity: 0.95;
}

.page-hero--center .page-hero__content {
	text-align: center;
}

.page-hero--center .page-hero__title,
.page-hero--center .page-hero__subtitle {
	margin-left: auto;
	margin-right: auto;
}

.page-hero--support {
	--page-hero-height: 531px;
}

.page-hero--support .page-hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	width: 100%;
	min-height: var(--page-hero-height);
	padding-block: 40px 56px;
}

.page-hero--support .page-hero__intro {
	text-align: center;
	width: 100%;
}

.page-hero--support .page-hero__subtitle {
	margin-top: 16px;
}

.page-hero--support .support-search__form {
	width: 100%;
	max-width: 722px;
	margin: 0;
}

.breadcrumb {
	padding-block: 24px;
	font-size: 14px;
	color: #5e5e5e;
}

.breadcrumb a:hover {
	color: var(--color-primary);
}

.breadcrumb__sep {
	margin: 0 8px;
	opacity: 0.5;
}

/* 无 page-hero 的文章页 — 为固定导航栏预留顶部间距 */
body.single-post .breadcrumb {
	padding-top: calc(var(--header-height, 109px) + 48px);
	padding-bottom: 20px;
}

.page-section {
	padding: 60px 0;
}

.page-section .section__title {
	font-size: 30px;
	margin-bottom: 40px;
}

.page-section--gray {
	background: #f8f8f8;
}

.page-lead {
	font-size: 16px;
	line-height: 1.875;
	max-width: 1239px;
	margin: 0 auto 48px;
	text-align: center;
}

.section__subtitle {
	text-align: center;
	margin: -32px 0 40px;
	color: var(--color-text-muted);
}

.page-section__label {
	font-size: 30px;
	font-weight: 700;
	margin: 48px 0 24px;
}

/* 关于我们 */
.about-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 576px;
	gap: 48px;
	align-items: stretch;
}

.about-intro__text {
	max-height: 419px;
	overflow-y: auto;
	padding-right: 12px;
	scrollbar-width: thin;
	scrollbar-color: rgba(1, 159, 232, 0.45) transparent;
}

.about-intro__text::-webkit-scrollbar {
	width: 6px;
}

.about-intro__text::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: rgba(1, 159, 232, 0.45);
}

.about-intro__text::-webkit-scrollbar-track {
	background: transparent;
}

.about-intro .page-lead {
	max-width: none;
	margin: 0 0 40px;
	text-align: left;
}

.about-intro h3 {
	font-size: 30px;
	margin: 0 0 16px;
}

.about-intro h4 {
	font-size: 20px;
	margin: 24px 0 8px;
}

.about-intro h4:first-of-type {
	margin-top: 0;
}

.about-intro p {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

.about-intro__media {
	position: relative;
	display: flex;
	min-height: 0;
}

.about-intro__media-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
}

.about-intro__media-trigger:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 4px;
}

.about-intro__media img,
.about-intro__media-trigger img {
	border-radius: 8px;
	width: 100%;
	height: 100%;
	min-height: 419px;
	object-fit: cover;
	display: block;
}

.about-intro__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--color-primary);
	pointer-events: none;
	transform: translate(-50%, -50%);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.about-intro__media-trigger:hover .about-intro__play,
.about-intro__media-trigger:focus-visible .about-intro__play {
	background: var(--color-primary);
	color: var(--color-white);
	transform: translate(-50%, -50%) scale(1.06);
	box-shadow: 0 12px 28px rgba(1, 159, 232, 0.35);
}

.about-intro__play svg {
	display: block;
}

/* 公司介绍视频弹窗 */
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.video-modal[hidden] {
	display: none;
}

.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
}

.video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	overflow: hidden;
	background: #000;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	animation: videoModalIn 0.35s var(--ease-out);
}

.video-modal__player {
	display: block;
	width: 100%;
	max-height: min(80vh, 540px);
	background: #000;
}

.video-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.55);
	color: var(--color-white);
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}

.video-modal__close:hover {
	background: rgba(0, 0, 0, 0.8);
}

.video-modal__close:focus-visible {
	outline: 2px solid var(--color-white);
	outline-offset: 2px;
}

@keyframes videoModalIn {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* 发展历程 — 参考朗亿 history 横向时间轴 */
.timeline-section.section.page-section {
	padding: 80px 0 64px;
	overflow: hidden;
	background: #f5f5f5;
	scroll-margin-top: calc(var(--header-height-scrolled) + 24px);
}

.timeline-section .section__title {
	font-size: 36px;
	line-height: 30px;
	margin-bottom: 48px;
}

.timeline__track {
	position: relative;
	width: 100%;
	padding: 56px 0 8px;
}

.timeline__viewport {
	position: relative;
	z-index: 1;
	overflow: hidden;
	min-height: 240px;
}

.timeline__slider {
	display: flex;
	width: 100%;
	transition: transform 0.55s var(--ease-out);
	will-change: transform;
}

.timeline__slider.is-instant {
	transition: none;
}

.timeline-page {
	flex: 0 0 100%;
	width: 100%;
	position: relative;
	display: grid;
	gap: 0 48px;
	align-items: start;
	--timeline-year-size: 32px;
	--timeline-year-gap: 28px;
	--timeline-axis-height: 20px;
}

.timeline-page__rail {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(var(--timeline-year-size) + var(--timeline-year-gap) + (var(--timeline-axis-height) / 2));
	height: 1px;
	background: rgba(0, 0, 0, 0.12);
	pointer-events: none;
	z-index: 0;
}

.timeline-page--cols-1 {
	grid-template-columns: minmax(0, 1fr);
}

.timeline-page--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-page--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-page--clone {
	pointer-events: none;
}

.timeline-milestone {
	position: relative;
	z-index: 1;
	min-width: 0;
	text-align: left;
}

.timeline-milestone__year {
	margin: 0 0 var(--timeline-year-gap);
	font-family: inherit;
	font-size: var(--timeline-year-size);
	font-weight: 700;
	line-height: 1;
	color: var(--color-text);
	letter-spacing: -0.02em;
	text-align: left;
}

.timeline-milestone__axis {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: var(--timeline-axis-height);
	margin-bottom: var(--timeline-year-gap);
}

.timeline-milestone__axis::before {
	display: none;
}

.timeline-milestone__dot {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--color-primary);
	box-shadow: 0 0 0 4px #f5f5f5;
}

.timeline-milestone__body {
	margin: 0;
	padding: 0;
	text-align: left;
}

.timeline-milestone__body p {
	margin: 0 0 10px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	color: var(--color-text);
}

.timeline-milestone__body p:last-child {
	margin-bottom: 0;
}

.timeline__nav {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 13px;
	margin-top: 48px;
	padding-top: 0;
}

.timeline__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 47px;
	height: 46px;
	border: 1px solid var(--color-primary);
	border-radius: 50%;
	background: var(--color-white);
	color: var(--color-primary);
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition);
}

.timeline__btn:hover:not(:disabled) {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.timeline__btn:focus-visible:not(:disabled) {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}

.timeline__btn:disabled {
	opacity: 1;
	background: var(--color-white);
	border-color: #e5e5e5;
	color: #c4c4c4;
	cursor: not-allowed;
}

.map-section {
	position: relative;
}

.map-section__canvas {
	position: relative;
	overflow: hidden;
	background: #ffffff;
}

.map-section__stage {
	position: relative;
	width: 100%;
}

.map-section__map {
	display: block;
	width: 100%;
	height: auto;
	background: #ffffff;
}

.map-marker {
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	pointer-events: none;
	--marker-size: 14px;
	--marker-label-gap: 15px;
}

.map-marker__pin {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--marker-size);
	height: var(--marker-size);
	transform: translate(-50%, -50%);
}

.map-marker__dot {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	width: var(--marker-size);
	height: var(--marker-size);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center center;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92);
}

.map-marker__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--marker-size);
	height: var(--marker-size);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center center;
	opacity: 0;
	animation: map-marker-pulse 2.4s ease-out infinite;
	animation-delay: var(--marker-delay, 0s);
}

.map-marker__ring--2 {
	animation-delay: calc(var(--marker-delay, 0s) + 1.2s);
}

.map-marker--blue {
	--marker-color: var(--color-primary);
}

.map-marker--green {
	--marker-color: #4caf50;
}

.map-marker--orange {
	--marker-color: #ff9800;
}

.map-marker--blue .map-marker__dot,
.map-marker--blue .map-marker__ring {
	background: var(--marker-color);
}

.map-marker--green .map-marker__dot,
.map-marker--green .map-marker__ring {
	background: var(--marker-color);
}

.map-marker--orange .map-marker__dot,
.map-marker--orange .map-marker__ring {
	background: var(--marker-color);
}

.map-marker__label {
	position: absolute;
	left: var(--marker-label-gap);
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #333;
	white-space: nowrap;
	text-shadow: 0 1px 4px rgba(255, 255, 255, 0.95);
}

@keyframes map-marker-pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.65;
	}
	70% {
		transform: translate(-50%, -50%) scale(2.4);
		opacity: 0.2;
	}
	100% {
		transform: translate(-50%, -50%) scale(3.2);
		opacity: 0;
	}
}

.map-section__legend {
	position: absolute;
	left: 10.5%;
	bottom: 2%;
	z-index: 3;
	list-style: none;
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.map-section__legend li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: #333;
}

.map-section__legend li + li {
	margin-top: 16px;
}

@media (prefers-reduced-motion: reduce) {
	.map-marker__ring {
		animation: none;
		transform: translate(-50%, -50%) scale(2);
		opacity: 0.3;
	}
}

@media (max-width: 768px) {
	.map-section__canvas {
		display: flex;
		flex-direction: column;
		overflow: visible;
	}

	.map-marker {
		--marker-size: 12px;
	}

	.map-marker__label {
		display: none;
	}

	.map-section__legend {
		position: static;
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px 8px;
		padding: 14px 4px 6px;
		margin: 0;
	}

	.map-section__legend li {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
		gap: 6px;
		font-size: 11px;
		line-height: 1.35;
	}

	.map-section__legend li + li {
		margin-top: 0;
	}

	.map-section__legend .dot {
		width: 14px;
		height: 14px;
	}
}

.map-section__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dot {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	flex-shrink: 0;
}

.dot--blue { background: var(--color-primary); }
.dot--green { background: #4caf50; }
.dot--orange { background: #ff9800; }

.culture-cards {
	display: flex;
	gap: 13px;
	align-items: stretch;
}

.culture-card {
	flex: 368 1 0;
	min-width: 0;
	border-radius: 12px;
	padding: 40px 32px;
	min-height: 418px;
	background: #e8e8e8;
	text-align: center;
	color: var(--color-text);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	cursor: pointer;
	transition: flex 0.4s var(--ease-out), background 0.35s var(--ease-out), color 0.35s var(--ease-out), align-items 0.35s var(--ease-out), justify-content 0.35s var(--ease-out), text-align 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.culture-card.is-active {
	flex: 485 1 0;
	background: var(--color-primary);
	color: var(--color-white);
	text-align: left;
	align-items: flex-start;
	justify-content: flex-start;
	box-shadow: var(--shadow-md);
}

.culture-card__icon {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	transition: filter 0.35s var(--ease-out);
}

.culture-card.is-active .culture-card__icon {
	filter: brightness(0) invert(1);
}

.culture-card h3 {
	margin: 16px 0 0;
	font-family: inherit;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	color: inherit;
	transition: margin 0.35s var(--ease-out);
}

.culture-card.is-active h3 {
	margin-bottom: 8px;
}

.culture-card__detail {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	align-self: stretch;
	transition: max-height 0.45s var(--ease-out), opacity 0.35s var(--ease-out), margin 0.35s var(--ease-out);
}

.culture-card.is-active .culture-card__detail {
	max-height: 280px;
	opacity: 1;
	margin-top: 8px;
}

.culture-card__headline {
	margin: 0 0 12px;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: inherit;
}

.culture-card ul {
	margin: 0;
	padding-left: 1.25em;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.8;
	color: inherit;
}

.honor-marquee {
	--honor-marquee-gap: 29px;
	--honor-marquee-item-width: 290px;
	margin: 0 -20px;
	padding: 8px 0 0;
}

.honor-marquee__viewport {
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.honor-marquee__track {
	display: flex;
	align-items: flex-start;
	gap: var(--honor-marquee-gap);
	width: max-content;
	animation: honorMarqueeScroll var(--honor-marquee-duration, 32s) linear infinite;
}

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

@keyframes honorMarqueeScroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - var(--honor-marquee-gap) / 2));
	}
}

.honor-marquee__item {
	flex: 0 0 var(--honor-marquee-item-width);
	width: var(--honor-marquee-item-width);
	margin: 0;
}

.honor-marquee__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 210px;
	padding: 16px;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.honor-marquee__card img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 178px;
	object-fit: contain;
}

.honor-marquee__placeholder {
	width: 100%;
	height: 178px;
	border-radius: 4px;
	background: linear-gradient(135deg, #ececec 0%, #d9d9d9 100%);
}

.honor-marquee__title {
	margin: 16px 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	color: var(--color-text);
}

@media (prefers-reduced-motion: reduce) {
	.honor-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.honor-marquee {
		--honor-marquee-item-width: 240px;
		margin: 0;
	}

	.honor-marquee__viewport {
		mask-image: none;
	}
}

/* 技术与产品 */
.product-showcase {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.product-showcase__item {
	display: grid;
	grid-template-columns: minmax(0, 601px) minmax(0, 1fr);
	gap: 48px 72px;
	align-items: center;
}

.product-showcase__item--reverse {
	direction: rtl;
}

.product-showcase__item--reverse > * {
	direction: ltr;
}

.product-showcase__media {
	height: 344px;
	border-radius: 12px;
	background: #ebebeb;
	overflow: hidden;
}

.product-showcase__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-showcase__media--placeholder {
	background: linear-gradient(145deg, #ebebeb 0%, #d9d9d9 100%);
}

.product-showcase__body h3 {
	font-size: 30px;
	margin: 0 0 16px;
}

.product-showcase__body p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.product-detail__lead {
	font-size: 18px;
	line-height: 1.7;
	color: var(--color-text-muted, #666);
	margin: 12px 0 0;
}

/* 产品详情 — 左侧目录 + 正文（竞品排版） */
.product-detail-main {
	padding-top: 32px;
	padding-bottom: 48px;
}

.product-detail-page .solutions-intro {
	padding-top: 24px;
}

.product-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
	gap: 48px 72px;
	align-items: start;
}

.product-detail-nav {
	position: sticky;
	top: calc(var(--header-height-scrolled, 72px) + 24px);
}

.product-detail-nav__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.4;
}

.product-detail-nav__title a {
	color: var(--color-text);
	text-decoration: none;
}

.product-detail-nav__title a:hover {
	color: var(--color-primary);
}

.product-detail-nav__list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product-detail-nav__item {
	margin: 0;
	padding: 0;
	border: none;
}

.product-detail-nav__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-text);
	text-decoration: none;
	border-bottom: 1px solid #eee;
	transition: color 0.2s ease;
}

.product-detail-nav__item:first-child .product-detail-nav__link {
	padding-top: 0;
}

.product-detail-nav__link:hover {
	color: var(--color-primary);
}

.product-detail-nav__item.is-active .product-detail-nav__link {
	color: var(--color-primary);
	font-weight: 700;
	border-bottom-color: transparent;
}

.product-detail-nav__arrow {
	flex-shrink: 0;
	font-size: 18px;
	line-height: 1;
	color: var(--color-primary);
}

.product-detail__header {
	flex-direction: column;
	align-items: flex-start;
	max-width: none;
}

.product-detail__header .article-detail__title {
	max-width: 100%;
}

.product-detail__content {
	max-width: none;
}

.product-detail__content > .wp-block-image,
.product-detail__content .wp-block-image {
	margin: 32px 0;
}

.product-detail__content > .wp-block-image img,
.product-detail__content .wp-block-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.product-block__img {
	height: 344px;
	border-radius: 12px;
	background: #ebebeb;
	margin-bottom: 24px;
}

.product-block h3 {
	font-size: 24px;
	margin: 0 0 12px;
}

.btn--inline {
	width: auto;
	display: inline-flex;
	border-radius: 20px;
	padding: 4px 24px;
	font-size: 14px;
	margin-top: 16px;
}

.coop-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 46px;
	max-width: 1280px;
	margin: 0 auto;
}

.coop-card {
	background: var(--color-white);
	border-radius: 12px;
	padding: 36px 24px 32px;
	text-align: center;
	min-height: 211px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	box-shadow: var(--shadow-sm);
}

.coop-card__icon {
	width: 76px;
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.coop-card__icon img {
	width: 76px;
	height: 76px;
	display: block;
}

.coop-card h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
}

.page-section--industry {
	padding-bottom: 72px;
}

.page-section--industry .section__title {
	margin-bottom: 40px;
}

.industry-carousel {
	max-width: 100%;
	margin: 0 auto;
}

.industry-carousel__viewport {
	overflow: hidden;
}

.industry-carousel__track {
	display: flex;
	gap: 22px;
	transition: transform 0.45s var(--ease-out, ease);
	will-change: transform;
}

.industry-showcase {
	flex: 0 0 calc((100% - 44px) / 3);
	width: calc((100% - 44px) / 3);
	min-width: 0;
	min-height: 520px;
	height: auto;
	display: flex;
	flex-direction: column;
	background: #f5f5f5;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid transparent;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s var(--ease-out);
	box-sizing: border-box;
}

.industry-showcase.is-hovered {
	border-color: var(--color-primary);
	box-shadow: 0 8px 24px rgba(1, 159, 232, 0.15);
	transform: translateY(-6px);
}

.industry-showcase.is-hovered .industry-showcase__media img {
	transform: scale(1.05);
}

.industry-showcase__media img {
	transition: transform 0.45s var(--ease-out);
}

.industry-showcase__media {
	position: relative;
	flex: 0 0 220px;
	height: 220px;
	background: #d9d9d9;
	overflow: hidden;
}

.industry-showcase__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.industry-showcase__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.industry-showcase__badge {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.industry-showcase__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--color-primary);
	border-radius: 6px;
	flex-shrink: 0;
}

.industry-showcase__badge-icon img {
	width: 20px;
	height: 20px;
	display: block;
}

.industry-showcase__badge-label {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.industry-showcase__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 24px 28px 28px;
	background: #f5f5f5;
}

.industry-showcase__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	color: #1a1a1a;
}

.industry-showcase__lead {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.55;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.industry-showcase__fact {
	margin-bottom: 10px;
}

.industry-showcase__fact:last-of-type {
	margin-bottom: 0;
}

.industry-showcase__fact-label {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #1a1a1a;
}

.industry-showcase__fact-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.industry-showcase__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	transition: color var(--transition);
}

.industry-showcase__link:hover {
	color: var(--color-primary);
}

.industry-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.industry-carousel__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #d9d9d9;
	cursor: pointer;
	transition: background var(--transition), transform var(--transition);
}

.industry-carousel__dot.is-active {
	background: var(--color-primary);
	transform: scale(1.15);
}

.industry-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	justify-content: center;
}

.industry-card {
	display: block;
	width: 412px;
	max-width: 100%;
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	color: inherit;
}

.industry-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.industry-card__img {
	height: 212px;
	background: #d9d9d9;
	overflow: hidden;
}

.industry-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.industry-card h3 {
	padding: 24px 32px 32px;
	margin: 0;
	font-size: 24px;
}

/* 行业解决方案 — Figma 2026:2 */
.solutions-intro {
	padding: 48px 0 72px;
}

.solutions-intro__title,
.solutions-applications__title {
	text-align: center;
	margin-bottom: 32px;
}

.solutions-applications__title {
	margin-bottom: 8px;
}

.tab-bar {
	display: flex;
	align-items: stretch;
	background: var(--color-bg-chip);
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 48px;
	min-height: 57px;
	padding: 0;
	gap: 0;
}

.tab-bar__item {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--color-text);
	font-size: 18px;
	line-height: 30px;
	padding: 14px 16px;
	cursor: pointer;
	font-family: inherit;
	font-weight: 400;
	transition: background var(--transition), color var(--transition);
}

.tab-bar__item.is-active {
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 700;
}

.tab-panel[hidden] {
	display: none !important;
}

.tab-panel.is-active {
	display: block;
	animation: tabPanelIn 0.35s var(--ease-out);
}

@keyframes tabPanelIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tab-panel__layout {
	display: grid;
	grid-template-columns: minmax(0, 561px) minmax(0, 595px);
	gap: 48px 72px;
	align-items: start;
	justify-content: space-between;
}

.tab-panel__body {
	display: flex;
	flex-direction: column;
	min-height: 453px;
}

.tab-panel__tagline {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.6;
	color: var(--color-text);
}

.tab-panel__lead {
	font-size: 16px;
	line-height: 1.6;
	margin: 0 0 28px;
	color: var(--color-text);
}

.tab-panel__fact {
	margin-bottom: 18px;
}

.tab-panel__fact-label {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 6px;
	line-height: 1.5;
}

.tab-panel__fact-text {
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	color: var(--color-text);
}

.tab-panel__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: auto;
	padding: 8px 20px 8px 24px;
	border-radius: 8px;
	font-size: 16px;
	line-height: 30px;
	min-height: 45px;
	width: fit-content;
	box-shadow: 0 4px 14px rgba(1, 159, 232, 0.35);
}

.tab-panel__cta svg {
	flex-shrink: 0;
}

.tab-panel__media {
	display: flex;
	justify-content: flex-end;
}

.tab-panel__media img {
	width: 100%;
	max-width: 595px;
	height: 453px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

.solutions-applications {
	padding: 80px 0;
}

.solutions-applications .section__subtitle {
	margin: -16px 0 56px;
	font-size: 16px;
}

.application-grid {
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.application-grid__row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 32px 24px;
}

.application-item {
	display: block;
	text-align: center;
	color: inherit;
	text-decoration: none;
	transition: transform var(--transition), color var(--transition);
}

.application-item:hover {
	color: var(--color-primary);
	transform: translateY(-4px);
}

.application-item:hover .application-item__icon {
	box-shadow: 0 8px 24px rgba(1, 159, 232, 0.18);
}

.application-item__icon {
	width: 100%;
	max-width: 154px;
	aspect-ratio: 1;
	height: auto;
	margin: 0 auto 20px;
	border-radius: 50%;
	overflow: hidden;
	background: #e8e8e8;
	transition: box-shadow var(--transition);
}

.application-item__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.application-item__label {
	font-size: 16px;
	line-height: 1.4;
}

.solutions-problems {
	padding-bottom: 80px;
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 48px;
	justify-content: center;
}

.tag-cloud span {
	font-size: 18px;
	padding: 8px 0;
}

/* 技术支持 — Figma 2037:191 */
.support-page {
	background: var(--color-white);
}

.support-page .support-docs-section,
.support-page .support-download-section {
	background: #f9fafb;
}

.support-page .support-faq-section {
	background: var(--color-white);
}

.support-search__form {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	max-width: 722px;
	margin: 0 auto;
	min-height: 52px;
	padding: 0 24px;
	background: var(--color-white);
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.support-search__icon {
	flex-shrink: 0;
	color: #999;
}

.support-search__form input[type="search"] {
	flex: 1;
	min-width: 0;
	border: none;
	font-size: 16px;
	line-height: 22px;
	outline: none;
	font-family: inherit;
	background: transparent;
}

.support-tabs-section {
	padding: 24px 0 30px;
	border-bottom: 1px solid #e5e7eb;
}

.support-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 123px;
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.support-filter-tabs .filter-tabs__item {
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 20px;
	line-height: 30px;
	padding: 0 0 8px;
	margin: 0;
	color: #333;
	border-bottom: none;
	font-weight: 500;
	background: none;
	border: none;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
}

.support-filter-tabs .filter-tabs__item.is-active {
	color: var(--color-primary);
	font-weight: 500;
}

.support-filter-tabs .filter-tabs__item.is-active::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 40px;
	height: 3px;
	margin-left: -20px;
	background: var(--color-primary);
	border-radius: 2px;
}

.support-docs-section {
	padding: 48px 0 64px;
}

.support-faq-section {
	padding: 48px 0 56px;
}

.support-download-section {
	padding: 48px 0 64px;
}

.support-section-heading {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 40px;
	font-size: 36px;
	font-weight: 700;
	line-height: 30px;
}

.support-section-heading__icon {
	flex-shrink: 0;
	display: block;
	width: 42px;
	height: 42px;
}

.support-section-heading__icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.support-section-heading__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

.support-section-heading__link:hover {
	color: var(--color-primary);
}

.support-section-heading__link:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 4px;
	border-radius: 4px;
}

.support-faq-filter {
	margin: -24px 0 24px;
	font-size: 16px;
	color: var(--color-text-muted);
}

.support-faq-filter strong {
	color: var(--color-text);
	font-weight: 700;
}

.support-faq-filter a {
	margin-left: 12px;
	color: var(--color-primary);
	text-decoration: none;
}

.support-faq-filter a:hover {
	text-decoration: underline;
}

.filter-tabs {
	display: flex;
	gap: 48px;
	border-bottom: 1px solid #eee;
	margin-bottom: 32px;
	padding-bottom: 8px;
}

.filter-tabs__item {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	padding: 8px 0;
	font-family: inherit;
	color: var(--color-text-muted);
	border-bottom: 3px solid transparent;
	margin-bottom: -11px;
}

.filter-tabs__item.is-active {
	color: var(--color-text);
	border-bottom-color: var(--color-primary);
	font-weight: 700;
}

.doc-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px 21px;
}

.doc-card {
	background: var(--color-white);
	border: none;
	border-radius: 12px;
	padding: 44px 23px 32px;
	min-height: 286px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.doc-card__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	margin: 0 0 8px;
	color: var(--color-primary);
}

.doc-card__desc {
	font-size: 16px;
	line-height: 30px;
	margin: 0;
	color: var(--color-text);
	flex: 1;
	font-weight: 500;
}

.doc-card__date {
	display: block;
	font-size: 14px;
	line-height: 30px;
	color: var(--color-text);
	margin: 8px 0 20px;
	font-weight: 500;
}

.doc-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	align-self: flex-start;
	margin-top: auto;
	min-width: 93px;
	height: 30px;
	padding: 0 14px;
	background: var(--color-white);
	color: var(--color-text);
	border: 1px solid var(--color-primary);
	border-radius: 12px;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	text-decoration: none;
	transition: background var(--transition), color var(--transition), transform var(--transition);
}

.doc-card__link:hover {
	background: rgba(1, 159, 232, 0.06);
	color: var(--color-primary);
	transform: translateY(-1px);
}

.doc-card__link svg {
	flex-shrink: 0;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 0;
	background: transparent;
	border: none;
	overflow: visible;
}

.faq-item {
	border: 1px solid #ccc;
	border-radius: 12px;
	margin: 0;
	background: #f9fafb;
	overflow: hidden;
}

.faq-item:last-child {
	border-bottom: 1px solid #ccc;
}

.faq-item summary {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 71px;
	padding: 20px 24px;
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	color: var(--color-text);
	cursor: pointer;
	list-style: none;
	user-select: none;
	transition: color 0.25s ease, background 0.25s ease;
}

.faq-item summary:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: -2px;
}

.faq-item[open] summary {
	color: var(--color-primary);
	background: var(--color-white);
}

.faq-item summary:hover {
	color: var(--color-primary);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item__icon {
	flex-shrink: 0;
	display: block;
	width: 24px;
	height: 24px;
}

.faq-item__icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.faq-item__question {
	flex: 1;
	min-width: 0;
	font-weight: 500;
}

.faq-item__toggle {
	flex-shrink: 0;
	display: block;
	width: 24px;
	height: 24px;
	transition: transform 0.25s ease;
}

.faq-item__toggle img {
	display: block;
	width: 100%;
	height: 100%;
}

.faq-item[open] .faq-item__toggle {
	transform: rotate(180deg);
}

.faq-item__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.faq-item[open] .faq-item__answer {
	grid-template-rows: 1fr;
}

.faq-item__answer-inner {
	overflow: hidden;
}

.faq-item__answer-inner > * {
	margin: 0;
	padding: 0 24px 24px 66px;
	font-size: 16px;
	line-height: 30px;
	color: #333;
	background: var(--color-white);
}

.faq-item__answer-inner > * + * {
	margin-top: 8px;
}

.support-faq-help {
	text-align: center;
	margin-top: 48px;
	padding: 48px 24px 40px;
	background: rgba(1, 159, 232, 0.1);
	border-radius: 12px;
}

.support-faq-help__title {
	margin: 0 0 8px;
	font-size: 36px;
	font-weight: 500;
	line-height: 30px;
	color: var(--color-text);
}

.support-faq-help__text {
	margin: 0 0 24px;
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	color: var(--color-text);
}

.support-faq-help__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 212px;
	height: 41px;
	padding: 0 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 400;
	box-shadow: none;
}

.support-pagination {
	margin-top: 32px;
	padding-top: 8px;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px 21px;
}

.download-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: none;
	border-radius: 12px;
	padding: 44px 23px 27px;
	min-height: 304px;
	box-sizing: border-box;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.download-card__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	margin: 0 0 8px;
	color: var(--color-primary);
}

.download-card__desc {
	font-size: 16px;
	line-height: 30px;
	margin: 0;
	flex: 1;
	color: var(--color-text);
	font-weight: 500;
}

.download-card__meta {
	display: block;
	font-size: 16px;
	line-height: 30px;
	color: var(--color-text);
	margin: 8px 0 20px;
	font-weight: 500;
}

.download-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	align-self: stretch;
	min-height: 30px;
	margin-top: auto;
	padding: 0 16px;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	line-height: 30px;
	font-weight: 500;
	color: var(--color-white);
	text-decoration: none;
	background: var(--color-primary);
	transition: background var(--transition);
}

.download-card__btn:hover {
	background: var(--color-primary-dark);
	color: var(--color-white);
}

.download-card__btn img {
	flex-shrink: 0;
	display: block;
}

.download-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.download-item {
	display: flex;
	justify-content: space-between;
	padding: 20px 24px;
	background: var(--color-white);
	border-radius: 8px;
	border: 1px solid #eee;
}

.download-item:hover {
	border-color: var(--color-primary);
}

.article-detail-page {
	padding-top: 48px;
	padding-bottom: 80px;
}

.article-detail-page .article-sidebar {
	position: sticky;
	top: calc(var(--header-height, 90px) + 24px);
}

/* 技术支持详情页 — Figma 2112:81 */
.support-detail-main {
	padding-top: 32px;
	padding-bottom: 64px;
}

.support-detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 925px) minmax(0, 267px);
	gap: 48px 88px;
	align-items: start;
}

.article-detail__header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px 24px;
	padding-bottom: 24px;
	margin-bottom: 32px;
	border-bottom: 1px solid #eee;
	max-width: 899px;
}

.article-detail__title {
	font-size: 30px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
}

.article-detail__date {
	font-size: 16px;
	color: var(--color-text-muted);
	white-space: nowrap;
}

.article-detail__download {
	max-width: 899px;
	margin: -8px 0 32px;
}

.article-detail__download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 200px;
	min-height: 48px;
	padding: 0 28px;
	border: none;
	border-radius: 999px;
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	color: var(--color-white);
	text-decoration: none;
	background: var(--color-primary);
	transition: background var(--transition), box-shadow var(--transition);
}

.article-detail__download-btn:hover {
	background: var(--color-primary-dark);
	color: var(--color-white);
	box-shadow: var(--shadow-sm);
}

.article-detail__download-btn img {
	flex-shrink: 0;
}

.article-detail__content {
	max-width: 925px;
	font-size: 16px;
	line-height: 1.875;
}

.article-detail__content h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 32px 0 16px;
}

.article-detail__content h2:first-child {
	margin-top: 0;
}

.article-detail__content p,
.article-detail__content ul {
	margin: 0 0 16px;
}

.article-detail__content ul {
	padding-left: 20px;
}

.article-detail__figure {
	width: 100%;
	max-width: 915px;
	margin: 32px 0;
	border-radius: 8px;
	overflow: hidden;
}

.article-detail__figure img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.article-detail__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
	max-width: 1278px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #eee;
}

.article-detail__nav-prev,
.article-detail__nav-next {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	font-size: 16px;
	color: var(--color-text);
	text-decoration: none;
	max-width: 48%;
}

.article-detail__nav-next {
	text-align: right;
	margin-left: auto;
}

.article-detail__nav-label {
	color: var(--color-text-muted);
	flex-shrink: 0;
}

.article-detail__nav-title {
	color: var(--color-primary);
}

.article-detail__nav-prev:hover .article-detail__nav-title,
.article-detail__nav-next:hover .article-detail__nav-title {
	text-decoration: underline;
}

.article-sidebar {
	position: sticky;
	top: calc(var(--header-height-scrolled) + 24px);
}

.article-sidebar__search {
	margin-bottom: 32px;
}

.article-sidebar__search input {
	width: 100%;
	height: 47px;
	padding: 0 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	background: var(--color-white);
}

.article-sidebar__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 24px;
}

.article-sidebar__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.article-sidebar__list li {
	padding: 12px 0 16px;
	border-bottom: 1px solid #eee;
}

.article-sidebar__list li:first-child {
	padding-top: 0;
}

.article-sidebar__list a {
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-text);
	margin-bottom: 8px;
}

.article-sidebar__list a:hover {
	color: var(--color-primary);
}

.article-sidebar__list time {
	display: block;
	font-size: 14px;
	color: var(--color-text-muted);
}

.download-grid--detail {
	justify-content: flex-start;
}

/* 全站搜索 */
.search-page-hero {
	display: flex;
	align-items: center;
	min-height: 320px;
	padding: 48px 0;
	background: var(--color-white);
}

.search-page-hero__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.search-page-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	gap: 0;
}

.search-page-form input[type="search"] {
	flex: 1;
	min-width: 0;
	height: 52px;
	padding: 0 20px;
	border: 1px solid #d0d0d0;
	border-right: none;
	border-radius: 0;
	font-size: 16px;
	font-family: inherit;
	background: var(--color-white);
	-webkit-appearance: none;
	appearance: none;
}

.search-page-form input[type="search"]:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: inset 0 0 0 1px var(--color-primary);
}

.search-page-form__submit {
	flex-shrink: 0;
	height: 52px;
	padding: 0 32px;
	border: none;
	border-radius: 0;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s ease;
}

.search-page-form__submit:hover {
	background: var(--color-primary-dark);
}

.search-page-results {
	padding-top: 40px;
	padding-bottom: 80px;
	background: var(--color-white);
}

.search-page-results__heading {
	margin: 0 0 32px;
	font-size: 18px;
	line-height: 1.5;
	color: var(--color-text);
}

.search-page-results__label {
	color: var(--color-text-muted);
	font-weight: 400;
}

.search-page-results__keyword {
	color: var(--color-primary);
	font-size: 22px;
	font-weight: 700;
}

.search-page-results__count {
	color: var(--color-text-muted);
	font-size: 16px;
	font-weight: 400;
}

.search-results-list {
	border-top: 1px solid #e8e8e8;
}

.search-result {
	padding: 28px 0;
	border-bottom: 1px solid #e8e8e8;
}

.search-result__date {
	display: block;
	font-size: 14px;
	color: var(--color-text-muted);
	margin-bottom: 10px;
}

.search-result__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px 16px;
}

.search-result__title a {
	color: var(--color-primary);
	text-decoration: none;
}

.search-result__title a:hover {
	text-decoration: underline;
}

.search-result__type {
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text-muted);
	padding: 2px 10px;
	background: var(--color-bg-chip);
	border-radius: 4px;
}

.search-result__excerpt {
	margin: 0;
	font-size: 16px;
	line-height: 1.75;
	color: var(--color-text);
}

.search-result__more {
	color: var(--color-primary);
	text-decoration: none;
	white-space: nowrap;
}

.search-result__more:hover {
	text-decoration: underline;
}

.search-page-empty {
	padding: 48px 0;
	font-size: 16px;
	color: var(--color-text-muted);
	text-align: center;
}

.search-page-pagination {
	margin-top: 40px;
}

.search-page-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	margin: 4px;
	padding: 0 12px;
	border: 1px solid #ddd;
	color: var(--color-text);
	text-decoration: none;
	font-size: 15px;
}

.search-page-pagination .page-numbers.current,
.search-page-pagination .page-numbers:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-white);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* 新闻 */
.news-page {
	padding-top: 32px;
	padding-bottom: 88px;
}

.news-page__content {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.news-list {
	display: flex;
	flex-direction: column;
}

.news-list__empty {
	margin: 0;
	padding: 64px 24px;
	text-align: center;
	font-size: 16px;
	color: var(--color-text-muted);
}

.news-feature {
	display: grid;
	grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
	gap: 38px;
	align-items: start;
}

.news-feature-layout {
	display: grid;
	grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
	gap: 38px;
	align-items: start;
}

.news-page__filters {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	justify-content: flex-end;
	align-self: start;
}

.news-page__filters .filter-tabs {
	gap: 53px;
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.news-page__filters .filter-tabs__item {
	font-size: 16px;
	line-height: 1.375;
	padding: 0 0 8px;
	margin-bottom: 0;
}

.news-feature-wrap {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
	gap: 38px;
	align-items: start;
	padding-top: 56px;
}

.news-feature-wrap[hidden] {
	display: none;
}

.news-feature__aside {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.news-feature__head {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 24px;
}

.news-feature__head .filter-tabs {
	gap: 53px;
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.news-feature__head .filter-tabs__item {
	font-size: 16px;
	line-height: 1.375;
	padding: 0 0 8px;
	margin-bottom: 0;
}

.news-feature__date {
	display: block;
	font-family: inherit;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-text);
	margin-bottom: 16px;
}

.news-feature__body p {
	font-family: inherit;
	font-size: 16px;
	line-height: 1.875;
	color: #666;
	margin: 0;
}

.news-feature__img {
	display: block;
	background: #ececec;
	border-radius: 12px;
	height: 417px;
	overflow: hidden;
}

.news-feature__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s var(--ease-out);
}

.news-feature__media:hover .news-feature__img img {
	transform: scale(1.03);
}

.news-list-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 48px 28px;
}

.news-list-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
}

.news-list-card[hidden] {
	display: none;
}

.news-list-card time,
.news-list-card p,
.news-list-card__link {
	padding-left: 22px;
	padding-right: 22px;
}

.news-list-card__thumb {
	display: block;
	background: #ececec;
	overflow: hidden;
	height: 245px;
	margin-bottom: 16px;
}

.news-list-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s var(--ease-out);
}

.news-list-card:hover .news-list-card__thumb img {
	transform: scale(1.04);
}

.news-feature__title {
	margin: 0 0 12px;
	font-family: inherit;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--color-text);
}

.news-feature__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition);
}

.news-feature__title a:hover {
	color: var(--color-primary);
}

.news-list-card__link {
	display: inline-block;
	margin-top: 12px;
	padding-bottom: 24px;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-primary);
	text-decoration: none;
}

.news-list-card__link:hover {
	text-decoration: underline;
}

.news-list-card time {
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-text-muted);
	margin-bottom: 10px;
}

.news-list-card p {
	margin: 0;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.news-pagination {
	margin-top: 40px;
}

.news-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	margin: 0 4px;
	padding: 0 10px;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	color: var(--color-text);
	text-decoration: none;
	transition: background var(--transition), color var(--transition);
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
	background: var(--color-primary);
	color: var(--color-white);
}

.news-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* 可持续发展 */
.sustainability-page {
	padding-top: 48px;
	padding-bottom: 80px;
}

.sustainability-grid {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.sustain-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 623px);
	gap: 48px 56px;
	align-items: center;
}

.sustain-card--reverse {
	grid-template-columns: minmax(0, 623px) minmax(0, 1fr);
}

.sustain-card__img {
	background: #d9d9d9;
	border-radius: 12px;
	height: 466px;
	min-height: 280px;
	overflow: hidden;
}

.sustain-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sustain-card h2 {
	font-size: 36px;
	margin: 0 0 16px;
	font-weight: 700;
}

.sustain-card h3 {
	font-size: 24px;
	margin: 0 0 16px;
}

.sustain-card ul {
	padding-left: 20px;
	line-height: 1.875;
}

/* 加入我们 */
.careers-contact {
	padding-bottom: 48px;
}

.careers-jobs {
	padding-top: 64px;
	padding-bottom: 64px;
}

.careers-jobs .section__title {
	margin-bottom: 48px;
}

.careers-form {
	padding-top: 64px;
	padding-bottom: 80px;
}

.careers-form .section__title {
	text-align: left;
	margin-bottom: 32px;
}

.contact-form {
	max-width: 1127px;
}

.contact-form__notice {
	margin: 0 0 24px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 15px;
	line-height: 1.6;
}

.contact-form__notice.is-success {
	color: #0f5132;
	background: #d1e7dd;
	border: 1px solid #badbcc;
}

.contact-form__notice.is-error {
	color: #842029;
	background: #f8d7da;
	border: 1px solid #f5c2c7;
}

.contact-form__row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.contact-form__row--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form__row--2 {
	grid-template-columns: 2fr 1fr;
}

.contact-form__message {
	display: block;
	margin-bottom: 0;
}

.contact-form__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 24px;
	margin-top: 20px;
}

.contact-form__agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	cursor: pointer;
}

.contact-form__agree input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 3px 0 0;
	flex-shrink: 0;
	border: 1.5px solid var(--color-primary);
	border-radius: 3px;
	accent-color: var(--color-primary);
	cursor: pointer;
}

.contact-form__agree-text {
	flex: 1;
	min-width: 0;
}

.contact-form__agree a {
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition);
}

.contact-form__agree a:hover {
	color: var(--color-primary);
}

.contact-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-shrink: 0;
	width: auto;
	min-width: 160px;
	margin: 0 0 0 auto;
	padding: 12px 32px;
	border: none;
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-white);
	background: var(--color-primary);
	box-shadow: 0 4px 14px rgba(1, 159, 232, 0.35);
	cursor: pointer;
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.contact-form__submit svg {
	flex-shrink: 0;
}

.contact-form__submit:hover {
	background: var(--color-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(1, 159, 232, 0.4);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: inherit;
	font-size: 16px;
	box-sizing: border-box;
}

.contact-form textarea {
	display: block;
	min-height: 160px;
	resize: vertical;
}

.contact-block {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 640px);
	gap: 48px;
	align-items: start;
}

.contact-block__info h2 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 32px;
	line-height: 1.4;
}

.contact-block__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-block__list li {
	margin-bottom: 24px;
}

.contact-block__list strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
}

.contact-block__list span {
	font-size: 16px;
	line-height: 1.5;
}

.contact-block__map {
	background: #d9d9d9;
	border-radius: 12px;
	min-height: 428px;
	overflow: hidden;
}

.contact-block__map img {
	width: 100%;
	height: 100%;
	min-height: 428px;
	object-fit: cover;
	display: block;
}

.jobs-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.job-card {
	background: var(--color-white);
	border-radius: 12px;
	padding: 32px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 269px;
	transition: box-shadow var(--transition), transform var(--transition);
}

.job-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.job-card h3 {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 16px;
	padding-bottom: 16px;
	border-bottom: 1px dotted #ccc;
}

.job-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-size: 14px;
	color: var(--color-text-muted);
	margin-bottom: 24px;
}

.job-card__detail {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 0;
	border: none;
	background: none;
	font-size: 16px;
	font-family: inherit;
	color: var(--color-text);
	cursor: pointer;
	transition: color var(--transition), gap var(--transition);
}

.job-card__detail:hover {
	color: var(--color-primary);
	gap: 12px;
}

.job-card__detail svg {
	color: var(--color-primary);
	flex-shrink: 0;
}

/* 职位详情弹窗 */
.job-modal {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.job-modal[hidden] {
	display: none;
}

.job-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.job-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(720px, 100%);
	max-height: min(85vh, 800px);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--color-white);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	animation: jobModalIn 0.35s var(--ease-out);
}

.job-modal__header {
	flex-shrink: 0;
	padding: 40px 48px 24px;
	border-bottom: 1px solid #eee;
}

.job-modal__body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 24px 48px;
	-webkit-overflow-scrolling: touch;
}

.job-modal__footer {
	flex-shrink: 0;
	padding: 20px 48px 32px;
	border-top: 1px solid #eee;
	background: var(--color-white);
}

@keyframes jobModalIn {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.job-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: none;
	background: #f5f5f5;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-muted);
	transition: background var(--transition), color var(--transition);
}

.job-modal__close:hover {
	background: #eee;
	color: var(--color-text);
}

.job-modal__title {
	font-size: 28px;
	margin: 0 0 20px;
	padding-right: 40px;
}

.job-modal__info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
	margin: 0;
	padding: 16px 20px;
	background: #f8f8f8;
	border-radius: 8px;
}

.job-modal__info dt {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: 4px;
}

.job-modal__info dd {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}

.job-modal__location-note {
	font-size: 14px;
	color: var(--color-text-muted);
	margin: 0 0 20px;
	line-height: 1.6;
}

.job-modal__heading {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 12px;
}

.job-modal__list {
	margin: 0 0 24px;
	padding-left: 20px;
	line-height: 1.8;
	font-size: 15px;
}

.job-modal__list:last-of-type {
	margin-bottom: 16px;
}

.job-modal__list li {
	margin-bottom: 6px;
}

.job-modal__email-tip {
	font-size: 15px;
	margin: 0;
	color: var(--color-text-muted);
}

.job-modal__email-tip a {
	color: var(--color-primary);
	font-weight: 500;
}

.job-modal__apply {
	display: inline-flex;
	width: 100%;
	justify-content: center;
}

/* Header active state */
.site-nav a.is-active {
	color: var(--color-primary);
}

@media (max-width: 1200px) {
	.about-intro__text {
		max-height: none;
		overflow-y: visible;
		padding-right: 0;
	}

	.about-intro,
	.product-grid,
	.product-showcase__item,
	.industry-cards,
	.news-feature,
	.news-feature-layout,
	.news-feature-wrap,
	.news-list-grid,
	.sustain-card,
	.sustain-card--reverse,
	.contact-block,
	.support-detail-layout,
	.product-detail-layout,
	.doc-grid,
	.download-grid,
	.jobs-grid {
		grid-template-columns: 1fr;
	}

	.support-filter-tabs {
		gap: 8px 40px;
	}

	.support-section-heading {
		margin-bottom: 28px;
	}

	.product-showcase__item--reverse {
		direction: ltr;
	}

	.contact-form__row--3,
	.contact-form__row--2 {
		grid-template-columns: 1fr;
	}

	.contact-form__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-form__submit {
		width: 100%;
		margin-left: 0;
	}

	.article-detail__nav-prev,
	.article-detail__nav-next {
		max-width: 100%;
	}

	.article-sidebar,
	.product-detail-nav {
		position: static;
	}

	.tab-bar {
		flex-wrap: wrap;
		min-height: 0;
	}

	.tab-bar__item {
		flex: 1 1 calc(33.333% - 4px);
		min-width: 100px;
		font-size: clamp(0.8125rem, 3.4vw, 0.9375rem);
	}

	.tab-panel__tagline,
	.tab-panel__lead,
	.tab-panel__fact-label,
	.tab-panel__fact-text {
		font-size: var(--font-size-body);
		line-height: 1.6;
	}

	.tab-panel__tagline {
		font-weight: 700;
	}

	.article-detail__title {
		font-size: var(--font-size-section-title);
		line-height: 1.35;
	}

	.article-detail__content {
		font-size: var(--font-size-body);
		line-height: 1.75;
	}

	.article-detail__content h2 {
		font-size: clamp(1rem, 4.2vw, 1.125rem);
	}

	.product-detail__content,
	.entry-content {
		font-size: var(--font-size-body);
		line-height: 1.75;
	}

	.industry-showcase__body {
		padding: 20px var(--container-padding) 24px;
	}

	.industry-showcase__title {
		font-size: clamp(1rem, 4.2vw, 1.125rem);
	}

	.industry-showcase__lead,
	.industry-showcase__fact-text {
		font-size: var(--font-size-body);
	}

	.industry-showcase__fact-label {
		font-size: clamp(0.875rem, 3.6vw, 0.9375rem);
	}

	.solutions-intro {
		padding: clamp(32px, 8vw, 48px) 0 clamp(40px, 10vw, 56px);
	}

	.tab-panel__layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.tab-panel__media img {
		width: 100%;
		height: auto;
		min-height: 0;
		max-width: none;
		margin: 0;
	}

	.application-grid__row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px 12px;
	}

	.application-item__icon {
		width: 100%;
		max-width: none;
		margin-bottom: 12px;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.timeline-page--cols-2,
	.timeline-page--cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 32px;
		--timeline-year-size: 28px;
		--timeline-year-gap: 24px;
	}

	.timeline-milestone__year {
		font-size: var(--timeline-year-size);
		margin-bottom: var(--timeline-year-gap);
	}

	.timeline-milestone__axis {
		margin-bottom: var(--timeline-year-gap);
	}

	.job-modal__header {
		padding: 32px 24px 20px;
	}

	.job-modal__body {
		padding: 20px 24px;
	}

	.job-modal__footer {
		padding: 16px 24px 24px;
	}

	.job-modal__info {
		grid-template-columns: 1fr;
	}

	.coop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}

	.industry-showcase {
		flex: 0 0 calc((100% - 22px) / 2);
		width: calc((100% - 22px) / 2);
		height: auto;
		min-height: 0;
	}

	.industry-showcase__media {
		flex: 0 0 auto;
		height: auto;
	}

	.industry-showcase__media img {
		width: 100%;
		height: auto;
	}

	.news-feature__img {
		height: auto;
		aspect-ratio: auto;
	}

	.news-list-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 20px;
	}
}

@media (max-width: 768px) {
	:root {
		--container-padding: clamp(16px, 4.8vw, 20px);
	}

	.page-section {
		padding: clamp(40px, 10vw, 56px) 0;
	}

	.page-section .section__title,
	.page-section__label {
		font-size: var(--font-size-section-title);
		line-height: 1.35;
	}

	.page-lead {
		font-size: var(--font-size-lead);
		line-height: 1.7;
		margin-bottom: clamp(28px, 7vw, 40px);
		padding: 0;
	}

	.page-hero {
		--page-hero-height: 320px;
		min-height: calc(var(--page-hero-height) + var(--header-height-scrolled));
		padding-top: var(--header-height-scrolled);
	}

	.page-hero--has-mobile {
		display: block;
		min-height: 0;
		padding-top: var(--header-height-scrolled);
	}

	.page-hero--has-mobile .page-hero__bg {
		position: relative;
		top: 0;
		height: auto;
	}

	.page-hero--has-mobile .page-hero__img--desktop {
		display: none;
	}

	.page-hero--has-mobile .page-hero__img--mobile {
		display: block;
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.page-hero--has-mobile .page-hero__content {
		position: absolute;
		top: var(--header-height-scrolled);
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.page-hero--has-mobile.page-hero--center .page-hero__content {
		align-items: center;
		text-align: center;
	}

	.page-hero--has-mobile.page-hero--support .page-hero__content {
		min-height: 0;
		justify-content: center;
	}

	.page-hero__bg {
		top: var(--header-height-scrolled);
		height: var(--page-hero-height);
	}

	.page-hero__content {
		padding-block: 32px;
	}

	.page-hero--support .page-hero__content {
		align-items: stretch;
		min-height: 320px;
		gap: 24px;
		padding-block: 32px 40px;
	}

	.support-search__form {
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 0 16px;
	}

	.page-hero--support .support-search__form {
		max-width: none;
	}

	.page-hero__title--lg {
		font-size: clamp(1.5rem, 6vw, 2rem);
		line-height: 1.3;
	}

	.page-hero__subtitle {
		font-size: var(--font-size-lead);
		line-height: 1.6;
	}

	.tab-panel__layout {
		gap: 24px;
	}

	.tab-panel__body {
		padding: 0;
	}

	.search-page-hero {
		min-height: 240px;
		padding: 32px 0;
	}

	.search-page-form {
		flex-direction: column;
	}

	.search-page-form input[type="search"] {
		border-right: 1px solid #d0d0d0;
		border-bottom: none;
	}

	.search-page-form__submit {
		width: 100%;
	}

	.search-result__title {
		font-size: 18px;
	}

	.coop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 12px;
	}

	.coop-card {
		min-height: 0;
		padding: 24px 12px 20px;
		gap: 12px;
	}

	.coop-card__icon {
		width: 56px;
		height: 56px;
	}

	.coop-card__icon img {
		width: 56px;
		height: 56px;
	}

	.coop-card h3 {
		font-size: clamp(0.875rem, 3.6vw, 1rem);
		line-height: 1.4;
	}

	/* 内页图片 — 手机端等比例缩放 */
	.about-intro__media,
	.about-intro__media-trigger,
	.sustain-card__img,
	.product-showcase__media,
	.industry-card__img,
	.news-feature__img,
	.news-list-card__thumb,
	.contact-block__map,
	.product-block__img {
		height: auto;
		min-height: 0;
	}

	.sustain-card__img img,
	.product-showcase__media img,
	.industry-card__img img,
	.news-feature__img img,
	.news-list-card__thumb img,
	.contact-block__map img,
	.product-block__img,
	.about-intro__media img,
	.about-intro__media-trigger img,
	.tab-panel__media img {
		width: 100%;
		height: auto;
		min-height: 0;
		max-height: none;
		object-fit: cover;
	}

	.industry-showcase__media {
		flex: 0 0 auto;
		width: 100%;
		height: auto;
	}

	.industry-showcase__media img {
		width: 100%;
		height: auto;
	}

	.industry-showcase {
		flex: 0 0 100%;
		width: 100%;
		height: auto;
		min-height: 0;
	}

	.industry-showcase__body {
		padding: 20px var(--container-padding) 24px;
	}

	.news-page__content {
		gap: 40px;
	}

	.news-feature__head {
		justify-content: flex-start;
	}

	.news-page__filters {
		grid-column: 1;
		grid-row: 1;
		justify-content: flex-start;
		margin-bottom: 8px;
	}

	.news-page__filters .filter-tabs {
		gap: 24px;
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.news-page__filters .filter-tabs__item {
		flex-shrink: 0;
		font-size: 15px;
	}

	.news-feature-wrap {
		grid-column: 1;
		grid-row: 2;
		padding-top: 0;
	}

	.news-feature__date {
		font-size: 20px;
	}

	.news-feature__title {
		font-size: 20px;
	}

	.news-list-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.timeline-section.section.page-section {
		padding: 40px 0 48px;
	}

	.timeline-section .section__title {
		margin-bottom: 28px;
	}

	.timeline__track {
		padding: 32px 0 0;
	}

	.timeline-page--cols-1,
	.timeline-page--cols-2,
	.timeline-page--cols-3 {
		grid-template-columns: 1fr;
		gap: 32px;
		--timeline-year-size: 24px;
		--timeline-year-gap: 16px;
	}

	.timeline-page__rail {
		display: none;
	}

	.timeline-milestone {
		text-align: left;
	}

	.timeline-milestone__year {
		font-size: var(--timeline-year-size);
		margin-bottom: var(--timeline-year-gap);
	}

	.timeline-milestone__axis {
		justify-content: flex-start;
		margin-bottom: var(--timeline-year-gap);
	}

	.timeline-milestone__axis::before {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 6px;
		right: 0;
		height: 1px;
		background: rgba(0, 0, 0, 0.12);
		transform: translateY(-50%);
	}

	.timeline-milestone__body {
		padding: 0;
	}

	.timeline-milestone__body p {
		font-size: 15px;
		line-height: 1.65;
	}

	.timeline__nav {
		margin-top: 32px;
	}

	.culture-cards {
		flex-direction: column;
		gap: 16px;
	}

	.culture-card,
	.culture-card.is-active {
		flex: 1 1 auto;
	}
}

/* 下载验证弹窗 */
.download-verify-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.download-verify-modal[hidden] {
	display: none;
}

.download-verify-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.download-verify-modal__dialog {
	position: relative;
	display: flex;
	flex-direction: column;
	width: min(100%, 640px);
	max-height: min(90vh, 680px);
	overflow: hidden;
	padding: 0;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.download-verify-modal__header {
	flex-shrink: 0;
	padding: 28px 32px 12px;
}

.download-verify-form {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	max-width: none;
	overflow: hidden;
}

.download-verify-form__body {
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	padding: 0 32px 8px;
}

.download-verify-form .contact-form__row--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-verify-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #f5f5f5;
	color: #333;
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}

.download-verify-modal__close:hover {
	background: #ebebeb;
	color: var(--color-primary);
}

.download-verify-modal__title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
	color: var(--color-text);
}

.download-verify-modal__subtitle {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.download-verify-modal__doc {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-primary);
}

.download-verify-form__sms-row {
	display: flex;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}

.download-verify-form__sms-input {
	flex: 1;
	min-width: 0;
	width: auto;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-text);
	outline: none;
	box-sizing: border-box;
}

.download-verify-form__sms-input::placeholder {
	color: #bbb;
}

.download-verify-form__sms-input:focus {
	border-color: var(--color-primary);
}

.download-verify-form__sms {
	flex: 0 0 auto;
	align-self: stretch;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 12px 16px;
	border: 1px solid var(--color-primary);
	border-radius: 8px;
	background: #fff;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-primary);
	white-space: nowrap;
	cursor: pointer;
	appearance: none;
	box-sizing: border-box;
}

.download-verify-form__sms:hover:not(:disabled) {
	color: var(--color-primary-dark);
}

.download-verify-form__sms:disabled {
	color: #999;
	cursor: not-allowed;
	opacity: 1;
}

.download-verify-form__notice.is-success {
	display: block;
}

.download-verify-form__footer {
	flex-shrink: 0;
	margin-top: 0;
	padding: 16px 32px 24px;
	border-top: 1px solid #e8e8e8;
	background: #fff;
}

.download-verify-form__notice.is-error {
	display: block;
}

@media (max-width: 768px) {
	.download-verify-modal {
		padding: 16px;
		align-items: flex-end;
	}

	.download-verify-modal__dialog {
		max-height: 92vh;
		border-radius: 16px 16px 0 0;
	}

	.download-verify-modal__header {
		padding: 24px 20px 8px;
	}

	.download-verify-form__body {
		padding: 0 20px 8px;
	}

	.download-verify-form__footer {
		padding: 14px 20px 20px;
	}

	.download-verify-modal__title {
		font-size: 20px;
		padding-right: 36px;
	}

	.download-verify-form__sms-row {
		gap: 10px;
	}

	.download-verify-form__sms-input {
		padding: 12px 14px;
	}

	.download-verify-form__sms {
		padding: 12px 14px;
		font-size: 16px;
	}
}
