@blueking/ai-ui-sdk 0.1.18-beta.2 → 0.1.18-beta.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/render-aside/index.vue.css +9 -9
- package/dist/components/render-aside/index.vue.js +1 -1
- package/dist/components/render-auto-height-textarea/index.script.vue.js.js +3 -3
- package/dist/components/render-auto-height-textarea/index.vue.css +11 -11
- package/dist/components/render-auto-height-textarea/index.vue.js +1 -1
- package/dist/components/render-auto-refresh/index.vue.css +8 -8
- package/dist/components/render-auto-refresh/index.vue.js +1 -1
- package/dist/components/render-checkbox/index.vue.css +9 -9
- package/dist/components/render-checkbox/index.vue.js +1 -1
- package/dist/components/render-choose-tag/index.vue.css +7 -7
- package/dist/components/render-choose-tag/index.vue.js +1 -1
- package/dist/components/render-collapse/index.vue.css +2 -2
- package/dist/components/render-collapse/index.vue.js +1 -1
- package/dist/components/render-dataset/components/dataset-data-tool-icons/index.script.vue.js +1 -1
- package/dist/components/render-dataset/components/edit-dataset-data/index.vue.css +3 -3
- package/dist/components/render-dataset/components/edit-dataset-data/index.vue.js +1 -1
- package/dist/components/render-dataset/components/operation-record/index.vue.css +4 -4
- package/dist/components/render-dataset/components/operation-record/index.vue.js +1 -1
- package/dist/components/render-dataset/components/operation-record/table/index.vue.css +1 -1
- package/dist/components/render-dataset/components/operation-record/table/index.vue.js +1 -1
- package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.css +2 -2
- package/dist/components/render-dataset/components/operation-record/view-op-result/index.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset/index.vue.css +2 -2
- package/dist/components/render-dataset/components/plus-dataset/index.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/api.vue.css +2 -2
- package/dist/components/render-dataset/components/plus-dataset-data/form/api.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/footer.vue.css +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/footer.vue.js +1 -1
- package/dist/components/render-dataset/components/plus-dataset-data/form/index.vue.css +2 -2
- package/dist/components/render-dataset/components/plus-dataset-data/form/index.vue.js +1 -1
- package/dist/components/render-dataset/components/review-dataset-data/index.vue.css +10 -10
- package/dist/components/render-dataset/components/review-dataset-data/index.vue.js +1 -1
- package/dist/components/render-dataset/index.vue.css +1 -1
- package/dist/components/render-dataset/index.vue.js +1 -1
- package/dist/components/render-dataset-detail-origin-data/index.vue.css +3 -3
- package/dist/components/render-dataset-detail-origin-data/index.vue.js +1 -1
- package/dist/components/render-dataset-list/components/main.vue.css +3 -3
- package/dist/components/render-dataset-list/components/main.vue.js +1 -1
- package/dist/components/render-dataset-list/components/table.script.vue.js.js +7 -9
- package/dist/components/render-expand-collapse/index.vue.css +3 -3
- package/dist/components/render-expand-collapse/index.vue.js +1 -1
- package/dist/components/render-file-card/index.vue.css +11 -11
- package/dist/components/render-file-card/index.vue.js +1 -1
- package/dist/components/render-file-type-icon/index.vue.css +5 -5
- package/dist/components/render-file-type-icon/index.vue.js +1 -1
- package/dist/components/render-header/index.vue.css +5 -5
- package/dist/components/render-header/index.vue.js +1 -1
- package/dist/components/render-like/index.script.vue.js.js +317 -0
- package/dist/components/render-like/index.vue.css +19 -0
- package/dist/components/render-like/index.vue.d.ts +30 -0
- package/dist/components/render-like/index.vue.js +5 -0
- package/dist/components/render-router-tab/index.vue.css +3 -3
- package/dist/components/render-router-tab/index.vue.js +1 -1
- package/dist/components.d.ts +2 -1
- package/dist/components.ts.js +2 -1
- package/dist/css/fonts/iconcool.eot +0 -0
- package/dist/css/fonts/iconcool.svg +6 -0
- package/dist/css/fonts/iconcool.ttf +0 -0
- package/dist/css/fonts/iconcool.woff +0 -0
- package/dist/css/iconcool.js +1 -1
- package/dist/css/style.css +6 -0
- package/dist/css/tailwind.css +929 -0
- package/dist/hooks/use-chat.d.ts +5 -0
- package/dist/hooks/use-chat.ts.js +1 -0
- package/dist/hooks/use-session-http.d.ts +10 -1
- package/dist/hooks/use-session-http.ts.js +25 -2
- package/dist/hooks/use-style.d.ts +1 -0
- package/dist/hooks/use-style.ts.js +1 -0
- package/dist/hooks/use-think.ts.js +1 -0
- package/dist/http/helper/dataset.ts.js +5 -1
- package/dist/http/helper/session.d.ts +25 -1
- package/dist/http/helper/session.ts.js +30 -0
- package/dist/types/session.d.ts +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,929 @@
|
|
|
1
|
+
.g-flex-main-text {
|
|
2
|
+
flex: 1;
|
|
3
|
+
width: 0;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.g-flex-inline {
|
|
7
|
+
display: inline-flex !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.g-flex-row {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
align-items: center;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.g-inline-flex-row {
|
|
17
|
+
display: inline-flex;
|
|
18
|
+
flex-direction: row;
|
|
19
|
+
align-items: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.g-flex-column {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
align-items: center;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.g-align-start {
|
|
29
|
+
align-items: flex-start;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.g-align-self-center {
|
|
33
|
+
align-self: center;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.g-justify-between {
|
|
37
|
+
justify-content: space-between !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.g-justify-center {
|
|
41
|
+
justify-content: center;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.g-justify-end {
|
|
45
|
+
justify-content: end;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.g-overflow-hidden {
|
|
49
|
+
overflow: hidden;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.g-flex-truncate {
|
|
53
|
+
overflow: hidden;
|
|
54
|
+
text-overflow: ellipsis;
|
|
55
|
+
white-space: nowrap;
|
|
56
|
+
flex: 1;
|
|
57
|
+
width: 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.g-max-truncate {
|
|
61
|
+
overflow: hidden;
|
|
62
|
+
text-overflow: ellipsis;
|
|
63
|
+
white-space: nowrap;
|
|
64
|
+
max-width: 100%;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.g-truncate {
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
text-overflow: ellipsis;
|
|
70
|
+
white-space: nowrap;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.g-p-4 {
|
|
74
|
+
padding: 4px;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.g-p-24 {
|
|
78
|
+
padding: 24px;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.g-mt-2 {
|
|
82
|
+
margin-top: 2px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.g-mt-4 {
|
|
86
|
+
margin-top: 4px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.g-mt-5 {
|
|
90
|
+
margin-top: 5px;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.g-mt-6 {
|
|
94
|
+
margin-top: 6px;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.g-mt-8 {
|
|
98
|
+
margin-top: 8px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.g-mt-10 {
|
|
102
|
+
margin-top: 10px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.g-mt-12 {
|
|
106
|
+
margin-top: 12px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.g-mt-14 {
|
|
110
|
+
margin-top: 14px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.g-mt-15 {
|
|
114
|
+
margin-top: 15px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.g-mt-16 {
|
|
118
|
+
margin-top: 16px !important;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.g-mt-18 {
|
|
122
|
+
margin-top: 18px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.g-mt-20 {
|
|
126
|
+
margin-top: 20px !important;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.g-mt-24 {
|
|
130
|
+
margin-top: 24px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.g-mt-25 {
|
|
134
|
+
margin-top: 25px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.g-mt-100 {
|
|
138
|
+
margin-top: 100px;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.g-mt-200 {
|
|
142
|
+
margin-top: 200px;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.g-mr-2 {
|
|
146
|
+
margin-right: 2px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.g-mr-4 {
|
|
150
|
+
margin-right: 4px;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.g-mr-5 {
|
|
154
|
+
margin-right: 5px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.g-mr-6 {
|
|
158
|
+
margin-right: 6px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.g-mr-8 {
|
|
162
|
+
margin-right: 8px;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.g-mr-10 {
|
|
166
|
+
margin-right: 10px;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.g-mr-12 {
|
|
170
|
+
margin-right: 12px !important;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.g-mr-14 {
|
|
174
|
+
margin-right: 14px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.g-mr-16 {
|
|
178
|
+
margin-right: 16px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.g-mr-18 {
|
|
182
|
+
margin-right: 18px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.g-mr-24 {
|
|
186
|
+
margin-right: 24px;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.g-mr-25 {
|
|
190
|
+
margin-right: 25px;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.g-mr-40 {
|
|
194
|
+
margin-right: 40px;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.g-mr-60 {
|
|
198
|
+
margin-right: 60px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.g-ml-2 {
|
|
202
|
+
margin-left: 2px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.g-ml-4 {
|
|
206
|
+
margin-left: 4px;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.g-ml-5 {
|
|
210
|
+
margin-left: 5px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.g-ml-6 {
|
|
214
|
+
margin-left: 6px;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.g-ml-7 {
|
|
218
|
+
margin-left: 7px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.g-ml-8 {
|
|
222
|
+
margin-left: 8px;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.g-ml-10 {
|
|
226
|
+
margin-left: 10px;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.g-ml-12 {
|
|
230
|
+
margin-left: 12px;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.g-ml-14 {
|
|
234
|
+
margin-left: 14px;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.g-ml-16 {
|
|
238
|
+
margin-left: 16px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.g-ml-24 {
|
|
242
|
+
margin-left: 24px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.g-ml-25 {
|
|
246
|
+
margin-left: 25px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.g-ml-auto {
|
|
250
|
+
margin-left: auto;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.g-mb-1 {
|
|
254
|
+
margin-bottom: 1px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.g-mb-2 {
|
|
258
|
+
margin-bottom: 2px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.g-mb-3 {
|
|
262
|
+
margin-bottom: 3px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.g-mb-4 {
|
|
266
|
+
margin-bottom: 4px;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.g-mb-6 {
|
|
270
|
+
margin-bottom: 6px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.g-mb-8 {
|
|
274
|
+
margin-bottom: 8px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.g-mb-10 {
|
|
278
|
+
margin-bottom: 10px !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.g-mb-12 {
|
|
282
|
+
margin-bottom: 12px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.g-mb-14 {
|
|
286
|
+
margin-bottom: 14px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.g-mb-15 {
|
|
290
|
+
margin-bottom: 15px;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.g-mb-16 {
|
|
294
|
+
margin-bottom: 16px !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.g-mb-18 {
|
|
298
|
+
margin-bottom: 18px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.g-mb-20 {
|
|
302
|
+
margin-bottom: 20px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.g-mb-22 {
|
|
306
|
+
margin-bottom: 22px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.g-mb-24 {
|
|
310
|
+
margin-bottom: 24px;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.g-mb-30 {
|
|
314
|
+
margin-bottom: 30px !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.g-mb-36 {
|
|
318
|
+
margin-bottom: 36px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.g-mb-40 {
|
|
322
|
+
margin-bottom: 40px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.g-pl-4 {
|
|
326
|
+
padding-left: 4px !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.g-pl-5 {
|
|
330
|
+
padding-left: 5px !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.g-pl-8 {
|
|
334
|
+
padding-left: 8px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.g-pl-12 {
|
|
338
|
+
padding-left: 12px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.g-pl-14 {
|
|
342
|
+
padding-left: 14px;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.g-pl-16 {
|
|
346
|
+
padding-left: 16px !important;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.g-pl-24 {
|
|
350
|
+
padding-left: 24px !important;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.g-pr-4 {
|
|
354
|
+
padding-right: 4px !important;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.g-pr-5 {
|
|
358
|
+
padding-right: 5px !important;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.g-pr-16 {
|
|
362
|
+
padding-right: 16px !important;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.g-pr-24 {
|
|
366
|
+
padding-right: 24px;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.g-pt-4 {
|
|
370
|
+
padding-top: 4px;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.g-pt-12 {
|
|
374
|
+
padding-top: 12px;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.g-pt-16 {
|
|
378
|
+
padding-top: 16px;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.g-pt-18 {
|
|
382
|
+
padding-top: 18px;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.g-pt-20 {
|
|
386
|
+
padding-top: 20px;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.g-pt-24 {
|
|
390
|
+
padding-top: 24px;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
.g-pt-100 {
|
|
394
|
+
padding-top: 100px;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.g-pb-4 {
|
|
398
|
+
padding-bottom: 4px;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.g-pb-12 {
|
|
402
|
+
padding-bottom: 12px;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.g-pb-16 {
|
|
406
|
+
padding-bottom: 16px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.g-pb-20 {
|
|
410
|
+
padding-bottom: 20px;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.g-pb-24 {
|
|
414
|
+
padding-bottom: 24px;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.g-p-2 {
|
|
418
|
+
padding: 2px;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.g-px-3 {
|
|
422
|
+
padding: 0 3px;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.g-w-8 {
|
|
426
|
+
width: 8px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.g-w-16 {
|
|
430
|
+
width: 16px;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.g-w-20 {
|
|
434
|
+
width: 20px;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.g-w-380 {
|
|
438
|
+
width: 380px !important;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.g-w-32 {
|
|
442
|
+
width: 32px;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.g-float-left {
|
|
446
|
+
float: left;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.g-float-right {
|
|
450
|
+
float: right;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.g-weight-normal {
|
|
454
|
+
font-weight: normal;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
.g-weight-bold {
|
|
458
|
+
font-weight: bold;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.g-text-8 {
|
|
462
|
+
font-size: 8px;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.g-text-10 {
|
|
466
|
+
font-size: 10px;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.g-text-12 {
|
|
470
|
+
font-size: 12px !important;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.g-text-14 {
|
|
474
|
+
font-size: 14px;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.g-text-16 {
|
|
478
|
+
font-size: 16px;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.g-text-18 {
|
|
482
|
+
font-size: 18px;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.g-text-20 {
|
|
486
|
+
font-size: 20px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.g-text-22 {
|
|
490
|
+
font-size: 22px;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
.g-text-24 {
|
|
494
|
+
font-size: 24px;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.g-text-32 {
|
|
498
|
+
font-size: 32px;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.g-text-40 {
|
|
502
|
+
font-size: 40px;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.g-text-64 {
|
|
506
|
+
font-size: 64px;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.g-learning-12 {
|
|
510
|
+
line-height: 12px;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.g-learning-16 {
|
|
514
|
+
line-height: 16px;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.g-learning-18 {
|
|
518
|
+
line-height: 18px;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.g-learning-20 {
|
|
522
|
+
line-height: 20px;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.g-learning-22 {
|
|
526
|
+
line-height: 22px;
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
.g-learning-24 {
|
|
530
|
+
line-height: 24px;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
.g-learning-28 {
|
|
534
|
+
line-height: 28px;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.g-learning-32 {
|
|
538
|
+
line-height: 32px;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.g-learning-36 {
|
|
542
|
+
line-height: 36px;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.g-position-relative {
|
|
546
|
+
position: relative;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.g-position-absolute {
|
|
550
|
+
position: absolute;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
.g-inline-block {
|
|
554
|
+
display: inline-block !important;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
.g-block {
|
|
558
|
+
display: block;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.g-flex {
|
|
562
|
+
display: flex !important;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
.g-none {
|
|
566
|
+
display: none !important;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
.g-flex-1 {
|
|
570
|
+
flex: 1;
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.g-flex-2 {
|
|
574
|
+
flex: 2;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.g-rotate-180 {
|
|
578
|
+
transform: rotate(180deg);
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.g-rotate-90 {
|
|
582
|
+
transform: rotate(90deg);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.g-rotate--90 {
|
|
586
|
+
transform: rotate(-90deg);
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.g-width-full {
|
|
590
|
+
width: 100%;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.g-width-16 {
|
|
594
|
+
width: 16px;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
.g-width-64 {
|
|
598
|
+
width: 64px;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.g-width-83 {
|
|
602
|
+
width: 83px;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.g-width-88 {
|
|
606
|
+
width: 88px;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.g-width-108 {
|
|
610
|
+
width: 108px;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.g-width-6rem {
|
|
614
|
+
width: 6rem !important;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.g-height-max-600 {
|
|
618
|
+
max-height: 600px;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.g-height-full {
|
|
622
|
+
height: 100%;
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
.g-height-8 {
|
|
626
|
+
height: 8px;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
.g-height-16 {
|
|
630
|
+
height: 16px;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.g-height-20 {
|
|
634
|
+
height: 20px;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.g-height-22 {
|
|
638
|
+
height: 22px;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.g-height-26 {
|
|
642
|
+
height: 26px !important;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.g-height-32 {
|
|
646
|
+
height: 32px !important;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.g-height-42 {
|
|
650
|
+
height: 42px;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
.g-height-60 {
|
|
654
|
+
height: 60px;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.g-height-64 {
|
|
658
|
+
height: 64px;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.g-height-88 {
|
|
662
|
+
height: 88px;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.g-bg-gray {
|
|
666
|
+
background-color: #979ba5 !important;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.g-bg-light-gray {
|
|
670
|
+
background-color: #fafbfd !important;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.g-bg-ultralight-gray {
|
|
674
|
+
background-color: #eaebf0 !important;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.g-bg-dark-gray {
|
|
678
|
+
background-color: #f5f7fa !important;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.g-bg-white {
|
|
682
|
+
background-color: #fff !important;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.g-cursor-pointer {
|
|
686
|
+
cursor: pointer;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.g-cursor-grab {
|
|
690
|
+
cursor: grab;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.g-border-radio-100 {
|
|
694
|
+
border-radius: 100%;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.g-hover-text-blue {
|
|
698
|
+
&:hover {
|
|
699
|
+
color: #3a84ff;
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
.g-hover-text-red {
|
|
704
|
+
&:hover {
|
|
705
|
+
color: #ff4d4f;
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
|
|
709
|
+
.g-hover-text-white {
|
|
710
|
+
&:hover {
|
|
711
|
+
color: #fff !important;
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.g-hover-text-black {
|
|
716
|
+
&:hover {
|
|
717
|
+
color: #313238 !important;
|
|
718
|
+
}
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.g-hover-border-blue {
|
|
722
|
+
&:hover {
|
|
723
|
+
border: 1px solid #3a84ff !important;
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.g-hover-bg-blue {
|
|
728
|
+
&:hover {
|
|
729
|
+
background-color: #3a84ff !important;
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.g-hover-bg-light-blue {
|
|
734
|
+
&:hover {
|
|
735
|
+
background-color: #f0f5ff !important;
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.g-hover-bg-light-gray {
|
|
740
|
+
&:hover {
|
|
741
|
+
background-color: #dcdee5 !important;
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.g-hover-round {
|
|
746
|
+
&:hover {
|
|
747
|
+
border-radius: 100%;
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.g-text-blue {
|
|
752
|
+
color: #3a84ff;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.g-text-deep-blue {
|
|
756
|
+
color: #1768ef;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.g-text-gray {
|
|
760
|
+
color: #979ba5;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.g-text-light-gray {
|
|
764
|
+
color: #dcdee5;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.g-text-white {
|
|
768
|
+
color: #fff !important;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
.g-text-hover-gray {
|
|
772
|
+
&:hover {
|
|
773
|
+
color: #979ba5 !important;
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.g-text-normal {
|
|
778
|
+
color: #4d4f56;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.g-text-red {
|
|
782
|
+
color: #ea3636;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.g-text-green {
|
|
786
|
+
color: #2caf5e;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
.g-text-light-gray {
|
|
790
|
+
color: #c4c6cc;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
.g-text-light {
|
|
794
|
+
color: #9b9da1;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.g-text-black {
|
|
798
|
+
color: #313238;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.g-text-orange {
|
|
802
|
+
color: #ff9c01;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.g-font-bold {
|
|
806
|
+
font-weight: bold;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.g-font-normal {
|
|
810
|
+
font-weight: normal;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.g-rotate-infinite {
|
|
814
|
+
animation: rotate 2s linear infinite;
|
|
815
|
+
}
|
|
816
|
+
|
|
817
|
+
.g-flex-wrap {
|
|
818
|
+
flex-wrap: wrap;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.g-grid {
|
|
822
|
+
display: grid;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.g-grid-cols-1 {
|
|
826
|
+
grid-template-columns: 1fr;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.g-grid-cols-2 {
|
|
830
|
+
grid-template-columns: 1fr 1fr;
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.g-grid-cols-3 {
|
|
834
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.g-gap-x-4 {
|
|
838
|
+
column-gap: 4px;
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
.g-gap-x-12 {
|
|
842
|
+
column-gap: 12px;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.g-gap-x-16 {
|
|
846
|
+
column-gap: 16px;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.g-gap-x-21 {
|
|
850
|
+
column-gap: 21px;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.g-gap-y-12 {
|
|
854
|
+
row-gap: 12px;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.g-gap-4 {
|
|
858
|
+
gap: 4px;
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.g-gap-8 {
|
|
862
|
+
gap: 8px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.g-gap-12 {
|
|
866
|
+
gap: 12px;
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
.g-gap-24 {
|
|
870
|
+
gap: 24px;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
.g-gap-25 {
|
|
874
|
+
gap: 25px;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.g-gap-x-20-y-12 {
|
|
878
|
+
column-gap: 20px;
|
|
879
|
+
row-gap: 12px;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
.g-text-right {
|
|
883
|
+
text-align: right;
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
.g-text-left {
|
|
887
|
+
text-align: left;
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.g-text-center {
|
|
891
|
+
text-align: center;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.g-white-space-pre-line {
|
|
895
|
+
white-space: pre-line;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.g-max-height-80vh {
|
|
899
|
+
max-height: 80vh;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.g-max-width-400 {
|
|
903
|
+
max-width: 400px;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.g-min-width-16 {
|
|
907
|
+
min-width: 16px;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.g-width-450 {
|
|
911
|
+
width: 450px;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
.g-min-height-16 {
|
|
915
|
+
min-height: 16px;
|
|
916
|
+
}
|
|
917
|
+
|
|
918
|
+
.g-transition-transform {
|
|
919
|
+
transition: transform .3s cubic-bezier(.4, 0, .2, 1), -webkit-transform .3s cubic-bezier(.4, 0, .2, 1);
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.g-number-font {
|
|
923
|
+
font-family: Arial, 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', sans-serif;
|
|
924
|
+
font-variant-numeric: tabular-nums;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
.g-rounded-2 {
|
|
928
|
+
border-radius: 2px;
|
|
929
|
+
}
|