index.scss
1.05 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
.comp-tip-modal-wrap {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
.modal-bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0.9;
background-color: #000000;
}
.tip-wrap {
position: absolute;
top: 360px;
left: 50%;
margin-left: -250px;
width: 500px;
background-color: #ffffff;
border-radius: 5px;
.tip-body {
padding: 20px 30px;
word-break: break-all;
border-bottom: 1px solid #e0e0e0;
font-family: PingFang-SC-Regular;
font-size: 28px;
color: #444444;
letter-spacing: 0;
text-align: center;
}
.tip-operation {
height: 88px;
line-height: 88px;
text-align: center;
font-family: PingFang-SC-Medium;
font-size: 28px;
color: #444444;
letter-spacing: 0;
}
}
}