_img-check.css
1.03 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
/* ======================= *\
Module: 图片旋转验证
\* ======================= */
.img-check {
margin-top: 45px;
margin-bottom: 30px;
}
.img-check-header {
font-size: 28px;
line-height: 35px;
text-align: left;
margin-bottom: 30px;
color: #b0b0b0;
}
.img-check-refresh {
float: right;
font-size: 22px;
color: #d0021b;
}
.img-check-pics {
display: flex;
justify-content: space-between;
list-style: none;
padding: 0;
margin: 0;
li {
background-size: 600px 600px;
background-repeat: no-repeat;
background-color: #575757;
width: 150px;
height: 150px;
}
}
#js-img-check {
&.hide {
display: none !important;
}
&.popup {
display: flex;
align-items: center;
justify-content: center;
position: fixed;
width: 100%;
height: 100%;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 99;
background-color: rgba(0, 0, 0, 0.3);
}
}