/* ==================== 首页新设计稿样式 ==================== */

/* ==================== Fullpage 全屏滚动容器 ==================== */

#fullpage {
	height: 100vh;
}

/* 每个 section 占满一屏 */
.section {
	height: 100vh;
	position: relative;
}

/* 底部 section 自适应高度 */
.c-snap-auto-height {
	height: auto;
}

/* section 内容区垂直居中 */
.section > .c-home-section {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ==================== 基础容器 ==================== */

/* 基础容器 - 与原来一致的 margin 布局 */
.c-home-container {
	position: relative;
	margin-left: 1.0104rem;
	margin-right: 1.0156rem;
}

.c-home-section {
	padding: 0.5208rem 0;
	position: relative;
}

.c-home-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.2604rem;
}

.c-home-section-title {
	font-size: 0.2083rem;
	font-weight: 700;
	color: rgba(26, 26, 26, 1);
	margin: 0 0 0.0781rem;
}

/* 标题下方红色短线（div 方式，统一用法） */
.c-home-section-title-line {
	width: 0.2083rem;
	height: 0.0208rem;
	background: rgba(205, 43, 61, 1);
	margin-top: 0.0521rem;
}

.c-home-section-more {
	font-size: 0.1458rem;
	color: #fff;
	text-decoration: none;
	background: rgba(205, 43, 61, 1);
	padding: 0.0521rem 0.1719rem;
	border-radius: 0.026rem;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	transition: background 0.3s;
}

.c-home-section-more:hover {
	background: rgba(170, 30, 48, 1);
	color: rgba(255, 255, 255, 1);
}

.c-home-section-more img {
	width: 0.1406rem;
	height: 0.1406rem;
}

/* ==================== Banner区域 ==================== */
.c-home-banner {
	position: relative;
	width: 100%;
	height: 5.2083rem;
	overflow: hidden;
}

.c-home-banner-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.c-home-banner-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-home-banner::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.c-home-banner-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
}

.c-home-banner-title {
	font-size: 0.4688rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-bottom: 0.4167rem;
}

.c-home-banner-btn {
	display: inline-block;
	padding: 0.1302rem 0.4167rem;
	background: rgba(205, 43, 61, 1);
	color: #fff;
	font-size: 0.1563rem;
	text-decoration: none;
	border-radius: 0.026rem;
	transition: all 0.3s;
}

.c-home-banner-btn:hover {
	background: rgba(180, 38, 54, 1);
}

/* ==================== 解决方案 左右抽拉特效 ==================== */
.section.c-section-solution {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0.5208rem 0;
}

.c-home-solution {
	background: transparent;
	padding: 0;
}

/* 全宽抽拉容器 */
.c-home-solution-slider {
	position: relative;
	width: calc(100% - 2.0416rem);
	margin: 0.2083rem auto 0;
	height: 3.6458rem;
	display: flex;
	overflow: hidden;
	border-radius: 0.0521rem;
}

/* 面板通用样式 */
.c-home-solution-panel {
	position: relative;
	overflow: hidden;
	transition: flex 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	text-decoration: none;
	cursor: pointer;
	font-size: 0;
	will-change: flex;
	outline: none;
}

.c-home-solution-panel:focus,
.c-home-solution-panel:active {
	outline: none;
}

/* 默认左大右小 */
.c-home-solution-panel-left {
	flex: 62;
	clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
	z-index: 2;
}

.c-home-solution-panel-right {
	flex: 38;
	clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 1;
	margin-left: -0.5208rem;
}

/* 悬停展开 */
.c-home-solution-slider:hover .c-home-solution-panel-left {
	flex: 38;
}
.c-home-solution-slider:hover .c-home-solution-panel-right {
	flex: 62;
}
.c-home-solution-slider .c-home-solution-panel-left:hover {
	flex: 68 !important;
}
.c-home-solution-slider .c-home-solution-panel-right:hover {
	flex: 68 !important;
}

