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
| .main_wrap{
|
| }
| .footer_wrap {
| position: fixed;
| z-index: 999;
| bottom: 0;
| left: 0;
| width: 750rpx;
| padding: 0rpx 40rpx;
| background-color: #fff;
| box-shadow: 0rpx -1rpx 0rpx 0rpx #EEEEEE;
| .content{
| height: 100rpx;
| align-items: center;
| display: flex;
| justify-content: space-between;
| }
| .btns{
| display: flex;
| align-items: center;
| height: 100rpx;
| .btn{
| padding: 0;
| margin-top: 16rpx;
| }
| }
| .share {
| display: flex;
| justify-content: center;
| align-items: center;
| height: 72rpx;
| width: 188rpx;
| background-color: var(--themeColor);
| font-weight: 500;
| color: #FFFFFF;
| border-radius: 8rpx;
| .sheji{
| width: 28rpx;
| margin-right: 8rpx;
| }
| }
| .item {
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| font-size: 20rpx;
| color: #666666;
| margin-right: 48rpx;
| image {
| width: 44rpx;
| height: 40rpx;
| margin-bottom: 2rpx;
| }
| }
| }
| .shade_modal{
| position: fixed;
| bottom: 0;
| width: 100%;
| z-index: 9999;
| background-color: #fff;
| border-radius: 24rpx 24rpx 0rpx 0rpx;
| .btns{
| display: flex;
| height: 264rpx;
| display: flex;
| align-items: center;
| padding: 0 40rpx;
| .item{
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| flex: 1;
| font-size: 26rpx;
| background-color: #fff;
| image{
| width: 80rpx;
| height: 80rpx;
| margin-bottom: 10rpx;
| }
| }
| }
| .cancel{
| height: 100rpx;
| width: 100%;
| display: flex;
| justify-content: center;
| align-items: center;
| border: 1rpx solid #e5e5e5;
| }
| }
| .shade{
| position: fixed;
| width: 100%;
| height: 100%;
| z-index: 1000;
| background-color: rgba(0,0,0,.5);
| }
|
|