@charset "UTF-8";
/* =============== 播放按钮水波纹扩散动画 =============== */
.play-btn-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.play-btn-box {
	position: relative;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.play-btn-wrapper:hover .play-btn-box {
	transform: scale(1.15);
	background: rgba(0, 0, 0, 0.6);
}

.play-btn-box img {
	width: 100%;
	height: 100%;
	display: block;
	z-index: 2;
}

.play-btn-box::before,
.play-btn-box::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
	transform: translate(-50%, -50%);
	animation: rippleWave 2s infinite ease-out;
	pointer-events: none;
	z-index: 1;
}

.play-btn-box::after {
	animation-delay: 1s;
}

@keyframes rippleWave {
	0% {
		width: 100%;
		height: 100%;
		opacity: 0.9;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}

.play-btn-text {
	margin-top: 15px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1.5px;
	background: rgba(0, 0, 0, 0.6);
	padding: 6px 18px;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
	animation: floatText 2s infinite ease-in-out;
	white-space: nowrap;
}

@keyframes floatText {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

/* =============== 视频弹窗 (Modal) 样式 =============== */
.video-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.88);
	z-index: 999999;
	justify-content: center;
	align-items: center;
}

.video-modal-content {
	position: relative;
	width: 85vw;
	max-width: 1400px;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
}

.video-modal-content video {
	width: 100%;
	height: auto;
	max-height: 85vh;
	display: block;
	object-fit: contain;
}

.video-modal-close {
	position: absolute;
	top: 10px;
	right: 20px;
	color: #ffffff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 100;
	line-height: 1;
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
	transition: color 0.2s, transform 0.2s;
}
.video-modal-close:hover {
	color: #ff4d4f;
	transform: scale(1.2);
}

/* =============== 图一专属还原样式 =============== */
.nc1160-detail-section {
	padding: 0 0 70rem;
	width: 100%;
	box-sizing: border-box;
}

.nc1160-detail-container {
	width: 92%;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 12px;
	padding: 0 30rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	gap: 3%;
	box-sizing: border-box;
}

.nc1160-detail-container .gallery-section {
	margin-top: 10rem;
	width: 55%;
	display: flex;
	gap: 15rem;
	min-width: 0;
	align-items: center;
}

/* 侧边 Swiper 缩略图 */
.nc-thumb-swiper {
	width: 20%;
	height: 100%;
	flex-shrink: 0;
}

.nc-thumb-swiper .swiper-slide {
	background: #ffffff;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	cursor: pointer;
	text-align: center;
	box-sizing: border-box;
	opacity: 0.7;
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 150rem !important;
}

/* 选中红框高亮 */
.nc-thumb-swiper .swiper-slide-thumb-active,
.nc-thumb-swiper .swiper-slide.active-text {
	border-color: #e32416 !important;
	opacity: 1;
	box-shadow: 0 4px 12px rgba(227, 36, 22, 0.15);
}

.nc-thumb-swiper .thumb-img-wrapper {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nc-thumb-swiper .thumb-img-wrapper img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
}

.nc-thumb-swiper .thumb-title {
	font-size: 12px;
	color: #6b7280;
	margin-top: 6px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.nc-thumb-swiper .swiper-slide-thumb-active .thumb-title {
	color: #e32416;
	font-weight: bold;
}

/* 主图 Swiper 容器 */
.nc-main-swiper {
	flex: 1;
	height: 530rem;
	border-radius: 12px;
	overflow: hidden;
}

.nc-main-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.nc-main-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 右侧信息区域 */
.nc1160-detail-container .info-section {
	padding-top: 30rem;
	width: 45%;
	flex-direction: column;
	justify-content: space-between;
}

.nc1160-detail-container .nc-product-title {
	font-size: 30rem;
	font-weight: 800;
	color: #e32416;
	margin-bottom: 8px;
	line-height: 1.2;
}

.nc1160-detail-container .hotline-info {
	font-size: 25rem;
	color: #374151;
	margin-bottom: 15px;
}

.nc1160-detail-container .hotline-info span {
	font-weight: 700;
	color: #111827;
	font-size: 25rem;
}

/* 6格卡片网格布局 */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20rem;
	margin-bottom: 20rem;
}

.feature-card {
	height: 120rem;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 12rem 14rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
	box-sizing: border-box;
}

.feature-card .card-head {
	display: flex;
	align-items: center;
	gap: 8rem;
	margin-bottom: 8rem;
}

.feature-card .card-badge {
	background: #e32416;
	color: #ffffff;
	font-size: 20rem;
	font-weight: bold;
	padding: 2px 6px;
	border-radius: 4px;
	line-height: 1.2;
	flex-shrink: 0;
}

.feature-card .card-title {
	font-size: 20rem;
	font-weight: 700;
	color: #111827;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.feature-card .card-desc {
	font-size: 18rem;
	color: #6b7280;
	line-height: 1.4;
}

/* 联系我们按钮 */
.btn-contact {
	display: inline-block;
	padding: 8px 36px;
	border: 2px solid #e32416;
	color: #e32416;
	background: #ffffff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 25px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-contact:hover {
	background: #e32416;
	color: #ffffff;
	text-decoration: none;
}

