/* 行业案例 — 主色 #00378b + 辅色 #00aa1a */
.industry-cases-page {
  --ic-primary: var(--theme-default-color, #00378b);
  --ic-primary-dark: var(--home-color-primary-dark, #002a6b);
  --ic-accent: var(--color-accent-green, #00aa1a);
  --ic-primary-soft: color-mix(in srgb, var(--ic-primary) 10%, #fff);
  --ic-accent-soft: rgba(0, 170, 26, 0.12);
  --ic-text: rgba(0, 0, 0, 0.9);
  --ic-text-muted: rgba(0, 0, 0, 0.6);
  --ic-container: var(--site-content-shell);
  --ic-header-offset: 80px;
  --ic-subnav-height: 64px;
}

.industry-cases-page main.site-main {
  padding-top: 0;
}

/* 顶栏叠放：未滚动时白字，当前菜单高亮 */
body.industry-cases-page .site-header .site-header__nav-link[data-route*='industry'] {
  color: var(--ic-primary);
}

body.industry-cases-page .site-header:not(.is-scrolled):not(.is-hovering-nav) .site-header__nav-link[data-route*='industry'] {
  color: var(--ic-primary);
}

.ic-main {
  background: #fff;
  color: var(--ic-text);
}

/* 顶部 Hero — 贴顶、在菜单下层 */
.ic-hero {
  position: relative;
  width: 100%;
  min-height: var(--site-page-hero-min-height, 72vh);
  overflow: hidden;
  color: #fff;
  background: var(--ic-primary-dark);
}

@supports (height: 100dvh) {
  .ic-hero {
    min-height: var(--site-page-hero-min-height, 72dvh);
  }
}

.ic-hero__media {
  position: absolute;
  inset: 0;
}

.ic-hero__bg,
.ic-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.ic-hero__bg {
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}

.ic-hero__bg--fallback {
  background: var(--ic-primary-dark);
}

.ic-hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  width: var(--ic-container);
  margin: 0 auto;
  padding: calc(var(--ic-header-offset) + 24px) 0 56px;
}

.ic-hero__content {
  max-width: 760px;
}

.ic-hero__content::before {
  content: "Solutions";
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 170, 26, 0.45);
  background: rgba(0, 55, 139, 0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8f5c8;
}

.ic-hero__content h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 6px 24px rgba(0, 0, 0, 0.35);
}

.ic-hero__content p {
  margin: 0;
  max-width: 640px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.42),
    0 4px 16px rgba(0, 0, 0, 0.28);
}

@media (max-width: 767px) {
  .ic-hero__container {
    align-items: flex-end;
    padding: calc(var(--ic-header-offset) + 16px) 0 40px;
    text-align: left;
  }

  .ic-hero__bg,
  .ic-hero__video,
  .ic-hero__bg {
    object-position: center 68%;
    background-position: center 68%;
  }
}

@media (min-width: 968px) {
  .ic-hero__container {
    justify-content: center;
    text-align: center;
    padding-bottom: 64px;
  }

  .ic-hero__content {
    margin: 0 auto;
  }

  .ic-hero__content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* 列表区 — 与新闻 news-list-wrap / 案例 cs-list-wrap 一致 */
.ic-list-wrap {
  background: #eef2f7;
  padding: 36px 0 80px;
}

.ic-list-inner {
  width: var(--ic-container);
  margin: 0 auto;
}

/* 分类 Tab — 与新闻 news-category-tabs 一致 */
.ic-category-tabs {
  position: sticky;
  top: var(--ic-header-offset);
  z-index: 20;
  margin: 0 0 8px;
  background: transparent;
}

.ic-category-tabs__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0 24px;
  scrollbar-width: none;
}

.ic-category-tabs__track::-webkit-scrollbar {
  display: none;
}

.ic-category-tabs__btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.25;
  border-radius: 4px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ic-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.ic-category-tabs__btn:hover:not(.is-active) {
  color: var(--ic-primary);
}

.ic-category-tabs__btn.is-active,
.ic-category-tabs__btn.is-active:hover,
.ic-category-tabs__btn.is-active:focus-visible {
  background: var(--ic-primary);
  color: #fff;
  border-color: var(--ic-primary);
  font-weight: 500;
  box-shadow: 0 6px 16px rgba(0, 55, 139, 0.18);
}

.ic-body {
  position: relative;
  z-index: 10;
  background: #fff;
}

/* 方案模块列表 — 统一卡片，与客户案例 cs-card 节奏一致 */
.ic-list {
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ic-block {
  scroll-margin-top: calc(var(--ic-header-offset) + 72px);
}

.ic-block__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--ic-primary) 10%, #e5e7eb);
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ic-block__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ic-accent);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.ic-block__inner:hover {
  border-color: color-mix(in srgb, var(--ic-primary) 22%, transparent);
  box-shadow: 0 14px 36px rgba(0, 55, 139, 0.12);
  transform: translateY(-2px);
}

