mall.wxss 988 字节
/* pages/mall/mall.wxss */

.goods_box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.good_item{
  margin-bottom: 40rpx;
}
.good_img {
  width: 370rpx;
  height: 370rpx;
  display: flex;
  align-items: center;
  justify-content: center;
}

.good_img image {
  width: 100%;
  height: 100%;
}

.charge_btn {
  width: 189rpx;
  height: 60rpx;
  background: rgba(255, 173, 80, 1);
  border-radius: 30rpx;
  font-size: 30rpx;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 27rpx;
}

.good_info_box {
  padding: 20rpx 32rpx;
}

.good_title {
  font-size: 28rpx;
  color: #000;
}

.good_info {
  font-size: 26rpx;
  color: #666;
  margin-top: 20rpx;
}

.good_num_box {
  font-size: 24rpx;
  color: #f00;
  display: flex;
  align-items: center;
  margin-top: 20rpx;
}

.good_num {
  font-size: 32rpx;
}

.original_price {
  color: #a5a6a8;
  text-decoration: line-through;
  margin-left: 26rpx;
}