
/* 产品展示模块 */
.product-showcase-section {
	background-color: #F8FAFC;
}
.product-showcase-container {
}
/* 头部样式使用base.css中的.lsd-module-header */
.product-showcase-title {
	font-weight: bold;
	color: #111827;
	margin-bottom: 12px;
}
.product-showcase-subtitle {
	color: #6B7280;
}
/* Tab导航 */
.product-showcase-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	border-bottom: 1px solid #E5E7EB;
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	margin-bottom: 48px;
}
.product-showcase-tab-arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #9CA3AF;
	flex-shrink: 0;
	transition: all 0.3s ease;
}
.product-showcase-tab-arrow.active {
	color: #0069EA;
}
.product-showcase-tab-arrow.disabled {
	color: #9CA3AF;
	cursor: not-allowed;
	opacity: 0.5;
}
.product-showcase-tab-arrow svg {
	width: 20px;
	height: 20px;
}
.product-showcase-tab-list {
	display: flex;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	max-width: calc(100% - 64px);
}
.product-showcase-tab-list::-webkit-scrollbar {
	display: none;
}
.product-showcase-tab {
	padding: 16px 24px;
	cursor: pointer;
	white-space: nowrap;
	color: #6B7280;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.product-showcase-tab:hover {
	color: #111827;
	transform: translateY(-2px);
}
.product-showcase-tab.active {
	color: #0069EA;
	border-bottom-color: #0069EA;
}
.lsd-honor {
  background: #f8fafc;
}
/* 内容区 */
.product-showcase-content {
	position: relative;
	min-height: 320px;
}
.product-showcase-item {
	display: none;
	gap: 48px;
	align-items: center;
	justify-content: center;
}
.product-showcase-item.active {
	display: flex;
}
.product-showcase-left {
	width: 502px;
	flex-shrink: 0;
}
.product-showcase-content-title {
	font-weight: bold;
	color: #111827;
	margin-bottom: 16px;
}
.product-showcase-content-desc {
	color: #6B7280;
	line-height: 1.6;
	margin-bottom: 24px;
}
.product-showcase-features {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.product-showcase-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}
.product-showcase-feature-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}
.product-showcase-feature-icon path {
	fill: #0069EA;
}
.product-showcase-feature-text {
	color: #374151;
}
.product-showcase-right {
	width: 536px;
	flex-shrink: 0;
}
.product-showcase-image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: all 0.5s ease;
}

.product-showcase-right:hover .product-showcase-image {
	transform: scale(1.1);
}
/* 轮播指示器 */
.product-showcase-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 48px;
}
.product-showcase-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #D1D5DB;
	cursor: pointer;
	transition: all 0.3s ease;
}
.product-showcase-dot.active {
	width: 10px;
	height: 10px;
	background-color: #0069EA;
}

/* 典型场景模块 */
.scenario-section {
	padding: 60px 0;
	background: #fff;
}
.scenario-container {
}
/* 头部样式使用base.css中的.lsd-module-header */
.scenario-title {
	font-weight: bold;
	color: #111827;
	margin-bottom: 12px;
}
.scenario-subtitle {
	color: #6B7280;
}
.scenario-tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	border-bottom: 1px solid #E5E7EB;
	margin-bottom: 32px;
}
.scenario-tab {
	padding: 16px 32px;
	cursor: pointer;
	white-space: nowrap;
	color: #6B7280;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}
.scenario-tab:hover {
	color: #111827;
	transform: translateY(-2px);
}
.scenario-tab.active {
	color: #0069EA;
	border-bottom-color: #0069EA;
	font-weight: 600;
}
.scenario-content {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: center;
}
.scenario-item {
	display: none;
	gap: 40px;
	align-items: center;
	justify-content: center;
	flex-direction: row-reverse;
}
.scenario-item.active {
	display: flex;
}
.scenario-left {
	width: 490px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.scenario-content-title {
	font-weight: bold;
	color: #111827;
}
.scenario-content-desc {
	color: #6B7280;
	line-height: 1.7;
}
.scenario-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	background: #0069EA;
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	width: fit-content;
}
.scenario-btn:hover {
	background: #0052cc;
}
.scenario-right {
	width: 658px;
	flex-shrink: 0;
}
.scenario-image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: all 0.5s ease;
}