.ic-block__inner:hover::before {
  opacity: 1;
}

.ic-block__media-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f7fbff;
}

.ic-block__media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 170, 26, 0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.ic-block__inner:hover .ic-block__media-wrap::after {
  opacity: 1;
}

.ic-block__media-wrap .ic-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
  filter: saturate(1.08) brightness(1.06);
}

.ic-block__inner:hover .ic-block__img {
  transform: scale(1.03);
}

.ic-block__media-wrap--empty {
  min-height: 200px;
  background: #f0f6ff;
}

.ic-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 24px 28px;
  background: #fff;
}

.ic-block__label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ic-accent);
  background: var(--ic-accent-soft);
  border: 1px solid rgba(0, 170, 26, 0.22);
  border-radius: 999px;
}

.ic-block__content h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ic-text);
  margin: 0 0 12px;
  transition: color 0.2s ease;
}

.ic-block__inner:hover .ic-block__content h2 {
  color: var(--ic-primary-dark);
}

.ic-block__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ic-text-muted);
  margin: 0;
  flex: 1;
}

.ic-block__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 8px 14px 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ic-primary);
  background: color-mix(in srgb, var(--ic-primary) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--ic-primary) 24%, transparent);
  border-radius: 6px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    gap 0.2s ease;
}

.ic-block__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ic-primary) 14%, #fff);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ic-block__cta-arrow {
  width: 10px;
  height: 10px;
}

.ic-block__inner:hover .ic-block__cta,
.ic-block__cta:focus-visible {
  color: #fff;
  background: var(--ic-primary);
  border-color: var(--ic-primary);
  box-shadow: 0 8px 20px rgba(0, 55, 139, 0.24);
  gap: 12px;
}

.ic-block__inner:hover .ic-block__cta-icon,
.ic-block__cta:focus-visible .ic-block__cta-icon {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

@media (min-width: 968px) {
  .ic-list {
    gap: 32px;
  }

  .ic-block__inner {
    grid-template-columns: 1.08fr 0.92fr;
    min-height: 300px;
  }

  .ic-block:nth-child(even) .ic-block__media-wrap {
    order: 2;
  }

  .ic-block:nth-child(even) .ic-block__content {
    order: 1;
  }

  .ic-block__media-wrap {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .ic-block__content {
    padding: 36px 40px;
  }

  .ic-block__content h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .ic-block__content p {
    font-size: 16px;
  }

  .ic-block__cta {
    margin-top: 24px;
  }
}

/* 详情页 — 对齐普渡 solutions 详情结构 */
body.industry-cases-detail .site-header:not(.is-scrolled):not(.is-hovering-nav) .site-header__nav-link[data-route*='industry'] {
  color: rgba(255, 255, 255, 0.92);
}

.industry-cases-detail {
  --ic-detail-container: var(--site-content-shell);
  --ic-band-pad-y: 48px;
  --ic-scene-pad-y: 40px;
  --ic-pdbg: #f7f9fc;
}

@media (min-width: 1024px) {
  .industry-cases-detail {
    --ic-band-pad-y: 64px;
    --ic-scene-pad-y: 56px;
  }
}

.ic-detail {
  background: #fff;
  color: var(--ic-text);
}

.ic-detail-container {
  width: var(--ic-detail-container);
  margin-left: auto;
  margin-right: auto;
}

/* 二级导航：首屏 Banner 下方，上滑吸顶至主菜单下缘（仅桌面） */
.ic-subnav {
  display: none;
}

@media (min-width: 1024px) {
  .ic-subnav {
    display: block;
    position: sticky;
    top: var(--ic-header-offset);
    z-index: 25;
  }
}

.ic-subnav__bar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.ic-subnav__inner {
  min-height: 48px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ic-subnav__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  cursor: default;
}

.ic-subnav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ic-subnav__links a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ic-text-muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.ic-subnav__links a.is-active {
  font-weight: 600;
  color: var(--ic-primary);
  box-shadow: inset 0 -2px 0 var(--ic-accent);
}

.ic-subnav__links a:hover {
  background: var(--ic-primary);
  color: #fff;
}

/* Hero */
.ic-detail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  color: #0f172a;
  background: #f7fbff;
}

@media (min-width: 1024px) {
  .ic-detail-hero {
    aspect-ratio: 16 / 9;
  }
}

.ic-detail-hero__media-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ic-detail-hero__bg,
.ic-detail-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ic-detail-hero__bg {
  background-size: cover;
  background-position: center;
}

.ic-detail-hero__bg--fallback {
  background: var(--ic-primary);
}

.ic-detail-hero__carousel {
  position: absolute;
  inset: 0;
}

.ic-detail-hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ic-detail-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ic-detail-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ic-detail-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.ic-detail-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.ic-detail-hero__dots button {
  width: 16px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 55, 139, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}

.ic-detail-hero__dots button.is-active {
  width: 24px;
  background: var(--ic-accent);
}

.ic-detail-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .ic-detail-hero__content {
    align-items: center;
  }
}

