/* Hero 通栏海报轮播 */
#hero.hero-banner {
	position: relative;
	width: 100%;
	height: 750px;
	overflow: hidden;
	background: var(--navy);
}

.hero-slider {
	position: relative;
	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: #3a9edc;
}

.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;
}

/* ── 产品中心 ── */
.fp-products {
	position: relative;
	padding: 25px 0;
	background: var(--blue-pale) center top / cover no-repeat;
	overflow: hidden;
}

.fp-products__inner {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.fp-products__head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 24px;
	min-height: clamp(72px, 12vw, 140px);
	padding: 0;
}

.fp-products__watermark {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: clamp(58px, 9.6vw, 112px);
	line-height: 1;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: transparent;
	background: linear-gradient(
		to bottom,
		rgba(0, 147, 208, .22) 0%,
		rgba(0, 147, 208, .1) 45%,
		rgba(0, 147, 208, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.fp-products__title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 46px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1d7fca;
	line-height: 1.15;
}

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

.fp-products__item {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

.fp-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	text-decoration: none;
	background: var(--white);
	box-shadow: 0 8px 28px rgba(13, 43, 85, .08);
	overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease;
}

.fp-product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 36px rgba(13, 43, 85, .16);
}

.fp-product-card__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--white);
	overflow: hidden;
	flex-shrink: 0;
}

.fp-product-card__media img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .45s ease;
}

.fp-product-card:hover .fp-product-card__media img {
	transform: scale(1.08);
}

.fp-product-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 18px 16px 20px;
	background: #09339b;
	text-align: center;
	flex-shrink: 0;
	min-width: 0;
	transition: background .3s ease;
}

.fp-product-card:hover .fp-product-card__body {
	background: #3a9edc;
}

.fp-product-card__name {
	display: block;
	width: 100%;
	max-width: 100%;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 1.4vw, 20px);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fp-product-card__sub {
	display: block;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .4px;
	color: rgba(255, 255, 255, .88);
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ── 热门产品轮播 ── */
.fp-hot {
	position: relative;
	padding: 5px 0 24px;
	background: var(--white);
	overflow: hidden;
}

.fp-hot__inner {
	position: relative;
	z-index: 1;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.fp-hot__head {
	margin-bottom: 20px;
	padding: 0 40px;
}

.fp-hot__slider {
	position: relative;
}

.fp-hot__stage {
	position: relative;
	height: 700px;
	background: var(--navy) center center / cover no-repeat;
	overflow: hidden;
}

.fp-hot__viewport {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.fp-hot__track {
	display: flex;
	height: 100%;
	transition: transform .45s ease;
	will-change: transform;
}

.fp-hot-item {
	flex: 0 0 25%;
	width: 25%;
	max-width: 25%;
	min-width: 0;
	height: 100%;
	box-sizing: border-box;
	padding: 40px 36px 48px;
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(255, 255, 255, .28);
	text-decoration: none;
	color: inherit;
}

.fp-hot-item:last-child {
	border-right: none;
}

.fp-hot-item__info {
	flex-shrink: 0;
	margin-bottom: 28px;
}

.fp-hot-item__title-row {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}

.fp-hot-item__name {
	margin: 0;
	flex: 1;
	min-width: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	font-size: clamp(18px, 1.5vw, 26px);
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.2;
}

.fp-hot-item__arrow {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	display: block;
	object-fit: contain;
}

.fp-hot-item__sub {
	display: block;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .9);
}

.fp-hot-item__media {
	flex: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 0;
	transform: translateY(-15px);
}

.fp-hot-item__media img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform .45s ease;
}

.fp-hot-item:hover .fp-hot-item__media img {
	transform: scale(1.06);
}

.fp-hot__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.fp-hot__btn {
	width: 68px;
	height: 68px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	line-height: 0;
	transition: transform .25s ease, opacity .25s ease;
}

.fp-hot__btn img {
	width: 68px;
	height: 68px;
	display: block;
	object-fit: contain;
}

.fp-hot__btn:hover {
	transform: scale(1.06);
}

/* ── 首页视频展示 ── */
.fp-video {
	padding: 25px 0;
	background: var(--white);
}

.fp-video__inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.fp-video__stage {
	position: relative;
	width: 100%;
	aspect-ratio: 12 / 5;
	overflow: hidden;
	background: #0a1620;
}

.fp-video__cover,
.fp-video__player {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.fp-video__player {
	z-index: 1;
	background: #000;
}

.fp-video__cover {
	z-index: 2;
	transition: opacity .35s ease, visibility .35s ease;
}

.fp-video__stage::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 3;
	background: rgba(0, 0, 0, .28);
	pointer-events: none;
	transition: opacity .35s ease;
}

.fp-video__stage.is-playing::before,
.fp-video__stage.is-playing .fp-video__cover,
.fp-video__stage.is-playing .fp-video__play {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.fp-video__stage.is-playing .fp-video__player {
	z-index: 5;
	object-fit: contain;
}

.fp-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	transform: translate(-50%, -50%);
	width: 88px;
	height: 88px;
	border: 2px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	background: rgba(0, 0, 0, .28);
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .25s ease, background .25s ease, opacity .35s ease, visibility .35s ease;
	backdrop-filter: blur(2px);
}

.fp-video__play:hover {
	transform: translate(-50%, -50%) scale(1.06);
	background: rgba(0, 147, 208, .55);
}

.fp-video__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 6px;
	border-style: solid;
	border-width: 14px 0 14px 24px;
	border-color: transparent transparent transparent #fff;
}

