home.acss 2.14 KB
Newer Older
jiangjiantao's avatar
jiangjiantao committed
1
.page {
2 3 4 5 6 7 8
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
}

jiangjiantao's avatar
jiangjiantao committed
9 10 11 12 13 14 15
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0rpx;
  top: 0rpx;
  bottom: 0rpx;
16
  /* background:url(/images/bg_home.png) no-repeat fixed top; */
jiangjiantao's avatar
jiangjiantao committed
17
  background-size: 100% 100%;
18 19
  /* border: 2px solid red; */
  box-sizing: border-box;
20 21
}

jiangjiantao's avatar
jiangjiantao committed
22
.container {
23 24 25 26 27
  position: relative;
  width: 750rpx;
  height: 430rpx;
  margin: 0 auto;
  margin-top: 38rpx;
28
}
jiangjiantao's avatar
jiangjiantao committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

/* 商品价格 */

.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;
}
jiangjiantao's avatar
jiangjiantao committed
83 84 85 86 87 88 89 90

/* 提货商品布局 */
.page-pick-goods {
  display: flex;
  flex-direction: column;
  align-items: center;  
  width: 100%;
  height: 100%;
jiangjiantao's avatar
jiangjiantao committed
91 92 93
  position: absolute;
   background: url(/images/scan_header_bg.png) no-repeat fixed top;
  background-size: 100% 200rpx;
jiangjiantao's avatar
jiangjiantao committed
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
}

/* 提货商品布局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%;
jiangjiantao's avatar
jiangjiantao committed
116
  background: transparent;
jiangjiantao's avatar
jiangjiantao committed
117
  margin-top: 45rpx
jiangjiantao's avatar
jiangjiantao committed
118
}