cashout.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
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
/* pages/main/rewardpoint/cashout/cashout.wxss */
page{
background: #f5f5f5;
}
.view_bottom {
background: #fff;
width: 100%;
position: fixed;
bottom: 0;
display: flex;
flex-direction: row;
}
.placeholder_input_wrap{
color:#ccc;
font-size:30rpx;
}
.input_wrap{
width:356rpx;
color:#333;
font-size:56rpx;
}
.btn_blue_radius {
background: #357aeb;
border-radius: 5px;
flex: 1;
color: #fff;
}
.btn_gray_radius {
flex: 1;
height: 42px;
background: #D0D0D0;
border-radius: 5px;
color: #999;
}
/* 遮罩层 */
.mask {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: #000;
opacity: 0.7;
z-index: 10;
}
.modal_lg {
width: 80%;
position: fixed;
left: 0;
right: 0;
margin: 0 auto;
background-color: #fff;
border-radius: 16rpx;
display: flex;
flex-direction: column;
align-items: center;
top: 180rpx;
z-index: 10;
}
.pwd_wrap_bg{
width: 96rpx;
height: 96rpx;
background: #FFFFFF;
border: 1px solid #E5E5E5;
text-align: center;
font-size: 50rpx;
}
.b-l-n {
border-left: none;
}
.pay-box {
margin: 0 auto;
display: flex;
flex-direction: row;
background: #FFFFFF;
width: 582rpx;
height: 96rpx;
}
/* 支付密码框聚焦的时候 */
.focus-border {
border-color: #E5E5E5;
}
/* 单个格式样式(聚焦的时候) */
.password-box {
flex: 1;
border: 1px solid #E5E5E5;
display: flex;
align-items: center;
justify-content: center;
}
/* 模拟光标 */
.cursor {
width: 2rpx;
height: 36rpx;
background-color: #333;
animation: focus 1.2s infinite;
}
/* 光标动画 */
@keyframes focus {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
/* 模拟输入的password的黑点 */
.input-black-dot {
width: 24rpx;
height: 24rpx;
background-color: #000;
border-radius: 50%;
}