/* 楼宇闸机产品宣传页 - 深圳中集智能科技有限公司 */
.gateBanner {
	position: relative;
	clear: both;
	height: 320px;
	background: linear-gradient(135deg, #0a5e8c 0%, #09C 55%, #2bb8e6 100%);
	overflow: hidden;
}
.gateBanner:before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}
.gateBanner:after {
	content: "";
	position: absolute;
	bottom: -120px;
	left: -40px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
}
.gateBanner .layui-container {
	position: relative;
	z-index: 2;
}
.gateBanner .bannerInner {
	padding-top: 70px;
	color: #fff;
	text-align: center;
}
.gateBanner h1 {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 14px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.gateBanner .subTitle {
	font-size: 20px;
	opacity: .92;
	margin-bottom: 8px;
}
.gateBanner .slogan {
	font-size: 15px;
	opacity: .8;
	line-height: 1.7;
	max-width: 720px;
	margin: 0 auto;
}
.gateBanner .companyTag {
	display: inline-block;
	margin-top: 18px;
	padding: 6px 18px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 20px;
	font-size: 14px;
	letter-spacing: 1px;
}


/* 分组标题 */
.gateSection {
	padding: 40px 0 10px;
}
.gateSection .sectionHead {
	text-align: center;
	margin-bottom: 30px;
}
.gateSection .sectionHead h2 {
	font-size: 28px;
	color: #1a1a1a;
	font-weight: 700;
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
}
.gateSection .sectionHead h2:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 54px;
	height: 3px;
	background: #09C;
	border-radius: 2px;
}
.gateSection .sectionHead p {
	margin-top: 10px;
	color: #888;
	font-size: 14px;
}

/* 产品卡片 */
.gateCard {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
	margin-bottom: 36px;
	overflow: hidden;
	transition: box-shadow .3s, transform .3s;
}
.gateCard:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
	transform: translateY(-3px);
}
.gateCard .cardHead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	background: linear-gradient(90deg, #0a5e8c, #09C);
	color: #fff;
}
.gateCard .cardHead .modelName {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}
.gateCard .cardHead .badge {
	padding: 4px 12px;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	font-size: 13px;
}
.gateCard .cardBody {
	padding: 24px;
}
.gateCard .imgBox {
	text-align: center;
	margin-bottom: 22px;
}
.gateCard .imgBox img {
	max-width: 100%;
	max-height: 420px;
	border-radius: 8px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
	object-fit: contain;
}
.gateCard .imgBox .multiImg {
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}
.gateCard .imgBox .multiImg img {
	max-height: 320px;
}

/* 参数表 */
.specTable {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #e6eef3;
}
.specTable th {
	background: #eef6fb;
	color: #0a5e8c;
	font-weight: 700;
	padding: 12px 16px;
	text-align: left;
	width: 130px;
	border-bottom: 1px solid #dde9f0;
	white-space: nowrap;
}
.specTable td {
	padding: 12px 16px;
	color: #444;
	line-height: 1.7;
	border-bottom: 1px solid #eef2f5;
	background: #fff;
}
.specTable tr:last-child th,
.specTable tr:last-child td {
	border-bottom: none;
}
.specTable tr:nth-child(even) td {
	background: #fafcfd;
}
.specTable tr:hover td {
	background: #f0f8fc;
}

/* 底部说明 */
.gateFootNote {
	text-align: center;
	padding: 30px 0 50px;
	color: #999;
	font-size: 13px;
	line-height: 1.8;
}
.gateFootNote .fnCompany {
	color: #0a5e8c;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 6px;
}

@media (max-width: 768px) {
	.gateBanner {
		height: 260px;
	}
	.gateBanner .bannerInner {
		padding-top: 50px;
	}
	.gateBanner h1 {
		font-size: 30px;
	}
	.gateBanner .subTitle {
		font-size: 16px;
	}
	.gateCard .cardHead .modelName {
		font-size: 17px;
	}
	.gateCard .cardBody {
		padding: 16px;
	}
	.specTable th {
		width: 96px;
		padding: 10px;
	}
	.specTable td {
		padding: 10px;
	}

}