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
| body {
| margin: 0;
| }
|
| .page {
| width: 100%;
| height: 100vh;
| background: url(./login.png) no-repeat;
| background-size: cover;
| }
|
| .title {
| color: #FFFFFF;
| position: absolute;
| top: 26%;
| width: 100%;
| text-align: center;
| font-weight: bold;
| font-size: 18px;
| }
|
| .login_box {
| /* border: 1px solid #CCCCCC;
| border-radius: 12px; */
| position: absolute;
| top: 50%;
| width: 100%;
| /* text-align: center; */
| }
|
| .row {
| width: 100%;
| text-align: center;
| padding: 0 10px;
| }
|
| .label {
| float: left;
| width: 70px;
| text-align: right;
| }
|
| .text {
| color: #FFFFFF;
| }
|
| .input {
| height: 2.8rem;
| line-height: 2.8rem;
| width: 60%;
| border: 1px solid #a09898;
| border-radius: 0.5rem;
| padding-left: 5px;
| text-align: left;
| margin: 0 auto;
| background-color: #FFF0;
| color: #FFF;
| }
|
| .bind_div {
| position: fixed;
| bottom: 5%;
| width: 100%;
| height: 45px;
| line-height: 45px;
| text-align: center;
| }
|
| .bind_btn {
| /* width: -webkit-fill-available; */
| width: 50%;
| margin: 0 auto;
| background-color: #04A604;
| color: #FFFFFF;
| border-radius: 12px;
| text-align: center;
| line-height: 45px;
|
| font-weight: 700;
| font-size: 17px;
|
| }
|
| .h_btn0 {
| display: none;
| font-weight: 700;
| height: 45px;
| line-height: 45px;
| border-bottom: 2px solid #F7F7F7;
| padding-left: 30px;
| box-sizing: border-box;
| }
|
|