.productDetails {
  width: 100%;
  background: #f5f5f5;
  padding: 80px 0 50px;
}

.productDetails_cen {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.productDetails_cen .productDetails_left {
  width: 54.3%;
  height: 666px;
  display: flex;
  justify-content: space-between;
}

.productDetails_cen .productDetails_left .productDetails_l {
  width: 140px;
  padding-bottom: 46px;
}

.productDetails_cen .productDetails_left .productDetails_r {
  width: calc(100% - 160px);
  padding-bottom: 46px;
  position: relative;
}

.productDetails_cen .productDetails_left .swiper {
  height: 100%;
}

.productDetails_cen .productDetails_left .productDetails_prc {
  width: 100%;
  background: #fff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productDetails_cen .productDetails_left .productDetails_r .productDetails_prc {
  height: 100%;
}

.productDetails_cen .productDetails_left .productDetails_prc img {
  display: block;
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
}

.swiper-slide-thumb-active .productDetails_prc {
  border: 1px solid #f47900;
}

.productDetails_r .swiper-pagination-bullet-active {
  background: #f47900;
}

.productDetails_cen .productDetails_right {
  width: 41.7%;
  padding-top: 70px;
}

.productDetails_right .productDetails_title {
  font-size: 40px;
  line-height: 1;
  color: #1a1a1a;
  font-family: "HarmonyOS_Sans_Bold";
  font-weight: 500;
}

.productDetails_right .productDetails_text {
  font-size: 18px;
  line-height: 29px;
  font-family: "HarmonyOS_Sans_Regular";
  color: #4c4c4c;
  margin-top: 30px;
}

.productDetails_right .productDetails_more a {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 44px;
  background: #f47900;
  color: #fff;
  font-family: "HarmonyOS_Sans_Regular";
  font-size: 20px;
}

.protable {
  width: 100%;
}

.protable_title {
  padding: 15px 0;
  background: #fff;
}

.protable_title h6 {
  color: #f47900;
  font-family: "HarmonyOS_Sans_Bold";
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

.protable_bom {
  width: 100%;
  padding: 30px 0 80px;
  background: #f5f5f5;
}

.protable_bomCen table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.protable_bomCen th,
.protable_bomCen td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.protable_bomCen th {
  background: #f2f2f2;
  font-weight: bold;
}

.protable_bomCen tbody tr:nth-child(odd) {
  background: #f9f9f9;
}

/* 响应式处理（小屏幕自动换行） */
@media (max-width: 600px) {
  td {
    word-wrap: break-word;
    white-space: normal;
  }
}

.models {
  width: 100%;
}

.models_bom {
  width: 100%;
  padding: 50px 0 70px;
  background: #f5f5f5;
}

.models_bom .models_bomCen {
  padding-bottom: 25px;
  position: relative;
}

.models_bom .models_bomCen .mySwiper {
  width: 100%;
}

.models_bom .models_bomCen .models_box {
  width: 100%;
  aspect-ratio: 330 / 300;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  background: #fff;
}

.models_box .models_prc {
  width: 100%;
  aspect-ratio: 330/250;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.models_box .models_prc img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.models_box:hover .models_prc img {
  transform: scale(1.05);
}

.models_box .models_name p {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  transition: all 0.3s ease;
}

.models_box:hover .models_name p {
  color: #f47900;
}

.models_bomCen .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f47900;
}

/*  */
.seires {
  width: 100%;
}

.seires .seires_bom {
  padding: 50px 0 80px;
  background: #f5f5f5;
}

.seires_bom .seires_bomCen {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 一排4列，宽度均分 */
  column-gap: 27px;
}

.seires_bom .seires_bomCen .seires_box {
  width: 100;
  aspect-ratio: 330 / 300;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.seires_box .seires_prc {
  width: 100%;
  aspect-ratio: 330/250;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.seires_box .seires_prc img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.seires_box:hover .seires_prc img {
  transform: scale(1.05);
}

.seires_box .seires_name p {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  transition: all 0.3s ease;
}

.seires_box:hover .seires_name p {
  color: #f47900;
}

/*  */
.promore {
  width: 100%;
}

.promore .promore_bom {
  padding: 60px 0 100px;
  background: #f5f5f5;
}

.promore .promore_bom .promore_bomCen {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promore .promore_bom .promore_box {
  width: 48.57%;
  aspect-ratio: 680/300;
  /* height: 300px; */
  border-radius: 16px;
  padding: 16px 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: url(../images/seriesBoxBj1.png) no-repeat;
  background-size: cover;
}

.promore .promore_bom .promore_box:nth-child(2) {
  background: url(../images/seriesBoxBj2.png) no-repeat;
  background-size: cover;
}

.promore_box .promore_zi {
  width: 50%;
}

.promore_box .promore_name {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  font-family: "HarmonyOS_Sans_Bold";
  font-weight: 500;
}

.promore_box .promore_more a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 146px;
  height: 46px;
  background: #fff;
  border-radius: 8px;
  color: #f47900;
  font-size: 20px;
  line-height: 1;
  font-family: "HarmonyOS_Sans_Regular";
  margin-top: 52px;
  transition: all 0.3s ease;
}

/* .promore_box .promore_more a:hover {
  background: #f47900;
  color: #fff;
} */

.promore_box .promore_prc {
  aspect-ratio: 1/1;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promore_box .promore_prc img {
  display: block;
  max-width: 90%;
  max-height: 100%;
}

@media (max-width: 1200px) {
  .productDetails {
    background: #f5f5f5;
    padding: 60px 0 40px;
  }

  .productDetails_cen .productDetails_right {
    padding-top: 40px;
  }
}

@media (max-width: 992px) {

  .productDetails_cen .productDetails_left,
  .productDetails_cen .productDetails_right {
    width: 100%;
  }

  .productDetails_cen .productDetails_right {
    padding-top: 20px;
  }

  .seires_bom .seires_bomCen {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .promore .promore_bom .promore_bomCen {
    flex-direction: column;
  }

  .promore .promore_bom .promore_box {
    width: 100%;
    padding: 16px;
  }

  .promore .promore_bom .promore_box:nth-child(2) {
    margin-top: 20px;
  }

  .productDetails_cen .productDetails_left {
    height: 500px;
  }

  .productDetails_cen .productDetails_left .productDetails_l {
    width: 100px;
  }

  .productDetails_cen .productDetails_left .productDetails_r {
    width: calc(100% - 120px);
  }

  .productDetails_right .productDetails_title {
    font-size: 32px;
  }

  .productDetails_right .productDetails_more a {
    margin-top: 60px;
  }

  .models_bom {
    padding: 40px 0 50px;
  }
}

@media (max-width: 768px) {
  .productDetails {
    padding: 60px 0 30px;
  }

  .productDetails_cen .productDetails_left {
    height: 380px;
  }

  .productDetails_right .productDetails_title {
    font-size: 28px;
  }

  .productDetails_right .productDetails_text {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
  }

  .productDetails_right .productDetails_more a {
    margin-top: 40px;
    width: 160px;
    height: 40px;
    font-size: 18px;
  }

  .protable_bomCen {
    overflow-x: auto;
  }

  .protable_bom {
    padding: 30px 0 60px;
  }

  .seires .seires_bom {
    padding: 36px 0 40px;
  }

  .promore .promore_bom {
    padding: 60px 0 80px;
  }

  .promore_box .promore_name {
    font-size: 24px;
  }

  .seires_box .seires_name p {
    font-size: 18px;
  }

  .models_bom {
    padding: 30px 0 36px;
  }
}

@media (max-width: 576px) {
  .productDetails {
    padding: 40px 0 20px;
  }

  .productDetails_right .productDetails_title {
    font-size: 24px;
  }

  .protable_title h6 {
    font-size: 20px;
  }

  .seires_bom .seires_bomCen {
    grid-template-columns: repeat(1, 1fr);
  }

  .promore_box .promore_name {
    font-size: 20px;
  }

  .promore_box .promore_more a {
    margin-top: 20px;
    height: 40px;
  }

  .productDetails_right .productDetails_text {
    font-size: 15px;
    line-height: 24px;
  }

  .productDetails_right .productDetails_more a {
    margin-top: 20px;
  }
}