-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
66 lines (61 loc) · 1.02 KB
/
app.wxss
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
/**app.wxss**/
::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
color: transparent;
}
.mask {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
}
.modal{
width: 600rpx;
background: #fff;
border-radius: 20rpx;
padding: 48rpx;
box-sizing: border-box;
box-shadow: 0 0px 6rpx 0 rgba(0, 0, 0, .1),
0 2rpx 2px -2rpx rgba(0, 0, 0, .3);
}
.modal .title {
font-size: 36rpx;
font-weight: 500;
text-align: center;
margin-bottom: 24rpx;
}
.modal .desc {
font-size: 28rpx;
color: #71717A;
text-align: center;
margin-bottom: 48rpx;
}
.btn-group {
display: flex;
justify-content: space-between;
gap: 24rpx;
}
.btn {
flex: 1;
height: 80rpx;
line-height: 80rpx;
text-align: center;
border-radius: 12rpx;
font-size: 28rpx;
}
.btn.cancel {
background: #f4f4f5;
color: #09090B;
}
.btn.confirm {
background: #18181B;
color: #fff;
}