pop_up.wxss
784 Bytes
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
/* components/resources/pop_up/pop_up.wxss */
.pop_up {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.pop_content {
width: 70%;
position: relative;
}
.pop_bd {
width: 100%;
background-color: #fff;
border-radius: 15rpx;
text-align: center;
box-sizing: border-box;
overflow: hidden;
padding-top: 40rpx;
}
.linView {
margin-top: 20rpx;
background-color: #e0e0e0;
height: 2rpx;
}
.okBtn {
background-color: #fff;
margin: 0;
padding: 0;
}
.okBtn::after {
border-radius: 0;
border: 0;
}
.pop_title {
font-size: 36rpx;
}
.pop_btn {
text-align: center;
}
.hide {
display: none;
}