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
| .regist {
| height: 100%;
| background: url('../assets/background.svg');
| background-color: #f0f2f5;
|
| .form {
| padding-top: 1vh;
|
| .regist-title {
| display: block;
| font-weight: bold;
| font-size: 16px;
| margin-bottom: 2vh;
| }
|
| .input-verify {
| width: 67%;
| }
| }
|
| .regist-btn {
| width: 50%;
| }
|
| .to-login {
| font-size: 14px;
| line-height: 35px;
| }
|
| .content {
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| width: 368px;
| height: 100%;
| }
| }
|
|