  /* Products */
  .dz_products {
    padding: 34px 10px 200px;
    background: #eee;
  }

  .dz_products_main {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }

  .dz_product_title {
    position: absolute;
    left: -290px;
    width: 250px;
    font-weight: bold;
    font-size: 20px;
    text-align: right;
  }

  .dz_products_count {
    max-width: 70%;
    padding-top: 100px;
    margin: 0 auto;
    position: relative;
  }

  .dz_products_count ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .dz_products_count>ul>li {
    background: #fff;
  }

  .dz_product_wrap {
    overflow: hidden;
  }

  .dz_product_wrap img {
    width: 100%;
    /*width:289px;*/
    /*height:289px;*/
    display: block;
    transform: scale(1);
    transition: transform .3s;
  }

  .dz_products_count>ul>li:hover .dz_product_wrap img {
    transform: scale(1.1);
  }

  .dz_products_count>ul>li:hover {
    cursor: pointer;
  }

  .dz_products_count>ul>li:hover .dz_product_text {
    background: #F14040;
    color: #fff;
    transition: .3s;
  }

  .dz_product_text {
    width: 100%;
    padding: 11px 8px 15px;
    text-align: center;
    color: #8C8C8C;
  }

  .dz_product_item_title {
    margin: 0;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .dz_product_text p {
    font-size: 8px;
    height: 24px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .dz_product_right {
    line-height: 1;
    padding-top: 15px;
  }

  @media screen and (min-width: 769px) {
    .dz_products_count>ul>li {
      width: calc((100% - 30px) / 3);
      margin: 0 15px 20px 0;
    }
    
    .dz_products_count>ul>li:nth-child(3n) {
    	margin-right: 0;
    }
  }

  @media screen and (max-width: 768px) {
    .dz_products {
      width: 100%;
      height: 100%;
      /*padding: 0 0 100px;*/
      background: #fff;
       padding: 34px 10px 0; 
    }

    .dz_products_list {
      padding: 40px 10px 0;
    }

    .dz_product_title {
      left: 0;
      top: -6px;
      text-align: left;
    }

    .dz_product_title {
      text-align: left;
    }

    .dz_products_count {
      padding: 34px 0 0;
      max-width: 100%;
    }

    .dz_products_count>ul>li {
      width: calc((100% - 10px) / 2);
      margin: 0 10px 20px 0;
    }
    
    .dz_products_count>ul>li:nth-child(2n) {
    	margin-right: 0;
    }

    .dz_product_wrap {}

    .dz_product_wrap img {
      width: 100%;
      /*height:180px;*/
    }
  }