@lambo-design/shared 1.0.0-beta.359 → 1.0.0-beta.360

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.
@@ -0,0 +1,2676 @@
1
+ /*
2
+ * 一些基础变量的定义,分为配色、边距长度、字体、边框圆角、阴影、动画
3
+ * 配色和边距不建议直接使用,而是在 theme 中定义具有业务意义的变量
4
+ *
5
+ * --Author: huxuetong
6
+ * --Date: 2023-08-16 16:23:06
7
+ * --Last Modified by: huxuetong
8
+ * --Last Modified time: 2023-08-19 16:48:38
9
+ */
10
+ :root {
11
+ --ind-white: #fff;
12
+ --ind-white-1: var(--ind-white);
13
+ --ind-white-2: rgba(255, 255, 255, 0.85);
14
+ --ind-white-3: rgba(255, 255, 255, 0.7);
15
+ --ind-white-4: rgba(255, 255, 255, 0.5);
16
+ --ind-white-5: rgba(255, 255, 255, 0.3);
17
+ --ind-white-6: rgba(255, 255, 255, 0.1);
18
+ --ind-black: #333;
19
+ --ind-gray: #333;
20
+ --ind-gray-1: #f5f7f9;
21
+ --ind-gray-2: #efefef;
22
+ --ind-gray-3: #e6e6e6;
23
+ --ind-gray-4: var(--ind-gray);
24
+ --ind-gray-5: #999;
25
+ --ind-gray-6: #555;
26
+ --ind-gray-7: var(--ind-black);
27
+ --ind-blue: #488aff;
28
+ --ind-blue-1: #a3ccfe;
29
+ --ind-blue-2: #81b1ff;
30
+ --ind-blue-3: #79adff;
31
+ --ind-blue-4: #1d70f5;
32
+ --ind-blue-5: var(--ind-blue);
33
+ --ind-blue-6: #02328f;
34
+ --ind-blue-7: #002b7b;
35
+ --ind-blue-8: #0c3d98;
36
+ --ind-blue-9: #001d55;
37
+ --ind-blue-10: #002874;
38
+ --ind-green: #34b11c;
39
+ --ind-green-1: #c8fbcb;
40
+ --ind-green-2: #94f7a2;
41
+ --ind-green-3: #5ce87e;
42
+ --ind-green-4: #34d169;
43
+ --ind-green-5: var(--ind-green);
44
+ --ind-green-6: #009953;
45
+ --ind-green-7: #008052;
46
+ --ind-green-8: #00674c;
47
+ --ind-green-9: #005548;
48
+ --ind-orange: #ff976a;
49
+ --ind-orange-1: #fffbe8;
50
+ --ind-orange-2: #fbcd65;
51
+ --ind-orange-3: #fbcd65;
52
+ --ind-orange-4: #f7b73e;
53
+ --ind-orange-5: var(--ind-orange);
54
+ --ind-orange-6: #ed6a0c;
55
+ --ind-orange-8: #ae5e00;
56
+ --ind-orange-8: #8c4600;
57
+ --ind-orange-9: #743500;
58
+ --ind-orange-light: var(--ind-orange-1);
59
+ --ind-orange-dark: var(--ind-orange-6);
60
+ --ind-red: #d32913;
61
+ --ind-red-1: #fce2ce;
62
+ --ind-red-2: #fabf9f;
63
+ --ind-red-3: #f1926d;
64
+ --ind-red-4: #e46648;
65
+ --ind-red-5: var(--ind-red);
66
+ --ind-red-6: #b5130d;
67
+ --ind-red-7: #970910;
68
+ --ind-red-8: #7a0614;
69
+ --ind-red-9: #650317;
70
+ --ind-gradient-blue-linear: linear-gradient(to right, #548eff, #6bc5ff);
71
+ --ind-gradient-green-linear: linear-gradient(to right, #32c67c, #4edda1);
72
+ --ind-gradient-orange-linear: linear-gradient(to right, #ffa724, #e0ac5e);
73
+ --ind-gradient-red-linear: linear-gradient(to right, #ff5e67, #ff8fa4);
74
+ --ind-gradient-blue-radial: radial-gradient(circle at 50% 84%, #225ed2 0%, #083da3 109%);
75
+ --ind-padding-base: 4px;
76
+ --ind-padding-xs: 8px;
77
+ --ind-padding-sm: 16px;
78
+ --ind-padding-md: 24px;
79
+ --ind-padding-lg: 32px;
80
+ --ind-padding-xl: 48px;
81
+ --ind-font-size-xs: 10px;
82
+ --ind-font-size-sm: 12px;
83
+ --ind-font-size-md: 14px;
84
+ --ind-font-size-lg: 16px;
85
+ --ind-font-size-xl: 18px;
86
+ --ind-font-size-xxl: 20px;
87
+ --ind-font-weight-normal: 400;
88
+ --ind-font-weight-bold: 600;
89
+ --ind-font-weight-bolder: 900;
90
+ --ind-line-height-xs: 14px;
91
+ --ind-line-height-sm: 18px;
92
+ --ind-line-height-md: 22px;
93
+ --ind-line-height-lg: 24px;
94
+ --ind-border-width-base: 1px;
95
+ --ind-border-radius-xs: 2px;
96
+ --ind-border-radius-sm: 4px;
97
+ --ind-border-radius-md: 8px;
98
+ --ind-border-radius-lg: 14px;
99
+ --ind-border-radius-xl: 20px;
100
+ --ind-border-radius-xxl: 32px;
101
+ --ind-border-radius-max: 999px;
102
+ --ind-border-radius-round: 50%;
103
+ --ind-box-shadow-sm-1: 0px 1px 2px -2px rgba(0, 0, 0, 0.16);
104
+ --ind-box-shadow-md-1: 0px 3px 6px 0px rgba(0, 0, 0, 0.12);
105
+ --ind-box-shadow-lg-1: 0px 5px 12px 4px rgba(0, 0, 0, 0.09);
106
+ --ind-box-shadow-sm-2: 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
107
+ --ind-box-shadow-md-2: 0px 6px 16px 0px rgba(0, 0, 0, 0.08);
108
+ --ind-box-shadow-lg-2: 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
109
+ --ind-box-shadow-sm-3: 0px 6px 6px -8px rgba(0, 0, 0, 0.08);
110
+ --ind-box-shadow-md-3: 0px 9px 28px 0px rgba(0, 0, 0, 0.05);
111
+ --ind-box-shadow-lg-3: 0px 12px 48px 16px rgba(0, 0, 0, 0.03);
112
+ --ind-animation-duration-base: 0.3s;
113
+ --ind-animation-duration-fast: 0.2s;
114
+ --ind-animation-timing-function-enter: ease-out;
115
+ --ind-animation-timing-function-leave: ease-in;
116
+ }
117
+ /*
118
+ * 定义不同主题变量,其中default基本等于全局变量
119
+ * 别的主题应在default基础上更改
120
+ * 若已有主题变量不满足情况,应在default里添加原样式的变量后,在新主题里更改对应的值
121
+ *
122
+ * @Author: huxuetong
123
+ * @Date: 2024-03-12 20:10:04
124
+ * @Last Modified by: huxuetong
125
+ * @Last Modified time: 2024-03-12 20:11:26
126
+ */
127
+ :root {
128
+ --ind-primary-color: var(--ind-blue);
129
+ --ind-primary-color-tint20: #6da1ff;
130
+ --ind-primary-color-tint70: #c8dcff;
131
+ --ind-primary-color-tint80: #dae8ff;
132
+ --ind-primary-color-tint90: #edf3ff;
133
+ --ind-primary-color-fade20: rgba(72, 138, 255, 0.2);
134
+ --ind-primary-color-fade90: rgba(72, 138, 255, 0.9);
135
+ --ind-primary-color-tint95-fade50: rgba(246, 249, 255, 0.5);
136
+ --ind-primary-color-shade5: #4483f2;
137
+ --ind-primary-color-fade90-shade10: rgba(63, 121, 225, 0.91);
138
+ --ind-bg-color-light: var(--ind-white);
139
+ --ind-bg-color-dark: var(--ind-gray-1);
140
+ --ind-text-color: var(--ind-black);
141
+ --ind-link-hover-color: var(--ind-primary-color-tint20);
142
+ --ind-link-active-color: var(--ind-primary-color-shade5);
143
+ --ind-desc-color: var(--ind-gray-6);
144
+ --ind-border-color: #ebedf2;
145
+ --ind-page-padding: var(--ind-padding-xs);
146
+ --ind-sc-padding-top: var(--ind-padding-xs);
147
+ --ind-menu-desc-margin-top: 4px;
148
+ --ivu-card-head-padding: 12px 16px;
149
+ --ivu-card-head-line-height: 28px;
150
+ --ivu-card-head-height: 52px;
151
+ --ivu-card-body-padding: 16px;
152
+ --ivu-form-item-label-padding: 10px 12px 10px 0;
153
+ --ivu-form-v6stle-item-label-paddingleft: 20px;
154
+ --ivu-form-item-content-padding: 6px 12px;
155
+ --ivu-form-item-label-before-left: 8px;
156
+ --ivu-form-item-content-line-height: 32px;
157
+ --ind-tree-wrapper-width: 98%;
158
+ --tree-content-padding: 8px;
159
+ --ivu-tree-margin: 8px 0;
160
+ --ind-drawer-content-padding: 16px;
161
+ --ind-drawer-footer-padding: 10px 16px;
162
+ --report-index-model-panel-padding: 8px;
163
+ --report-index-options-padding-right: 18px;
164
+ --ind-table-button-padding: var(--ind-padding-base);
165
+ --input-height-table: var(--input-height);
166
+ }
167
+ :root {
168
+ --ind-button-height-md: 32px;
169
+ --ind-button-padding-md: 15px;
170
+ --ind-button-height-sm: 32px;
171
+ --ind-button-padding-sm: 7px;
172
+ }
173
+ :root {
174
+ --main-color: var(--ind-blue);
175
+ --deep-mian-color: #2b85e4;
176
+ --selected-background: #1890ff;
177
+ --selected-background-hover: #384568;
178
+ --header-height: 48px;
179
+ --header-bg: linear-gradient(90deg, #1d42ab, #2173dc, #1e93ff);
180
+ --header-color: hsla(0, 0%, 100%, 0.7);
181
+ --header-color-hover: var(--ind-white);
182
+ --header-border-bottom-color: #4fe3c1;
183
+ --ind-main-sider-width: 200px;
184
+ --ind-main-sider-collapsed-width: 68px;
185
+ --menu-black-active-bg: var(--ind-white);
186
+ --menu-white-group-title-color: var(--ind-text-color);
187
+ --ivu-menu-item-font-size: var(--ind-font-size-md);
188
+ --menu-select-bg: #f0faff;
189
+ --deep-menu-color: var(--ind-primary-color);
190
+ --selected-background: var(--menu-select-bg);
191
+ --selected-background-hover: var(--menu-select-bg);
192
+ --menu-icon-margin-right: 8px;
193
+ --menu-white-group-title-color: #b6b6b8;
194
+ --ind-panel-vertical-margin: 12px;
195
+ --ind-panel-horizon-margin: 16px;
196
+ --input-height: 32px;
197
+ --search-margin-bottom: 24px;
198
+ --search-button-margin: 16px;
199
+ --menu-name-padding: 15px 28px 15px 30px;
200
+ --menu-title-font-size: 20px;
201
+ --menu-title-color: #17233d;
202
+ --page-content-padding: 12px;
203
+ }
204
+ :root {
205
+ --check-border: #dcdee2;
206
+ --table-td-hover-bg: #edf3ff;
207
+ /*
208
+ * ag-grid合计行颜色变量
209
+ */
210
+ --ag-sum-row-color-10: #cccfd7;
211
+ --ag-sum-row-color-5: #dcdfe6;
212
+ --ag-sum-row-color-1: #ebedf2;
213
+ --ind-table-padding: 16px;
214
+ --ind-ag-grid-size: 6px;
215
+ --ind-ag-cell-widget-spacing: 12px;
216
+ --ind-ag-font-size: var(--ind-font-size-md);
217
+ --ind-ag-odd-row-background-color: #fcfdfe;
218
+ --ind-ag-row-hover-color: rgba(0, 0, 0, 0.05);
219
+ --ind-ag-column-hover-color: rgba(0, 0, 0, 0.05);
220
+ --ind-ag-cell-header-horizontal-padding: 12px;
221
+ --ind-ag-cell-horizontal-padding: 13px;
222
+ --ind-ag-row-group-indent-size: 28px;
223
+ --ind-ag-selected-row-background-color: #c8dcff;
224
+ --ind-ag-header-background-color: #f8f8f9;
225
+ --ind-ag-odd-row-background-color: #fff;
226
+ --ind-ag-cell-icon-margin-left: var(--ind-ag-grid-size);
227
+ --ind-ag-cell-line-height: 20px;
228
+ --ind-unit-switch-bottom: 6px;
229
+ --ind-other-button-top: 6px;
230
+ }
231
+ :root {
232
+ --ind-tag-height: 24px;
233
+ }
234
+ :root {
235
+ --file-line-height: 41px;
236
+ }
237
+ .ind-small-theme {
238
+ --ind-button-height-md: 30px;
239
+ --ind-button-padding-md: 7px;
240
+ --ind-button-height-sm: 24px;
241
+ --ind-button-padding-sm: 7px;
242
+ }
243
+ .ind-small-theme {
244
+ --ind-menu-desc-margin-top: 0px;
245
+ --ind-sc-padding-top: 10px;
246
+ --ind-padding-sm: 8px;
247
+ --ivu-card-head-padding: 6px 12px;
248
+ --ivu-card-head-line-height: 36px;
249
+ --ivu-card-head-height: 36px;
250
+ --ivu-card-body-padding: 6px;
251
+ --input-height: 26px;
252
+ --ivu-form-item-label-padding: 6px 8px 6px 0;
253
+ --ivu-form-v6stle-item-label-paddingleft: 12px;
254
+ --ivu-form-item-content-padding: 4px 6px;
255
+ --ivu-form-item-label-before-left: 4px;
256
+ --ivu-form-item-content-line-height: 26px;
257
+ --ind-tree-wrapper-width: 100%;
258
+ --tree-content-padding: var(--ind-padding-xs);
259
+ --ivu-tree-margin: var(--ind-padding-xs) 0;
260
+ --ind-drawer-content-padding: 6px;
261
+ --ind-drawer-footer-padding: 10px 16px;
262
+ --report-index-model-panel-padding: var(--tree-content-padding);
263
+ --report-index-options-padding-right: var(--tree-content-padding);
264
+ --ind-table-button-padding: 6px;
265
+ --input-height-table: 24px;
266
+ }
267
+ .ind-small-theme {
268
+ --ivu-menu-item-font-size: var(--ind-font-size-md);
269
+ --menu-icon-margin-right: var(--ind-padding-xs);
270
+ --ind-panel-vertical-margin: var(--ind-padding-xs);
271
+ --ind-panel-horizon-margin: var(--ind-padding-xs);
272
+ --search-margin-bottom: var(--ind-padding-xs);
273
+ --search-button-margin: var(--ind-padding-xs);
274
+ --menu-name-padding: 0 14px 0 10px;
275
+ --menu-title-font-size: 16px;
276
+ --menu-title-color: #17233d;
277
+ --page-content-padding: var(--ind-padding-xs);
278
+ }
279
+ .ind-small-theme {
280
+ --ind-table-padding: var(--ind-padding-sm);
281
+ --ind-ag-cell-widget-spacing: 12px;
282
+ --ind-ag-grid-size: 4px;
283
+ --ind-ag-font-size: var(--ind-font-size-md);
284
+ --ind-ag-list-item-height: calc(var(--ag-grid-size) * 6);
285
+ --ind-ag-cell-horizontal-padding: 3px;
286
+ --ind-ag-cell-icon-margin-left: 3px;
287
+ --ind-ag-cell-header-horizontal-padding: 0px;
288
+ --ind-ag-cell-line-height: 14px;
289
+ --ind-unit-switch-bottom: 10px;
290
+ --ind-other-button-top: 2px;
291
+ }
292
+ .ind-small-theme {
293
+ --ind-tag-height: 18px;
294
+ }
295
+ /* 重写浏览器默认样式 */
296
+ html,
297
+ body {
298
+ margin: 0;
299
+ padding: 0;
300
+ width: 100%;
301
+ height: 100%;
302
+ color: var(--ind-text-color);
303
+ font-size: var(--ind-font-size-md);
304
+ font-family: 'OpenSans', 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC', 'Microsoft YaHei';
305
+ }
306
+ pre {
307
+ white-space: pre-wrap;
308
+ word-wrap: break-word;
309
+ margin: 5px 0px;
310
+ line-height: 20px;
311
+ font-family: 'OpenSans', 'Helvetica Neue', Helvetica, Tahoma, Arial, 'PingFang SC', 'Microsoft YaHei';
312
+ }
313
+ input::-webkit-outer-spin-button,
314
+ input::-webkit-inner-spin-button {
315
+ -webkit-appearance: none;
316
+ }
317
+ input[type='number'] {
318
+ -moz-appearance: textfield !important;
319
+ appearance: textfield !important;
320
+ }
321
+ ::-webkit-scrollbar-thumb {
322
+ height: 50px;
323
+ border-radius: 4px;
324
+ border: 2px solid #eee;
325
+ }
326
+ ::-webkit-scrollbar-thumb:hover {
327
+ height: 50px;
328
+ border-radius: 4px;
329
+ }
330
+ ::-webkit-scrollbar {
331
+ width: 14px;
332
+ height: 16px;
333
+ }
334
+ ::-webkit-scrollbar-track-piece {
335
+ border-radius: 0;
336
+ }
337
+ ::-webkit-scrollbar-track {
338
+ background-color: #eee;
339
+ }
340
+ ::-webkit-scrollbar-thumb {
341
+ background-color: rgba(0, 0, 0, 0.2);
342
+ }
343
+ ::-webkit-scrollbar-corner {
344
+ background-color: #bbb;
345
+ }
346
+ .ag-body-horizontal-scroll,
347
+ .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport,
348
+ .ag-body-horizontal-scroll .ag-body-horizontal-scroll-viewport .ag-body-horizontal-scroll-container,
349
+ .ag-body-horizontal-scroll .ag-horizontal-right-spacer .ag-scroller-corner {
350
+ height: 16px !important;
351
+ min-height: 16px !important;
352
+ max-height: 16px !important;
353
+ }
354
+ /*
355
+ * 一些常用样式类
356
+ *
357
+ * @Author: huxuetong
358
+ * @Date: 2024-03-12 20:12:54
359
+ * @Last Modified by: huxuetong
360
+ * @Last Modified time: 2024-04-05 11:18:52
361
+ */
362
+ .ind-panel {
363
+ padding: var(--ind-padding-xs) var(--ind-padding-sm);
364
+ padding-top: var(--ind-sc-padding-top);
365
+ background-color: var(--ind-bg-color-light);
366
+ border-radius: var(--ind-border-radius-sm);
367
+ }
368
+ .ind-flex {
369
+ display: flex;
370
+ }
371
+ .ind-flex.center {
372
+ align-items: center;
373
+ }
374
+ .ind-flex.baseline {
375
+ align-items: baseline;
376
+ }
377
+ .ind-flex.end {
378
+ align-items: flex-end;
379
+ }
380
+ .ind-flex-column {
381
+ display: flex;
382
+ flex-direction: column;
383
+ }
384
+ .height100 {
385
+ height: 100%;
386
+ }
387
+ .ind-flex-no-shrink {
388
+ flex-shrink: 0;
389
+ }
390
+ .ind-flex-grow {
391
+ flex-grow: 1 !important;
392
+ }
393
+ .ind-mt {
394
+ margin-top: var(--ind-padding-xs);
395
+ }
396
+ .ind-mr {
397
+ margin-right: var(--ind-padding-xs);
398
+ }
399
+ .ind-mb {
400
+ margin-bottom: var(--ind-padding-xs);
401
+ }
402
+ .ind-ml {
403
+ margin-left: var(--ind-padding-xs);
404
+ }
405
+ .no-border-left-top {
406
+ border-top: none !important;
407
+ border-left: none !important;
408
+ }
409
+ .ind-primary {
410
+ color: var(--ind-primary-color) !important;
411
+ }
412
+ .ind-red,
413
+ .ind-down,
414
+ .ind-up.reverse {
415
+ color: var(--ind-red) !important;
416
+ }
417
+ .ind-green,
418
+ .ind-up,
419
+ .ind-down.reverse {
420
+ color: var(--ind-green) !important;
421
+ }
422
+ .ind-orange {
423
+ color: var(--ind-orange) !important;
424
+ }
425
+ .ind-yellow {
426
+ color: #fff600 !important;
427
+ }
428
+ .ind-blue {
429
+ color: var(--ind-blue) !important;
430
+ }
431
+ .ind-bg-primary {
432
+ background-color: var(--ind-primary-color) !important;
433
+ }
434
+ .ind-bg-red,
435
+ .ind-bg-down,
436
+ .ind-bg-up.reverse {
437
+ background-color: var(--ind-red) !important;
438
+ }
439
+ .ind-bg-green,
440
+ .ind-bg-up,
441
+ .ind-bg-down.reverse {
442
+ background-color: var(--ind-green) !important;
443
+ }
444
+ .ind-bg-orange {
445
+ background-color: var(--ind-orange) !important;
446
+ }
447
+ .ind-bg-yellow {
448
+ background-color: #fff600 !important;
449
+ }
450
+ .ind-bg-blue {
451
+ background-color: var(--ind-blue) !important;
452
+ }
453
+ .ind-sm {
454
+ font-size: var(--ind-font-size-sm);
455
+ }
456
+ .ind-lg {
457
+ font-size: var(--ind-font-size-lg);
458
+ }
459
+ .ind-xl {
460
+ font-size: var(--ind-font-size-xl);
461
+ }
462
+ .ind-xxl {
463
+ font-size: var(--ind-font-size-xxl);
464
+ }
465
+ .ind-font-bold {
466
+ font-weight: var(--ind-font-weight-bold);
467
+ }
468
+ .ind-font-bolder {
469
+ font-weight: var(--ind-font-weight-bolder);
470
+ }
471
+ .no-content {
472
+ text-align: center;
473
+ display: flex;
474
+ flex-direction: column;
475
+ justify-content: center;
476
+ height: 100%;
477
+ }
478
+ .no-content .noImgUrl {
479
+ margin-left: calc(50% - 175px);
480
+ width: fit-content;
481
+ }
482
+ .tooltip-ellipsis {
483
+ width: 100%;
484
+ }
485
+ .tooltip-ellipsis .ellipsis-div {
486
+ text-overflow: ellipsis;
487
+ white-space: nowrap;
488
+ overflow: hidden;
489
+ }
490
+ .ind-card-title-tag {
491
+ display: inline-block;
492
+ padding: 0 var(--ind-padding-xs);
493
+ color: var(--ind-white);
494
+ border-radius: var(--ind-border-radius-sm);
495
+ transform: skew(-20deg);
496
+ }
497
+ .ind-card-title-tag.blue {
498
+ background: var(--ind-gradient-blue-linear);
499
+ }
500
+ .ind-card-title-tag.green {
501
+ background: var(--ind-gradient-green-linear);
502
+ }
503
+ .ind-card-title-tag.orange {
504
+ background: var(--ind-gradient-orange-linear);
505
+ }
506
+ .ind-card-title-tag.red {
507
+ background: var(--ind-gradient-red-linear);
508
+ }
509
+ .ind-card-title-tag__name {
510
+ display: inline-block;
511
+ transform: skew(20deg);
512
+ }
513
+ .ind-collect-btn {
514
+ display: inline-block;
515
+ margin-left: 6px;
516
+ }
517
+ .ind-collect-btn .ivu-tooltip-rel i {
518
+ cursor: pointer;
519
+ }
520
+ .ind-detail-view {
521
+ height: 100%;
522
+ background-color: var(--ind-bg-color-dark);
523
+ overflow: auto;
524
+ }
525
+ .ind-detail-view:has(.ind-detail-form) .lambo-grid-table {
526
+ padding-top: var(--ind-unit-switch-bottom);
527
+ }
528
+ .ind-detail-view .header {
529
+ display: flex;
530
+ align-items: center;
531
+ padding: var(--menu-name-padding);
532
+ border-bottom: 1px solid var(--ind-border-color);
533
+ background: white;
534
+ z-index: 14;
535
+ }
536
+ .ind-detail-view .header .title {
537
+ font-size: var(--menu-title-font-size);
538
+ font-weight: 500;
539
+ color: var(--menu-title-color);
540
+ }
541
+ .ind-detail-view .header .back-btn + .title {
542
+ margin-left: 8px;
543
+ }
544
+ .ind-detail-view .header .header-buttons {
545
+ flex-grow: 1;
546
+ display: flex;
547
+ justify-content: flex-end;
548
+ align-items: center;
549
+ }
550
+ .ind-detail-view .header .header-buttons .ivu-btn + .ivu-btn {
551
+ margin-left: 10px;
552
+ }
553
+ .ind-detail-view .content {
554
+ padding: var(--page-content-padding);
555
+ }
556
+ .ind-detail-view .content .ivu-card {
557
+ padding: 0px 8px;
558
+ }
559
+ .ind-detail-view .content .ivu-form {
560
+ background: white;
561
+ }
562
+ .ind-detail-view .function-wrapper {
563
+ display: flex;
564
+ justify-content: center;
565
+ padding: 6px 0;
566
+ width: 100%;
567
+ text-align: center;
568
+ border-top: 1px solid var(--ind-border-color);
569
+ background: #fff;
570
+ }
571
+ .ind-detail-view .function-wrapper .ivu-btn + .ivu-btn {
572
+ margin-left: 10px;
573
+ }
574
+ .ind-detail-view.has-padding .content-row {
575
+ padding: 16px 16px;
576
+ background-color: #fff;
577
+ }
578
+ .ind-detail-view.ind-detial-with-table .content-row {
579
+ height: 100%;
580
+ }
581
+ .ind-detail-view.ind-detial-with-table .ind-loading-panel {
582
+ height: 100%;
583
+ }
584
+ .ind-detail-view.ind-detial-with-table .ivu-card {
585
+ height: 100%;
586
+ }
587
+ .ind-detail-view.ind-detial-with-table .ivu-card-body {
588
+ height: 100%;
589
+ }
590
+ .ind-detail-view .content .ivu-card {
591
+ padding: 0 0 !important;
592
+ overflow: hidden !important;
593
+ width: 100%;
594
+ }
595
+ .ind-detail-view .content .ivu-card .ivu-card-head {
596
+ padding: 14px 16px;
597
+ font-size: 16px;
598
+ color: #17233d;
599
+ font-weight: 500;
600
+ }
601
+ .ind-full-screen-btn-con .ivu-tooltip-rel i {
602
+ cursor: pointer;
603
+ }
604
+ .ind-other-menu {
605
+ display: flex;
606
+ width: 100%;
607
+ border-top: 1px solid var(--menu-black-active-bg);
608
+ background: var(--menu-black-active-bg);
609
+ }
610
+ .ind-other-menu .other-menu-item {
611
+ width: 100%;
612
+ height: 40px;
613
+ line-height: 40px;
614
+ color: var(--menu-white-group-title-color);
615
+ text-align: center;
616
+ border-radius: 3px;
617
+ cursor: pointer;
618
+ }
619
+ .ind-other-menu .other-menu-item:hover {
620
+ color: var(--ind-primary-color);
621
+ }
622
+ .ind-other-menu.ind-other-menu-collapsed {
623
+ display: block;
624
+ }
625
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item {
626
+ border-top: 1px solid var(--ind-border-color);
627
+ }
628
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item .ivu-tooltip {
629
+ width: 100%;
630
+ }
631
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item .ivu-tooltip .ivu-tooltip-rel {
632
+ width: 100%;
633
+ }
634
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item .ivu-tooltip .ivu-tooltip-popper .ivu-tooltip-content .ivu-tooltip-arrow {
635
+ border-right-color: #fff;
636
+ }
637
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item .ivu-tooltip .ivu-tooltip-popper .ivu-tooltip-content .ivu-tooltip-inner {
638
+ background: #fff;
639
+ color: #495060;
640
+ }
641
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item .other-menu-icon {
642
+ font-size: 20px;
643
+ }
644
+ .ind-other-menu.ind-other-menu-collapsed .other-menu-item .other-menu-title {
645
+ font-size: 14px;
646
+ display: none;
647
+ }
648
+ .ind-other-menu-drawer-wrap .ivu-drawer {
649
+ height: calc(100% - 110px);
650
+ bottom: 0;
651
+ top: auto;
652
+ }
653
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-history .other-menu-history-item {
654
+ width: 100%;
655
+ height: 35px;
656
+ line-height: 35px;
657
+ position: relative;
658
+ }
659
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-history .other-menu-history-item .delete {
660
+ display: none;
661
+ position: absolute;
662
+ right: 15px;
663
+ top: 0px;
664
+ cursor: pointer;
665
+ }
666
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-history .other-menu-history-item:hover .content {
667
+ cursor: pointer;
668
+ height: 38px;
669
+ font-weight: bold;
670
+ color: var(--ind-primary-color);
671
+ }
672
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-history .other-menu-history-item:hover .delete {
673
+ display: inline;
674
+ }
675
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-collect .other-menu-collect-item {
676
+ width: 100%;
677
+ display: inline-block;
678
+ height: 35px;
679
+ line-height: 35px;
680
+ position: relative;
681
+ }
682
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-collect .other-menu-collect-item .delete {
683
+ display: none;
684
+ position: absolute;
685
+ right: 15px;
686
+ top: 0px;
687
+ z-index: 100;
688
+ cursor: pointer;
689
+ }
690
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-collect .other-menu-collect-item:hover .content {
691
+ cursor: pointer;
692
+ color: var(--ind-primary-color);
693
+ }
694
+ .ind-other-menu-drawer-wrap .ivu-drawer .other-menu-collect .other-menu-collect-item:hover .delete {
695
+ display: inline;
696
+ }
697
+ .ind-other-menu-drawer-wrap-collapsed .ivu-drawer {
698
+ left: 65px;
699
+ height: calc(100% - 110px);
700
+ bottom: 0;
701
+ top: auto;
702
+ }
703
+ .ind-page-view {
704
+ height: 100%;
705
+ background-color: var(--ind-bg-color-dark);
706
+ overflow: auto;
707
+ }
708
+ .ind-page-view .header {
709
+ display: flex;
710
+ align-items: center;
711
+ padding: var(--menu-name-padding);
712
+ border-bottom: 1px solid var(--ind-border-color);
713
+ background: white;
714
+ z-index: 15;
715
+ }
716
+ .ind-page-view .header .title {
717
+ font-size: var(--menu-title-font-size);
718
+ font-weight: 500;
719
+ line-height: 32px;
720
+ color: var(--menu-title-color);
721
+ }
722
+ .ind-page-view .header .back-btn + .title {
723
+ margin-left: 8px;
724
+ }
725
+ .ind-page-view .header .function-wrapper {
726
+ flex-grow: 1;
727
+ display: flex;
728
+ justify-content: flex-end;
729
+ align-items: center;
730
+ }
731
+ .ind-page-view .header .function-wrapper .ivu-btn + .ivu-btn {
732
+ margin-left: 10px;
733
+ }
734
+ .ind-page-view .content {
735
+ padding: var(--page-content-padding) var(--page-content-padding) 0;
736
+ box-sizing: border-box;
737
+ }
738
+ .ind-page-view .content .top-search-content {
739
+ margin-bottom: var(--ind-panel-vertical-margin);
740
+ }
741
+ .ind-page-view .content .body-content {
742
+ display: flex;
743
+ height: 10px;
744
+ }
745
+ .ind-page-view .content .body-content .body-left-content {
746
+ flex: 0 0 16.67%;
747
+ margin-right: 5px;
748
+ overflow: auto;
749
+ }
750
+ .ind-page-view .content .body-content .body-right-content {
751
+ flex: auto;
752
+ }
753
+ .ind-page-view .content .body-content .body-right-content .ind-loading-panel {
754
+ height: 100% !important;
755
+ }
756
+ .ind-page-view .content .body-content .body-right-content .main-content {
757
+ overflow-y: auto;
758
+ overflow-x: hidden;
759
+ }
760
+ .ind-page-view .content .body-content .body-right-content .body-right-content-footer {
761
+ display: flex;
762
+ justify-content: center;
763
+ align-items: center;
764
+ }
765
+ .ind-page-view .content .bottom {
766
+ display: flex;
767
+ justify-content: center;
768
+ align-items: center;
769
+ margin-top: 4px;
770
+ margin-left: calc(0px - var(--page-content-padding));
771
+ padding: 6px 0;
772
+ width: calc(100% + var(--page-content-padding) * 2);
773
+ border-top: 1px solid var(--ind-border-color);
774
+ background: #fff;
775
+ }
776
+ .ind-page-view .content .bottom .ivu-btn + .ivu-btn {
777
+ margin-left: 10px;
778
+ }
779
+ .ind-sider-trigger {
780
+ display: flex;
781
+ justify-content: space-between;
782
+ align-items: center;
783
+ padding: 6px;
784
+ width: 100%;
785
+ height: 50px;
786
+ color: var(--ind-text-color);
787
+ background: #fff;
788
+ overflow: hidden;
789
+ box-sizing: border-box;
790
+ cursor: pointer;
791
+ }
792
+ .ind-sider-trigger .title {
793
+ margin-left: 10px;
794
+ height: 32px;
795
+ line-height: 32px;
796
+ font-size: 16px;
797
+ width: 100%;
798
+ font-weight: bold;
799
+ overflow: hidden;
800
+ }
801
+ .ind-sider-trigger .trans {
802
+ transition: transform 0.2s ease;
803
+ }
804
+ .ind-sider-trigger i {
805
+ transition: transform 0.2s ease;
806
+ }
807
+ .ind-sider-trigger.collapsed {
808
+ justify-content: center;
809
+ transition: width 0.2s ease-in-out;
810
+ }
811
+ .ind-sider-trigger.collapsed i {
812
+ transform: rotateZ(90deg);
813
+ transition: transform 0.2s ease;
814
+ }
815
+ .ind-tags-nav {
816
+ position: relative;
817
+ padding: 6px 0;
818
+ margin: 0 10px;
819
+ height: 44px;
820
+ width: calc(100% - 20px);
821
+ border-top: 1px solid var(--ind-border-color);
822
+ border-bottom: 1px solid var(--ind-border-color);
823
+ box-sizing: border-box;
824
+ user-select: none;
825
+ }
826
+ .ind-tags-nav .ind-tags-nav-content {
827
+ display: flex;
828
+ justify-content: space-between;
829
+ align-items: center;
830
+ height: 100%;
831
+ }
832
+ .ind-tags-nav .ind-tags-nav-content .btn-con {
833
+ height: 100%;
834
+ flex-shrink: 0;
835
+ box-sizing: border-box;
836
+ z-index: 10;
837
+ }
838
+ .ind-tags-nav .ind-tags-nav-content .btn-con button {
839
+ height: 100%;
840
+ padding: 2px 4px;
841
+ line-height: 1;
842
+ text-align: center;
843
+ background: #fff;
844
+ box-sizing: border-box;
845
+ }
846
+ .ind-tags-nav .ivu-tag {
847
+ height: 30px;
848
+ line-height: 30px;
849
+ background: white;
850
+ margin: 0 5px 0 0;
851
+ border: none;
852
+ cursor: pointer;
853
+ }
854
+ .ind-tags-nav .ivu-tag.ivu-tag-primary {
855
+ color: var(--ind-primary-color) !important;
856
+ }
857
+ .ind-tags-nav .ivu-tag.ivu-tag-primary .ivu-tag-color-white {
858
+ color: var(--ind-primary-color) !important;
859
+ font-weight: var(--ind-font-weight-bold);
860
+ }
861
+ .ind-tags-nav .ivu-tag .ivu-tag-text {
862
+ font-size: var(--ind-font-size-md);
863
+ color: var(--ind-text-color);
864
+ }
865
+ .ind-tags-nav .ivu-tag .ivu-icon-ios-close {
866
+ color: #666 !important;
867
+ }
868
+ .ind-tags-nav .ivu-btn-text:hover {
869
+ background: none;
870
+ color: var(--ind-text-color);
871
+ }
872
+ .ind-tags-nav .ivu-btn-text {
873
+ color: var(--ind-text-color);
874
+ }
875
+ .ind-tags-nav .scroll-outer {
876
+ position: relative;
877
+ width: 100%;
878
+ height: 100%;
879
+ overflow: hidden;
880
+ }
881
+ .ind-tags-nav .scroll-outer .scroll-body {
882
+ position: absolute;
883
+ display: inline-block;
884
+ padding: 1px 4px 0;
885
+ height: calc(100% - 1px);
886
+ overflow: visible;
887
+ white-space: nowrap;
888
+ transition: left 0.3s ease;
889
+ }
890
+ .ind-tags-nav .contextmenu {
891
+ position: absolute;
892
+ margin: 0;
893
+ padding: 5px 0;
894
+ background: #fff;
895
+ z-index: 1000;
896
+ list-style-type: none;
897
+ border-radius: 4px;
898
+ box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.1);
899
+ }
900
+ .ind-tags-nav .contextmenu li {
901
+ margin: 0;
902
+ padding: 5px 15px;
903
+ cursor: pointer;
904
+ }
905
+ .ind-tags-nav .contextmenu li:hover {
906
+ background: #eee;
907
+ }
908
+ .ind-tags-nav .ivu-tag-primary.ivu-tag-dot .ivu-tag-dot-inner {
909
+ background-color: var(--ind-primary-color);
910
+ }
911
+ .ind-error-page {
912
+ width: 100%;
913
+ height: 100%;
914
+ position: relative;
915
+ background: #f8f8f9;
916
+ }
917
+ .ind-error-page .content-con {
918
+ width: 700px;
919
+ height: 600px;
920
+ position: absolute;
921
+ left: 50%;
922
+ top: 50%;
923
+ transform: translate(-50%, -60%);
924
+ }
925
+ .ind-error-page .content-con img {
926
+ display: block;
927
+ width: 100%;
928
+ height: 100%;
929
+ }
930
+ .ind-error-page .content-con .text-con {
931
+ position: absolute;
932
+ left: 0px;
933
+ top: 0px;
934
+ }
935
+ .ind-error-page .content-con .text-con h4 {
936
+ position: absolute;
937
+ left: 0px;
938
+ top: 0px;
939
+ font-size: 80px;
940
+ font-weight: 700;
941
+ color: #348eed;
942
+ }
943
+ .ind-error-page .content-con .text-con h5 {
944
+ position: absolute;
945
+ width: 700px;
946
+ left: 0px;
947
+ top: 100px;
948
+ font-size: 20px;
949
+ font-weight: 700;
950
+ color: #67647d;
951
+ }
952
+ .ind-error-page .content-con .back-btn-group {
953
+ position: absolute;
954
+ right: 0px;
955
+ bottom: 20px;
956
+ }
957
+ .ind-button-group {
958
+ display: flex;
959
+ align-items: center;
960
+ flex-wrap: wrap;
961
+ }
962
+ .ind-button-group > *:not(:last-child) {
963
+ margin-right: var(--ind-padding-base);
964
+ }
965
+ .ind-button-group--mt > * {
966
+ margin-top: var(--ind-padding-base);
967
+ }
968
+ .ind-button-group--mb > * {
969
+ margin-bottom: var(--ind-padding-base);
970
+ }
971
+ .ind-button-group--center {
972
+ justify-content: center;
973
+ }
974
+ .ind-button-group--right {
975
+ justify-content: flex-end;
976
+ }
977
+ .ind-button-group--vertical {
978
+ flex-direction: column;
979
+ }
980
+ .ind-button-group--vertical > *:not(:last-child) {
981
+ margin-right: 0;
982
+ margin-bottom: var(--ind-padding-base);
983
+ }
984
+ .ind-date-picker .ivu-date-picker {
985
+ width: -webkit-fill-available;
986
+ }
987
+ .ind-date-picker .ind-range-date-picker {
988
+ display: flex;
989
+ align-items: center;
990
+ }
991
+ .ind-date-picker .ind-range-date-picker .range-sep {
992
+ margin: 0 var(--ind-padding-base);
993
+ }
994
+ .ind-picker-drop .ivu-date-picker-cells-month.quarter span,
995
+ .ind-picker-drop .ivu-date-picker-cells-month.half-year span {
996
+ margin-left: 0;
997
+ margin-right: 0;
998
+ width: 50%;
999
+ text-align: center;
1000
+ }
1001
+ .ind-picker-drop .ivu-date-picker-cells-month.quarter span em,
1002
+ .ind-picker-drop .ivu-date-picker-cells-month.half-year span em {
1003
+ width: auto;
1004
+ padding: 0 10px;
1005
+ }
1006
+ .ind-picker-drop .ivu-date-picker-cells-month.half-year {
1007
+ display: flex;
1008
+ }
1009
+ .ind-picker-drop .ivu-date-picker-cells-month.half-year span {
1010
+ flex: 50% 1 1;
1011
+ }
1012
+ .ind-drawer .ivu-drawer-body {
1013
+ display: flex;
1014
+ flex-direction: column;
1015
+ padding: 0;
1016
+ background-color: var(--ind-bg-color-dark) !important;
1017
+ }
1018
+ .ind-drawer .ind-drawer-content {
1019
+ flex-grow: 1;
1020
+ padding: var(--ind-drawer-content-padding);
1021
+ overflow: auto;
1022
+ }
1023
+ .ind-drawer .ind-drawer-footer {
1024
+ flex-shrink: 0;
1025
+ padding: var(--ind-drawer-footer-padding);
1026
+ width: 100%;
1027
+ background: #fff;
1028
+ border-top: 1px solid var(--ind-border-color);
1029
+ }
1030
+ .ivu-select-dropdown.ivu-dropdown-transfer {
1031
+ max-height: none !important;
1032
+ }
1033
+ .ivu-select-dropdown.ivu-dropdown-transfer .ind-dropdown-list .ivu-dropdown-menu {
1034
+ max-height: 400px;
1035
+ overflow-y: auto;
1036
+ }
1037
+ .ivu-select-dropdown.ivu-dropdown-transfer .ind-dropdown-list .ind-button-group {
1038
+ margin: var(--ind-padding-xs) var(--ind-padding-xs) 0;
1039
+ }
1040
+ .ivu-select-dropdown.ivu-dropdown-transfer .ind-dropdown-list .ivu-dropdown-item {
1041
+ user-select: none;
1042
+ }
1043
+ .excel-flow-wrap {
1044
+ width: 100%;
1045
+ height: 60vh;
1046
+ display: flex;
1047
+ flex-direction: column;
1048
+ justify-content: space-between;
1049
+ }
1050
+ .excel-flow-wrap .ivu-steps .ivu-steps-head,
1051
+ .excel-flow-wrap .ivu-steps .ivu-steps-main {
1052
+ vertical-align: middle;
1053
+ }
1054
+ .excel-flow-wrap .ivu-steps .ivu-steps-title {
1055
+ margin-bottom: 0;
1056
+ }
1057
+ .excel-flow-wrap .content-wrap {
1058
+ height: 100%;
1059
+ padding: 20px 50px;
1060
+ display: flex;
1061
+ flex-direction: column;
1062
+ justify-content: flex-start;
1063
+ overflow: auto;
1064
+ }
1065
+ .excel-flow-wrap .content-wrap .download-btn,
1066
+ .excel-flow-wrap .content-wrap .import-btn {
1067
+ margin-top: 20px;
1068
+ border: 1px solid var(--ind-border-color);
1069
+ border-radius: 4px;
1070
+ display: flex;
1071
+ justify-content: space-between;
1072
+ }
1073
+ .excel-flow-wrap .content-wrap .download-btn .icon,
1074
+ .excel-flow-wrap .content-wrap .import-btn .icon {
1075
+ width: 120px;
1076
+ flex-shrink: 0;
1077
+ border-right: 1px solid var(--ind-border-color);
1078
+ background-color: var(--ind-bg-color-dark);
1079
+ text-align: center;
1080
+ display: flex;
1081
+ flex-direction: column;
1082
+ justify-content: space-around;
1083
+ }
1084
+ .excel-flow-wrap .content-wrap .download-btn .text-panel,
1085
+ .excel-flow-wrap .content-wrap .import-btn .text-panel {
1086
+ margin: 20px;
1087
+ width: 100%;
1088
+ }
1089
+ .excel-flow-wrap .content-wrap .download-btn .text-panel .title,
1090
+ .excel-flow-wrap .content-wrap .import-btn .text-panel .title {
1091
+ font-size: 16px;
1092
+ color: var(--ind-black);
1093
+ }
1094
+ .excel-flow-wrap .content-wrap .download-btn .text-panel .desc,
1095
+ .excel-flow-wrap .content-wrap .import-btn .text-panel .desc {
1096
+ color: var(--ind-gray-5);
1097
+ }
1098
+ .excel-flow-wrap .content-wrap .download-btn .text-panel .link,
1099
+ .excel-flow-wrap .content-wrap .import-btn .text-panel .link {
1100
+ color: var(--ind-blue);
1101
+ cursor: pointer;
1102
+ }
1103
+ .excel-flow-wrap .content-wrap .done-wrap {
1104
+ text-align: center;
1105
+ }
1106
+ .excel-flow-wrap .content-wrap .done-wrap .success-title {
1107
+ font-weight: bold;
1108
+ font-size: 18px;
1109
+ }
1110
+ .excel-flow-wrap .bottom-btn-area {
1111
+ display: flex;
1112
+ justify-content: center;
1113
+ }
1114
+ .ivu-form {
1115
+ display: flex;
1116
+ flex-wrap: wrap;
1117
+ }
1118
+ .ivu-form .ivu-form-item {
1119
+ display: inline-block;
1120
+ width: 100%;
1121
+ margin-bottom: var(--search-margin-bottom) !important;
1122
+ }
1123
+ .ivu-form .ivu-form-item .ivu-poptip,
1124
+ .ivu-form .ivu-form-item .ivu-poptip-rel {
1125
+ width: 100%;
1126
+ }
1127
+ .ivu-form .textAlignLeft {
1128
+ text-align: left;
1129
+ }
1130
+ .ivu-form .textAlignCenter {
1131
+ text-align: center;
1132
+ }
1133
+ .ivu-form .textAlignRight {
1134
+ text-align: right;
1135
+ margin-right: 0px;
1136
+ }
1137
+ .ivu-form .textAlignRight .ivu-btn {
1138
+ margin-left: var(--search-button-margin);
1139
+ }
1140
+ .ivu-form .textAlignRight .ivu-btn-text {
1141
+ color: var(--ind-primary-color);
1142
+ }
1143
+ .ivu-form .show-more-query {
1144
+ width: 46px;
1145
+ padding: 0 !important;
1146
+ }
1147
+ .ivu-form .show-more-query:focus {
1148
+ box-shadow: none !important;
1149
+ }
1150
+ .ivu-form .ivu-form-item .ivu-form-item-content {
1151
+ overflow-wrap: anywhere;
1152
+ }
1153
+ .search .ivu-date-picker {
1154
+ width: 100% !important;
1155
+ }
1156
+ .search .ivu-form {
1157
+ display: flex;
1158
+ flex-wrap: wrap;
1159
+ }
1160
+ .search .ivu-form .ivu-form-item {
1161
+ margin-bottom: var(--search-margin-bottom) !important;
1162
+ }
1163
+ .search .ivu-form .textAlignLeft {
1164
+ text-align: left;
1165
+ }
1166
+ .search .ivu-form .textAlignCenter {
1167
+ text-align: center;
1168
+ }
1169
+ .search .ivu-form .textAlignRight {
1170
+ text-align: right;
1171
+ margin-right: 0px;
1172
+ }
1173
+ .search .ivu-form .textAlignRight .ivu-btn {
1174
+ margin-left: var(--search-button-margin);
1175
+ }
1176
+ .search .ivu-form .textAlignRight .ivu-btn-text {
1177
+ color: var(--ind-primary-color);
1178
+ }
1179
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item {
1180
+ height: 100%;
1181
+ margin-bottom: 0 !important;
1182
+ display: flex;
1183
+ }
1184
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-label {
1185
+ position: relative !important;
1186
+ flex-shrink: 0;
1187
+ flex-grow: 0;
1188
+ text-align: left !important;
1189
+ background-color: var(--ind-bg-color-dark) !important;
1190
+ padding-left: var(--ivu-form-v6stle-item-label-paddingleft);
1191
+ border-right: 1px solid var(--ind-border-color);
1192
+ border-bottom: 1px solid var(--ind-border-color);
1193
+ display: flex;
1194
+ flex-direction: column;
1195
+ justify-content: space-around;
1196
+ }
1197
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content {
1198
+ flex-grow: 1;
1199
+ width: 10px;
1200
+ margin-left: 0 !important;
1201
+ background-color: white;
1202
+ border-right: 1px solid var(--ind-border-color);
1203
+ border-bottom: 1px solid var(--ind-border-color);
1204
+ padding: var(--ivu-form-item-content-padding);
1205
+ display: flex;
1206
+ flex-direction: column;
1207
+ justify-content: space-around;
1208
+ color: var(--ind-text-color);
1209
+ }
1210
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content *:not(
1211
+ .ivu-badge-count,
1212
+ .ivu-btn,
1213
+ .ivu-btn > span,
1214
+ .ivu-icon-md-information-circle,
1215
+ .ivu-form-item-error-tip,
1216
+ .pickerCard .pickQuarterCard .defaultSpan .selected,
1217
+ .ivu-select-placeholder,
1218
+ .upload-file .content-item .download,
1219
+ .upload-file .content-item .delete,
1220
+ .upload-file .content-item .preview,
1221
+ .upload-file .content-item .download .ivu-icon,
1222
+ .upload-file .content-item .delete .ivu-icon,
1223
+ .upload-file .content-item .preview .ivu-icon
1224
+ ) {
1225
+ color: var(--ind-text-color);
1226
+ }
1227
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item-required .ivu-form-item-label:before {
1228
+ position: absolute;
1229
+ left: var(--ivu-form-item-label-before-left, 8px);
1230
+ }
1231
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item-error-tip {
1232
+ position: absolute;
1233
+ top: 30px;
1234
+ left: 5px;
1235
+ color: white;
1236
+ font-size: 14px;
1237
+ padding: 3px;
1238
+ background-color: #f56a6a;
1239
+ border-radius: 3px;
1240
+ font-weight: 600;
1241
+ box-shadow: 0 5px 10px #dedede;
1242
+ z-index: 1888;
1243
+ }
1244
+ .ind-v6-style-form .ivu-form:not(.nov6style) .ivu-form-item-error-tip::after {
1245
+ border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff6969;
1246
+ border-style: solid;
1247
+ border-width: 6px;
1248
+ content: '';
1249
+ height: 0;
1250
+ left: 15px;
1251
+ position: absolute;
1252
+ top: -11px;
1253
+ z-index: 888;
1254
+ }
1255
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item {
1256
+ height: 100%;
1257
+ margin-bottom: 0 !important;
1258
+ display: flex;
1259
+ }
1260
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-label {
1261
+ position: relative !important;
1262
+ flex-shrink: 0;
1263
+ flex-grow: 0;
1264
+ text-align: left !important;
1265
+ background-color: var(--ind-bg-color-dark) !important;
1266
+ padding-left: var(--ivu-form-v6stle-item-label-paddingleft);
1267
+ border-right: 1px solid var(--ind-border-color);
1268
+ border-bottom: 1px solid var(--ind-border-color);
1269
+ display: flex;
1270
+ flex-direction: column;
1271
+ justify-content: space-around;
1272
+ }
1273
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content {
1274
+ flex-grow: 1;
1275
+ width: 10px;
1276
+ margin-left: 0 !important;
1277
+ background-color: white;
1278
+ border-right: 1px solid var(--ind-border-color);
1279
+ border-bottom: 1px solid var(--ind-border-color);
1280
+ padding: var(--ivu-form-item-content-padding);
1281
+ display: flex;
1282
+ flex-direction: column;
1283
+ justify-content: space-around;
1284
+ color: var(--ind-text-color);
1285
+ }
1286
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content *:not(
1287
+ .ivu-badge-count,
1288
+ .ivu-btn,
1289
+ .ivu-btn > span,
1290
+ .ivu-icon-md-information-circle,
1291
+ .ivu-form-item-error-tip,
1292
+ .pickerCard .pickQuarterCard .defaultSpan .selected,
1293
+ .ivu-select-placeholder,
1294
+ .upload-file .content-item .download,
1295
+ .upload-file .content-item .delete,
1296
+ .upload-file .content-item .preview,
1297
+ .upload-file .content-item .download .ivu-icon,
1298
+ .upload-file .content-item .delete .ivu-icon,
1299
+ .upload-file .content-item .preview .ivu-icon
1300
+ ) {
1301
+ color: var(--ind-text-color);
1302
+ }
1303
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item-required .ivu-form-item-label:before {
1304
+ position: absolute;
1305
+ left: var(--ivu-form-item-label-before-left, 8px);
1306
+ }
1307
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item-error-tip {
1308
+ position: absolute;
1309
+ top: 30px;
1310
+ left: 5px;
1311
+ color: white;
1312
+ font-size: 14px;
1313
+ padding: 3px;
1314
+ background-color: #f56a6a;
1315
+ border-radius: 3px;
1316
+ font-weight: 600;
1317
+ box-shadow: 0 5px 10px #dedede;
1318
+ z-index: 1888;
1319
+ }
1320
+ .ind-detail-view .ivu-form:not(.nov6style) .ivu-form-item-error-tip::after {
1321
+ border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff6969;
1322
+ border-style: solid;
1323
+ border-width: 6px;
1324
+ content: '';
1325
+ height: 0;
1326
+ left: 15px;
1327
+ position: absolute;
1328
+ top: -11px;
1329
+ z-index: 888;
1330
+ }
1331
+ .ind-detail-view .content .ivu-card-body:has(.ivu-form) > div {
1332
+ border-top: none;
1333
+ border-left: none;
1334
+ }
1335
+ .ind-detail-view .content .ivu-form {
1336
+ border-top: 1px solid var(--ind-border-color);
1337
+ border-left: 1px solid var(--ind-border-color);
1338
+ }
1339
+ .ind-detail-view .ivu-poptip-rel {
1340
+ display: block;
1341
+ }
1342
+ .ind-detail-view textarea.ivu-input {
1343
+ min-height: 50px !important;
1344
+ max-height: 150px !important;
1345
+ overflow-y: auto !important;
1346
+ }
1347
+ .ind-detail-view .ivu-form .ivu-form-item-label {
1348
+ font-size: 14px !important;
1349
+ text-align: left;
1350
+ }
1351
+ .ind-detail-view .ivu-form-item-required .ivu-form-item-label:before {
1352
+ position: absolute;
1353
+ left: -12px;
1354
+ }
1355
+ .ivu-card-body > div:has(.ivu-form-item) {
1356
+ border-top: 1px solid var(--ind-border-color);
1357
+ border-left: 1px solid var(--ind-border-color);
1358
+ }
1359
+ .ivu-form-inline .ivu-form-item {
1360
+ margin-right: 0 !important;
1361
+ }
1362
+ .ind-detail-form-border {
1363
+ border-top: 1px solid var(--ind-border-color) !important;
1364
+ border-left: 1px solid var(--ind-border-color) !important;
1365
+ }
1366
+ .ivu-form .ivu-form-item-label {
1367
+ padding: var(--ivu-form-item-label-padding);
1368
+ }
1369
+ .ivu-form .ivu-form-item-content {
1370
+ line-height: var(--ivu-form-item-content-line-height);
1371
+ }
1372
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item {
1373
+ height: 100%;
1374
+ margin-bottom: 0 !important;
1375
+ display: flex;
1376
+ }
1377
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-label {
1378
+ position: relative !important;
1379
+ flex-shrink: 0;
1380
+ flex-grow: 0;
1381
+ text-align: left !important;
1382
+ background-color: var(--ind-bg-color-dark) !important;
1383
+ padding-left: var(--ivu-form-v6stle-item-label-paddingleft);
1384
+ border-right: 1px solid var(--ind-border-color);
1385
+ border-bottom: 1px solid var(--ind-border-color);
1386
+ display: flex;
1387
+ flex-direction: column;
1388
+ justify-content: space-around;
1389
+ }
1390
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content {
1391
+ flex-grow: 1;
1392
+ width: 10px;
1393
+ margin-left: 0 !important;
1394
+ background-color: white;
1395
+ border-right: 1px solid var(--ind-border-color);
1396
+ border-bottom: 1px solid var(--ind-border-color);
1397
+ padding: var(--ivu-form-item-content-padding);
1398
+ display: flex;
1399
+ flex-direction: column;
1400
+ justify-content: space-around;
1401
+ color: var(--ind-text-color);
1402
+ }
1403
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content *:not(
1404
+ .ivu-badge-count,
1405
+ .ivu-btn,
1406
+ .ivu-btn > span,
1407
+ .ivu-icon-md-information-circle,
1408
+ .ivu-form-item-error-tip,
1409
+ .pickerCard .pickQuarterCard .defaultSpan .selected,
1410
+ .ivu-select-placeholder,
1411
+ .upload-file .content-item .download,
1412
+ .upload-file .content-item .delete,
1413
+ .upload-file .content-item .preview,
1414
+ .upload-file .content-item .download .ivu-icon,
1415
+ .upload-file .content-item .delete .ivu-icon,
1416
+ .upload-file .content-item .preview .ivu-icon
1417
+ ) {
1418
+ color: var(--ind-text-color);
1419
+ }
1420
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item-required .ivu-form-item-label:before {
1421
+ position: absolute;
1422
+ left: var(--ivu-form-item-label-before-left, 8px);
1423
+ }
1424
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item-error-tip {
1425
+ position: absolute;
1426
+ top: 30px;
1427
+ left: 5px;
1428
+ color: white;
1429
+ font-size: 14px;
1430
+ padding: 3px;
1431
+ background-color: #f56a6a;
1432
+ border-radius: 3px;
1433
+ font-weight: 600;
1434
+ box-shadow: 0 5px 10px #dedede;
1435
+ z-index: 1888;
1436
+ }
1437
+ #ind-detail-form .ivu-form:not(.nov6style) .ivu-form-item-error-tip::after {
1438
+ border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff6969;
1439
+ border-style: solid;
1440
+ border-width: 6px;
1441
+ content: '';
1442
+ height: 0;
1443
+ left: 15px;
1444
+ position: absolute;
1445
+ top: -11px;
1446
+ z-index: 888;
1447
+ }
1448
+ .ivu-modal .ivu-biz-form-row .ivu-form {
1449
+ border-top: 1px solid var(--ind-border-color);
1450
+ border-left: 1px solid var(--ind-border-color);
1451
+ }
1452
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item {
1453
+ height: 100%;
1454
+ margin-bottom: 0 !important;
1455
+ display: flex;
1456
+ }
1457
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-label {
1458
+ position: relative !important;
1459
+ flex-shrink: 0;
1460
+ flex-grow: 0;
1461
+ text-align: left !important;
1462
+ background-color: var(--ind-bg-color-dark) !important;
1463
+ padding-left: var(--ivu-form-v6stle-item-label-paddingleft);
1464
+ border-right: 1px solid var(--ind-border-color);
1465
+ border-bottom: 1px solid var(--ind-border-color);
1466
+ display: flex;
1467
+ flex-direction: column;
1468
+ justify-content: space-around;
1469
+ }
1470
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content {
1471
+ flex-grow: 1;
1472
+ width: 10px;
1473
+ margin-left: 0 !important;
1474
+ background-color: white;
1475
+ border-right: 1px solid var(--ind-border-color);
1476
+ border-bottom: 1px solid var(--ind-border-color);
1477
+ padding: var(--ivu-form-item-content-padding);
1478
+ display: flex;
1479
+ flex-direction: column;
1480
+ justify-content: space-around;
1481
+ color: var(--ind-text-color);
1482
+ }
1483
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content *:not(
1484
+ .ivu-badge-count,
1485
+ .ivu-btn,
1486
+ .ivu-btn > span,
1487
+ .ivu-icon-md-information-circle,
1488
+ .ivu-form-item-error-tip,
1489
+ .pickerCard .pickQuarterCard .defaultSpan .selected,
1490
+ .ivu-select-placeholder,
1491
+ .upload-file .content-item .download,
1492
+ .upload-file .content-item .delete,
1493
+ .upload-file .content-item .preview,
1494
+ .upload-file .content-item .download .ivu-icon,
1495
+ .upload-file .content-item .delete .ivu-icon,
1496
+ .upload-file .content-item .preview .ivu-icon
1497
+ ) {
1498
+ color: var(--ind-text-color);
1499
+ }
1500
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item-required .ivu-form-item-label:before {
1501
+ position: absolute;
1502
+ left: var(--ivu-form-item-label-before-left, 8px);
1503
+ }
1504
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item-error-tip {
1505
+ position: absolute;
1506
+ top: 30px;
1507
+ left: 5px;
1508
+ color: white;
1509
+ font-size: 14px;
1510
+ padding: 3px;
1511
+ background-color: #f56a6a;
1512
+ border-radius: 3px;
1513
+ font-weight: 600;
1514
+ box-shadow: 0 5px 10px #dedede;
1515
+ z-index: 1888;
1516
+ }
1517
+ .ivu-modal .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item-error-tip::after {
1518
+ border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff6969;
1519
+ border-style: solid;
1520
+ border-width: 6px;
1521
+ content: '';
1522
+ height: 0;
1523
+ left: 15px;
1524
+ position: absolute;
1525
+ top: -11px;
1526
+ z-index: 888;
1527
+ }
1528
+ .ivu-drawer .ivu-biz-form-row .ivu-form {
1529
+ border-top: 1px solid var(--ind-border-color);
1530
+ border-left: 1px solid var(--ind-border-color);
1531
+ }
1532
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item {
1533
+ height: 100%;
1534
+ margin-bottom: 0 !important;
1535
+ display: flex;
1536
+ }
1537
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-label {
1538
+ position: relative !important;
1539
+ flex-shrink: 0;
1540
+ flex-grow: 0;
1541
+ text-align: left !important;
1542
+ background-color: var(--ind-bg-color-dark) !important;
1543
+ padding-left: var(--ivu-form-v6stle-item-label-paddingleft);
1544
+ border-right: 1px solid var(--ind-border-color);
1545
+ border-bottom: 1px solid var(--ind-border-color);
1546
+ display: flex;
1547
+ flex-direction: column;
1548
+ justify-content: space-around;
1549
+ }
1550
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content {
1551
+ flex-grow: 1;
1552
+ width: 10px;
1553
+ margin-left: 0 !important;
1554
+ background-color: white;
1555
+ border-right: 1px solid var(--ind-border-color);
1556
+ border-bottom: 1px solid var(--ind-border-color);
1557
+ padding: var(--ivu-form-item-content-padding);
1558
+ display: flex;
1559
+ flex-direction: column;
1560
+ justify-content: space-around;
1561
+ color: var(--ind-text-color);
1562
+ }
1563
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item .ivu-form-item-content *:not(
1564
+ .ivu-badge-count,
1565
+ .ivu-btn,
1566
+ .ivu-btn > span,
1567
+ .ivu-icon-md-information-circle,
1568
+ .ivu-form-item-error-tip,
1569
+ .pickerCard .pickQuarterCard .defaultSpan .selected,
1570
+ .ivu-select-placeholder,
1571
+ .upload-file .content-item .download,
1572
+ .upload-file .content-item .delete,
1573
+ .upload-file .content-item .preview,
1574
+ .upload-file .content-item .download .ivu-icon,
1575
+ .upload-file .content-item .delete .ivu-icon,
1576
+ .upload-file .content-item .preview .ivu-icon
1577
+ ) {
1578
+ color: var(--ind-text-color);
1579
+ }
1580
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item-required .ivu-form-item-label:before {
1581
+ position: absolute;
1582
+ left: var(--ivu-form-item-label-before-left, 8px);
1583
+ }
1584
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item-error-tip {
1585
+ position: absolute;
1586
+ top: 30px;
1587
+ left: 5px;
1588
+ color: white;
1589
+ font-size: 14px;
1590
+ padding: 3px;
1591
+ background-color: #f56a6a;
1592
+ border-radius: 3px;
1593
+ font-weight: 600;
1594
+ box-shadow: 0 5px 10px #dedede;
1595
+ z-index: 1888;
1596
+ }
1597
+ .ivu-drawer .ivu-biz-form-row .ivu-form:not(.nov6style) .ivu-form-item-error-tip::after {
1598
+ border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff6969;
1599
+ border-style: solid;
1600
+ border-width: 6px;
1601
+ content: '';
1602
+ height: 0;
1603
+ left: 15px;
1604
+ position: absolute;
1605
+ top: -11px;
1606
+ z-index: 888;
1607
+ }
1608
+ .ivu-drawer .ivu-drawer-content {
1609
+ height: 100%;
1610
+ }
1611
+ .ivu-drawer .ivu-drawer-content .ivu-card {
1612
+ padding: 0 0 !important;
1613
+ overflow: hidden !important;
1614
+ width: 100%;
1615
+ }
1616
+ .ivu-drawer .ivu-drawer-content .ivu-card .ivu-card-head {
1617
+ padding: 14px 16px;
1618
+ font-size: 16px;
1619
+ color: #17233d;
1620
+ font-weight: 500;
1621
+ }
1622
+ .form-in-form .ivu-form-item-content {
1623
+ padding: 0 !important;
1624
+ border: none !important;
1625
+ }
1626
+ .condition-pannel-wrap {
1627
+ margin-top: 10px;
1628
+ width: 100%;
1629
+ height: 64vh;
1630
+ overflow: auto;
1631
+ display: flex;
1632
+ justify-content: space-between;
1633
+ align-content: flex-start;
1634
+ flex-wrap: wrap;
1635
+ flex-direction: row;
1636
+ }
1637
+ .condition-pannel-wrap .condition-card {
1638
+ width: 49%;
1639
+ margin-bottom: 10px;
1640
+ cursor: pointer;
1641
+ }
1642
+ .condition-pannel-wrap .condition-card .title-row {
1643
+ width: 100%;
1644
+ display: flex;
1645
+ justify-content: flex-start;
1646
+ height: 32px;
1647
+ line-height: 32px;
1648
+ }
1649
+ .condition-pannel-wrap .condition-card .title-row .title-status {
1650
+ flex-shrink: 0;
1651
+ }
1652
+ .condition-pannel-wrap .condition-card .condition-content .contidtion-row {
1653
+ display: flex;
1654
+ flex-wrap: nowrap;
1655
+ }
1656
+ .condition-pannel-wrap .condition-card .condition-content .contidtion-row .condition-label {
1657
+ width: 120px;
1658
+ flex-shrink: 0;
1659
+ color: var(--ind-desc-color);
1660
+ }
1661
+ .condition-pannel-wrap .condition-card .condition-content .contidtion-row .condition-value {
1662
+ width: 100%;
1663
+ }
1664
+ :root {
1665
+ --modal-top-height: 100px;
1666
+ --modal-header-height: 52px;
1667
+ --modal-footer-height: 57px;
1668
+ --modal-other-height: calc(var(--modal-top-height) + var(--modal-header-height) + var(--modal-footer-height));
1669
+ }
1670
+ .ibp-mode {
1671
+ --modal-top-height: 10px;
1672
+ --modal-other-height: calc(var(--modal-top-height) + var(--modal-header-height) + var(--modal-footer-height));
1673
+ }
1674
+ .ind-modal .ivu-modal {
1675
+ top: var(--modal-top-height);
1676
+ }
1677
+ .ind-modal .ivu-modal-fullscreen {
1678
+ top: 0;
1679
+ }
1680
+ .ind-modal .ivu-modal:not(.ivu-modal-fullscreen) .ivu-modal-body {
1681
+ max-height: calc(100vh - var(--modal-other-height));
1682
+ overflow: auto;
1683
+ }
1684
+ .ind-modal .ivu-modal:not(.ivu-modal-fullscreen) .ivu-modal-footer button + button {
1685
+ margin-left: 0;
1686
+ }
1687
+ .ind-modal .ivu-modal.ivu-modal-fullscreen .ivu-modal-close .ivu-icon-ios-close {
1688
+ color: white;
1689
+ }
1690
+ .report-index-model-panel .left-panel {
1691
+ padding: var(--report-index-model-panel-padding);
1692
+ border: 1px solid var(--ind-border-color);
1693
+ }
1694
+ .report-index-model-panel .left-panel .report-index-dimension1-panel {
1695
+ width: 100px;
1696
+ height: fit-content;
1697
+ border: 1px solid var(--ind-border-color);
1698
+ border-radius: 4px;
1699
+ }
1700
+ .report-index-model-panel .left-panel .report-index-dimension1-panel .report-index-dimension1 {
1701
+ text-align: center;
1702
+ line-height: 30px;
1703
+ border-bottom: 1px solid var(--ind-border-color);
1704
+ cursor: pointer;
1705
+ }
1706
+ .report-index-model-panel .left-panel .report-index-dimension1-panel .report-index-dimension1:last-child {
1707
+ border-bottom: none;
1708
+ }
1709
+ .report-index-model-panel .left-panel .report-index-dimension1-panel .report-index-dimension1.selected {
1710
+ background-color: var(--ind-blue);
1711
+ color: var(--ind-white);
1712
+ }
1713
+ .report-index-model-panel .left-panel .report-index-index-panel {
1714
+ border-left: 1px solid var(--ind-border-color);
1715
+ }
1716
+ .report-index-model-panel .left-panel .report-index-options {
1717
+ padding: 0 var(--report-index-model-panel-padding);
1718
+ padding-right: var(--report-index-options-padding-right);
1719
+ }
1720
+ .report-index-model-panel .opt-panel {
1721
+ padding: 0 20px;
1722
+ height: 600px;
1723
+ justify-content: center;
1724
+ }
1725
+ .report-index-model-panel .right-panel {
1726
+ padding: var(--report-index-model-panel-padding);
1727
+ border: 1px solid var(--ind-border-color);
1728
+ }
1729
+ .ind-back-top-panel {
1730
+ position: relative;
1731
+ height: 100%;
1732
+ overflow-y: auto;
1733
+ }
1734
+ .ind-loading-panel {
1735
+ position: relative;
1736
+ height: auto;
1737
+ }
1738
+ .ind-loading-panel .ind-loading-spin--dark {
1739
+ background-color: #e1e1e1;
1740
+ opacity: 0.9;
1741
+ }
1742
+ .ind-loading-panel .ind-loading-spin-icon {
1743
+ animation: ani-loading-spin 1s linear infinite;
1744
+ }
1745
+ @keyframes ani-loading-spin {
1746
+ from {
1747
+ transform: rotate(0deg);
1748
+ }
1749
+ 50% {
1750
+ transform: rotate(180deg);
1751
+ }
1752
+ to {
1753
+ transform: rotate(360deg);
1754
+ }
1755
+ }
1756
+ .ind-select-item.select-all {
1757
+ border-bottom: 2px solid var(--ind-border-color);
1758
+ }
1759
+ :root,
1760
+ :host {
1761
+ --ind-sign-padding: var(--ind-padding-xs);
1762
+ --ind-sign-content-height: 200px;
1763
+ --ind-sign-content-background: var(--ind-white);
1764
+ --ind-sign-content-border: 1px solid var(--ind-border-color);
1765
+ }
1766
+ .ind-sign {
1767
+ padding: var(--ind-sign-padding);
1768
+ }
1769
+ .ind-sign__content {
1770
+ display: flex;
1771
+ justify-content: center;
1772
+ align-items: center;
1773
+ height: var(--ind-sign-content-height);
1774
+ background-color: var(--ind-sign-content-background);
1775
+ border: var(--ind-sign-content-border);
1776
+ border-radius: var(--ind-border-radius-md);
1777
+ overflow: hidden;
1778
+ }
1779
+ .ind-sign__content canvas {
1780
+ width: 100%;
1781
+ height: 100%;
1782
+ }
1783
+ .lambo-grid-table {
1784
+ display: flex;
1785
+ flex-direction: column;
1786
+ justify-content: flex-start;
1787
+ height: 100%;
1788
+ border-radius: 4px;
1789
+ background: #ffffff;
1790
+ }
1791
+ .lambo-grid-table.fullscreen-fixed {
1792
+ padding: var(--ind-table-padding);
1793
+ }
1794
+ .lambo-grid-table .ind-loading-panel {
1795
+ height: 100% !important;
1796
+ }
1797
+ .lambo-grid-table .other-button {
1798
+ margin-top: var(--ind-other-button-top);
1799
+ }
1800
+ .lambo-grid-table .other-button .ivu-btn-small {
1801
+ height: var(--ind-button-height-md);
1802
+ }
1803
+ .lambo-grid-table .ind-button-group--mb > * {
1804
+ margin-bottom: var(--ind-table-button-padding);
1805
+ }
1806
+ .lambo-grid-table .ag-cell {
1807
+ user-select: text;
1808
+ overflow: unset;
1809
+ }
1810
+ .lambo-grid-table .ag-cell.ag-wrap-cell {
1811
+ overflow: visible;
1812
+ }
1813
+ .lambo-grid-table .ag-theme-balham .ag-ltr .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),
1814
+ .lambo-grid-table .ag-theme-balham .ag-ltr .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
1815
+ .lambo-grid-table .ag-theme-balham .ag-ltr .ag-has-focus .ag-full-width-row.ag-row-focus .ag-cell-wrapper.ag-row-group,
1816
+ .lambo-grid-table .ag-theme-balham .ag-ltr .ag-cell-range-single-cell,
1817
+ .lambo-grid-table .ag-theme-balham .ag-ltr .ag-cell-range-single-cell.ag-cell-range-handle,
1818
+ .lambo-grid-table .ag-theme-balham .ag-rtl .ag-has-focus .ag-cell-focus:not(.ag-cell-range-selected),
1819
+ .lambo-grid-table .ag-theme-balham .ag-rtl .ag-context-menu-open .ag-cell-focus:not(.ag-cell-range-selected),
1820
+ .lambo-grid-table .ag-theme-balham .ag-rtl .ag-has-focus .ag-full-width-row.ag-row-focus .ag-cell-wrapper.ag-row-group,
1821
+ .lambo-grid-table .ag-theme-balham .ag-rtl .ag-cell-range-single-cell,
1822
+ .lambo-grid-table .ag-theme-balham .ag-rtl .ag-cell-range-single-cell.ag-cell-range-handle {
1823
+ border-right: 1px solid var(--ag-range-selection-border-color, var(--ag-balham-active-color, #0091ea)) !important;
1824
+ }
1825
+ .lambo-grid-table .ag-theme-balham .ag-ltr .ag-cell {
1826
+ border-right-color: var(--ag-row-border-color, #d9dcde) !important;
1827
+ }
1828
+ .lambo-grid-table .ag-theme-balham .ag-header-cell::after,
1829
+ .lambo-grid-table .ag-theme-balham .ag-header-group-cell::after {
1830
+ height: 100% !important;
1831
+ top: 0 !important;
1832
+ }
1833
+ .lambo-grid-table .ag-header-group-cell-label,
1834
+ .lambo-grid-table .ag-header-cell-label {
1835
+ justify-content: center !important;
1836
+ }
1837
+ .lambo-grid-table .buttons /deep/ .ivu-btn {
1838
+ margin-right: 5px;
1839
+ }
1840
+ .lambo-grid-table /deep/ .ivu-checkbox-inner {
1841
+ border: 1px solid var(--check-border);
1842
+ }
1843
+ .lambo-grid-table /deep/ .ivu-form-item {
1844
+ margin-bottom: 0;
1845
+ }
1846
+ .lambo-grid-table .i-crud-toolbar-btn,
1847
+ .lambo-grid-table .i-crud-toolbar-btn:hover,
1848
+ .lambo-grid-table .i-crud-toolbar-btn:focus {
1849
+ border-color: transparent !important;
1850
+ box-shadow: unset !important;
1851
+ }
1852
+ .lambo-grid-table .ag-button .ivu-btn-small {
1853
+ line-height: var(--input-height-table) !important;
1854
+ height: var(--input-height-table) !important;
1855
+ }
1856
+ .lambo-grid-table .ag-date input,
1857
+ .lambo-grid-table .ag-date .ivu-input-suffix,
1858
+ .lambo-grid-table .ag-date .ivu-input-prefix i,
1859
+ .lambo-grid-table .ag-date .ivu-input-suffix i {
1860
+ height: calc(var(--input-height-table) - 1px) !important;
1861
+ line-height: calc(var(--input-height-table) - 1px) !important;
1862
+ }
1863
+ .lambo-grid-table .ag-right-aligned-cell .ag-input input {
1864
+ text-align: right;
1865
+ }
1866
+ .lambo-grid-table .ag-input input {
1867
+ height: calc(var(--input-height-table) - 1px) !important;
1868
+ line-height: calc(var(--input-height-table) - 1px) !important;
1869
+ background-color: #dae8ff;
1870
+ }
1871
+ .lambo-grid-table .ag-ind-select {
1872
+ width: 100%;
1873
+ }
1874
+ .lambo-grid-table .ag-ind-select .ivu-select-single,
1875
+ .lambo-grid-table .ag-ind-select .ivu-select-input,
1876
+ .lambo-grid-table .ag-ind-select .ivu-select-selection,
1877
+ .lambo-grid-table .ag-ind-select .ivu-select-selected-value,
1878
+ .lambo-grid-table .ag-ind-select .ivu-select-placeholder,
1879
+ .lambo-grid-table .ag-ind-select .ivu-select-default.ivu-select-multiple .ivu-select-selection {
1880
+ width: 100%;
1881
+ height: calc(var(--input-height-table) - 1px) !important;
1882
+ min-height: calc(var(--input-height-table) - 1px) !important;
1883
+ line-height: calc(var(--input-height-table) - 1px) !important;
1884
+ }
1885
+ .lambo-grid-table .ag-ind-select .ivu-tag {
1886
+ height: calc(var(--input-height-table) - 4px) !important;
1887
+ line-height: calc(var(--input-height-table) - 4px) !important;
1888
+ }
1889
+ .lambo-grid-table .ag-ind-select .ivu-select-selection > div .ivu-tag {
1890
+ margin-top: 0 !important;
1891
+ }
1892
+ .lambo-grid-table .ag-tree-select {
1893
+ width: 100%;
1894
+ }
1895
+ .lambo-grid-table .ag-tree-select input {
1896
+ width: 100%;
1897
+ }
1898
+ .lambo-grid-table .ag-tree-select input,
1899
+ .lambo-grid-table .ag-tree-select .ivu-input-icon {
1900
+ height: calc(var(--input-height-table) - 1px) !important;
1901
+ min-height: calc(var(--input-height-table) - 1px) !important;
1902
+ line-height: calc(var(--input-height-table) - 1px) !important;
1903
+ }
1904
+ .cell-span {
1905
+ background-color: var(--ind-white);
1906
+ border-bottom: 1px solid var(--ag-row-border-color, #d9dcde) !important;
1907
+ }
1908
+ .cell-span:focus-within {
1909
+ border-bottom: var(--ag-range-selection-border-style);
1910
+ }
1911
+ .fullscreen-fixed {
1912
+ position: fixed;
1913
+ z-index: 999;
1914
+ width: 100vw;
1915
+ height: 100vh;
1916
+ top: 0;
1917
+ left: 0;
1918
+ background-color: var(--ind-white);
1919
+ }
1920
+ .ag-header-select-all {
1921
+ width: 100%;
1922
+ flex-shrink: 0;
1923
+ justify-content: center;
1924
+ }
1925
+ .tip {
1926
+ flex-shrink: 0;
1927
+ margin-top: 5px;
1928
+ width: -webkit-fill-available;
1929
+ min-height: 24px;
1930
+ line-height: 24px;
1931
+ background-color: var(--ind-bg-color-dark);
1932
+ }
1933
+ .important-tip {
1934
+ flex-shrink: 0;
1935
+ margin-top: 5px;
1936
+ width: -webkit-fill-available;
1937
+ height: 24px;
1938
+ line-height: 24px;
1939
+ background-color: var(--ind-bg-color-dark);
1940
+ }
1941
+ .important-tip .ivu-icon-md-information-circle {
1942
+ float: left;
1943
+ margin-right: 5px;
1944
+ margin-left: 5px;
1945
+ line-height: 24px;
1946
+ transform: scale(1.5);
1947
+ color: #ff9900;
1948
+ }
1949
+ .index-manager-drag-title .manage-col1,
1950
+ .index-manager-drag-item .manage-col1 {
1951
+ flex-shrink: 0;
1952
+ width: 80px;
1953
+ cursor: pointer;
1954
+ }
1955
+ .index-manager-drag-title .manage-col2,
1956
+ .index-manager-drag-item .manage-col2 {
1957
+ width: 100%;
1958
+ }
1959
+ .index-manager-drag-title .manage-col3,
1960
+ .index-manager-drag-item .manage-col3 {
1961
+ flex-shrink: 0;
1962
+ width: 80px;
1963
+ }
1964
+ .index-manager-drag-title .manage-col4,
1965
+ .index-manager-drag-item .manage-col4 {
1966
+ flex-shrink: 0;
1967
+ width: 80px;
1968
+ }
1969
+ .index-manager-drag-title .manage-col5,
1970
+ .index-manager-drag-item .manage-col5 {
1971
+ flex-shrink: 0;
1972
+ width: 100px;
1973
+ }
1974
+ .index-manager-drag-title .manage-col6,
1975
+ .index-manager-drag-item .manage-col6 {
1976
+ flex-shrink: 0;
1977
+ width: 80px;
1978
+ cursor: pointer;
1979
+ }
1980
+ .index-manager-drag-title {
1981
+ text-align: left;
1982
+ padding: 10px 0;
1983
+ }
1984
+ .index-manager-drag-item {
1985
+ margin-bottom: 5px;
1986
+ }
1987
+ .index-manager-drag-item .manage-col1,
1988
+ .index-manager-drag-item .manage-col2,
1989
+ .index-manager-drag-item .manage-col3,
1990
+ .index-manager-drag-item .manage-col4,
1991
+ .index-manager-drag-item .manage-col6 {
1992
+ padding-top: 6px;
1993
+ }
1994
+ .index-manager-drag-item .manage-col6 {
1995
+ text-align: right;
1996
+ }
1997
+ .index-manager-height100-card .ivu-card-body {
1998
+ height: calc(100% - 49px);
1999
+ }
2000
+ .ind-detail-view .content .lambo-grid-table > .ivu-row {
2001
+ margin-top: 0 !important;
2002
+ }
2003
+ .ivu-drawer .ivu-drawer-content .lambo-grid-table > .ivu-row {
2004
+ margin-top: 0 !important;
2005
+ }
2006
+ .ag-layout-auto-height .ag-center-cols-viewport,
2007
+ .ag-layout-auto-height .ag-center-cols-container,
2008
+ .ag-layout-print .ag-center-cols-viewport,
2009
+ .ag-layout-print .ag-center-cols-container {
2010
+ min-height: unset !important;
2011
+ }
2012
+ .ag-ltr .ag-header-cell:after,
2013
+ .ag-ltr .ag-header-group-cell:after {
2014
+ width: 0 !important;
2015
+ border-right: 1px solid var(--ag-header-column-separator-color) !important;
2016
+ }
2017
+ .ag-tooltip {
2018
+ background-color: #e8e9ea !important;
2019
+ color: #333 !important;
2020
+ border: var(--ag-borders) var(--ag-border-color) !important;
2021
+ border-radius: 4px;
2022
+ padding: 4px 8px;
2023
+ white-space: pre-wrap;
2024
+ }
2025
+ .tree-wrapper {
2026
+ background: white;
2027
+ border-radius: 4px;
2028
+ width: var(--ind-tree-wrapper-width);
2029
+ height: 100%;
2030
+ }
2031
+ .tree-wrapper .header {
2032
+ position: sticky;
2033
+ padding: 10px 10px 10px 10px;
2034
+ top: 0;
2035
+ background: white;
2036
+ border-bottom: 1px solid var(--ind-border-color);
2037
+ }
2038
+ .tree-wrapper .header .title {
2039
+ font-size: var(--ind-font-size-lg);
2040
+ font-weight: bold;
2041
+ vertical-align: middle;
2042
+ }
2043
+ .tree-wrapper .content {
2044
+ padding: var(--tree-content-padding);
2045
+ }
2046
+ .tree-wrapper .content .ivu-input-wrapper {
2047
+ margin-bottom: 8px;
2048
+ }
2049
+ .tree-wrapper .content .ivu-tree {
2050
+ height: 10px;
2051
+ overflow: auto;
2052
+ }
2053
+ .ivu-tree-title-selected,
2054
+ .ivu-tree-title-selected:hover {
2055
+ color: var(--ind-white);
2056
+ background: var(--ind-primary-color);
2057
+ }
2058
+ .custom-title.important::after {
2059
+ content: '*';
2060
+ font-size: 16px;
2061
+ font-weight: bold;
2062
+ line-height: 1;
2063
+ vertical-align: middle;
2064
+ color: var(--ind-red);
2065
+ display: none;
2066
+ }
2067
+ .custom-title.weak {
2068
+ color: var(--ind-gray);
2069
+ }
2070
+ .custom-title .title-status {
2071
+ color: var(--ind-gray);
2072
+ }
2073
+ .custom-title .title-status.red {
2074
+ color: var(--ind-red);
2075
+ }
2076
+ .custom-title .title-status.blue {
2077
+ color: var(--ind-blue);
2078
+ }
2079
+ .custom-title .title-status.green {
2080
+ color: var(--ind-green);
2081
+ }
2082
+ .custom-title .title-status.orange {
2083
+ color: var(--ind-orange);
2084
+ }
2085
+ .custom-title .title-status.yellow {
2086
+ color: var(--ind-yellow);
2087
+ }
2088
+ .custom-title .title-status.gray {
2089
+ color: var(--ind-gray);
2090
+ }
2091
+ .ivu-tree-title-selected .title-status.blue {
2092
+ color: var(--ind-white);
2093
+ }
2094
+ .emp-tree-box .main {
2095
+ display: flex;
2096
+ }
2097
+ .emp-tree-box .main .panel .content-box {
2098
+ margin-top: 10px;
2099
+ height: calc(100vh - 300px) !important;
2100
+ border: 2px var(--ind-border-color) solid;
2101
+ border-radius: 4px;
2102
+ overflow: auto;
2103
+ }
2104
+ .emp-tree-box .main .panel .content-box .content {
2105
+ height: 100%;
2106
+ padding: 10px;
2107
+ overflow: auto;
2108
+ }
2109
+ .emp-tree-box .main .panel.emp-tree {
2110
+ flex: 5;
2111
+ }
2112
+ .emp-tree-box .main .panel.checked-list {
2113
+ margin-left: 20px;
2114
+ flex: 4;
2115
+ }
2116
+ .emp-tree-box .main .panel.checked-list .content {
2117
+ line-height: 1;
2118
+ }
2119
+ .emp-tree-box .main .panel.checked-list .content .node,
2120
+ .emp-tree-box .main .panel.checked-list .content .tip {
2121
+ padding: 5px 10px;
2122
+ }
2123
+ .emp-tree-box .main .panel.checked-list .content .tip {
2124
+ color: var(--ind-desc-color);
2125
+ }
2126
+ .tree-select-wrapper .tree-wrapper {
2127
+ min-width: 180px;
2128
+ width: 100%;
2129
+ }
2130
+ .tree-select-wrapper .tree-wrapper .content {
2131
+ padding-right: 0;
2132
+ }
2133
+ .tree-select-wrapper .global-desc-text {
2134
+ margin-top: 10px;
2135
+ }
2136
+ .tree-select-poptip {
2137
+ width: 100%;
2138
+ }
2139
+ .tree-select-poptip .ivu-poptip-rel {
2140
+ width: 100%;
2141
+ }
2142
+ .global-desc-text {
2143
+ font-size: var(--ind-font-size-sm);
2144
+ color: var(--ind-desc-color);
2145
+ }
2146
+ .ivu-tree ul li {
2147
+ margin: var(--ivu-tree-margin);
2148
+ }
2149
+ .upload-file {
2150
+ position: relative;
2151
+ min-height: 45px;
2152
+ }
2153
+ .upload-file .data-panel {
2154
+ padding: 5px 10px 0px 10px;
2155
+ border: 1px #dee1e8 solid;
2156
+ border-radius: 5px;
2157
+ }
2158
+ .upload-file .content-item {
2159
+ display: flex;
2160
+ line-height: var(--file-line-height);
2161
+ box-sizing: border-box;
2162
+ border-bottom: 1px solid var(--ind-border-color);
2163
+ }
2164
+ .upload-file .content-item:last-child {
2165
+ border-bottom: none;
2166
+ }
2167
+ .upload-file .content-item .title {
2168
+ width: calc(100% - 240px);
2169
+ font-size: 14px;
2170
+ line-height: var(--file-line-height);
2171
+ white-space: nowrap;
2172
+ overflow: hidden;
2173
+ text-overflow: ellipsis;
2174
+ }
2175
+ .upload-file .content-item .preview {
2176
+ width: 80px;
2177
+ text-align: center;
2178
+ color: var(--ind-primary-color);
2179
+ cursor: pointer;
2180
+ }
2181
+ .upload-file .content-item .download,
2182
+ .upload-file .content-item .delete {
2183
+ display: block;
2184
+ width: 80px;
2185
+ line-height: var(--file-line-height);
2186
+ cursor: pointer;
2187
+ text-align: center;
2188
+ color: var(--ind-primary-color);
2189
+ }
2190
+ .upload-file .content-item .download i,
2191
+ .upload-file .content-item .delete i {
2192
+ font-size: 18px;
2193
+ vertical-align: middle !important;
2194
+ }
2195
+ .ivu-divider-horizontal {
2196
+ margin: 5px 0;
2197
+ }
2198
+ .upload-img {
2199
+ padding: 2px;
2200
+ min-height: 60px;
2201
+ line-height: 0px;
2202
+ border: 2px var(--ind-bg-color-dark) solid;
2203
+ }
2204
+ .upload-img .demo-upload-list {
2205
+ display: inline-block;
2206
+ width: 60px;
2207
+ height: 60px;
2208
+ text-align: center;
2209
+ line-height: 60px;
2210
+ border: 1px solid transparent;
2211
+ border-radius: 4px;
2212
+ overflow: hidden;
2213
+ background: #fff;
2214
+ position: relative;
2215
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
2216
+ margin-right: 4px;
2217
+ }
2218
+ .upload-img .demo-upload-list img {
2219
+ width: 100%;
2220
+ height: 100%;
2221
+ }
2222
+ .upload-img .demo-upload-list-cover {
2223
+ display: none;
2224
+ position: absolute;
2225
+ top: 0;
2226
+ bottom: 0;
2227
+ left: 0;
2228
+ right: 0;
2229
+ background: rgba(0, 0, 0, 0.6);
2230
+ cursor: pointer;
2231
+ }
2232
+ .upload-img .demo-upload-list:hover .demo-upload-list-cover {
2233
+ display: block;
2234
+ }
2235
+ .upload-img .demo-upload-list-cover i {
2236
+ margin: 0 2px;
2237
+ color: var(--ind-white) !important;
2238
+ font-size: 20px;
2239
+ cursor: pointer;
2240
+ }
2241
+ .upload-img .demo-upload-list-cover i.delete-icon {
2242
+ position: absolute;
2243
+ top: 0;
2244
+ right: 0;
2245
+ margin: 0;
2246
+ font-size: 16px;
2247
+ background: rgba(255, 255, 255, 0.3);
2248
+ border-radius: 0 0 0 50%;
2249
+ }
2250
+ .upload-img-no-border {
2251
+ padding: 2px;
2252
+ line-height: 0px;
2253
+ }
2254
+ .ivu-modal-fullscreen .ivu-modal-content {
2255
+ background-color: rgba(0, 0, 0, 0) !important;
2256
+ }
2257
+ .ivu-modal-close .ivu-icon-ios-close {
2258
+ color: white;
2259
+ }
2260
+ .ivu-carousel-item {
2261
+ text-align: center;
2262
+ }
2263
+ .carouse-img {
2264
+ max-width: 90vw !important;
2265
+ max-height: 95vh !important;
2266
+ min-block-size: -webkit-fill-available;
2267
+ }
2268
+ .carouse-content {
2269
+ width: 100%;
2270
+ height: 95vh;
2271
+ text-align: center;
2272
+ }
2273
+ /*
2274
+ * 更改第三方UI组件的样式,在定义时尽量使用我们自己的Css变量,即以ind开头的变量,以便切换主题
2275
+ *
2276
+ * @Author: huxuetong
2277
+ * @Date: 2023-08-16 16:25:48
2278
+ * @Last Modified by: huxuetong
2279
+ * @Last Modified time: 2024-03-12 20:09:41
2280
+ */
2281
+ /*
2282
+ * 更改 AgGrid 的默认样式
2283
+ *
2284
+ * @Author: huxuetong
2285
+ * @Date: 2024-03-12 20:08:55
2286
+ * @Last Modified by: huxuetong
2287
+ * @Last Modified time: 2024-03-18 10:36:38
2288
+ */
2289
+ .ind-theme .ag-theme-balham {
2290
+ --ag-grid-size: var(--ind-ag-grid-size);
2291
+ --ag-font-size: var(--ind-ag-font-size);
2292
+ --ag-list-item-height: var(--ind-ag-list-item-height);
2293
+ --ag-row-hover-color: var(--ind-ag-row-hover-color);
2294
+ --ag-column-hover-color: var(--ind-ag-column-hover-color);
2295
+ --ag-cell-horizontal-padding: var(--ind-ag-cell-horizontal-padding);
2296
+ --ag-row-group-indent-size: var(--ind-ag-row-group-indent-size);
2297
+ --ag-selected-row-background-color: var(--ind-ag-selected-row-background-color);
2298
+ --ag-header-background-color: var(--ind-ag-header-background-color);
2299
+ --ag-odd-row-background-color: var(--ind-ag-odd-row-background-color);
2300
+ --ag-cell-widget-spacing: var(--ind-ag-cell-widget-spacing);
2301
+ }
2302
+ .ind-theme .ag-theme-balham .ag-filter-toolpanel-header,
2303
+ .ind-theme .ag-theme-balham .ag-filter-toolpanel-search,
2304
+ .ind-theme .ag-theme-balham .ag-status-bar,
2305
+ .ind-theme .ag-theme-balham .ag-header-row,
2306
+ .ind-theme .ag-theme-balham .ag-multi-filter-group-title-bar,
2307
+ .ind-theme .ag-theme-balham-dark .ag-filter-toolpanel-header,
2308
+ .ind-theme .ag-theme-balham-dark .ag-filter-toolpanel-search,
2309
+ .ind-theme .ag-theme-balham-dark .ag-status-bar,
2310
+ .ind-theme .ag-theme-balham-dark .ag-header-row,
2311
+ .ind-theme .ag-theme-balham-dark .ag-multi-filter-group-title-bar,
2312
+ .ind-theme .ag-header-cell-text {
2313
+ font-weight: 700;
2314
+ }
2315
+ .ind-theme .ag-center-aligned-cell {
2316
+ text-align: center;
2317
+ justify-content: center;
2318
+ }
2319
+ .ind-theme .ag-right-aligned-cell {
2320
+ justify-content: flex-end;
2321
+ text-align: right;
2322
+ }
2323
+ .ind-theme .ag-theme-balham .ag-cell.ag-wrap-cell {
2324
+ line-height: var(--ind-ag-cell-line-height);
2325
+ align-items: center;
2326
+ display: flex;
2327
+ }
2328
+ .ind-theme .ag-theme-balham .ag-cell.ag-wrap-cell .ag-cell-wrapper {
2329
+ display: flex;
2330
+ align-items: center;
2331
+ width: 100%;
2332
+ }
2333
+ .ind-theme .ag-header-cell,
2334
+ .ind-theme .ag-header-group-cell {
2335
+ padding-left: var(--ind-ag-cell-header-horizontal-padding);
2336
+ padding-right: var(--ind-ag-cell-header-horizontal-padding);
2337
+ color: var(--ind-black);
2338
+ }
2339
+ .ind-theme .ag-ltr .ag-header-cell:not(.ag-right-aligned-header) .ag-header-label-icon {
2340
+ margin-left: var(--ind-ag-cell-icon-margin-left);
2341
+ }
2342
+ .ind-theme .ind-ag-check-cell .ag-cell-wrapper .ag-selection-checkbox {
2343
+ width: 100%;
2344
+ justify-content: center;
2345
+ }
2346
+ .ind-theme .ind-ag-check-cell .ag-cell-wrapper {
2347
+ display: -webkit-inline-box;
2348
+ text-align: center;
2349
+ }
2350
+ .ind-theme .ind-ag-check-cell .ag-cell-wrapper .ag-selection-checkbox {
2351
+ margin-right: 0;
2352
+ }
2353
+ .ind-theme .ind-radio .ag-checkbox-input-wrapper {
2354
+ border-radius: 50%;
2355
+ }
2356
+ .ind-theme .ind-radio .ag-checkbox-input-wrapper::after {
2357
+ content: var(--ag-icon-font-code-radio-button-off, '\f127') !important;
2358
+ }
2359
+ .ind-theme .ind-radio .ag-checkbox-input-wrapper.ag-checked::after {
2360
+ content: var(--ag-icon-font-code-radio-button-on, '\f128') !important;
2361
+ }
2362
+ .ind-theme .ag-theme-balham {
2363
+ --ag-icon-font-code-none: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNzAzNzMzOTk0NzQzIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjI1MzQiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTAiIGhlaWdodD0iMTYiPjxwYXRoIGQ9Ik0yNzMuMDY2NjY3IDQwNS4zMzMzMzNoNDc1LjczMzMzM2MxMC42NjY2NjcgMCAyMS4zMzMzMzMtNC4yNjY2NjcgMjkuODY2NjY3LTEyLjggMTcuMDY2NjY3LTE3LjA2NjY2NyAxNy4wNjY2NjctNDIuNjY2NjY3IDAtNTkuNzMzMzMzTDU0MS44NjY2NjcgOTMuODY2NjY3Yy0xNy4wNjY2NjctMTcuMDY2NjY3LTQyLjY2NjY2Ny0xNy4wNjY2NjctNTkuNzMzMzM0IDBMMjQzLjIgMzMyLjhjLTguNTMzMzMzIDguNTMzMzMzLTEyLjggMTkuMi0xMi44IDI5Ljg2NjY2NyAwIDIzLjQ2NjY2NyAxOS4yIDQyLjY2NjY2NyA0Mi42NjY2NjcgNDIuNjY2NjY2ek03NTAuOTMzMzMzIDYxOC42NjY2NjdIMjczLjA2NjY2N2MtMTAuNjY2NjY3IDAtMjEuMzMzMzMzIDQuMjY2NjY3LTI5Ljg2NjY2NyAxMi44LTE3LjA2NjY2NyAxNy4wNjY2NjctMTcuMDY2NjY3IDQyLjY2NjY2NyAwIDU5LjczMzMzM2wyMzguOTMzMzMzIDIzOC45MzMzMzNjMTcuMDY2NjY3IDE3LjA2NjY2NyA0Mi42NjY2NjcgMTcuMDY2NjY3IDU5LjczMzMzNCAwbDIzOC45MzMzMzMtMjM4LjkzMzMzM2M4LjUzMzMzMy04LjUzMzMzMyAxMi44LTE5LjIgMTIuOC0yOS44NjY2NjcgMC0yMy40NjY2NjctMTkuMi00Mi42NjY2NjctNDIuNjY2NjY3LTQyLjY2NjY2NnoiIGZpbGw9IiM4YThhOGEiIHAtaWQ9IjI1MzUiPjwvcGF0aD48L3N2Zz4=');
2364
+ --ag-icon-font-code-desc: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNzAzNzM0MDY4NzY3IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjkzMzQiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTAiIGhlaWdodD0iMTYiPjxwYXRoIGQ9Ik04MDQuNTcxNDI5IDYyMS43MTQyODZhMzYuMjA1NzE0IDM2LjIwNTcxNCAwIDAgMS0xMC44NjE3MTUgMjUuNzA5NzE0bC0yNTYgMjU2QzUzMC44NzA4NTcgOTEwLjI2Mjg1NyA1MjEuNjkxNDI5IDkxNC4yODU3MTQgNTEyIDkxNC4yODU3MTRzLTE4Ljg3MDg1Ny0zLjk4NjI4Ni0yNS43MDk3MTQtMTAuODYxNzE0bC0yNTYtMjU2QTM2LjQyNTE0MyAzNi40MjUxNDMgMCAwIDEgMjE5LjQyODU3MSA2MjEuNzE0Mjg2YzAtMjAuMDA0NTcxIDE2LjU2Njg1Ny0zNi41NzE0MjkgMzYuNTcxNDI5LTM2LjU3MTQyOWg1MTJjMjAuMDA0NTcxIDAgMzYuNTcxNDI5IDE2LjU2Njg1NyAzNi41NzE0MjkgMzYuNTcxNDI5eiIgZmlsbD0iIzhhOGE4YSIgcC1pZD0iOTMzNSI+PC9wYXRoPjwvc3ZnPg==');
2365
+ --ag-icon-font-code-asc: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNzAzNzMzOTAxMDQzIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjE0MzQiIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGQ9Ik04MDQuNTcxNDI5IDQwMi4yODU3MTRxMCAxNC44NTcxNDMtMTAuODU3MTQzIDI1LjcxNDI4NnQtMjUuNzE0Mjg2IDEwLjg1NzE0M0gyNTZxLTE0Ljg1NzE0MyAwLTI1LjcxNDI4Ni0xMC44NTcxNDN0LTEwLjg1NzE0My0yNS43MTQyODYgMTAuODU3MTQzLTI1LjcxNDI4NWwyNTYtMjU2cTEwLjg1NzE0My0xMC44NTcxNDMgMjUuNzE0Mjg2LTEwLjg1NzE0M3QyNS43MTQyODYgMTAuODU3MTQzbDI1NiAyNTZxMTAuODU3MTQzIDEwLjg1NzE0MyAxMC44NTcxNDMgMjUuNzE0Mjg1eiIgcC1pZD0iMTQzNSIgZmlsbD0iIzhhOGE4YSI+PC9wYXRoPjwvc3ZnPg==');
2366
+ }
2367
+ .ind-theme .ag-pinned-left-floating-top .ag-cell,
2368
+ .ind-theme .ag-floating-top-viewport .ag-cell,
2369
+ .ind-theme .ag-pinned-right-floating-top .ag-cell {
2370
+ font-weight: bold;
2371
+ }
2372
+ .ind-theme .ag-cell.ag-cell-last-left-pinned:not(.ag-cell-range-right):not(.ag-cell-range-single-cell),
2373
+ .ind-theme .ag-pinned-left-sticky-top,
2374
+ .ind-theme .ag-pinned-left-header,
2375
+ .ind-theme .ag-pinned-left-floating-top,
2376
+ .ind-theme .ag-pinned-left-cols-container {
2377
+ border-right: 1px solid var(--ag-border-color) !important;
2378
+ }
2379
+ .ind-theme .ag-pinned-right-cols-container,
2380
+ .ind-theme .ag-pinned-right-sticky-top,
2381
+ .ind-theme .ag-pinned-right-sticky-bottom,
2382
+ .ind-theme .ag-pinned-right-floating-top,
2383
+ .ind-theme .ag-pinned-right-header {
2384
+ border-left: 1px solid var(--ag-border-color) !important;
2385
+ }
2386
+ .ind-theme .ag-cell.ag-cell-first-right-pinned:not(.ag-cell-range-left):not(.ag-cell-range-single-cell) {
2387
+ border-left: 0 solid var(--ag-border-color) !important;
2388
+ }
2389
+ .ind-theme .ind-table-sum-level1 .ag-cell,
2390
+ .ind-theme .ind-table-sum-level2 .ag-cell,
2391
+ .ind-theme .ind-table-sum-level3 .ag-cell,
2392
+ .ind-theme .ind-table-sum-level4 .ag-cell,
2393
+ .ind-theme .ind-table-sum-level5 .ag-cell {
2394
+ background-color: #2d8cf033;
2395
+ color: #333333;
2396
+ font-weight: bold;
2397
+ }
2398
+ .ind-theme .ag-row-selected .cell-span {
2399
+ background: var(--ag-selected-row-background-color);
2400
+ }
2401
+ .ind-theme .ag-body.ag-layout-auto-height {
2402
+ min-height: 28px;
2403
+ }
2404
+ /*
2405
+ * 更改 view-design 的默认样式
2406
+ *
2407
+ * @Author: huxuetong
2408
+ * @Date: 2023-08-16 16:24:23
2409
+ * @Last Modified by: huxuetong
2410
+ * @Last Modified time: 2024-04-06 14:15:41
2411
+ */
2412
+ .ivu-input {
2413
+ height: var(--input-height);
2414
+ }
2415
+ .ivu-input-wrapper .ivu-input-icon,
2416
+ .ivu-select .ivu-select-input,
2417
+ .ivu-select.ivu-select .ivu-select-selection,
2418
+ .ivu-select.ivu-select .ivu-select-selection .ivu-select-placeholder,
2419
+ .ivu-select.ivu-select .ivu-select-selection .ivu-select-selected-value,
2420
+ .ivu-select-multiple .ivu-select-selection .ivu-select-placeholder,
2421
+ .ivu-input-wrapper .ivu-input-prefix i,
2422
+ .ivu-select.ivu-select-multiple .ivu-select-selection .ivu-select-placeholder,
2423
+ .ivu-select.ivu-select-multiple .ivu-select-selection .ivu-select-selected-value,
2424
+ .ivu-input-wrapper .ivu-input-suffix i {
2425
+ height: var(--input-height);
2426
+ line-height: var(--input-height);
2427
+ }
2428
+ .ivu-select .ivu-select-input,
2429
+ .ivu-select.ivu-select-multiple .ivu-select-input {
2430
+ top: auto;
2431
+ }
2432
+ .ivu-page.mini .ivu-page-total,
2433
+ .ivu-page.mini .ivu-page-options-elevator,
2434
+ .ivu-page.mini .ivu-page-item {
2435
+ height: var(--input-height);
2436
+ line-height: var(--input-height);
2437
+ }
2438
+ .ivu-select-default.ivu-select-multiple .ivu-select-selection {
2439
+ min-height: var(--input-height) !important;
2440
+ }
2441
+ .ivu-page.mini .ivu-page-next,
2442
+ .ivu-page.mini .ivu-page-prev,
2443
+ .ivu-page.mini .ivu-page-options-elevator input {
2444
+ height: var(--input-height);
2445
+ line-height: calc(var(--input-height) - 2px);
2446
+ }
2447
+ ul.ivu-page.mini {
2448
+ margin-bottom: 1px !important;
2449
+ }
2450
+ .ivu-input,
2451
+ .ivu-select-selection,
2452
+ .ivu-input-number-input,
2453
+ .ivu-input-number,
2454
+ .ivu-radio-inner,
2455
+ .ivu-checkbox-inner,
2456
+ .ivu-table-cell-tree {
2457
+ border-color: #ccc !important;
2458
+ }
2459
+ .ivu-radio-wrapper {
2460
+ white-space: pre-wrap !important;
2461
+ }
2462
+ .ivu-radio .ivu-radio-inner::after {
2463
+ top: 50%;
2464
+ left: 50%;
2465
+ transform: scale(1) translateX(-50%) translateY(-50%) !important;
2466
+ }
2467
+ .ivu-radio-checked .ivu-radio-inner,
2468
+ .ivu-checkbox-checked .ivu-checkbox-inner {
2469
+ border-color: #488aff !important;
2470
+ }
2471
+ .ivu-select-multiple .ivu-select-selection > div {
2472
+ display: flex;
2473
+ }
2474
+ .ivu-select-multiple .ivu-select-selection > div .ivu-tag {
2475
+ position: relative;
2476
+ height: var(--ind-tag-height);
2477
+ line-height: var(--ind-tag-height);
2478
+ }
2479
+ .ivu-select-multiple .ivu-select-selection > div .ivu-tag .ivu-icon {
2480
+ position: absolute;
2481
+ top: calc(50% + 1px);
2482
+ transform: translateY(-50%);
2483
+ }
2484
+ .ivu-select-dropdown,
2485
+ .ivu-tooltip-popper {
2486
+ z-index: 99999999 !important;
2487
+ }
2488
+ .ivu-select-dropdown,
2489
+ .ivu-dropdown-transfer {
2490
+ max-height: 400px;
2491
+ }
2492
+ .ivu-select-item {
2493
+ padding-top: 4px !important;
2494
+ padding-bottom: 4px !important;
2495
+ }
2496
+ .selected-input .ivu-input {
2497
+ cursor: pointer;
2498
+ }
2499
+ .selected-input.readonly .ivu-input {
2500
+ cursor: default;
2501
+ }
2502
+ .ivu-btn {
2503
+ height: var(--ind-button-height-md);
2504
+ padding-left: var(--ind-button-padding-md);
2505
+ padding-right: var(--ind-button-padding-md);
2506
+ }
2507
+ .ivu-btn-small {
2508
+ height: var(--ind-button-height-sm);
2509
+ padding-left: var(--ind-button-padding-sm);
2510
+ padding-right: var(--ind-button-padding-sm);
2511
+ }
2512
+ .ivu-btn-icon-only.ivu-btn {
2513
+ width: var(--ind-button-height-sm);
2514
+ padding-left: unset;
2515
+ padding-right: unset;
2516
+ }
2517
+ .ivu-poptip {
2518
+ width: 100%;
2519
+ }
2520
+ .ivu-poptip .ivu-poptip-rel {
2521
+ width: 100%;
2522
+ }
2523
+ .ivu-tooltip-arrow {
2524
+ border-bottom-color: #e8e9ea !important;
2525
+ }
2526
+ .ivu-tooltip-inner {
2527
+ background-color: #e8e9ea !important;
2528
+ color: #333 !important;
2529
+ }
2530
+ body > .ivu-tooltip-popper .ivu-tooltip-inner {
2531
+ white-space: pre-wrap;
2532
+ }
2533
+ .ivu-card:hover {
2534
+ box-shadow: none !important;
2535
+ }
2536
+ .ivu-card,
2537
+ .ivu-card-bordered {
2538
+ border: 1px solid var(--ind-border-color);
2539
+ }
2540
+ .ivu-card .ivu-card-head,
2541
+ .ivu-card-bordered .ivu-card-head {
2542
+ padding: var(--ivu-card-head-padding) !important;
2543
+ line-height: var(--ivu-card-head-line-height) !important;
2544
+ height: var(--ivu-card-head-height) !important;
2545
+ background: #ffffff;
2546
+ }
2547
+ .ivu-card-body {
2548
+ padding: var(--ivu-card-body-padding);
2549
+ }
2550
+ .ivu-steps.ivu-steps-small .ivu-steps-title {
2551
+ font-size: 14px !important;
2552
+ margin-top: 2px;
2553
+ }
2554
+ .ivu-steps .ivu-steps-head-inner {
2555
+ display: block;
2556
+ width: 26px !important;
2557
+ height: 26px !important;
2558
+ line-height: 24px !important;
2559
+ margin-right: 8px !important;
2560
+ text-align: center;
2561
+ border: 1px solid #ccc;
2562
+ }
2563
+ .ivu-steps.ivu-steps-small .ivu-steps-tail {
2564
+ top: 13px !important;
2565
+ padding: 0 10px !important;
2566
+ }
2567
+ .ivu-steps .ivu-steps-head-inner > .ivu-steps-icon.ivu-icon {
2568
+ font-size: 24px !important;
2569
+ }
2570
+ .ivu-modal-close .ivu-icon-ios-close {
2571
+ color: #444;
2572
+ }
2573
+ .ivu-row {
2574
+ width: 100%;
2575
+ }
2576
+ .ivu-menu-vertical .ivu-menu-item,
2577
+ .ivu-menu-vertical .ivu-menu-submenu-title {
2578
+ padding-left: 8px;
2579
+ }
2580
+ .ivu-message {
2581
+ zoom: 2;
2582
+ z-index: 999999999 !important;
2583
+ }
2584
+ .ind-modal:has(.ivu-modal-confirm) {
2585
+ z-index: 999999998 !important;
2586
+ }
2587
+ .ivu-tabs {
2588
+ display: flex;
2589
+ flex-direction: column;
2590
+ }
2591
+ .ivu-tabs.ivu-tabs-auto-height {
2592
+ height: 100%;
2593
+ }
2594
+ .ivu-tabs .ivu-tabs-bar {
2595
+ flex-shrink: 0;
2596
+ }
2597
+ .ivu-tabs .ivu-tabs-content {
2598
+ flex-grow: 1;
2599
+ }
2600
+ .ivu-collapse .ivu-collapse-item .ivu-collapse-header {
2601
+ padding: var(--ivu-card-head-padding) !important;
2602
+ line-height: var(--ivu-card-head-line-height);
2603
+ height: var(--ivu-card-head-height);
2604
+ background-color: #ecf0f4;
2605
+ border: 1px solid #d2dbe4;
2606
+ border-bottom: none;
2607
+ font-size: 16px;
2608
+ font-weight: bold;
2609
+ color: #333333;
2610
+ }
2611
+ .ivu-collapse .ivu-collapse-item:last-child .ivu-collapse-header {
2612
+ border-bottom: 1px solid #d2dbe4;
2613
+ }
2614
+ .ivu-collapse .ivu-collapse-item:last-child .ivu-collapse-content {
2615
+ border-bottom: 1px solid #d2dbe4;
2616
+ }
2617
+ .ivu-collapse-content {
2618
+ border: 1px solid #d2dbe4;
2619
+ border-bottom: none;
2620
+ }
2621
+ .ivu-menu .ivu-menu {
2622
+ border-top: 1px solid var(--menu-black-active-bg);
2623
+ border-bottom: none;
2624
+ }
2625
+ .ivu-menu-dark {
2626
+ background: var(--menu-dark-active-bg) !important;
2627
+ }
2628
+ .ivu-menu-submenu-title {
2629
+ background: var(--menu-dark-active-bg);
2630
+ }
2631
+ .ivu-menu-item > i {
2632
+ margin-right: 12px !important;
2633
+ }
2634
+ .ivu-menu-submenu > .ivu-menu > .ivu-menu-item > i {
2635
+ margin-right: 8px !important;
2636
+ }
2637
+ .ivu-layout-sider-children {
2638
+ margin-right: 1px;
2639
+ background-color: var(--menu-black-active-bg);
2640
+ overflow-y: auto;
2641
+ }
2642
+ .ivu-layout-sider-children::-webkit-scrollbar {
2643
+ width: 0;
2644
+ }
2645
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-item:hover,
2646
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title:hover,
2647
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item:hover {
2648
+ color: var(--main-color);
2649
+ background: var(--selected-background-hover) !important;
2650
+ }
2651
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-item,
2652
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu-title,
2653
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item {
2654
+ font-size: var(--ivu-menu-item-font-size);
2655
+ background-color: var(--menu-black-active-bg) !important;
2656
+ }
2657
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-child-item-active > .ivu-menu-submenu-title {
2658
+ color: black;
2659
+ font-size: 14px;
2660
+ }
2661
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active,
2662
+ .ivu-layout-sider-children .ivu-menu-dark.ivu-menu-vertical .ivu-menu-submenu .ivu-menu-item-active:hover {
2663
+ background: var(--selected-background) !important;
2664
+ border-right: 3px solid var(--deep-mian-color);
2665
+ color: var(--deep-menu-color) !important;
2666
+ }
2667
+ .ivu-layout-sider-children .ivu-menu-vertical .ivu-menu-submenu-title-icon {
2668
+ right: 0px;
2669
+ }
2670
+ .ivu-table {
2671
+ line-height: unset !important;
2672
+ }
2673
+ .ivu-input::-webkit-input-placeholder {
2674
+ font-size: 12px;
2675
+ }
2676
+ /*# sourceMappingURL=index.css.map */