闫增涛
2024-02-23 fdfb3ca757ecd6c396632ed276ff354671d3a7e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.footer-cont {
  background-color: #fff;
  padding: 16rpx;
}
 
.icon-warp {
  width: 110rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
 
.operate-wrap {
  position: relative;
}
 
.bottom-operate-left {
  width: 100%;
}
 
.bottom-operate-left .icon-warp {
  width: 50%;
}
 
.tag-cart-num {
  display: inline-block;
  position: absolute;
  left: 50rpx;
  right: auto;
  top: 6rpx;
  color: #fff;
  line-height: 24rpx;
  text-align: center;
  z-index: 99;
  white-space: nowrap;
  min-width: 28rpx;
  border-radius: 14rpx;
  background-color: #fa550f !important;
  font-size: 20rpx;
  font-weight: 400;
  padding: 2rpx 6rpx;
}
 
.operate-text {
  color: #666;
  font-size: 20rpx;
}
 
.soldout {
  height: 80rpx;
  background: rgba(170, 170, 170, 1);
  width: 100%;
  color: #fff;
}
 
.addCart-disabled,
.bar-addCart-disabled {
  background: rgba(221, 221, 221, 1) !important;
  color: #fff !important;
  font-size: 28rpx;
}
 
.buyNow-disabled,
.bar-buyNow-disabled {
  background: rgba(198, 198, 198, 1) !important;
  color: #fff !important;
  font-size: 28rpx;
}
 
.bar-separately,
.bar-buy {
  width: 254rpx;
  height: 80rpx;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.bar-separately {
  background: #ffece9;
  color: #fa4126;
  border-radius: 40rpx 0 0 40rpx;
}
 
.bar-buy {
  background-color: #fa4126;
  border-radius: 0rpx 40rpx 40rpx 0rpx;
}
 
.flex {
  display: flex;
  display: -webkit-flex;
}
 
.flex-center {
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
 
.flex-between {
  justify-content: space-between;
  -webkit-justify-content: space-between;
}