/**
 * 首页专用：与企业站各内页一致的橙色系与 theme 变量
 */
.home-page {
	min-width: 320px;
	overflow-x: hidden;
}

.home-main {
	background: #fff;
}

.home-wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.home-section-head {
	text-align: center;
	margin-bottom: 48px;
}

.home-section-head__eyebrow {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 600;
	margin: 0 0 10px;
}

.home-section-head__title {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 12px;
	line-height: 1.25;
}

.home-section-head__desc {
	font-size: 15px;
	color: var(--color-text-secondary);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.65;
}

/* —— 数据条 —— */
.home-stats {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	color: #fff;
	padding: 48px 0;
}
.home-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
@media (max-width: 900px) {
	.home-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.home-stat {
	padding: 16px 12px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: transform 0.25s var(--ease-standard), border-color 0.25s ease;
}
.home-stat:hover {
	transform: translateY(-4px);
	border-color: rgba(247, 148, 29, 0.45);
}
.home-stat__num {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 800;
	color: var(--color-primary);
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
}
.home-stat__num .unit {
	font-size: 0.55em;
	font-weight: 600;
	margin-left: 2px;
}
.home-stat__label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
	margin-top: 8px;
}

/* —— 公司简介 —— */
.home-about {
	padding: 72px 0 56px;
}
.home-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
@media (max-width: 960px) {
	.home-about__grid {
		grid-template-columns: 1fr;
	}
}
.home-about__text p {
	font-size: 15px;
	line-height: 1.85;
	color: var(--color-text-secondary);
	margin: 0 0 16px;
}
.home-about__actions {
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.home-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border-radius: var(--radius-sm);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s var(--ease-standard), box-shadow 0.25s ease;
}
.home-btn--primary {
	background: var(--color-primary);
	color: #fff;
	box-shadow: var(--shadow-primary);
}
.home-btn--primary:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	color: #fff;
}
.home-btn--ghost {
	background: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}
.home-btn--ghost:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.home-about__cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.home-mini-card {
	display: block;
	padding: 24px 20px;
	border-radius: var(--radius-md);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.home-mini-card:hover {
	box-shadow: var(--shadow-primary);
	transform: translateY(-4px);
	color: inherit;
}
.home-mini-card__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 12px;
	object-fit: contain;
}
.home-mini-card__title {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 6px;
}
.home-mini-card__hint {
	font-size: 13px;
	color: var(--color-text-muted);
	margin: 0;
}

/* —— 解决方案 —— */
.home-solutions {
	padding: 64px 0 72px;
	background: var(--color-surface);
}
.home-sol-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.home-sol-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.home-sol-grid {
		grid-template-columns: 1fr;
	}
}
.home-sol-card {
	position: relative;
	padding: 28px 22px 26px;
	border-radius: var(--radius-md);
	background: #fff;
	border: 1px solid var(--color-border);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}
.home-sol-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--color-primary);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.35s var(--ease-out);
}
.home-sol-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-card-hover);
}
.home-sol-card:hover::before {
	transform: scaleY(1);
}
.home-sol-card__i {
	font-size: 28px;
	line-height: 1;
	margin-bottom: 12px;
}
.home-sol-card__t {
	font-size: 17px;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 6px;
}
.home-sol-card__p {
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.55;
	margin: 0;
}

/* —— 合作厂商（横向跑马灯） —— */
.home-brands {
	padding: 48px 0 40px;
	border-top: 1px solid var(--color-border);
	background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}
.home-brands__head {
	text-align: center;
	margin-bottom: 28px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.home-brands__title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 12px;
	line-height: 1.3;
}
.home-brands__intro {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.65;
	margin: 0;
}
.home-brands__viewport {
	overflow: hidden;
	margin: 0 -24px;
	padding: 8px 0 4px;
	mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 6%,
		#000 94%,
		transparent 100%
	);
	-webkit-mask-image: linear-gradient(
		90deg,
		transparent 0%,
		#000 6%,
		#000 94%,
		transparent 100%
	);
}
.home-brands__scroll {
	display: flex;
	width: max-content;
	animation: home-brands-marquee 48s linear infinite;
	will-change: transform;
}
.home-brands__scroll:hover {
	animation-play-state: paused;
}
.home-brands__track {
	display: flex;
	flex-shrink: 0;
	align-items: stretch;
	gap: 16px;
	padding: 0 12px;
}
.home-brands__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 152px;
	flex-shrink: 0;
	padding: 12px 10px 14px;
	border-radius: var(--radius-md, 12px);
	background: #fff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.06));
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-brands__card:hover {
	border-color: var(--color-primary);
	box-shadow: 0 6px 20px rgba(247, 148, 29, 0.15);
}
.home-brands__logo-box {
	width: 140px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
.home-brands__logo-box img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.home-brands__name {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-text);
	text-align: center;
	line-height: 1.35;
	margin-bottom: 4px;
}
.home-brands__note {
	font-size: 11px;
	color: var(--color-text-muted);
	text-align: center;
	line-height: 1.45;
}
@keyframes home-brands-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@media (prefers-reduced-motion: reduce) {
	.home-brands__scroll {
		animation: none;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}
	.home-brands__track[aria-hidden='true'] {
		display: none;
	}
	.home-brands__track {
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		padding: 0;
	}
	.home-brands__viewport {
		mask-image: none;
		-webkit-mask-image: none;
		overflow: visible;
		margin: 0;
	}
}

