.products-lists-container {
  margin-top: .14rem;
}

.products-lists-content {
  margin-top: .5rem;
  margin-bottom: .8rem;
}

.products-lists-item {
  width: 100%;
  padding: .3rem 0 .3rem .4rem;
  margin-bottom: .4rem;
  justify-content: space-between;
  align-items: center;
  background: #f8fafb;
  border: .01rem solid #eee;
}

.products-lists-img {
  position: relative;
  display: flex;  
  overflow: hidden;
  max-width: 6rem;
  width: 100%;
  height: 3.4rem;
}

.products-lists-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0;
  background: #0b272e30;
  transition: all 0.4s;
}

.products-lists-img .img {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 56.5%;
  overflow: hidden;
}

.products-lists-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.products-lists-desc {
  max-width: 9.4rem;
  width: 100%;
}

.products-lists-desc .content {
  max-width: 8rem;
  width: 100%;
  margin: auto;
  padding: 20px .4rem 0;
}

.products-lists-title a {
  color: #2d2d2d;
  font-size: .32rem;
  font-family: 'Hind-Bold';
}

.products-lists-text {
  -webkit-line-clamp: 3;
  max-width: 7.2rem;
  font-size: 16px;
  margin-bottom: .4rem;
}

.products-lists-model {
  flex-wrap: wrap;
  max-width: 7.2rem;
  width: 100%;
}

.products-lists-model li {
  position: relative;
  color: #0a0c0d;
  padding-bottom: 8px;
  margin-bottom: 8px;
  margin-right: .4rem;
  width: 45%;
  padding-left: .22rem;
  /* flex: calc(100% / 2 - .2rem); */
  border-bottom: .01rem solid #0a0c0d20;
}

.products-lists-model li:nth-child(2n) {
  margin-right: 0;
}

.products-lists-model li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: '';
  background: #b0b2b3;
}

.products-lists-model li a {
  cursor: initial;
  display: flex;
}

.products-lists-model li:hover a {
  cursor: pointer;
  color: #258ca6;
}

.products-lists-item:hover .products-lists-img img {
  transform: scale(1.1);
  transition: all 0.4s;
}

.products-lists-item:hover .products-lists-img::after {
  opacity: 1;
  transition: all 0.4s;
}

.products-lists-item:hover .products-lists-title a {
  color: #258ca6;
}

@media (max-width: 1100px ) {
  .products-lists-item {
    flex-direction: column;
    justify-content: flex-start;
    width: 48%;
    padding: .4rem .3rem;
  }

  .products-lists-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -0.3rem;
    padding: .5rem .3rem .4rem;
  }

  .products-lists-desc .content {
    padding: .4rem 0 0;
  }

  .products-lists-model li {
    margin-right: 0;
    width: 100%;
  }

  .products-lists-title a {
    font-size: 24px;
  }
}

@media (max-width: 767px ) {
  .products-lists-container {
    margin-top: 0;
  }
  .products-lists-content {
    padding: .4rem .15rem 0;
    margin: 0 -0.15rem 0;
  }

  .products-lists-item  {
    width: 100%;
    padding: 30px 0;
  }

  .products-lists-desc .content {
    padding: 30px 15px 0 ;
  }

  .products-lists-title a {
    font-size: 22px;
  } 
 
}
