index.wxss
2.2 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
page{
width: 100%;
height: 100%;
}
.container{
background-color: rgb(247,247,249);
padding: 20rpx;
box-sizing: border-box;
width: 100%;
height: 100%;
}
.codeBox1{
position: relative;
background-color: #fff;
}
.codeBox2{
position: relative;
background-color: #fff;
margin-top: 20rpx;
}
.qrBox {
display: flex;
/* flex-direction: column; */
align-items: flex-end;
padding: 20rpx;
position: relative;
}
.qr-section {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.qr-code {
width: 300rpx;
height: 300rpx;
}
.code-box {
position: absolute;
bottom: -30rpx;
background-color: white;
border: 2rpx solid red;
padding: 5rpx 15rpx;
border-radius: 8rpx;
}
.code-text {
font-size: 28rpx;
color: #333;
font-weight: bold;
}
.dashed-line {
width: 28vw;
height: 2rpx;
border-bottom: 2rpx dashed red;
/* position: relative; */
/* top: 20rpx; */
}
.code-display {
display: flex;
align-items: center;
/* margin-top: 20rpx; */
transform: translateY(20rpx);
z-index: 8;
position: absolute;
right: 10px;
/* justify-content: center; */
}
.label {
font-size: 30rpx;
font-weight: bold;
color: #333;
}
.code-value {
font-size: 30rpx;
color: red;
font-weight: bold;
}
.instruction {
margin-top: 20rpx;
font-size: 26rpx;
color: #666;
text-align: center;
position: absolute;
top: 0;
right: 0;
text-align: left;
width: 50%;
}
.guide-title {
font-size: 32rpx;
font-weight: bold;
margin-bottom: 20rpx;
padding-top: 40rpx;
text-align: center;
}
.steps {
margin-top: 20rpx;
font-size: 30rpx;
color: #666;
display: flex;
flex-direction: column;
align-items: flex-start;
line-height: 50rpx;
padding-left: 50rpx;
}
.stepsTxt{
font-weight: bold;
font-size: 36rpx;
color: #000;
}
.banner {
width: 100%;
}
.input-section {
margin-top: 40rpx;
display: flex;
flex-direction: column;
align-items: center;
}
.code-input {
width: 80%;
height: 80rpx;
border: 1px solid #ddd;
border-radius: 10rpx;
padding: 0 20rpx;
font-size: 28rpx;
}
.open-btn {
width: 80%;
height: 80rpx;
background-color: #007aff;
color: white;
text-align: center;
line-height: 80rpx;
font-size: 30rpx;
border-radius: 10rpx;
margin-top: 20rpx;
}