.ic-detail-hero__copy {
  pointer-events: auto;
  padding: calc(var(--ic-header-offset) + 40px) 24px 48px;
  width: 100%;
}

@media (min-width: 1024px) {
  .ic-detail-hero__copy {
    padding: 24px;
    margin-top: 0;
  }
}

.ic-detail-hero__copy h1 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #0f172a;
}

@media (min-width: 1024px) {
  .ic-detail-hero__copy h1 {
    font-size: 42px;
    margin-bottom: 24px;
  }
}

.ic-detail-hero__copy p {
  margin: 0;
  max-width: 660px;
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
}

@media (min-width: 1024px) {
  .ic-detail-hero__copy p {
    font-size: 16px;
  }
}

/* 通用区块 */
.ic-band {
  padding: var(--ic-band-pad-y) 24px;
}

.ic-band--gray {
  background: var(--ic-pdbg);
}

.ic-band--white {
  background: #fff;
}

.industry-cases-detail .ic-band--coverage {
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .industry-cases-detail .ic-band--coverage {
    padding-bottom: 48px;
  }
}

.ic-band__title {
  margin: 0 0 32px;
  padding: 0;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}

.ic-band__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: var(--ic-accent);
}

@media (min-width: 1024px) {
  .industry-cases-detail .ic-band__title {
    margin-bottom: 40px;
    font-size: 42px;
  }
}

.ic-band__title--sm::after,
.ic-band__title--inline::after {
  display: none;
}

.ic-band__title--sm {
  margin-bottom: 0;
}

.ic-band__title--inline {
  margin-bottom: 0;
  text-align: left;
}

/* 数据指标 */
.ic-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .ic-stats-row {
    gap: 16px;
  }
}

.ic-stat-card {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 80px;
  padding: 16px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--ic-primary) 8%, #e5e7eb);
  border-radius: 12px;
}

@media (min-width: 1024px) {
  .ic-stat-card {
    flex: 1 1 calc(25% - 16px);
    max-width: 288px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    aspect-ratio: 1;
    padding: 32px 16px 28px;
    text-align: center;
  }
}

.ic-stat-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

@media (min-width: 1024px) {
  .ic-stat-card__icon {
    width: 96px;
    height: 96px;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.ic-stat-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ic-stat-card__text h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ic-text-muted);
}

@media (min-width: 1024px) {
  .ic-stat-card__text h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.ic-stat-card__text p {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ic-primary);
  word-break: break-all;
}

@media (min-width: 1024px) {
  .ic-stat-card__text p {
    font-size: 30px;
    text-align: center;
  }
}

.ic-stats-footnote {
  margin: 8px 0 0;
  padding: 0 24px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  text-align: left;
}