/* 背景图 */
.c-home-solution-panel-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.6s;
}

.c-home-solution-bg-storage {
	background-image: url("/oss/images/img/官网切图/首页/1.png");
}

.c-home-solution-bg-gas {
	background-image: url("/oss/images/img/官网切图/首页/2.png");
}

.c-home-solution-panel:hover .c-home-solution-panel-bg {
	transform: scale(1.05);
}

/* 遮罩 */
.c-home-solution-panel-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	transition: background 0.4s;
}

.c-home-solution-panel:hover .c-home-solution-panel-mask {
	background: rgba(0, 0, 0, 0.2);
}

/* 内容文字 */
.c-home-solution-panel-content {
	position: absolute;
	top: 1.026rem;
	left: 0.5208rem;
	z-index: 3;
	color: #fff;
}

.c-home-solution-panel-right .c-home-solution-panel-content {
	left: 0.7813rem;
}

.c-home-solution-panel-title {
	font-size: 0.2604rem;
	font-weight: 700;
	margin-bottom: 0.1042rem;
	text-shadow: 0 0.0521rem 0.2083rem rgba(0, 0, 0, 0.5);
}

.c-home-solution-panel-desc {
	font-size: 0.1302rem;
	opacity: 0.9;
	margin-bottom: 0.2604rem;
	width: 3.125rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/* 圆形箭头按钮 */
.c-home-solution-panel-arrow {
	width: 0.3177rem;
	height: 0.3177rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.3s,
		border-color 0.3s;
}

.c-home-solution-panel-arrow img {
	width: 0.0417rem;
	height: 0.0677rem;
}

.c-home-solution-span {
	margin: 0 0.1354rem 0 0.1667rem;
}

/* .c-home-solution-panel:hover .c-home-solution-panel-arrow {
	background: rgba(205, 43, 61, 1);
	border-color: rgba(205, 43, 61, 1);
} */

/* 子项列表 */
.c-home-solution-sublist {
	position: absolute;
	bottom: 0.825rem;
	left: 0.5208rem;
	right: 0.5208rem;
	display: flex;
	gap: 0.1042rem;
	z-index: 4;
	flex-wrap: wrap;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s ease 0.1s,
		visibility 0.3s ease 0.1s;
}

/* 左侧子列表默认显示 */
.c-home-solution-panel-left .c-home-solution-sublist {
	opacity: 1;
	visibility: visible;
}

/* 右侧子列表默认隐藏 */
.c-home-solution-panel-right .c-home-solution-sublist {
	opacity: 0;
	visibility: hidden;
}

/* 左侧hover时显示左侧子列表 */
.c-home-solution-slider
	.c-home-solution-panel-left:hover
	.c-home-solution-sublist {
	opacity: 1;
	visibility: visible;
}

/* 右侧hover时显示右侧子列表 */
.c-home-solution-slider
	.c-home-solution-panel-right:hover
	.c-home-solution-sublist {
	opacity: 1;
	visibility: visible;
}

/* 右侧hover时隐藏左侧子列表 */
.c-home-solution-slider:has(.c-home-solution-panel-right:hover)
	.c-home-solution-panel-left
	.c-home-solution-sublist {
	opacity: 0;
	visibility: hidden;
}

/* 左侧hover时隐藏右侧子列表 */
.c-home-solution-slider:has(.c-home-solution-panel-left:hover)
	.c-home-solution-panel-right
	.c-home-solution-sublist {
	opacity: 0;
	visibility: hidden;
}

.c-home-solution-subitem {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0.0521rem 0.0885rem 0.0521rem 0.125rem;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	font-size: 0.1042rem;
	text-decoration: none;
	transition: all 0.3s;
	white-space: nowrap;
}

/* 左侧图标容器 - 使用position叠加 */
.c-home-solution-subitem > img {
	width: 0.1094rem;
	height: 0.099rem;
	flex-shrink: 0;
	position: absolute;
	left: 0.125rem;
	transition: opacity 0.3s;
}

/* 默认显示白色图标 */
.c-home-solution-subitem > img.icon-default {
	opacity: 1;
	z-index: 2;
}

.c-home-solution-subitem > img.icon-hover {
	opacity: 0;
	z-index: 1;
}

/* 右侧箭头图标 */
.c-home-solution-subitem-arrow {
	position: relative;
	width: 0.0417rem;
	height: 0.0677rem;
	flex-shrink: 0;
}

.c-home-solution-subitem-arrow img {
	width: 0.0417rem;
	height: 0.0677rem;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s;
}

/* 默认显示白色箭头 */
.c-home-solution-subitem-arrow img.icon-default {
	opacity: 1;
}

.c-home-solution-subitem-arrow img.icon-hover {
	opacity: 0;
}

.c-home-solution-subitem:hover {
	background-color: #fff;
	border-color: rgba(255, 255, 255, 0.7);
	color: #cd1e19;
}

/* hover时切换为红色图标 */
.c-home-solution-subitem:hover > img.icon-default {
	opacity: 0;
	z-index: 1;
}

.c-home-solution-subitem:hover > img.icon-hover {
	opacity: 1;
	z-index: 2;
}

.c-home-solution-subitem:hover .c-home-solution-subitem-arrow img.icon-default {
	opacity: 0;
}

.c-home-solution-subitem:hover .c-home-solution-subitem-arrow img.icon-hover {
	opacity: 1;
}

.c-home-solution-subitem-dot {
	width: 0.0417rem;
	height: 0.0417rem;
	background: rgba(205, 43, 61, 1);
	border-radius: 50%;
	flex-shrink: 0;
}

.c-home-solution-subitem-arrow {
	line-height: 1;
	flex-shrink: 0;
}

/* ==================== 选择我们的理由（全屏） ==================== */
.c-home-reason-fullscreen {
	padding: 0;
	position: relative;
}

.c-page-title-reason {
	position: absolute;
	top: 0.3594rem;
	left: 1.0104rem;
	z-index: 10;
}

.c-page-title-reason .c-page-title-text {
	color: #fff;
}

.c-page-title-reason .c-page-title-divider {
	background: rgba(205, 30, 25, 1);
}

/* ==================== 智能仓储案例 手风琴 ==================== */
.c-case-accordion-wrap {
	width: 100%;
	height: 100%;
	flex: 1;
	min-height: 0;
	display: flex;
	flex-direction: column;
}

.section.c-section-case-storage {
	display: flex;
	flex-direction: column;
	padding: 0.5208rem 0 0.5208rem;
	/* background: #fff; */
	background: rgba(166, 166, 166, 0.14);
}

.c-case-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0.1563rem 1.0104rem 0.2083rem;
	flex-shrink: 0;
	/* background: #fff; */
}

