/* ==================== 典型场景功能列表 ==================== */

/* 功能列表容器 */
.scenario-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.product-advantage-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}
.scenario-section {
    background-color: #F8FAFC;
}
.product-advantage-section {
    background-color: #ffffff;
}
/* 功能项 */
.scenario-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* 功能项图标 */
.scenario-feature-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* 功能项文字 */
.scenario-feature-text {
	font-size: 15px;
	color: #374151;
}
.product-architecture-section {
	background-color: #F8FAFC;
}
.product-showcase-section {
	background-color: #ffffff;
}
.product-architecture-image img {
	width: 80%;
	margin: 0 auto;
	padding: 20px 0;
}
/* 响应式适配 */
@media screen and (max-width: 768px) {
	.product-architecture-image img {
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}

	.gov-pc-text-desc {
		text-align: left !important;
	}
	.scenario-left {
		align-items: center !important;
	}
  .product-advantage-grid {
	  grid-template-columns: 1fr !important;
	}
	.scenario-content-title {
		text-align: center;
	}

	.scenario-content-desc {
		text-align: left;
	}

	.scenario-features {
		gap: 10px;
		align-items: flex-start;
		width: 100%;
	}

	.scenario-feature {
		gap: 8px;
		justify-content: flex-start;
		width: 100%;
	}

	.scenario-feature-icon {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
	}

	.scenario-feature-text {
		font-size: 13px;
		text-align: left;
		flex: 1;
	}
}
