tom
2023-12-06 9e968679ed2e6937aeb7b50a6c450d5d19251f42
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
body {
    margin: 0;
}
 
.page {
    width: 100%;
    height: 100vh;
    background: url(./unbind.png) no-repeat;
    background-size: cover;
}
 
.title {
    color: #FFFFFF;
    position: absolute;
    top: 36%;
    right: 30%;
    font-weight: bold;
    font-size: 18px;
}
 
.login_box {
    /* border: 1px solid #CCCCCC;
    border-radius: 12px; */
    position: absolute;
    top: 60%;
    width: 100%;
    /* text-align: center; */
}
 
.row {
    margin-left: 20%;
    display: flex;
}
 
.label {
    float: left;
    width: 70px;
    text-align: right;
}
 
.text {
    color: #FFFFFF;
}
 
.input {
    padding: 0 10px;
}
 
.bind_btn {
    width: -webkit-fill-available;
    margin: 0 10%;
    background-color: #04A604;
    height: 45px;
    position: fixed;
    bottom: 5%;
    color: #FFFFFF;
    border-radius: 12px;
    text-align: center;
    line-height: 45px;
}
 
.dialog {
    display: none;
    position: fixed;
    z-index: 10;
    top: 30vh;
    left: 10vw;
    right: 10vw;
    background-color: white;
    height: 30vh;
    border-radius: 12px;
    line-height: 50px;
    text-align: center;
}
 
.btn_model {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    border-radius: 12px;
    background-color: #00FF00;
    height: 40px;
    line-height: 40px;
    
}