/* Hero 通栏海报轮播（1920×750 等比缩放） */
#hero.hero-banner {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: auto;
	aspect-ratio: 1920 / 750;
	overflow: hidden;
	background: var(--navy);
}

.hero-slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero-track {
	display: flex;
	height: 100%;
	transition: transform .5s ease;
	will-change: transform;
}

.hero-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.hero-slide-link {
	display: block;
	width: 100%;
	height: 100%;
}

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

.hero-arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(255, 255, 255, .18);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s, visibility .3s, background .25s;
	backdrop-filter: blur(4px);
}

#hero.hero-banner:hover .hero-arrow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hero-arrow:hover {
	background: var(--blue);
}

.hero-arrow-prev {
	left: clamp(16px, 5.2vw, 100px);
}

.hero-arrow-next {
	right: clamp(16px, 5.2vw, 100px);
}

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

.hero-dot {
	width: 24px;
	height: 3px;
	border: none;
	padding: 0;
	background: rgba(255, 255, 255, .35);
	cursor: pointer;
	transition: all .3s;
}

.hero-dot.on {
	width: 42px;
	background: var(--blue-mid);
}

.site-front.site-main {
	min-height: 0;
}

@media (max-width: 1100px) {
	.hero-arrow {
		width: 42px;
		height: 42px;
		font-size: 18px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (max-width: 640px) {
	.hero-arrow {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
}

/* 首页产品分类切换 */
.home-products {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 5vw, 80px) 0;
	background: #fff;
}

.home-products__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
}

.home-products__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
	text-align: center;
}

.home-products__subtitle {
	margin: 12px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7a8d;
	text-align: center;
}

.home-products__tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: stretch;
	gap: 12px;
	width: 100%;
	margin-top: clamp(28px, 3.5vw, 40px);
}

.home-products__tab {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 38px;
	padding: 0 20px;
	border: none;
	border-radius: 999px;
	background: var(--blue-light);
	color: #0f1d32;
	font-family: var(--font);
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: background .28s ease, color .28s ease, transform .28s ease, box-shadow .28s ease;
}

.home-products__tab:hover {
	background: #d9e4f2;
}

.home-products__tab.is-active {
	background: var(--navy);
	color: #fff;
	box-shadow: 0 6px 18px rgba(1, 64, 153, .22);
}

.home-products__panels {
	margin-top: clamp(28px, 3.5vw, 40px);
}

.home-products__panel {
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity .38s ease, transform .38s ease, visibility .38s ease;
}

.home-products__panel.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.home-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}

.home-products__card {
	opacity: 0;
	transform: translateY(16px);
}

.home-products__panel.is-active .home-products__card {
	animation: homeProductCardIn .48s ease forwards;
	animation-delay: var(--card-delay, 0s);
}

@keyframes homeProductCardIn {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

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

.home-products__card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.home-products__card-link:hover .home-products__thumb {
	transform: translateY(-4px);
}

.home-products__card-link:hover .home-products__name {
	color: var(--blue);
}

.home-products__thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	margin-bottom: 12px;
	overflow: visible;
	transition: transform .32s ease;
}

.home-products__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	box-shadow: 0 8px 24px rgba(15, 29, 50, .14);
	transition: box-shadow .32s ease;
}

.home-products__card-link:hover .home-products__thumb img {
	box-shadow: 0 14px 32px rgba(15, 29, 50, .2);
}

.home-products__name {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
	color: #0f1d32;
	text-align: center;
	transition: color .25s ease;
}

.home-products__empty {
	margin: 0;
	padding: 48px 16px;
	font-size: 15px;
	color: #6b7a8d;
	text-align: center;
}

