/* 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: contain;
	object-position: center;
}

.hero-slide--video {
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	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: 100px;
}

.hero-arrow-next {
	right: 100px;
}

.hero-dots {
	position: absolute;
	bottom: 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-dots {
		bottom: 24px;
	}

	.hero-arrow {
		width: 42px;
		height: 42px;
		font-size: 18px;
	}

	.hero-arrow-prev {
		left: max(12px, 4vw);
	}

	.hero-arrow-next {
		right: max(12px, 4vw);
	}
}

@media (max-width: 640px) {
	.hero-dots {
		bottom: 16px;
	}

	.hero-arrow {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.hero-arrow-prev {
		left: 10px;
	}

	.hero-arrow-next {
		right: 10px;
	}
}

/* ── 首页定制展示 ── */
.home-custom {
	position: relative;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background-color: #f3eee6;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
	overflow: hidden;
}

.home-custom__inner {
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
	padding: 72px 40px 80px 210px;
	box-sizing: border-box;
}

.home-custom__content {
	width: 100%;
	max-width: 760px;
}

.home-custom__title {
	margin: 0 0 28px;
	font-family: var(--font-nav);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--navy);
}

.home-custom__grid {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.home-custom__card {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #ddd;
	cursor: default;
}

.home-custom__card-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.home-custom__card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .45s ease;
}

.home-custom__card:hover .home-custom__card-media img {
	transform: scale(1.06);
}

.home-custom__card-name {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	padding: 10px 14px;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	color: var(--navy);
	background: rgba(243, 232, 208, .88);
	backdrop-filter: blur(2px);
	transition: background .25s ease, color .25s ease;
}

.home-custom__card:hover .home-custom__card-name {
	background: rgba(205, 166, 81, .92);
	color: #fff;
}

.home-custom__btn {
	display: inline-block;
	width: 226px;
	height: 44px;
	line-height: 0;
	transition: transform .25s ease, opacity .25s ease, filter .25s ease;
}

.home-custom__btn img {
	display: block;
	width: 226px;
	height: 44px;
	object-fit: contain;
}

.home-custom__btn:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

@media (max-width: 1100px) {
	.home-custom {
		background-position: right 20% center;
	}

	.home-custom__inner {
		padding: 56px 28px 64px 48px;
	}

	.home-custom__title {
		font-size: clamp(28px, 4vw, 40px);
	}

	.home-custom__card-name {
		font-size: 16px;
		padding: 8px 12px;
	}
}

@media (max-width: 900px) {
	.home-custom {
		background-position: right center;
		background-size: cover;
	}

	.home-custom__content {
		max-width: 100%;
		padding: 24px 20px;
		background: rgba(243, 238, 230, .88);
		backdrop-filter: blur(4px);
	}

	.home-custom__inner {
		padding: 40px 20px 48px;
	}
}

@media (max-width: 640px) {
	.home-custom__inner {
		padding: 36px 16px 44px;
	}

	.home-custom__title {
		margin-bottom: 20px;
		font-size: 26px;
		letter-spacing: .5px;
	}

	.home-custom__grid {
		gap: 10px;
		margin-bottom: 22px;
	}

	.home-custom__card-name {
		font-size: 14px;
		padding: 7px 10px;
	}

	.home-custom__btn,
	.home-custom__btn img {
		width: 200px;
		height: 39px;
	}
}

/* ── 首页产品中心 ── */
.home-products {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
	padding: 88px 0 96px;
}

.home-products__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-products__head {
	text-align: center;
	margin-bottom: 48px;
}

.home-products__title {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--navy);
	line-height: 1.2;
}

.home-products__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent);
	line-height: 1.4;
}

.home-products__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.home-products__item {
	margin: 0;
}

.home-products__card {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 24px;
	text-decoration: none;
	background: #e8e4dc;
	aspect-ratio: 3 / 4;
	box-shadow: 0 8px 24px rgba(26, 35, 50, .08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.home-products__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 36px rgba(26, 35, 50, .14);
}

.home-products__media {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
}

.home-products__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .5s ease;
}

.home-products__card:hover .home-products__media img {
	transform: scale(1.08);
}

