.main {
  padding-top: .5455rem;
  padding-bottom: 1.1818rem;
}

.main .head-screen-are {
  margin-bottom: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .head-screen-are .product-num {
  font-size: 18px;
}

.main .head-screen-are .select-are {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .head-screen-are .select-are span {
  margin-right: 20px;
}

.main .product-container {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 20px;
}

.main .product-container .item {
  width: calc((100% - 60px) / 4);
}

.main .product-container .item:hover .product-picture .product-view-icon i {
  opacity: 1;
}

.main .product-container .item .product-picture {
  height: 250px;
  margin-bottom: 10px;
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .product-container .item .product-picture img {
  max-width: calc(100% - 20px);
  max-height: 200px;
  vertical-align: middle;
}

.main .product-container .item .product-picture .product-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 16px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.01);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .product-container .item .product-picture .product-view-icon i {
  opacity: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65) url("../static-img/view-icon.webp") no-repeat;
  background-size: 20px 20px;
  background-position: center;
  border-radius: 50px;
}

.main .product-container .item h6 {
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.main #product-paging {
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .main .product-container .item {
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 768px) {
  .main .product-container .item h6 {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .main .head-screen-are {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .main .head-screen-are .product-num {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .main .head-screen-are .select-are {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  .main .head-screen-are .select-are span {
    margin-right: 12px;
    font-size: 15px;
  }
  .main .product-container .item {
    width: 100%;
  }
}