@media (min-width: 1024px) {
  .ic-stats-footnote {
    padding: 0;
    text-align: right;
  }
}

/* 场景覆盖 */
.ic-coverage-desc {
  margin: 16px 0 32px;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ic-text-muted);
  text-align: left;
}

@media (min-width: 1024px) {
  .industry-cases-detail .ic-coverage-desc {
    margin-top: 16px;
    margin-bottom: 40px;
    text-align: center;
    max-width: var(--ic-detail-container);
    margin-left: auto;
    margin-right: auto;
  }
}

.ic-coverage-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ic-coverage-visual {
    aspect-ratio: 16 / 9;
    padding: 0 48px;
    box-sizing: border-box;
  }
}

.ic-coverage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 场景模块 article */
.industry-cases-detail .ic-scene-band {
  padding-top: var(--ic-scene-pad-y);
  padding-bottom: var(--ic-scene-pad-y);
}

.industry-cases-detail .ic-scene-band + .ic-scene-band {
  padding-top: 0;
}

/* 场景区与「更多行业案例」同为灰底，去掉叠加大间距 */
.industry-cases-detail #ic-section-scenes + .ic-band--related {
  padding-top: 0;
}

.industry-cases-detail .ic-scene-band:last-child {
  padding-bottom: var(--ic-scene-pad-y);
}

.industry-cases-detail .ic-detail-body + .ic-band--related {
  padding-top: var(--ic-band-pad-y);
}

.ic-scene-article {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.ic-scene-article__title {
  width: 100%;
  margin: 0 0 24px;
  padding: 0 24px;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
}

.ic-scene-article__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--ic-accent);
}

@media (min-width: 1024px) {
  .industry-cases-detail .ic-scene-article__title {
    padding: 0;
    margin-bottom: 32px;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
  }

  .industry-cases-detail .ic-scene-article__title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

.ic-scene-article__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .ic-scene-article__row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    align-items: stretch;
  }
}

.ic-scene-article__media {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

@media (min-width: 1024px) {
  .ic-scene-article__row--split .ic-scene-article__media {
    min-height: 320px;
    padding-right: 8px;
  }

  .ic-scene-article__row:not(.ic-scene-article__row--split) .ic-scene-article__media {
    min-height: 400px;
  }
}

.ic-scene-carousel {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 240px;
  background: #e8eaed;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ic-scene-carousel {
    min-height: 320px;
  }
}

.ic-scene-carousel__viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ic-scene-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ic-scene-carousel__slide.is-active {
  opacity: 1;
}

.ic-scene-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ic-scene-carousel__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.ic-scene-carousel__label {
  position: absolute;
  left: 32px;
  bottom: 48px;
  z-index: 2;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.ic-scene-carousel__nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.ic-scene-carousel__arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.85) center / 8px 14px no-repeat;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ic-scene-carousel:hover .ic-scene-carousel__arrow {
  opacity: 1;
}

.ic-scene-carousel__arrow--prev {
  left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' fill='none'%3E%3Cpath d='M7 1 2 6l5 5' stroke='%23000' stroke-opacity='.6' stroke-width='1.5'/%3E%3C/svg%3E");
}

.ic-scene-carousel__arrow--next {
  right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='14' fill='none'%3E%3Cpath d='M1 1l5 5-5 5' stroke='%23000' stroke-opacity='.6' stroke-width='1.5'/%3E%3C/svg%3E");
}

