.zhuli-hot_product {
  padding: clamp(30px, 3.645833vw, 70px) 0;
  position: relative;
}

.zhuli-hot_product .container {
  padding: 0 45px;
}
.zhuli-hot_product .tit {
  display: block;
  position: relative;
  z-index: 10;
}
.zhuli-hot_product .tit h3 {
  font-size: clamp(24px, 2.34vw, 45px);
  line-height: 1;
  font-weight: 600;
  color: #0388D1;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  text-transform: uppercase;
}

.zhuli-hot_product .tit h3::before {
    /* content: ''; */
    width: 100%;
    height: 2px;
    background-color: #847c7a;
    position: absolute;
    left: 0;
    bottom: -30px;
}

.zhuli-hot_product .tit h3::after {
    content: '';
    width: 40px;
    height: 4px;
    background-color: var(--color-primary);
    position: absolute;
    left: 50%;
    bottom: -25px;
    margin-left: -30px;
}

.zhuli-hot_product .tit h3 span {
  font-family: var(--font-family);
}
.zhuli-hot_product .tit p {
  font-size: 18px;
  line-height: 30px;
  color: #595a59;
  flex: 1;
  text-align: center;
}

.zhuli-hot_product ul {
  margin-top: 60px;
  /* margin: 0 -13px 0; */
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  gap: 13px;
}
.zhuli-hot_product ul li {
  width: calc((100% - 39px) / 4);
  /* padding: 13px; */
  /* margin: 57px 0 0; */
  position: relative;
  text-align: center;
  cursor: pointer;
}

.zhuli-hot_product ul li .pic {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.zhuli-hot_product ul li .pic img {
  width: 100%;
  transition: all 0.3s ease 0s;
  object-fit: cover;
  aspect-ratio: 1;
}
.zhuli-hot_product ul li h6 {
  padding: 0.5em 0;
  position: absolute;
  width: 100%;
  bottom: 0px;
  display: none;
  background-color: var(--color-primary);
  font-size: clamp(16px, 1.25vw, 24px);
  height: 3em;
}
.zhuli-hot_product ul li h6 a {
  font-weight: 500;
  color: #fff;
  line-height: 1;
  font-family: var(--font-family);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.zhuli-hot_product ul li:hover h6 {
  display: block;
}

.zhuli-hot_product ul li:hover img {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
}

@media screen and (max-width: 1700px) {
  .zhuli-hot_product::after {
    left: 6%;
  }
}


@media screen and (max-width: 992px) {

  .zhuli-hot_product ul li h6 {
    display: flex;
    justify-content: center;
    align-items: center;
  }


  .zhuli-hot_product::after {
    left: 0;
  }
  .zhuli-hot_product .tit h3::after {
    display: none;
  }
  .zhuli-hot_product .tit .more {
    width: 120px;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
  }
  .zhuli-hot_product ul {
    gap: 10px;
    margin-top: 30px;
  }
  .zhuli-hot_product ul li {
    width: calc((100% - 10px) / 2);
  }
  .zhuli-hot_product ul li .more {
    line-height: 40px;
    height: 40px;
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {


  .zhuli-hot_product .container {
    padding: 0 15px;
  }
  .zhuli-hot_product .tit p {
    font-size: 14px;
  }

}

@media screen and (max-width: 400px) {
  /*.zhuli-hot_product ul li {
    width: 100%;
  }*/
}