.home-products__card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 42%;
	background: linear-gradient(to top, rgba(26, 35, 50, .82) 0%, rgba(26, 35, 50, .35) 55%, transparent 100%);
	pointer-events: none;
	z-index: 1;
	transition: opacity .3s ease;
}

.home-products__name {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 22px;
	z-index: 2;
	display: block;
	font-family: var(--font-nav);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: .5px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	transition: color .25s ease, transform .25s ease;
}

.home-products__card:hover .home-products__name {
	color: var(--accent);
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.home-products {
		padding: 64px 0 72px;
	}

	.home-products__inner {
		padding: 0 28px;
	}

	.home-products__head {
		margin-bottom: 36px;
	}

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

	.home-products__name {
		font-size: 20px;
		bottom: 18px;
	}
}

@media (max-width: 640px) {
	.home-products {
		padding: 48px 0 56px;
	}

	.home-products__inner {
		padding: 0 20px;
	}

	.home-products__head {
		margin-bottom: 28px;
	}

	.home-products__subtitle {
		font-size: 13px;
		letter-spacing: 1.5px;
	}

	.home-products__grid {
		gap: 12px;
	}

	.home-products__card {
		border-radius: 18px;
	}

	.home-products__name {
		font-size: 15px;
		bottom: 14px;
		left: 8px;
		right: 8px;
	}
}