.c-case-accordion-title {
	font-size: 0.2083rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.0781rem;
}

.c-case-accordion-title-line {
	width: 0.2083rem;
	height: 0.0208rem;
	background: rgba(205, 43, 61, 1);
}

.c-case-accordion-more {
	font-size: 0.1302rem;
	color: #fff;
	text-decoration: none;
	background: rgba(205, 43, 61, 1);
	padding: 0.0781rem 0.2083rem;
	border-radius: 0.0521rem;
	display: flex;
	align-items: center;
	gap: 0.0521rem;
	transition: all 0.3s;
}

.c-case-accordion-more:hover {
	background: rgba(170, 30, 48, 1);
}

/* 手风琴主体 */
.c-case-accordion {
	display: flex;
	flex: 1;
	overflow: hidden;
	/* min-height: 3.6458rem; */
	min-height: 3.140625rem;
	background-repeat: no-repeat;
	background-position: right;
	background-size: cover;
}

/* 每个卡片 */
.c-case-accordion-item {
	position: relative;
	flex: 1;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	transition: flex 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	/* overflow: hidden; */
	will-change: flex;
}

/* 左侧白色竖条 - 在卡片中央显示 */
.c-case-accordion-bar {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.0417rem;
	height: 0.5052rem;
	background: #ffffff;
	opacity: 1;
	z-index: 6;
}
.c-case-accordion-item:nth-of-type(1) .c-case-accordion-bar {
	opacity: 0;
}