/* 移动端与小屏适配 */
@media (max-width: 1024px) {
	.nc1160-detail-container {
		flex-direction: column;
		padding: 20px;
	}
	.nc1160-detail-container .gallery-section {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.nc1160-detail-section {
		padding: 15px 10px;
	}
	.nc1160-detail-container .gallery-section {
		flex-direction: column-reverse;
	}
	.nc-thumb-swiper {
		width: 100%;
		height: 95px;
	}
	.nc-thumb-swiper .swiper-slide {
		height: 85px !important;
	}
	.nc-main-swiper {
		width: 100%;
		min-height: 280px;
	}
	.feature-grid {
		grid-template-columns: 1fr;
	}
	.nc1160-detail-container .nc-product-title {
		font-size: 24px;
	}
}

/* =============== 适用行业 毛玻璃背景+全端自适应 CSS =============== */
.bento-section {
	padding: 0 0 70rem;
	background-color: #f8fafc;
}
.bento-container {
	width: 92%;
	margin: 0 auto;
}
.bento-title {
	font-size: 24px;
	font-weight: bold;
	color: #03367f;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
}
.bento-title::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 22px;
	background-color: #e63946;
	margin-right: 10px;
	border-radius: 2px;
}

/* ---------------- PC 端网格布局 ---------------- */
.bento-grid {
	padding: 30rem 0 0;
	display: grid;
	gap: 20rem;
}

/* 统一单排平铺样式 */
.bento-grid.grid-single-row {
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	grid-auto-rows: 230px;
}

/* 卡片基础外观 */
.bento-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	background-color: #0f172a;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	display: block;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
	-webkit-tap-highlight-color: transparent;
}

.bento-card:hover {
	transform: translateY(-4px);
	border-color: #ed0700;
	box-shadow: 0 12px 28px rgba(3, 54, 127, 0.18);
}

/* 一闪而过（扫光）伪元素与动画 */
.bento-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transform: skewX(-25deg);
	z-index: 4;
	pointer-events: none;
}

.bento-card:hover::after {
	animation: flashSweep 0.75s ease-in-out;
}

@keyframes flashSweep {
	0% {
		left: -100%;
	}
	100% {
		left: 150%;
	}
}

/* 1. 毛玻璃背景图 */
.bento-card img.bg-blur {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	object-fit: cover;
	object-position: center;
	filter: blur(10rem) brightness(0.65) opacity(0.85);
	z-index: 1;
	transition: transform 0.5s ease, filter 0.5s ease;
	pointer-events: none;
}

/* 2. 前景主体图：单排全量填满 cover */
.bento-card img.img-main {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	padding: 0;
	box-sizing: border-box;
	transition: transform 0.4s ease;
}

/* Hover 组合动画 */
.bento-card:hover img.bg-blur {
	transform: scale(1.15);
	filter: blur(18px) brightness(0.75) opacity(0.95);
}

.bento-card:hover img.img-main {
	transform: scale(1.04);
}

/* 序号角标 */
.card-number {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(3, 54, 127, 0.88);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 4px;
	z-index: 3;
	letter-spacing: 0.5px;
	backdrop-filter: blur(4px);
}

/* 底部渐变标题 */
.card-tag {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
	padding: 24px 14px 10px 14px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 3;
}

.card-tag .dot {
	width: 6px;
	height: 6px;
	background-color: #e63946;
	border-radius: 50%;
	flex-shrink: 0;
}

/* ---------------- 手机端/移动端 专属响应式优化 ---------------- */
@media (max-width: 480px) {
	.bento-section {
		padding: 20px 0 28px 0;
	}
	.bento-container {
		padding: 0 12px;
	}
	.bento-title {
		font-size: 18px;
		margin-bottom: 14px;
	}
	.bento-title::before {
		height: 16px;
		margin-right: 8px;
	}

	/* 移动端统一重构为 2 列工整网格 */
	.bento-grid.grid-single-row {
		grid-template-columns: repeat(2, 1fr) !important;
		grid-auto-flow: row !important;
		grid-auto-rows: 150px !important;
		gap: 10px !important;
	}

	.bento-card img.img-main {
		padding: 0;
	}

	/* 触控反馈 */
	.bento-card:active {
		transform: scale(0.98);
		border-color: #03367f;
	}

	.card-number {
		top: 6px;
		right: 6px;
		font-size: 10px;
		padding: 1px 6px;
	}

	.card-tag {
		padding: 16px 8px 6px 8px;
		font-size: 12px;
		gap: 5px;
	}

	.card-tag .dot {
		width: 5px;
		height: 5px;
	}
}

/* ================= "适用行业" 居中双语标题及副标题专属 CSS ================= */
.section-title-wrap {
	text-align: center;
	padding-top: 70rem;
}
.section-title-dual {
	display: flex;
	align-items: baseline;
	justify-content: center;
	letter-spacing: 0.5rem;
	margin-bottom: 6rem;
}
.section-title-dual .cn-text {
	color: #ed0700;
	font-size: 40rem;
	font-weight: 700;
	margin-right: 12rem;
}
.section-title-dual .sep {
	color: #ed0700;
	font-weight: 400;
	margin-right: 12rem;
	font-size: 42rem;
}
.section-title-dual .en-text {
	color: #94a3b8;
	font-weight: 600;
	font-size: 32rem;
}
.section-desc-cn {
	font-size: 18rem;
	color: #333333;
	font-weight: 500;
	margin-bottom: 2px;
	line-height: 1.4;
}
.section-desc-en {
	font-size: 15rem;
	color: #94a3b8;
	font-weight: 400;
	line-height: 1.4;
}

/* 移动端响应式适配 */
@media (max-width: 768px) {
	.section-title-dual .cn-text {
		font-size: 20px !important;
	}
	.section-title-dual .sep,
	.section-title-dual .en-text {
		font-size: 16px !important;
	}
	.section-desc-cn {
		font-size: 13px !important;
	}
	.section-desc-en {
		font-size: 11px !important;
	}
}