.ic-scene-carousel__pagination {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.ic-scene-carousel__pagination button {
  width: 16px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.ic-scene-carousel__pagination button.is-active {
  background: var(--ic-accent);
}

.ic-scene-article__cards {
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 16px;
  height: auto;
}

@media (min-width: 1024px) {
  .ic-scene-article__cards {
    padding: 0 0 0 8px;
  }

  .ic-scene-article__cards--solo {
    grid-column: 1 / -1;
    padding: 0;
  }
}

.ic-scene-card {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  padding: 16px;
  background: #fff;
  height: auto;
}

@media (min-width: 1024px) {
  .ic-scene-card {
    padding: 32px 24px;
  }
}

.ic-scene-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.ic-scene-card--challenge::before {
  background: #f76719;
}

.ic-scene-card--advantage::before {
  background: var(--ic-accent);
}

.ic-scene-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .ic-scene-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.ic-scene-card__body {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--ic-text-muted);
  white-space: pre-line;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .ic-scene-card__body {
    font-size: 14px;
    color: var(--ic-text);
  }
}

.ic-scene-article__products {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  box-sizing: border-box;
  background: #fff;
}

@media (min-width: 1024px) {
  .ic-scene-article__products {
    margin-top: 16px;
    padding: 24px;
  }
}

.ic-scene-article__products-title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

@media (min-width: 1024px) {
  .ic-scene-article__products-title {
    font-size: 24px;
  }
}

.ic-scene-article__products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .ic-scene-article__products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.ic-product-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1024px) {
  .ic-product-row {
    flex-direction: row;
    gap: 16px;
  }
}

.ic-product-row__media {
  flex-shrink: 0;
  width: 100%;
  height: 220px;
  background: #f3f4f6;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ic-product-row__media {
    width: 186px;
    height: 220px;
  }
}

.ic-product-row__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ic-product-row__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}

.ic-product-row__body h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.ic-product-row__bullets {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ic-text-muted);
  white-space: pre-line;
}

@media (min-width: 1024px) {
  .ic-product-row__bullets {
    font-size: 14px;
  }
}

.ic-product-row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 14px;
  color: var(--ic-primary);
  text-decoration: none;
}

.ic-product-row__link:hover {
  color: var(--ic-accent);
  text-decoration: none;
}

.ic-product-row__link svg {
  flex-shrink: 0;
}

.ic-detail-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.ic-detail-body .prose {
  font-size: 16px;
  line-height: 1.75;
}

/* 更多行业案例 */
.industry-cases-detail .ic-related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .industry-cases-detail .ic-related-head {
    margin-bottom: 32px;
  }
}

.ic-related-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ic-primary);
  text-decoration: none;
}

.ic-related-more:hover {
  text-decoration: underline;
}

.ic-related-carousel {
  position: relative;
}

.ic-related-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ic-related-carousel__track::-webkit-scrollbar {
  display: none;
}

.ic-related-card {
  flex: 0 0 288px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: inherit;
  position: relative;
}

@media (min-width: 1024px) {
  .ic-related-card {
    flex: 0 0 440px;
  }
}

.ic-related-card__img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  background: #e5e7eb;
}

@media (min-width: 1024px) {
  .ic-related-card__img {
    height: 293px;
  }
}

.ic-related-card__img--placeholder {
  background: var(--ic-primary-soft);
}

.ic-related-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 16px 20px;
  position: relative;
}

@media (min-width: 1024px) {
  .ic-related-card__body {
    padding: 16px 24px 24px;
  }
}

.ic-related-card__body h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ic-related-card__body h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.ic-related-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ic-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

@media (min-width: 1024px) {
  .ic-related-card__body p {
    font-size: 14px;
  }
}

.ic-related-card__arrow {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 12px;
  margin-left: auto;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2300378b'/%3E%3Cpath d='M10 8l4 4-4 4' stroke='%23fff' stroke-width='1.5'/%3E%3C/svg%3E");
  opacity: 1;
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
  .ic-related-card__arrow {
    opacity: 0;
  }

  .ic-related-card:hover .ic-related-card__arrow {
    opacity: 1;
  }
}

.ic-related-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 24px;
}

.ic-related-carousel__btn {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: center / 12px 20px no-repeat;
  cursor: pointer;
  opacity: 0.9;
}

.ic-related-carousel__btn:disabled {
  opacity: 0.26;
  cursor: not-allowed;
}

.ic-related-carousel__btn--next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath d='M1 1l10 9-10 9' stroke='%2300378b' stroke-width='1.5'/%3E%3C/svg%3E");
}

.ic-related-carousel__btn--prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' fill='none'%3E%3Cpath d='M11 1 1 10l10 9' stroke='%2300378b' stroke-width='1.5'/%3E%3C/svg%3E");
}

.ic-band--related {
  overflow: hidden;
}

[data-ic-detail-section] {
  scroll-margin-top: calc(var(--ic-header-offset) + var(--ic-subnav-height));
}

.ic-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--ic-text-muted);
}
