/* ===== 9+ 细分行业解决方案（横向滑动卡片） ===== */
.industry-scroll-section {
  padding: 4rem 0 3rem;
  background: #fff;
  overflow: hidden;
}

.industry-scroll-section .industry-scroll-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 2.5rem;
  line-height: 1.3;
}

.industry-scroll-section .industry-scroll-wrap {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  padding: 0.5rem 0 1.5rem;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.industry-scroll-section .industry-scroll-wrap:active {
  cursor: grabbing;
}

.industry-scroll-section .industry-scroll-wrap::-webkit-scrollbar {
  height: 6px;
}

.industry-scroll-section .industry-scroll-wrap::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.industry-scroll-section .industry-scroll-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  min-width: 100%;
  padding: 0 max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  box-sizing: border-box;
}

.industry-scroll-section .industry-scroll-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 300px;
  width: 300px;
  max-width: 300px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.industry-scroll-section .industry-scroll-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.industry-scroll-section .industry-scroll-img {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.industry-scroll-section .industry-scroll-img img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  vertical-align: top;
  border: 0;
}

.industry-scroll-section .industry-scroll-body {
  flex: 1;
  padding: 1.25rem 1.25rem 1.5rem;
  min-height: 180px;
  box-sizing: border-box;
}

.industry-scroll-section .industry-scroll-body.tone-cyan {
  background: #e8f8fc;
}

.industry-scroll-section .industry-scroll-body.tone-green {
  background: #ecfdf5;
}

.industry-scroll-section .industry-scroll-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.industry-scroll-section .industry-scroll-body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.industry-scroll-section .industry-scroll-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.industry-scroll-section .industry-scroll-more {
  font-size: 0.9375rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.industry-scroll-section .industry-scroll-more:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .industry-scroll-section {
    padding: 3rem 0 2rem;
  }

  .industry-scroll-section .industry-scroll-title {
    margin-bottom: 1.75rem;
    padding: 0 1rem;
  }

  .industry-scroll-section .industry-scroll-track {
    padding: 0 1rem;
    gap: 1rem;
  }

  .industry-scroll-section .industry-scroll-wrap {
    scroll-padding-left: 1rem;
  }

  .industry-scroll-section .industry-scroll-card {
    flex: 0 0 280px;
    width: 280px;
    max-width: 280px;
  }

  .industry-scroll-section .industry-scroll-img {
    height: 160px;
  }

  .industry-scroll-section .industry-scroll-body {
    min-height: auto;
    padding: 1rem 1rem 1.25rem;
  }
}