/* ── 首页产品对比 ── */
.home-compare {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 80px 0 88px;
	background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.home-compare__inner {
	max-width: 1790px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-compare__row {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 28px;
	overflow: visible;
}

.home-compare__row + .home-compare__row {
	margin-top: 72px;
}

.home-compare__col {
	min-width: 0;
	text-align: center;
	overflow: visible;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home-compare__col--left {
	flex: 0 1 979px;
	max-width: 979px;
	width: 100%;
}

.home-compare__col--right {
	flex: 0 1 664px;
	max-width: 664px;
	width: 100%;
	overflow: visible;
}

.home-compare__badge {
	display: inline-block;
	padding: 10px 28px;
	border-radius: 10px;
	font-family: var(--font-nav);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	margin: 0 auto 18px;
}

.home-compare__badge--gold {
	background: #cda651;
}

.home-compare__badge--navy {
	background: var(--navy);
}

.home-compare__desc {
	font-family: var(--font-nav);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.7;
	color: #222;
	text-align: center;
	margin-bottom: 28px;
}

.home-compare__desc p {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 400;
}

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

.home-compare__col--right .home-compare__desc p:first-child {
	font-weight: 400;
	font-size: 20px;
	line-height: 1.7;
	margin-bottom: 12px;
}

.home-compare__media {
	width: 100%;
	overflow: visible;
}

.home-compare__media img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: center center;
}

.home-compare__media--left {
	max-width: 979px;
	margin-top: auto;
	margin-bottom: auto;
	padding-top: 0;
}

.home-compare__media--right {
	max-width: 503px;
	margin-top: auto;
	margin-bottom: 0;
	border-radius: 8px;
	box-shadow: 0 12px 36px rgba(26, 35, 50, .12);
	overflow: visible;
}

.home-compare__media--right img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
}

.home-compare__col:hover .home-compare__media img {
	transform: none;
}

.home-compare__col:hover .home-compare__media--right {
	transform: translateY(-4px);
	transition: transform .35s ease;
}

.home-compare__arrow {
	flex: 0 0 112px;
	width: 112px;
	align-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
}

.home-compare__arrow img {
	display: block;
	width: 112px;
	height: 41px;
	object-fit: contain;
}

@media (max-width: 1400px) {
	.home-compare__badge {
		font-size: clamp(22px, 2.4vw, 32px);
		padding: 8px 20px;
	}

	.home-compare__desc {
		font-size: 17px;
	}

	.home-compare__col--right .home-compare__desc p:first-child {
		font-size: 17px;
	}

	.home-compare__arrow {
		flex-basis: 72px;
		width: 72px;
		padding-top: 60px;
	}

	.home-compare__arrow img {
		width: 72px;
		height: auto;
	}
}

@media (max-width: 1100px) {
	.home-compare {
		padding: 56px 0 64px;
	}

	.home-compare__inner {
		padding: 0 28px;
	}

	.home-compare__row {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.home-compare__col--left,
	.home-compare__col--right {
		max-width: 100%;
		flex: 1 1 auto;
	}

	.home-compare__media--left {
		padding-top: 0;
		margin-top: 0;
	}

	.home-compare__arrow {
		padding-top: 0;
		transform: rotate(90deg);
		flex-basis: auto;
		width: auto;
	}

	.home-compare__media--right {
		max-width: 420px;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.home-compare {
		padding: 40px 0 48px;
	}

	.home-compare__inner {
		padding: 0 20px;
	}

	.home-compare__badge {
		font-size: 18px;
		padding: 8px 16px;
		border-radius: 8px;
		margin-bottom: 14px;
	}

	.home-compare__desc {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.home-compare__col--right .home-compare__desc p:first-child {
		font-size: 15px;
	}

	.home-compare__arrow img {
		width: 56px;
	}

	.home-compare__media--right {
		max-width: 100%;
	}
}

/* —— 首页流程 OUR PROCESS —— */
.home-process {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 44px 0 96px;
	background: #fff;
}

.home-process__inner {
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-process__head {
	text-align: center;
	margin-bottom: 56px;
}

.home-process__title {
	margin: 0 0 14px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.2;
}

.home-process__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.4;
}

.home-process__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 20px;
	flex-wrap: nowrap;
}

.home-process__item {
	display: flex;
	align-items: stretch;
	flex: 0 0 auto;
	margin: 0;
}

.home-process__item--image-only {
	flex: 0 0 auto;
}

.home-process__media {
	width: 368px;
	max-width: 368px;
	flex: 0 0 368px;
	overflow: hidden;
	background: #e8e4dc;
}

.home-process__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 368 / 539;
	object-fit: cover;
	object-position: center;
	transition: transform .5s ease;
}

.home-process__item:hover .home-process__media img {
	transform: scale(1.04);
}

.home-process__panel {
	width: 368px;
	max-width: 368px;
	flex: 0 0 368px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
	padding: 40px 36px;
	box-sizing: border-box;
	color: #fff;
}

.home-process__icon {
	display: block;
	width: 85px;
	height: 85px;
	margin: 0 0 28px;
}

.home-process__icon img {
	display: block;
	width: 85px;
	height: 85px;
	object-fit: contain;
}

.home-process__name {
	margin: 0 0 18px;
	font-family: var(--font-nav);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.25;
	color: #fff;
}

.home-process__desc {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.55;
	color: #fff;
}

@media (max-width: 1600px) {
	.home-process__list {
		gap: 14px;
	}

	.home-process__media,
	.home-process__panel {
		width: clamp(240px, 19.2vw, 368px);
		max-width: clamp(240px, 19.2vw, 368px);
		flex-basis: clamp(240px, 19.2vw, 368px);
	}

	.home-process__name {
		font-size: clamp(18px, 1.6vw, 30px);
	}

	.home-process__desc {
		font-size: clamp(14px, 1.2vw, 22px);
	}

	.home-process__icon {
		width: clamp(56px, 4.5vw, 85px);
		height: clamp(56px, 4.5vw, 85px);
		margin-bottom: 20px;
	}

	.home-process__icon img {
		width: 100%;
		height: 100%;
	}

	.home-process__panel {
		padding: 28px 22px;
	}
}

@media (max-width: 1100px) {
	.home-process {
		padding: 28px 0 64px;
	}

	.home-process__inner {
		padding: 0 28px;
	}

	.home-process__head {
		margin-bottom: 36px;
	}

	.home-process__list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.home-process__item {
		flex: 1 1 calc(50% - 8px);
		max-width: 100%;
	}

	.home-process__item--image-only {
		flex: 0 1 368px;
	}

	.home-process__media,
	.home-process__panel {
		width: 50%;
		max-width: none;
		flex: 1 1 50%;
	}

	.home-process__item--image-only .home-process__media {
		width: 100%;
		flex: 1 1 100%;
	}
}

@media (max-width: 640px) {
	.home-process {
		padding: 20px 0 48px;
	}

	.home-process__inner {
		padding: 0 20px;
	}

	.home-process__title {
		font-size: 24px;
	}

	.home-process__subtitle {
		font-size: 13px;
		letter-spacing: 1px;
	}

	.home-process__item,
	.home-process__item--image-only {
		flex: 1 1 100%;
		flex-direction: column;
	}

	.home-process__media,
	.home-process__panel,
	.home-process__item--image-only .home-process__media {
		width: 100%;
		max-width: 100%;
		flex: 1 1 auto;
	}

	.home-process__name {
		font-size: 22px;
	}

	.home-process__desc {
		font-size: 16px;
	}

	.home-process__icon {
		width: 64px;
		height: 64px;
	}
}

/* —— 首页定制流程 CUSTOMIZATION PROCESS —— */
.home-cuslc {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 36px 0 48px;
	background: #fff;
}

.home-cuslc__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-cuslc__head {
	text-align: center;
	margin-bottom: 48px;
}

.home-cuslc__title {
	margin: 0 0 14px;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.2;
}

.home-cuslc__subtitle {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.4;
}

.home-cuslc__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
}

.home-cuslc__item {
	flex: 1 1 0;
	min-width: 0;
	max-width: 244px;
	margin: 0;
	display: flex;
}

.home-cuslc__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #fff;
	border: 1px solid #bfbfbf;
	border-radius: 10px;
	overflow: visible;
}

