/* GOODS */
hr {
  border-top: 6px double #181818;
  background-color: transparent;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  hr {
    margin-bottom: 40px;
  }
}

.goods-lead {
  font-size: 1.1em;
}

.goods-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 30px 3%;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
  margin: 0 auto;
  max-width: 1000px;
  margin-top: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .goods-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 50px 3%;
    -webkit-box-align: top;
        -ms-flex-align: top;
            align-items: top;
    margin: 0 auto;
    max-width: 1000px;
    margin-bottom: 80px;
    margin-top: 40px;
  }
}
.goods-list__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 47.7%;
  margin-bottom: 0;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .goods-list__item {
    width: 22.7%;
  }
}
.goods-list__item .item-thumb {
  cursor: pointer;
  border: 1px solid #F5F5F5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  aspect-ratio: 1/1;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
}
@media screen and (min-width: 768px) {
  .goods-list__item .item-thumb {
    margin-bottom: 10px;
  }
}
.goods-list__item .item-thumb.noimg {
  cursor: default;
}
.goods-list__item .item-thumb:hover {
  opacity: 0.7;
}
.goods-list__item .item-thumb.noimg:hover {
  opacity: 1;
}
.goods-list__item .item-thumb img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.goods-list__item .item-name {
  font-weight: 500;
  margin-bottom: 5px;
}
.goods-list__item .bg--red {
  background-color: #E71619;
  color: #FFFFFF;
  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;
  padding: 5px !important;
  font-size: 0.7em;
  line-height: 1.8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 5px;
  text-align: center;
}