setting-message.wxss
1.04 KB
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
.message-wrapper {
position: absolute;
display: flex;
width: 100%;
height: 100%;
z-index: 3000;
left: 0;
top: 0;
align-items: center;
justify-content: center;
}
.setting-layer {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
}
.setting-message {
position: absolute;
display: block;
width: 500rpx;
background-color: #fff;
}
.setting-message .message-title {
position: relative;
display: block;
padding: 30rpx 20rpx 30rpx 20rpx;
font-size: 28rpx;
color: gray;
text-align: center;
border-bottom: 1px solid lightgray;
}
.setting-message .message-button {
position: relative;
width: 100%;
display: flex;
}
.message-button button {
border: none;
width: 50%;
text-align: center;
height: 80rpx;
font-size: 30rpx;
line-height: 80rpx;
border-radius: 0;
color: lightskyblue;
}
.border-right {
border-right: 1px solid lightgray !important;
color: gray !important;
}