index_2.css
673 字节
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
.container{
position: relative;
}
.mid{
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.mask{
width: 7.5rem;
height: 100%;
background-color: #ffffff;
opacity: 0.9;
position: fixed;
top: 1.69rem;
z-index: 999;
display: flex;
align-items: center;
}
.pop{
position: absolute;
left:0;
right: 0;
z-index: 999;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
font-size: 0.48rem;
font-family:PingFang-SC-Bold;
font-weight:bold;
}
.pop_color{
color:rgba(166,16,16,1);
}
.pop_text{
padding: 0.42rem;
}