.product-pain-item {
  width: calc((100% - 30px) / 3);
}

/* ==================== 从提问到结果的智能流程 ==================== */
.product-method-left {
    border: none !important;
}
/* 左侧内容区域 */
.product-method-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 617px;
  padding-left: 24px;
}

/* 左侧内容项 */
.product-method-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 左侧内容项头部（图标+标题） */
.product-method-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 左侧内容项图标 */
.product-method-item-icon {
  width: 20px;
  height: 20px;
  color: #0069ea;
  flex-shrink: 0;
}

/* 左侧内容项标题 */
.product-method-item-title {
  color: #111827;
  font-weight: bold;
}

/* 左侧内容项描述 */
.product-method-item-desc {
  color: #6B7280;
  line-height: 1.6;
  width: 477px;
}

/* 响应式适配 */
@media screen and (max-width: 1200px) {
  .product-method-left {
    width: 100%;
    padding-left: 0;
  }

  .product-method-item-desc {
    width: 100%;
  }
}
.product-architecture-image img{
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .product-method-left {
    gap: 20px;
  }
  .product-architecture-image img{
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .product-method-item {
    gap: 8px;
  }
  .product-method-item-title {
    font-size: 14px;
  }
  .product-method-item-desc {
    font-size: 12px;
  }

  .product-method-item-icon {
    width: 16px;
    height: 16px;
  }
}

/* ==================== 典型场景 AI 功能列表 ==================== */

/* AI 功能列表容器 */
.scenario-ai-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* AI 功能项 */
.scenario-ai-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* AI 功能行（箭头+文字） */
.scenario-ai-feature-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* AI 功能标题（找资源/问数据/问功能） */
.scenario-ai-feature-title {
  font-size: 16px;
  font-weight: bold;
}
.product-showcase-tab-arrow {
    display: none;
}
/* AI 功能描述 */
.scenario-ai-feature-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
  .product-pain-item {
    width: 100%;
  }
  .scenario-ai-features {
    gap: 12px;
  }

  .scenario-ai-feature {
    gap: 6px;
  }

  .scenario-ai-feature-row {
    gap: 6px;
  }

  .scenario-ai-feature-title {
    text-align: left;
    font-size: 14px;
  }

  .scenario-ai-feature-desc {
    text-align: left;
    font-size: 12px;
  }
}

/* ==================== Banner视频预览模块 ==================== */
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
  height: 100%;
}
/* Banner右侧视频区域 */
.gov-pc-text-right {
	display: flex;
	align-items: center;
  position: relative;
  z-index: 9;
	justify-content: center;
}

/* ==================== 四个指标卡片 ==================== */
.lsd-ai-indicator {
	position: absolute;
	/* background: rgba(255, 255, 255, 0.85); */
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 5px;
	padding: 8px 8px;
  display: none;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 80, 200, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.7);
	z-index: 10;
}
.lsd-ai-indicator-icon {
	margin-bottom: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lsd-ai-indicator-label {
	font-size: 13px;
	margin-bottom: 4px;
}
.lsd-ai-indicator-value {
	font-size: 15px;
	font-weight: 700;
	color: #2B7FFF;
	line-height: 1.2;
}
.lsd-ai-indicator-arrow {
	font-size: 18px;
	font-weight: 700;
}
.lsd-ai-indicator-arrow.up {
	color: #2B7FFF;
}
.lsd-ai-indicator-arrow.down {
	color: #2B7FFF;
}
/* 指标卡1：问题准确率 - 中上 */
.lsd-ai-indicator-1 {
	top: 80px;
	left: 48%;
}
/* .lsd-ai-indicator-1::before {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 40px;
	height: 40px;
	border-top: 2px solid rgba(255, 255, 255, 0.9);
	border-left: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 5px 0 0 0;
	box-shadow: -2px -2px 8px rgba(200, 230, 255, 0.5);
	pointer-events: none;
} */
/* 指标卡2：平均响应时间 - 右上 */
.lsd-ai-indicator-2 {
	top: 80px;
	left: 90.8%;
  display: none;
}
/* 指标卡3：知识库覆盖 - 中下 */
.lsd-ai-indicator-3 {
	bottom: 40px;
	left: 48%;
  display: none;
}
/* 指标卡4：数据资产 - 右下 */
.lsd-ai-indicator-4 {
	bottom: 90px;
	left: 90.8%;
  display: none;
}

/* 视频预览容器 */
.lsd-ai-video-preview {
	position: relative;
	width: 455px;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow 0.3s ease;
	/* 毛玻璃外框 */
	padding: 12px;
	/* background: linear-gradient(180deg, rgba(200, 225, 255, 0.45) 0%, rgba(160, 205, 255, 0.55) 100%); */
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.3) !important;
	/* box-shadow: 0 8px 32px rgba(0, 105, 234, 0.18), 0 0 60px rgba(100, 180, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5); */
}
.lsd-ai-video-preview::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 3px;
	height: 60px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(200, 230, 255, 0.6) 60%, rgba(255, 255, 255, 0) 100%);
	border-radius: 0 2px 2px 0;
	box-shadow: 0 0 8px 2px rgba(200, 230, 255, 0.5), 0 0 4px rgba(255, 255, 255, 0.6);
	z-index: 2;
	pointer-events: none;
}
.lsd-ai-video-preview:hover {
	box-shadow: 0 12px 40px rgba(0, 105, 234, 0.25), 0 0 80px rgba(100, 180, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.lsd-ai-video-preview video {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}
.gov-pc-text-desc {
  max-width: 100% !important;
}
/* 播放按钮图标 */
.lsd-ai-video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 56px;
	height: 56px;
	background: rgba(0, 105, 234, 0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	transition: background 0.3s ease, transform 0.3s ease;
	pointer-events: none;
  display: none;
}
.lsd-ai-video-preview:hover .lsd-ai-video-play-btn {
	background: rgba(0, 105, 234, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

/* ==================== 视频全屏弹窗 ==================== */

/* 弹窗容器 */
.lsd-ai-video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10001;
	display: none;
	align-items: center;
	justify-content: center;
}
.lsd-ai-video-modal--active {
	display: flex;
}

/* 遗罩背景 */
.lsd-ai-video-modal-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}

/* 弹窗内容区 */
.lsd-ai-video-modal-content {
	position: relative;
	width: 80%;
	max-width: 960px;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	flex-shrink: 0;
}
.lsd-ai-video-modal-content video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
	display: block;
}

/* 关闭按钮 */
.lsd-ai-video-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s ease;
}
.lsd-ai-video-modal-close:hover {
	background: rgba(0, 0, 0, 0.85);
}

/* 手朼端适配 */
@media screen and (max-width: 768px) {
	.lsd-ai-video-preview {
		width: 100%;
		margin-top: 20px;
	}
	.lsd-ai-video-modal-content {
		width: 95%;
	}
	.lsd-ai-video-play-btn {
		width: 44px;
		height: 44px;
	}
	.lsd-ai-video-play-btn svg {
		width: 24px;
		height: 24px;
	}
}