add-account.scss
2.83 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
.add-account-page {
.add-form {
margin: 30px 0 80px;
background: #fff;
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
overflow: hidden;
box-sizing: border-box;
li {
width: 100%;
height: 86px;
border-top: 1px solid #e0e0e0;
margin-left: 30px;
box-sizing: border-box;
}
li:first-child {
border-top: none;
}
label {
color: #444;
font-size: 34px;
float: left;
line-height: 86px;
}
input {
font-size: 28px;
height: 40px;
line-height: 40px;
color: #b0b0b0;
float: left;
border: none;
background: transparent;
margin: 23px 0 0 60px;
width: 380px;
}
input::-webkit-input-placeholder {
color: #e0e0e0;
}
input:-moz-placeholder {
color: #e0e0e0;
}
input::-moz-placeholder {
color: #e0e0e0;
}
input:-ms-input-placeholder {
color: #e0e0e0;
}
.notice {
float: left;
font-size: 28px;
color: #444;
height: auto;
width: auto;
margin-top: 25px;
padding: 2px 10px 10px;
border-bottom: none;
}
.username {
color: #b0b0b0;
float: left;
font-size: 28px;
width: 410px;
height: 40px;
margin: 23px 0 0 60px;
line-height: 40px;
}
.bank-info {
padding-left: 165px;
margin-top: 26px;
img {
width: 32px;
height: 32px;
display: inline-block;
}
span {
line-height: 32px;
position: absolute;
margin-left: 10px;
margin-top: 1px;
}
}
}
.disabled {
opacity: 0.5;
}
.success {
display: none;
.success-icon {
margin-top: 208px;
}
.success-txt {
text-align: center;
font-size: 24px;
color: #444;
margin-bottom: 90px;
}
}
.error {
display: none;
.error-txt1 {
color: #444;
font-size: 24px;
}
.error-txt2 {
color: #b0b0b0;
font-size: 22px;
line-height: 36px;
margin: 10px 0 105px;
}
.contact-cs {
width: 100%;
position: fixed;
bottom: 45px;
text-align: center;
color: #444;
font-size: 28px;
}
}
}