.no-after-before::after {
  display: none;
}
.no-after-before::before {
  display: none;
}
.product-nav-filter {
  padding-top: 30px;
  border-bottom: 1px solid #e1e2e3;
}
.product-nav-filter > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.product-nav-filter > div > div:first-of-type {
  display: flex;
}
.product-nav-filter > div > div:first-of-type > span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  padding-bottom: 20px;
  min-width: 80px;
  font-size: 20px;
  color: #333;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.product-nav-filter > div > div:first-of-type > span.active {
  color: #0066ff;
  border-color: #0066ff;
}
.product-nav-filter > div > div:first-of-type > span i {
  padding-left: 8px;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
}
.product-nav-filter > div > div:last-of-type {
  position: relative;
  padding-bottom: 20px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.product-nav-filter > div > div:last-of-type span {
  max-width: 200px;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 20px;
}
.product-nav-filter > div > div:last-of-type span::after {
  margin-left: 10px;
  content: '';
  width: 18px;
  height: 10px;
  background: url(../images/product-arrow.png);
}
.product-nav-filter > div > div:last-of-type > div {
  position: absolute;
  display: none;
  right: 0;
  top: 20px;
  width: auto;
  max-height: 250px;
  overflow-y: auto;
  font-size: 14px;
  background: #fff;
  border: 1px solid #bcbdbd;
  z-index: 10;
  flex-direction: column;
}
.product-nav-filter > div > div:last-of-type > div a {
  cursor: pointer;
  display: block;
  padding: 0 15px;
  color: #0066ff;
  font-size: 18px;
  line-height: 40px;
}
.new-product-list {
  padding-top: 45px;
}
.new-product-list > div {
  display: flex;
  flex-wrap: wrap;
}
.new-product-list > div > div {
  position: relative;
  width: calc(100% / 3 - 24px);
  padding-bottom: 50px;
  margin-right: 36px;
}
.new-product-list > div > div > a {
  display: block;
  background: #f4f4f4;
}
.new-product-list > div > div:nth-child(3n + 3) {
  margin-right: 0;
}
.new-product-list > div > div::after {
  display: none;
  position: absolute;
  content: ' ';
  top: 0;
  right: 0;
  width: 75px;
  height: 75px;
  background-image: url(../images/product-green.png);
  z-index: 1;
}
.new-product-list > div > div::before {
  display: none;
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 75px;
  height: 75px;
  background-image: url(../images/product-green.png);
  z-index: 1;
}
.new-product-list > div > div.product-green::after {
  display: block;
}
.new-product-list > div > div.product-new:before {
  display: block;
  background-image: url(../images/product-new.png);
}
.new-product-list > div > div.product-hot:before {
  display: block;
  background-image: url(../images/product-hot.png);
}
.new-product-list > div > div * {
  margin: 0;
}
.new-product-list > div > div img {
  width: 100%;
}
.new-product-list > div > div h3 {
  margin: 0;
  padding-top: 30px;
}
.new-product-list > div > div h3 > a {
  font-size: 18px;
  color: #333;
}
.new-product-list > div > div .product-location {
  padding: 10px 0;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;  
}
.new-product-list > div > div .product-money {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.new-product-list > div > div .product-money > span {
  flex: 1;
}
.new-product-list > div > div .product-money a {
  color: #0066ff;
  text-decoration: underline;
}
.product-pagination {
  padding-bottom: 50px;
}
.product-pagination .paginationjs-pages {
  display: flex;
  justify-content: center;
}
.product-pagination .paginationjs-pages > ul {
  display: flex;
}
.product-pagination .paginationjs-pages > ul li {
  display: flex;
  border: 1px solid #e7e7e7;
  cursor: pointer;
}
.product-pagination .paginationjs-pages > ul li a {
  padding: 0 15px;
  min-width: 45px;
  height: 40px;
  width: 100%;
  height: 100%;
  color: #333;
  line-height: 40px;
  text-align: center;
}
.product-pagination .paginationjs-pages > ul li + li {
  margin-left: 10px;
}
.product-pagination .paginationjs-pages > ul li.disabled {
  cursor: not-allowed;
}
.product-pagination .paginationjs-pages > ul li.disabled a {
  color: #ccc;
}
.product-pagination .paginationjs-pages > ul li.active a {
  background-color: #0066ff;
  border-color: #0066ff;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .product-nav-filter {
    position: relative;
    padding-top: 25px;
  }
  .product-nav-filter > div > div:first-of-type {
    display: flex;
  }
  .product-nav-filter > div > div:first-of-type > span {
    padding-bottom: 12px;
    font-size: 16px;
    min-width: 60px;
  }
  .product-nav-filter > div > div:first-of-type > span.active {
    color: #0066ff;
    border-color: #0066ff;
  }
  .product-nav-filter > div > div:first-of-type > span i {
    padding-left: 8px;
    font-size: 12px;
    font-weight: bold;
  }
  .product-nav-filter > div > div:last-of-type {
    position: static;
    padding-bottom: 12px;
  }
  .product-nav-filter > div > div:last-of-type span {
    font-size: 16px;
  }
  .product-nav-filter > div > div:last-of-type span::after {
    margin-left: 6px;
    content: '';
    width: 9px;
    height: 5px;
    background-image: url(../images/product-arrow.png);
    background-size: 100% 100%;
  }
  .product-nav-filter > div > div:last-of-type > div {
    top: 56px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  }
  .new-product-list {
    padding-top: 20px;
  }
  .new-product-list > div {
    display: flex;
    flex-wrap: wrap;
  }
  .new-product-list > div > div {
    width: calc(50% - 6px);
    margin-right: 0;
    padding-bottom: 30px;
  }
  .new-product-list > div > div:nth-child(2n + 2) {
    margin-left: 12px;
  }
  .new-product-list > div > div::after {
    right: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    background-size: 100% 100%;
  }
  .new-product-list > div > div::before {
    left: 5px;
    top: 5px;
    width: 35px;
    height: 35px;
    background-size: 100% 100%;
  }
  .new-product-list > div > div h3 {
    padding-top: 15px;
  }
  .new-product-list > div > div h3 > a {
    font-size: 11px;
  }
  .new-product-list > div > div .product-location {
    padding: 10px 0 10px;
    font-size: 11px;
    color: #666;
  }
  .new-product-list > div > div .product-money {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
  }
  .new-product-list > div > div .product-money > span {
    flex: 1;
  }
  .new-product-list > div > div .product-money a {
    margin-top: 12px;
    width: 100%;
    font-size: 11px;
    color: #0066ff;
    text-decoration: underline;
  }
  .product-pagination {
    padding-bottom: 40px;
  }
  .product-pagination .paginationjs-pages > ul li a {
    padding: 0 10px;
    min-width: 30px;
    height: 30px;
    width: 100%;
    height: 100%;
    color: #333;
    line-height: 30px;
    text-align: center;
  }
  .product-pagination .paginationjs-pages > ul li + li {
    margin-left: 5px;
  }
}