.scenario-right:hover .scenario-image {
	transform: scale(1.1);
}
.scenario-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 32px;
}
.scenario-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #D1D5DB;
	cursor: pointer;
	transition: all 0.3s ease;
}
.scenario-dot.active {
	width: 10px;
	height: 10px;
	background: #0069EA;
}

/* 产品优势模块 */
.product-advantage-section {
	background-color: #F8FAFC;
}
/* 头部样式使用base.css中的.lsd-module-header */
.product-advantage-title {
	font-weight: bold;
	color: #111827;
	margin-bottom: 12px;
}
.product-advantage-subtitle {
	color: #6B7280;
}
.product-advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}
.product-advantage-card {
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.product-advantage-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
	border-color: #0069EA;
}
.product-advantage-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
}
.product-advantage-num {
	width: 36px;
	height: 36px;
	background: #EBF5FF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0069EA;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
}
.product-advantage-card-title {
	font-weight: bold;
	color: #111827;
}
.product-advantage-card-desc {
	color: #6B7280;
	line-height: 1.6;
}
/* 图片查看器样式 */
.viewer-img {
  cursor: pointer;
  height: 100%;
}
/* 产品架构模块 */
.product-architecture-section {
}
/* 头部样式使用base.css中的.lsd-module-header */
.product-architecture-image {
	background: #fff;
	border-radius: 16px;
	border: 1px solid #E5E7EB;
	overflow: hidden;
}
.product-architecture-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.5s ease;
}

