zhangzeli
2022-01-05 cefe914628acd813a729a8a7ec697fe9810812f3
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
.relate {
    height: 100%;
    background: url('../assets/background.svg');
    background-color: #f0f2f5;
 
    .other-thing {
        margin-top: 3vh;
    }
 
    .ivu-tabs-nav-container {
        line-height: 2;
        font-size: 17px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        position: relative;
        zoom: 1;
    }
 
    .form {
        padding-top: 1vh;
 
        .input-verify {
            width: 70%;
        }
    }
 
    .back,
    .forget-pass,
    .other-way {
        font-size: 14px;
    }
 
    .icons {
        display: flex;
        align-items: center;
    }
 
    .other-icon {
        cursor: pointer;
        margin-left: 10px;
        display: flex;
        align-items: center;
        color: rgba(0, 0, 0, .2);
 
        :hover {
            color: #2d8cf0;
        }
    }
 
    .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 368px;
        height: 100%;
    }
}