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
| // 商品列表样式
| .goods-wrap {
| padding: 16rpx 16rpx 100rpx 16rpx;
|
| .goods-item {
| .goods-swipe {
| width: 100%;
|
| .goods-info {
| display: flex;
| align-items: center;
| padding: 24rpx 16rpx;
| border-radius: 16rpx;
| margin-bottom: 16rpx;
| background-color: white;
| box-sizing: border-box;
| transition: transform 1s cubic-bezier(0.18, 0.89, 0.32, 1) !important;
|
| .left {
| /* width: 56px; */
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| .mid {
| width: 114px;
| height: 125px;
|
| .img {
| height: 100%;
| }
| }
|
| .right {
| height: 125px;
| flex: 1;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| margin-left: 10px;
|
| .title {
| flex: 1;
| flex-shrink: 0;
| font-size: 26rpx;
| color: #333;
| line-height: 44rpx;
| font-weight: 400;
| overflow: hidden;
| word-break: break-word;
| }
|
| .buy {
| display: flex;
| justify-content: space-between;
|
| .price {
| display: flex;
| color: #fa4126;
| font-size: 36rpx;
|
| .symbol {
| font-size: 10px;
| margin-right: 2px;
| margin-top: 8px;
| }
| }
| }
| }
| }
|
| .van-swipe-cell__right {
| background-color: #fa4126;
| text-align: center;
| display: flex;
| align-items: center;
| justify-content: center;
| width: 130rpx;
| color: #fff;
| font-size: 24rpx;
| height: 100%;
| }
| }
| }
| }
|
| // 提交订单栏样式
| .submit-footer {
| display: flex;
| position: fixed;
| left: 0;
| bottom: 0;
| width: 100%;
| background-color: white;
| padding: 12px 8px;
| align-items: center;
| justify-content: space-between;
| z-index: 10;
|
| .right {
| display: flex;
| margin-right: 16px;
| align-items: center;
| justify-content: center;
| }
| }
|
|