/* —— 销售网络地图（ECharts 中国地图 + 飞线） —— */
.home-sales-map {
	padding: 56px 0 64px;
	background: linear-gradient(180deg, #fff 0%, #f7f7f8 55%, #fff 100%);
	border-top: 1px solid var(--color-border);
}
.home-sales-map__chart-wrap {
	margin-top: 8px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: #fafbfc;
	box-shadow: var(--shadow-sm);
}
.home-sales-map__chart {
	width: 100%;
	height: min(620px, 82vw);
	min-height: 380px;
}
.home-sales-map__note {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--color-text-muted);
	text-align: center;
	line-height: 1.55;
}
.home-sales-map__fallback {
	margin: 0;
	padding: 48px 20px;
	text-align: center;
	font-size: 14px;
	color: var(--color-text-secondary);
}

/* —— 产品 —— */
.home-products {
	padding: 72px 0 64px;
}
.home-products__tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}
.home-tab {
	padding: 10px 22px;
	border-radius: var(--radius-pill);
	font-size: 14px;
	font-weight: 600;
	border: 1px solid var(--color-border);
	background: #fff;
	color: var(--color-text-secondary);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.home-tab:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.home-tab.is-active {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
	box-shadow: var(--shadow-primary);
}
.home-panel {
	display: none;
	animation: homeFadeIn 0.45s var(--ease-out) both;
}
.home-panel.is-active {
	display: block;
}
@keyframes homeFadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.home-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.home-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.home-product-grid {
		grid-template-columns: 1fr;
	}
}
.home-product-card {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--color-border);
	background: #fafafa;
	aspect-ratio: 4/3;
}
.home-product-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s var(--ease-out);
}
.home-product-card:hover img {
	transform: scale(1.06);
}
.home-product-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px 16px;
}
.home-product-card__overlay span {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.home-product-card__overlay small {
	display: block;
	font-size: 12px;
	font-weight: 400;
	opacity: 0.9;
	margin-top: 4px;
}
.home-products__more {
	text-align: center;
	margin-top: 36px;
}

/* —— 服务支持 —— */
.home-services {
	padding: 64px 0;
	background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
}
.home-svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 800px) {
	.home-svc-grid {
		grid-template-columns: 1fr;
	}
}
.home-svc {
	padding: 32px 26px;
	border-radius: var(--radius-lg);
	background: #fff;
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
	transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}
.home-svc:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}
.home-svc__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-sm);
	background: var(--color-primary-soft);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 16px;
}
.home-svc__t {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--color-text);
}
.home-svc__p {
	font-size: 14px;
	color: var(--color-text-secondary);
	line-height: 1.7;
	margin: 0 0 16px;
}
.home-svc__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
}
.home-svc__link:hover {
	text-decoration: underline;
}

/* —— 新闻 —— */
.home-news {
	padding: 72px 0 64px;
}
.home-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.home-news__grid {
		grid-template-columns: 1fr;
	}
}
.home-news-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	overflow: hidden;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.28s ease, transform 0.25s ease;
}
.home-news-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
	color: inherit;
}
.home-news-card__thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	background: var(--color-surface);
}
.home-news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s var(--ease-out);
}
.home-news-card:hover .home-news-card__thumb img {
	transform: scale(1.05);
}
.home-news-card__body {
	padding: 18px 18px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.home-news-card__date {
	font-size: 12px;
	color: var(--color-text-muted);
	margin-bottom: 8px;
}
.home-news-card__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--color-text);
	margin: 0 0 12px;
	transition: color 0.2s ease;
}
.home-news-card:hover .home-news-card__title {
	color: var(--color-primary);
}
.home-news-card__ex {
	font-size: 13px;
	color: var(--color-text-secondary);
	line-height: 1.55;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* —— 底部 CTA —— */
.home-cta {
	padding: 56px 0 64px;
	background: linear-gradient(135deg, #f7941d 0%, #e88910 50%, #d67a08 100%);
	color: #fff;
	text-align: center;
}
.home-cta__inner {
	max-width: 720px;
	margin: 0 auto;
}
.home-cta__title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	margin: 0 0 12px;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.home-cta__p {
	font-size: 15px;
	opacity: 0.95;
	margin: 0 0 28px;
	line-height: 1.6;
}
.home-cta__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 32px;
	margin-bottom: 28px;
	font-size: 15px;
}
.home-cta__row a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	transition: border-color 0.2s ease, opacity 0.2s ease;
}
.home-cta__row a:hover {
	border-color: #fff;
	opacity: 1;
}
.home-btn--on-light {
	background: #fff;
	color: #c56a00;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.home-btn--on-light:hover {
	color: #a05600;
}

/* —— 滚动显现 —— */
.home-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.home-reveal.is-visible {
	opacity: 1;
	transform: none;
}
