| 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
 | | .footer { |  |   position: fixed; |  |   bottom: 0; |  |   left: 0; |  |   width: 750rpx; |  |   background-color: #fff; |  |   box-shadow: 0rpx -1rpx 0rpx 0rpx #EEEEEE; |  |   .btns{ |  |     display: flex; |  |     align-items: center; |  |     height: 100rpx; |  |     padding: 12rpx 40rpx; |  |     .btn{ |  |       padding-top: 20rpx; |  |     } |  |   } |  |   .sub_btn { |  |     flex: 1; |  |     display: flex; |  |     justify-content: center; |  |     align-items: center; |  |     height: 72rpx; |  |     width: 152rpx; |  |     background-color: var(--themeColor); |  |     font-weight: 500; |  |     color: #FFFFFF; |  |     font-style: 28rpx; |  |     box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(176,135,113,0.3), inset 0rpx 2rpx 2rpx 0rpx rgba(255,255,255,0.33); |  |     border-radius: 8rpx; |  |     .icon{ |  |       width: 34rpx; |  |       margin-right: 8rpx; |  |     } |  |   } |  |   .item { |  |     display: flex; |  |     flex-direction: column; |  |     justify-content: center; |  |     align-items: center; |  |     font-size: 20rpx; |  |     color: #666666; |  |     margin-right: 48rpx; |  |   |  |     .icon { |  |       width: 44rpx; |  |     } |  |   } |  | } | 
 |