.products-sider {
  width: 230px;
  margin-right: 30px;
}

.products-categorys {
  overflow: hidden;

  margin-bottom: 25px;
  padding: 0 30px;

  border-radius: 5px;
  background: #fff;
}

.products-category {
  display: block;

  padding: 20px 10px;

  color: #000;
  border-bottom: 1px solid #eee;
}
.products-category:hover {
  color: #0c6ef1;
}
.products-category.active {
  color: #0c6ef1;
}

.products-category__icon {
  display: block;
  float: left;

  width: 2rem;
  height: 2rem;
  margin-right: 2rem;

  font-size: 2rem;
  line-height: 2rem;

  -o-object-fit: contain;
     object-fit: contain;
}

.products-category__title {
  overflow: hidden;

  white-space: nowrap;
  text-overflow: ellipsis;

  font-size: 1.3rem;
}

.products-category__tip {
  overflow: hidden;

  white-space: nowrap;
  text-overflow: ellipsis;

  font-size: 1.5rem;
}

.products-contact {
  overflow: hidden;

  padding: 20px;

  border-radius: 5px;
  background: #fff url(/assets/images/products-contact.jpg) no-repeat top center;
}

.products-contact__head {
  margin-bottom: 40px;
}

.products-contact__title {
  color: #0c6ef1;

  font-size: 24px;
}

.products-contact__content {
  color: #818181;
}

.products-contact__row {
  margin-bottom: 10px;
}

.products-main {
  flex: 1;

  margin: -15px;
}

.products {
  display: flex;
  flex-wrap: wrap;

  width: 100%;
}

.product {
  width: 302px;
  margin: 15px;
  padding: 20px 20px 10px;

  text-align: center;

  color: #000;
  border-radius: 5px;
  background: #fff;
}
.product:hover {
  color: #0c6ef1;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.product__head {
  position: relative;

  overflow: hidden;

  width: 100%;
  height: 0;
  padding-bottom: 100%;

  border-radius: 5px;
  background-color: rgb(243, 245, 247);
}

.product__image {
  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  -o-object-fit: cover;
     object-fit: cover;
}

.product__title {
  overflow: hidden;

  padding: 30px 0 0;

  white-space: nowrap;
  text-overflow: ellipsis;

  font-size: 14px;
}

.product__next {
  color: #0c6ef1;

  font-size: 35px;
}

@media screen and (max-width: 767px) {
  .products-main {
    margin: 0;
  }
  .product {
    width: 100%;
  }
}