@media (max-width: 1100px) {
	.home-products__title {
		font-size: clamp(32px, 5vw, 48px);
	}

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

@media (max-width: 768px) {
	.home-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-products__tabs {
		flex-wrap: wrap;
		justify-content: center;
		overflow: visible;
	}

	.home-products__tab {
		flex: 1 1 calc(50% - 6px);
		min-width: calc(50% - 6px);
		padding: 0 16px;
	}
}

@media (max-width: 480px) {
	.home-products__grid {
		grid-template-columns: 1fr;
	}

	.home-products__subtitle {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-products__panel,
	.home-products__tab,
	.home-products__thumb,
	.home-products__name,
	.home-products__card {
		transition: none;
		animation: none;
		opacity: 1;
		transform: none;
	}
}

/* 首页公司简介 */
.home-about {
	--about-gallery-visible: 5;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding-bottom: 30px;
	overflow: hidden;
}

.home-about__top {
	position: relative;
	overflow: hidden;
}

/* 灰色背景 1920，底边与大图底边对齐 */
.home-about__top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 0;
	width: min(1920px, 100%);
	height: 100%;
	background: #f5f7fa;
	transform: translateX(-50%);
}

/* 背景装饰字母 A：顶对齐，上方约 1/4 裁切 */
.home-about__top::after {
	content: 'A';
	position: absolute;
	top: 0;
	left: calc(100% - min(1768px, 100%) + clamp(280px, 28vw, 480px));
	z-index: 1;
	font-size: clamp(195px, 18vw, 390px);
	font-weight: 700;
	line-height: .82;
	color: rgba(1, 64, 153, .06);
	transform: translateY(-25%);
	pointer-events: none;
	user-select: none;
}

.home-about__intro {
	position: relative;
	z-index: 2;
	width: min(1768px, 100%);
	margin-left: auto;
	margin-right: 0;
	display: grid;
	grid-template-columns: minmax(0, 730fr) minmax(0, 960fr);
	column-gap: clamp(24px, 4.4vw, 78px);
	align-items: stretch;
}

.home-about__intro:not(:has(.home-about__media)) {
	grid-template-columns: minmax(0, 730px);
}

.home-about__content {
	position: relative;
	z-index: 2;
	grid-column: 1;
	grid-row: 1;
	align-self: start;
	padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
	background: transparent;
	overflow: visible;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .65s ease, transform .65s ease;
}

.home-about.is-visible .home-about__content {
	opacity: 1;
	transform: translateY(0);
}

.home-about__title {
	position: relative;
	margin: 0;
	font-size: 56px;
	font-weight: 700;
	line-height: 1.15;
	color: #0f1d32;
}

.home-about__line {
	display: block;
	width: 55px;
	height: 5px;
	margin-top: 18px;
	background: #014099;
}

.home-about__desc {
	position: relative;
	margin-top: 24px;
	font-size: 16px;
	line-height: 1.75;
	color: #5a6778;
}

.home-about__desc p {
	margin: 0 0 12px;
}

.home-about__desc p:last-child {
	margin-bottom: 0;
}

.home-about__more {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 182px;
	height: 53px;
	margin-top: clamp(28px, 3vw, 40px);
	padding: 0 6px 0 24px;
	border-radius: 999px;
	background: #014099;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
}

.home-about__more:hover {
	background: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(1, 64, 153, .24);
}

.home-about__more-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	background: #fff;
	color: #014099;
	line-height: 1;
}

.home-about__more-arrow {
	display: block;
	width: 18px;
	height: 18px;
}

.home-about__media {
	position: relative;
	z-index: 2;
	grid-column: 2;
	grid-row: 1;
	align-self: stretch;
	aspect-ratio: 960 / 720;
	width: 100%;
	overflow: hidden;
	opacity: 0;
	transform: translateX(24px);
	transition: opacity .65s ease .12s, transform .65s ease .12s;
}

.home-about.is-visible .home-about__media {
	opacity: 1;
	transform: translateX(0);
}

.home-about__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .6s ease;
}

.home-about__media:hover img {
	transform: scale(1.06);
	filter: brightness(1.03);
}

.home-about__stats {
	position: absolute;
	left: 0;
	bottom: 44px;
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	width: min(1070px, 100%);
	padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 40px);
	background: #fff;
	box-shadow: 0 12px 40px rgba(15, 29, 50, .1);
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .65s ease .24s, transform .65s ease .24s;
}

.home-about.is-visible .home-about__stats {
	opacity: 1;
	transform: translateY(0);
}

.home-about__stat {
	text-align: center;
}

.home-about__stat-value {
	margin: 0;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	color: #014099;
}

