.products {
  width: 100%;
  background: #fff;
  padding: 100px 0;
}

.products .products_cen {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.products .products_cen .products_type {
  width: 240px;
}
.products .products_cen .products_type li{
  margin-bottom: 50px;
}
.products_type .products_title {
  display: flex;
  margin-bottom: 20px;
}

.products_type .products_box .products_boxT {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
}

.products_type .products_box .products_boxT p {
  font-size: 20px;
  line-height: 30px;
  color: #1a1a1a;
  width: calc(100% -30px);
  font-family: "HarmonyOS_Sans_Bold";
  font-weight: 500;
}

.products_type .products_box .products_boxT .iconfont {
  font-size: 16px;
  line-height: 30px;
  color: #1a1a1a;
  display: none;
}

.products_type .products_box .products_boxB {
  padding: 12px 30px;
  border-bottom: 1px solid #e5e5e5;
  display: none;
}

.products_type .products_box .products_boxB a {
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #999999;
  transition: all 0.3s ease;
}

.products_type .products_box .products_boxB a:hover {
  color: #f47900;
}

.products_type .products_box .products_boxB a.active {
  color: #f47900;
}

.products_type .products_box .products_boxB a i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999999;
  transition: all 0.3s ease;
  margin-right: 8px;
  margin-top: 5px;
}

.products_type .products_box .products_boxB a:hover i {
  background: #f47900;
}

.products_type .products_box .products_boxB a p {
  width: calc(100% - 18px);
}

.products_type .products_title h6 {
  line-height: 1;
  font-size: 30px;
  font-family: "HarmonyOS_Sans_Regular";
  color: #000000;
  padding-bottom: 20px;
  border-bottom: 4px solid #f47900;
}

.products .products_cen .products_list {
  width: calc(100% - 290px);
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.products_list .products_box {
  width: 31.53%;
  aspect-ratio: 350/300;
  margin-right: 2.705%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.products_list .products_box:nth-child(3n) {
  margin-right: 0;
}

.products_list .products_box .products_prc {
  width: 100%;
  aspect-ratio: 350/250;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products_list .products_box .products_prc img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.products_list .products_box:hover .products_prc img {
  transform: scale(1.05);
}

.products_list .products_box .products_name p {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  transition: all 0.3s ease;
}

.products_list .products_box:hover .products_name p {
  color: #f47900;
}

.fyq {
  padding-top: 40px;
}

.series {
  width: 100%;
  padding: 90px 0;
  background: #f5f5f5;
}

.series .series_title h6 {
  line-height: 1;
  font-size: 36px;
  font-family: "HarmonyOS_Sans_Bold";
  font-weight: 500;
  color: #000000;
  text-align: center;
}

.series .series_bom {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.series .series_bom .series_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;
}

.series .series_bom .series_box:nth-child(2) {
  background: url(../images/seriesBoxBj2.png) no-repeat;
  background-size: cover;
}

.series_box .series_zi {
  width: 50%;
}

.series_box .series_name {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  font-family: "HarmonyOS_Sans_Bold";
  font-weight: 500;
}

.series_box .series_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;
}

/* .series_box .series_more a:hover {
  background: #f47900;
  color: #fff;
} */

.series_box .series_prc {
  aspect-ratio: 1/1;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.series_box .series_prc img {
  display: block;
  max-width: 90%;
  max-height: 100%;
}

@media (max-width: 1500px) {
  .products {
    padding: 80px 0;
  }
}

@media (max-width: 1200px) {
  .products {
    padding: 60px 0;
  }
}

@media (max-width: 992px) {
  .products {
    padding: 50px 0;
  }

  .products .products_cen .products_type,
  .products .products_cen .products_list {
    width: 100%;
  }

  .products .products_cen .products_type {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .products .products_cen .products_type li{
    width: 30%;
    margin-bottom: 0;
  }

  .products_list .products_box {
    width: 48.5%;
    margin-right: 3%;
  }

  .products_list .products_box:nth-child(3n) {
    margin-right: 3%;
  }

  .products_list .products_box:nth-child(2n) {
    margin-right: 0;
  }

  .series .series_bom {
    flex-direction: column;
  }

  .series .series_bom .series_box {
    width: 100%;
    padding: 16px;
  }

  .series .series_bom .series_box:nth-child(2) {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 36px 0;
  }

  .products_type .products_title{
    margin-bottom: 0;
  }
  .products_type .products_title h6 {
    width: 100%;
    line-height: 1;
    font-size: 16px;
    padding-bottom: 10px;
  }

  .products_type .products_box .products_boxT {
    padding: 0 5px;
    margin: 6px 0;
  }
  .products_type .products_box .products_boxT.active{
    background: #f47900;
  }
  .products_type .products_box .products_boxT.active a p{
    color: #ffffff;
  }
  .products_type .products_box .products_boxT p {
    font-size: 14px;
  }

  .products_type .products_box .products_boxT .iconfont {
    display: block;
  }

  .products_type .products_box.bshow .products_boxB {
    display: block;
  }

  .products_type .products_box.bshow .products_boxT .iconfont {
    transform: rotate(90deg);
  }

  .series {
    padding: 60px 0;
  }

  .series .series_title h6 {
    font-size: 30px;
  }

  .series_box .series_name {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .products {
    padding: 30px 0;
  }

  .products_list .products_box {
    width: 49%;
    margin: 0 2% 2% 0;
  }

  .products_list .products_box:nth-child(3n){
    margin: 0 2% 2% 0;
  }
  .products_list .products_box:nth-child(2n) {
    margin: 0 0 2%;
  }
  .products_list .products_box .products_name p{
    font-size: 16px;
  }

  .series {
    padding: 40px 0;
  }

  .series .series_title h6 {
    font-size: 24px;
  }

  .series_box .series_name {
    font-size: 24px;
  }

  .series_box .series_more a {
    margin-top: 20px;
    height: 40px;
  }
}