.product-architecture-image:hover img {
	transform: scale(1.1);
}
/* 荣誉资质展示条 */
.product-honor-bar {
	background: #fff;
	border-radius: 12px;
	padding: 20px 32px;
	margin-top: 32px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.product-honor-list {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	justify-content: center;
}
.product-honor-item .viewer-img {
	cursor: auto !important;
}
.product-honor-item {
	height: 70px;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-honor-item img {
	height: 100%;
	object-fit: contain;
}
.product-honor-more {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #0069EA;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
}
.product-honor-more:hover {
	color: #0052cc;
}

/* 龙石数据治理方法论模块 */
.product-method-section {
	background-color: #F8FAFC;
}
.product-method-container {
}
/* 头部样式使用base.css中的.lsd-module-header */
.product-method-title {
	font-weight: bold;
	color: #111827;
	margin-bottom: 12px;
}
.product-method-subtitle {
	color: #6B7280;
}
.product-method-content {
	display: flex;
	gap: 40px;
	align-items: center;
}
.product-method-left {
	width: 480px;
	flex-shrink: 0;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	overflow: hidden;
}
.product-method-step {
	display: flex;
	gap: 12px;
	padding: 16px 20px;
	background-color: #F0F7FF;
}
.product-method-step:first-child {
	border-radius: 8px 8px 0 0;
}
.product-method-step:last-child {
	border-radius: 0 0 8px 8px;
}
.product-method-step-num {
	width: 32px;
	height: 32px;
	background-color: #0069EA;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	flex-shrink: 0;
}
.product-method-step-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.product-method-step-title {
	font-weight: 600;
	color: #111827;
}
.product-method-step-desc {
	color: #6B7280;
	line-height: 1.5;
}
.product-method-right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	overflow: hidden;
}
.product-method-right picture {
	display: block;
	width: 100%;
}
.product-method-image {
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 12px;
	transition: all 0.5s ease;
}

.product-method-right:hover .product-method-image {
	transform: scale(1.1);
}

/* 数据应用常见痛点模块 */
.product-pain-section {
}
.product-pain-container {
	margin: 0 auto;
}
/* 头部样式使用base.css中的.lsd-module-header */
.product-pain-title {
	font-weight: bold;
	color: #111827;
	margin-bottom: 12px;
}
.product-pain-subtitle {
	color: #6B7280;
}
.product-pain-grid {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.product-pain-item {
	width: calc((100% - 60px) / 5);
	background-color: #FFFFFF;
	border-radius: 16px;
	padding: 32px 24px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s ease;
}

.product-pain-item:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.product-pain-icon {
	width: 64px;
	height: 64px;
	background-color: #F0F7FF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.product-pain-icon svg {
	width: 32px;
	height: 32px;
	color: #0069EA;
}
.product-pain-item-title {
	font-weight: 600;
	color: #111827;
	padding: 15px 0;
}
.product-pain-item-desc {
	color: #6B7280;
	line-height: 1.5;
	text-align: left;
}
/* 产品的典型模块是白色背景 */
.lsd-customer-cases {
	background-color: #FFFFFF;
}
.lsd-case-btns-dxal {
	width: 80px;
}
@media screen and (max-width: 768px) {
	.lsd-case-btns-dxal {
		width: 90px;
	}
	/* 痛点模块手机端适配 */
	/* padding和标题字体大小使用base.css中的.lsd-section-mobile等class */
	.product-pain-grid {
		gap: 12px;
	}
	.product-pain-item {
		width: calc(50% - 15px);
		padding: 16px;
		gap: 12px;
	}
	.product-pain-icon {
		width: 40px;
		height: 40px;
	}
	.product-pain-icon svg {
		width: 20px;
		height: 20px;
	}
	.product-pain-item-title.lsd-fs-18 {
		font-size: 14px;
	}
	.product-pain-item-desc.lsd-fs-14 {
		font-size: 12px;
	}
	/* 产品展示模块手机端适配 */
	/* padding和标题字体大小使用base.css中的.lsd-section-mobile等class */
	.product-showcase-tabs {
		margin-bottom: 24px;
	}
	.product-showcase-tab {
		padding: 12px 16px;
		font-size: 14px;
	}
	.product-showcase-item.active {
		flex-direction: column;
		gap: 24px;
	}
	.product-showcase-left {
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.product-showcase-content-desc {
		text-align: left;
		width: 100%;
	}
	.product-showcase-features {
		align-items: flex-start;
		width: 100%;
	}
	.product-showcase-feature-icon {
		width: 12px;
		height: 12px;
	}
	.product-showcase-feature {
		justify-content: flex-start;
		align-items: baseline;
	}
	.product-showcase-feature-text {
		text-align: left;
	}
	.product-showcase-content-title.lsd-fs-24 {
		font-size: 18px;
	}
	.product-showcase-content-desc.lsd-fs-15 {
		font-size: 14px;
	}
	.product-showcase-feature {
		justify-content: center;
	}
	.product-showcase-right {
		width: 100%;
	}
	.product-showcase-dots {
		margin-top: 24px;
	}
	/* 典型场景模块手机端适配 */
	/* padding和标题字体大小使用base.css中的.lsd-section-mobile等class */
	.scenario-section {
		overflow: hidden;
	}
	.scenario-container {
		padding: 0;
		max-width: 100%;
	}
	.scenario-subtitle.lsd-fs-16 {
		font-size: 12px;
	}
	.scenario-tabs {
		margin-bottom: 24px;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
		width: 100%;
		justify-content: flex-start;
		padding: 0 15px;
		box-sizing: border-box;
	}
	.scenario-tabs::-webkit-scrollbar {
		display: none;
	}
	.scenario-tab {
		padding: 12px 16px !important;
		font-size: 14px !important;
		flex-shrink: 0;
	}
	.scenario-content {
		width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}
	.scenario-item.active {
		flex-direction: column;
		gap: 24px;
		width: 100%;
	}
	.scenario-left {
		width: 100%;
		text-align: center;
		align-items: center;
		padding: 0;
	}
	.scenario-content-title.lsd-fs-24 {
		font-size: 14px;
	}
	.scenario-content-desc.lsd-fs-15 {
		font-size: 12px;
		text-align: left;
		width: 100%;
		word-wrap: break-word;
	}
	.scenario-btn {
		padding: 12px 24px;
		font-size: 12px;
	}
	.scenario-right {
		width: 100%;
		padding: 0;
	}
	.scenario-image {
		width: 100%;
		height: auto;
	}
	.scenario-dots {
		margin-top: 24px;
	}
	/* 头部样式使用base.css中的.lsd-module-header */
	.scenario-title {
		font-weight: bold;
		color: #111827;
		margin-bottom: 12px;
	}
	.scenario-subtitle {
		color: #6B7280;
	}
	.scenario-tabs {
		display: flex;
		align-items: center;
		gap: 0;
		border-bottom: 1px solid #E5E7EB;
		margin-bottom: 32px;
	}
	.scenario-tab {
		padding: 16px 32px;
		cursor: pointer;
		white-space: nowrap;
		color: #6B7280;
		border-bottom: 2px solid transparent;
		transition: all 0.3s ease;
	}
	.scenario-tab:hover {
		color: #111827;
		transform: translateY(-2px);
	}
	.scenario-tab.active {
		color: #0069EA;
		border-bottom-color: #0069EA;
		font-weight: 600;
	}
	.scenario-content {
		display: flex;
		gap: 40px;
		align-items: center;
		justify-content: center;
	}
	.scenario-item {
		display: none;
		gap: 40px;
		align-items: center;
		justify-content: center;
	}
	.scenario-item.active {
		display: flex;
	}
	.scenario-left {
		display: flex;
		flex-direction: column;
	}
	.scenario-content-title {
		font-weight: bold;
		color: #111827;
	}
	.scenario-content-desc {
		color: #6B7280;
		line-height: 1.7;
	}
	.scenario-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 14px 32px;
		background: #0069EA;
		color: #fff;
		border-radius: 8px;
		font-weight: 600;
		text-decoration: none;
		transition: all 0.3s ease;
		width: fit-content;
	}
	.scenario-btn:hover {
		background: #0052cc;
	}
	.scenario-right {
		width: 100%;
		flex-shrink: 0;
	}
	.scenario-image {
		width: 100%;
		border-radius: 12px;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	}
	.scenario-dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
		margin-top: 32px;
	}
	.scenario-dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #D1D5DB;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	.scenario-dot.active {
		width: 10px;
		height: 10px;
		background: #0069EA;
	}
	
	/* 产品优势模块手机端适配 */
	/* padding和标题字体大小使用base.css中的.lsd-section-mobile等class */
	.product-advantage-subtitle.lsd-fs-16 {
		font-size: 12px;
	}
	.product-advantage-grid {
		grid-template-columns: 1fr !important;
		gap: 12px;
	}
	.product-advantage-card {
		padding: 20px;
	}
	.product-advantage-card-title.lsd-fs-18 {
		font-size: 14px;
	}
	.product-advantage-card-desc.lsd-fs-14 {
		font-size: 12px;
	}
	/* 荣誉资质展示条手机端适配 */
	.product-honor-bar {
		padding: 16px;
		margin-top: 24px;
		flex-direction: column;
		gap: 16px;
	}
	.product-honor-list {
		gap: 12px;
		flex-wrap: wrap;
	}
	.product-honor-item {
		width: 80px;
		height: 56px;
	}
	/* 产品架构模块手机端适配 */
	/* padding和标题字体大小使用base.css中的.lsd-section-mobile等class */
	/* 头部样式使用base.css中的.lsd-module-header */
	.product-architecture-image {
		border-radius: 12px;
	}

	/* 方法论模块手机端适配 */
	/* padding和标题字体大小使用base.css中的.lsd-section-mobile等class */
	.product-method-content {
		flex-direction: column;
		gap: 24px;
	}
	.product-method-left {
		width: 100%;
	}
	.product-method-step-title.lsd-fs-16 {
		font-size: 14px;
	}
	.product-method-step-desc {
		font-size: 12px;
	}
	.product-method-right {
		width: 100%;
	}
}