/* ── 首页公司简介 ── */
.fp-about {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 955px;
	aspect-ratio: 1920 / 955;
	background-color: #fff;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.fp-about__inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 36px 40px 18px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex: 1;
}

.fp-about__head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: clamp(72px, 10vw, 120px);
	width: 100%;
}

.fp-about__watermark {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Barlow Condensed', Arial, Helvetica, sans-serif;
	font-weight: 800;
	font-size: clamp(51px, 8vw, 96px);
	line-height: 1;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: transparent;
	background: linear-gradient(
		to bottom,
		rgba(0, 147, 208, .28) 0%,
		rgba(0, 147, 208, .12) 50%,
		rgba(0, 147, 208, 0) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.fp-about__title {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 46px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #1d7fca;
	line-height: 1.15;
}

.fp-about__desc {
	width: 100%;
	max-width: 1400px;
	margin: 0;
}

/* ── 首页工厂展示轮播 ── */
.fp-factory {
	padding: 25px 0 30px;
	background: var(--white);
	overflow: hidden;
}

.fp-factory__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.fp-factory__slider {
	position: relative;
	padding: 0 88px;
}

.fp-factory__viewport {
	overflow: hidden;
	width: 100%;
}

.fp-factory__track {
	display: flex;
	align-items: flex-start;
	transition: transform .45s ease;
	will-change: transform;
}

.fp-factory-item {
	flex: 0 0 calc((100% - 48px) / 4);
	width: calc((100% - 48px) / 4);
	max-width: calc((100% - 48px) / 4);
	min-width: 0;
	margin-right: 16px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	background: #09339b;
}

.fp-factory-item__media {
	display: block;
	width: 100%;
	line-height: 0;
	overflow: hidden;
	background: #09339b;
}

.fp-factory-item__media img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .45s ease;
}

.fp-factory-item:hover .fp-factory-item__media img {
	transform: scale(1.04);
}

.fp-factory-item__title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 16px;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 600;
	font-size: clamp(15px, 1.2vw, 18px);
	letter-spacing: .5px;
	line-height: 1.3;
	text-align: center;
	color: #fff;
	background: #09339b;
}

.fp-factory__btn {
	position: absolute;
	top: 42%;
	z-index: 3;
	transform: translateY(-50%);
	width: 68px;
	height: 68px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	line-height: 0;
	transition: transform .25s ease, opacity .25s ease;
}

.fp-factory__btn img {
	width: 68px;
	height: 68px;
	display: block;
	object-fit: contain;
}

.fp-factory__btn:hover {
	transform: translateY(-50%) scale(1.06);
}

.fp-factory__btn--prev {
	left: 0;
}

.fp-factory__btn--next {
	right: 0;
}

