.goods-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.goods-list .goods-item {
  position: relative;
  width: calc(25% - 3.75px);
  cursor: pointer;
  margin-bottom: 5px;
  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;
  background-color: #f5f5f5;
}
.goods-list .goods-item:not(:nth-child(4n)) {
  margin-right: 5px;
}
.goods-list .goods-item--select {
  border: solid 4px #FF0000;
}
.goods-list .goods-item--minikura::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background-color: #FF0000;
  background-image: url(../img/minikura.png);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
}
.goods-list .goods-item--not-see-family::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    background-color: #FF0000;
    background-image: url(../img/not-eye.png);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
}
.goods-list .goods-img {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .goods-list .goods-item {
    width: calc(20% - 12px);
    margin-bottom: 20px;
  }
  .goods-list .goods-item:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .goods-list .goods-item:not(:nth-child(5n)) {
    margin-right: 15px;
  }
  .goods-list .goods-item--minikura::after {
    width: 40px;
    height: 40px;
    background-size: 22px;
  }
}