.nav-contact {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 0.0625rem rgba(255, 255, 255, 0.25);
}

.nav-contact:hover {
  background: rgba(255, 255, 255, 0.3);
}

.section {
  box-shadow: 0 1.125rem 3rem rgba(15, 23, 42, 0.08);
}

/* ---------------------------顶部图片----------------------------- */
.new-energy-hero {
  height: 100vh;
  min-height: 56.25vw;
}

.new-energy-hero-container {
  width: 100%;
  height: 100%;
  /* background: url("/assets/images/solution/new_energy_system-hero.png")
    no-repeat center center; */
  background: url("/assets/images/solution/new_energy_system-hero.webp");
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.hero-title-box {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #fff;
}

.hero-title-box-title {
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.hero-title-box-subtitle {
  font-size: 1.5rem;
  margin-top: 0.625rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

/* ----------------------内容1-------------------- */
.new-energy-content-one {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.new-energy-content-one-t {
  padding: 0 20%;
}

.new-energy-content-one-title {
  max-width: 52.5rem;
  font-size: 2.875rem;
  color: #191919;
  padding-bottom: 1rem;
  line-height: 1.3478;
}

.new-energy-content-one-subtitle {
  max-width: 52.5rem;
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.new-energy-content-one-img-list {
  padding-top: 3.5rem;
}

.new-energy-scene-wrap {
  padding: 3.75rem 12% 0;
}

.new-energy-scene-inner {
  aspect-ratio: 16 / 9;
}

.scene-multiple-image-list {
  grid-template: repeat(8, 1fr) / repeat(16, 1fr);
  display: grid;
  height: 100%;
  grid-gap: 0.9375rem;
}

.new-energy-scene-inner .scene-multiple-image-item:first-child {
  grid-row: 1 / 9;
  grid-column: 1 / 9;
}

.new-energy-scene-inner .scene-multiple-image-item:nth-child(2) {
  grid-row: 1 / 5;
  grid-column: 9 / 17;
}

.new-energy-scene-inner .scene-multiple-image-item:nth-child(3) {
  grid-row: 5 / 9;
  grid-column: 9 / 17;
}

.scene-multiple-image-item {
  position: relative;
  overflow: hidden;
}

.scene-multiple-image-image {
  position: absolute;
  top: -2%;
  left: 0%;
  bottom: -2%;
  right: 0%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  transform: translate3d(0, 2%, 0);
  background-image: var(--img);
}

.scene-multiple-image-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

/** ----------------------中间标题-------------------- */
.detail-title-box {
  padding: 7.5rem 0 3.5rem;
}

.detail-title-top {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #191919;
  text-align: center;
}

.detail-title-bottom {
  color: transparent;
  background-image: linear-gradient(90deg, #007399, #0cbaa5 75%, #83c795);
  background-clip: text;
  font-size: 4rem;
  text-align: center;
}

/** ----------------------内容2-------------------- */
.new-energy-content-two {
  padding: 5rem 0;
}

.content-two-t {
  padding: 0 20%;
}

.content-two-t-box {
  max-width: 52.5rem;
}

.content-two-t-desc {
  color: #666;
  font-size: 1rem;
}

.content-two-t-title {
  color: #191919;
  font-size: 2.875rem;
}

.content-two-b {
  padding: 5rem 11% 0;
}

.content-two-b-content {
  display: flex;
  margin-bottom: 1.25rem;
}

.content-two-b-item-bg {
  flex: 1;
  padding: 0.625rem;
  height: calc(40vw - 10.625rem);
  max-height: 36.875rem;
  background: linear-gradient(to bottom, #fafcff, #fff, #fff);
  margin-right: 1.25rem;
  border: 0.0625rem solid #d4d7de;
  border-radius: 0.3125rem;
  position: relative;
  overflow: hidden;
}

.content-two-b-item {
  height: 100%;
  background-image: var(--img);
  background-size: 100% auto;
  background-position: center calc(100% - 2.5rem);
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.content-two-b-item-bg:hover .content-two-b-item {
  transform: scale(1.06);
}

.content-two-b-item:last-child {
  margin-right: 0;
}

.content-two-b-title {
  font-size: 2.25rem;
  /* color: #fff; */
  text-align: center;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

/* ===============================
   产品页移动端适配
================================ */
@media (max-width: 768px) {
  .hero-title-box {
    width: 80%;
  }
  .hero-title-box-title {
    font-size: 3rem;
  }
  .detail-title-box {
    padding: 5rem 0 2rem;
  }
  .detail-title-bottom {
    font-size: 2.7rem;
  }
  .new-energy-content-two {
    padding: 1rem 0;
  }
  .content-two-t {
    padding: 0 10%;
  }
  .content-two-t-title {
    font-size: 2rem;
  }
  .content-two-b {
    padding: 2rem 5% 0;
  }
  .content-two-b-content {
    display: block;
    margin-bottom: 0;
  }
  .content-two-b-item-bg {
    height: 25rem;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .content-two-b-title {
    font-size: 1.6rem;
    top: 10%;
    width: 80%;
  }
}