/* ── 首页新闻中心 ── */
.fp-news {
	padding: 28px 0 36px;
	background: var(--white);
}

.fp-news__shell {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.fp-news__inner {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.fp-news__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
}

.fp-news__head-text {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 16px 28px;
	min-width: 0;
}

.fp-news__title {
	margin: 0;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 46px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #1d7fca;
	line-height: 1.15;
}

.fp-news__company {
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(13px, 1.1vw, 16px);
	font-weight: 400;
	color: #8a8a8a;
	line-height: 1.4;
}

.fp-news__logo {
	display: block;
	flex-shrink: 0;
	height: 48px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.fp-news__grid {
	display: grid;
	grid-template-columns: minmax(0, 865fr) minmax(0, 510fr);
	gap: 24px;
	align-items: stretch;
}

.fp-news-feature {
	position: relative;
	display: block;
	overflow: hidden;
	background: #102a3d;
	text-decoration: none;
	color: inherit;
	min-height: 420px;
}

.fp-news-feature__media {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
}

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

.fp-news-feature:hover .fp-news-feature__media img {
	transform: scale(1.04);
}

.fp-news-feature__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 22px 28px 24px;
	background: rgba(9, 51, 155, .92);
	display: flex;
	flex-direction: column;
	gap: 8px;
	box-sizing: border-box;
}

.fp-news-feature__name {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: clamp(16px, 1.3vw, 20px);
	line-height: 1.35;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fp-news-feature__excerpt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(13px, 1vw, 15px);
	line-height: 1.55;
	color: rgba(255, 255, 255, .9);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}

.fp-news__side {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.fp-news-card {
	flex: 1;
	min-height: 0;
	background: #eef5fb;
	transition: transform .3s ease, box-shadow .3s ease;
}

.fp-news-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(9, 51, 155, .12);
}

.fp-news-card__link {
	display: flex;
	align-items: stretch;
	gap: 16px;
	height: 100%;
	padding: 14px;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
}

.fp-news-card__media {
	flex: 0 0 auto;
	width: 128px;
	max-width: 40%;
	overflow: hidden;
	background: #d5e4f2;
	align-self: center;
	line-height: 0;
}

.fp-news-card__media img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .4s ease;
}

.fp-news-card:hover .fp-news-card__media img {
	transform: scale(1.06);
}

.fp-news-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	padding: 4px 4px 4px 0;
}

.fp-news-card__name {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: clamp(14px, 1.15vw, 17px);
	line-height: 1.35;
	color: #1a1a1a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.fp-news-card__excerpt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: #7a7a7a;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.fp-news-card__more {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #09339b;
	margin-top: 2px;
	transition: color .25s ease;
}

.fp-news-card:hover .fp-news-card__more {
	color: var(--navy);
}

.fp-news__more-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}

.fp-news__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 168px;
	height: 48px;
	padding: 0 28px;
	border-radius: 999px;
	background: linear-gradient(180deg, #1e6ae5 0%, #003192 100%);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: filter .25s ease, transform .25s ease, box-shadow .25s ease;
}

.fp-news__more:hover {
	filter: brightness(1.06);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 49, 146, .28);
}

@media (max-width: 1100px) {
	.fp-products {
		padding: 28px 0 32px;
	}

	.fp-products__head {
		margin-bottom: 18px;
	}

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

	.fp-hot {
		padding: 28px 0 20px;
	}

	.fp-hot__head {
		padding: 0 24px;
		margin-bottom: 14px;
	}

	.fp-hot__stage {
		height: 560px;
	}

	.fp-hot-item {
		flex-basis: 50%;
		width: 50%;
		max-width: 50%;
		padding: 28px 24px 32px;
	}

	.fp-video {
		padding: 20px 0;
	}

	.fp-video__play {
		width: 76px;
		height: 76px;
	}

	.fp-video__play-icon {
		border-width: 12px 0 12px 20px;
	}

	.fp-factory {
		padding: 20px 0 24px;
	}

	.fp-factory__slider {
		padding: 0 72px;
	}

	.fp-factory-item {
		flex-basis: calc((100% - 16px) / 2);
		width: calc((100% - 16px) / 2);
		max-width: calc((100% - 16px) / 2);
	}

	.fp-factory__btn,
	.fp-factory__btn img {
		width: 56px;
		height: 56px;
	}

	.fp-news {
		padding: 24px 0 28px;
	}

	.fp-news__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.fp-news-feature {
		min-height: 360px;
	}

	.fp-news-card__media {
		width: 112px;
	}
}

