.page {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
}

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0rpx;
  top: 0rpx;
  bottom: 0rpx;
  /* background:url(/images/bg_home.png) no-repeat fixed top; */
  background-size: 100% 100%;
  /* border: 2px solid red; */
  box-sizing: border-box;
}

.container {
  position: relative;
  width: 750rpx;
  height: 430rpx;
  margin: 0 auto;
  margin-top: 38rpx;
}

/* 商品价格 */

.good-list-item-price-font {
  color: #F96146;
  font-size: 44rpx;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  margin-left: 24rpx;
}

/* 商品数量 */

.good-list-item-quantity-font {
  color: #8C8C8C;
  font-size: 32rpx;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  margin-right: 24rpx
}

/* 商品名称 */

.good-list-item-name-font {
  color: #333333;
  font-size: 32rpx;
  font-family: PingFangSC-Semibold, PingFang SC;
  font-weight: 600;
  margin-left: 24rpx;
  margin-top: 25rpx;
}

/* 商品列表项价格和数量 */

.scan-good-list-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 80rpx;
  justify-content: space-between;
  align-items: center;
}

/* 商品列表项背景 */

.scan-list-bg {
  height: 158rpx;
  border-radius: 16px;
  background-color: white;
  margin-bottom: 24rpx;
  box-shadow: 0px 2px 10px 0px rgba(77, 81, 102, 0.1);
  display: flex;
  flex-direction: column;
}

/* 提货商品布局 */
.page-pick-goods {
  display: flex;
  flex-direction: column;
  align-items: center;  
  width: 100%;
  height: 100%;
  position: absolute;
   background: url(/images/scan_header_bg.png) no-repeat fixed top;
  background-size: 100% 200rpx;
}

/* 提货商品布局top部分 */

.pick-goods-header {
  width: 100%;
  height: 200rpx;
  display: flex;
  flex-direction: column;
  font-size: 42px;
  align-items: center;
  justify-content: center;
  font-size: 40rpx;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
}

/* 提货商品body部分 */
.pick-goods-body {
  width: 700rpx;
  height: 100%;
  background: transparent;
  margin-top: 45rpx
}