/* 展开时隐藏白色竖条 */
.c-case-accordion-item.active .c-case-accordion-bar {
	/* opacity: 0; */
}

/* 竖向分割线 */
.c-case-accordion-item + .c-case-accordion-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 1);
	z-index: 5;
}

/* 激活展开 */
.c-case-accordion-item.active {
	flex: 4.5;
}

/* 遮罩 */
.c-case-accordion-mask {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	transition: background 0.5s;
}

.c-case-accordion-item.active .c-case-accordion-mask {
	background: rgba(0, 0, 0, 0.38);
}

/* ---- 收缩态：垂直居中文字 ---- */
.c-case-accordion-collapsed {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 1;
	transition: opacity 0.25s;
	z-index: 2;
	padding: 0 0.1563rem;
	transform: translateY(-50%);
}

.c-case-accordion-item.active .c-case-accordion-collapsed {
	opacity: 0;
	pointer-events: none;
}

.c-case-accordion-collapsed-industry {
	font-size: 0.1042rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.0521rem;
	white-space: nowrap;
}

.c-case-accordion-collapsed-title {
	font-size: 0.1302rem;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* ---- 展开态：左下角完整信息，淡入上移 ---- */
.c-case-accordion-expanded {
	position: absolute;
	bottom: 0.4167rem;
	left: 0.4167rem;
	right: 0.4167rem;
	opacity: 0;
	transform: translateY(0.1563rem);
	transition:
		opacity 0.4s 0.2s,
		transform 0.4s 0.2s;
	z-index: 2;
	pointer-events: none;
}

.c-case-accordion-item.active .c-case-accordion-expanded {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.c-case-accordion-industry {
	font-size: 0.1042rem;
	color: rgba(255, 200, 0, 0.9);
	margin-bottom: 0.1042rem;
	letter-spacing: 0.026rem;
}

.c-case-accordion-name {
	font-size: 0.2604rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.1563rem;
	line-height: 1.2;
}

.c-case-accordion-desc {
	font-size: 0.1146rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.75;
	margin-bottom: 0.2604rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	max-width: 4.1667rem;
}

.c-case-accordion-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.3646rem;
	height: 0.3646rem;
	background: rgba(205, 43, 61, 1);
	color: #fff;
	font-size: 0.1563rem;
	text-decoration: none;
	transition: background 0.3s;
}

.c-case-accordion-btn:hover {
	background: rgba(170, 30, 48, 1);
}

/* ==================== 智能仓储案例 旧样式保留（其他页面用）==================== */
.c-home-case-storage {
	background: #f8f8f8;
}

.c-home-case-tabs {
	display: flex;
	gap: 0.2604rem;
	margin-bottom: 0.4167rem;
}

.c-home-case-tab {
	font-size: 0.1458rem;
	color: rgba(102, 102, 102, 1);
	cursor: pointer;
	padding: 0.0781rem 0.2083rem;
	border-radius: 0.026rem;
	transition: all 0.3s;
}

.c-home-case-tab.active,
.c-home-case-tab:hover {
	color: rgba(205, 43, 61, 1);
	background: rgba(205, 43, 61, 0.1);
}

.c-home-case-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.2083rem;
}