.home-cuslc__media {
	width: 100%;
	aspect-ratio: 244 / 300;
	overflow: hidden;
	border-radius: 9px 9px 0 0;
	background: #e8e4dc;
}

.home-cuslc__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .5s ease;
}

.home-cuslc__card:hover .home-cuslc__media img {
	transform: scale(1.05);
}

.home-cuslc__icon {
	position: relative;
	z-index: 2;
	display: block;
	width: 71px;
	height: 71px;
	margin: -35px auto 0;
	border-radius: 50%;
	overflow: hidden;
	transition: transform .6s ease;
}

.home-cuslc__card:hover .home-cuslc__icon {
	transform: rotateZ(360deg);
}

.home-cuslc__icon img {
	display: block;
	width: 71px;
	height: 71px;
	object-fit: contain;
}

.home-cuslc__body {
	width: 100%;
	flex: 1 1 auto;
	padding: 18px 14px 28px;
	text-align: center;
	box-sizing: border-box;
}

.home-cuslc__name {
	margin: 0 0 12px;
	font-family: var(--font-nav);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #061f36;
	line-height: 1.35;
}

.home-cuslc__desc {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
	color: #6b7280;
}

.home-cuslc__arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 28px;
	padding-top: 138px;
	margin: 0;
	list-style: none;
}

.home-cuslc__arrow img {
	display: block;
	width: 14px;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1200px) {
	.home-cuslc__inner {
		padding: 0 28px;
	}

	.home-cuslc__list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 28px 16px;
	}

	.home-cuslc__item {
		flex: 0 1 calc(33.333% - 16px);
		max-width: 244px;
	}

	.home-cuslc__arrow {
		display: none;
	}
}

@media (max-width: 768px) {
	.home-cuslc {
		padding: 24px 0 28px;
	}

	.home-cuslc__inner {
		padding: 0 20px;
	}

	.home-cuslc__head {
		margin-bottom: 32px;
	}

	.home-cuslc__title {
		font-size: 24px;
	}

	.home-cuslc__subtitle {
		font-size: 13px;
		letter-spacing: 1px;
	}

	.home-cuslc__item {
		flex: 0 1 calc(50% - 10px);
	}
}

@media (max-width: 480px) {
	.home-cuslc__item {
		flex: 0 1 100%;
		max-width: 320px;
	}

	.home-cuslc__icon {
		width: 64px;
		height: 64px;
		margin-top: -32px;
	}

	.home-cuslc__icon img {
		width: 64px;
		height: 64px;
	}
}

/* —— 首页定制展示 WHY CHOOSE US —— */
.home-why {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 50px 0;
	background: #061f36;
}

