.slideshow {
  background: linear-gradient(to Right, #2B75FF, #689DFF);
  height: 500px;
  background-color: #E4EEFC;
  position: relative;
  overflow: hidden;
  /* 隐藏超出的部分 */
}

.imgContent {
  height: 470px;
  width: 470px;
  position: absolute;
  right: 50px;
  overflow: hidden;
  /* 隐藏超出的部分 */
}

.slidDesc {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  padding-top: 70px;
}

.sildtextDesc {
  display: flex;
  padding-top: 30px;
  color: #666;
}

.btnDesc {
  padding: 8px 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  /* 白色透明30% */
  font-size: 40px;
  color: #fff;
  background-color: rgb(255, 255, 255, 0.1);
}

.size36 {
  font-size: 36px;
}

.size24 {
  padding-top: 20px;
  font-size: 24px;
  color: #707070;
}

.size28 {
  font-size: 28px;
}

.size32 {
  font-size: 32px;
}

.color {
  color: #666666;
}

.size22 {
  font-size: 22px;
}

.highlights {
  text-align: center;
  padding: 60px 0;
}

.highlights .box {
  width: 260px;
}

.highlights .pt6 {
  padding-top: 60px;
}

.product {
  padding: 60px 0;
}

.lightspot {
  display: flex;
  padding-top: 60px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  border-radius: 8px;
}

.lightspot .box {
  padding: 32px;
  width: 265px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lightspot .box:hover {
  border-radius: 8px;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.proImg {
  width: 754px;
  height: 389px;
  flex-shrink: 0;
}

.proImg.order {
  order: 2;
}

.production {
  height: 7px;
  width: 40px;
  background-color: #0D62FF;
  margin: 10px 0 40px;
}

.product .textDesc {
  font-size: 24px;
  color: #666;
}

.product .experience {
  cursor: pointer;
  text-align: center;
  width: 168px;
  font-size: 24px;
  color: #fff;
  background-color: #0D62FF;
  border-radius: 5px;
  padding: 10px 0;
  margin-top: auto;
}

/* 弹窗的样式 */
#modal {
  display: none;
}

.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* 半透明背景 */

  display: flex;
  /* 使用 flexbox */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
}

/* 弹窗内容的样式 */
.modalContent {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  border: 1px solid #888;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 关闭按钮 */
.close {
  color: #aaa;
  /* float: right; */
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.imgWh {
  border: 1px solid #DEE9FF;
  width: 200px;
  height: 200px;
}

.imgContainer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size26 {
  font-size: 26px;
}

.productDesc {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 50px;
  width: 500px;
}

.descProduct {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.provider {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .proImg {
    height: 100%;
    width: 100%;
  }

  .proImg.order {
    order: 0;
  }

  .productDesc {
    width: 100%;
    align-items: center;
  }

  .descProduct {
    width: 100%;
    align-items: center;
  }

  .provider {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .slideshow {
    height: 320px;
  }

  .slidDesc {
    font-size: 50px;
  }

  .imgContent {
    display: none;
  }

  .sildtextDesc {
    flex-wrap: wrap;
  }

  .btnDesc {
    font-size: 20px;
  }

  .proImg {
    height: 100%;
    width: 100%;
  }

  .proImg.order {
    order: 0;
  }

  .productDesc {
    width: 100%;
    align-items: center;
  }

  .descProduct {
    width: 100%;
    align-items: center;
  }

  .provider {
    width: 100%;
    align-items: center;
  }

  .lightspot {
    justify-content: center;
  }
}