kongdeqiang
2023-04-06 538ff05f46412603552e9e01ed447649d36e4ced
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
.authorize {
    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%;
        }
    }
 
    .code-image {
        .ivu-spin-fix .ivu-spin-main {
            height: 20px;
        }
    }
 
    .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;
        height: 100%;
    }
 
    .logos-wrap {
        margin-top: 8vh;
        margin-bottom: 5vh;
        display: flex;
        flex-direction: column;
        align-items: center;
 
        .logos {
            width: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
 
            .site-logo {
                box-shadow: 0 1px 5px rgba(27, 31, 35, .15);
            }
 
            .top {
                z-index: 1;
            }
 
            .line {
                position: absolute;
                top: 50%;
                left: 0;
                width: 100%;
                content: "";
                border-bottom: 2px dashed #e1e4e8;
            }
        }
 
        .auth-title {
            color: #24292e;
            font-size: 24px;
            font-weight: 400;
            margin-top: 20px;
        }
    }
 
    .auth-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
 
        .auth-info-wrap {
            width: 100%;
            border-bottom: 1px solid #e1e4e8;
            padding: 24px;
 
            .auth-detail {
                height: 40px;
                display: flex;
                align-items: center;
 
                .auth-pic {
                    margin-right: 16px;
                }
 
                .auth-detail-href {
                    font-weight: 500;
                }
 
                .auth-detail-title {
                    font-weight: 500;
                    color: #24292e;
                }
 
                .auth-detail-sub-title {
                    font-size: 12px;
                    color: #586069
                }
 
                .auth-detail-strong {
                    font-weight: 500;
                }
            }
        }
 
        .button-confirm {
            width: 100%;
            padding: 0 24px;
            margin-top: 24px;
        }
 
        .to-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            margin: 16px 0 24px 0;
            color: #586069;
        }
 
        .to-strong {
            font-size: 12px;
            color: #24292e;
            font-weight: 600;
        }
    }
}