.home-why__inner {
	max-width: 1580px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-why__head {
	text-align: center;
	margin-bottom: 40px;
}

.home-why__title {
	margin: 0;
	font-family: var(--font-nav);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.2;
}

.home-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.home-why__item {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	padding: 10px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home-why__item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 12%;
	bottom: 12%;
	right: 0;
	width: 1px;
	background: rgba(255, 255, 255, .28);
	pointer-events: none;
}

.home-why__icon {
	display: block;
	width: 65px;
	height: 65px;
	margin: 0 auto 22px;
	perspective: 600px;
	transform-style: preserve-3d;
	transition: transform .7s ease;
}

.home-why__item:hover .home-why__icon {
	transform: rotateY(360deg);
}

.home-why__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	backface-visibility: hidden;
}

.home-why__name {
	margin: 0 0 14px;
	font-family: var(--font-nav);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #cda651;
	line-height: 1.3;
}

.home-why__desc {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.45;
	color: #fff;
	max-width: 280px;
}

@media (max-width: 1200px) {
	.home-why__inner {
		padding: 0 28px;
	}

	.home-why__item {
		padding: 10px 18px;
	}

	.home-why__name,
	.home-why__desc {
		font-size: clamp(16px, 1.8vw, 24px);
	}

	.home-why__icon {
		width: 65px;
		height: 65px;
		margin-bottom: 16px;
	}
}

@media (max-width: 900px) {
	.home-why__list {
		flex-wrap: wrap;
		gap: 28px 0;
	}

	.home-why__item {
		flex: 0 0 50%;
		padding: 16px 24px;
	}

	.home-why__item:nth-child(2n)::after {
		display: none;
	}

	.home-why__item:not(:last-child)::after {
		top: 18%;
		bottom: 18%;
	}
}