.home-about__stat-plus {
	margin-left: 2px;
	font-size: 30px;
	font-weight: 700;
	line-height: 0;
	vertical-align: super;
	position: relative;
	top: -0.35em;
}

.home-about__stat-desc {
	margin: 10px 0 0;
	font-size: 16px;
	line-height: 1.45;
	color: #5a6778;
}

.home-about__gallery {
	--about-gallery-gap: 16px;
	--about-gallery-slide-width: calc((100% - (var(--about-gallery-visible, 5) - 1) * var(--about-gallery-gap)) / var(--about-gallery-visible, 5));
	width: 100%;
	max-width: 1920px;
	margin: 20px auto 0;
}

.home-about__gallery-viewport {
	position: relative;
	overflow: hidden;
}

.home-about__gallery-track {
	display: flex;
	align-items: flex-start;
	gap: var(--about-gallery-gap);
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

.home-about__gallery-slide {
	flex: 0 0 var(--about-gallery-slide-width);
	width: var(--about-gallery-slide-width);
	min-width: 0;
	overflow: hidden;
}

.home-about__gallery-slide img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align: top;
	transition: transform .5s cubic-bezier(.4, 0, .2, 1), filter .5s ease;
}

.home-about__gallery-slide:hover img {
	transform: scale(1.08);
	filter: brightness(1.05);
}

.home-about__gallery-mask {
	position: absolute;
	top: 0;
	z-index: 2;
	width: var(--about-gallery-slide-width);
	height: 100%;
	background: rgba(0, 0, 0, .45);
	pointer-events: none;
}

.home-about__gallery-mask--left {
	left: 0;
}

.home-about__gallery-mask--right {
	right: 0;
}

.home-about__gallery-btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background: #014099;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.home-about__gallery-btn:hover {
	background: var(--navy);
	transform: translate(-50%, -50%) scale(1.05);
	box-shadow: 0 8px 20px rgba(1, 64, 153, .28);
}

.home-about__gallery-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
	transform: translate(-50%, -50%);
	box-shadow: none;
}

.home-about__gallery-btn--prev {
	left: calc(var(--about-gallery-slide-width) / 2);
}

.home-about__gallery-btn--next {
	left: calc(100% - var(--about-gallery-slide-width) / 2);
}

@media (max-width: 1200px) {
	.home-about__intro {
		width: 100%;
		margin-left: 0;
		padding: 0 clamp(16px, 3vw, 40px);
	}

	.home-about__top::after {
		left: clamp(180px, 34%, 420px);
		font-size: clamp(150px, 21vw, 285px);
	}

	.home-about__stats {
		width: min(1070px, calc(100% - clamp(32px, 6vw, 80px)));
	}
}

@media (max-width: 992px) {
	.home-about__intro {
		grid-template-columns: 1fr;
		row-gap: 24px;
		padding-bottom: 0;
	}

	.home-about__content,
	.home-about__media,
	.home-about__stats {
		grid-column: 1;
	}

	.home-about__content {
		grid-row: 1;
		padding: clamp(28px, 4vw, 40px);
	}

	.home-about__media {
		grid-row: 2;
		aspect-ratio: 16 / 10;
	}

	.home-about__stats {
		position: static;
		grid-row: 3;
		width: 100%;
		max-width: none;
		margin: 0 0 30px;
		transform: none;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-about.is-visible .home-about__stats {
		transform: none;
	}

	.home-about__top::after {
		left: auto;
		right: clamp(12px, 4vw, 40px);
		font-size: clamp(135px, 31.5vw, 240px);
	}

	.home-about__stat-value {
		font-size: clamp(40px, 8vw, 60px);
	}
}

@media (max-width: 768px) {
	.home-about {
		--about-gallery-visible: 2;
	}

	.home-about__gallery-mask {
		display: none;
	}

	.home-about__title {
		font-size: clamp(36px, 8vw, 56px);
	}

	.home-about__gallery-btn {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.home-about__gallery-btn--prev {
		left: 10px;
		right: auto;
		transform: translateY(-50%);
	}

	.home-about__gallery-btn--next {
		left: auto;
		right: 10px;
		transform: translateY(-50%);
	}

	.home-about__gallery-btn:hover {
		transform: translateY(-50%) scale(1.05);
	}

	.home-about__gallery-btn:disabled {
		transform: translateY(-50%);
	}
}

@media (max-width: 480px) {
	.home-about__stats {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.home-about__stat-value {
		font-size: 44px;
	}

	.home-about__desc,
	.home-about__stat-desc {
		font-size: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-about__content,
	.home-about__media,
	.home-about__stats,
	.home-about__gallery-track,
	.home-about__media img,
	.home-about__gallery-slide img {
		transition: none;
	}

	.home-about__content,
	.home-about__media,
	.home-about__stats {
		opacity: 1;
		transform: none;
	}

	.home-about__media:hover img,
	.home-about__gallery-slide:hover img {
		transform: none;
		filter: none;
	}

	.home-about.is-visible .home-about__stats {
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) and (max-width: 992px) {
	.home-about.is-visible .home-about__stats {
		transform: none;
	}
}

/* 首页优势板块 */
.home-advantages {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 5vw, 80px) 0;
	background: #fff;
}

.home-advantages__inner {
	width: min(1400px, 100%);
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	box-sizing: border-box;
}

.home-advantages__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	text-align: center;
}

.home-advantages__subtitle {
	margin: 12px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7a8d;
	text-align: center;
}

.home-advantages__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 32px);
	margin-top: clamp(36px, 4vw, 56px);
}

.home-advantages__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	text-align: center;
}

