.goods-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.goods-item {
  overflow: hidden;
  height: 310px;
  width: 210px;
  margin-bottom: 18px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.12);
}

.goods-item-img {
  width: 210px;
  height: 210px;
  object-fit: cover;
}

.goods-item-content {
  padding: 6px 10px 0 9px;
}

.goods-item-content .title {
  margin-bottom: 6px;
  line-height: 20px;
  font-size: 12px;
  color: #111;
}

.goods-item-content .tag {
  height: 16px;
  padding: 0 3px;
  margin-right: 6px;
  border-radius: 3px;
  font-size: 10px;
  color: #fff;
  letter-spacing: .38px;
  background-image: linear-gradient(270deg, #79e8c7, #08c29e);
}

.goods-item-content .price {
  color: #111;
  font-size: 12px;
}

.goods-item-tags {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: 12px 0 14px;
}

.goods-item-tags .label {
  border-radius: 6px;
  line-height: 20px;
  padding: 2px 6px;
  margin-right: 6px;
  font-size: 14px;
  color: #ff5000;
  background-color: #fff2e6;
  word-break: keep-all;
}

.goods-item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999;
  font-size: 12px;
  padding-top: 20px;
}

.goods-item-btn button {
  height: 28px;
  width: 85px;
  border-radius: 14px;
  color: #ff5000;
  border: 1px solid #ff5000;
  background-color: transparent;
}

.release-edit-file {
  /* vertical-align: top;
  display: inline-block; */
  cursor: pointer;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  border: 1px dashed #d6d9df;
}

.release-edit-file input {
  width: 0px;
  height: 0px;
  overflow: hidden;
}

.release-edit-file span {
  font-size: 24px;
  color: rgba(85, 132, 255, 1);
}

.release-edit-file div {
  font-size: 12px;
  line-height: 1;
  color: #666;
  text-align: center;
  margin: 12px 0 0;
}