forked from gzzfw/frontEnd/gzDyh

dminyi
2024-09-09 4590bfea932d6bbde4e54e7ddc96e8bba65efe4c
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
.logAndSign {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
 
    &-header {
        height: 66px;
        min-height: 66px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
 
        &-logo {
            display: flex;
            align-items: center;
 
            img {
                height: 66px;
            }
 
            &-text {
        color: @main-color;
                margin-left: 8px;
                text-align-last: justify;
                text-align: justify;
                text-justify: distribute-all-lines; // 这行必加,兼容ie浏览器
            }
 
            &-title {
                font-size: 16px;
            }
        }
 
        &-right {
            display: flex;
            margin-right: -24px;
 
            &-active {
                color: @main-color;
            }
 
            li {
                float: left;
                padding: 24px;
                font-size: 16px;
                cursor: pointer;
 
                &:hover {
                    color: @main-color;
                }
            }
        }
    }
 
    &-main {
        display: flex;
        flex-direction: column;
        height: calc(100% - 66px - 48px);
 
        &-first {
            width: 100%;
            height: 100%;
            position: relative;
            background-image: url('../../../assets/images/backgroundImage.png');
            background-size: 100% 100%;
 
            &-beforeLog,
            &-afterLog {
                position: absolute;
                right: 24px;
                top: 50%;
                margin-top: -250px;
                padding: 16px 32px 32px;
                width: 448px;
                background-color: #fff;
                border-radius: @border-radius-base;
            }
 
            &-beforeLog {
                &-tab {
                    .ant-tabs-nav-list {
                        width: 100%;
                    }
 
                    .ant-tabs-tab {
                        flex: 1;
                        font-size: 20px !important;
                    }
 
                    .ant-tabs-tab-btn {
                        margin: auto;
                    }
 
                    .ant-tabs-top > .ant-tabs-nav::before {
                        border: 1px solid #000000;
                    }
                }
 
                &-tip {
                    padding: 8px;
                    margin-bottom: 16px;
                    background-color: @main-color-1;
                    color: @main-color-4;
                }
 
                &-form {
                    .ant-form-item {
                        margin-bottom: 16px;
                    }
                }
 
                &-wxQrcode {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    .beforeLog-wxQrcode-img {
                        width: 120px;
                        height: 120px;
                        border: 1px solid #ccc;
                        border-radius: @border-radius-base;
                        margin-bottom: 6px;
                    }
                }
 
                &-other {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
 
                    .beforeLog-other-divider {
                        color: @text-color-secondary;
                    }
                }
 
                &-switch {
                    width: 40px;
                    height: 40px;
                    position: absolute;
                    top: 4px;
                    right: 4px;
                    color: @main-color;
                    text-align: right;
 
                    .beforeLog-switch-icon {
                        font-size: 40px;
 
                        &::after {
                            content: '';
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 0;
                            height: 0;
                            border-bottom: 40px solid #fff;
                            border-right: 40px solid transparent;
                        }
                    }
                }
            }
 
            &-afterLog {
                &-userInfo {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
 
                    .afterLog-userInfo-img {
                        height: 100px;
                        margin-bottom: 16px;
                    }
 
                    .afterLog-userInfo-label {
                        font-size: 20px;
                        margin-bottom: 32px;
                    }
 
                    .afterLog-userInfo-subtitle {
                        color: @main-color;
                        margin-top: 12px;
                        margin-bottom: 32px;
                    }
 
                    .afterLog-userInfo-time {
                        font-size: 12px;
                        color: @text-color-secondary;
                        margin-bottom: 32px;
                    }
                }
            }
        }
 
        &-idCode {
            font-family: Arial;
            font-style: italic;
            font-size: 24px;
            width: 100px;
            text-align: center;
            color: @main-color;
        }
    }
 
    &-footer {
        width: 100%;
        text-align: center;
        background-color: #fff;
        font-size: 12px;
        height: 48px;
        line-height: 48px;
        color: @text-color-secondary;
    }
}