@media (max-width: 560px) {
	.home-why {
		padding: 40px 0;
	}

	.home-why__inner {
		padding: 0 20px;
	}

	.home-why__head {
		margin-bottom: 28px;
	}

	.home-why__item {
		flex: 0 0 100%;
		padding: 20px 10px;
	}

	.home-why__item:not(:last-child)::after {
		top: auto;
		bottom: 0;
		left: 20%;
		right: 20%;
		width: auto;
		height: 1px;
	}

	.home-why__name,
	.home-why__desc {
		font-size: 18px;
	}

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

/* —— 首页视频展示 —— */
.home-video {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 72px 0;
	background: #fbf8f1;
}

.home-video__inner {
	max-width: 1400px;
	margin: 0 auto;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
}

.home-video__left {
	flex: 0 0 500px;
	width: 500px;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.home-video__logo {
	margin: 0 0 28px;
	max-width: 100%;
}

.home-video__logo img {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.home-video__title {
	margin: 0 0 22px;
	font-family: var(--font-nav);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	color: #061f36;
}

.home-video__name {
	margin: 0 0 22px;
	padding: 14px 22px;
	box-sizing: border-box;
	width: 100%;
	font-family: var(--font-nav);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.3;
	text-transform: uppercase;
	color: #fff;
	background: #cda651;
}

.home-video__desc {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
	color: #061f36;
}

.home-video__right {
	position: relative;
	flex: 0 0 900px;
	width: 900px;
	max-width: 900px;
	aspect-ratio: 16 / 10;
	background: #2a2a2a;
	overflow: hidden;
}

.home-video__player,
.home-video__cover-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background: #2a2a2a;
}

.home-video__player {
	position: absolute;
	inset: 0;
}

.home-video__right.is-playing .home-video__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.home-video__play {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: opacity .25s, visibility .25s;
}

.home-video__play-icon {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 36px 0 36px 60px;
	border-color: transparent transparent transparent #fff;
	margin-left: 8px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
	transition: transform .25s ease;
}

.home-video__play:hover .home-video__play-icon {
	transform: scale(1.08);
}

@media (max-width: 1480px) {
	.home-video__inner {
		padding: 0 28px;
		gap: 24px;
	}

	.home-video__left {
		flex: 0 1 500px;
		width: auto;
		max-width: 42%;
	}

	.home-video__right {
		flex: 1 1 900px;
		width: auto;
		max-width: 58%;
	}

	.home-video__title {
		font-size: clamp(24px, 2.4vw, 36px);
	}

	.home-video__name,
	.home-video__desc {
		font-size: clamp(18px, 2vw, 30px);
	}
}

@media (max-width: 900px) {
	.home-video {
		padding: 48px 0;
	}

	.home-video__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
	}

	.home-video__left,
	.home-video__right {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
	}

	.home-video__right {
		aspect-ratio: 16 / 9;
	}

	.home-video__play-icon {
		border-width: 28px 0 28px 46px;
	}
}

@media (max-width: 560px) {
	.home-video {
		padding: 36px 0;
	}

	.home-video__inner {
		padding: 0 20px;
	}

	.home-video__logo {
		margin-bottom: 20px;
	}

	.home-video__title {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.home-video__name {
		font-size: 18px;
		padding: 12px 16px;
		margin-bottom: 16px;
	}

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

/* home-cases 样式已移至 layout.css（首页 / 文章列表共用） */

/* home-about 样式已移至 layout.css（首页 / 公司简介共用） */

/* —— 首页底部联系我们 —— */
.home-contact {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 88px 0 36px;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	box-sizing: border-box;
}

.home-contact__inner {
	max-width: 1650px;
	margin: 0 auto;
	width: 100%;
	padding: 0 40px;
	box-sizing: border-box;
}

.home-contact__main {
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

.home-contact__title {
	margin: 0 0 22px;
	font-family: var(--font-nav);
	font-size: 54px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #061f36;
}

.home-contact__subtitle {
	margin: 0 0 36px;
	font-family: var(--font-nav);
	font-size: 34px;
	font-weight: 500;
	line-height: 1.4;
	color: #222;
}

.home-contact__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0 0 40px;
}

.home-contact__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 52px;
	padding: 0 28px;
	border: none;
	border-radius: 10px;
	font-family: var(--font-nav);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	transition: background-color .3s ease, transform .25s ease;
}

.home-contact__btn--navy {
	background: #061f36;
}

.home-contact__btn--gold {
	background: #cda651;
}

.home-contact__btn:hover {
	transform: translateY(-2px);
}

.home-contact__btn--navy:hover {
	background: #0a2d4d;
}

.home-contact__btn--gold:hover {
	background: #b8943f;
}

.home-contact__desc {
	margin: 0 auto 18px;
	max-width: 1100px;
	font-family: var(--font-nav);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.45;
	color: #061f36;
}

.home-contact__desc1 {
	margin: 0 auto 48px;
	max-width: 900px;
	font-family: var(--font-nav);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #555;
}

.home-contact__foot {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 22px 40px 0;
	border-top: 1px solid #cfcfcf;
	box-sizing: border-box;
}

.home-contact__foot-inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.home-contact__name {
	margin: 0;
	font-family: var(--font-nav);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	color: #061f36;
	text-align: left;
}

@media (max-width: 1400px) {
	.home-contact__title {
		font-size: clamp(32px, 4vw, 54px);
	}

	.home-contact__subtitle {
		font-size: clamp(20px, 2.4vw, 34px);
	}

	.home-contact__desc {
		font-size: clamp(18px, 2.1vw, 30px);
	}
}

@media (max-width: 900px) {
	.home-contact {
		padding: 56px 0 28px;
		background-size: cover;
	}

	.home-contact__inner {
		padding: 0 28px;
	}

	.home-contact__subtitle {
		margin-bottom: 28px;
	}

	.home-contact__actions {
		margin-bottom: 28px;
		gap: 14px;
	}

	.home-contact__btn {
		min-width: 180px;
		height: 46px;
		font-size: 14px;
	}

	.home-contact__desc1 {
		margin-bottom: 36px;
		font-size: 15px;
	}

	.home-contact__name {
		font-size: 16px;
	}
}

@media (max-width: 560px) {
	.home-contact {
		padding: 40px 0 24px;
	}

	.home-contact__inner {
		padding: 0 20px;
	}

	.home-contact__actions {
		flex-direction: column;
	}

	.home-contact__btn {
		width: 100%;
		max-width: 280px;
	}

	.home-contact__foot {
		padding-left: 20px;
		padding-right: 20px;
	}

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