.home-advantages__icon {
	flex-shrink: 0;
	width: 132px;
	height: 132px;
	transition: transform .65s cubic-bezier(.4, 0, .2, 1);
}

.home-advantages__icon img {
	display: block;
	width: 132px;
	height: 132px;
	object-fit: contain;
	object-position: center;
}

.home-advantages__card:hover .home-advantages__icon {
	transform: rotateZ(360deg);
}

.home-advantages__name {
	width: 100%;
	margin: clamp(20px, 2.5vw, 28px) 0 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	color: #0f1d32;
	min-height: calc(22px * 1.35 * 2);
}

.home-advantages__desc {
	width: 100%;
	margin-top: 12px;
	margin-bottom: clamp(20px, 2.5vw, 28px);
	font-size: 14px;
	line-height: 1.7;
	color: #5a6778;
	flex: 1;
	align-self: stretch;
}

.home-advantages__desc p {
	margin: 0 0 10px;
}

.home-advantages__desc p:last-child {
	margin-bottom: 0;
}

.home-advantages__plus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	margin-top: auto;
	border-radius: 50%;
	background: #014099;
	color: #fff;
	line-height: 1;
}

.home-advantages__plus svg {
	display: block;
}

@media (max-width: 1399px) {
	.home-products__inner,
	.home-advantages__inner,
	.home-news__inner {
		padding-left: clamp(16px, 3vw, 40px);
		padding-right: clamp(16px, 3vw, 40px);
	}
}

@media (max-width: 1100px) {
	.home-advantages__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(24px, 4vw, 40px);
	}

	.home-advantages__title {
		font-size: clamp(32px, 5vw, 48px);
	}
}

@media (max-width: 640px) {
	.home-advantages__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.home-advantages__name {
		font-size: 20px;
		min-height: calc(20px * 1.35 * 2);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-advantages__icon {
		transition: none;
	}

	.home-advantages__card:hover .home-advantages__icon {
		transform: none;
	}
}

/* 首页新闻板块 */
.home-news {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: clamp(48px, 5vw, 80px) 0;
	background: var(--blue-light);
}

.home-news__inner {
	width: min(1400px, 100%);
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	box-sizing: border-box;
}

.home-news__heading {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
	text-align: center;
}

.home-news__subtitle {
	margin: 12px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7a8d;
	text-align: center;
}

.home-news__slider {
	--home-news-visible: 3;
	--home-news-gap: 24px;
	--home-news-slide-width: calc((100% - (var(--home-news-visible) - 1) * var(--home-news-gap)) / var(--home-news-visible));
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: clamp(36px, 4vw, 56px);
}

.home-news__viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.home-news__track {
	display: flex;
	gap: var(--home-news-gap);
	transition: transform .55s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}

.home-news__card {
	flex: 0 0 var(--home-news-slide-width);
	width: var(--home-news-slide-width);
	min-width: 0;
}

.home-news__card-link {
	display: block;
	height: 100%;
	background: #fff;
	color: inherit;
	text-decoration: none;
	transition: transform .32s ease, box-shadow .32s ease;
}

.home-news__card-link:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 36px rgba(15, 29, 50, .12);
}

