.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;
  }
}