@media (max-width: 1000px) {
	.fp-about {
		min-height: 0;
		aspect-ratio: auto;
		background-image: none !important;
		overflow: visible;
	}

	.fp-about__inner {
		padding: 28px 28px 24px;
		gap: 28px;
		justify-content: flex-start;
	}

	.fp-about__head {
		min-height: clamp(64px, 14vw, 96px);
		margin-bottom: 4px;
	}

	.fp-about__watermark {
		font-size: clamp(45px, 9.6vw, 70px);
		letter-spacing: 3px;
	}
}

@media (max-width: 640px) {
	.fp-products__title,
	.fp-about__title,
	.fp-news__title {
		font-size: 36px;
	}

	.fp-products {
		padding: 22px 0 26px;
	}

	.fp-products__head {
		margin-bottom: 14px;
	}

	.fp-products__watermark {
		font-size: clamp(45px, 14.4vw, 70px);
	}

	.fp-products__grid {
		grid-template-columns: 1fr;
		gap: 16px;
		max-width: 420px;
		margin: 0 auto;
	}

	.fp-product-card__media {
		padding: 0;
	}

	.fp-product-card__body {
		padding: 16px 14px 18px;
	}

	.fp-hot {
		padding: 22px 0 18px;
	}

	.fp-hot__head {
		padding: 0 16px;
	}

	.fp-hot__stage {
		height: 480px;
	}

	.fp-hot-item {
		flex-basis: 100%;
		width: 100%;
		max-width: 100%;
		padding: 24px 20px 28px;
		border-right: none;
	}

	.fp-hot-item__arrow {
		width: 40px;
		height: 40px;
	}

	.fp-hot__btn,
	.fp-hot__btn img {
		width: 56px;
		height: 56px;
	}

	.fp-video {
		padding: 22px 0;
	}

	.fp-video__stage {
		aspect-ratio: 16 / 9;
	}

	.fp-video__play {
		width: 64px;
		height: 64px;
	}

	.fp-video__play-icon {
		margin-left: 4px;
		border-width: 10px 0 10px 18px;
	}

	.fp-about__inner {
		padding: 22px 20px 20px;
		gap: 20px;
	}

	.fp-about__watermark {
		letter-spacing: 2px;
	}

	.fp-factory {
		padding: 16px 0 20px;
	}

	.fp-factory__slider {
		padding: 0 64px;
	}

	.fp-factory-item {
		flex-basis: 100%;
		width: 100%;
		max-width: 100%;
	}

	.fp-factory__btn,
	.fp-factory__btn img {
		width: 48px;
		height: 48px;
	}

	.fp-factory-item__title {
		min-height: 44px;
		padding: 10px 12px;
	}

	.fp-news {
		padding: 20px 0 24px;
	}

	.fp-news__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 12px;
	}

	.fp-news__head-text {
		gap: 8px 16px;
	}

	.fp-news__logo {
		height: 40px;
		max-width: 180px;
	}

	.fp-news-feature {
		min-height: 280px;
	}

	.fp-news-feature__overlay {
		padding: 16px 18px 18px;
	}

	.fp-news-card__link {
		gap: 12px;
		padding: 12px;
	}

	.fp-news-card__media {
		width: 96px;
	}

	.fp-news__more {
		width: 100%;
		min-width: 0;
	}

	.fp-news__more-wrap {
		justify-content: stretch;
	}
}

@media (max-width: 1100px) {
	#hero.hero-banner {
		height: auto;
		min-height: 520px;
		aspect-ratio: 16 / 7;
	}

	.hero-dots {
		bottom: 24px;
	}

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

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

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

@media (max-width: 640px) {
	#hero.hero-banner {
		min-height: 420px;
		aspect-ratio: 4 / 3;
	}

	.hero-dots {
		bottom: 16px;
	}

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

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

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