.c-home-case-item {
	text-decoration: none;
	background: #fff;
	border-radius: 0.0521rem;
	overflow: hidden;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.c-home-case-item:hover {
	transform: translateY(-0.0521rem);
	box-shadow: 0 0.1042rem 0.2083rem rgba(0, 0, 0, 0.1);
}

.c-home-case-img {
	width: 100%;
	height: 1.8229rem;
	overflow: hidden;
}

.c-home-case-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.c-home-case-item:hover .c-home-case-img img {
	transform: scale(1.05);
}

.c-home-case-info {
	padding: 0.1563rem;
}

.c-home-case-title {
	font-size: 0.1563rem;
	font-weight: 700;
	color: rgba(51, 51, 51, 1);
	margin-bottom: 0.0781rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c-home-case-desc {
	font-size: 0.1146rem;
	color: rgba(153, 153, 153, 1);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* ==================== 工业气体案例 ==================== */
.section.c-section-case-gas {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* background: #f5f5f5; */
	padding: 0.5208rem 0;
}

.c-home-case-gas {
	background: transparent;
	width: 100%;
}

/* 标题区独立容器，与 slider 分开 */
.c-home-case-gas .c-home-container {
	margin-bottom: 0.2604rem;
}

/* Swiper 容器：与解决方案相同的居中方式 */
.c-home-case-gas-slider {
	overflow: hidden;
	padding-bottom: 0.2604rem;
	width: calc(100% - 2.0416rem);
	margin: 0 auto;
	border-radius: 0.0521rem;
}

/* 每张卡片固定宽度，用于 slidesPerView: 'auto' */
.c-home-case-gas-slider .swiper-slide {
	width: 5.2083rem;
	height: 3.3854rem;
	border-radius: 0.0781rem;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.4s;
}

/* 全图卡片 */
.c-home-case-gas-item {
	text-decoration: none;
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.c-home-case-gas-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s;
}

.c-home-case-gas-slider .swiper-slide-active .c-home-case-gas-img:hover {
	transform: scale(1.04);
}

/* 标题叠加在底部 */
.c-home-case-gas-title {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0.625rem 0.2604rem 0.2083rem;
	font-size: 0.1563rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
	text-align: left;
	/* 只在激活卡片显示标题，两侧收起 */
	opacity: 0;
	transition: opacity 0.4s;
}

.c-home-case-gas-slider .swiper-slide-active .c-home-case-gas-title {
	opacity: 1;
}

/* 两侧非激活卡片变暗 */
.c-home-case-gas-slider .swiper-slide:not(.swiper-slide-active) {
	filter: brightness(0.8);
}

/* 分页圆点 */
.c-home-case-gas-pagination {
	display: flex !important;
	justify-content: center;
	gap: 0.0781rem;
	margin-top: 0.2083rem;
	position: static !important;
	transform: none !important;
	bottom: auto !important;
}

.c-home-case-gas-pagination .swiper-pagination-bullet {
	width: 0.0781rem;
	height: 0.0781rem;
	background: rgba(180, 180, 180, 1);
	opacity: 1;
	border-radius: 50%;
}

.c-home-case-gas-pagination .swiper-pagination-bullet-active {
	background: rgba(205, 43, 61, 1);
}

/* ==================== 产品设备 ==================== */
.c-section-product {
	background: linear-gradient(
		-120deg,
		rgba(203, 30, 25, 0.14) 0%,
		rgba(242, 242, 242, 0.01) 56.43%,
		rgba(242, 242, 242, 1) 100%
	);
}
.c-home-product {
	/* background:linear-gradient(159.55deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0.01) 56.43%, rgba(203, 30, 25, 0.14) 100%) */
}

.c-home-product-body {
	display: flex;
	gap: 0.4167rem;
}

.c-home-product-tabs {
	width: 1.604rem;
	flex-shrink: 0;
}

.c-home-product-tab {
	position: relative;
	padding: 0.1302rem 0.1563rem;
	background: #fff;
	border-radius: 0.0729rem;
	margin-bottom: 0.0781rem;
	cursor: pointer;
	transition: all 0.3s;
}

/* active状态时的红色背景 */
.c-home-product-tab.active {
	background: #cb1e19;
}

/* active状态时的小三角指示器 */
.c-home-product-tab.active::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0.1771rem;
	width: 0;
	height: 0;
	border-top: 0.0729rem solid transparent;
	border-bottom: 0.0729rem solid transparent;
	border-left: 0.0729rem solid #cb1e19;
	transform: translateX(100%);
}

.c-home-product-tab:hover {
	background: #f5f5f5;
}

.c-home-product-tab.active:hover {
	background: #cb1e19;
}

.c-home-product-tab-title {
	font-size: 0.1667rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.026rem;
}

.c-home-product-tab.active .c-home-product-tab-title {
	color: #fff;
}

.c-home-product-tab-desc {
	font-size: 0.0938rem;
	color: #999;
}

.c-home-product-tab.active .c-home-product-tab-desc {
	color: rgba(255, 255, 255, 0.8);
}

/* 查看详情链接容器 - 默认隐藏 */
.c-home-product-tab-link {
	display: none;
	margin-top: 0.1458rem;
	text-decoration: none;
}

/* active状态下显示链接 */
.c-home-product-tab.active .c-home-product-tab-link {
	display: flex;
	font-size: 0.0938rem;
}

/* 查看详情按钮 */
.c-home-product-tab-btn {
	display: inline-block;
	padding: 0.0313rem 0.0625rem;
	/* background: #A01815; */
	color: #fff;
	font-size: 0.0573rem;
	text-decoration: none;
	border-radius: 0.0156rem;
	transition: background 0.3s;
}

.c-home-product-tab-btn:hover {
	background: #fff;
	color: #cb1e19;
}

.c-home-product-content {
	flex: 1;
}

.c-home-product-panel {
	display: none !important;
}

.c-home-product-panel.active {
	display: block !important;
}

/* 产品图片尺寸 */
.c-home-product-panel img,
.c-home-product-panel video {
	width: 6.4479rem;
	height: 3.7135rem;
	object-fit: cover;
}

.c-home-product-item {
	text-decoration: none;
	display: block;
	background: #fff;
	border-radius: 0.0521rem;
	overflow: hidden;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.c-home-product-item:hover {
	transform: translateY(-0.0521rem);
	box-shadow: 0 0.1042rem 0.2083rem rgba(0, 0, 0, 0.1);
}

.c-home-product-img {
	width: 100%;
	height: 3.125rem;
	overflow: hidden;
}

.c-home-product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-home-product-name {
	padding: 0.1563rem;
	font-size: 0.1458rem;
	color: rgba(51, 51, 51, 1);
	text-align: center;
}

/* ==================== 公司新闻 ==================== */
.c-home-news {
	background: #fff;
	position: relative;
}

.c-home-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.2604rem;
}

.c-home-news-item {
	text-decoration: none;
	background: #fff;
	border-radius: 0.0521rem;
	overflow: hidden;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
}

.c-home-news-item:hover {
	transform: translateY(-0.0521rem);
	box-shadow: 0 0.1042rem 0.3125rem rgba(0, 0, 0, 0.1);
}

/* 新闻红色线条 */
.c-home-news-divider {
	width: 100%;
	height: 0.0313rem;
	border-radius: 0.0313rem;
	background: rgba(230, 230, 230, 1);
	transition: background 0.3s;
}

.c-home-news-divider.active {
	background: rgba(212, 48, 48, 1);
}

.c-home-news-date {
	font-size: 0.1146rem;
	color: rgba(153, 153, 153, 1);
	padding: 0.1563rem 0.1563rem 0;
}

.c-home-news-img {
	width: 100%;
	height: 1.5625rem;
	overflow: hidden;
	margin: 0.1042rem 0;
}

.c-home-news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.c-home-news-item:hover .c-home-news-img img {
	transform: scale(1.05);
}

.c-home-news-title {
	font-size: 0.1563rem;
	font-weight: 700;
	color: rgba(51, 51, 51, 1);
	padding: 0 0.1563rem;
	margin-bottom: 0.0781rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.c-home-news-desc {
	font-size: 0.1146rem;
	color: rgba(153, 153, 153, 1);
	padding: 0 0.1563rem 0.1563rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.c-home-news-decoration {
	position: absolute;
	bottom: 0.5208rem;
	right: 0.5208rem;
	font-size: 0.7813rem;
	font-weight: 900;
	color: rgba(205, 43, 61, 0.1);
	pointer-events: none;
}

/* ==================== 选择我们的理由 ==================== */
.c-home-reason {
	position: relative;
	padding: 0;
	min-height: 4.1667rem;
	display: flex;
	align-items: center;
}

.c-home-reason-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.c-home-reason-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-home-reason .c-home-container {
	position: relative;
	z-index: 1;
}

.c-home-reason-title {
	font-size: 0.3125rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5208rem;
}

.c-home-reason-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.2604rem;
}

.c-home-reason-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(0.0521rem);
	padding: 0.3125rem;
	border-radius: 0.0521rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.c-home-reason-num {
	font-size: 0.3125rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 0.1563rem;
}

.c-home-reason-item-title {
	font-size: 0.1771rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.1042rem;
}

.c-home-reason-desc {
	font-size: 0.1146rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* ==================== 底部 ==================== */
.c-home-footer {
	background: rgba(51, 51, 51, 1);
	padding: 0.5208rem 0 0.2604rem;
}

.c-home-footer-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.4167rem;
}

.c-home-footer-info {
	display: flex;
	gap: 0.4167rem;
}

.c-home-footer-logo img {
	height: 0.5208rem;
}

.c-home-footer-contact {
	color: rgba(255, 255, 255, 0.8);
}

.c-home-footer-tel {
	display: flex;
	align-items: center;
	gap: 0.1042rem;
	font-size: 0.2083rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.1563rem;
}

.c-home-footer-tel img {
	width: 0.2604rem;
	height: 0.2604rem;
}

.c-home-footer-address,
.c-home-footer-email {
	font-size: 0.125rem;
	margin-bottom: 0.0781rem;
}

.c-home-footer-codes {
	display: flex;
	gap: 0.2083rem;
}

.c-home-footer-code {
	text-align: center;
}

.c-home-footer-code img {
	width: 1.0417rem;
	height: 1.0417rem;
	border-radius: 0.0521rem;
	margin-bottom: 0.0781rem;
}

.c-home-footer-code-text {
	font-size: 0.1146rem;
	color: rgba(255, 255, 255, 0.8);
}

.c-home-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 0.2604rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c-home-footer-copyright {
	font-size: 0.1146rem;
	color: rgba(255, 255, 255, 0.6);
}

.c-home-footer-meta {
	display: flex;
	gap: 0.2604rem;
	font-size: 0.1146rem;
	color: rgba(255, 255, 255, 0.6);
}
.section.c-section {
	height: 100%;
}
.c-section-footer,
.c-section-footer .fp-overflow {
	height: auto !important;
	min-height: auto !important;
}

/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
	.c-home-container {
		width: 100%;
		padding: 0 0.3125rem;
	}

	.c-home-banner-title {
		font-size: 0.3125rem;
	}

	.c-home-solution-grid {
		grid-template-columns: 1fr;
	}

	.c-home-case-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.c-home-product-body {
		flex-direction: column;
	}

	.c-home-product-tabs {
		width: 100%;
	}

	.c-home-product-panel {
		grid-template-columns: repeat(2, 1fr);
	}

	.c-home-news-grid {
		grid-template-columns: 1fr;
	}

	.c-home-reason-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.c-home-footer-top {
		flex-direction: column;
		gap: 0.3125rem;
	}

	.c-home-footer-info {
		flex-direction: column;
	}

	.c-home-footer-bottom {
		flex-direction: column;
		gap: 0.1563rem;
		text-align: center;
	}
}
