.new-environment {
  padding: 30px 0;

  .new-environment-mobile-Box {
    margin-top: 15px;

    .environment-mobile-swiper {
      width: 333px;

      .swiper-wrapper {
        width: 333px;

        .swiper-slide {
          width: 333px !important;

          img {
            width: 333px;
          }
        }
      }
    }

    .swiper-pagination {
      bottom: 10px;

      .swiper-pagination-bullet {
        width: 30px;
        height: 4px;
        background-color: #e8e0d5;
        opacity: 1;
      }

      .swiper-pagination-bullet-active {
        background: var(--Brand-Blue, #005bab);
      }
    }

    .swiper-paginationEdit .swiper-button-prev {
      left: 0;
    }

    .swiper-paginationEdit .swiper-button-next {
      right: 0;
    }
  }
}

@media screen and (max-width: 992px) {
  .serviceArea-Box-table thead tr th {
    max-width: 432px;
    padding: 30px;
    font-size: 24px;
  }
  .serviceArea-Box-table tbody {
    text-align: left;
  }
  .serviceArea-Box-table tbody tr td {
    max-width: 432px;
    padding: 24px 47px;
  }
  .serviceArea-Box-table tbody tr td img {
    max-width: 324px;
    margin-bottom: 20px;
    border-radius: 18px;
  }
  .serviceArea-Box-table tbody tr td p {
    word-wrap: break-word;
    max-width: 324px;
    width: 324px;
    font-size: 21.12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875;
    letter-spacing: 2.112px;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .serviceArea-Box-table tbody > tr td:nth-child(even) {
    background: var(--Grey-Background, #f7f7f7);
  }
}
@media screen and (min-width: 992px) {
  .new-environment {
    padding: 75px 0 30px 0;

    .new-environment-Box {
      margin-top: 47px;

      ul {
        gap: 30px;

        li {
          width: 420px;
          height: 280px;
          border-radius: 15px;
          overflow: hidden;
          cursor: pointer;

          &:hover {
            img {
              scale: 1.1;
              transition: all 0.3s ease-in-out;
            }
          }
        }
      }
    }
  }

  .serviceArea-Box-table tbody > tr td:nth-child(odd) {
    background-color: white;
  }

  .serviceArea-Box-table tbody tr td p {
    font-size: 16pt;
    font-weight: 400;
  }
  .serviceArea {
    background-image: url(/static/img/toRight-bg.svg);
    background-repeat: no-repeat;
    background-size: 432px 220px;
    background-position: -160px center;
  }
  .serviceArea-Box {
    margin-top: 40px;
  }
  .serviceArea-Box-table thead tr th {
    max-width: 440px;
    padding: 30px;
  }
  .serviceArea-Box-table tbody {
    text-align: left;
  }
  .serviceArea-Box-table tbody tr td {
    max-width: 440px;
    padding: 24px;
  }
  .serviceArea-Box-table tbody tr td img {
    max-width: 393px;
    max-height: 312px;
    margin-bottom: 20px;
    border-radius: 24px;
  }
  .serviceArea-Box-table tbody > tr td:nth-child(even) {
    background: var(--Grey-Background, #f7f7f7);
  }
}

/* 全屏轮播图样式 */
.fullscreen-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(96, 150, 197, 0.7);
  display: none;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  padding-top: 110px;
  z-index: 999;

  .close-btn {
    position: absolute;
    top: 41px;
    right: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;

    background-color: var(--Grand-Grey, #e8e0d5);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2;
  }
}

.carousel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-inner {
  position: relative;
  width: 1200px;
  height: 800px;
}

.carousel-item {
  width: 1200px;
  height: 800px;
  object-fit: contain;
  display: block;
}

.carousel-control-prev-icon {
  height: 80px;
  max-width: 730px;
  width: 38.02vw;
  margin-top: 29px;
  background-image: none;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  bottom: 130px;
  overflow: hidden;

  cursor: pointer;
  width: 70px;
  height: 70px;
  background-color: var(--White, #fff);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  svg {
    pointer-events: none;
  }
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-indicators {
  /* position: absolute;
      bottom:  clamp(20px,9.1vw,110px); */
  bottom: 25px;
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}

.carousel-indicators li {
  width: 71px;
  height: 4px;
  background: var(--Grand-Grey, #e8e0d5);

  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicators li.active {
  background: var(--Brand-Blue, #005bab);
}
