verigyCode.wxss
1.8 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* pages/index/verigyCode/verigyCode.wxss */
.mask_box {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: center;
}
.popup_box {
width: 686rpx;
height: 486rpx;
background: rgba(255, 255, 255, 1);
border-radius: 36rpx;
}
.popup_title {
font-size: 36rpx;
font-weight: bold;
color: #000;
border-bottom: 1rpx solid #f5f6fa;
padding: 30rpx 0;
text-align: center;
}
.popup_content {
font-size: 32rpx;
color: #000;
padding: 30rpx;
}
.popup_btn_box {
display: flex;
align-items: center;
justify-content: space-between;
padding: 60rpx;
box-sizing: border-box;
}
.popup_btn {
width: 260rpx;
height: 80rpx;
background: rgba(255, 255, 255, 1);
border: 1rpx solid rgba(2, 134, 255, 1);
border-radius: 40rpx;
font-size: 32rpx;
color: #0286ff;
display: flex;
align-items: center;
justify-content: center;
}
.popup_active {
background: #0286ff;
color: #fff;
}
/* */
.code_box {
width: 686rpx;
height: 703rpx;
background: rgba(255, 255, 255, 1);
box-shadow: 0rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 36rpx;
position: absolute;
bottom: 30rpx;
font-size: 30rpx;
color: #000;
padding: 0 40rpx;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.code_img {
width: 328rpx;
height: 328rpx;
margin-top: 90rpx;
}
.code_img image {
width: 100%;
height: 100%;
}
.popup_content {
padding: 30rpx;
}
.popup_content input {
font-size: 36rpx;
}
.popup_content .popup_active {
width: 50%;
margin: 0 auto;
border-radius: 40rpx;
margin-top: 92rpx;
padding: 15rpx 30rpx;
display: flex;
align-items: center;
justify-content: center;
}