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
| .weui-actionsheet {
| background-color: white;
| }
|
| .weui-mask.weui-mask_hidden {
| opacity: 0;
| transform: scale3d(1, 1, 0)
| }
|
| .weui-mask {
| opacity: 1;
| transform: scale3d(1, 1, 1);
| transition: all .3s
| }
|
| .close {
| display: block;
| text-align: end;
| /* background-color: red; */
| padding: 8px;
| }
|
| .close>mp-icon {
| background-color: #F0F0F0;
| border-radius: 50%;
| padding: 4px;
| }
|
|