.home-news__thumb {
	overflow: hidden;
}

.home-news__thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 440 / 280;
	object-fit: cover;
	object-position: center;
	transition: transform .45s ease;
}

.home-news__card-link:hover .home-news__thumb img {
	transform: scale(1.05);
}

.home-news__body {
	padding: clamp(16px, 2vw, 20px) clamp(16px, 2vw, 20px) clamp(20px, 2.5vw, 24px);
}

.home-news__title {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: #0f1d32;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.home-news__date {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	line-height: 1.4;
	color: #6b7a8d;
}

.home-news__excerpt {
	margin: 10px 0 0;
	font-size: 14px;
	line-height: 1.7;
	color: #5a6778;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.home-news__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 126px;
	height: 38px;
	margin-top: clamp(16px, 2vw, 20px);
	border-radius: 999px;
	background: #014099;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	transition: background .25s ease;
}

.home-news__card-link:hover .home-news__more {
	background: var(--navy);
}

.home-news__more-icon {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}

.home-news__arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: none;
	background: #014099;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	transition: background .25s ease, transform .25s ease;
}

.home-news__arrow:hover {
	background: var(--navy);
	transform: scale(1.05);
}

@media (max-width: 1100px) {
	.home-news__slider {
		--home-news-visible: 2;
	}

	.home-news__heading {
		font-size: clamp(32px, 5vw, 48px);
	}
}

@media (max-width: 640px) {
	.home-news__slider {
		--home-news-visible: 1;
		gap: 10px;
	}

	.home-news__arrow {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.home-news__title {
		font-size: 18px;
	}
}


@media (prefers-reduced-motion: reduce) {
	.home-news__track,
	.home-news__card-link,
	.home-news__thumb img,
	.home-news__arrow {
		transition: none;
	}

	.home-news__card-link:hover,
	.home-news__card-link:hover .home-news__thumb img {
		transform: none;
	}
}

/* 首页案例展示 */
.home-cases {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.home-cases__inner {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
}

.home-cases__layout {
	display: grid;
	grid-template-columns: minmax(0, 1190fr) minmax(0, 730fr);
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	height: clamp(420px, 30.05vw, 577px);
	min-height: 420px;
}

.home-cases__feature {
	position: relative;
	width: 100%;
	min-width: 0;
	overflow: hidden;
}

.home-cases__feature-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-cases__feature-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .28) 45%, rgba(0, 0, 0, .08) 100%);
}

.home-cases__feature-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px);
	color: #fff;
}

.home-cases__feature-title {
	margin: 0;
	max-width: 520px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
}

.home-cases__feature-desc {
	max-width: 480px;
	margin-top: 16px;
	font-size: 14px;
	line-height: 1.75;
	opacity: .92;
}

.home-cases__feature-desc p {
	margin: 0 0 10px;
}

.home-cases__feature-desc p:last-child {
	margin-bottom: 0;
}

.home-cases__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	margin-top: clamp(24px, 3vw, 32px);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity .25s ease;
}

.home-cases__more:hover {
	opacity: .88;
}

.home-cases__more-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #014099;
	line-height: 1;
}

.home-cases__more-icon svg {
	display: block;
}

.home-cases__cards {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-width: 0;
	height: 100%;
	overflow: hidden;
}

.home-cases__card {
	position: relative;
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	height: 100%;
	display: block;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
}

.home-cases__card-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .8s cubic-bezier(.25, .1, .25, 1);
}

.home-cases__card-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(1, 64, 153, .86);
	transition: opacity .75s cubic-bezier(.25, .1, .25, 1);
}

.home-cases__card-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 14px;
	text-align: center;
	box-sizing: border-box;
	transition: justify-content .75s cubic-bezier(.25, .1, .25, 1), padding .75s cubic-bezier(.25, .1, .25, 1);
}

