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
|
| .usable-distr .popup-bg {
| position: fixed;
| top: 0;
| right: 0;
| bottom: 0;
| left: 0;
| background: rgba(0, 0, 0, 0.6);
| z-index: 99;
| }
| .usable-distr .main {
| position: fixed;
| width: 100%;
| bottom: 0;
| min-height: 400rpx;
| max-height: 1400rpx;
| background-color: #fff;
| -webkit-transform: translate3d(0, 980rpx, 0);
| transform: translate3d(0, 980rpx, 0);
| transition: -webkit-transform 0.2s cubic-bezier(0, 0, 0.25, 1);
| transition: transform 0.2s cubic-bezier(0, 0, 0.25, 1);
| transition: transform 0.2s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.2s cubic-bezier(0, 0, 0.25, 1);
| padding-bottom: env(safe-area-inset-bottom);
| z-index: 99;
| }
| .usable-distr.open .main {
| -webkit-transform: translate3d(0, 0, 0);
| transform: translate3d(0, 0, 0);
| }
| .usable-distr.close .popup-bg {
| display: none;
| }
| .distr-tit {
| text-align: center;
| font-size: 39rpx;
| margin-top: 23rpx;
| margin-bottom: 70rpx;
| }
| .distr-list {
| padding: 25rpx;
| margin-bottom: 25rpx;
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
| .bor_botm {
| border-bottom: 1rpx solid #cacaca;
| }
| .distr_btn button {
| width: 90%;
| margin: 0 auto;
| margin-bottom: 30rpx;
| height: 60rpx;
| line-height: 60rpx;
| border-radius: 30rpx;
| }
|
|