.product-wrap {
  background-color: #f7f7f7;
  padding: 40px 0 130px;
}
.product-crumbs {
  padding: 20px 0;
}
.product-title {
  color: #464646;
  font-size: 30px;
  padding-bottom: 30px;
}
.selected {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.selected.u-container::after {
  display: none;
}
.selected-list {
  display: flex;
  flex-wrap: wrap;
}
.selected-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 22px;
  line-height: 22px;
  border: 1px solid #e5e5e5;
  background: #fff;
  font-size: 12px;
  margin: 0 6px 10px 0;
  padding: 0 4px;
  cursor: pointer;
}
.selected-remove {
  border: 1px solid #ddd;
  padding: 2px 10px;
}
.selected-item span {
  color: #1576d4;
}
.selected-item-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-left: 6px;
}
.params {
  color: #767676;
}
.params-row {
  background-color: #fff;
  display: flex;
  line-height: 40px;
  padding: 10px 20px;
  border-top: 1px solid #ddd;
}
.params-row.hide {
  display: none;
}
.params-row.hide.active {
  display: flex;
}
.params-row:nth-child(2) {
  border-top: none;
}
.params-label {
  width: 140px;
  color: #949494;
}
.params-list {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.params-item {
  display: block;
  margin-right: 30px;
}
.params-item.active {
  color: #232323;
  font-weight: 600;
}
.params-item:hover {
  color: #232323;
}
.params-more {
  display: block;
  margin: 0 auto;
  background-color: #fff;
  padding: 0 15px;
  line-height: 34px;
  border: 1px solid #e5e5e5;
  border-top: 1px solid #ffffff;
  cursor: pointer;
  text-align: center;
  width: 136px;
  color: #616265;
}
.params-more span {
  display: inline-block;
  min-width: 60px;
  text-align: justify;
  text-align-last: justify;
  padding: 0 2px;
}
.params-more .params-more-close {
  display: none;
}
.params-more.active .params-more-close {
  display: inline-block;
}
.params-more.active .params-more-open {
  display: none;
}
.params-more-icon {
  height: 10px;
  width: 10px;
  object-fit: contain;
}
.params-more.active .params-more-icon {
  transform: rotate(180deg);
  margin-top: -4px;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
}
.product-list .product-card {
  width: calc(25% - 15px);
  margin-right: 20px;
  margin-top: 20px;
}
.product-list .product-card:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 768px) {
  .product-crumbs {
    display: none;
  }
  .product-title {
    font-size: 20px!important;
    margin-top: 0;
    padding: 10px 0;
    font-weight: bold;
  }
  .product-wrap {
    padding: 0 0 20px;
  }
  .selected.u-container {
    padding: 10px 10px 0;
    width: 100%;
  }
  .params {
    position: fixed;
    height: 100%;
    right: 0;
    top: 0;
    overflow-y: auto;
    z-index: 999;
    transform: translate(100%);
    transition: all 0.5s;
    background-color: #fff;
  }
  .params.active {
    transform: translate(0);
  }
  .params-row {
    flex-direction: column;
    line-height: 32px;
    padding: 6px 20px;
  }
  .params-row.hide {
    display: flex;
  }
  .params-label {
    font-size: 15px;
  }
  .params-item {
    font-size: 13px;
    padding: 0 10px;
    border: 1px solid #eee;
    margin: 6px 6px 6px 0;
  }
  .params-header {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #232323;
  }
  .params-header-close {
    position: absolute;
    left: 10px;
    width: 30px;
    height: 30px;
    padding: 4px;
    top: 7px;
  }
  .params-more {
    display: none;
  }
  .u-container.product-list {
    width: 100%;
  }
  .product-list .product-card {
    width: 50%;
    margin: 0;
    border-top: 1px solid #eee;
  }
  .product-list .product-card:nth-child(2n) {
    border-left: 1px solid #eee;
  }
  .product-list .product-card:nth-child(1),
  .product-list .product-card:nth-child(2) {
    border-top: none;
  }
  .filter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px 10px 16px;
    background-color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
  }
  .filter-button {
    display: flex;
    align-items: center;
  }
  .filter-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
    margin-left: 2px;
  }
}