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
| .login-container{
| display: flex;
| flex-direction: column;
| justify-content: flex-start;
| align-items: center;
| height: 100vh;
| z-index: 1;
| }
|
| .banner-bg {
| position: fixed;
| width: 100%;
| height: 100vh;
| background: linear-gradient(#57E4CB, white);
| }
|
| .top-view {
| margin-top: 80px;
| }
|
| .bottom-view{
| width: 60%;margin-top: 80px;
| /* background-color: blue; */
| }
|
| .login-img{
| width: 100px;
| height: 100px;
| margin-top: 0px;
| }
| .bottom-btn{
| color: white;
| background-color: #5b92fd;
| box-shadow: 2px 2px 2px ;
| border-radius: 25px;
| width: 100% !important;
| }
| .page-text{
| font-size: 16px;
| font-weight: 800;
| color: white;
| margin-bottom: 80px;
| }
|
| .agree-text {
| width: 70vw;
| text-align: center;
| font-size: 12px;
| color: #b8b8b8;
| margin-top: 12rpx;
| }
|
| .user-info {
| display: flex;
| flex-flow: column;
| align-items: center;
| width: 70%;
| /* background-color: burlywood; */
| }
|
| .user-info_item>text{
| color: #49494971;
| line-height: 30px;
| }
|
| .user-info_item>input{
| height: 30px;
| line-height: 30px;
| border: #929292 1px solid;
| border-radius: 4px;
| background-color: white;
| }
|
| .user-info_item {
| display: flex;
| flex-flow: column;
| justify-content: flex-start;
| align-items: flex-start;
| margin-bottom: 8px;
| }
|
|