@charset "UTF-8";
/* 成功案例页专属样式（导航/页脚复用 home.css） */

/* 顶部 banner */
.sc-banner {
  width: 100%;
  background: url("../images/success/success.png") no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 3rem 24px 14rem;
  box-sizing: border-box;
}
.sc-banner-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;
}
.sc-banner-sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem auto 0;
  max-width: 72rem;
}

/* 案例卡片（叠在 banner 上） */
.sc-cases-wrap {
  width: 100%;
  background: #f7f6f8;
  padding-bottom: 3rem;
}
.sc-cases {
  position: relative;
  top: -11rem;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto -11rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2.2rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
/* 8 张独立案例卡片，白色间隙 */
.sc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.sc-grid img {
  width: 100%;
  display: block;
  border-radius: 0.4rem;
}

@media (max-width: 840px) {
  .sc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 说明与免责声明 */
.sc-statement {
  width: 100%;
  background: #fdf2f4;
  padding: 3rem 0 3.4rem;
}
.sc-statement-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 2rem;
}
.sc-statement p {
  font-size: 1rem;
  color: #444444;
  line-height: 1.9;
  margin: 0 0 1rem;
}

@media (max-width: 840px) {
  .sc-banner-title {
    font-size: 1.8rem;
  }
  .sc-cases {
    margin-top: -3rem;
    padding: 1rem;
  }
}
