.nav-contact {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.nav-contact:hover {
  background: rgba(255, 255, 255, 0.3);
}

.section {
  box-shadow: 0 18px 48px 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: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-title-box-subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
  /* 添加文字阴影 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ----------------------内容1-------------------- */
.new-energy-content-one {
  padding-top: 160px;
  padding-bottom: 80px;
}
.new-energy-content-one-t {
  padding: 0 20%;
}
.new-energy-content-one-title {
  max-width: 840px;
  font-size: 46px;
  color: #191919;
  padding-bottom: 16px;
  line-height: 1.3478;
}
.new-energy-content-one-subtitle {
  max-width: 840px;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
.new-energy-content-one-img-list {
  padding-top: 56px;
}

.new-energy-scene-wrap {
  padding: 60px 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: 15px;
}
.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: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

/** ----------------------中间标题-------------------- */
.detail-title-box {
  padding: 120px 0 56px;
}
.detail-title-top {
  margin-bottom: 12px;
  font-size: 24px;
  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: 64px;
  text-align: center;
}

/** ----------------------内容2-------------------- */
.new-energy-content-two {
  padding: 80px 0;
}
.content-two-t {
  padding: 0 20%;
}
.content-two-t-box {
  max-width: 840px;
}
.content-two-t-desc {
  color: #666;
  font-size: 16px;
}
.content-two-t-title {
  color: #191919;
  font-size: 46px;
}

.content-two-b {
  padding: 80px 11% 0;
}
.content-two-b-content {
  display: flex;
  margin-bottom: 20px;
}
.content-two-b-item-bg {
  flex: 1;
  padding: 10px;
  height: calc(40vw - 170px);
  max-height: 590px;
  background: linear-gradient(to bottom, #FAFCFF, #fff, #fff);
  margin-right: 20px;
  border: 1px solid #D4D7DE;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.content-two-b-item {
  height: 100%;
  background-image: var(--img);
  background-size: 100% auto;
  background-position: center calc(100% - 40px);
  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: 36px;
  /* color: #fff; */
  text-align: center;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}