.home-cases__card-content::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	height: 62%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .45) 38%, rgba(0, 0, 0, .78) 100%);
	opacity: 0;
	pointer-events: none;
	transition: opacity .75s cubic-bezier(.25, .1, .25, 1);
}

.home-cases__card-icon {
	display: block;
	width: 53px;
	height: 53px;
	margin-bottom: 20px;
	transition: margin .75s cubic-bezier(.25, .1, .25, 1), transform .75s cubic-bezier(.25, .1, .25, 1);
}

.home-cases__card-icon img {
	display: block;
	width: 53px;
	height: 53px;
	object-fit: contain;
}

.home-cases__card-name {
	display: block;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
}

.home-cases__card-desc {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.55;
	opacity: .92;
	word-break: break-word;
}

@media (max-width: 1400px) {
	.home-cases__layout {
		height: clamp(400px, 42vw, 577px);
	}
}

@media (max-width: 1200px) {
	.home-cases__feature-title {
		font-size: clamp(22px, 2.6vw, 30px);
	}

	.home-cases__feature-desc {
		font-size: 13px;
	}

	.home-cases__card-name {
		font-size: 18px;
	}

	.home-cases__card-desc {
		font-size: 11px;
	}

	.home-cases__card-icon,
	.home-cases__card-icon img {
		width: 46px;
		height: 46px;
	}
}

@media (max-width: 1100px) {
	.home-cases {
		max-width: none;
	}

	.home-cases__layout {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
		max-width: none;
		height: auto;
		min-height: 0;
	}

	.home-cases__inner {
		max-width: none;
	}

	.home-cases__feature {
		width: 100%;
		height: clamp(280px, 52vw, 400px);
	}

	.home-cases__feature-content {
		padding: clamp(24px, 5vw, 40px) clamp(20px, 4vw, 32px);
	}

	.home-cases__cards {
		display: flex;
		align-items: stretch;
		width: 100%;
		min-width: 0;
		height: auto;
		min-height: clamp(320px, 52vw, 577px);
		aspect-ratio: 730 / 577;
		overflow: hidden;
	}

	.home-cases__card {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
		height: auto;
		align-self: stretch;
	}
}

@media (max-width: 640px) {
	.home-cases__feature {
		height: clamp(240px, 62vw, 320px);
	}

	.home-cases__feature-title {
		font-size: clamp(20px, 5.5vw, 26px);
	}

	.home-cases__feature-desc {
		margin-top: 12px;
		font-size: 13px;
		line-height: 1.65;
	}

	.home-cases__more {
		margin-top: 20px;
		font-size: 13px;
	}

	.home-cases__cards {
		aspect-ratio: auto;
		min-height: clamp(420px, 125vw, 520px);
	}

	.home-cases__card {
		min-height: clamp(420px, 125vw, 520px);
	}

	.home-cases__card-content {
		justify-content: center;
		padding: 16px 8px 20px;
		overflow: visible;
	}

	.home-cases__card-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 10px;
		flex-shrink: 0;
	}

	.home-cases__card-icon img {
		width: 40px;
		height: 40px;
	}

	.home-cases__card-name {
		font-size: 15px;
		line-height: 1.25;
	}

	.home-cases__card-desc {
		font-size: 10px;
		line-height: 1.4;
		margin-top: 6px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.home-cases__card:hover .home-cases__card-overlay {
		opacity: 0;
	}

	.home-cases__card:hover .home-cases__card-bg {
		transform: scale(1.03);
	}

	.home-cases__card:hover .home-cases__card-content::before {
		opacity: 1;
	}

	.home-cases__card:hover .home-cases__card-content {
		justify-content: flex-end;
		padding-bottom: 36px;
	}

	.home-cases__card:hover .home-cases__card-icon {
		margin-bottom: 12px;
		transform: translateY(4px);
	}
}

@media (max-width: 640px) and (hover: hover) and (pointer: fine) {
	.home-cases__card:hover .home-cases__card-content {
		padding-bottom: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-cases__card-bg,
	.home-cases__card-overlay,
	.home-cases__card-content,
	.home-cases__card-content::before,
	.home-cases__card-icon {
		transition: none;
	}

	.home-cases__card:hover .home-cases__card-bg,
	.home-cases__card:hover .home-cases__card-icon {
		transform: none;
	}
}
