@zscreate/form-component 1.1.660-test.2 → 1.1.661
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/form-component.css +1190 -713
- package/dist/form-component.umd.js +142864 -135950
- package/package.json +1 -1
- package/readme.md +12 -1
package/dist/form-component.css
CHANGED
|
@@ -1,4 +1,182 @@
|
|
|
1
|
-
.
|
|
1
|
+
.rich-preview {
|
|
2
|
+
border: none;
|
|
3
|
+
height: 100%;
|
|
4
|
+
overflow-y: auto;
|
|
5
|
+
}
|
|
6
|
+
.rich-preview .w-e-scroll {
|
|
7
|
+
overflow-y: initial !important;
|
|
8
|
+
}
|
|
9
|
+
.rich-preview b,
|
|
10
|
+
.rich-preview strong {
|
|
11
|
+
font-weight: bolder !important;
|
|
12
|
+
}
|
|
13
|
+
.rich-preview em {
|
|
14
|
+
font-style: italic;
|
|
15
|
+
}
|
|
16
|
+
.rich-preview ul li {
|
|
17
|
+
list-style-type: initial;
|
|
18
|
+
}
|
|
19
|
+
.rich-preview ol li {
|
|
20
|
+
list-style-type: decimal;
|
|
21
|
+
}
|
|
22
|
+
.w-e-text-container {
|
|
23
|
+
position: relative;
|
|
24
|
+
height: 100%;
|
|
25
|
+
}
|
|
26
|
+
.w-e-text-container i {
|
|
27
|
+
font-style: italic;
|
|
28
|
+
}
|
|
29
|
+
.w-e-text-container b {
|
|
30
|
+
font-weight: bold;
|
|
31
|
+
}
|
|
32
|
+
.w-e-text-container .w-e-progress {
|
|
33
|
+
position: absolute;
|
|
34
|
+
background-color: #1e88e5;
|
|
35
|
+
top: 0;
|
|
36
|
+
left: 0;
|
|
37
|
+
height: 1px;
|
|
38
|
+
}
|
|
39
|
+
.w-e-text-container .placeholder {
|
|
40
|
+
color: #D4D4D4;
|
|
41
|
+
position: absolute;
|
|
42
|
+
font-size: 11pt;
|
|
43
|
+
line-height: 22px;
|
|
44
|
+
left: 10px;
|
|
45
|
+
top: 10px;
|
|
46
|
+
-webkit-user-select: none;
|
|
47
|
+
-moz-user-select: none;
|
|
48
|
+
user-select: none;
|
|
49
|
+
z-index: -1;
|
|
50
|
+
}
|
|
51
|
+
.w-e-text {
|
|
52
|
+
padding: 0 10px;
|
|
53
|
+
overflow-y: auto;
|
|
54
|
+
}
|
|
55
|
+
.w-e-text p,
|
|
56
|
+
.w-e-text h1,
|
|
57
|
+
.w-e-text h2,
|
|
58
|
+
.w-e-text h3,
|
|
59
|
+
.w-e-text h4,
|
|
60
|
+
.w-e-text h5,
|
|
61
|
+
.w-e-text table,
|
|
62
|
+
.w-e-text pre {
|
|
63
|
+
margin: 10px 0;
|
|
64
|
+
line-height: 1.5;
|
|
65
|
+
}
|
|
66
|
+
.w-e-text ul,
|
|
67
|
+
.w-e-text ol {
|
|
68
|
+
margin: 10px 0 10px 20px;
|
|
69
|
+
}
|
|
70
|
+
.w-e-text blockquote {
|
|
71
|
+
display: block;
|
|
72
|
+
border-left: 8px solid #d0e5f2;
|
|
73
|
+
padding: 5px 10px;
|
|
74
|
+
margin: 10px 0;
|
|
75
|
+
line-height: 1.4;
|
|
76
|
+
font-size: 100%;
|
|
77
|
+
background-color: #f1f1f1;
|
|
78
|
+
}
|
|
79
|
+
.w-e-text code {
|
|
80
|
+
display: inline-block;
|
|
81
|
+
background-color: #f1f1f1;
|
|
82
|
+
border-radius: 3px;
|
|
83
|
+
padding: 3px 5px;
|
|
84
|
+
margin: 0 3px;
|
|
85
|
+
}
|
|
86
|
+
.w-e-text pre code {
|
|
87
|
+
display: block;
|
|
88
|
+
}
|
|
89
|
+
.w-e-text table {
|
|
90
|
+
border-top: 1px solid #ccc;
|
|
91
|
+
border-left: 1px solid #ccc;
|
|
92
|
+
}
|
|
93
|
+
.w-e-text table td,
|
|
94
|
+
.w-e-text table th {
|
|
95
|
+
border-bottom: 1px solid #ccc;
|
|
96
|
+
border-right: 1px solid #ccc;
|
|
97
|
+
padding: 3px 5px;
|
|
98
|
+
min-height: 30px;
|
|
99
|
+
height: 30px;
|
|
100
|
+
}
|
|
101
|
+
.w-e-text table th {
|
|
102
|
+
border-bottom: 2px solid #ccc;
|
|
103
|
+
text-align: center;
|
|
104
|
+
background-color: #f1f1f1;
|
|
105
|
+
}
|
|
106
|
+
.w-e-text:focus {
|
|
107
|
+
outline: none;
|
|
108
|
+
}
|
|
109
|
+
.w-e-text img {
|
|
110
|
+
cursor: pointer;
|
|
111
|
+
}
|
|
112
|
+
.w-e-text img:hover {
|
|
113
|
+
box-shadow: 0 0 5px #333;
|
|
114
|
+
}
|
|
115
|
+
.w-e-text .w-e-todo {
|
|
116
|
+
margin: 0 0 0 20px;
|
|
117
|
+
}
|
|
118
|
+
.w-e-text ul li {
|
|
119
|
+
list-style-type: initial;
|
|
120
|
+
}
|
|
121
|
+
.w-e-text ol li {
|
|
122
|
+
list-style-type: decimal;
|
|
123
|
+
}
|
|
124
|
+
.w-e-text .w-e-todo li {
|
|
125
|
+
list-style: none;
|
|
126
|
+
font-size: 1em;
|
|
127
|
+
}
|
|
128
|
+
.w-e-text .w-e-todo li span:nth-child(1) {
|
|
129
|
+
position: relative;
|
|
130
|
+
left: -18px;
|
|
131
|
+
}
|
|
132
|
+
.w-e-text .w-e-todo li span:nth-child(1) input {
|
|
133
|
+
position: absolute;
|
|
134
|
+
margin-right: 3px;
|
|
135
|
+
}
|
|
136
|
+
.w-e-text .w-e-todo li span:nth-child(1) input[type=checkbox] {
|
|
137
|
+
top: 50%;
|
|
138
|
+
margin-top: -6px;
|
|
139
|
+
}
|
|
140
|
+
.w-e-tooltip {
|
|
141
|
+
position: absolute;
|
|
142
|
+
display: flex;
|
|
143
|
+
color: #f1f1f1;
|
|
144
|
+
background-color: rgba(0, 0, 0, 0.75);
|
|
145
|
+
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
|
|
146
|
+
border-radius: 4px;
|
|
147
|
+
padding: 4px 5px 6px;
|
|
148
|
+
justify-content: center;
|
|
149
|
+
align-items: center;
|
|
150
|
+
}
|
|
151
|
+
.w-e-tooltip-up::after {
|
|
152
|
+
content: "";
|
|
153
|
+
position: absolute;
|
|
154
|
+
top: 100%;
|
|
155
|
+
left: 50%;
|
|
156
|
+
margin-left: -5px;
|
|
157
|
+
border: 5px solid rgba(0, 0, 0, 0);
|
|
158
|
+
border-top-color: rgba(0, 0, 0, 0.73);
|
|
159
|
+
}
|
|
160
|
+
.w-e-tooltip-down::after {
|
|
161
|
+
content: "";
|
|
162
|
+
position: absolute;
|
|
163
|
+
bottom: 100%;
|
|
164
|
+
left: 50%;
|
|
165
|
+
margin-left: -5px;
|
|
166
|
+
border: 5px solid rgba(0, 0, 0, 0);
|
|
167
|
+
border-bottom-color: rgba(0, 0, 0, 0.73);
|
|
168
|
+
}
|
|
169
|
+
.w-e-tooltip-item-wrapper {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
font-size: 14px;
|
|
172
|
+
margin: 0 5px;
|
|
173
|
+
}
|
|
174
|
+
.w-e-tooltip-item-wrapper:hover {
|
|
175
|
+
color: #ccc;
|
|
176
|
+
text-decoration: underline;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.h-model-item[data-v-0a2c175e]{height:30px;line-height:30px;padding-left:10px;font-size:16px}.h-model-item[data-v-0a2c175e]:hover{background-color:#f5f9fd;color:#1890FF !important}.dropMenu[data-v-0a2c175e]{width:100px;padding:0;margin:auto;position:absolute;right:-100px;top:-7px;bottom:0;z-index:100}.dropMenu li[data-v-0a2c175e]{width:20px;height:20px;line-height:20px;display:inline-block;text-align:center;cursor:pointer;font-size:16px;color:#999}.dropMenu li[data-v-0a2c175e]:hover{color:#66a6e0}.dropMenu li.icon-set[data-v-0a2c175e]{font-size:23px}.dropMenuItem[data-v-0a2c175e]{width:30px;height:30px;padding:0;color:#ffa500;margin:auto;position:absolute;cursor:pointer;bottom:0;z-index:100;font-size:20px}.gate .flow-node-drag[data-v-0a2c175e]:nth-child(1){left:0;right:0;top:-19px}.gate .flow-node-drag[data-v-0a2c175e]:nth-child(2){top:0;bottom:0;right:-19px}.gate .flow-node-drag[data-v-0a2c175e]:nth-child(3){left:0;right:0;bottom:-19px}.gate .flow-node-drag[data-v-0a2c175e]:nth-child(4){top:0;bottom:0;left:-19px}.flow-node-header[data-v-0a2c175e]{background-color:#66a6e0;height:25px;cursor:pointer;border-top-left-radius:6px;border-top-right-radius:6px}.flow-node-header a[data-v-0a2c175e]{text-decoration:none;line-height:25px;vertical-align:middle}.flow-node-header a img[data-v-0a2c175e]{line-height:25px;vertical-align:middle;margin-bottom:5px}.flow-node-body[data-v-0a2c175e]{background-color:white;text-align:center;cursor:pointer;height:25px;line-height:25px;border-bottom-left-radius:6px;border-bottom-right-radius:6px}.vdr-no-border[data-v-0a2c175e]{border:none}.tool .text[data-v-0a2c175e]{font-size:14px;padding:4px 6px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;/*! autoprefixer: off */-webkit-box-orient:vertical;/*! autoprefixer: on */-webkit-line-clamp:2;height:46px;word-break:break-all}.tool .inner[data-v-0a2c175e]{background:orange;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner .icon-user[data-v-0a2c175e]{color:#fff;display:flex;align-items:center;justify-content:center}.tool .inner-blue[data-v-0a2c175e]{background:blue;display:flex;justify-content:start;align-items:center;color:#fff}.tool .inner-blue .icon-user[data-v-0a2c175e]{color:#fff;display:flex;align-items:center}.flow-view .start[data-v-0a2c175e]{border:2px solid #e0c645}.flow-view .end[data-v-0a2c175e]{background-size:cover;border:2px solid #e0c645;position:relative}.flow-view .end[data-v-0a2c175e]:before{content:'';width:12px;height:12px;background:#e0c645;display:block;position:absolute;top:calc(50% - 6px);left:calc(50% - 6px)}
|
|
2
180
|
|
|
3
181
|
.flow-tool-menu{background-color:#eeeeee;cursor:pointer;padding-left:5px;height:50px;line-height:50px;border-bottom:1px solid #979797}.flow-tool-submenu{background-color:white;padding-left:20px;cursor:pointer;height:50px;line-height:50px;vertical-align:middle;border-bottom:1px solid #d3d3d3}.g1-tools_1 li.start{width:50px;height:50px;border:1px solid #d8d8d8;border-radius:100%}.draggable-item .inner{display:flex;flex-direction:column;align-items:center;margin-bottom:10px}.draggable-item .inner svg{font-size:30px;color:#858587}.draggable-item .inner svg use{fill:#858587}.draggable-item .inner span{color:#333;margin:5px}
|
|
4
182
|
|
|
@@ -12,7 +190,7 @@
|
|
|
12
190
|
}
|
|
13
191
|
|
|
14
192
|
|
|
15
|
-
[data-v-
|
|
193
|
+
[data-v-75de71bc] .ant-table-header-column > div {
|
|
16
194
|
overflow: inherit !important;
|
|
17
195
|
}
|
|
18
196
|
|
|
@@ -198,121 +376,121 @@ ul li[data-v-c8780a30] {
|
|
|
198
376
|
}
|
|
199
377
|
|
|
200
378
|
|
|
201
|
-
[data-v-
|
|
379
|
+
[data-v-324a1f93] .ant-btn > span {
|
|
202
380
|
display: block !important;
|
|
203
381
|
}
|
|
204
382
|
|
|
205
|
-
.body-Condition-item-list-children[data-v-
|
|
383
|
+
.body-Condition-item-list-children[data-v-14d9b758] {
|
|
206
384
|
padding-top: 10px;
|
|
207
385
|
}
|
|
208
|
-
.body-Condition-item-list-children .delete-icon[data-v-
|
|
386
|
+
.body-Condition-item-list-children .delete-icon[data-v-14d9b758] {
|
|
209
387
|
color: #838c99;
|
|
210
388
|
font-size: 16px;
|
|
211
389
|
cursor: pointer;
|
|
212
390
|
}
|
|
213
|
-
.body-Condition-item-list-children .delete-icon[data-v-
|
|
391
|
+
.body-Condition-item-list-children .delete-icon[data-v-14d9b758]:hover {
|
|
214
392
|
color: #eb5096;
|
|
215
393
|
}
|
|
216
|
-
.body-Condition-item-list-children .range-date-more[data-v-
|
|
394
|
+
.body-Condition-item-list-children .range-date-more[data-v-14d9b758] .ant-calendar-picker {
|
|
217
395
|
min-width: 140px !important;
|
|
218
396
|
}
|
|
219
|
-
.body-Condition-item-list-children .range-date-more[data-v-
|
|
397
|
+
.body-Condition-item-list-children .range-date-more[data-v-14d9b758] .ant-calendar-picker-input {
|
|
220
398
|
font-size: 12px !important;
|
|
221
399
|
}
|
|
222
|
-
.body-Condition-item-list-children .range-date-more[data-v-
|
|
400
|
+
.body-Condition-item-list-children .range-date-more[data-v-14d9b758] .ant-calendar-picker-icon {
|
|
223
401
|
display: none !important;
|
|
224
402
|
}
|
|
225
|
-
.body-Condition-item-list-children .body-Condition-item-operationType[data-v-
|
|
403
|
+
.body-Condition-item-list-children .body-Condition-item-operationType[data-v-14d9b758] .ant-select-selection {
|
|
226
404
|
border: none;
|
|
227
405
|
font-size: 14px;
|
|
228
406
|
min-width: 80px;
|
|
229
407
|
}
|
|
230
|
-
.body-Condition-item-list-children .body-Condition-item-operationType[data-v-
|
|
408
|
+
.body-Condition-item-list-children .body-Condition-item-operationType[data-v-14d9b758] .ant-select-selection__rendered {
|
|
231
409
|
margin-left: 5px !important;
|
|
232
410
|
text-align: center !important;
|
|
233
411
|
display: flex;
|
|
234
412
|
justify-content: center;
|
|
235
413
|
}
|
|
236
|
-
.body-Condition-item-list-children .body-Condition-item-operationType[data-v-
|
|
414
|
+
.body-Condition-item-list-children .body-Condition-item-operationType[data-v-14d9b758] .ant-select-arrow-icon {
|
|
237
415
|
color: #141e31;
|
|
238
416
|
}
|
|
239
|
-
.body-Condition-item-list-children .range-picker[data-v-
|
|
417
|
+
.body-Condition-item-list-children .range-picker[data-v-14d9b758] .ant-calendar-picker-input {
|
|
240
418
|
padding: 4px 2px;
|
|
241
419
|
}
|
|
242
|
-
.body-Condition-item-list-children .range-picker[data-v-
|
|
420
|
+
.body-Condition-item-list-children .range-picker[data-v-14d9b758] .ant-calendar-picker-input .ant-calendar-range-picker-input {
|
|
243
421
|
width: 47%;
|
|
244
422
|
}
|
|
245
|
-
.body-Condition-item-list-children[data-v-
|
|
423
|
+
.body-Condition-item-list-children[data-v-14d9b758] .ant-select-selection--multiple .ant-select-selection__choice {
|
|
246
424
|
width: initial !important;
|
|
247
425
|
}
|
|
248
426
|
|
|
249
|
-
.data-condition .data-condition-body .body-Condition[data-v-
|
|
427
|
+
.data-condition .data-condition-body .body-Condition[data-v-e3414e42] {
|
|
250
428
|
color: #141e31;
|
|
251
429
|
font-size: 14px;
|
|
252
430
|
}
|
|
253
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item[data-v-
|
|
431
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item[data-v-e3414e42] {
|
|
254
432
|
margin-top: 20px;
|
|
255
433
|
}
|
|
256
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-
|
|
434
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-e3414e42] .ant-select-selection {
|
|
257
435
|
border: none;
|
|
258
436
|
font-size: 14px;
|
|
259
437
|
}
|
|
260
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-
|
|
438
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-e3414e42] .ant-select-selection__rendered {
|
|
261
439
|
margin: 0 !important;
|
|
262
440
|
margin-left: 5px !important;
|
|
263
441
|
}
|
|
264
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-
|
|
442
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item .body-Condition-item-title[data-v-e3414e42] .ant-select-arrow-icon {
|
|
265
443
|
color: #141e31;
|
|
266
444
|
}
|
|
267
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list[data-v-
|
|
445
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list[data-v-e3414e42] {
|
|
268
446
|
padding-top: 10px;
|
|
269
447
|
padding-bottom: 20px;
|
|
270
448
|
border-top: 1px solid #ccc;
|
|
271
449
|
}
|
|
272
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .delete-icon[data-v-
|
|
450
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .delete-icon[data-v-e3414e42] {
|
|
273
451
|
color: #838c99;
|
|
274
452
|
font-size: 16px;
|
|
275
453
|
cursor: pointer;
|
|
276
454
|
}
|
|
277
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .delete-icon[data-v-
|
|
455
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .delete-icon[data-v-e3414e42]:hover {
|
|
278
456
|
color: #eb5096;
|
|
279
457
|
}
|
|
280
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-
|
|
458
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-e3414e42] .ant-calendar-picker {
|
|
281
459
|
min-width: 140px !important;
|
|
282
460
|
}
|
|
283
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-
|
|
461
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-e3414e42] .ant-calendar-picker-input {
|
|
284
462
|
font-size: 12px !important;
|
|
285
463
|
}
|
|
286
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-
|
|
464
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-date-more[data-v-e3414e42] .ant-calendar-picker-icon {
|
|
287
465
|
display: none !important;
|
|
288
466
|
}
|
|
289
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-
|
|
467
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-e3414e42] .ant-select-selection {
|
|
290
468
|
border: none;
|
|
291
469
|
font-size: 14px;
|
|
292
470
|
min-width: 80px;
|
|
293
471
|
}
|
|
294
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-
|
|
472
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-e3414e42] .ant-select-selection__rendered {
|
|
295
473
|
margin-left: 5px !important;
|
|
296
474
|
text-align: center !important;
|
|
297
475
|
display: flex;
|
|
298
476
|
justify-content: center;
|
|
299
477
|
}
|
|
300
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-
|
|
478
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .body-Condition-item-operationType[data-v-e3414e42] .ant-select-arrow-icon {
|
|
301
479
|
color: #141e31;
|
|
302
480
|
}
|
|
303
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-picker[data-v-
|
|
481
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-picker[data-v-e3414e42] .ant-calendar-picker-input {
|
|
304
482
|
padding: 4px 2px;
|
|
305
483
|
}
|
|
306
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-picker[data-v-
|
|
484
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list .range-picker[data-v-e3414e42] .ant-calendar-picker-input .ant-calendar-range-picker-input {
|
|
307
485
|
width: 47%;
|
|
308
486
|
}
|
|
309
|
-
.data-condition .data-condition-body .body-Condition .body-Condition-item-list[data-v-
|
|
487
|
+
.data-condition .data-condition-body .body-Condition .body-Condition-item-list[data-v-e3414e42] .ant-select-selection--multiple .ant-select-selection__choice {
|
|
310
488
|
width: initial !important;
|
|
311
489
|
}
|
|
312
|
-
.data-condition[data-v-
|
|
490
|
+
.data-condition[data-v-e3414e42] .ant-time-picker-panel-select li {
|
|
313
491
|
text-align: left !important;
|
|
314
492
|
}
|
|
315
|
-
.data-condition .clearConditionList[data-v-
|
|
493
|
+
.data-condition .clearConditionList[data-v-e3414e42]:hover {
|
|
316
494
|
color: #eb5050 !important;
|
|
317
495
|
}
|
|
318
496
|
|
|
@@ -345,16 +523,16 @@ ul li[data-v-c8780a30] {
|
|
|
345
523
|
z-index: 101;
|
|
346
524
|
}
|
|
347
525
|
|
|
348
|
-
ul[data-v-
|
|
349
|
-
li[data-v-
|
|
350
|
-
dl[data-v-
|
|
351
|
-
dt[data-v-
|
|
352
|
-
dd[data-v-
|
|
526
|
+
ul[data-v-f7c20cf8],
|
|
527
|
+
li[data-v-f7c20cf8],
|
|
528
|
+
dl[data-v-f7c20cf8],
|
|
529
|
+
dt[data-v-f7c20cf8],
|
|
530
|
+
dd[data-v-f7c20cf8] {
|
|
353
531
|
list-style-type: none;
|
|
354
532
|
padding: 0;
|
|
355
533
|
margin: 0;
|
|
356
534
|
}
|
|
357
|
-
.flowwork-warp[data-v-
|
|
535
|
+
.flowwork-warp[data-v-f7c20cf8] {
|
|
358
536
|
position: absolute;
|
|
359
537
|
left: 0;
|
|
360
538
|
right: 0;
|
|
@@ -362,7 +540,7 @@ dd[data-v-3fa458e1] {
|
|
|
362
540
|
bottom: 64px;
|
|
363
541
|
background: #fff;
|
|
364
542
|
}
|
|
365
|
-
.g1_workflow_warp[data-v-
|
|
543
|
+
.g1_workflow_warp[data-v-f7c20cf8] {
|
|
366
544
|
border: 1px solid #dfdfdf;
|
|
367
545
|
margin: auto;
|
|
368
546
|
position: absolute;
|
|
@@ -371,12 +549,12 @@ dd[data-v-3fa458e1] {
|
|
|
371
549
|
bottom: 0;
|
|
372
550
|
top: 0;
|
|
373
551
|
}
|
|
374
|
-
.g1_workflow_warp li[data-v-
|
|
552
|
+
.g1_workflow_warp li[data-v-f7c20cf8] {
|
|
375
553
|
width: 100%;
|
|
376
554
|
position: relative;
|
|
377
555
|
text-align: center;
|
|
378
556
|
}
|
|
379
|
-
.g1-sider_tool1[data-v-
|
|
557
|
+
.g1-sider_tool1[data-v-f7c20cf8] {
|
|
380
558
|
width: 100px;
|
|
381
559
|
position: absolute;
|
|
382
560
|
left: 0;
|
|
@@ -385,37 +563,37 @@ dd[data-v-3fa458e1] {
|
|
|
385
563
|
border-right: 1px solid #dfdfdf;
|
|
386
564
|
overflow-y: auto;
|
|
387
565
|
}
|
|
388
|
-
.g1-sider_tool1 .tool_box[data-v-
|
|
566
|
+
.g1-sider_tool1 .tool_box[data-v-f7c20cf8] {
|
|
389
567
|
margin-top: 15px;
|
|
390
568
|
}
|
|
391
|
-
.g1-sider_tool1 .tool_box .tool[data-v-
|
|
569
|
+
.g1-sider_tool1 .tool_box .tool[data-v-f7c20cf8] {
|
|
392
570
|
text-align: center;
|
|
393
571
|
font-size: 12px;
|
|
394
572
|
color: #fff;
|
|
395
573
|
}
|
|
396
574
|
/* 公用图形 */
|
|
397
|
-
.end[data-v-
|
|
575
|
+
.end[data-v-f7c20cf8] {
|
|
398
576
|
border-radius: 100%;
|
|
399
577
|
}
|
|
400
|
-
.comm[data-v-
|
|
578
|
+
.comm[data-v-f7c20cf8] {
|
|
401
579
|
border-radius: 0px;
|
|
402
580
|
}
|
|
403
|
-
.gate[data-v-
|
|
581
|
+
.gate[data-v-f7c20cf8] {
|
|
404
582
|
width: 60px;
|
|
405
583
|
border-radius: 0;
|
|
406
584
|
}
|
|
407
|
-
.gate .inner[data-v-
|
|
585
|
+
.gate .inner[data-v-f7c20cf8] {
|
|
408
586
|
display: inline-block;
|
|
409
587
|
font-size: 16px;
|
|
410
588
|
}
|
|
411
|
-
.g1-form_main1[data-v-
|
|
589
|
+
.g1-form_main1[data-v-f7c20cf8] {
|
|
412
590
|
position: absolute;
|
|
413
591
|
left: 100px;
|
|
414
592
|
right: 0;
|
|
415
593
|
top: 0;
|
|
416
594
|
bottom: 0;
|
|
417
595
|
}
|
|
418
|
-
.g1-form_main1 .head[data-v-
|
|
596
|
+
.g1-form_main1 .head[data-v-f7c20cf8] {
|
|
419
597
|
height: 46px;
|
|
420
598
|
line-height: 46px;
|
|
421
599
|
text-align: left;
|
|
@@ -423,11 +601,11 @@ dd[data-v-3fa458e1] {
|
|
|
423
601
|
box-sizing: border-box;
|
|
424
602
|
border-bottom: 1px solid #d8d8d8;
|
|
425
603
|
}
|
|
426
|
-
.g1-form_main1 .head .ant-btn[data-v-
|
|
604
|
+
.g1-form_main1 .head .ant-btn[data-v-f7c20cf8] {
|
|
427
605
|
height: 32px;
|
|
428
606
|
margin-right: 10px;
|
|
429
607
|
}
|
|
430
|
-
.g1-form_main1 .main[data-v-
|
|
608
|
+
.g1-form_main1 .main[data-v-f7c20cf8] {
|
|
431
609
|
position: absolute;
|
|
432
610
|
left: 0 !important;
|
|
433
611
|
right: 0px;
|
|
@@ -436,12 +614,12 @@ dd[data-v-3fa458e1] {
|
|
|
436
614
|
overflow: auto;
|
|
437
615
|
box-sizing: border-box;
|
|
438
616
|
}
|
|
439
|
-
.g1-form_main1 .main #flowContainer[data-v-
|
|
617
|
+
.g1-form_main1 .main #flowContainer[data-v-f7c20cf8] {
|
|
440
618
|
background-image: linear-gradient(90deg, rgba(180, 180, 180, 0.15) 10%, rgba(180, 180, 180, 0) 10%), linear-gradient(rgba(180, 180, 180, 0.15) 10%, rgba(0, 0, 0, 0) 10%);
|
|
441
619
|
background-size: 10px 10px;
|
|
442
620
|
background-color: #fbfbfb;
|
|
443
621
|
}
|
|
444
|
-
.g1-form_main1 .sider-pannel[data-v-
|
|
622
|
+
.g1-form_main1 .sider-pannel[data-v-f7c20cf8] {
|
|
445
623
|
width: 250px;
|
|
446
624
|
padding: 0 15px;
|
|
447
625
|
position: absolute;
|
|
@@ -452,7 +630,7 @@ dd[data-v-3fa458e1] {
|
|
|
452
630
|
background-color: #fff;
|
|
453
631
|
z-index: 101;
|
|
454
632
|
}
|
|
455
|
-
.g1-form_main1 .sider-pannel .sider-panel-inner[data-v-
|
|
633
|
+
.g1-form_main1 .sider-pannel .sider-panel-inner[data-v-f7c20cf8] {
|
|
456
634
|
width: 100%;
|
|
457
635
|
height: 100%;
|
|
458
636
|
padding: 15px;
|
|
@@ -463,7 +641,7 @@ dd[data-v-3fa458e1] {
|
|
|
463
641
|
top: 0;
|
|
464
642
|
overflow-y: auto;
|
|
465
643
|
}
|
|
466
|
-
.g1-form_main1 .sider-pannel .sider-open[data-v-
|
|
644
|
+
.g1-form_main1 .sider-pannel .sider-open[data-v-f7c20cf8] {
|
|
467
645
|
width: 36px;
|
|
468
646
|
height: 60px;
|
|
469
647
|
line-height: 60px;
|
|
@@ -479,14 +657,14 @@ dd[data-v-3fa458e1] {
|
|
|
479
657
|
background-color: #fff;
|
|
480
658
|
}
|
|
481
659
|
/* 视图图形 */
|
|
482
|
-
.flow-view[data-v-
|
|
660
|
+
.flow-view[data-v-f7c20cf8] {
|
|
483
661
|
position: absolute;
|
|
484
662
|
left: 0;
|
|
485
663
|
right: 0;
|
|
486
664
|
top: 0;
|
|
487
665
|
bottom: 0;
|
|
488
666
|
}
|
|
489
|
-
.flow-view .inner .flow-node-drag[data-v-
|
|
667
|
+
.flow-view .inner .flow-node-drag[data-v-f7c20cf8] {
|
|
490
668
|
width: 12px;
|
|
491
669
|
height: 12px;
|
|
492
670
|
display: block;
|
|
@@ -497,27 +675,27 @@ dd[data-v-3fa458e1] {
|
|
|
497
675
|
cursor: crosshair;
|
|
498
676
|
background: rgba(24, 144, 255, 0.6);
|
|
499
677
|
}
|
|
500
|
-
.flow-view .inner .flow-node-drag[data-v-
|
|
678
|
+
.flow-view .inner .flow-node-drag[data-v-f7c20cf8]:nth-child(1) {
|
|
501
679
|
left: -6px;
|
|
502
680
|
top: 0;
|
|
503
681
|
bottom: 0;
|
|
504
682
|
}
|
|
505
|
-
.flow-view .inner .flow-node-drag[data-v-
|
|
683
|
+
.flow-view .inner .flow-node-drag[data-v-f7c20cf8]:nth-child(2) {
|
|
506
684
|
top: -6px;
|
|
507
685
|
left: 0;
|
|
508
686
|
right: 0;
|
|
509
687
|
}
|
|
510
|
-
.flow-view .inner .flow-node-drag[data-v-
|
|
688
|
+
.flow-view .inner .flow-node-drag[data-v-f7c20cf8]:nth-child(3) {
|
|
511
689
|
right: -6px;
|
|
512
690
|
top: 0;
|
|
513
691
|
bottom: 0;
|
|
514
692
|
}
|
|
515
|
-
.flow-view .inner .flow-node-drag[data-v-
|
|
693
|
+
.flow-view .inner .flow-node-drag[data-v-f7c20cf8]:nth-child(4) {
|
|
516
694
|
bottom: -6px;
|
|
517
695
|
left: 0;
|
|
518
696
|
right: 0;
|
|
519
697
|
}
|
|
520
|
-
.flow-view .tool[data-v-
|
|
698
|
+
.flow-view .tool[data-v-f7c20cf8] {
|
|
521
699
|
width: 100%;
|
|
522
700
|
height: 100%;
|
|
523
701
|
margin: 0;
|
|
@@ -525,14 +703,14 @@ dd[data-v-3fa458e1] {
|
|
|
525
703
|
box-shadow: 5px 5px 3px #d4d0d0;
|
|
526
704
|
background: #fbfbfb;
|
|
527
705
|
}
|
|
528
|
-
.flow-view .tool .iconfont[data-v-
|
|
706
|
+
.flow-view .tool .iconfont[data-v-f7c20cf8] {
|
|
529
707
|
font-size: 100%;
|
|
530
708
|
color: #858587;
|
|
531
709
|
}
|
|
532
|
-
.flow-view .exclude_gateway[data-v-
|
|
710
|
+
.flow-view .exclude_gateway[data-v-f7c20cf8] {
|
|
533
711
|
box-shadow: 0 0 0 #ccc;
|
|
534
712
|
}
|
|
535
|
-
.flow-view .gate[data-v-
|
|
713
|
+
.flow-view .gate[data-v-f7c20cf8] {
|
|
536
714
|
line-height: 50px;
|
|
537
715
|
position: absolute;
|
|
538
716
|
left: 0;
|
|
@@ -540,9 +718,9 @@ dd[data-v-3fa458e1] {
|
|
|
540
718
|
top: 0;
|
|
541
719
|
bottom: 0;
|
|
542
720
|
}
|
|
543
|
-
.flow-view .ordinary_gateway[data-v-
|
|
544
|
-
.flow-view .parall_gateway[data-v-
|
|
545
|
-
.flow-view .exclude_gateway[data-v-
|
|
721
|
+
.flow-view .ordinary_gateway[data-v-f7c20cf8],
|
|
722
|
+
.flow-view .parall_gateway[data-v-f7c20cf8],
|
|
723
|
+
.flow-view .exclude_gateway[data-v-f7c20cf8] {
|
|
546
724
|
border: none;
|
|
547
725
|
border-radius: 0;
|
|
548
726
|
background-size: cover;
|
|
@@ -550,35 +728,35 @@ dd[data-v-3fa458e1] {
|
|
|
550
728
|
background-position: center center;
|
|
551
729
|
box-shadow: 0 0 0 #ccc;
|
|
552
730
|
}
|
|
553
|
-
.flow-view .ordinary_gateway .flow-node-drag[data-v-
|
|
554
|
-
.flow-view .parall_gateway .flow-node-drag[data-v-
|
|
555
|
-
.flow-view .exclude_gateway .flow-node-drag[data-v-
|
|
731
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(1),
|
|
732
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(1),
|
|
733
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(1) {
|
|
556
734
|
left: 0;
|
|
557
735
|
top: 0;
|
|
558
736
|
bottom: 0;
|
|
559
737
|
}
|
|
560
|
-
.flow-view .ordinary_gateway .flow-node-drag[data-v-
|
|
561
|
-
.flow-view .parall_gateway .flow-node-drag[data-v-
|
|
562
|
-
.flow-view .exclude_gateway .flow-node-drag[data-v-
|
|
738
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(2),
|
|
739
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(2),
|
|
740
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(2) {
|
|
563
741
|
top: 0;
|
|
564
742
|
left: 0;
|
|
565
743
|
right: 0;
|
|
566
744
|
}
|
|
567
|
-
.flow-view .ordinary_gateway .flow-node-drag[data-v-
|
|
568
|
-
.flow-view .parall_gateway .flow-node-drag[data-v-
|
|
569
|
-
.flow-view .exclude_gateway .flow-node-drag[data-v-
|
|
745
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(3),
|
|
746
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(3),
|
|
747
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(3) {
|
|
570
748
|
right: 0;
|
|
571
749
|
top: 0;
|
|
572
750
|
bottom: 0;
|
|
573
751
|
}
|
|
574
|
-
.flow-view .ordinary_gateway .flow-node-drag[data-v-
|
|
575
|
-
.flow-view .parall_gateway .flow-node-drag[data-v-
|
|
576
|
-
.flow-view .exclude_gateway .flow-node-drag[data-v-
|
|
752
|
+
.flow-view .ordinary_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(4),
|
|
753
|
+
.flow-view .parall_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(4),
|
|
754
|
+
.flow-view .exclude_gateway .flow-node-drag[data-v-f7c20cf8]:nth-child(4) {
|
|
577
755
|
bottom: 0;
|
|
578
756
|
left: 0;
|
|
579
757
|
right: 0;
|
|
580
758
|
}
|
|
581
|
-
.flow-view .exclude_gateway[data-v-
|
|
759
|
+
.flow-view .exclude_gateway[data-v-f7c20cf8] {
|
|
582
760
|
width: 70%;
|
|
583
761
|
height: 70%;
|
|
584
762
|
margin: 15%;
|
|
@@ -587,7 +765,7 @@ dd[data-v-3fa458e1] {
|
|
|
587
765
|
transform: rotate(45deg);
|
|
588
766
|
position: relative;
|
|
589
767
|
}
|
|
590
|
-
.flow-view .exclude_gateway[data-v-
|
|
768
|
+
.flow-view .exclude_gateway[data-v-f7c20cf8]::before {
|
|
591
769
|
content: '';
|
|
592
770
|
width: 2px;
|
|
593
771
|
background-color: #7a7a7a;
|
|
@@ -597,7 +775,7 @@ dd[data-v-3fa458e1] {
|
|
|
597
775
|
top: calc(50% - 10px);
|
|
598
776
|
left: calc(50% - 1px);
|
|
599
777
|
}
|
|
600
|
-
.flow-view .exclude_gateway[data-v-
|
|
778
|
+
.flow-view .exclude_gateway[data-v-f7c20cf8]::after {
|
|
601
779
|
content: '';
|
|
602
780
|
width: 20px;
|
|
603
781
|
background-color: #7a7a7a;
|
|
@@ -607,7 +785,7 @@ dd[data-v-3fa458e1] {
|
|
|
607
785
|
top: calc(50% - 1px);
|
|
608
786
|
left: calc(50% - 10px);
|
|
609
787
|
}
|
|
610
|
-
.flow-view .parall_gateway[data-v-
|
|
788
|
+
.flow-view .parall_gateway[data-v-f7c20cf8] {
|
|
611
789
|
width: 70%;
|
|
612
790
|
height: 70%;
|
|
613
791
|
margin: 15%;
|
|
@@ -616,7 +794,7 @@ dd[data-v-3fa458e1] {
|
|
|
616
794
|
transform: rotate(45deg);
|
|
617
795
|
position: relative;
|
|
618
796
|
}
|
|
619
|
-
.flow-view .parall_gateway[data-v-
|
|
797
|
+
.flow-view .parall_gateway[data-v-f7c20cf8]::after {
|
|
620
798
|
content: '';
|
|
621
799
|
width: 20px;
|
|
622
800
|
background-color: #7a7a7a;
|
|
@@ -628,7 +806,7 @@ dd[data-v-3fa458e1] {
|
|
|
628
806
|
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
|
629
807
|
transform: rotate(45deg);
|
|
630
808
|
}
|
|
631
|
-
.flow-view .parall_gateway[data-v-
|
|
809
|
+
.flow-view .parall_gateway[data-v-f7c20cf8]::before {
|
|
632
810
|
content: '';
|
|
633
811
|
width: 2px;
|
|
634
812
|
background-color: #7a7a7a;
|
|
@@ -641,7 +819,7 @@ dd[data-v-3fa458e1] {
|
|
|
641
819
|
transform: rotate(45deg);
|
|
642
820
|
}
|
|
643
821
|
/* 线条工具 */
|
|
644
|
-
.lineTool[data-v-
|
|
822
|
+
.lineTool[data-v-f7c20cf8] {
|
|
645
823
|
width: 130px;
|
|
646
824
|
height: 26px;
|
|
647
825
|
border: 1px solid #1890ff;
|
|
@@ -649,7 +827,7 @@ dd[data-v-3fa458e1] {
|
|
|
649
827
|
background-color: #fff;
|
|
650
828
|
text-align: left;
|
|
651
829
|
}
|
|
652
|
-
.lineTool li[data-v-
|
|
830
|
+
.lineTool li[data-v-f7c20cf8] {
|
|
653
831
|
width: 30px;
|
|
654
832
|
height: 26px;
|
|
655
833
|
display: inline-block;
|
|
@@ -657,14 +835,14 @@ dd[data-v-3fa458e1] {
|
|
|
657
835
|
text-align: center;
|
|
658
836
|
color: #1890ff;
|
|
659
837
|
}
|
|
660
|
-
.tool-drag a .inner[data-v-
|
|
838
|
+
.tool-drag a .inner[data-v-f7c20cf8] {
|
|
661
839
|
color: #f00 !important;
|
|
662
840
|
}
|
|
663
|
-
.ant-layout-footer[data-v-
|
|
841
|
+
.ant-layout-footer[data-v-f7c20cf8] {
|
|
664
842
|
z-index: 10;
|
|
665
843
|
}
|
|
666
844
|
|
|
667
|
-
#flowContainer[data-v-
|
|
845
|
+
#flowContainer[data-v-f7c20cf8] {
|
|
668
846
|
width: 1000000px;
|
|
669
847
|
height: 1000000px;
|
|
670
848
|
position: absolute;
|
|
@@ -677,14 +855,14 @@ dd[data-v-3fa458e1] {
|
|
|
677
855
|
left: -500000px;
|
|
678
856
|
top: -500000px; */
|
|
679
857
|
}
|
|
680
|
-
.loading[data-v-
|
|
858
|
+
.loading[data-v-f7c20cf8] {
|
|
681
859
|
height: 100%;
|
|
682
860
|
width: 100%;
|
|
683
861
|
display: flex;
|
|
684
862
|
align-items: center;
|
|
685
863
|
justify-content: center;
|
|
686
864
|
}
|
|
687
|
-
[data-v-
|
|
865
|
+
[data-v-f7c20cf8] .labelClass {
|
|
688
866
|
z-index: 1;
|
|
689
867
|
background-color: #539dfa !important;
|
|
690
868
|
padding: 5px;
|
|
@@ -692,7 +870,7 @@ dd[data-v-3fa458e1] {
|
|
|
692
870
|
color: #fff;
|
|
693
871
|
}
|
|
694
872
|
|
|
695
|
-
.flowWorkCard[data-v-
|
|
873
|
+
.flowWorkCard[data-v-703a8296]{border-radius:10px;background-color:#f5f7fa;padding:18px 5px 18px 16px;overflow:hidden;margin-bottom:10px}[data-v-703a8296] .el-timeline .el-timeline-item__timestamp{display:none}[data-v-703a8296] .el-timeline .el-timeline-item{padding-bottom:20px}[data-v-703a8296] .el-timeline .el-timeline-item:last-child{padding-bottom:0}[data-v-703a8296] .el-timeline .el-timeline-item[hollow='true'] .el-timeline-item__node{border-color:#22BE65 !important}[data-v-703a8296] .el-timeline .el-timeline-item[hollow='ZHONGZHI'] .el-timeline-item__node,[data-v-703a8296] .el-timeline .el-timeline-item[hollow='ZHONGZHI'] .el-timeline-item__tail{border-color:#c62d35 !important}[data-v-703a8296] .el-timeline .el-timeline-item__tail{border-style:dashed;left:6px;border-color:#268AEF;border-right:0}[data-v-703a8296] .el-timeline .el-timeline-item__node{width:16px;height:16px;border:2px solid #268AEF !important;background:#fff}
|
|
696
874
|
|
|
697
875
|
/****提示框样式 */
|
|
698
876
|
.tips-content[data-v-4fb63fb6] {
|
|
@@ -947,33 +1125,33 @@ dd[data-v-3fa458e1] {
|
|
|
947
1125
|
height: 80px !important;
|
|
948
1126
|
}
|
|
949
1127
|
|
|
950
|
-
.nodeType[data-v-
|
|
1128
|
+
.nodeType[data-v-7b949a7a] {
|
|
951
1129
|
width: 100%;
|
|
952
1130
|
display: flex;
|
|
953
1131
|
justify-content: flex-end;
|
|
954
1132
|
margin-bottom: 20px;
|
|
955
1133
|
padding-left: 320px;
|
|
956
1134
|
}
|
|
957
|
-
.nodeType_item[data-v-
|
|
1135
|
+
.nodeType_item[data-v-7b949a7a] {
|
|
958
1136
|
display: flex;
|
|
959
1137
|
align-items: center;
|
|
960
1138
|
}
|
|
961
|
-
.nodeType div[data-v-
|
|
1139
|
+
.nodeType div[data-v-7b949a7a] {
|
|
962
1140
|
margin-right: 10px;
|
|
963
1141
|
}
|
|
964
|
-
.nodeColor[data-v-
|
|
1142
|
+
.nodeColor[data-v-7b949a7a] {
|
|
965
1143
|
width: 12px;
|
|
966
1144
|
height: 12px;
|
|
967
1145
|
box-sizing: content-box;
|
|
968
1146
|
box-shadow: 0px 0 3px 3px var(--node-color);
|
|
969
1147
|
border-radius: 50%;
|
|
970
1148
|
}
|
|
971
|
-
.nodeName[data-v-
|
|
1149
|
+
.nodeName[data-v-7b949a7a] {
|
|
972
1150
|
color: #333;
|
|
973
1151
|
font-size: 14px;
|
|
974
1152
|
text-align: center;
|
|
975
1153
|
}
|
|
976
|
-
#flowContainer[data-v-
|
|
1154
|
+
#flowContainer[data-v-7b949a7a] {
|
|
977
1155
|
/* width: 5010000px; */
|
|
978
1156
|
/* height: 5010000px; */
|
|
979
1157
|
position: absolute;
|
|
@@ -981,7 +1159,7 @@ dd[data-v-3fa458e1] {
|
|
|
981
1159
|
top: -500000px;
|
|
982
1160
|
color: #333;
|
|
983
1161
|
}
|
|
984
|
-
.g1_workflow_warp[data-v-
|
|
1162
|
+
.g1_workflow_warp[data-v-7b949a7a] {
|
|
985
1163
|
width: 100% !important;
|
|
986
1164
|
height: 54vh;
|
|
987
1165
|
border: none !important;
|
|
@@ -992,54 +1170,54 @@ dd[data-v-3fa458e1] {
|
|
|
992
1170
|
margin: 0 auto;
|
|
993
1171
|
top: 0;
|
|
994
1172
|
}
|
|
995
|
-
.loading[data-v-
|
|
1173
|
+
.loading[data-v-7b949a7a] {
|
|
996
1174
|
height: 100%;
|
|
997
1175
|
width: 100%;
|
|
998
1176
|
display: flex;
|
|
999
1177
|
align-items: center;
|
|
1000
1178
|
justify-content: center;
|
|
1001
1179
|
}
|
|
1002
|
-
#main[data-v-
|
|
1180
|
+
#main[data-v-7b949a7a] {
|
|
1003
1181
|
left: 34px;
|
|
1004
1182
|
top: 0;
|
|
1005
1183
|
overflow: initial !important;
|
|
1006
1184
|
}
|
|
1007
|
-
.operate-icon[data-v-
|
|
1185
|
+
.operate-icon[data-v-7b949a7a] {
|
|
1008
1186
|
position: absolute;
|
|
1009
1187
|
width: 35px;
|
|
1010
1188
|
height: 35px;
|
|
1011
1189
|
border-radius: 3px;
|
|
1012
1190
|
box-shadow: 0 0 4px #cccccc;
|
|
1013
1191
|
}
|
|
1014
|
-
.operate-icon.add[data-v-
|
|
1192
|
+
.operate-icon.add[data-v-7b949a7a] {
|
|
1015
1193
|
bottom: 60px;
|
|
1016
1194
|
right: 10px;
|
|
1017
1195
|
z-index: 3;
|
|
1018
1196
|
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAEAYAAAD6+a2dAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAAAWtJREFUeNrt2rGNwjAYhmEnDUOAGMLOEog9PABijIie9JmBki4VZgE6kiWoTHFycSfRmfjge58mRSTLSd4kzW8MAAAAAAAAAADAF3HOOee2W9e73vXTZM/2bM/j2HRN13SbTen94c3SA/8JIcZ0tA/7sI/7vfT+5laV3sDc0gN/dT6EEEKoZO5LXXoDKIsAxBGAOAIQRwDiCEAcAYgjAHEEII4AxBGAOAIQRwDiCEAcAYgjAHEEIC775EuauTM7szO749EczMEclsvSF/qpYhvb2E5Tfatv9c37i7/4iz+dcq2fPYA0c1ftq321X63mvV3fKw5xiMM4XhfXxXWxXudal1+AuOwBpE9V+nSVvsBPl978GGKIwfvc68tMvyZMBf/GL0AcAYgjAHEEII4AxBGAOAIQRwDiCEAcAYgjAHEEII4AxBGAOAIQRwDiCECcXACvRtXS6FXp/c1NLoC/M4vvnrkDAAAAAAD4L54jPY7c2CrL+gAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMi0wNy0yOVQwOTo1NjowNiswODowMDwNcRgAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjItMDctMjlUMDk6NTY6MDYrMDg6MDBNUMmkAAAAS3RFWHRzdmc6YmFzZS11cmkAZmlsZTovLy9ob21lL2FkbWluL2ljb24tZm9udC90bXAvaWNvbl9ncXhhbWI5dnNsNS9JbmNyZWFzZS5zdmf2nX6sAAAAAElFTkSuQmCC) no-repeat center;
|
|
1019
1197
|
background-size: 60% 60%;
|
|
1020
1198
|
}
|
|
1021
|
-
.operate-icon.decrease[data-v-
|
|
1199
|
+
.operate-icon.decrease[data-v-7b949a7a] {
|
|
1022
1200
|
bottom: 10px;
|
|
1023
1201
|
right: 10px;
|
|
1024
1202
|
z-index: 3;
|
|
1025
1203
|
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAEAYAAAD6+a2dAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAAAMBJREFUeNrt1LGRgzAQBVBBQhH2uAhUhvtQAQxlMOSuxCEZEdAAIe5DF9EBczrfvFfAH/2d1YYAAAAAAAAAAAAAAAAAAAAA/HXV1YExxhjj8xm60IXu9QpjGMN4u5Uu+q3ykIc8fD71Xu/1ntKSlrSk9/uq/MsXoJ3aqZ2Oo+qrvurv998d1/+V5zzn+Ti2Zmu25vG4KrcuXYyyLl+A81Sdp6t0wW93/vy85jWvKZV+DwAAAAAAAAAAAAAAAABQ1g+/6jwYyLo/sAAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAyMi0wNy0yOVQwOTo1NjowNiswODowMDwNcRgAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMjItMDctMjlUMDk6NTY6MDYrMDg6MDBNUMmkAAAAS3RFWHRzdmc6YmFzZS11cmkAZmlsZTovLy9ob21lL2FkbWluL2ljb24tZm9udC90bXAvaWNvbl9ncXhhbWI5dnNsNS9EZWNyZWFzZS5zdmdLE/gGAAAAAElFTkSuQmCC) no-repeat center;
|
|
1026
1204
|
background-size: 60% 60%;
|
|
1027
1205
|
}
|
|
1028
|
-
.operate-icon.enlarge[data-v-
|
|
1206
|
+
.operate-icon.enlarge[data-v-7b949a7a] {
|
|
1029
1207
|
top: 10px;
|
|
1030
1208
|
right: 10px;
|
|
1031
1209
|
z-index: 3;
|
|
1032
1210
|
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAEAYAAAD6+a2dAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAAC4BJREFUeNrtnH1QVNUbx59nUSLbHTULW1J/9OI4Zih77oUIUZomgwp8G1gk18qmIlsDQcxmLFeoaExSUAgLZ0xEZnwZTZZSXkYUdRF2725mEdM0xMDmRo4TgfIisef3x2GdXzi0u7Dr3fzdzz/Mvexz7/c853vPuffccy6AhISEhISEhISEhISExP8RONpAjnCEIzNmsK0nnrhtgs/hOTx34YJpgmmCaUJ7++06r9N8cBzHcUolZmEWZs2Zc9vysQ/34b7vvzceNh42Hv7tN3fjx43+zICAUVFs48ABbxeU6qme6o8ckd8tv1t+97Fj3j6fu/Ru7N3Yu/Hq1YDfA34P+P3tt7EQC7Fw8WKv5wUoUFi5km2VlbkbL7v9qXKzgEMVr1AqlAplcvIZPINn8K+/xNY1nCZ1k7pJfeNGn7xP3idPTKRaqqXa8nKxdTnDZw3wb6n44Qw3AuyCXbBLrxdb10j4nAH+rRU/HIcReq291l5rQoKvGsFnDHCnVPxwfN0IPmMAKIACKGhvv1MqfjgOI8B38B18Z7GIrceBzxgAK7ESK9PTSRNpIk2ffiq2Hk/DHhPXr4diKIbizZvF1uPAZwzgAFfhKlyVkcFRjnJ0yxax9YwVEktiSey6dWwrN1dsPcPxOQPchAceeJ2OD+AD+IBNm8SW4y5soCw1Fa/gFbyyY4fYekbC6wagX9Ov6dfHj0MSJEHSZ5+5HT+HzqFzPvzwZhPq45CFZCFZqNUyA+fluX2Av+Xpq6+8rddrBqBpNI2mnTjRdajrUNehpCThHeEd4R2tlj5Jn6RPfvTR6I6am0vqSB2py8z0dmLchV/IL+QXvvoqalCDmp07QQABBHR9qP0leAleys1leVq7lg3xqdXwArwAL3hv5NPjBrhZ8Z1dnV2dy5b9nPpz6s+p/f2O/5sLzAXmgvfeAxOYwJSV5e7xsRRLsfSTT8gJcoKceOstbyXGVcghcogceuUVqqEaqikuhs/hc/hc5nJe6V66l+7dulVIE9KEtA0bhvZSwSyYBfPAAFRABVQkJXnLCJ4zwA7YATtOnlSsUqxSrFq+fHjFD0dAAQXcsgVSIRVS333X5fMMXVl4DI/hsYICQggh5I03PJ0YZ5DxZDwZn5QEwRAMwXv2uF3xRbSIFul05rnmuea5I5ff20YYuwFiIAZiKivlC+QL5AuWLWPP8X19roYLLwsvCy9v3cq2MjOBAw44Sp0HDhnhTXwT3ywqIoEkkARqNJ5KzEiwm7vEROiHfugvLcU1uAbX+Pk5D2TlQhva0JaRYQ43h5vDs7NdzpOXjOBc+AhMM04zTjP293e2d7Z3tu/ebYmwRFgiRr7inWGz2Ww2W339g10Pdj3YdfUqREIkRD73HNjABrZ/6EsdfW0ZlEHZkiXKMGWYMqy52aa36W36H34Ya4IcOCqemqiJmsrKMAzDMGyc87epKZACKXY7qEAFKq1WKBaKheKCgrHlyW4P6g7qDuo+ehSzMRuzu7svl10uu1z2xx/uHm/U8wG8DTlOjpPjr7+OHdiBHbt3u9zEZkAGZKxfL6wUVgort2/3lB7uAHeAO5CRAdthO2x3PlDFmvjBQWiFVmh97TWz2qw2q7/8Utys3orPGsABZ+AMnCE5mUbQCBpRUjLSlUdn09l09qZN5lJzqbk0J8dbevggPogPSk+nSqqkylsN5qh4WbYsW5a9erWpwlRhqti/X+w8/utxNMFsPODGDfaXUrEGihxGcOjgUrgULqW/X9Wt6lZ1L18udr7uWLhmrplrXrKEJd6NpwcvcdMIVs7KWZ9/Xmw9EhISEhISEhISEhISEhISEhISEhK3MurXwWLB3vvPnRukC9IF6TZvjpoUNSlqUmVlU1NTU1OTC/MIPAR7NzF+vDJFmaJMyc+frpiumK5obv71p19/+vWnzk6x83THwcb+CWGJv3Ll5kuYLdwWbsvBg9E0mkZTF97Pj5HExMTExEQ/P2IlVmItK3PoIP2kn/S3tYWmhqaGps6cKXa+XMV3p4UPoYpURaoieZ7m03yaX13NlqXfd9/NH+hBD3q1+hp/jb/G79kzVCyPl8tR8S0hLSEtIfv24RJcgkuSkx3/x0iMxMjp02UJsgRZwtmzvIbX8JrHHxc7f87w2S6Av8Rf4i9FR+MD+AA+UFXFZr5MnPjPUaGhQcogZZBSLmczZ6qqPKUnQBOgCdAUFbG5iKtXj/Q7tsJJLgcNaECTkKA8rzyvPF9VZbtuu2673tEhdl6H43MtAFsR9NRT1EiN1FhRAYVQCIVyudPACIiAiCtX2Ma+fR5P1DrZOtm6khK6i+6iu7q7nQbkQR7kBQbiNtyG206f5mfyM/mZ4eG3P6NOyjXaQH4yP5mfPH8+/wH/Af/BrFljFUJySA7JiYujDbSBNpw44WrF0wv0Ar1w9ar9C/sX9i8WLWKTJy9d8nSi2CdpDAaZQqaQKeLj2d6eHqeBO2En7Jw8mT5Dn6HPVFaypWIREWPV48i746Z4tMcZtQEG2wbbBtumTrVH26Pt0WfOsJkws2e7exxVi6pF1RIfj4EYiIFHjqAWtagNCHAaGA7hEN7ZSaNpNI2OjbUMWAYsAxcvjjWxzjCFmEJMIWfOsClosbEQBmEQdv2608BGaITGSZMwGIMxuKaGrCVrydqnn3Y7XwaVQWV49FHaQTtox6lToAY1qP/nnshNxtwFYDqmY/rUqWhCE5qqqthd8SOPOItjN0krVrCEHD0KRVAERXfd5dpZ//xTdlJ2Unby2WctBovBYjCZxloOd2FzD8+exTiMw7ilS2kjbaSNvb1OA41gBOM992A91mO9Xs91cp1c56JFzsJUuapcVe5//iNrk7XJ2qqroR7qoT4oaKzl8Ng9AGZiJmZOm0YN1EANtbV8BV/BVzz88PDfkRJSQkpWrrSX2EvsJfv3uzq9mnUNXV1syVRMjPEX4y/GX4xGT+kfLaY4U5wprqaGlWPpUlpIC2mhq+siJkyAI3AEjuj1rEm/9aNSjq+xYSiGYmhtLWyDbbAtONhT+j1+E+h4HKI6qqO62tp5dB6dR4ODHSt4sA/7sG/k2b23MNTE0jyaR/Pi41kf39Dgad1jhemqqoJyKIdyN4ww1PJRK7VS6+HDJJ/kk/xly/gevofvmT6dnqfn6fnaWtyIG3HjQw95WreXnwJmzBhXOq50XGlDA/LII+/G/H4taEF77RrrO2NjLZmWTEtmXZ139Y4dc445x5xTWSmrllXLqpOS2CrhGzecBprABCZ/fyzBEiw5eNDeYG+wNxgMGIVRGHVrS+opvP8YOPQ45N5q2Z4e9hSweDG7ss6d87pOD2N63/S+6f3ycvoYfYw+tmIF2zsw4Fr0+PGOLtXbOn1mHMBxE8WWj8fHC4IgCEJtrdi6xoo5zZxmTjt2zH7aftp+esUKNr7hO99AEt8Aa2ANrOnvZ4smExLY8vFTp8SW5WksCovCojh6FC/iRbyYnOwrRvD6yxNn0Bfpi/TF1lbW1zU2iq3H28hyZDmynHPn7C32FnvL5ctsr+ObyyLoETshuAAX4IJZs0AHOtDV1IRZw6xh1ilTxNblaULrQutC6+6/f3Dv4N7BvdXVbK94Fe9AdAPcJBuyIXvevMFvB78d/LamJqI9oj2i/d57xZY1VkJCQkJCQiZP9kv3S/dLP3kSozEao33nLaHvGGAI1KEOdaGhA0sHlg4sra52JFBsXe7Cxj8mTfL/2P9j/48dbyUJEVvXcHzOAH+HEP8Y/xj/mG++mT9l/pT5UxQKsRU5g43cTZzoV+5X7ldeVcW6Np4XW9dIjPom0L7BvsG+oaFBRmVURtVqryk8BafgFEBPa09rT+u0aaAABSh+/FGUbLkADaSBNHD2bMiCLMjas4d9z98xUcUL5zNTMzU3N4tdbgkJCQkJCQkJCQkJCYl/Bf8FYNJKLlSmoNwAAAAldEVYdGRhdGU6Y3JlYXRlADIwMjItMDctMjlUMTA6MTk6MTYrMDg6MDCr77IXAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIyLTA3LTI5VDEwOjE5OjE2KzA4OjAw2rIKqwAAAFB0RVh0c3ZnOmJhc2UtdXJpAGZpbGU6Ly8vaG9tZS9hZG1pbi9pY29uLWZvbnQvdG1wL2ljb25fbWc4dDV3c2Frci9xdWFucGluZ2ZhbmdkYS5zdmdv+6smAAAAAElFTkSuQmCC) no-repeat center;
|
|
1033
1211
|
background-size: 60% 60%;
|
|
1034
1212
|
}
|
|
1035
|
-
.operate-icon.narrow[data-v-
|
|
1213
|
+
.operate-icon.narrow[data-v-7b949a7a] {
|
|
1036
1214
|
top: 10px;
|
|
1037
1215
|
right: 10px;
|
|
1038
1216
|
z-index: 3;
|
|
1039
1217
|
background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAEAYAAAD6+a2dAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAAAb5JREFUeNrt3D1uwjAYxnE7qsQh+DhEzMQNEIdgywEQx0DMhJ0zMLIxYS7ARnIJFtwBvLSlFi2V7b7/38JAhJ44D8mQV1YKAAAgQcYYY8xkYjZmYzZtW+7KXblrmuF6uB6ux2Py/XN+QW8L7Zz/LC/lpbycz+T7HR07QIhf0EffW2uttTraeaSeL6SIHQBxUQDhKIBwFEA4CiAcBRCOAghHAYSjAMJRAOEogHAUQDgKINxb6AD/vlvN1EzN6lot1VItu93YwXMRelv4am7hFm7RtsWpOBWnqjpUh+pQbbePjg/eAW4/uFpx4fOg53qu573edXqdXqd1HTo+20eA27u92zdN9Bz3f1zsHD8VLIC/laRyov7CO+uss1UVOw/rAwAAAAAAAAAAAAAAUhPcuSK1mcBnZ97+Wu7rEyyA3wPHz5rFOrFPJ3qffDl2jp1jZzCIlSP39cl2JlCP9EiP+v3oORK78M/KbiYQ33t2JjDZ3au81HfhSj1fSLaPALwGBRCOAghHAYSjAMJRAOEogHAUQDgKIBwFEI4CCEcBhKMAwiVfgEevoVPfIyiVfCHJF+DjPEJqe+Ckng8AAOAr70HBa0LnD8b/AAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIyLTA3LTI5VDA5OjU2OjA2KzA4OjAwPA1xGAAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMi0wNy0yOVQwOTo1NjowNiswODowME1QyaQAAABJdEVYdHN2ZzpiYXNlLXVyaQBmaWxlOi8vL2hvbWUvYWRtaW4vaWNvbi1mb250L3RtcC9pY29uX2dxeGFtYjl2c2w1L05hcnJvdy5zdmcDjNkvAAAAAElFTkSuQmCC) no-repeat center;
|
|
1040
1218
|
background-size: 60% 60%;
|
|
1041
1219
|
}
|
|
1042
|
-
.fullscreen[data-v-
|
|
1220
|
+
.fullscreen[data-v-7b949a7a] {
|
|
1043
1221
|
position: fixed !important;
|
|
1044
1222
|
top: 0 !important;
|
|
1045
1223
|
left: 0 !important;
|
|
@@ -1047,7 +1225,7 @@ dd[data-v-3fa458e1] {
|
|
|
1047
1225
|
height: 100vh;
|
|
1048
1226
|
background: #fff;
|
|
1049
1227
|
}
|
|
1050
|
-
#form_main1[data-v-
|
|
1228
|
+
#form_main1[data-v-7b949a7a] {
|
|
1051
1229
|
outline: none;
|
|
1052
1230
|
overflow: hidden;
|
|
1053
1231
|
}
|
|
@@ -1072,15 +1250,15 @@ dd[data-v-3fa458e1] {
|
|
|
1072
1250
|
vertical-align: -2px;
|
|
1073
1251
|
}
|
|
1074
1252
|
|
|
1075
|
-
.is_required[data-v-
|
|
1253
|
+
.is_required[data-v-10785559]::before {
|
|
1076
1254
|
content: "*";
|
|
1077
1255
|
color: #f56c6c;
|
|
1078
1256
|
margin-right: 4px;
|
|
1079
1257
|
}
|
|
1080
|
-
[data-v-
|
|
1258
|
+
[data-v-10785559] .ant-input {
|
|
1081
1259
|
background-color: rgba(0, 0, 0, 0);
|
|
1082
1260
|
}
|
|
1083
|
-
[data-v-
|
|
1261
|
+
[data-v-10785559] .ant-input-number {
|
|
1084
1262
|
width: 100%;
|
|
1085
1263
|
}
|
|
1086
1264
|
|
|
@@ -1396,63 +1574,274 @@ dd[data-v-3fa458e1] {
|
|
|
1396
1574
|
color: #cccccc;
|
|
1397
1575
|
}
|
|
1398
1576
|
|
|
1399
|
-
.
|
|
1577
|
+
.CodeMirror-hints {
|
|
1578
|
+
position: absolute;
|
|
1579
|
+
z-index: 10;
|
|
1580
|
+
overflow: hidden;
|
|
1581
|
+
list-style: none;
|
|
1582
|
+
|
|
1583
|
+
margin: 0;
|
|
1584
|
+
padding: 2px;
|
|
1585
|
+
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
1586
|
+
border-radius: 3px;
|
|
1587
|
+
border: 1px solid silver;
|
|
1588
|
+
|
|
1589
|
+
background: white;
|
|
1590
|
+
font-size: 90%;
|
|
1591
|
+
font-family: monospace;
|
|
1592
|
+
|
|
1593
|
+
max-height: 20em;
|
|
1594
|
+
overflow-y: auto;
|
|
1595
|
+
box-sizing: border-box;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1598
|
+
.CodeMirror-hint {
|
|
1599
|
+
margin: 0;
|
|
1600
|
+
padding: 0 4px;
|
|
1601
|
+
border-radius: 2px;
|
|
1602
|
+
white-space: pre;
|
|
1603
|
+
color: black;
|
|
1604
|
+
cursor: pointer;
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
li.CodeMirror-hint-active {
|
|
1608
|
+
background: #08f;
|
|
1609
|
+
color: white;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.option_row_header[data-v-08dcecee] {
|
|
1400
1613
|
background: #eee;
|
|
1401
1614
|
text-align: center;
|
|
1402
1615
|
line-height: 45px;
|
|
1403
1616
|
}
|
|
1404
|
-
.option_row[data-v-
|
|
1617
|
+
.option_row[data-v-08dcecee] {
|
|
1405
1618
|
border-left: 1px solid #eee;
|
|
1406
1619
|
}
|
|
1407
|
-
.option_row .ant-col[data-v-
|
|
1620
|
+
.option_row .ant-col[data-v-08dcecee] {
|
|
1408
1621
|
border-right: 1px solid #eee;
|
|
1409
1622
|
border-bottom: 1px solid #eee;
|
|
1410
1623
|
text-align: left;
|
|
1411
1624
|
height: 180px;
|
|
1412
1625
|
}
|
|
1413
|
-
.option_row .ant-col[data-v-
|
|
1626
|
+
.option_row .ant-col[data-v-08dcecee]:not(.code-col) {
|
|
1414
1627
|
line-height: 180px;
|
|
1415
1628
|
text-align: center;
|
|
1416
1629
|
}
|
|
1417
|
-
.no-data[data-v-
|
|
1630
|
+
.no-data[data-v-08dcecee] {
|
|
1418
1631
|
border: 1px solid #eee;
|
|
1419
1632
|
line-height: 45px;
|
|
1420
1633
|
text-align: center;
|
|
1421
1634
|
cursor: pointer;
|
|
1422
1635
|
color: #ccc;
|
|
1423
1636
|
}
|
|
1424
|
-
.code[data-v-
|
|
1637
|
+
.code[data-v-08dcecee] {
|
|
1425
1638
|
height: 180px;
|
|
1426
1639
|
width: 100%;
|
|
1427
1640
|
}
|
|
1428
|
-
.
|
|
1429
|
-
position: absolute;
|
|
1430
|
-
right: -10px;
|
|
1431
|
-
top: 45px;
|
|
1432
|
-
cursor: pointer;
|
|
1433
|
-
}
|
|
1434
|
-
.delete[data-v-33ffd3e6] {
|
|
1641
|
+
.delete[data-v-08dcecee] {
|
|
1435
1642
|
color: #ff0000;
|
|
1436
1643
|
}
|
|
1437
|
-
[data-v-
|
|
1644
|
+
[data-v-08dcecee] .vue-codemirror {
|
|
1438
1645
|
height: 100%;
|
|
1439
1646
|
}
|
|
1440
|
-
[data-v-
|
|
1647
|
+
[data-v-08dcecee] .CodeMirror {
|
|
1441
1648
|
height: 178px !important;
|
|
1442
1649
|
}
|
|
1650
|
+
[data-v-08dcecee] .CodeMirror-hints {
|
|
1651
|
+
z-index: 999999 !important;
|
|
1652
|
+
max-height: 200px;
|
|
1653
|
+
overflow-y: auto;
|
|
1654
|
+
border-radius: 4px;
|
|
1655
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
|
1656
|
+
background: white !important;
|
|
1657
|
+
border: 1px solid #d9d9d9 !important;
|
|
1658
|
+
position: fixed !important;
|
|
1659
|
+
}
|
|
1660
|
+
[data-v-08dcecee] .CodeMirror-hint {
|
|
1661
|
+
padding: 6px 12px;
|
|
1662
|
+
font-size: 13px;
|
|
1663
|
+
line-height: 1.5;
|
|
1664
|
+
border-radius: 2px;
|
|
1665
|
+
color: #333 !important;
|
|
1666
|
+
background: white !important;
|
|
1667
|
+
cursor: pointer;
|
|
1668
|
+
}
|
|
1669
|
+
[data-v-08dcecee] .CodeMirror-hint:hover {
|
|
1670
|
+
background-color: #f5f5f5 !important;
|
|
1671
|
+
}
|
|
1672
|
+
[data-v-08dcecee] .CodeMirror-hint-active {
|
|
1673
|
+
background-color: #1890ff !important;
|
|
1674
|
+
color: white !important;
|
|
1675
|
+
}
|
|
1676
|
+
[data-v-08dcecee] .custom-hint-item {
|
|
1677
|
+
font-weight: 500;
|
|
1678
|
+
}
|
|
1679
|
+
[data-v-08dcecee]:global(.CodeMirror-hints) {
|
|
1680
|
+
z-index: 999999 !important;
|
|
1681
|
+
position: fixed !important;
|
|
1682
|
+
background: white !important;
|
|
1683
|
+
border: 1px solid #d9d9d9 !important;
|
|
1684
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
|
|
1685
|
+
}
|
|
1686
|
+
[data-v-08dcecee] .CodeMirror-gutter.breakpoints {
|
|
1687
|
+
width: 16px !important;
|
|
1688
|
+
background: #2c3e50;
|
|
1689
|
+
border-right: 1px solid #34495e;
|
|
1690
|
+
}
|
|
1691
|
+
[data-v-08dcecee] .CodeMirror-breakpoint {
|
|
1692
|
+
width: 12px !important;
|
|
1693
|
+
height: 12px !important;
|
|
1694
|
+
border-radius: 50% !important;
|
|
1695
|
+
background-color: #e74c3c !important;
|
|
1696
|
+
border: 2px solid #c0392b !important;
|
|
1697
|
+
margin-left: 2px !important;
|
|
1698
|
+
cursor: pointer !important;
|
|
1699
|
+
position: relative !important;
|
|
1700
|
+
display: inline-block !important;
|
|
1701
|
+
}
|
|
1702
|
+
[data-v-08dcecee] .CodeMirror-breakpoint:hover {
|
|
1703
|
+
background-color: #c0392b !important;
|
|
1704
|
+
transform: scale(1.1) !important;
|
|
1705
|
+
}
|
|
1706
|
+
[data-v-08dcecee] .CodeMirror-breakpoint-line {
|
|
1707
|
+
background-color: rgba(231, 76, 60, 0.1) !important;
|
|
1708
|
+
}
|
|
1709
|
+
[data-v-08dcecee] .CodeMirror-linenumber {
|
|
1710
|
+
cursor: pointer !important;
|
|
1711
|
+
-webkit-user-select: none !important;
|
|
1712
|
+
-moz-user-select: none !important;
|
|
1713
|
+
user-select: none !important;
|
|
1714
|
+
}
|
|
1715
|
+
[data-v-08dcecee] .CodeMirror-linenumber:hover {
|
|
1716
|
+
background-color: rgba(255, 255, 255, 0.1) !important;
|
|
1717
|
+
}
|
|
1718
|
+
.debug-result .debug-status[data-v-08dcecee] {
|
|
1719
|
+
padding: 16px;
|
|
1720
|
+
border-radius: 6px;
|
|
1721
|
+
margin-bottom: 20px;
|
|
1722
|
+
}
|
|
1723
|
+
.debug-result .debug-status.success[data-v-08dcecee] {
|
|
1724
|
+
background-color: #f6ffed;
|
|
1725
|
+
border: 1px solid #b7eb8f;
|
|
1726
|
+
color: #389e0d;
|
|
1727
|
+
}
|
|
1728
|
+
.debug-result .debug-status.error[data-v-08dcecee] {
|
|
1729
|
+
background-color: #fff2f0;
|
|
1730
|
+
border: 1px solid #ffccc7;
|
|
1731
|
+
color: #cf1322;
|
|
1732
|
+
}
|
|
1733
|
+
.debug-result .debug-status h3[data-v-08dcecee] {
|
|
1734
|
+
margin: 0 0 8px 0;
|
|
1735
|
+
font-size: 16px;
|
|
1736
|
+
font-weight: 600;
|
|
1737
|
+
}
|
|
1738
|
+
.debug-result .debug-status p[data-v-08dcecee] {
|
|
1739
|
+
margin: 0;
|
|
1740
|
+
white-space: pre-wrap;
|
|
1741
|
+
font-family: 'Courier New', monospace;
|
|
1742
|
+
font-size: 12px;
|
|
1743
|
+
}
|
|
1744
|
+
.debug-result .debug-section[data-v-08dcecee] {
|
|
1745
|
+
margin-bottom: 20px;
|
|
1746
|
+
}
|
|
1747
|
+
.debug-result .debug-section h4[data-v-08dcecee] {
|
|
1748
|
+
margin: 0 0 8px 0;
|
|
1749
|
+
font-size: 14px;
|
|
1750
|
+
font-weight: 600;
|
|
1751
|
+
color: #1890ff;
|
|
1752
|
+
}
|
|
1753
|
+
.debug-result .debug-code[data-v-08dcecee] {
|
|
1754
|
+
background-color: #f5f5f5;
|
|
1755
|
+
border: 1px solid #d9d9d9;
|
|
1756
|
+
border-radius: 4px;
|
|
1757
|
+
padding: 12px;
|
|
1758
|
+
font-family: 'Courier New', monospace;
|
|
1759
|
+
font-size: 12px;
|
|
1760
|
+
white-space: pre-wrap;
|
|
1761
|
+
overflow-x: auto;
|
|
1762
|
+
max-height: 200px;
|
|
1763
|
+
overflow-y: auto;
|
|
1764
|
+
}
|
|
1765
|
+
.debug-result .debug-outputs[data-v-08dcecee] {
|
|
1766
|
+
background-color: #fafafa;
|
|
1767
|
+
border: 1px solid #e8e8e8;
|
|
1768
|
+
border-radius: 4px;
|
|
1769
|
+
padding: 12px;
|
|
1770
|
+
max-height: 300px;
|
|
1771
|
+
overflow-y: auto;
|
|
1772
|
+
}
|
|
1773
|
+
.debug-result .debug-outputs .debug-output-item[data-v-08dcecee] {
|
|
1774
|
+
font-family: 'Courier New', monospace;
|
|
1775
|
+
font-size: 12px;
|
|
1776
|
+
line-height: 1.5;
|
|
1777
|
+
color: #333;
|
|
1778
|
+
margin-bottom: 4px;
|
|
1779
|
+
}
|
|
1780
|
+
.debug-result .debug-outputs .debug-output-item[data-v-08dcecee]:last-child {
|
|
1781
|
+
margin-bottom: 0;
|
|
1782
|
+
}
|
|
1783
|
+
.debug-result .debug-actions[data-v-08dcecee] {
|
|
1784
|
+
text-align: right;
|
|
1785
|
+
padding-top: 16px;
|
|
1786
|
+
border-top: 1px solid #e8e8e8;
|
|
1787
|
+
}
|
|
1788
|
+
.debug-result .debug-actions .ant-btn[data-v-08dcecee] {
|
|
1789
|
+
margin-left: 8px;
|
|
1790
|
+
}
|
|
1791
|
+
.debug-result .thumbnail-section[data-v-08dcecee] {
|
|
1792
|
+
margin-top: 16px;
|
|
1793
|
+
padding: 12px;
|
|
1794
|
+
background-color: #f9f9f9;
|
|
1795
|
+
border: 1px solid #e8e8e8;
|
|
1796
|
+
border-radius: 4px;
|
|
1797
|
+
display: flex;
|
|
1798
|
+
justify-content: flex-start;
|
|
1799
|
+
}
|
|
1800
|
+
.debug-result .thumbnail-section .thumbnail-container[data-v-08dcecee] {
|
|
1801
|
+
display: flex;
|
|
1802
|
+
flex-direction: column;
|
|
1803
|
+
align-items: flex-start;
|
|
1804
|
+
gap: 8px;
|
|
1805
|
+
}
|
|
1806
|
+
.debug-result .thumbnail-section .thumbnail-image[data-v-08dcecee] {
|
|
1807
|
+
max-width: 150px;
|
|
1808
|
+
max-height: 100px;
|
|
1809
|
+
border: 1px solid #d9d9d9;
|
|
1810
|
+
border-radius: 4px;
|
|
1811
|
+
cursor: pointer;
|
|
1812
|
+
transition: all 0.3s ease;
|
|
1813
|
+
}
|
|
1814
|
+
.debug-result .thumbnail-section .thumbnail-image[data-v-08dcecee]:hover {
|
|
1815
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
1816
|
+
transform: scale(1.05);
|
|
1817
|
+
}
|
|
1818
|
+
.debug-result .thumbnail-section .debug-time[data-v-08dcecee] {
|
|
1819
|
+
font-size: 12px;
|
|
1820
|
+
color: #666;
|
|
1821
|
+
text-align: left;
|
|
1822
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
1823
|
+
padding: 4px 8px;
|
|
1824
|
+
border-radius: 4px;
|
|
1825
|
+
border: 1px solid #e8e8e8;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
|
|
1829
|
+
[data-v-dd940658] .ant-select-selection__rendered {
|
|
1830
|
+
height: 100%;
|
|
1831
|
+
}
|
|
1443
1832
|
|
|
1444
|
-
.datasetManagement[data-v-
|
|
1833
|
+
.datasetManagement[data-v-4112d68d] {
|
|
1445
1834
|
-webkit-user-select: none;
|
|
1446
1835
|
-moz-user-select: none;
|
|
1447
1836
|
user-select: none;
|
|
1448
1837
|
}
|
|
1449
|
-
.content[data-v-
|
|
1838
|
+
.content[data-v-4112d68d] {
|
|
1450
1839
|
margin-top: 20px;
|
|
1451
1840
|
}
|
|
1452
|
-
.classificationItem[data-v-
|
|
1841
|
+
.classificationItem[data-v-4112d68d] {
|
|
1453
1842
|
background-color: #e6f7ff;
|
|
1454
1843
|
}
|
|
1455
|
-
.ellipsis[data-v-
|
|
1844
|
+
.ellipsis[data-v-4112d68d] {
|
|
1456
1845
|
margin: 5px 0;
|
|
1457
1846
|
white-space: nowrap;
|
|
1458
1847
|
overflow: hidden;
|
|
@@ -1460,11 +1849,11 @@ dd[data-v-3fa458e1] {
|
|
|
1460
1849
|
display: block;
|
|
1461
1850
|
/* cursor: pointer; */
|
|
1462
1851
|
}
|
|
1463
|
-
.ellipsis[data-v-
|
|
1852
|
+
.ellipsis[data-v-4112d68d]:hover {
|
|
1464
1853
|
background-color: #e6f7ff;
|
|
1465
1854
|
cursor: pointer;
|
|
1466
1855
|
}
|
|
1467
|
-
[data-v-
|
|
1856
|
+
[data-v-4112d68d] .ant-form-item {
|
|
1468
1857
|
margin-bottom: 5px !important;
|
|
1469
1858
|
}
|
|
1470
1859
|
|
|
@@ -1474,16 +1863,16 @@ dd[data-v-3fa458e1] {
|
|
|
1474
1863
|
margin-right: 4px;
|
|
1475
1864
|
}
|
|
1476
1865
|
|
|
1477
|
-
.custom_form_item .label[data-v-
|
|
1866
|
+
.custom_form_item .label[data-v-3e4df89e] {
|
|
1478
1867
|
text-align: justify;
|
|
1479
1868
|
-moz-text-align-last: justify;
|
|
1480
1869
|
text-align-last: justify;
|
|
1481
1870
|
width: 90%;
|
|
1482
1871
|
}
|
|
1483
|
-
.custom_form_item[data-v-
|
|
1872
|
+
.custom_form_item[data-v-3e4df89e] .ant-input {
|
|
1484
1873
|
background-color: rgba(0, 0, 0, 0);
|
|
1485
1874
|
}
|
|
1486
|
-
.select_component[data-v-
|
|
1875
|
+
.select_component[data-v-3e4df89e] .ant-select-dropdown {
|
|
1487
1876
|
width: var(--dropdown_width) !important;
|
|
1488
1877
|
}
|
|
1489
1878
|
|
|
@@ -1501,11 +1890,15 @@ dd[data-v-3fa458e1] {
|
|
|
1501
1890
|
}
|
|
1502
1891
|
|
|
1503
1892
|
|
|
1504
|
-
[data-v-
|
|
1893
|
+
[data-v-91610be4] .ant-select-selection__rendered::after {
|
|
1505
1894
|
content: "";
|
|
1506
1895
|
display: none;
|
|
1507
1896
|
height: 0;
|
|
1508
1897
|
}
|
|
1898
|
+
.designDataList[data-v-91610be4] {
|
|
1899
|
+
display: flex;
|
|
1900
|
+
margin-bottom: 5px;
|
|
1901
|
+
}
|
|
1509
1902
|
|
|
1510
1903
|
.custom_form_item .label {
|
|
1511
1904
|
text-align: justify;
|
|
@@ -1517,21 +1910,21 @@ dd[data-v-3fa458e1] {
|
|
|
1517
1910
|
.tip_content textarea.ant-input{margin:0;padding:5px 10px;border:none;background:rgba(236,238,243,0.86)}.tip_btn{margin-top:10px;text-align:center}
|
|
1518
1911
|
|
|
1519
1912
|
|
|
1520
|
-
[data-v-
|
|
1913
|
+
[data-v-2488fe1a] .ant-form-item .ant-form-item-label {
|
|
1521
1914
|
border-right: 1px solid #333;
|
|
1522
1915
|
}
|
|
1523
|
-
.table-design[data-v-
|
|
1916
|
+
.table-design[data-v-2488fe1a] {
|
|
1524
1917
|
width: 100%;
|
|
1525
1918
|
position: relative;
|
|
1526
1919
|
}
|
|
1527
|
-
.table-design[data-v-
|
|
1920
|
+
.table-design[data-v-2488fe1a] .ant-form-item .ant-form-item-label {
|
|
1528
1921
|
border-bottom: 1px solid #333;
|
|
1529
1922
|
}
|
|
1530
|
-
.table-design[data-v-
|
|
1923
|
+
.table-design[data-v-2488fe1a] .ant-form-item .ant-form-item-control-wrapper {
|
|
1531
1924
|
border-bottom: 1px solid #333;
|
|
1532
1925
|
border-right: 1px solid #333;
|
|
1533
1926
|
}
|
|
1534
|
-
.table-design .table_label[data-v-
|
|
1927
|
+
.table-design .table_label[data-v-2488fe1a] {
|
|
1535
1928
|
position: relative;
|
|
1536
1929
|
width: 100%;
|
|
1537
1930
|
height: 40px;
|
|
@@ -1540,31 +1933,31 @@ dd[data-v-3fa458e1] {
|
|
|
1540
1933
|
border-right: 1px solid #333;
|
|
1541
1934
|
border-bottom: 1px solid #333;
|
|
1542
1935
|
}
|
|
1543
|
-
.table-design .table_label .last-one[data-v-
|
|
1936
|
+
.table-design .table_label .last-one[data-v-2488fe1a] {
|
|
1544
1937
|
position: absolute;
|
|
1545
1938
|
right: 10px;
|
|
1546
1939
|
bottom: 0;
|
|
1547
1940
|
}
|
|
1548
|
-
.table-design .table-design-content[data-v-
|
|
1941
|
+
.table-design .table-design-content[data-v-2488fe1a] {
|
|
1549
1942
|
position: relative;
|
|
1550
1943
|
}
|
|
1551
|
-
.table-design .table-design-content .table-design-delete[data-v-
|
|
1944
|
+
.table-design .table-design-content .table-design-delete[data-v-2488fe1a] {
|
|
1552
1945
|
position: absolute;
|
|
1553
1946
|
bottom: 3px;
|
|
1554
1947
|
right: 3px;
|
|
1555
1948
|
display: none;
|
|
1556
1949
|
z-index: 101;
|
|
1557
1950
|
}
|
|
1558
|
-
.table-design .table-design-content:hover .table-design-delete[data-v-
|
|
1951
|
+
.table-design .table-design-content:hover .table-design-delete[data-v-2488fe1a] {
|
|
1559
1952
|
display: block;
|
|
1560
1953
|
}
|
|
1561
|
-
.del-button[data-v-
|
|
1954
|
+
.del-button[data-v-2488fe1a] {
|
|
1562
1955
|
bottom: 2px!important;
|
|
1563
1956
|
}
|
|
1564
|
-
.del-button[data-v-
|
|
1957
|
+
.del-button[data-v-2488fe1a] .ant-btn-sm {
|
|
1565
1958
|
transform: scale(0.9);
|
|
1566
1959
|
}
|
|
1567
|
-
.no-label-add-button[data-v-
|
|
1960
|
+
.no-label-add-button[data-v-2488fe1a] {
|
|
1568
1961
|
position: absolute;
|
|
1569
1962
|
z-index: 3;
|
|
1570
1963
|
right: 3px;
|
|
@@ -1572,7 +1965,7 @@ dd[data-v-3fa458e1] {
|
|
|
1572
1965
|
}
|
|
1573
1966
|
|
|
1574
1967
|
|
|
1575
|
-
[data-v-
|
|
1968
|
+
[data-v-0da2fa6f] .ant-select-selection__rendered::after {
|
|
1576
1969
|
content: "";
|
|
1577
1970
|
display: none;
|
|
1578
1971
|
height: 0;
|
|
@@ -1760,12 +2153,17 @@ dd[data-v-3fa458e1] {
|
|
|
1760
2153
|
|
|
1761
2154
|
|
|
1762
2155
|
|
|
1763
|
-
[data-v-
|
|
2156
|
+
[data-v-1277221d] .ant-radio-wrapper {
|
|
1764
2157
|
white-space: initial !important;
|
|
1765
2158
|
}
|
|
1766
2159
|
|
|
2160
|
+
.designDataList[data-v-60e0be08] {
|
|
2161
|
+
display: flex;
|
|
2162
|
+
margin-bottom: 5px;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
1767
2165
|
|
|
1768
|
-
[data-v-
|
|
2166
|
+
[data-v-69921986] .ant-radio-wrapper {
|
|
1769
2167
|
white-space: initial !important;
|
|
1770
2168
|
}
|
|
1771
2169
|
|
|
@@ -1773,6 +2171,14 @@ dd[data-v-3fa458e1] {
|
|
|
1773
2171
|
.ant-checkbox-wrapper + .ant-checkbox-wrapper {
|
|
1774
2172
|
margin-left: 0px;
|
|
1775
2173
|
}
|
|
2174
|
+
.inlineCheckbox.ant-checkbox-wrapper {
|
|
2175
|
+
margin: 10px 10px 0 0;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
.designDataList[data-v-89e7ba6e] {
|
|
2179
|
+
display: flex;
|
|
2180
|
+
margin-bottom: 5px;
|
|
2181
|
+
}
|
|
1776
2182
|
|
|
1777
2183
|
|
|
1778
2184
|
[data-v-3d635cf2] .ant-rate {
|
|
@@ -2066,7 +2472,7 @@ dd[data-v-3fa458e1] {
|
|
|
2066
2472
|
}
|
|
2067
2473
|
|
|
2068
2474
|
|
|
2069
|
-
[data-v-
|
|
2475
|
+
[data-v-5f8ad7f9] .ant-btn-icon-only > i {
|
|
2070
2476
|
vertical-align: 1px;
|
|
2071
2477
|
}
|
|
2072
2478
|
|
|
@@ -2382,21 +2788,21 @@ dd[data-v-3fa458e1] {
|
|
|
2382
2788
|
}
|
|
2383
2789
|
|
|
2384
2790
|
|
|
2385
|
-
[data-v-
|
|
2791
|
+
[data-v-e9d64ecc] .ant-form-item .ant-form-item-control-wrapper:first-child {
|
|
2386
2792
|
width: calc(100% - 0px) !important;
|
|
2387
2793
|
}
|
|
2388
|
-
[data-v-
|
|
2794
|
+
[data-v-e9d64ecc] .ant-form-item .ant-form-item-label {
|
|
2389
2795
|
border-bottom: 1px solid #e6e6e6;
|
|
2390
2796
|
}
|
|
2391
|
-
.custom_form_item_special[data-v-
|
|
2797
|
+
.custom_form_item_special[data-v-e9d64ecc] .ant-form-item .ant-form-item-control-wrapper:first-child > .ant-form-item-control {
|
|
2392
2798
|
width: 100%;
|
|
2393
2799
|
}
|
|
2394
|
-
.computedBorder > div[data-v-
|
|
2800
|
+
.computedBorder > div[data-v-e9d64ecc] {
|
|
2395
2801
|
height: 100%;
|
|
2396
2802
|
}
|
|
2397
2803
|
|
|
2398
2804
|
|
|
2399
|
-
[data-v-
|
|
2805
|
+
[data-v-839fa73e] .ant-btn-icon-only > i {
|
|
2400
2806
|
vertical-align: 1px;
|
|
2401
2807
|
}
|
|
2402
2808
|
|
|
@@ -2622,22 +3028,22 @@ dd[data-v-3fa458e1] {
|
|
|
2622
3028
|
}
|
|
2623
3029
|
|
|
2624
3030
|
|
|
2625
|
-
[data-v-
|
|
3031
|
+
[data-v-2b721eca] .ant-popover-inner-content {
|
|
2626
3032
|
width: 190px;
|
|
2627
3033
|
}
|
|
2628
|
-
[data-v-
|
|
3034
|
+
[data-v-2b721eca] .ant-form-item .ant-form-item-control-wrapper:first-child {
|
|
2629
3035
|
width: calc(100% - 0px) !important;
|
|
2630
3036
|
}
|
|
2631
|
-
[data-v-
|
|
3037
|
+
[data-v-2b721eca] .ant-form-item-control {
|
|
2632
3038
|
height: 100%;
|
|
2633
3039
|
}
|
|
2634
3040
|
/***label对齐方式*/
|
|
2635
|
-
.custom_form_item .break[data-v-
|
|
3041
|
+
.custom_form_item .break[data-v-2b721eca] {
|
|
2636
3042
|
white-space: normal;
|
|
2637
3043
|
word-break: break-all;
|
|
2638
3044
|
word-wrap: break-word;
|
|
2639
3045
|
}
|
|
2640
|
-
.custom_form_item .align-between[data-v-
|
|
3046
|
+
.custom_form_item .align-between[data-v-2b721eca] {
|
|
2641
3047
|
white-space: normal;
|
|
2642
3048
|
word-break: break-all;
|
|
2643
3049
|
word-wrap: break-word;
|
|
@@ -2646,28 +3052,28 @@ dd[data-v-3fa458e1] {
|
|
|
2646
3052
|
text-align-last: justify;
|
|
2647
3053
|
width: 80%;
|
|
2648
3054
|
}
|
|
2649
|
-
.custom_form_item .align-middle[data-v-
|
|
3055
|
+
.custom_form_item .align-middle[data-v-2b721eca] {
|
|
2650
3056
|
white-space: normal;
|
|
2651
3057
|
word-break: break-all;
|
|
2652
3058
|
word-wrap: break-word;
|
|
2653
3059
|
text-align: center;
|
|
2654
3060
|
width: 80%;
|
|
2655
3061
|
}
|
|
2656
|
-
.custom_form_item .align-left[data-v-
|
|
3062
|
+
.custom_form_item .align-left[data-v-2b721eca] {
|
|
2657
3063
|
white-space: normal;
|
|
2658
3064
|
word-break: break-all;
|
|
2659
3065
|
word-wrap: break-word;
|
|
2660
3066
|
text-align: left;
|
|
2661
3067
|
width: 80%;
|
|
2662
3068
|
}
|
|
2663
|
-
.custom_form_item .align-right[data-v-
|
|
3069
|
+
.custom_form_item .align-right[data-v-2b721eca] {
|
|
2664
3070
|
white-space: normal;
|
|
2665
3071
|
word-break: break-all;
|
|
2666
3072
|
word-wrap: break-word;
|
|
2667
3073
|
text-align: right;
|
|
2668
3074
|
width: 80%;
|
|
2669
3075
|
}
|
|
2670
|
-
.custom_form_item .align-center[data-v-
|
|
3076
|
+
.custom_form_item .align-center[data-v-2b721eca] {
|
|
2671
3077
|
white-space: normal;
|
|
2672
3078
|
word-break: break-all;
|
|
2673
3079
|
word-wrap: break-word;
|
|
@@ -2676,51 +3082,51 @@ dd[data-v-3fa458e1] {
|
|
|
2676
3082
|
}
|
|
2677
3083
|
/***label对齐方式 */
|
|
2678
3084
|
/*****公共boder ****/
|
|
2679
|
-
[data-v-
|
|
3085
|
+
[data-v-2b721eca] .ant-form-item-control-wrapper {
|
|
2680
3086
|
border-bottom: 1px solid #000;
|
|
2681
3087
|
}
|
|
2682
|
-
[data-v-
|
|
3088
|
+
[data-v-2b721eca] .ant-form-item-label {
|
|
2683
3089
|
border-bottom: 1px solid #000;
|
|
2684
3090
|
}
|
|
2685
|
-
.verify-right[data-v-
|
|
3091
|
+
.verify-right[data-v-2b721eca] {
|
|
2686
3092
|
border-right: 1px solid #000;
|
|
2687
3093
|
}
|
|
2688
|
-
.custom_form_item_special[data-v-
|
|
3094
|
+
.custom_form_item_special[data-v-2b721eca] .ant-form-item-children {
|
|
2689
3095
|
height: 100%;
|
|
2690
3096
|
}
|
|
2691
3097
|
/*****公共boder ****/
|
|
2692
|
-
.custom_form_item_special[data-v-
|
|
3098
|
+
.custom_form_item_special[data-v-2b721eca] .ant-form-item .ant-form-item-control-wrapper:first-child .ant-form-item-control {
|
|
2693
3099
|
width: 100%;
|
|
2694
3100
|
}
|
|
2695
|
-
.verify-no-border input[data-v-
|
|
2696
|
-
.verify-no-border textarea[data-v-
|
|
3101
|
+
.verify-no-border input[data-v-2b721eca],
|
|
3102
|
+
.verify-no-border textarea[data-v-2b721eca] {
|
|
2697
3103
|
display: block;
|
|
2698
3104
|
background: none;
|
|
2699
3105
|
height: 90%;
|
|
2700
3106
|
width: 98%;
|
|
2701
3107
|
margin: 0 auto;
|
|
2702
3108
|
}
|
|
2703
|
-
.verify-no-border input[data-v-
|
|
2704
|
-
.verify-no-border textarea[data-v-
|
|
3109
|
+
.verify-no-border input[data-v-2b721eca]:disabled,
|
|
3110
|
+
.verify-no-border textarea[data-v-2b721eca]:disabled {
|
|
2705
3111
|
background: none !important;
|
|
2706
3112
|
color: #333;
|
|
2707
3113
|
}
|
|
2708
|
-
.verify[data-v-
|
|
3114
|
+
.verify[data-v-2b721eca] {
|
|
2709
3115
|
position: relative;
|
|
2710
3116
|
}
|
|
2711
|
-
.verify .inner-form-item[data-v-
|
|
3117
|
+
.verify .inner-form-item[data-v-2b721eca] .ant-form-item-control-wrapper {
|
|
2712
3118
|
border-bottom: none !important;
|
|
2713
3119
|
}
|
|
2714
|
-
.verify .inner-form-item[data-v-
|
|
3120
|
+
.verify .inner-form-item[data-v-2b721eca] .ant-form-item-children {
|
|
2715
3121
|
display: flex;
|
|
2716
3122
|
align-items: center;
|
|
2717
3123
|
justify-content: center;
|
|
2718
3124
|
width: 100%;
|
|
2719
3125
|
}
|
|
2720
|
-
.verify .inner-form-item[data-v-
|
|
3126
|
+
.verify .inner-form-item[data-v-2b721eca] .ant-form-item-children .textarea-wrapper {
|
|
2721
3127
|
width: 100%;
|
|
2722
3128
|
}
|
|
2723
|
-
.verify .verify-left[data-v-
|
|
3129
|
+
.verify .verify-left[data-v-2b721eca] {
|
|
2724
3130
|
position: absolute;
|
|
2725
3131
|
left: 0;
|
|
2726
3132
|
top: 0;
|
|
@@ -2731,56 +3137,56 @@ dd[data-v-3fa458e1] {
|
|
|
2731
3137
|
-moz-text-align-last: justify;
|
|
2732
3138
|
text-align-last: justify;
|
|
2733
3139
|
}
|
|
2734
|
-
.verify .verify-right[data-v-
|
|
3140
|
+
.verify .verify-right[data-v-2b721eca] {
|
|
2735
3141
|
height: 100%;
|
|
2736
3142
|
width: 100%;
|
|
2737
3143
|
}
|
|
2738
|
-
.verify .verify-right .verify-text[data-v-
|
|
3144
|
+
.verify .verify-right .verify-text[data-v-2b721eca] {
|
|
2739
3145
|
position: relative;
|
|
2740
3146
|
height: 70%;
|
|
2741
3147
|
padding-top: 5px;
|
|
2742
3148
|
border-bottom: 1px solid #e6e6e6;
|
|
2743
3149
|
}
|
|
2744
|
-
.verify .verify-right .verify-text .verify-btn[data-v-
|
|
3150
|
+
.verify .verify-right .verify-text .verify-btn[data-v-2b721eca] {
|
|
2745
3151
|
position: absolute;
|
|
2746
3152
|
right: 3%;
|
|
2747
3153
|
bottom: 2%;
|
|
2748
3154
|
z-index: 10;
|
|
2749
3155
|
}
|
|
2750
|
-
.verify .verify-right .verify-text span[data-v-
|
|
3156
|
+
.verify .verify-right .verify-text span[data-v-2b721eca] {
|
|
2751
3157
|
display: block;
|
|
2752
3158
|
border: none;
|
|
2753
3159
|
height: 100%;
|
|
2754
3160
|
}
|
|
2755
|
-
.verify .verify-right .verify-seal[data-v-
|
|
3161
|
+
.verify .verify-right .verify-seal[data-v-2b721eca] {
|
|
2756
3162
|
position: absolute;
|
|
2757
3163
|
width: 35mm;
|
|
2758
3164
|
height: 35mm;
|
|
2759
3165
|
z-index: 9 !important;
|
|
2760
3166
|
}
|
|
2761
|
-
.verify .verify-right .verify-seal img[data-v-
|
|
3167
|
+
.verify .verify-right .verify-seal img[data-v-2b721eca] {
|
|
2762
3168
|
width: 35mm;
|
|
2763
3169
|
height: 35mm;
|
|
2764
3170
|
}
|
|
2765
|
-
.verify .verify-right .verify-icon[data-v-
|
|
3171
|
+
.verify .verify-right .verify-icon[data-v-2b721eca] {
|
|
2766
3172
|
position: absolute;
|
|
2767
3173
|
right: 3%;
|
|
2768
3174
|
top: 3%;
|
|
2769
3175
|
z-index: 20;
|
|
2770
3176
|
cursor: pointer;
|
|
2771
3177
|
}
|
|
2772
|
-
.verify .verify-option[data-v-
|
|
3178
|
+
.verify .verify-option[data-v-2b721eca] {
|
|
2773
3179
|
display: flex;
|
|
2774
3180
|
height: 30%;
|
|
2775
3181
|
}
|
|
2776
|
-
.verify .verify-option > div[data-v-
|
|
3182
|
+
.verify .verify-option > div[data-v-2b721eca] {
|
|
2777
3183
|
flex: 1;
|
|
2778
3184
|
border-right: 1px solid #e6e6e6;
|
|
2779
3185
|
display: flex;
|
|
2780
3186
|
justify-content: space-between;
|
|
2781
3187
|
align-items: center;
|
|
2782
3188
|
}
|
|
2783
|
-
.verify .verify-option > div span[data-v-
|
|
3189
|
+
.verify .verify-option > div span[data-v-2b721eca] {
|
|
2784
3190
|
text-align: center;
|
|
2785
3191
|
flex: 2;
|
|
2786
3192
|
border-right: 1px solid #e6e6e6;
|
|
@@ -2789,16 +3195,16 @@ dd[data-v-3fa458e1] {
|
|
|
2789
3195
|
align-items: center;
|
|
2790
3196
|
justify-content: center;
|
|
2791
3197
|
}
|
|
2792
|
-
.verify .verify-option > div span + span[data-v-
|
|
2793
|
-
.verify .verify-option > div span + .inner-form-item[data-v-
|
|
3198
|
+
.verify .verify-option > div span + span[data-v-2b721eca],
|
|
3199
|
+
.verify .verify-option > div span + .inner-form-item[data-v-2b721eca] {
|
|
2794
3200
|
border-right: none;
|
|
2795
3201
|
flex: 4;
|
|
2796
3202
|
}
|
|
2797
|
-
.verify .verify-option > div:nth-child(2) > span[data-v-
|
|
3203
|
+
.verify .verify-option > div:nth-child(2) > span[data-v-2b721eca]:last-child {
|
|
2798
3204
|
box-sizing: border-box;
|
|
2799
3205
|
padding: 1px;
|
|
2800
3206
|
}
|
|
2801
|
-
.verify .verify-option div[data-v-
|
|
3207
|
+
.verify .verify-option div[data-v-2b721eca]:last-child {
|
|
2802
3208
|
border-right: none;
|
|
2803
3209
|
}
|
|
2804
3210
|
|
|
@@ -2887,6 +3293,12 @@ dd[data-v-3fa458e1] {
|
|
|
2887
3293
|
|
|
2888
3294
|
[data-v-abe87900] .ant-col{min-height:50px}.idea-sign-class[data-v-abe87900]{border-right:1px dashed #ccc;border-bottom:1px dashed #ccc;position:relative}.idea-sign-class .text-content[data-v-abe87900]{position:relative;height:100%;padding-top:20px}.idea-sign-class .text-content .sign[data-v-abe87900]{position:absolute;bottom:0;left:0;width:100%}.idea-sign-class .text-area[data-v-abe87900]{overflow:hidden}.idea-sign-class .text-area[data-v-abe87900] .el-form-item__content{margin-left:0 !important}.idea-sign-class .text-area[data-v-abe87900] .el-textarea__inner{border:none;resize:none;height:100% !important}.idea-sign-class>div[data-v-abe87900]:nth-child(1){border-right:1px dashed #ccc;position:absolute;top:0;left:0;height:100%;display:flex;justify-content:center;align-items:center}.idea-sign-class>div[data-v-abe87900]{float:left;height:100%;box-sizing:border-box}.idea-sign-class>div+div[data-v-abe87900]{width:100%}.idea-sign-class .sign[data-v-abe87900]{padding:0px 20px}.idea-sign-class .sign img[data-v-abe87900]{width:140px;max-height:140px}[data-v-abe87900] .ant-form-item .ant-form-item-control-wrapper{width:100%}[data-v-abe87900] .ant-form-item div.ant-form-item-label{position:relative}[data-v-abe87900] .ant-form-item .ant-form-item-control{height:100%}
|
|
2889
3295
|
|
|
3296
|
+
|
|
3297
|
+
[data-v-a83ee7c8] img {
|
|
3298
|
+
max-width: none !important;
|
|
3299
|
+
max-height: none !important;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
2890
3302
|
.custom_form_item .label {
|
|
2891
3303
|
text-align: justify;
|
|
2892
3304
|
-moz-text-align-last: justify;
|
|
@@ -3292,11 +3704,16 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3292
3704
|
}
|
|
3293
3705
|
|
|
3294
3706
|
|
|
3707
|
+
[data-v-36fc9dfa] .ant-table-body {
|
|
3708
|
+
overflow-x: auto !important;
|
|
3709
|
+
}
|
|
3710
|
+
|
|
3295
3711
|
|
|
3296
|
-
|
|
3712
|
+
|
|
3713
|
+
.table-page-search-wrapper[data-v-73e84290] {
|
|
3297
3714
|
margin-bottom: 20px;
|
|
3298
3715
|
}
|
|
3299
|
-
[data-v-
|
|
3716
|
+
[data-v-73e84290] .ant-col.ant-form-item-control-wrapper {
|
|
3300
3717
|
width: 100%;
|
|
3301
3718
|
}
|
|
3302
3719
|
|
|
@@ -3330,7 +3747,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3330
3747
|
}
|
|
3331
3748
|
|
|
3332
3749
|
|
|
3333
|
-
[data-v-
|
|
3750
|
+
[data-v-52cdacc0] .ant-select-selection__rendered::after {
|
|
3334
3751
|
content: "";
|
|
3335
3752
|
display: none;
|
|
3336
3753
|
height: 0;
|
|
@@ -3392,44 +3809,78 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3392
3809
|
}
|
|
3393
3810
|
|
|
3394
3811
|
|
|
3395
|
-
[data-v-
|
|
3812
|
+
[data-v-d1390cda] .ant-upload-picture-card-wrapper {
|
|
3396
3813
|
display: flex;
|
|
3397
3814
|
align-items: center;
|
|
3398
3815
|
}
|
|
3399
|
-
[data-v-
|
|
3816
|
+
[data-v-d1390cda] .ant-upload-list {
|
|
3400
3817
|
display: flex;
|
|
3401
3818
|
}
|
|
3402
|
-
[data-v-
|
|
3819
|
+
[data-v-d1390cda] .ant-upload.ant-upload-select-picture-card {
|
|
3403
3820
|
width: var(--img-upload-list-item-width);
|
|
3404
3821
|
height: var(--img-upload-list-item-height);
|
|
3405
3822
|
}
|
|
3406
|
-
[data-v-
|
|
3823
|
+
[data-v-d1390cda] .ant-upload-list-item,[data-v-d1390cda] .ant-upload-list-picture-card-container {
|
|
3407
3824
|
width: var(--img-upload-list-item-width);
|
|
3408
3825
|
height: var(--img-upload-list-item-height);
|
|
3409
3826
|
}
|
|
3410
|
-
[data-v-
|
|
3827
|
+
[data-v-d1390cda] .ant-upload-list-picture-card .ant-upload-list-item,[data-v-d1390cda] .ant-upload-list-picture-card-container {
|
|
3411
3828
|
margin: 0 ;
|
|
3412
3829
|
margin-right: 8px;
|
|
3413
3830
|
}
|
|
3831
|
+
[data-v-d1390cda] .ant-modal {
|
|
3832
|
+
width: -moz-max-content !important;
|
|
3833
|
+
width: max-content !important;
|
|
3834
|
+
}
|
|
3835
|
+
[data-v-d1390cda] .ant-modal .ant-modal-body {
|
|
3836
|
+
padding-top: 35px !important;
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
|
|
3840
|
+
[data-v-063980ac] .ant-modal {
|
|
3841
|
+
width: -moz-max-content !important;
|
|
3842
|
+
width: max-content !important;
|
|
3843
|
+
}
|
|
3844
|
+
[data-v-063980ac] .ant-modal .ant-modal-body {
|
|
3845
|
+
padding-top: 35px !important;
|
|
3846
|
+
}
|
|
3414
3847
|
|
|
3415
3848
|
|
|
3416
|
-
[data-v-
|
|
3849
|
+
[data-v-112d2a3e] .ant-upload-picture-card-wrapper {
|
|
3417
3850
|
display: flex;
|
|
3418
3851
|
align-items: center;
|
|
3419
3852
|
}
|
|
3420
|
-
[data-v-
|
|
3421
|
-
|
|
3422
|
-
|
|
3853
|
+
[data-v-112d2a3e] .ant-upload-list {
|
|
3854
|
+
display: flex;
|
|
3855
|
+
}
|
|
3856
|
+
[data-v-112d2a3e] .ant-upload.ant-upload-select-picture-card {
|
|
3857
|
+
width: var(--img-upload-list-item-width);
|
|
3858
|
+
height: var(--img-upload-list-item-height);
|
|
3859
|
+
}
|
|
3860
|
+
[data-v-112d2a3e] .ant-upload-list-item,[data-v-112d2a3e] .ant-upload-list-picture-card-container {
|
|
3861
|
+
width: var(--img-upload-list-item-width);
|
|
3862
|
+
height: var(--img-upload-list-item-height);
|
|
3863
|
+
}
|
|
3864
|
+
[data-v-112d2a3e] .ant-upload-list-picture-card .ant-upload-list-item,[data-v-112d2a3e] .ant-upload-list-picture-card-container {
|
|
3865
|
+
margin: 0;
|
|
3866
|
+
margin-right: 8px;
|
|
3867
|
+
}
|
|
3868
|
+
[data-v-112d2a3e] .ant-modal {
|
|
3869
|
+
width: -moz-max-content !important;
|
|
3870
|
+
width: max-content !important;
|
|
3871
|
+
}
|
|
3872
|
+
[data-v-112d2a3e] .ant-modal .ant-modal-body {
|
|
3873
|
+
padding-top: 35px !important;
|
|
3423
3874
|
}
|
|
3424
3875
|
|
|
3425
3876
|
.uppy-Root{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;box-sizing:border-box;color:#333;font-family:-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Segoe UI Symbol,Segoe UI Emoji,Apple Color Emoji,Roboto,Helvetica,Arial,sans-serif;line-height:1;position:relative;text-align:left}.uppy-Root[dir=rtl],[dir=rtl] .uppy-Root{text-align:right}.uppy-Root *,.uppy-Root :after,.uppy-Root :before{box-sizing:inherit}.uppy-Root [hidden]{display:none}.uppy-u-reset{all:initial;-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-family:-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Segoe UI Symbol,Segoe UI Emoji,Apple Color Emoji,Roboto,Helvetica,Arial,sans-serif;line-height:1}[dir=rtl] .uppy-u-reset{text-align:right}.uppy-c-textInput{background-color:#fff;border:1px solid #ddd;border-radius:4px;font-family:inherit;font-size:14px;line-height:1.5;padding:6px 8px}.uppy-size--md .uppy-c-textInput{padding:8px 10px}.uppy-c-textInput:focus{border-color:#1269cf99;box-shadow:0 0 0 3px #1269cf26;outline:none}[data-uppy-theme=dark] .uppy-c-textInput{background-color:#333;border-color:#333;color:#eaeaea}[data-uppy-theme=dark] .uppy-c-textInput:focus{border-color:#525252;box-shadow:none}.uppy-c-icon{fill:currentColor;display:inline-block;max-height:100%;max-width:100%;overflow:hidden}.uppy-c-btn{align-items:center;color:inherit;display:inline-flex;font-family:inherit;font-size:inherit;font-weight:500;justify-content:center;line-height:1;transition-duration:.3s;transition-property:background-color,color;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}.uppy-c-btn,[dir=rtl] .uppy-c-btn{text-align:center}.uppy-c-btn:not(:disabled):not(.disabled){cursor:pointer}.uppy-c-btn::-moz-focus-inner{border:0}.uppy-c-btn-primary{background-color:#1269cf;border-radius:4px;color:#fff;font-size:14px;padding:10px 18px}.uppy-c-btn-primary:hover{background-color:#0e51a0}.uppy-c-btn-primary:focus{box-shadow:0 0 0 3px #1269cf66;outline:none}.uppy-size--md .uppy-c-btn-primary{padding:13px 22px}[data-uppy-theme=dark] .uppy-c-btn-primary{color:#eaeaea}[data-uppy-theme=dark] .uppy-c-btn-primary:focus{outline:none}[data-uppy-theme=dark] .uppy-c-btn-primary::-moz-focus-inner{border:0}[data-uppy-theme=dark] .uppy-c-btn-primary:focus{box-shadow:0 0 0 2px #aae1ffd9}.uppy-c-btn-link{background-color:initial;border-radius:4px;color:#525252;font-size:14px;line-height:1;padding:10px 15px}.uppy-c-btn-link:hover{color:#333}.uppy-c-btn-link:focus{box-shadow:0 0 0 3px #1269cf40;outline:none}.uppy-size--md .uppy-c-btn-link{padding:13px 18px}[data-uppy-theme=dark] .uppy-c-btn-link{color:#eaeaea}[data-uppy-theme=dark] .uppy-c-btn-link:focus{outline:none}[data-uppy-theme=dark] .uppy-c-btn-link::-moz-focus-inner{border:0}[data-uppy-theme=dark] .uppy-c-btn-link:focus{box-shadow:0 0 0 2px #aae1ffd9}[data-uppy-theme=dark] .uppy-c-btn-link:hover{color:#939393}
|
|
3426
3877
|
@charset "UTF-8";.uppy-Informer{bottom:60px;left:0;position:absolute;right:0;text-align:center;z-index:1005}.uppy-Informer span>div{margin-bottom:6px}.uppy-Informer-animated{opacity:0;transform:translateY(350%);transition:all .3s ease-in;z-index:-1000}.uppy-Informer p{background-color:#757575;border-radius:18px;color:#fff;display:inline-block;font-size:12px;font-weight:400;line-height:1.4;margin:0;max-width:90%;padding:6px 15px}.uppy-size--md .uppy-Informer p{font-size:14px;line-height:1.3;max-width:500px;padding:10px 20px}[data-uppy-theme=dark] .uppy-Informer p{background-color:#333}[dir=ltr] .uppy-Informer p span{left:3px}[dir=rtl] .uppy-Informer p span{right:3px}[dir=ltr] .uppy-Informer p span{margin-left:-1px}[dir=rtl] .uppy-Informer p span{margin-right:-1px}.uppy-Informer p span{background-color:#fff;border-radius:50%;color:#525252;display:inline-block;font-size:10px;height:13px;line-height:12px;position:relative;top:-1px;vertical-align:middle;width:13px}.uppy-Informer p span:hover{cursor:help}.uppy-Informer p span:after{word-wrap:break-word;line-height:1.3}.uppy-Root [aria-label][role~=tooltip]{position:relative}.uppy-Root [aria-label][role~=tooltip]:after,.uppy-Root [aria-label][role~=tooltip]:before{backface-visibility:hidden;box-sizing:border-box;opacity:0;pointer-events:none;position:absolute;transform:translateZ(0);transform-origin:top;transition:all var(--microtip-transition-duration,.18s) var(--microtip-transition-easing,ease-in-out) var(--microtip-transition-delay,0s);will-change:transform;z-index:10}.uppy-Root [aria-label][role~=tooltip]:before{background-size:100% auto!important;content:""}.uppy-Root [aria-label][role~=tooltip]:after{background:#111111e6;border-radius:4px;box-sizing:initial;color:#fff;content:attr(aria-label);font-size:var(--microtip-font-size,13px);font-weight:var(--microtip-font-weight,normal);padding:.5em 1em;text-transform:var(--microtip-text-transform,none);white-space:nowrap}.uppy-Root [aria-label][role~=tooltip]:focus:after,.uppy-Root [aria-label][role~=tooltip]:focus:before,.uppy-Root [aria-label][role~=tooltip]:hover:after,.uppy-Root [aria-label][role~=tooltip]:hover:before{opacity:1;pointer-events:auto}.uppy-Root [role~=tooltip][data-microtip-position|=top]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2736%27 height=%2712%27%3E%3Cpath fill=%27rgba%2817, 17, 17, 0.9%29%27 d=%27M2.658 0h32.004c-6 0-11.627 12.002-16.002 12.002C14.285 12.002 8.594 0 2.658 0Z%27/%3E%3C/svg%3E") no-repeat;bottom:100%;height:6px;left:50%;margin-bottom:5px;transform:translate3d(-50%,0,0);width:18px}.uppy-Root [role~=tooltip][data-microtip-position|=top]:after{bottom:100%;left:50%;margin-bottom:11px;transform:translate3d(-50%,0,0)}.uppy-Root [role~=tooltip][data-microtip-position=top]:hover:after,.uppy-Root [role~=tooltip][data-microtip-position|=top]:hover:before{transform:translate3d(-50%,-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position=top-left]:after{bottom:100%;transform:translate3d(calc(-100% + 16px),0,0)}.uppy-Root [role~=tooltip][data-microtip-position=top-left]:hover:after{transform:translate3d(calc(-100% + 16px),-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position=top-right]:after{bottom:100%;transform:translate3d(-16px,0,0)}.uppy-Root [role~=tooltip][data-microtip-position=top-right]:hover:after{transform:translate3d(-16px,-5px,0)}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2736%27 height=%2712%27%3E%3Cpath fill=%27rgba%2817, 17, 17, 0.9%29%27 d=%27M33.342 12H1.338c6 0 11.627-12.002 16.002-12.002C21.715-.002 27.406 12 33.342 12Z%27/%3E%3C/svg%3E") no-repeat;bottom:auto;height:6px;left:50%;margin-bottom:0;margin-top:5px;top:100%;transform:translate3d(-50%,-10px,0);width:18px}.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:after{left:50%;margin-top:11px;top:100%;transform:translate3d(-50%,-10px,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom]:hover:after,.uppy-Root [role~=tooltip][data-microtip-position|=bottom]:hover:before{transform:translate3d(-50%,0,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:after{top:100%;transform:translate3d(calc(-100% + 16px),-10px,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom-left]:hover:after{transform:translate3d(calc(-100% + 16px),0,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:after{top:100%;transform:translate3d(-16px,-10px,0)}.uppy-Root [role~=tooltip][data-microtip-position=bottom-right]:hover:after{transform:translate3d(-16px,0,0)}.uppy-Root [role~=tooltip][data-microtip-position=left]:after,.uppy-Root [role~=tooltip][data-microtip-position=left]:before{bottom:auto;left:auto;right:100%;top:50%;transform:translate3d(10px,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-position=left]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2736%27%3E%3Cpath fill=%27rgba%2817, 17, 17, 0.9%29%27 d=%27M0 33.342V1.338c0 6 12.002 11.627 12.002 16.002C12.002 21.715 0 27.406 0 33.342Z%27/%3E%3C/svg%3E") no-repeat;height:18px;margin-bottom:0;margin-right:5px;width:6px}.uppy-Root [role~=tooltip][data-microtip-position=left]:after{margin-right:11px}.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:after,.uppy-Root [role~=tooltip][data-microtip-position=left]:hover:before{transform:translate3d(0,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-position=right]:after,.uppy-Root [role~=tooltip][data-microtip-position=right]:before{bottom:auto;left:100%;top:50%;transform:translate3d(-10px,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-position=right]:before{background:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2736%27%3E%3Cpath fill=%27rgba%2817, 17, 17, 0.9%29%27 d=%27M12 2.658v32.004c0-6-12.002-11.627-12.002-16.002C-.002 14.285 12 8.594 12 2.658Z%27/%3E%3C/svg%3E") no-repeat;height:18px;margin-bottom:0;margin-left:5px;width:6px}.uppy-Root [role~=tooltip][data-microtip-position=right]:after{margin-left:11px}.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:after,.uppy-Root [role~=tooltip][data-microtip-position=right]:hover:before{transform:translate3d(0,-50%,0)}.uppy-Root [role~=tooltip][data-microtip-size=small]:after{white-space:normal;width:80px}.uppy-Root [role~=tooltip][data-microtip-size=medium]:after{white-space:normal;width:150px}.uppy-Root [role~=tooltip][data-microtip-size=large]:after{white-space:normal;width:260px}.uppy-StatusBar{background-color:#fff;color:#fff;display:flex;font-size:12px;font-weight:400;height:46px;line-height:40px;position:relative;transition:height .2s;z-index:1001}[data-uppy-theme=dark] .uppy-StatusBar{background-color:#1f1f1f}.uppy-StatusBar:before{background-color:#eaeaea;bottom:0;content:"";height:2px;left:0;position:absolute;right:0;top:0;width:100%}[data-uppy-theme=dark] .uppy-StatusBar:before{background-color:#757575}.uppy-StatusBar[aria-hidden=true]{height:0;overflow-y:hidden}.uppy-StatusBar.is-complete .uppy-StatusBar-progress{background-color:#1bb240}.uppy-StatusBar.is-error .uppy-StatusBar-progress{background-color:#e32437}.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator{color:#1bb240}.uppy-StatusBar.is-error .uppy-StatusBar-statusIndicator{color:#e32437}.uppy-StatusBar:not([aria-hidden=true]).is-waiting{background-color:#fff;border-top:1px solid #eaeaea;height:65px}[data-uppy-theme=dark] .uppy-StatusBar:not([aria-hidden=true]).is-waiting{background-color:#1f1f1f;border-top:1px solid #333}.uppy-StatusBar-progress{background-color:#1269cf;height:2px;position:absolute;transition:background-color,width .3s ease-out;z-index:1001}.uppy-StatusBar-progress.is-indeterminate{animation:uppy-StatusBar-ProgressStripes 1s linear infinite;background-image:linear-gradient(45deg,#0000004d 25%,#0000 0,#0000 50%,#0000004d 0,#0000004d 75%,#0000 0,#0000);background-size:64px 64px}@keyframes uppy-StatusBar-ProgressStripes{0%{background-position:0 0}to{background-position:64px 0}}.uppy-StatusBar.is-postprocessing .uppy-StatusBar-progress,.uppy-StatusBar.is-preprocessing .uppy-StatusBar-progress{background-color:#f6a623}.uppy-StatusBar.is-waiting .uppy-StatusBar-progress{display:none}[dir=ltr] .uppy-StatusBar-content{padding-left:10px}[dir=rtl] .uppy-StatusBar-content{padding-right:10px}.uppy-StatusBar-content{align-items:center;color:#333;display:flex;height:100%;position:relative;text-overflow:ellipsis;white-space:nowrap;z-index:1002}[dir=ltr] .uppy-size--md .uppy-StatusBar-content{padding-left:15px}[dir=rtl] .uppy-size--md .uppy-StatusBar-content{padding-right:15px}[data-uppy-theme=dark] .uppy-StatusBar-content{color:#eaeaea}[dir=ltr] .uppy-StatusBar-status{padding-right:.3em}[dir=rtl] .uppy-StatusBar-status{padding-left:.3em}.uppy-StatusBar-status{display:flex;flex-direction:column;font-weight:400;justify-content:center;line-height:1.4}.uppy-StatusBar-statusPrimary{display:flex;font-weight:500;line-height:1}.uppy-StatusBar-statusPrimary button.uppy-StatusBar-details{margin-left:5px}[data-uppy-theme=dark] .uppy-StatusBar-statusPrimary{color:#eaeaea}.uppy-StatusBar-statusSecondary{color:#757575;display:inline-block;font-size:11px;line-height:1.2;margin-top:1px;white-space:nowrap}[data-uppy-theme=dark] .uppy-StatusBar-statusSecondary{color:#bbb}[dir=ltr] .uppy-StatusBar-statusSecondaryHint{margin-right:5px}[dir=rtl] .uppy-StatusBar-statusSecondaryHint{margin-left:5px}.uppy-StatusBar-statusSecondaryHint{display:inline-block;line-height:1;vertical-align:middle}[dir=ltr] .uppy-size--md .uppy-StatusBar-statusSecondaryHint{margin-right:8px}[dir=rtl] .uppy-size--md .uppy-StatusBar-statusSecondaryHint{margin-left:8px}[dir=ltr] .uppy-StatusBar-statusIndicator{margin-right:7px}[dir=rtl] .uppy-StatusBar-statusIndicator{margin-left:7px}.uppy-StatusBar-statusIndicator{color:#525252;position:relative;top:1px}.uppy-StatusBar-statusIndicator svg{vertical-align:text-bottom}[dir=ltr] .uppy-StatusBar-actions{right:10px}[dir=rtl] .uppy-StatusBar-actions{left:10px}.uppy-StatusBar-actions{align-items:center;bottom:0;display:flex;position:absolute;top:0;z-index:1004}.uppy-StatusBar.is-waiting .uppy-StatusBar-actions{background-color:#fafafa;height:100%;padding:0 15px;position:static;width:100%}[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actions{background-color:#1f1f1f}.uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts{flex-direction:column;height:90px}.uppy-size--md .uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts{flex-direction:row;height:65px}.uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts .uppy-StatusBar-actions{flex-direction:column;justify-content:center}.uppy-size--md .uppy-StatusBar:not([aria-hidden=true]).is-waiting.has-ghosts .uppy-StatusBar-actions{flex-direction:row;justify-content:normal}.uppy-StatusBar-actionCircleBtn{cursor:pointer;line-height:1;margin:3px;opacity:.9}.uppy-StatusBar-actionCircleBtn:focus{outline:none}.uppy-StatusBar-actionCircleBtn::-moz-focus-inner{border:0}.uppy-StatusBar-actionCircleBtn:focus{box-shadow:0 0 0 3px #1269cf80}[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn:focus{outline:none}[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn::-moz-focus-inner{border:0}[data-uppy-theme=dark] .uppy-StatusBar-actionCircleBtn:focus{box-shadow:0 0 0 2px #aae1ffd9}.uppy-StatusBar-actionCircleBtn:hover{opacity:1}.uppy-StatusBar-actionCircleBtn:focus{border-radius:50%}.uppy-StatusBar-actionCircleBtn svg{vertical-align:bottom}.uppy-StatusBar-actionBtn{color:#1269cf;display:inline-block;font-size:10px;line-height:inherit;vertical-align:middle}.uppy-size--md .uppy-StatusBar-actionBtn{font-size:11px}.uppy-StatusBar-actionBtn--disabled{opacity:.4}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--disabled{opacity:.7}[dir=ltr] .uppy-StatusBar-actionBtn--retry{margin-right:6px}[dir=rtl] .uppy-StatusBar-actionBtn--retry{margin-left:6px}.uppy-StatusBar-actionBtn--retry{background-color:#ff4b23;border-radius:8px;color:#fff;height:16px;line-height:1;padding:1px 6px 3px 18px;position:relative}.uppy-StatusBar-actionBtn--retry:focus{outline:none}.uppy-StatusBar-actionBtn--retry::-moz-focus-inner{border:0}.uppy-StatusBar-actionBtn--retry:focus{box-shadow:0 0 0 3px #1269cf80}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry:focus{outline:none}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry::-moz-focus-inner{border:0}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--retry:focus{box-shadow:0 0 0 2px #aae1ffd9}.uppy-StatusBar-actionBtn--retry:hover{background-color:#f92d00}[dir=ltr] .uppy-StatusBar-actionBtn--retry svg{left:6px}[dir=rtl] .uppy-StatusBar-actionBtn--retry svg{right:6px}.uppy-StatusBar-actionBtn--retry svg{position:absolute;top:3px}.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload{background-color:#1bb240;color:#fff;font-size:14px;line-height:1;padding:15px 10px;width:100%}.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover{background-color:#189c38}[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload{background-color:#1c8b37}[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload:hover{background-color:#18762f}.uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload{padding:13px 22px;width:auto}.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload.uppy-StatusBar-actionBtn--disabled:hover{background-color:#1bb240;cursor:not-allowed}[data-uppy-theme=dark] .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload.uppy-StatusBar-actionBtn--disabled:hover{background-color:#1c8b37}.uppy-StatusBar:not(.is-waiting) .uppy-StatusBar-actionBtn--upload{background-color:initial;color:#1269cf}[dir=ltr] .uppy-StatusBar-actionBtn--uploadNewlyAdded{padding-right:3px}[dir=ltr] .uppy-StatusBar-actionBtn--uploadNewlyAdded,[dir=rtl] .uppy-StatusBar-actionBtn--uploadNewlyAdded{padding-left:3px}[dir=rtl] .uppy-StatusBar-actionBtn--uploadNewlyAdded{padding-right:3px}.uppy-StatusBar-actionBtn--uploadNewlyAdded{border-radius:3px;padding-bottom:1px}.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus{outline:none}.uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner{border:0}.uppy-StatusBar-actionBtn--uploadNewlyAdded:focus{box-shadow:0 0 0 3px #1269cf80}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded:focus{outline:none}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded::-moz-focus-inner{border:0}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--uploadNewlyAdded:focus{box-shadow:0 0 0 2px #aae1ffd9}.uppy-StatusBar.is-postprocessing .uppy-StatusBar-actionBtn--uploadNewlyAdded,.uppy-StatusBar.is-preprocessing .uppy-StatusBar-actionBtn--uploadNewlyAdded{display:none}.uppy-StatusBar-actionBtn--done{border-radius:3px;line-height:1;padding:7px 8px}.uppy-StatusBar-actionBtn--done:focus{outline:none}.uppy-StatusBar-actionBtn--done::-moz-focus-inner{border:0}.uppy-StatusBar-actionBtn--done:hover{color:#0e51a0}.uppy-StatusBar-actionBtn--done:focus{background-color:#dfe6f1}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--done:focus{background-color:#333}[data-uppy-theme=dark] .uppy-StatusBar-actionBtn--done{color:#02baf2}.uppy-size--md .uppy-StatusBar-actionBtn--done{font-size:14px}.uppy-StatusBar-serviceMsg{color:#000;font-size:11px;line-height:1.1;padding-left:10px}.uppy-size--md .uppy-StatusBar-serviceMsg{font-size:14px;padding-left:15px}[data-uppy-theme=dark] .uppy-StatusBar-serviceMsg{color:#eaeaea}.uppy-StatusBar-serviceMsg-ghostsIcon{left:6px;opacity:.5;position:relative;top:2px;vertical-align:text-bottom;width:10px}.uppy-size--md .uppy-StatusBar-serviceMsg-ghostsIcon{left:10px;top:1px;width:15px}[dir=ltr] .uppy-StatusBar-details{left:2px}[dir=rtl] .uppy-StatusBar-details{right:2px}.uppy-StatusBar-details{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#939393;border-radius:50%;color:#fff;cursor:help;display:inline-block;font-size:10px;font-weight:600;height:13px;line-height:12px;position:relative;text-align:center;top:0;vertical-align:middle;width:13px}.uppy-StatusBar-details:after{word-wrap:break-word;line-height:1.3}[dir=ltr] .uppy-StatusBar-spinner{margin-right:10px}[dir=rtl] .uppy-StatusBar-spinner{margin-left:10px}.uppy-StatusBar-spinner{fill:#1269cf;animation-duration:1s;animation-iteration-count:infinite;animation-name:uppy-StatusBar-spinnerAnimation;animation-timing-function:linear}.uppy-StatusBar.is-postprocessing .uppy-StatusBar-spinner,.uppy-StatusBar.is-preprocessing .uppy-StatusBar-spinner{fill:#f6a623}@keyframes uppy-StatusBar-spinnerAnimation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list,.uppy-ProviderBrowser-viewType--unsplash ul.uppy-ProviderBrowser-list{align-items:flex-start;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;padding:6px}.uppy-ProviderBrowser-viewType--grid ul.uppy-ProviderBrowser-list:after,.uppy-ProviderBrowser-viewType--unsplash ul.uppy-ProviderBrowser-list:after{content:"";flex:auto}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem{margin:0;position:relative;width:50%}.uppy-size--md .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem,.uppy-size--md .uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem{width:33.3333%}.uppy-size--lg .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem,.uppy-size--lg .uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem{width:25%}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem:before,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem:before{content:"";display:block;padding-top:100%}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected img,.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--selected svg,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--selected img,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--selected svg{opacity:.85}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--disabled,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--disabled{opacity:.5}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner{background-color:#93939333}[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner,[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--noPreview .uppy-ProviderBrowserItem-inner{background-color:#eaeaea33}.uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg,.uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--noPreview svg{fill:#000000b3;height:30%;width:30%}[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid li.uppy-ProviderBrowserItem--noPreview svg,[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--unsplash li.uppy-ProviderBrowserItem--noPreview svg{fill:#fffc}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-inner{border-radius:4px;bottom:7px;height:calc(100% - 14px);left:7px;overflow:hidden;position:absolute;right:7px;text-align:center;top:7px;width:calc(100% - 14px)}@media (hover:none){.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner .uppy-ProviderBrowserItem-author,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-inner .uppy-ProviderBrowserItem-author{display:block}}[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner,[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-inner{box-shadow:0 0 0 3px #aae1ffb3}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-inner img,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-inner img{border-radius:4px;height:100%;-o-object-fit:cover;object-fit:cover;width:100%}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-author,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-author{background:#0000004d;bottom:0;color:#fff;display:none;font-size:12px;font-weight:500;left:0;margin:0;padding:5px;position:absolute;text-decoration:none;width:100%}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-author:hover,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-author:hover{background:#0006;text-decoration:underline}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox{background-color:#1269cf;border-radius:50%;height:26px;opacity:0;position:absolute;right:16px;top:16px;width:26px;z-index:1002}[dir=ltr] .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox:after,[dir=ltr] .uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox:after{left:7px}[dir=rtl] .uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox:after,[dir=rtl] .uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox:after{right:7px}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox:after,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox:after{height:7px;top:8px;width:12px}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox--is-checked,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox--is-checked{opacity:1}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox--grid:focus+label .uppy-ProviderBrowserItem-author,.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox--grid:hover+label .uppy-ProviderBrowserItem-author,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox--grid:focus+label .uppy-ProviderBrowserItem-author,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox--grid:hover+label .uppy-ProviderBrowserItem-author{display:block}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox--grid:focus+label,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox--grid:focus+label{box-shadow:0 0 0 3px #1269cf80}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox--grid:focus+label:focus,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox--grid:focus+label:focus{outline:none}.uppy-ProviderBrowser-viewType--grid .uppy-ProviderBrowserItem-checkbox--grid:focus+label::-moz-focus-inner,.uppy-ProviderBrowser-viewType--unsplash .uppy-ProviderBrowserItem-checkbox--grid:focus+label::-moz-focus-inner{border:0}.uppy-ProviderBrowser-viewType--list{background-color:#fff}[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list{background-color:#1f1f1f}.uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem{align-items:center;display:flex;margin:0;padding:7px 15px}[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem{color:#eaeaea}.uppy-ProviderBrowser-viewType--list li.uppy-ProviderBrowserItem--disabled{opacity:.6}[dir=ltr] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox{margin-right:15px}[dir=rtl] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox{margin-left:15px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox{background-color:#fff;border:1px solid #cfcfcf;border-radius:3px;height:17px;width:17px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox:focus{border:1px solid #1269cf;box-shadow:0 0 0 3px #1269cf40;outline:none}[dir=ltr] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox:after{left:3px}[dir=rtl] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox:after{right:3px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox:after{height:5px;opacity:0;top:4px;width:9px}[data-uppy-theme=dark] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox:focus{border-color:#02baf2b3;box-shadow:0 0 0 3px #02baf233}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox--is-checked{background-color:#1269cf;border-color:#1269cf}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-checkbox--is-checked:after{opacity:1}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner{align-items:center;color:inherit;display:flex;font-family:-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Segoe UI Symbol,Segoe UI Emoji,Apple Color Emoji,Roboto,Helvetica,Arial,sans-serif;overflow:hidden;padding:2px;text-overflow:ellipsis;white-space:nowrap}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner:focus{outline:none;text-decoration:underline}[dir=ltr] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img,[dir=ltr] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg{margin-right:8px}[dir=rtl] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner img,[dir=rtl] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner svg{margin-left:8px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-inner span{line-height:1.2;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem--disabled .uppy-ProviderBrowserItem-inner{cursor:default}[dir=ltr] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-iconWrap{margin-right:7px}[dir=rtl] .uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-iconWrap{margin-left:7px}.uppy-ProviderBrowser-viewType--list .uppy-ProviderBrowserItem-iconWrap{width:20px}.uppy-ProviderBrowserItem-checkbox{cursor:pointer;flex-shrink:0;position:relative}.uppy-ProviderBrowserItem-checkbox:disabled{cursor:default}.uppy-ProviderBrowserItem-checkbox:after{border-bottom:2px solid #eaeaea;border-left:2px solid #eaeaea;content:"";cursor:pointer;position:absolute;transform:rotate(-45deg)}.uppy-ProviderBrowserItem-checkbox:disabled:after{cursor:default}[data-uppy-theme=dark] .uppy-ProviderBrowserItem-checkbox{background-color:#1f1f1f;border-color:#939393}[data-uppy-theme=dark] .uppy-ProviderBrowserItem-checkbox--is-checked{background-color:#333}.uppy-SearchProvider{align-items:center;display:flex;flex:1;flex-direction:column;height:100%;justify-content:center;width:100%}[data-uppy-theme=dark] .uppy-SearchProvider{background-color:#1f1f1f}.uppy-SearchProvider-input{margin-bottom:15px;max-width:650px;width:90%}.uppy-size--md .uppy-SearchProvider-input{margin-bottom:20px}.uppy-SearchProvider-input::-webkit-search-cancel-button{display:none}.uppy-SearchProvider-searchButton{padding:13px 25px}.uppy-size--md .uppy-SearchProvider-searchButton{padding:13px 30px}.uppy-DashboardContent-panelBody{align-items:center;display:flex;flex:1;justify-content:center}[data-uppy-theme=dark] .uppy-DashboardContent-panelBody{background-color:#1f1f1f}.uppy-Provider-auth,.uppy-Provider-empty,.uppy-Provider-error,.uppy-Provider-loading{align-items:center;color:#939393;display:flex;flex:1;flex-flow:column wrap;justify-content:center}.uppy-Provider-empty{color:#939393}.uppy-Provider-authIcon svg{height:75px;width:100px}.uppy-Provider-authTitle{color:#757575;font-size:17px;font-weight:400;line-height:1.4;margin-bottom:30px;max-width:500px;padding:0 15px;text-align:center}.uppy-size--md .uppy-Provider-authTitle{font-size:20px}[data-uppy-theme=dark] .uppy-Provider-authTitle{color:#cfcfcf}.uppy-Provider-btn-google{align-items:center;background:#4285f4;display:flex;padding:8px 12px!important}.uppy-Provider-btn-google:hover{background-color:#1266f1}.uppy-Provider-btn-google:focus{box-shadow:0 0 0 3px #4285f466;outline:none}.uppy-Provider-btn-google svg{margin-right:8px}[dir=ltr] .uppy-Provider-breadcrumbs{text-align:left}[dir=rtl] .uppy-Provider-breadcrumbs{text-align:right}.uppy-Provider-breadcrumbs{color:#525252;flex:1;font-size:12px;margin-bottom:10px}.uppy-size--md .uppy-Provider-breadcrumbs{margin-bottom:0}[data-uppy-theme=dark] .uppy-Provider-breadcrumbs{color:#eaeaea}[dir=ltr] .uppy-Provider-breadcrumbsIcon{margin-right:4px}[dir=rtl] .uppy-Provider-breadcrumbsIcon{margin-left:4px}.uppy-Provider-breadcrumbsIcon{color:#525252;display:inline-block;line-height:1;vertical-align:middle}.uppy-Provider-breadcrumbsIcon svg{fill:#525252;height:13px;width:13px}.uppy-Provider-breadcrumbs button{border-radius:3px;display:inline-block;line-height:inherit;padding:4px}.uppy-Provider-breadcrumbs button:focus{outline:none}.uppy-Provider-breadcrumbs button::-moz-focus-inner{border:0}.uppy-Provider-breadcrumbs button:hover{color:#0e51a0}.uppy-Provider-breadcrumbs button:focus{background-color:#dfe6f1}[data-uppy-theme=dark] .uppy-Provider-breadcrumbs button:focus{background-color:#333}.uppy-Provider-breadcrumbs button:not(:last-of-type){text-decoration:underline}.uppy-Provider-breadcrumbs button:last-of-type{color:#333;cursor:normal;font-weight:500;pointer-events:none}.uppy-Provider-breadcrumbs button:hover{cursor:pointer}[data-uppy-theme=dark] .uppy-Provider-breadcrumbs button{color:#eaeaea}.uppy-ProviderBrowser{display:flex;flex:1;flex-direction:column;font-size:14px;font-weight:400;height:100%}.uppy-ProviderBrowser-user{color:#333;font-weight:500;margin:0 8px 0 0}[data-uppy-theme=dark] .uppy-ProviderBrowser-user{color:#eaeaea}[dir=ltr] .uppy-ProviderBrowser-user:after{left:4px}[dir=rtl] .uppy-ProviderBrowser-user:after{right:4px}.uppy-ProviderBrowser-user:after{color:#939393;content:"·";font-weight:400;position:relative}.uppy-ProviderBrowser-header{border-bottom:1px solid #eaeaea;position:relative;z-index:1001}[data-uppy-theme=dark] .uppy-ProviderBrowser-header{border-bottom:1px solid #333}.uppy-ProviderBrowser-headerBar{background-color:#fafafa;color:#757575;font-size:12px;line-height:1.4;padding:7px 15px;z-index:1001}.uppy-size--md .uppy-ProviderBrowser-headerBar{align-items:center;display:flex}[data-uppy-theme=dark] .uppy-ProviderBrowser-headerBar{background-color:#1f1f1f}.uppy-ProviderBrowser-headerBar--simple{display:block;justify-content:center;text-align:center}.uppy-ProviderBrowser-headerBar--simple .uppy-Provider-breadcrumbsWrap{display:inline-block;flex:none;vertical-align:middle}.uppy-ProviderBrowser-searchFilter{align-items:center;display:flex;height:30px;margin-bottom:15px;margin-top:15px;padding-left:8px;padding-right:8px;position:relative;width:100%}[dir=ltr] .uppy-ProviderBrowser-searchFilterInput{padding-left:30px}[dir=ltr] .uppy-ProviderBrowser-searchFilterInput,[dir=rtl] .uppy-ProviderBrowser-searchFilterInput{padding-right:30px}[dir=rtl] .uppy-ProviderBrowser-searchFilterInput{padding-left:30px}.uppy-ProviderBrowser-searchFilterInput{background-color:#eaeaea;border:0;border-radius:4px;color:#333;font-family:-apple-system,system-ui,BlinkMacSystemFont,Segoe UI,Segoe UI Symbol,Segoe UI Emoji,Apple Color Emoji,Roboto,Helvetica,Arial,sans-serif;font-size:13px;height:30px;line-height:1.4;outline:0;width:100%;z-index:1001}.uppy-ProviderBrowser-searchFilterInput::-webkit-search-cancel-button{display:none}[data-uppy-theme=dark] .uppy-ProviderBrowser-searchFilterInput{background-color:#1f1f1f;color:#eaeaea}.uppy-ProviderBrowser-searchFilterInput:focus{background-color:#cfcfcf;border:0}[data-uppy-theme=dark] .uppy-ProviderBrowser-searchFilterInput:focus{background-color:#333}[dir=ltr] .uppy-ProviderBrowser-searchFilterIcon{left:16px}[dir=rtl] .uppy-ProviderBrowser-searchFilterIcon{right:16px}.uppy-ProviderBrowser-searchFilterIcon{color:#757575;height:12px;position:absolute;width:12px;z-index:1002}.uppy-ProviderBrowser-searchFilterInput::-moz-placeholder{color:#939393;opacity:1}.uppy-ProviderBrowser-searchFilterInput::placeholder{color:#939393;opacity:1}[dir=ltr] .uppy-ProviderBrowser-searchFilterReset{right:16px}[dir=rtl] .uppy-ProviderBrowser-searchFilterReset{left:16px}.uppy-ProviderBrowser-searchFilterReset{border-radius:3px;color:#939393;cursor:pointer;height:22px;padding:6px;position:absolute;width:22px;z-index:1002}.uppy-ProviderBrowser-searchFilterReset:focus{outline:none}.uppy-ProviderBrowser-searchFilterReset::-moz-focus-inner{border:0}.uppy-ProviderBrowser-searchFilterReset:focus{box-shadow:0 0 0 3px #1269cf80}.uppy-ProviderBrowser-searchFilterReset:hover{color:#757575}.uppy-ProviderBrowser-searchFilterReset svg{vertical-align:text-top}.uppy-ProviderBrowser-userLogout{border-radius:3px;color:#1269cf;cursor:pointer;line-height:inherit;padding:4px}.uppy-ProviderBrowser-userLogout:focus{outline:none}.uppy-ProviderBrowser-userLogout::-moz-focus-inner{border:0}.uppy-ProviderBrowser-userLogout:hover{color:#0e51a0}.uppy-ProviderBrowser-userLogout:focus{background-color:#dfe6f1}[data-uppy-theme=dark] .uppy-ProviderBrowser-userLogout:focus{background-color:#333}.uppy-ProviderBrowser-userLogout:hover{text-decoration:underline}[data-uppy-theme=dark] .uppy-ProviderBrowser-userLogout{color:#eaeaea}.uppy-ProviderBrowser-body{flex:1;position:relative}.uppy-ProviderBrowser-list{-webkit-overflow-scrolling:touch;background-color:#fff;border-spacing:0;bottom:0;display:block;flex:1;height:100%;left:0;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;right:0;top:0;width:100%}[data-uppy-theme=dark] .uppy-ProviderBrowser-list{background-color:#1f1f1f}.uppy-ProviderBrowser-list:focus{outline:none}.uppy-ProviderBrowserItem-inner{cursor:pointer;font-size:13px;font-weight:500}.uppy-ProviderBrowser-footer{align-items:center;background-color:#fff;border-top:1px solid #eaeaea;display:flex;height:65px;padding:0 15px}[dir=ltr] .uppy-ProviderBrowser-footer button{margin-right:8px}[dir=rtl] .uppy-ProviderBrowser-footer button{margin-left:8px}[data-uppy-theme=dark] .uppy-ProviderBrowser-footer{background-color:#1f1f1f;border-top:1px solid #333}.uppy-Dashboard-Item-previewInnerWrap{align-items:center;border-radius:3px;box-shadow:0 0 2px 0 #0006;display:flex;flex-direction:column;height:100%;justify-content:center;overflow:hidden;position:relative;width:100%}.uppy-size--md .uppy-Dashboard-Item-previewInnerWrap{box-shadow:0 1px 2px #00000026}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-previewInnerWrap{box-shadow:none}.uppy-Dashboard-Item-previewInnerWrap:after{background-color:#000000a6;bottom:0;content:"";display:none;left:0;position:absolute;right:0;top:0;z-index:1001}.uppy-Dashboard-Item-previewLink{bottom:0;left:0;position:absolute;right:0;top:0;z-index:1002}.uppy-Dashboard-Item-previewLink:focus{box-shadow:inset 0 0 0 3px #579df0}[data-uppy-theme=dark] .uppy-Dashboard-Item-previewLink:focus{box-shadow:inset 0 0 0 3px #016c8d}.uppy-Dashboard-Item-preview img.uppy-Dashboard-Item-previewImg{border-radius:3px;height:100%;-o-object-fit:cover;object-fit:cover;transform:translateZ(0);width:100%}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-preview img.uppy-Dashboard-Item-previewImg{height:auto;max-height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain;padding:10px;width:auto}.uppy-Dashboard-Item-progress{color:#fff;left:50%;position:absolute;text-align:center;top:50%;transform:translate(-50%,-50%);transition:all .35 ease;width:120px;z-index:1002}.uppy-Dashboard-Item-progressIndicator{color:#fff;display:inline-block;height:38px;opacity:.9;width:38px}.uppy-size--md .uppy-Dashboard-Item-progressIndicator{height:55px;width:55px}button.uppy-Dashboard-Item-progressIndicator{cursor:pointer}button.uppy-Dashboard-Item-progressIndicator:focus{outline:none}button.uppy-Dashboard-Item-progressIndicator::-moz-focus-inner{border:0}button.uppy-Dashboard-Item-progressIndicator:focus .uppy-Dashboard-Item-progressIcon--bg,button.uppy-Dashboard-Item-progressIndicator:focus .uppy-Dashboard-Item-progressIcon--retry{fill:#579df0}.uppy-Dashboard-Item-progressIcon--circle{height:100%;width:100%}.uppy-Dashboard-Item-progressIcon--bg{stroke:#fff6}.uppy-Dashboard-Item-progressIcon--progress{stroke:#fff;transition:stroke-dashoffset .5s ease-out}.uppy-Dashboard-Item-progressIcon--play{fill:#fff;stroke:#fff;transition:all .2s}.uppy-Dashboard-Item-progressIcon--cancel{fill:#fff;transition:all .2s}.uppy-Dashboard-Item-progressIcon--pause{fill:#fff;stroke:#fff;transition:all .2s}.uppy-Dashboard-Item-progressIcon--check{fill:#fff;transition:all .2s}.uppy-Dashboard-Item-progressIcon--retry{fill:#fff}[dir=ltr] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{right:-8px}[dir=rtl] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{left:-8px}[dir=ltr] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{left:auto}[dir=rtl] .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{right:auto}.uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progress{top:-9px;transform:none;width:auto}.uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-progressIndicator{height:18px;width:18px}.uppy-size--md .uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-progressIndicator{height:28px;width:28px}.uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progressIndicator{height:18px;opacity:1;width:18px}.uppy-size--md .uppy-Dashboard-Item.is-complete .uppy-Dashboard-Item-progressIndicator{height:22px;width:22px}.uppy-Dashboard-Item.is-processing .uppy-Dashboard-Item-progress{opacity:0}[dir=ltr] .uppy-Dashboard-Item-fileInfo{padding-right:5px}[dir=rtl] .uppy-Dashboard-Item-fileInfo{padding-left:5px}[dir=ltr] .uppy-Dashboard--singleFile .uppy-Dashboard-Item-fileInfo{padding-right:10px}[dir=rtl] .uppy-Dashboard--singleFile .uppy-Dashboard-Item-fileInfo{padding-left:10px}[dir=ltr] .uppy-size--md.uppy-Dashboard--singleFile .uppy-Dashboard-Item-fileInfo{padding-right:15px}[dir=rtl] .uppy-size--md.uppy-Dashboard--singleFile .uppy-Dashboard-Item-fileInfo{padding-left:15px}.uppy-Dashboard-Item-name{word-wrap:anywhere;font-size:12px;font-weight:500;line-height:1.3;margin-bottom:5px;word-break:break-all}[data-uppy-theme=dark] .uppy-Dashboard-Item-name{color:#eaeaea}.uppy-size--md.uppy-Dashboard--singleFile .uppy-Dashboard-Item-name{font-size:14px;line-height:1.4}.uppy-Dashboard-Item-fileName{align-items:baseline;display:flex}.uppy-Dashboard-Item-fileName button{margin-left:5px}.uppy-Dashboard-Item-author{color:#757575;display:inline-block;font-size:11px;font-weight:400;line-height:1;margin-bottom:5px;vertical-align:bottom}.uppy-Dashboard-Item-author a{color:#757575}.uppy-Dashboard-Item-status{color:#757575;font-size:11px;font-weight:400;line-height:1}[data-uppy-theme=dark] .uppy-Dashboard-Item-status{color:#bbb}.uppy-Dashboard-Item-statusSize{display:inline-block;margin-bottom:5px;text-transform:uppercase;vertical-align:bottom}.uppy-Dashboard-Item-reSelect{color:#1269cf;font-family:inherit;font-size:inherit;font-weight:600}.uppy-Dashboard-Item-errorMessage{background-color:#fdeff1;color:#a51523;font-size:11px;font-weight:500;line-height:1.3;padding:5px 6px}.uppy-Dashboard-Item-errorMessageBtn{color:#a51523;cursor:pointer;font-size:11px;font-weight:500;text-decoration:underline}.uppy-Dashboard-Item-preview .uppy-Dashboard-Item-errorMessage{display:none}.uppy-size--md .uppy-Dashboard-Item-preview .uppy-Dashboard-Item-errorMessage{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-top:1px solid #f7c2c8;bottom:0;display:block;left:0;line-height:1.4;padding:6px 8px;position:absolute;right:0}.uppy-Dashboard-Item-fileInfo .uppy-Dashboard-Item-errorMessage{border:1px solid #f7c2c8;border-radius:3px;display:inline-block;position:static}.uppy-size--md .uppy-Dashboard-Item-fileInfo .uppy-Dashboard-Item-errorMessage{display:none}.uppy-Dashboard-Item-action{color:#939393;cursor:pointer}.uppy-Dashboard-Item-action:focus{outline:none}.uppy-Dashboard-Item-action::-moz-focus-inner{border:0}.uppy-Dashboard-Item-action:focus{box-shadow:0 0 0 3px #1269cf80}.uppy-Dashboard-Item-action:hover{color:#1f1f1f;opacity:1}[data-uppy-theme=dark] .uppy-Dashboard-Item-action{color:#cfcfcf}[data-uppy-theme=dark] .uppy-Dashboard-Item-action:focus{outline:none}[data-uppy-theme=dark] .uppy-Dashboard-Item-action::-moz-focus-inner{border:0}[data-uppy-theme=dark] .uppy-Dashboard-Item-action:focus{box-shadow:0 0 0 2px #aae1ffd9}[data-uppy-theme=dark] .uppy-Dashboard-Item-action:hover{color:#eaeaea}.uppy-Dashboard-Item-action--remove{color:#1f1f1f;opacity:.95}.uppy-Dashboard-Item-action--remove:hover{color:#000;opacity:1}[dir=ltr] .uppy-size--md .uppy-Dashboard-Item-action--remove{right:-8px}[dir=rtl] .uppy-size--md .uppy-Dashboard-Item-action--remove{left:-8px}.uppy-size--md .uppy-Dashboard-Item-action--remove{height:18px;padding:0;position:absolute;top:-8px;width:18px;z-index:1002}.uppy-size--md .uppy-Dashboard-Item-action--remove:focus{border-radius:50%}[dir=ltr] .uppy-Dashboard--singleFile.uppy-size--height-md .uppy-Dashboard-Item-action--remove{right:8px}[dir=rtl] .uppy-Dashboard--singleFile.uppy-size--height-md .uppy-Dashboard-Item-action--remove{left:8px}.uppy-Dashboard--singleFile.uppy-size--height-md .uppy-Dashboard-Item-action--remove{position:absolute;top:8px}[data-uppy-theme=dark] .uppy-Dashboard-Item-action--remove{color:#525252}[data-uppy-theme=dark] .uppy-Dashboard-Item-action--remove:hover{color:#333}.uppy-Dashboard:not(.uppy-size--md):not(.uppy-Dashboard--singleFile.uppy-size--height-md) .uppy-Dashboard-Item-actionWrapper{align-items:center;display:flex}.uppy-Dashboard:not(.uppy-size--md):not(.uppy-Dashboard--singleFile.uppy-size--height-md) .uppy-Dashboard-Item-action{height:22px;margin-left:3px;padding:3px;width:22px}.uppy-Dashboard:not(.uppy-size--md):not(.uppy-Dashboard--singleFile.uppy-size--height-md) .uppy-Dashboard-Item-action:focus{border-radius:3px}.uppy-size--md .uppy-Dashboard-Item-action--copyLink,.uppy-size--md .uppy-Dashboard-Item-action--edit{height:16px;padding:0;width:16px}.uppy-size--md .uppy-Dashboard-Item-action--copyLink:focus,.uppy-size--md .uppy-Dashboard-Item-action--edit:focus{border-radius:3px}.uppy-Dashboard-Item{align-items:center;border-bottom:1px solid #eaeaea;display:flex;padding:10px}[dir=ltr] .uppy-Dashboard:not(.uppy-Dashboard--singleFile) .uppy-Dashboard-Item{padding-right:0}[dir=rtl] .uppy-Dashboard:not(.uppy-Dashboard--singleFile) .uppy-Dashboard-Item{padding-left:0}[data-uppy-theme=dark] .uppy-Dashboard-Item{border-bottom:1px solid #333}[dir=ltr] .uppy-size--md .uppy-Dashboard-Item{float:left}[dir=rtl] .uppy-size--md .uppy-Dashboard-Item{float:right}.uppy-size--md .uppy-Dashboard-Item{border-bottom:0;display:block;height:215px;margin:5px 15px;padding:0;position:relative;width:calc(33.333% - 30px)}.uppy-size--lg .uppy-Dashboard-Item{height:190px;margin:5px 15px;padding:0;width:calc(25% - 30px)}.uppy-size--xl .uppy-Dashboard-Item{height:210px;padding:0;width:calc(20% - 30px)}.uppy-Dashboard--singleFile .uppy-Dashboard-Item{border-bottom:0;display:flex;flex-direction:column;height:100%;max-width:400px;padding:15px;position:relative;width:100%}.uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-previewInnerWrap{opacity:.2}.uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-name{opacity:.7}.uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-preview:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2735%27 height=%2739%27%3E%3Cpath d=%27M1.708 38.66c1.709 0 3.417-3.417 6.834-3.417 3.416 0 5.125 3.417 8.61 3.417 3.348 0 5.056-3.417 8.473-3.417 4.305 0 5.125 3.417 6.833 3.417.889 0 1.709-.889 1.709-1.709v-19.68C34.167-5.757 0-5.757 0 17.271v19.68c0 .82.888 1.709 1.708 1.709zm8.542-17.084a3.383 3.383 0 0 1-3.417-3.416 3.383 3.383 0 0 1 3.417-3.417 3.383 3.383 0 0 1 3.417 3.417 3.383 3.383 0 0 1-3.417 3.416zm13.667 0A3.383 3.383 0 0 1 20.5 18.16a3.383 3.383 0 0 1 3.417-3.417 3.383 3.383 0 0 1 3.416 3.417 3.383 3.383 0 0 1-3.416 3.416z%27 fill=%27%2523000%27/%3E%3C/svg%3E");background-position:50% 10px;background-repeat:no-repeat;background-size:25px;bottom:0;content:"";left:0;opacity:.5;position:absolute;right:0;top:0;z-index:1005}.uppy-size--md .uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-preview:before{background-position:50% 50%;background-size:40px}.uppy-Dashboard--singleFile .uppy-Dashboard-Item.is-ghost .uppy-Dashboard-Item-preview:before{background-position:50% 50%;background-size:30%}.uppy-Dashboard-Item-preview{flex-grow:0;flex-shrink:0;height:50px;position:relative;width:50px}.uppy-size--md .uppy-Dashboard-Item-preview{height:140px;width:100%}.uppy-size--lg .uppy-Dashboard-Item-preview{height:120px}.uppy-size--xl .uppy-Dashboard-Item-preview{height:140px}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-preview{flex-grow:1;max-height:75%;width:100%}.uppy-Dashboard--singleFile.uppy-size--md .uppy-Dashboard-Item-preview{max-height:100%}[dir=ltr] .uppy-Dashboard-Item-fileInfoAndButtons{padding-right:8px}[dir=rtl] .uppy-Dashboard-Item-fileInfoAndButtons{padding-left:8px}[dir=ltr] .uppy-Dashboard-Item-fileInfoAndButtons{padding-left:12px}[dir=rtl] .uppy-Dashboard-Item-fileInfoAndButtons{padding-right:12px}.uppy-Dashboard-Item-fileInfoAndButtons{align-items:center;display:flex;flex-grow:1;justify-content:space-between}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-fileInfoAndButtons,.uppy-size--md .uppy-Dashboard-Item-fileInfoAndButtons{align-items:flex-start;padding:9px 0 0}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-fileInfoAndButtons{flex-grow:0;width:100%}.uppy-Dashboard-Item-fileInfo{flex-grow:1;flex-shrink:1}.uppy-Dashboard-Item-actionWrapper{flex-grow:0;flex-shrink:0}.uppy-Dashboard-Item.is-error .uppy-Dashboard-Item-previewInnerWrap:after,.uppy-Dashboard-Item.is-inprogress .uppy-Dashboard-Item-previewInnerWrap:after{display:block}[dir=ltr] .uppy-Dashboard-Item-errorDetails{left:2px}[dir=rtl] .uppy-Dashboard-Item-errorDetails{right:2px}.uppy-Dashboard-Item-errorDetails{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#939393;border:none;border-radius:50%;color:#fff;cursor:help;flex-shrink:0;font-size:10px;font-weight:600;height:13px;line-height:12px;position:relative;text-align:center;top:0;width:13px}.uppy-Dashboard-Item-errorDetails:after{word-wrap:break-word;line-height:1.3}.uppy-Dashboard-FileCard{background-color:#fff;border-radius:5px;bottom:0;box-shadow:0 0 10px 4px #0000001a;display:flex;flex-direction:column;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:1005}.uppy-Dashboard-FileCard .uppy-DashboardContent-bar{border-top-left-radius:5px;border-top-right-radius:5px}.uppy-Dashboard-FileCard .uppy-Dashboard-FileCard-actions{border-bottom-left-radius:5px;border-bottom-right-radius:5px}.uppy-Dashboard-FileCard-inner{display:flex;flex-direction:column;flex-grow:1;flex-shrink:1;height:100%;min-height:0}.uppy-Dashboard-FileCard-preview{align-items:center;border-bottom:1px solid #eaeaea;display:flex;flex-grow:0;flex-shrink:1;height:60%;justify-content:center;min-height:0;position:relative}[data-uppy-theme=dark] .uppy-Dashboard-FileCard-preview{background-color:#333;border-bottom:0}.uppy-Dashboard-FileCard-preview img.uppy-Dashboard-Item-previewImg{border-radius:3px;box-shadow:0 3px 20px #00000026;flex:0 0 auto;max-height:90%;max-width:90%;-o-object-fit:cover;object-fit:cover}[dir=ltr] .uppy-Dashboard-FileCard-edit{right:10px}[dir=rtl] .uppy-Dashboard-FileCard-edit{left:10px}.uppy-Dashboard-FileCard-edit{background-color:#00000080;border-radius:50px;color:#fff;font-size:13px;padding:7px 15px;position:absolute;top:10px}.uppy-Dashboard-FileCard-edit:focus{outline:none}.uppy-Dashboard-FileCard-edit::-moz-focus-inner{border:0}.uppy-Dashboard-FileCard-edit:focus{box-shadow:0 0 0 3px #1269cf80}.uppy-Dashboard-FileCard-edit:hover{background-color:#000c}.uppy-Dashboard-FileCard-info{-webkit-overflow-scrolling:touch;flex-grow:0;flex-shrink:0;height:40%;overflow-y:auto;padding:30px 20px 20px}[data-uppy-theme=dark] .uppy-Dashboard-FileCard-info{background-color:#1f1f1f}.uppy-Dashboard-FileCard-fieldset{border:0;font-size:0;margin:auto auto 12px;max-width:640px;padding:0}.uppy-Dashboard-FileCard-label{color:#525252;display:inline-block;font-size:12px;vertical-align:middle;width:22%}.uppy-size--md .uppy-Dashboard-FileCard-label{font-size:14px}[data-uppy-theme=dark] .uppy-Dashboard-FileCard-label{color:#eaeaea}.uppy-Dashboard-FileCard-input{display:inline-block;vertical-align:middle;width:78%}.uppy-Dashboard-FileCard-actions{align-items:center;background-color:#fafafa;border-top:1px solid #eaeaea;display:flex;flex-grow:0;flex-shrink:0;height:55px;padding:0 15px}.uppy-size--md .uppy-Dashboard-FileCard-actions{height:65px}[data-uppy-theme=dark] .uppy-Dashboard-FileCard-actions{background-color:#1f1f1f;border-top:1px solid #333}[dir=ltr] .uppy-Dashboard-FileCard-actionsBtn{margin-right:10px}[dir=rtl] .uppy-Dashboard-FileCard-actionsBtn{margin-left:10px}.uppy-transition-slideDownUp-enter{opacity:.01;transform:translate3d(0,-105%,0);transition:transform .25s ease-in-out,opacity .25s ease-in-out}.uppy-transition-slideDownUp-enter.uppy-transition-slideDownUp-enter-active{opacity:1;transform:translateZ(0)}.uppy-transition-slideDownUp-leave{opacity:1;transform:translateZ(0);transition:transform .25s ease-in-out,opacity .25s ease-in-out}.uppy-transition-slideDownUp-leave.uppy-transition-slideDownUp-leave-active{opacity:.01;transform:translate3d(0,-105%,0)}@keyframes uppy-Dashboard-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes uppy-Dashboard-fadeOut{0%{opacity:1}to{opacity:0}}@keyframes uppy-Dashboard-slideDownAndFadeIn{0%{opacity:0;transform:translate3d(-50%,-70%,0)}to{opacity:1;transform:translate3d(-50%,-50%,0)}}@keyframes uppy-Dashboard-slideDownAndFadeIn--small{0%{opacity:0;transform:translate3d(0,-20%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes uppy-Dashboard-slideUpFadeOut{0%{opacity:1;transform:translate3d(-50%,-50%,0)}to{opacity:0;transform:translate3d(-50%,-70%,0)}}@keyframes uppy-Dashboard-slideUpFadeOut--small{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translate3d(0,-20%,0)}}.uppy-Dashboard--modal{z-index:1001}.uppy-Dashboard--modal[aria-hidden=true]{display:none}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideDownAndFadeIn--small .3s cubic-bezier(0,0,.2,1)}@media only screen and (min-width:820px){.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideDownAndFadeIn .3s cubic-bezier(0,0,.2,1)}}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose>.uppy-Dashboard-overlay{animation:uppy-Dashboard-fadeIn .3s cubic-bezier(0,0,.2,1)}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideUpFadeOut--small .3s cubic-bezier(0,0,.2,1)}@media only screen and (min-width:820px){.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing>.uppy-Dashboard-inner{animation:uppy-Dashboard-slideUpFadeOut .3s cubic-bezier(0,0,.2,1)}}.uppy-Dashboard--modal.uppy-Dashboard--animateOpenClose.uppy-Dashboard--isClosing>.uppy-Dashboard-overlay{animation:uppy-Dashboard-fadeOut .3s cubic-bezier(0,0,.2,1)}.uppy-Dashboard-isFixed{height:100vh;overflow:hidden}.uppy-Dashboard--modal .uppy-Dashboard-overlay{background-color:#00000080;bottom:0;left:0;position:fixed;right:0;top:0;z-index:1001}.uppy-Dashboard-inner{background-color:#f4f4f4;border:1px solid #eaeaea;border-radius:5px;max-height:100%;max-width:100%;outline:none;position:relative}.uppy-size--md .uppy-Dashboard-inner{min-height:auto}@media only screen and (min-width:820px){.uppy-Dashboard-inner{height:500px;width:650px}}.uppy-Dashboard--modal .uppy-Dashboard-inner{z-index:1002}[data-uppy-theme=dark] .uppy-Dashboard-inner{background-color:#1f1f1f}.uppy-Dashboard--isDisabled .uppy-Dashboard-inner{cursor:not-allowed}.uppy-Dashboard-innerWrap{border-radius:5px;display:flex;flex-direction:column;height:100%;opacity:0;overflow:hidden;position:relative}.uppy-Dashboard--isInnerWrapVisible .uppy-Dashboard-innerWrap{opacity:1}.uppy-Dashboard--isDisabled .uppy-Dashboard-innerWrap{cursor:not-allowed;filter:grayscale(100%);opacity:.6;-webkit-user-select:none;-moz-user-select:none;user-select:none}.uppy-Dashboard--isDisabled .uppy-ProviderIconBg{fill:#9f9f9f}.uppy-Dashboard--isDisabled [aria-disabled],.uppy-Dashboard--isDisabled [disabled]{cursor:not-allowed;pointer-events:none}.uppy-Dashboard--modal .uppy-Dashboard-inner{border:none;bottom:15px;left:15px;position:fixed;right:15px;top:35px}@media only screen and (min-width:820px){.uppy-Dashboard--modal .uppy-Dashboard-inner{box-shadow:0 5px 15px 4px #00000026;left:50%;right:auto;top:50%;transform:translate(-50%,-50%)}}[dir=ltr] .uppy-Dashboard-close{right:-2px}[dir=rtl] .uppy-Dashboard-close{left:-2px}.uppy-Dashboard-close{color:#ffffffe6;cursor:pointer;display:block;font-size:27px;position:absolute;top:-33px;z-index:1005}.uppy-Dashboard-close:focus{outline:none}.uppy-Dashboard-close::-moz-focus-inner{border:0}.uppy-Dashboard-close:focus{color:#6eabf2}@media only screen and (min-width:820px){[dir=ltr] .uppy-Dashboard-close{right:-35px}[dir=rtl] .uppy-Dashboard-close{left:-35px}.uppy-Dashboard-close{font-size:35px;top:-10px}}.uppy-Dashboard-serviceMsg{background-color:#fffbf7;border-bottom:1px solid #edd4b9;border-top:1px solid #edd4b9;font-size:12px;font-weight:500;line-height:1.3;padding:12px 0;position:relative;top:-1px;z-index:1004}.uppy-size--md .uppy-Dashboard-serviceMsg{font-size:14px;line-height:1.4}[data-uppy-theme=dark] .uppy-Dashboard-serviceMsg{background-color:#1f1f1f;border-bottom:1px solid #333;border-top:1px solid #333;color:#eaeaea}.uppy-Dashboard-serviceMsg-title{display:block;line-height:1;margin-bottom:4px;padding-left:42px}.uppy-Dashboard-serviceMsg-text{padding:0 15px}.uppy-Dashboard-serviceMsg-actionBtn{color:#1269cf;font-size:inherit;font-weight:inherit;vertical-align:initial}[data-uppy-theme=dark] .uppy-Dashboard-serviceMsg-actionBtn{color:#02baf2e6}.uppy-Dashboard-serviceMsg-icon{left:15px;position:absolute;top:10px}.uppy-Dashboard-AddFiles{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;position:relative;text-align:center}[data-uppy-drag-drop-supported=true] .uppy-Dashboard-AddFiles{border:1px dashed #dfdfdf;border-radius:3px;height:calc(100% - 14px);margin:7px}.uppy-Dashboard-AddFilesPanel .uppy-Dashboard-AddFiles{border:none;height:calc(100% - 54px)}.uppy-Dashboard--modal .uppy-Dashboard-AddFiles{border-color:#cfcfcf}[data-uppy-theme=dark] .uppy-Dashboard-AddFiles{border-color:#757575}.uppy-Dashboard-AddFiles-info{display:none;margin-top:auto;padding-bottom:15px;padding-top:15px}.uppy-size--height-md .uppy-Dashboard-AddFiles-info{display:block}.uppy-size--md .uppy-Dashboard-AddFiles-info{bottom:25px;left:0;padding-bottom:0;padding-top:30px;position:absolute;right:0}[data-uppy-num-acquirers="0"] .uppy-Dashboard-AddFiles-info{margin-top:0}.uppy-Dashboard-browse{color:#1269cf;cursor:pointer}.uppy-Dashboard-browse:focus{outline:none}.uppy-Dashboard-browse::-moz-focus-inner{border:0}.uppy-Dashboard-browse:focus,.uppy-Dashboard-browse:hover{border-bottom:1px solid #1269cf}[data-uppy-theme=dark] .uppy-Dashboard-browse{color:#02baf2e6}[data-uppy-theme=dark] .uppy-Dashboard-browse:focus,[data-uppy-theme=dark] .uppy-Dashboard-browse:hover{border-bottom:1px solid #02baf2}.uppy-Dashboard-browseBtn{display:block;font-size:14px;font-weight:500;margin-bottom:5px;margin-top:8px;width:100%}.uppy-size--md .uppy-Dashboard-browseBtn{font-size:15px;margin:15px auto;padding:13px 44px;width:auto}.uppy-Dashboard-AddFiles-list{-webkit-overflow-scrolling:touch;display:flex;flex:1;flex-direction:column;margin-top:2px;overflow-y:auto;padding:2px 0;width:100%}.uppy-size--md .uppy-Dashboard-AddFiles-list{flex:none;flex-direction:row;flex-wrap:wrap;justify-content:center;margin-top:15px;max-width:600px;overflow-y:visible;padding-top:0}.uppy-DashboardTab{border-bottom:1px solid #eaeaea;text-align:center;width:100%}[data-uppy-theme=dark] .uppy-DashboardTab{border-bottom:1px solid #333}.uppy-size--md .uppy-DashboardTab{border-bottom:none;display:inline-block;margin-bottom:10px;width:auto}.uppy-DashboardTab-btn{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:initial;color:#525252;cursor:pointer;flex-direction:row;height:100%;justify-content:left;padding:12px 15px;width:100%}.uppy-DashboardTab-btn:focus{outline:none}[dir=ltr] .uppy-size--md .uppy-DashboardTab-btn{margin-right:1px}[dir=rtl] .uppy-size--md .uppy-DashboardTab-btn{margin-left:1px}.uppy-size--md .uppy-DashboardTab-btn{border-radius:5px;flex-direction:column;padding:10px 3px;width:86px}[data-uppy-theme=dark] .uppy-DashboardTab-btn{color:#eaeaea}.uppy-DashboardTab-btn::-moz-focus-inner{border:0}.uppy-DashboardTab-btn:hover{background-color:#e9ecef}[data-uppy-theme=dark] .uppy-DashboardTab-btn:hover{background-color:#333}.uppy-DashboardTab-btn:active,.uppy-DashboardTab-btn:focus{background-color:#dfe6f1}[data-uppy-theme=dark] .uppy-DashboardTab-btn:active,[data-uppy-theme=dark] .uppy-DashboardTab-btn:focus{background-color:#525252}.uppy-DashboardTab-btn svg{display:inline-block;max-height:100%;max-width:100%;overflow:hidden;transition:transform .15s ease-in-out;vertical-align:text-top}[dir=ltr] .uppy-DashboardTab-inner{margin-right:10px}[dir=rtl] .uppy-DashboardTab-inner{margin-left:10px}.uppy-DashboardTab-inner{align-items:center;background-color:#fff;border-radius:8px;box-shadow:0 1px 1px 0 #0000001a,0 1px 2px 0 #0000001a,0 2px 3px 0 #00000005;display:flex;height:32px;justify-content:center;width:32px}[dir=ltr] .uppy-size--md .uppy-DashboardTab-inner{margin-right:0}[dir=rtl] .uppy-size--md .uppy-DashboardTab-inner{margin-left:0}[data-uppy-theme=dark] .uppy-DashboardTab-inner{background-color:#323232;box-shadow:0 1px 1px 0 #0003,0 1px 2px 0 #0003,0 2px 3px 0 #00000014}.uppy-DashboardTab-name{font-size:14px;font-weight:400}.uppy-size--md .uppy-DashboardTab-name{font-size:12px;line-height:15px;margin-bottom:0;margin-top:8px}.uppy-DashboardTab-iconMyDevice{color:#1269cf}[data-uppy-theme=dark] .uppy-DashboardTab-iconMyDevice{color:#02baf2}.uppy-DashboardTab-iconBox{color:#0061d5}[data-uppy-theme=dark] .uppy-DashboardTab-iconBox{color:#eaeaea}.uppy-DashboardTab-iconDropbox{color:#0061fe}[data-uppy-theme=dark] .uppy-DashboardTab-iconDropbox{color:#eaeaea}.uppy-DashboardTab-iconUnsplash{color:#111}[data-uppy-theme=dark] .uppy-DashboardTab-iconUnsplash{color:#eaeaea}.uppy-DashboardTab-iconScreenRec{color:#2c3e50}[data-uppy-theme=dark] .uppy-DashboardTab-iconScreenRec{color:#eaeaea}.uppy-DashboardTab-iconAudio{color:#8030a3}[data-uppy-theme=dark] .uppy-DashboardTab-iconAudio{color:#bf6ee3}.uppy-Dashboard-input{height:.1px;opacity:0;overflow:hidden;position:absolute;width:.1px;z-index:-1}.uppy-DashboardContent-bar{align-items:center;background-color:#fafafa;border-bottom:1px solid #eaeaea;display:flex;flex-shrink:0;height:40px;justify-content:space-between;padding:0 10px;position:relative;width:100%;z-index:1004}.uppy-size--md .uppy-DashboardContent-bar{height:50px;padding:0 15px}[data-uppy-theme=dark] .uppy-DashboardContent-bar{background-color:#1f1f1f;border-bottom:1px solid #333}.uppy-DashboardContent-title{font-size:12px;font-weight:500;left:0;line-height:40px;margin:auto;max-width:170px;overflow-x:hidden;position:absolute;right:0;text-align:center;text-overflow:ellipsis;top:0;white-space:nowrap;width:100%}.uppy-size--md .uppy-DashboardContent-title{font-size:14px;line-height:50px;max-width:300px}[data-uppy-theme=dark] .uppy-DashboardContent-title{color:#eaeaea}[dir=ltr] .uppy-DashboardContent-back,[dir=ltr] .uppy-DashboardContent-save{margin-left:-6px}[dir=rtl] .uppy-DashboardContent-back,[dir=rtl] .uppy-DashboardContent-save{margin-right:-6px}.uppy-DashboardContent-back,.uppy-DashboardContent-save{-webkit-appearance:none;background:none;border:0;border-radius:3px;color:inherit;color:#1269cf;cursor:pointer;font-family:inherit;font-size:inherit;font-size:12px;font-weight:400;line-height:1;margin:0;padding:7px 6px}.uppy-DashboardContent-back:focus,.uppy-DashboardContent-save:focus{outline:none}.uppy-DashboardContent-back::-moz-focus-inner,.uppy-DashboardContent-save::-moz-focus-inner{border:0}.uppy-DashboardContent-back:hover,.uppy-DashboardContent-save:hover{color:#0e51a0}.uppy-DashboardContent-back:focus,.uppy-DashboardContent-save:focus{background-color:#dfe6f1}[data-uppy-theme=dark] .uppy-DashboardContent-back:focus,[data-uppy-theme=dark] .uppy-DashboardContent-save:focus{background-color:#333}.uppy-size--md .uppy-DashboardContent-back,.uppy-size--md .uppy-DashboardContent-save{font-size:14px}[data-uppy-theme=dark] .uppy-DashboardContent-back,[data-uppy-theme=dark] .uppy-DashboardContent-save{color:#02baf2}[dir=ltr] .uppy-DashboardContent-addMore{margin-right:-5px}[dir=rtl] .uppy-DashboardContent-addMore{margin-left:-5px}.uppy-DashboardContent-addMore{-webkit-appearance:none;background:none;border:0;border-radius:3px;color:inherit;color:#1269cf;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:500;height:29px;line-height:1;margin:0;padding:7px 8px;width:29px}.uppy-DashboardContent-addMore:focus{outline:none}.uppy-DashboardContent-addMore::-moz-focus-inner{border:0}.uppy-DashboardContent-addMore:hover{color:#0e51a0}.uppy-DashboardContent-addMore:focus{background-color:#dfe6f1}[data-uppy-theme=dark] .uppy-DashboardContent-addMore:focus{background-color:#333}[dir=ltr] .uppy-size--md .uppy-DashboardContent-addMore{margin-right:-8px}[dir=rtl] .uppy-size--md .uppy-DashboardContent-addMore{margin-left:-8px}.uppy-size--md .uppy-DashboardContent-addMore{font-size:14px;height:auto;width:auto}[data-uppy-theme=dark] .uppy-DashboardContent-addMore{color:#02baf2}[dir=ltr] .uppy-DashboardContent-addMore svg{margin-right:4px}[dir=rtl] .uppy-DashboardContent-addMore svg{margin-left:4px}.uppy-DashboardContent-addMore svg{vertical-align:initial}.uppy-size--md .uppy-DashboardContent-addMore svg{height:11px;width:11px}.uppy-DashboardContent-addMoreCaption{display:none}.uppy-size--md .uppy-DashboardContent-addMoreCaption{display:inline}.uppy-DashboardContent-panel{background-color:#f5f5f5;flex:1}.uppy-Dashboard-AddFilesPanel,.uppy-DashboardContent-panel{border-radius:5px;bottom:0;display:flex;flex-direction:column;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:1005}.uppy-Dashboard-AddFilesPanel{background:#fafafa;background:linear-gradient(0deg,#fafafa 35%,#fafafad9);box-shadow:0 0 10px 5px #00000026}[data-uppy-theme=dark] .uppy-Dashboard-AddFilesPanel{background-color:#333;background-image:linear-gradient(0deg,#1f1f1f 35%,#1f1f1fd9)}.uppy-Dashboard--isAddFilesPanelVisible .uppy-Dashboard-files{filter:blur(2px)}.uppy-Dashboard-progress{bottom:0;height:12%;left:0;position:absolute;width:100%}.uppy-Dashboard-progressBarContainer.is-active{height:100%;left:0;position:absolute;top:0;width:100%;z-index:1004}.uppy-Dashboard-filesContainer{flex:1;margin:0;overflow-y:hidden;position:relative}.uppy-Dashboard-filesContainer:after{clear:both;content:"";display:table}.uppy-Dashboard-files{-webkit-overflow-scrolling:touch;flex:1;margin:0;overflow-y:auto;padding:0 0 10px}.uppy-size--md .uppy-Dashboard-files{padding-top:10px}.uppy-Dashboard--singleFile .uppy-Dashboard-filesInner{align-items:center;display:flex;height:100%;justify-content:center}.uppy-Dashboard-dropFilesHereHint{align-items:center;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%2748%27 height=%2748%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z%27 fill=%27%231269CF%27/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;border:1px dashed #1269cf;border-radius:3px;bottom:7px;color:#757575;display:flex;font-size:16px;justify-content:center;left:7px;padding-top:90px;position:absolute;right:7px;text-align:center;top:7px;visibility:hidden;z-index:2000}[data-uppy-theme=dark] .uppy-Dashboard-dropFilesHereHint{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width=%2748%27 height=%2748%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z%27 fill=%27%2302BAF2%27/%3E%3C/svg%3E");border-color:#02baf2;color:#bbb}.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-dropFilesHereHint{visibility:visible}.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-files,.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-progressindicators,.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-serviceMsg,.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-DashboardContent-bar{opacity:.15}.uppy-Dashboard.uppy-Dashboard--isDraggingOver .uppy-Dashboard-AddFiles{opacity:.03}.uppy-Dashboard-AddFiles-title{color:#000;font-size:17px;font-weight:500;line-height:1.35;margin-bottom:5px;margin-top:15px;padding:0 15px;text-align:inline-start;width:100%}.uppy-size--md .uppy-Dashboard-AddFiles-title{font-size:21px;font-weight:400;margin-top:5px;max-width:480px;padding:0 35px;text-align:center}[data-uppy-num-acquirers="0"] .uppy-Dashboard-AddFiles-title{text-align:center}[data-uppy-theme=dark] .uppy-Dashboard-AddFiles-title{color:#eaeaea}.uppy-Dashboard-AddFiles-title button{font-weight:500}.uppy-size--md .uppy-Dashboard-AddFiles-title button{font-weight:400}.uppy-Dashboard-note{color:#757575;font-size:14px;line-height:1.25;margin:auto;max-width:350px;padding:0 15px;text-align:center}.uppy-size--md .uppy-Dashboard-note{line-height:1.35;max-width:600px}[data-uppy-theme=dark] .uppy-Dashboard-note{color:#cfcfcf}a.uppy-Dashboard-poweredBy{color:#939393;display:inline-block;font-size:11px;margin-top:8px;text-align:center;text-decoration:none}.uppy-Dashboard-poweredByIcon{fill:none;stroke:#939393;margin-left:1px;margin-right:1px;opacity:.9;position:relative;top:1px;vertical-align:text-top}.uppy-Dashboard-Item-previewIcon{height:25px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:25px;z-index:100}.uppy-size--md .uppy-Dashboard-Item-previewIcon{height:38px;width:38px}.uppy-Dashboard-Item-previewIcon svg{height:100%;width:100%}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-previewIcon{height:100%;max-height:60%;max-width:60%;width:100%}.uppy-Dashboard-Item-previewIconWrap{height:76px;max-height:75%;position:relative}.uppy-Dashboard--singleFile .uppy-Dashboard-Item-previewIconWrap{height:100%;width:100%}.uppy-Dashboard-Item-previewIconBg{filter:drop-shadow(rgba(0,0,0,.1) 0 1px 1px);height:100%;width:100%}.uppy-Dashboard-upload{height:50px;position:relative;width:50px}.uppy-size--md .uppy-Dashboard-upload{height:60px;width:60px}.uppy-Dashboard-upload .uppy-c-icon{position:relative;top:1px;width:50%}[dir=ltr] .uppy-Dashboard-uploadCount{right:-12px}[dir=rtl] .uppy-Dashboard-uploadCount{left:-12px}.uppy-Dashboard-uploadCount{background-color:#1bb240;border-radius:50%;color:#fff;font-size:8px;height:16px;line-height:16px;position:absolute;top:-12px;width:16px}.uppy-size--md .uppy-Dashboard-uploadCount{font-size:9px;height:18px;line-height:18px;width:18px}
|
|
3427
3878
|
|
|
3428
|
-
[data-v-
|
|
3879
|
+
[data-v-e04beed4] .ant-upload-picture-card-wrapper {
|
|
3429
3880
|
display: flex;
|
|
3430
3881
|
align-items: center;
|
|
3431
3882
|
}
|
|
3432
|
-
[data-v-
|
|
3883
|
+
[data-v-e04beed4] iframe {
|
|
3433
3884
|
border: none;
|
|
3434
3885
|
width: 100%;
|
|
3435
3886
|
height: 100%;
|
|
@@ -3441,14 +3892,14 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3441
3892
|
align-items: center;
|
|
3442
3893
|
}
|
|
3443
3894
|
|
|
3444
|
-
.title[data-v-
|
|
3895
|
+
.title[data-v-7931a7e0] {
|
|
3445
3896
|
text-overflow: ellipsis;
|
|
3446
3897
|
white-space: nowrap;
|
|
3447
3898
|
overflow: hidden;
|
|
3448
3899
|
max-width: 620px;
|
|
3449
3900
|
margin-right: 10px;
|
|
3450
3901
|
}
|
|
3451
|
-
.dataTableSet[data-v-
|
|
3902
|
+
.dataTableSet[data-v-7931a7e0] .ant-table-placeholder {
|
|
3452
3903
|
border-left: none !important;
|
|
3453
3904
|
border-right: none !important;
|
|
3454
3905
|
border-bottom: none !important;
|
|
@@ -3456,267 +3907,88 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3456
3907
|
padding-top: var(--paddingTop) !important;
|
|
3457
3908
|
width: 99% !important;
|
|
3458
3909
|
}
|
|
3459
|
-
.dataSetFormItem[data-v-
|
|
3910
|
+
.dataSetFormItem[data-v-7931a7e0] .ant-form-item-control {
|
|
3460
3911
|
margin: 0 !important;
|
|
3461
3912
|
width: 100% !important;
|
|
3462
3913
|
}
|
|
3463
|
-
.dataSetFormItem[data-v-
|
|
3914
|
+
.dataSetFormItem[data-v-7931a7e0] .ant-form-item-control-wrapper {
|
|
3464
3915
|
display: initial !important;
|
|
3465
3916
|
}
|
|
3466
|
-
.dataTableSet[data-v-
|
|
3467
|
-
border-left: none !important;
|
|
3468
|
-
border-right: none !important;
|
|
3469
|
-
}
|
|
3470
|
-
.dataSetFormItem[data-v-afb8e90c] .ant-form-explain {
|
|
3471
|
-
top: 49px !important;
|
|
3472
|
-
left: 50% !important;
|
|
3473
|
-
}
|
|
3474
|
-
.dataSetFormItem[data-v-afb8e90c] .ant-form-item-control-wrapper {
|
|
3475
|
-
width: 100% !important;
|
|
3476
|
-
}
|
|
3477
|
-
.dataTableSet[data-v-afb8e90c] .ant-table-tbody tr td:last-child {
|
|
3478
|
-
border-right: none !important;
|
|
3479
|
-
}
|
|
3480
|
-
.dataTableSet[data-v-afb8e90c] .ant-table-thead tr th:last-child {
|
|
3481
|
-
border-right: none !important;
|
|
3482
|
-
}
|
|
3483
|
-
|
|
3484
|
-
.title[data-v-2fa27816] {
|
|
3485
|
-
text-overflow: ellipsis;
|
|
3486
|
-
white-space: nowrap;
|
|
3487
|
-
overflow: hidden;
|
|
3488
|
-
max-width: 620px;
|
|
3489
|
-
margin-right: 10px;
|
|
3490
|
-
}
|
|
3491
|
-
|
|
3492
|
-
.mydiy[data-v-06aeaba7] {
|
|
3493
|
-
z-index: 9999 !important;
|
|
3494
|
-
}
|
|
3495
|
-
[data-v-06aeaba7] .ant-time-picker-panel {
|
|
3496
|
-
z-index: 9999 !important;
|
|
3497
|
-
}
|
|
3498
|
-
[data-v-06aeaba7] .ant-input {
|
|
3499
|
-
position: relative;
|
|
3500
|
-
transform: none;
|
|
3501
|
-
}
|
|
3502
|
-
[data-v-06aeaba7] .ant-time-picker {
|
|
3503
|
-
max-width: 100%;
|
|
3504
|
-
}
|
|
3505
|
-
[data-v-06aeaba7] .ant-time-picker-panel-combobox {
|
|
3506
|
-
max-width: 168px;
|
|
3507
|
-
min-width: 168px;
|
|
3508
|
-
}
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
[data-v-5bae246c] .ant-time-picker {
|
|
3512
|
-
max-width: 170px !important;
|
|
3513
|
-
width: initial !important;
|
|
3514
|
-
}
|
|
3515
|
-
|
|
3516
|
-
.is_required[data-v-77374a03]::before {
|
|
3517
|
-
content: "*";
|
|
3518
|
-
color: #f56c6c;
|
|
3519
|
-
margin-right: 4px;
|
|
3520
|
-
}
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
[data-v-60fdf863] .ant-calendar-picker-container {
|
|
3524
|
-
z-index: 9999 !important;
|
|
3525
|
-
}
|
|
3526
|
-
[data-v-60fdf863] .ant-input {
|
|
3527
|
-
position: relative;
|
|
3528
|
-
transform: none;
|
|
3529
|
-
}
|
|
3530
|
-
[data-v-60fdf863] .ant-calendar-picker {
|
|
3531
|
-
min-width: 0 !important;
|
|
3532
|
-
width: 100% !important;
|
|
3533
|
-
}
|
|
3534
|
-
|
|
3535
|
-
.is_required[data-v-bb010ed0]::before {
|
|
3536
|
-
content: "*";
|
|
3537
|
-
color: #f56c6c;
|
|
3538
|
-
margin-right: 4px;
|
|
3539
|
-
}
|
|
3540
|
-
[data-v-bb010ed0] .ant-calendar-picker {
|
|
3541
|
-
min-width: 0 !important;
|
|
3542
|
-
}
|
|
3543
|
-
|
|
3544
|
-
.rich-preview {
|
|
3545
|
-
border: none;
|
|
3546
|
-
height: 100%;
|
|
3547
|
-
overflow-y: auto;
|
|
3548
|
-
}
|
|
3549
|
-
.rich-preview .w-e-scroll {
|
|
3550
|
-
overflow-y: initial !important;
|
|
3551
|
-
}
|
|
3552
|
-
.rich-preview b,
|
|
3553
|
-
.rich-preview strong {
|
|
3554
|
-
font-weight: bolder !important;
|
|
3555
|
-
}
|
|
3556
|
-
.rich-preview em {
|
|
3557
|
-
font-style: italic;
|
|
3558
|
-
}
|
|
3559
|
-
.rich-preview ul li {
|
|
3560
|
-
list-style-type: initial;
|
|
3561
|
-
}
|
|
3562
|
-
.rich-preview ol li {
|
|
3563
|
-
list-style-type: decimal;
|
|
3564
|
-
}
|
|
3565
|
-
.w-e-text-container {
|
|
3566
|
-
position: relative;
|
|
3567
|
-
height: 100%;
|
|
3568
|
-
}
|
|
3569
|
-
.w-e-text-container i {
|
|
3570
|
-
font-style: italic;
|
|
3571
|
-
}
|
|
3572
|
-
.w-e-text-container b {
|
|
3573
|
-
font-weight: bold;
|
|
3574
|
-
}
|
|
3575
|
-
.w-e-text-container .w-e-progress {
|
|
3576
|
-
position: absolute;
|
|
3577
|
-
background-color: #1e88e5;
|
|
3578
|
-
top: 0;
|
|
3579
|
-
left: 0;
|
|
3580
|
-
height: 1px;
|
|
3581
|
-
}
|
|
3582
|
-
.w-e-text-container .placeholder {
|
|
3583
|
-
color: #D4D4D4;
|
|
3584
|
-
position: absolute;
|
|
3585
|
-
font-size: 11pt;
|
|
3586
|
-
line-height: 22px;
|
|
3587
|
-
left: 10px;
|
|
3588
|
-
top: 10px;
|
|
3589
|
-
-webkit-user-select: none;
|
|
3590
|
-
-moz-user-select: none;
|
|
3591
|
-
user-select: none;
|
|
3592
|
-
z-index: -1;
|
|
3593
|
-
}
|
|
3594
|
-
.w-e-text {
|
|
3595
|
-
padding: 0 10px;
|
|
3596
|
-
overflow-y: auto;
|
|
3597
|
-
}
|
|
3598
|
-
.w-e-text p,
|
|
3599
|
-
.w-e-text h1,
|
|
3600
|
-
.w-e-text h2,
|
|
3601
|
-
.w-e-text h3,
|
|
3602
|
-
.w-e-text h4,
|
|
3603
|
-
.w-e-text h5,
|
|
3604
|
-
.w-e-text table,
|
|
3605
|
-
.w-e-text pre {
|
|
3606
|
-
margin: 10px 0;
|
|
3607
|
-
line-height: 1.5;
|
|
3608
|
-
}
|
|
3609
|
-
.w-e-text ul,
|
|
3610
|
-
.w-e-text ol {
|
|
3611
|
-
margin: 10px 0 10px 20px;
|
|
3612
|
-
}
|
|
3613
|
-
.w-e-text blockquote {
|
|
3614
|
-
display: block;
|
|
3615
|
-
border-left: 8px solid #d0e5f2;
|
|
3616
|
-
padding: 5px 10px;
|
|
3617
|
-
margin: 10px 0;
|
|
3618
|
-
line-height: 1.4;
|
|
3619
|
-
font-size: 100%;
|
|
3620
|
-
background-color: #f1f1f1;
|
|
3621
|
-
}
|
|
3622
|
-
.w-e-text code {
|
|
3623
|
-
display: inline-block;
|
|
3624
|
-
background-color: #f1f1f1;
|
|
3625
|
-
border-radius: 3px;
|
|
3626
|
-
padding: 3px 5px;
|
|
3627
|
-
margin: 0 3px;
|
|
3628
|
-
}
|
|
3629
|
-
.w-e-text pre code {
|
|
3630
|
-
display: block;
|
|
3631
|
-
}
|
|
3632
|
-
.w-e-text table {
|
|
3633
|
-
border-top: 1px solid #ccc;
|
|
3634
|
-
border-left: 1px solid #ccc;
|
|
3635
|
-
}
|
|
3636
|
-
.w-e-text table td,
|
|
3637
|
-
.w-e-text table th {
|
|
3638
|
-
border-bottom: 1px solid #ccc;
|
|
3639
|
-
border-right: 1px solid #ccc;
|
|
3640
|
-
padding: 3px 5px;
|
|
3641
|
-
min-height: 30px;
|
|
3642
|
-
height: 30px;
|
|
3643
|
-
}
|
|
3644
|
-
.w-e-text table th {
|
|
3645
|
-
border-bottom: 2px solid #ccc;
|
|
3646
|
-
text-align: center;
|
|
3647
|
-
background-color: #f1f1f1;
|
|
3917
|
+
.dataTableSet[data-v-7931a7e0] table {
|
|
3918
|
+
border-left: none !important;
|
|
3919
|
+
border-right: none !important;
|
|
3648
3920
|
}
|
|
3649
|
-
.
|
|
3650
|
-
|
|
3921
|
+
.dataSetFormItem[data-v-7931a7e0] .ant-form-explain {
|
|
3922
|
+
top: 49px !important;
|
|
3923
|
+
left: 50% !important;
|
|
3651
3924
|
}
|
|
3652
|
-
.
|
|
3653
|
-
|
|
3925
|
+
.dataSetFormItem[data-v-7931a7e0] .ant-form-item-control-wrapper {
|
|
3926
|
+
width: 100% !important;
|
|
3654
3927
|
}
|
|
3655
|
-
.
|
|
3656
|
-
|
|
3928
|
+
.dataTableSet[data-v-7931a7e0] .ant-table-tbody tr td:last-child {
|
|
3929
|
+
border-right: none !important;
|
|
3657
3930
|
}
|
|
3658
|
-
.
|
|
3659
|
-
|
|
3931
|
+
.dataTableSet[data-v-7931a7e0] .ant-table-thead tr th:last-child {
|
|
3932
|
+
border-right: none !important;
|
|
3660
3933
|
}
|
|
3661
|
-
|
|
3662
|
-
|
|
3934
|
+
|
|
3935
|
+
.title[data-v-2fa27816] {
|
|
3936
|
+
text-overflow: ellipsis;
|
|
3937
|
+
white-space: nowrap;
|
|
3938
|
+
overflow: hidden;
|
|
3939
|
+
max-width: 620px;
|
|
3940
|
+
margin-right: 10px;
|
|
3663
3941
|
}
|
|
3664
|
-
|
|
3665
|
-
|
|
3942
|
+
|
|
3943
|
+
.mydiy[data-v-fdb6ba1e] {
|
|
3944
|
+
z-index: 9999 !important;
|
|
3666
3945
|
}
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
font-size: 1em;
|
|
3946
|
+
[data-v-fdb6ba1e] .ant-time-picker-panel {
|
|
3947
|
+
z-index: 9999 !important;
|
|
3670
3948
|
}
|
|
3671
|
-
|
|
3949
|
+
[data-v-fdb6ba1e] .ant-input {
|
|
3672
3950
|
position: relative;
|
|
3673
|
-
|
|
3674
|
-
}
|
|
3675
|
-
.w-e-text .w-e-todo li span:nth-child(1) input {
|
|
3676
|
-
position: absolute;
|
|
3677
|
-
margin-right: 3px;
|
|
3951
|
+
transform: none;
|
|
3678
3952
|
}
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
margin-top: -6px;
|
|
3953
|
+
[data-v-fdb6ba1e] .ant-time-picker {
|
|
3954
|
+
max-width: 100%;
|
|
3682
3955
|
}
|
|
3683
|
-
.
|
|
3684
|
-
position: absolute;
|
|
3956
|
+
[data-v-fdb6ba1e] .ant-time-picker-panel-combobox {
|
|
3685
3957
|
display: flex;
|
|
3686
|
-
color: #f1f1f1;
|
|
3687
|
-
background-color: rgba(0, 0, 0, 0.75);
|
|
3688
|
-
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
|
|
3689
|
-
border-radius: 4px;
|
|
3690
|
-
padding: 4px 5px 6px;
|
|
3691
|
-
justify-content: center;
|
|
3692
|
-
align-items: center;
|
|
3693
3958
|
}
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
margin-left: -5px;
|
|
3700
|
-
border: 5px solid rgba(0, 0, 0, 0);
|
|
3701
|
-
border-top-color: rgba(0, 0, 0, 0.73);
|
|
3959
|
+
|
|
3960
|
+
|
|
3961
|
+
[data-v-3e57732c] .ant-time-picker {
|
|
3962
|
+
max-width: 170px !important;
|
|
3963
|
+
width: initial !important;
|
|
3702
3964
|
}
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
margin-left: -5px;
|
|
3709
|
-
border: 5px solid rgba(0, 0, 0, 0);
|
|
3710
|
-
border-bottom-color: rgba(0, 0, 0, 0.73);
|
|
3965
|
+
|
|
3966
|
+
.is_required[data-v-77374a03]::before {
|
|
3967
|
+
content: "*";
|
|
3968
|
+
color: #f56c6c;
|
|
3969
|
+
margin-right: 4px;
|
|
3711
3970
|
}
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3971
|
+
|
|
3972
|
+
|
|
3973
|
+
[data-v-8e2dfa7a] .ant-calendar-picker-container {
|
|
3974
|
+
z-index: 9999 !important;
|
|
3716
3975
|
}
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3976
|
+
[data-v-8e2dfa7a] .ant-input {
|
|
3977
|
+
position: relative;
|
|
3978
|
+
transform: none;
|
|
3979
|
+
}
|
|
3980
|
+
[data-v-8e2dfa7a] .ant-calendar-picker {
|
|
3981
|
+
min-width: 0 !important;
|
|
3982
|
+
width: 100% !important;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
.is_required[data-v-bb010ed0]::before {
|
|
3986
|
+
content: "*";
|
|
3987
|
+
color: #f56c6c;
|
|
3988
|
+
margin-right: 4px;
|
|
3989
|
+
}
|
|
3990
|
+
[data-v-bb010ed0] .ant-calendar-picker {
|
|
3991
|
+
min-width: 0 !important;
|
|
3720
3992
|
}
|
|
3721
3993
|
|
|
3722
3994
|
.is_required[data-v-5d95830e]::before {
|
|
@@ -3877,6 +4149,216 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3877
4149
|
}
|
|
3878
4150
|
|
|
3879
4151
|
|
|
4152
|
+
[data-v-057ba4e5] .ant-modal-content {
|
|
4153
|
+
top: 0px !important;
|
|
4154
|
+
}
|
|
4155
|
+
[data-v-057ba4e5] .ant-modal-body {
|
|
4156
|
+
padding: 20px 12px !important;
|
|
4157
|
+
}
|
|
4158
|
+
.conference-room-content[data-v-057ba4e5] {
|
|
4159
|
+
-webkit-user-select: none;
|
|
4160
|
+
/* Safari */
|
|
4161
|
+
-moz-user-select: none;
|
|
4162
|
+
/* Firefox */
|
|
4163
|
+
/* IE/Edge */
|
|
4164
|
+
user-select: none;
|
|
4165
|
+
/* 标准语法 */
|
|
4166
|
+
}
|
|
4167
|
+
.conference-room-content .conference-room-content-hard[data-v-057ba4e5] {
|
|
4168
|
+
display: flex;
|
|
4169
|
+
justify-content: space-between;
|
|
4170
|
+
align-items: center;
|
|
4171
|
+
}
|
|
4172
|
+
.conference-room-content .conference-room-content-hard .left[data-v-057ba4e5] {
|
|
4173
|
+
display: flex;
|
|
4174
|
+
}
|
|
4175
|
+
.conference-room-content .conference-room-content-hard .left .left-date-type[data-v-057ba4e5] {
|
|
4176
|
+
margin-right: 20px;
|
|
4177
|
+
}
|
|
4178
|
+
.conference-room-content .conference-room-content-hard .left .left-date-content .anticon[data-v-057ba4e5] {
|
|
4179
|
+
cursor: pointer;
|
|
4180
|
+
color: #999;
|
|
4181
|
+
}
|
|
4182
|
+
.conference-room-content .conference-room-content-hard .left .left-date-content .left-date-content-show[data-v-057ba4e5] .ant-input {
|
|
4183
|
+
border: none;
|
|
4184
|
+
text-align: center;
|
|
4185
|
+
}
|
|
4186
|
+
.conference-room-content .conference-room-content-hard .left .left-date-content .left-date-content-show[data-v-057ba4e5] .anticon {
|
|
4187
|
+
display: none;
|
|
4188
|
+
}
|
|
4189
|
+
.conference-room-content .conference-room-content-hard .left .left-date-button[data-v-057ba4e5] {
|
|
4190
|
+
display: flex;
|
|
4191
|
+
align-items: center;
|
|
4192
|
+
margin-left: 12px;
|
|
4193
|
+
}
|
|
4194
|
+
.conference-room-content .conference-room-content-hard .right .right-content[data-v-057ba4e5] {
|
|
4195
|
+
display: flex;
|
|
4196
|
+
margin-right: 10px;
|
|
4197
|
+
}
|
|
4198
|
+
.conference-room-content .conference-room-content-hard .right .right-content .right-content-item[data-v-057ba4e5] {
|
|
4199
|
+
display: flex;
|
|
4200
|
+
margin-left: 20px;
|
|
4201
|
+
align-items: center;
|
|
4202
|
+
}
|
|
4203
|
+
.conference-room-content .conference-room-content-hard .right .right-content .right-content-item .color-0[data-v-057ba4e5] {
|
|
4204
|
+
background-color: #D7F4DA;
|
|
4205
|
+
width: 14px;
|
|
4206
|
+
height: 14px;
|
|
4207
|
+
border-radius: 7px 7px 7px 7px;
|
|
4208
|
+
}
|
|
4209
|
+
.conference-room-content .conference-room-content-hard .right .right-content .right-content-item .color-1[data-v-057ba4e5] {
|
|
4210
|
+
background-color: #FFD4AF;
|
|
4211
|
+
width: 14px;
|
|
4212
|
+
height: 14px;
|
|
4213
|
+
border-radius: 7px 7px 7px 7px;
|
|
4214
|
+
}
|
|
4215
|
+
.conference-room-content .conference-room-content-hard .right .right-content .right-content-item .color-2[data-v-057ba4e5] {
|
|
4216
|
+
background-color: #FFB5B5;
|
|
4217
|
+
width: 14px;
|
|
4218
|
+
height: 14px;
|
|
4219
|
+
border-radius: 7px 7px 7px 7px;
|
|
4220
|
+
}
|
|
4221
|
+
.conference-room-content .conference-room-content-hard .right .right-content .right-content-item .text[data-v-057ba4e5] {
|
|
4222
|
+
font-weight: 400;
|
|
4223
|
+
font-size: 14px;
|
|
4224
|
+
color: #333333;
|
|
4225
|
+
margin-left: 6px;
|
|
4226
|
+
}
|
|
4227
|
+
.conference-room-content .conference-room-body[data-v-057ba4e5] {
|
|
4228
|
+
margin-top: 16px;
|
|
4229
|
+
display: flex;
|
|
4230
|
+
}
|
|
4231
|
+
.conference-room-content .conference-room-body .conference-room-body-left[data-v-057ba4e5] {
|
|
4232
|
+
width: 243px;
|
|
4233
|
+
height: 559px;
|
|
4234
|
+
background: #F5F9FF;
|
|
4235
|
+
border-radius: 0px 0px 0px 0px;
|
|
4236
|
+
border: 1px solid #ECECEC;
|
|
4237
|
+
border-bottom: none;
|
|
4238
|
+
}
|
|
4239
|
+
.table[data-v-057ba4e5] {
|
|
4240
|
+
width: 100%;
|
|
4241
|
+
}
|
|
4242
|
+
.table tr td[data-v-057ba4e5]:first-child,
|
|
4243
|
+
.table tr th[data-v-057ba4e5]:first-child {
|
|
4244
|
+
width: 243px;
|
|
4245
|
+
background-color: #F5F9FF;
|
|
4246
|
+
}
|
|
4247
|
+
.table td[data-v-057ba4e5],
|
|
4248
|
+
.table th[data-v-057ba4e5] {
|
|
4249
|
+
border: 1px solid #f1f1f1;
|
|
4250
|
+
padding: 5px;
|
|
4251
|
+
vertical-align: middle;
|
|
4252
|
+
text-align: center;
|
|
4253
|
+
}
|
|
4254
|
+
.table td .ellipsis[data-v-057ba4e5],
|
|
4255
|
+
.table th .ellipsis[data-v-057ba4e5] {
|
|
4256
|
+
overflow: hidden;
|
|
4257
|
+
text-overflow: ellipsis;
|
|
4258
|
+
white-space: nowrap;
|
|
4259
|
+
width: 97%;
|
|
4260
|
+
}
|
|
4261
|
+
.table .td-bg-0[data-v-057ba4e5] {
|
|
4262
|
+
background-color: #fff;
|
|
4263
|
+
cursor: not-allowed;
|
|
4264
|
+
}
|
|
4265
|
+
.table .td-bg-0[data-v-057ba4e5]:hover {
|
|
4266
|
+
background-color: #efefee;
|
|
4267
|
+
}
|
|
4268
|
+
.table .td-bg-1[data-v-057ba4e5] {
|
|
4269
|
+
background-color: #d7f4da;
|
|
4270
|
+
cursor: pointer;
|
|
4271
|
+
}
|
|
4272
|
+
.table .td-bg-1[data-v-057ba4e5]:hover {
|
|
4273
|
+
background-color: rgba(215, 244, 218, 0.5);
|
|
4274
|
+
}
|
|
4275
|
+
.table .td-bg-2[data-v-057ba4e5] {
|
|
4276
|
+
background-color: #ffd4af;
|
|
4277
|
+
cursor: pointer;
|
|
4278
|
+
}
|
|
4279
|
+
.table .td-bg-2[data-v-057ba4e5]:hover {
|
|
4280
|
+
background-color: rgba(255, 212, 175, 0.5);
|
|
4281
|
+
}
|
|
4282
|
+
.table .td-bg-3[data-v-057ba4e5] {
|
|
4283
|
+
background-color: #ffb5b5;
|
|
4284
|
+
cursor: pointer;
|
|
4285
|
+
}
|
|
4286
|
+
.table .td-bg-3[data-v-057ba4e5]:hover {
|
|
4287
|
+
background-color: rgba(255, 181, 181, 0.5);
|
|
4288
|
+
}
|
|
4289
|
+
.input-no-border[data-v-057ba4e5] {
|
|
4290
|
+
border: none;
|
|
4291
|
+
}
|
|
4292
|
+
[data-v-057ba4e5] .ant-table-body {
|
|
4293
|
+
margin: 0 !important;
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4296
|
+
|
|
4297
|
+
.tooltip-data {
|
|
4298
|
+
width: -moz-max-content;
|
|
4299
|
+
width: max-content;
|
|
4300
|
+
.ant-tooltip-inner {
|
|
4301
|
+
background: rgba(0, 0, 0, 0.75) !important;
|
|
4302
|
+
}
|
|
4303
|
+
.tooltip-data-body {
|
|
4304
|
+
padding: 5px;
|
|
4305
|
+
font-size: 14px;
|
|
4306
|
+
color: #fff;
|
|
4307
|
+
border-bottom: 1px solid #fff;
|
|
4308
|
+
.tooltip-data-body-item {
|
|
4309
|
+
margin-bottom: 8px;
|
|
4310
|
+
div {
|
|
4311
|
+
margin-bottom: 8px;
|
|
4312
|
+
overflow: hidden;
|
|
4313
|
+
text-overflow: ellipsis;
|
|
4314
|
+
white-space: nowrap;
|
|
4315
|
+
}
|
|
4316
|
+
}
|
|
4317
|
+
}
|
|
4318
|
+
.tooltip-data-body:last-child {
|
|
4319
|
+
border-bottom: none;
|
|
4320
|
+
}
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
|
|
4324
|
+
[data-v-3afb410c] .ant-btn {
|
|
4325
|
+
display: flex;
|
|
4326
|
+
align-items: center;
|
|
4327
|
+
}
|
|
4328
|
+
[data-v-3afb410c] .ant-btn span {
|
|
4329
|
+
overflow: hidden;
|
|
4330
|
+
white-space: nowrap;
|
|
4331
|
+
text-overflow: ellipsis;
|
|
4332
|
+
display: inline-block;
|
|
4333
|
+
width: 100%;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
|
|
4337
|
+
[data-v-20ca2364] .ant-select-selection--multiple .ant-select-selection__rendered {
|
|
4338
|
+
line-height: 5px !important;
|
|
4339
|
+
}
|
|
4340
|
+
|
|
4341
|
+
.custom_form_item .label {
|
|
4342
|
+
text-align: justify;
|
|
4343
|
+
-moz-text-align-last: justify;
|
|
4344
|
+
text-align-last: justify;
|
|
4345
|
+
width: 90%;
|
|
4346
|
+
}
|
|
4347
|
+
|
|
4348
|
+
|
|
4349
|
+
[data-v-1196ccb3] .ant-btn {
|
|
4350
|
+
display: flex;
|
|
4351
|
+
align-items: center;
|
|
4352
|
+
}
|
|
4353
|
+
[data-v-1196ccb3] .ant-btn span {
|
|
4354
|
+
overflow: hidden;
|
|
4355
|
+
white-space: nowrap;
|
|
4356
|
+
text-overflow: ellipsis;
|
|
4357
|
+
display: inline-block;
|
|
4358
|
+
width: 100%;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4361
|
+
|
|
3880
4362
|
[data-v-662308b8] .ant-form-item-children {
|
|
3881
4363
|
position: relative;
|
|
3882
4364
|
height: 100%;
|
|
@@ -3966,26 +4448,29 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
3966
4448
|
}
|
|
3967
4449
|
|
|
3968
4450
|
|
|
3969
|
-
[data-v-
|
|
4451
|
+
[data-v-17ddbc7f] .ant-form-item-children {
|
|
3970
4452
|
display: block;
|
|
3971
4453
|
height: 100% !important;
|
|
3972
4454
|
line-height: initial!important;
|
|
3973
4455
|
}
|
|
3974
|
-
[data-v-
|
|
4456
|
+
[data-v-17ddbc7f] .ant-form-item-control {
|
|
3975
4457
|
padding: 5px;
|
|
3976
4458
|
width: 100% !important;
|
|
3977
4459
|
box-sizing: border-box;
|
|
3978
4460
|
height: 100%;
|
|
3979
4461
|
}
|
|
3980
|
-
[data-v-
|
|
4462
|
+
[data-v-17ddbc7f] .w-e-full-screen-container {
|
|
3981
4463
|
z-index: 10000 !important;
|
|
3982
4464
|
}
|
|
3983
|
-
[data-v-
|
|
3984
|
-
height:
|
|
4465
|
+
[data-v-17ddbc7f] .w-e-text-container .w-e-scroll {
|
|
4466
|
+
height: 100%;
|
|
3985
4467
|
}
|
|
3986
|
-
[data-v-
|
|
4468
|
+
[data-v-17ddbc7f] .w-e-text-container p {
|
|
3987
4469
|
margin: 0 !important;
|
|
3988
4470
|
}
|
|
4471
|
+
[data-v-17ddbc7f] .w-e-full-screen-container .w-e-text-container .w-e-scroll {
|
|
4472
|
+
height: 100%;
|
|
4473
|
+
}
|
|
3989
4474
|
|
|
3990
4475
|
:root,
|
|
3991
4476
|
:host {
|
|
@@ -4077,22 +4562,22 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4077
4562
|
}
|
|
4078
4563
|
|
|
4079
4564
|
|
|
4080
|
-
[data-v-
|
|
4565
|
+
[data-v-291e1d66] .ant-popover-inner-content {
|
|
4081
4566
|
width: 190px;
|
|
4082
4567
|
}
|
|
4083
|
-
[data-v-
|
|
4568
|
+
[data-v-291e1d66] .ant-form-item .ant-form-item-control-wrapper:first-child {
|
|
4084
4569
|
width: calc(100% - 0px) !important;
|
|
4085
4570
|
}
|
|
4086
|
-
[data-v-
|
|
4571
|
+
[data-v-291e1d66] .ant-form-item-control {
|
|
4087
4572
|
height: 100%;
|
|
4088
4573
|
}
|
|
4089
4574
|
/***label对齐方式*/
|
|
4090
|
-
.custom_form_item .break[data-v-
|
|
4575
|
+
.custom_form_item .break[data-v-291e1d66] {
|
|
4091
4576
|
white-space: normal;
|
|
4092
4577
|
word-break: break-all;
|
|
4093
4578
|
word-wrap: break-word;
|
|
4094
4579
|
}
|
|
4095
|
-
.custom_form_item .align-between[data-v-
|
|
4580
|
+
.custom_form_item .align-between[data-v-291e1d66] {
|
|
4096
4581
|
white-space: normal;
|
|
4097
4582
|
word-break: break-all;
|
|
4098
4583
|
word-wrap: break-word;
|
|
@@ -4101,28 +4586,28 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4101
4586
|
text-align-last: justify;
|
|
4102
4587
|
width: 80%;
|
|
4103
4588
|
}
|
|
4104
|
-
.custom_form_item .align-middle[data-v-
|
|
4589
|
+
.custom_form_item .align-middle[data-v-291e1d66] {
|
|
4105
4590
|
white-space: normal;
|
|
4106
4591
|
word-break: break-all;
|
|
4107
4592
|
word-wrap: break-word;
|
|
4108
4593
|
text-align: center;
|
|
4109
4594
|
width: 80%;
|
|
4110
4595
|
}
|
|
4111
|
-
.custom_form_item .align-left[data-v-
|
|
4596
|
+
.custom_form_item .align-left[data-v-291e1d66] {
|
|
4112
4597
|
white-space: normal;
|
|
4113
4598
|
word-break: break-all;
|
|
4114
4599
|
word-wrap: break-word;
|
|
4115
4600
|
text-align: left;
|
|
4116
4601
|
width: 80%;
|
|
4117
4602
|
}
|
|
4118
|
-
.custom_form_item .align-right[data-v-
|
|
4603
|
+
.custom_form_item .align-right[data-v-291e1d66] {
|
|
4119
4604
|
white-space: normal;
|
|
4120
4605
|
word-break: break-all;
|
|
4121
4606
|
word-wrap: break-word;
|
|
4122
4607
|
text-align: right;
|
|
4123
4608
|
width: 80%;
|
|
4124
4609
|
}
|
|
4125
|
-
.custom_form_item .align-center[data-v-
|
|
4610
|
+
.custom_form_item .align-center[data-v-291e1d66] {
|
|
4126
4611
|
white-space: normal;
|
|
4127
4612
|
word-break: break-all;
|
|
4128
4613
|
word-wrap: break-word;
|
|
@@ -4131,52 +4616,52 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4131
4616
|
}
|
|
4132
4617
|
/***label对齐方式 */
|
|
4133
4618
|
/*****公共boder ****/
|
|
4134
|
-
[data-v-
|
|
4619
|
+
[data-v-291e1d66] .ant-form-item-control-wrapper {
|
|
4135
4620
|
border-right: none !important;
|
|
4136
4621
|
border-bottom: 1px solid #000;
|
|
4137
4622
|
}
|
|
4138
|
-
[data-v-
|
|
4623
|
+
[data-v-291e1d66] .ant-form-item-label {
|
|
4139
4624
|
border-bottom: 1px solid #000;
|
|
4140
4625
|
}
|
|
4141
|
-
.verify-right[data-v-
|
|
4626
|
+
.verify-right[data-v-291e1d66] {
|
|
4142
4627
|
border-right: 1px solid #000;
|
|
4143
4628
|
}
|
|
4144
|
-
.custom_form_item_special[data-v-
|
|
4629
|
+
.custom_form_item_special[data-v-291e1d66] .ant-form-item-children {
|
|
4145
4630
|
height: 100%;
|
|
4146
4631
|
}
|
|
4147
4632
|
/*****公共boder ****/
|
|
4148
|
-
.custom_form_item_special[data-v-
|
|
4633
|
+
.custom_form_item_special[data-v-291e1d66] .ant-form-item .ant-form-item-control-wrapper:first-child .ant-form-item-control {
|
|
4149
4634
|
width: 100%;
|
|
4150
4635
|
}
|
|
4151
|
-
.verify-no-border input[data-v-
|
|
4152
|
-
.verify-no-border textarea[data-v-
|
|
4636
|
+
.verify-no-border input[data-v-291e1d66],
|
|
4637
|
+
.verify-no-border textarea[data-v-291e1d66] {
|
|
4153
4638
|
display: block;
|
|
4154
4639
|
background: none;
|
|
4155
4640
|
height: 90%;
|
|
4156
4641
|
width: 98%;
|
|
4157
4642
|
margin: 0 auto;
|
|
4158
4643
|
}
|
|
4159
|
-
.verify-no-border input[data-v-
|
|
4160
|
-
.verify-no-border textarea[data-v-
|
|
4644
|
+
.verify-no-border input[data-v-291e1d66]:disabled,
|
|
4645
|
+
.verify-no-border textarea[data-v-291e1d66]:disabled {
|
|
4161
4646
|
background: none !important;
|
|
4162
4647
|
color: #333;
|
|
4163
4648
|
}
|
|
4164
|
-
.verify[data-v-
|
|
4649
|
+
.verify[data-v-291e1d66] {
|
|
4165
4650
|
position: relative;
|
|
4166
4651
|
}
|
|
4167
|
-
.verify .inner-form-item[data-v-
|
|
4652
|
+
.verify .inner-form-item[data-v-291e1d66] .ant-form-item-control-wrapper {
|
|
4168
4653
|
border-bottom: none !important;
|
|
4169
4654
|
}
|
|
4170
|
-
.verify .inner-form-item[data-v-
|
|
4655
|
+
.verify .inner-form-item[data-v-291e1d66] .ant-form-item-children {
|
|
4171
4656
|
display: flex;
|
|
4172
4657
|
align-items: center;
|
|
4173
4658
|
justify-content: center;
|
|
4174
4659
|
width: 100%;
|
|
4175
4660
|
}
|
|
4176
|
-
.verify .inner-form-item[data-v-
|
|
4661
|
+
.verify .inner-form-item[data-v-291e1d66] .ant-form-item-children .textarea-wrapper {
|
|
4177
4662
|
width: 100%;
|
|
4178
4663
|
}
|
|
4179
|
-
.verify .verify-left[data-v-
|
|
4664
|
+
.verify .verify-left[data-v-291e1d66] {
|
|
4180
4665
|
position: absolute;
|
|
4181
4666
|
left: 0;
|
|
4182
4667
|
top: 0;
|
|
@@ -4187,57 +4672,57 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4187
4672
|
-moz-text-align-last: justify;
|
|
4188
4673
|
text-align-last: justify;
|
|
4189
4674
|
}
|
|
4190
|
-
.verify .verify-right[data-v-
|
|
4675
|
+
.verify .verify-right[data-v-291e1d66] {
|
|
4191
4676
|
height: 100%;
|
|
4192
4677
|
width: 100%;
|
|
4193
4678
|
position: relative;
|
|
4194
4679
|
}
|
|
4195
|
-
.verify .verify-right .verify-text[data-v-
|
|
4680
|
+
.verify .verify-right .verify-text[data-v-291e1d66] {
|
|
4196
4681
|
position: relative;
|
|
4197
4682
|
height: 70%;
|
|
4198
4683
|
padding-top: 5px;
|
|
4199
4684
|
border-bottom: 1px solid #e6e6e6;
|
|
4200
4685
|
}
|
|
4201
|
-
.verify .verify-right .verify-text .verify-btn[data-v-
|
|
4686
|
+
.verify .verify-right .verify-text .verify-btn[data-v-291e1d66] {
|
|
4202
4687
|
position: absolute;
|
|
4203
4688
|
right: 10px;
|
|
4204
4689
|
bottom: 10px;
|
|
4205
4690
|
z-index: 10;
|
|
4206
4691
|
}
|
|
4207
|
-
.verify .verify-right .verify-text span[data-v-
|
|
4692
|
+
.verify .verify-right .verify-text span[data-v-291e1d66] {
|
|
4208
4693
|
display: block;
|
|
4209
4694
|
border: none;
|
|
4210
4695
|
height: 100%;
|
|
4211
4696
|
}
|
|
4212
|
-
.verify .verify-right .verify-seal[data-v-
|
|
4697
|
+
.verify .verify-right .verify-seal[data-v-291e1d66] {
|
|
4213
4698
|
position: absolute;
|
|
4214
4699
|
width: 35mm;
|
|
4215
4700
|
height: 35mm;
|
|
4216
4701
|
z-index: 9 !important;
|
|
4217
4702
|
}
|
|
4218
|
-
.verify .verify-right .verify-seal img[data-v-
|
|
4703
|
+
.verify .verify-right .verify-seal img[data-v-291e1d66] {
|
|
4219
4704
|
width: 35mm;
|
|
4220
4705
|
height: 35mm;
|
|
4221
4706
|
}
|
|
4222
|
-
.verify .verify-right .verify-icon[data-v-
|
|
4707
|
+
.verify .verify-right .verify-icon[data-v-291e1d66] {
|
|
4223
4708
|
position: absolute;
|
|
4224
4709
|
right: 3%;
|
|
4225
4710
|
top: 3%;
|
|
4226
4711
|
z-index: 20;
|
|
4227
4712
|
cursor: pointer;
|
|
4228
4713
|
}
|
|
4229
|
-
.verify .verify-option[data-v-
|
|
4714
|
+
.verify .verify-option[data-v-291e1d66] {
|
|
4230
4715
|
display: flex;
|
|
4231
4716
|
height: 30%;
|
|
4232
4717
|
}
|
|
4233
|
-
.verify .verify-option > div[data-v-
|
|
4718
|
+
.verify .verify-option > div[data-v-291e1d66] {
|
|
4234
4719
|
flex: 1;
|
|
4235
4720
|
border-right: 1px solid #e6e6e6;
|
|
4236
4721
|
display: flex;
|
|
4237
4722
|
justify-content: space-between;
|
|
4238
4723
|
align-items: center;
|
|
4239
4724
|
}
|
|
4240
|
-
.verify .verify-option > div span[data-v-
|
|
4725
|
+
.verify .verify-option > div span[data-v-291e1d66] {
|
|
4241
4726
|
text-align: center;
|
|
4242
4727
|
flex: 2;
|
|
4243
4728
|
border-right: 1px solid #e6e6e6;
|
|
@@ -4246,36 +4731,36 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4246
4731
|
align-items: center;
|
|
4247
4732
|
justify-content: center;
|
|
4248
4733
|
}
|
|
4249
|
-
.verify .verify-option > div span + span[data-v-
|
|
4250
|
-
.verify .verify-option > div span + .inner-form-item[data-v-
|
|
4734
|
+
.verify .verify-option > div span + span[data-v-291e1d66],
|
|
4735
|
+
.verify .verify-option > div span + .inner-form-item[data-v-291e1d66] {
|
|
4251
4736
|
border-right: none;
|
|
4252
4737
|
flex: 4;
|
|
4253
4738
|
}
|
|
4254
|
-
.verify .verify-option > div:nth-child(2) > span[data-v-
|
|
4739
|
+
.verify .verify-option > div:nth-child(2) > span[data-v-291e1d66]:last-child {
|
|
4255
4740
|
box-sizing: border-box;
|
|
4256
4741
|
padding: 1px;
|
|
4257
4742
|
}
|
|
4258
|
-
.verify .verify-option div[data-v-
|
|
4743
|
+
.verify .verify-option div[data-v-291e1d66]:last-child {
|
|
4259
4744
|
border-right: none;
|
|
4260
4745
|
}
|
|
4261
|
-
.verify-style_label_top > .ant-form-item[data-v-
|
|
4746
|
+
.verify-style_label_top > .ant-form-item[data-v-291e1d66] {
|
|
4262
4747
|
display: flex;
|
|
4263
4748
|
flex-direction: column;
|
|
4264
4749
|
height: 100%;
|
|
4265
4750
|
}
|
|
4266
|
-
.verify-style_label_top > .ant-form-item[data-v-
|
|
4751
|
+
.verify-style_label_top > .ant-form-item[data-v-291e1d66] .verify-right {
|
|
4267
4752
|
height: 100% !important;
|
|
4268
4753
|
}
|
|
4269
|
-
.verify-style_label_top > .ant-form-item[data-v-
|
|
4754
|
+
.verify-style_label_top > .ant-form-item[data-v-291e1d66] .ant-form-item-label {
|
|
4270
4755
|
position: relative;
|
|
4271
4756
|
width: 100% !important;
|
|
4272
4757
|
height: 50px;
|
|
4273
4758
|
border-bottom: 1px solid #e6e6e6 !important;
|
|
4274
4759
|
}
|
|
4275
|
-
.verify-style_label_top > .ant-form-item[data-v-
|
|
4760
|
+
.verify-style_label_top > .ant-form-item[data-v-291e1d66] .ant-form-item-label label {
|
|
4276
4761
|
width: 100%;
|
|
4277
4762
|
}
|
|
4278
|
-
.verify-style_label_top > .ant-form-item[data-v-
|
|
4763
|
+
.verify-style_label_top > .ant-form-item[data-v-291e1d66] .ant-form-item-label .align-between {
|
|
4279
4764
|
width: 100% !important;
|
|
4280
4765
|
align-items: flex-start;
|
|
4281
4766
|
-moz-text-align-last: left;
|
|
@@ -4284,63 +4769,63 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4284
4769
|
letter-spacing: 8px;
|
|
4285
4770
|
text-indent: 10px;
|
|
4286
4771
|
}
|
|
4287
|
-
.verify-style_label_top > .ant-form-item[data-v-
|
|
4772
|
+
.verify-style_label_top > .ant-form-item[data-v-291e1d66] .ant-form-item-control-wrapper {
|
|
4288
4773
|
width: 100%!important;
|
|
4289
4774
|
height: initial !important;
|
|
4290
4775
|
flex: 1;
|
|
4291
4776
|
overflow: hidden;
|
|
4292
4777
|
}
|
|
4293
|
-
.verify-style_grid_verify[data-v-
|
|
4778
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify .ant-form-item-control-wrapper {
|
|
4294
4779
|
border-right: none;
|
|
4295
4780
|
border-bottom: none;
|
|
4296
4781
|
}
|
|
4297
|
-
.verify-style_grid_verify[data-v-
|
|
4782
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify .ant-form-item-label {
|
|
4298
4783
|
border-bottom: none;
|
|
4299
4784
|
}
|
|
4300
|
-
.verify-style_grid_verify .verify-style_label_top[data-v-
|
|
4785
|
+
.verify-style_grid_verify .verify-style_label_top[data-v-291e1d66] .ant-form-item-label {
|
|
4301
4786
|
border-right: none !important;
|
|
4302
4787
|
}
|
|
4303
|
-
.verify-style_grid_verify[data-v-
|
|
4788
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right {
|
|
4304
4789
|
border: none;
|
|
4305
4790
|
}
|
|
4306
|
-
.verify-style_grid_verify[data-v-
|
|
4791
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-text {
|
|
4307
4792
|
height: 50%;
|
|
4308
4793
|
}
|
|
4309
|
-
.verify-style_grid_verify[data-v-
|
|
4794
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option {
|
|
4310
4795
|
height: 50%;
|
|
4311
4796
|
flex-wrap: wrap;
|
|
4312
4797
|
display: grid;
|
|
4313
4798
|
grid-template-rows: repeat(2, 50%);
|
|
4314
4799
|
grid-template-columns: repeat(2, 50%);
|
|
4315
4800
|
}
|
|
4316
|
-
.verify-style_grid_verify[data-v-
|
|
4801
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div:first-child {
|
|
4317
4802
|
grid-area: 1 / span 1 / span 1;
|
|
4318
4803
|
}
|
|
4319
|
-
.verify-style_grid_verify[data-v-
|
|
4804
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div:nth-child(2) {
|
|
4320
4805
|
grid-area: 0.5 / span 1 / span 1;
|
|
4321
4806
|
}
|
|
4322
|
-
.verify-style_grid_verify[data-v-
|
|
4807
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div:nth-child(3) {
|
|
4323
4808
|
grid-area: 2 / span 2 / span 1;
|
|
4324
4809
|
}
|
|
4325
|
-
.verify-style_grid_verify[data-v-
|
|
4810
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div {
|
|
4326
4811
|
height: 100%;
|
|
4327
4812
|
box-sizing: border-box;
|
|
4328
4813
|
}
|
|
4329
|
-
.verify-style_grid_verify[data-v-
|
|
4814
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div > span:first-child {
|
|
4330
4815
|
flex: initial;
|
|
4331
4816
|
padding: 0 3px;
|
|
4332
4817
|
}
|
|
4333
|
-
.verify-style_grid_verify[data-v-
|
|
4818
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div span + span {
|
|
4334
4819
|
flex: 3;
|
|
4335
4820
|
overflow: hidden;
|
|
4336
4821
|
}
|
|
4337
|
-
.verify-style_grid_verify[data-v-
|
|
4822
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div:first-child {
|
|
4338
4823
|
flex: 0 1 calc(50% + 20px);
|
|
4339
4824
|
}
|
|
4340
|
-
.verify-style_grid_verify[data-v-
|
|
4825
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div:nth-child(2) {
|
|
4341
4826
|
border-right: none;
|
|
4342
4827
|
}
|
|
4343
|
-
.verify-style_grid_verify[data-v-
|
|
4828
|
+
.verify-style_grid_verify[data-v-291e1d66] .verify-right .verify-option > div:last-child {
|
|
4344
4829
|
flex: 0 0 100%;
|
|
4345
4830
|
border-top: 1px solid #e6e6e6;
|
|
4346
4831
|
}
|
|
@@ -4483,44 +4968,44 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4483
4968
|
}
|
|
4484
4969
|
|
|
4485
4970
|
|
|
4486
|
-
[data-v-
|
|
4971
|
+
[data-v-3db53b14] .ant-upload-picture-card-wrapper {
|
|
4487
4972
|
flex-wrap: wrap;
|
|
4488
4973
|
}
|
|
4489
|
-
[data-v-
|
|
4974
|
+
[data-v-3db53b14] .ant-upload-list {
|
|
4490
4975
|
flex-wrap: wrap;
|
|
4491
4976
|
}
|
|
4492
|
-
[data-v-
|
|
4977
|
+
[data-v-3db53b14] .ant-form-item-control-wrapper {
|
|
4493
4978
|
border: none !important;
|
|
4494
4979
|
background-color: initial!important;
|
|
4495
4980
|
}
|
|
4496
|
-
[data-v-
|
|
4981
|
+
[data-v-3db53b14] .ant-form-item {
|
|
4497
4982
|
display: flex;
|
|
4498
4983
|
}
|
|
4499
|
-
[data-v-
|
|
4984
|
+
[data-v-3db53b14] .ant-form-item-label {
|
|
4500
4985
|
border: none !important;
|
|
4501
4986
|
background-color: initial!important;
|
|
4502
4987
|
}
|
|
4503
|
-
[data-v-
|
|
4988
|
+
[data-v-3db53b14] .custom_form_item .ant-form-item {
|
|
4504
4989
|
margin-bottom: 0;
|
|
4505
4990
|
}
|
|
4506
|
-
[data-v-
|
|
4991
|
+
[data-v-3db53b14] .custom_form_item .ant-form-item > .ant-form-item-label {
|
|
4507
4992
|
width: 100px !important;
|
|
4508
4993
|
}
|
|
4509
|
-
[data-v-
|
|
4994
|
+
[data-v-3db53b14] .custom_form_item .ant-form-item > .ant-form-item-control-wrapper {
|
|
4510
4995
|
width: calc(100% - 100px) !important;
|
|
4511
4996
|
}
|
|
4512
|
-
[data-v-
|
|
4997
|
+
[data-v-3db53b14] .ant-form-item,[data-v-3db53b14] .custom_form_item {
|
|
4513
4998
|
height: -moz-max-content !important;
|
|
4514
4999
|
height: max-content !important;
|
|
4515
5000
|
}
|
|
4516
5001
|
|
|
4517
5002
|
/***label对齐方式 */
|
|
4518
|
-
[data-v-
|
|
5003
|
+
[data-v-3d82d3aa] .custom_form_item .break {
|
|
4519
5004
|
white-space: normal;
|
|
4520
5005
|
word-break: break-all;
|
|
4521
5006
|
word-wrap: break-word;
|
|
4522
5007
|
}
|
|
4523
|
-
[data-v-
|
|
5008
|
+
[data-v-3d82d3aa] .custom_form_item .align-between {
|
|
4524
5009
|
white-space: normal;
|
|
4525
5010
|
word-break: break-all;
|
|
4526
5011
|
word-wrap: break-word;
|
|
@@ -4529,28 +5014,28 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4529
5014
|
text-align-last: justify;
|
|
4530
5015
|
width: 80%;
|
|
4531
5016
|
}
|
|
4532
|
-
[data-v-
|
|
5017
|
+
[data-v-3d82d3aa] .custom_form_item .align-middle {
|
|
4533
5018
|
white-space: normal;
|
|
4534
5019
|
word-break: break-all;
|
|
4535
5020
|
word-wrap: break-word;
|
|
4536
5021
|
text-align: center;
|
|
4537
5022
|
width: 80%;
|
|
4538
5023
|
}
|
|
4539
|
-
[data-v-
|
|
5024
|
+
[data-v-3d82d3aa] .custom_form_item .align-left {
|
|
4540
5025
|
white-space: normal;
|
|
4541
5026
|
word-break: break-all;
|
|
4542
5027
|
word-wrap: break-word;
|
|
4543
5028
|
text-align: left;
|
|
4544
5029
|
width: 80%;
|
|
4545
5030
|
}
|
|
4546
|
-
[data-v-
|
|
5031
|
+
[data-v-3d82d3aa] .custom_form_item .align-right {
|
|
4547
5032
|
white-space: normal;
|
|
4548
5033
|
word-break: break-all;
|
|
4549
5034
|
word-wrap: break-word;
|
|
4550
5035
|
text-align: right;
|
|
4551
5036
|
width: 80%;
|
|
4552
5037
|
}
|
|
4553
|
-
[data-v-
|
|
5038
|
+
[data-v-3d82d3aa] .custom_form_item .align-center {
|
|
4554
5039
|
white-space: normal;
|
|
4555
5040
|
word-break: break-all;
|
|
4556
5041
|
word-wrap: break-word;
|
|
@@ -4559,15 +5044,15 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4559
5044
|
}
|
|
4560
5045
|
/***label对齐方式 */
|
|
4561
5046
|
/*****公共boder ****/
|
|
4562
|
-
[data-v-
|
|
5047
|
+
[data-v-3d82d3aa] .ant-form-item-control-wrapper {
|
|
4563
5048
|
border-right: 1px solid #000;
|
|
4564
5049
|
border-bottom: 1px solid #000;
|
|
4565
5050
|
}
|
|
4566
|
-
[data-v-
|
|
5051
|
+
[data-v-3d82d3aa] .ant-form-item-label {
|
|
4567
5052
|
border-bottom: 1px solid #000;
|
|
4568
5053
|
}
|
|
4569
5054
|
/*****公共boder ****/
|
|
4570
|
-
.correction[data-v-
|
|
5055
|
+
.correction[data-v-3d82d3aa] {
|
|
4571
5056
|
display: block;
|
|
4572
5057
|
position: absolute;
|
|
4573
5058
|
right: 1px;
|
|
@@ -4580,11 +5065,11 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4580
5065
|
background-size: 100%;
|
|
4581
5066
|
}
|
|
4582
5067
|
|
|
4583
|
-
.sub-table-col[data-v-
|
|
5068
|
+
.sub-table-col[data-v-d6fab0dc] {
|
|
4584
5069
|
display: flex;
|
|
4585
5070
|
box-sizing: border-box;
|
|
4586
5071
|
}
|
|
4587
|
-
.sub-table-col > span[data-v-
|
|
5072
|
+
.sub-table-col > span[data-v-d6fab0dc] {
|
|
4588
5073
|
flex: 2;
|
|
4589
5074
|
border-bottom: 1px solid #000;
|
|
4590
5075
|
border-right: 1px solid #000;
|
|
@@ -4592,22 +5077,22 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4592
5077
|
line-height: 40px;
|
|
4593
5078
|
text-align: center;
|
|
4594
5079
|
}
|
|
4595
|
-
.sub-table-col > .last-one[data-v-
|
|
5080
|
+
.sub-table-col > .last-one[data-v-d6fab0dc] {
|
|
4596
5081
|
width: 87px;
|
|
4597
5082
|
flex: 0 0 87px;
|
|
4598
5083
|
border-right: 1px solid #333;
|
|
4599
5084
|
border-bottom: 1px solid #333;
|
|
4600
5085
|
}
|
|
4601
|
-
.sub-table-col-no-border > span[data-v-
|
|
5086
|
+
.sub-table-col-no-border > span[data-v-d6fab0dc] {
|
|
4602
5087
|
border: none;
|
|
4603
5088
|
height: auto;
|
|
4604
5089
|
width: 0;
|
|
4605
5090
|
}
|
|
4606
|
-
.sub-table-col-no-border > .sub-table-title[data-v-
|
|
4607
|
-
.sub-table-col-no-border > .sub-table-item[data-v-
|
|
5091
|
+
.sub-table-col-no-border > .sub-table-title[data-v-d6fab0dc]:last-child,
|
|
5092
|
+
.sub-table-col-no-border > .sub-table-item[data-v-d6fab0dc]:last-child {
|
|
4608
5093
|
border-right: none !important;
|
|
4609
5094
|
}
|
|
4610
|
-
.sub-table-col-no-border > .last-one[data-v-
|
|
5095
|
+
.sub-table-col-no-border > .last-one[data-v-d6fab0dc] {
|
|
4611
5096
|
width: 87px;
|
|
4612
5097
|
flex: 0 0 87px;
|
|
4613
5098
|
display: flex;
|
|
@@ -4615,46 +5100,46 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4615
5100
|
align-items: center;
|
|
4616
5101
|
}
|
|
4617
5102
|
|
|
4618
|
-
.t-border[data-v-
|
|
5103
|
+
.t-border[data-v-cfe8f950] {
|
|
4619
5104
|
border-right: 1px solid #333;
|
|
4620
5105
|
border-bottom: 1px solid #333;
|
|
4621
5106
|
}
|
|
4622
|
-
[data-v-
|
|
5107
|
+
[data-v-cfe8f950] * {
|
|
4623
5108
|
font-size: var(--paperFontSize);
|
|
4624
5109
|
}
|
|
4625
|
-
[data-v-
|
|
5110
|
+
[data-v-cfe8f950] .custom_form_item {
|
|
4626
5111
|
height: -moz-fit-content;
|
|
4627
5112
|
height: fit-content;
|
|
4628
5113
|
}
|
|
4629
|
-
.save-pdf[data-v-
|
|
5114
|
+
.save-pdf[data-v-cfe8f950] .ant-input {
|
|
4630
5115
|
border: none !important;
|
|
4631
5116
|
}
|
|
4632
|
-
.save-pdf[data-v-
|
|
5117
|
+
.save-pdf[data-v-cfe8f950] .ant-select-selection {
|
|
4633
5118
|
border: none !important;
|
|
4634
5119
|
}
|
|
4635
|
-
.save-pdf[data-v-
|
|
5120
|
+
.save-pdf[data-v-cfe8f950] .ant-select-arrow svg {
|
|
4636
5121
|
display: none;
|
|
4637
5122
|
}
|
|
4638
|
-
.save-pdf[data-v-
|
|
5123
|
+
.save-pdf[data-v-cfe8f950] .ant-upload.ant-upload-select-picture-card {
|
|
4639
5124
|
display: none;
|
|
4640
5125
|
}
|
|
4641
|
-
.save-pdf[data-v-
|
|
5126
|
+
.save-pdf[data-v-cfe8f950] .anticon svg {
|
|
4642
5127
|
display: none;
|
|
4643
5128
|
}
|
|
4644
|
-
.save-pdf[data-v-
|
|
5129
|
+
.save-pdf[data-v-cfe8f950] .ant-time-picker-input {
|
|
4645
5130
|
border: none !important;
|
|
4646
5131
|
}
|
|
4647
|
-
.save-pdf[data-v-
|
|
5132
|
+
.save-pdf[data-v-cfe8f950] .ant-upload.ant-upload-select {
|
|
4648
5133
|
display: none;
|
|
4649
5134
|
}
|
|
4650
5135
|
/**打印非固定高度标签 高度不确定bug**/
|
|
4651
|
-
.computed-wrap[data-v-
|
|
5136
|
+
.computed-wrap[data-v-cfe8f950] {
|
|
4652
5137
|
background: #f5f5f5;
|
|
4653
5138
|
}
|
|
4654
|
-
.computed-wrap .item[data-v-
|
|
5139
|
+
.computed-wrap .item[data-v-cfe8f950] {
|
|
4655
5140
|
display: flex;
|
|
4656
5141
|
}
|
|
4657
|
-
.computed-wrap .item > div[data-v-
|
|
5142
|
+
.computed-wrap .item > div[data-v-cfe8f950] {
|
|
4658
5143
|
height: 35px;
|
|
4659
5144
|
line-height: 35px;
|
|
4660
5145
|
flex: 1;
|
|
@@ -4662,130 +5147,130 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4662
5147
|
border-bottom: 1px solid #000;
|
|
4663
5148
|
text-align: center;
|
|
4664
5149
|
}
|
|
4665
|
-
.computed-wrap .item > div + div[data-v-
|
|
5150
|
+
.computed-wrap .item > div + div[data-v-cfe8f950] {
|
|
4666
5151
|
flex: 2;
|
|
4667
5152
|
}
|
|
4668
|
-
.layout .paper[data-v-
|
|
5153
|
+
.layout .paper[data-v-cfe8f950] {
|
|
4669
5154
|
position: relative;
|
|
4670
5155
|
}
|
|
4671
|
-
.layout .paper .form-title[data-v-
|
|
5156
|
+
.layout .paper .form-title[data-v-cfe8f950] {
|
|
4672
5157
|
text-align: center;
|
|
4673
5158
|
font-weight: 600;
|
|
4674
5159
|
font-size: 16px;
|
|
4675
5160
|
min-height: 40px;
|
|
4676
5161
|
line-height: 30px;
|
|
4677
5162
|
}
|
|
4678
|
-
.row-item[data-v-
|
|
5163
|
+
.row-item[data-v-cfe8f950] {
|
|
4679
5164
|
height: -moz-fit-content;
|
|
4680
5165
|
height: fit-content;
|
|
4681
5166
|
/**打印非固定高度标签 高度不确定bug**/
|
|
4682
5167
|
}
|
|
4683
|
-
.no-row-item[data-v-
|
|
5168
|
+
.no-row-item[data-v-cfe8f950] {
|
|
4684
5169
|
border-right: none;
|
|
4685
5170
|
border-bottom: none;
|
|
4686
5171
|
}
|
|
4687
5172
|
/****page边框内的 ***/
|
|
4688
|
-
.page-border[data-v-
|
|
5173
|
+
.page-border[data-v-cfe8f950] {
|
|
4689
5174
|
background: #fff;
|
|
4690
5175
|
box-sizing: border-box;
|
|
4691
5176
|
}
|
|
4692
|
-
.page-border .row-item[data-v-
|
|
5177
|
+
.page-border .row-item[data-v-cfe8f950]:first-child {
|
|
4693
5178
|
border-top: 1px solid #000;
|
|
4694
5179
|
}
|
|
4695
|
-
.page-border .row-item[data-v-
|
|
5180
|
+
.page-border .row-item[data-v-cfe8f950] {
|
|
4696
5181
|
border-left: 1px solid #000;
|
|
4697
5182
|
}
|
|
4698
|
-
.page-border .item-bottom[data-v-
|
|
5183
|
+
.page-border .item-bottom[data-v-cfe8f950] {
|
|
4699
5184
|
border-bottom: 1px solid #000;
|
|
4700
5185
|
}
|
|
4701
|
-
.page-border .row-item[data-v-
|
|
5186
|
+
.page-border .row-item[data-v-cfe8f950]:not(:last-child) {
|
|
4702
5187
|
position: relative;
|
|
4703
5188
|
}
|
|
4704
|
-
.page-border li.sortable-chosen[data-v-
|
|
5189
|
+
.page-border li.sortable-chosen[data-v-cfe8f950] {
|
|
4705
5190
|
height: 2px !important;
|
|
4706
5191
|
overflow: hidden !important;
|
|
4707
5192
|
background: red !important;
|
|
4708
5193
|
}
|
|
4709
|
-
.page-border .ant-time-picker-panel[data-v-
|
|
5194
|
+
.page-border .ant-time-picker-panel[data-v-cfe8f950] {
|
|
4710
5195
|
z-index: 200000 !important;
|
|
4711
5196
|
}
|
|
4712
|
-
.page-border .ant-calendar-picker-container[data-v-
|
|
5197
|
+
.page-border .ant-calendar-picker-container[data-v-cfe8f950] {
|
|
4713
5198
|
z-index: 200000 !important;
|
|
4714
5199
|
}
|
|
4715
|
-
[data-v-
|
|
5200
|
+
[data-v-cfe8f950] .ant-time-picker-panel {
|
|
4716
5201
|
z-index: 9999 !important;
|
|
4717
5202
|
}
|
|
4718
|
-
.ant-calendar-picker-container[data-v-
|
|
5203
|
+
.ant-calendar-picker-container[data-v-cfe8f950] {
|
|
4719
5204
|
z-index: 200000 !important;
|
|
4720
5205
|
}
|
|
4721
|
-
[data-v-
|
|
5206
|
+
[data-v-cfe8f950] .ant-form-item-children {
|
|
4722
5207
|
display: block;
|
|
4723
5208
|
}
|
|
4724
|
-
[data-v-
|
|
5209
|
+
[data-v-cfe8f950] .ant-form-item {
|
|
4725
5210
|
width: 100%;
|
|
4726
5211
|
height: 100%;
|
|
4727
5212
|
margin-bottom: 0;
|
|
4728
5213
|
display: flex;
|
|
4729
5214
|
}
|
|
4730
|
-
[data-v-
|
|
5215
|
+
[data-v-cfe8f950] .ant-form-item .is_required::before {
|
|
4731
5216
|
content: "*";
|
|
4732
5217
|
color: #f56c6c;
|
|
4733
5218
|
margin-right: 4px;
|
|
4734
5219
|
}
|
|
4735
|
-
[data-v-
|
|
5220
|
+
[data-v-cfe8f950] .ant-form-item .ant-form-item-label {
|
|
4736
5221
|
border-right: 1px solid #000;
|
|
4737
5222
|
}
|
|
4738
|
-
[data-v-
|
|
5223
|
+
[data-v-cfe8f950] .ant-form-item .ant-form-item-label label {
|
|
4739
5224
|
display: flex;
|
|
4740
5225
|
justify-content: center;
|
|
4741
5226
|
align-items: center;
|
|
4742
5227
|
height: 100%;
|
|
4743
5228
|
}
|
|
4744
|
-
[data-v-
|
|
5229
|
+
[data-v-cfe8f950] .ant-form-item .ant-form-item-label > label.ant-form-item-no-colon::after {
|
|
4745
5230
|
display: none;
|
|
4746
5231
|
}
|
|
4747
|
-
[data-v-
|
|
5232
|
+
[data-v-cfe8f950] .ant-form-item .ant-form-item-control-wrapper {
|
|
4748
5233
|
display: flex;
|
|
4749
5234
|
align-items: center;
|
|
4750
5235
|
text-align: left;
|
|
4751
5236
|
}
|
|
4752
|
-
[data-v-
|
|
5237
|
+
[data-v-cfe8f950] .ant-form-item .ant-form-item-control {
|
|
4753
5238
|
width: 98%;
|
|
4754
5239
|
margin: 0 auto;
|
|
4755
5240
|
}
|
|
4756
|
-
[data-v-
|
|
5241
|
+
[data-v-cfe8f950] .ant-form-item .is_required::before {
|
|
4757
5242
|
content: "*";
|
|
4758
5243
|
color: #f56c6c;
|
|
4759
5244
|
margin-right: 4px;
|
|
4760
5245
|
}
|
|
4761
|
-
.row-table[data-v-
|
|
5246
|
+
.row-table[data-v-cfe8f950] {
|
|
4762
5247
|
display: flex;
|
|
4763
5248
|
}
|
|
4764
|
-
.row-table[data-v-
|
|
4765
|
-
.row-table[data-v-
|
|
5249
|
+
.row-table[data-v-cfe8f950] .ant-spin-container,
|
|
5250
|
+
.row-table[data-v-cfe8f950] {
|
|
4766
5251
|
display: flex;
|
|
4767
5252
|
width: 100%;
|
|
4768
5253
|
}
|
|
4769
|
-
.row-table[data-v-
|
|
4770
|
-
.row-table .table-left[data-v-
|
|
5254
|
+
.row-table[data-v-cfe8f950] .ant-spin-container .table-left,
|
|
5255
|
+
.row-table .table-left[data-v-cfe8f950] {
|
|
4771
5256
|
width: 100px;
|
|
4772
5257
|
text-align: center;
|
|
4773
5258
|
border-right: 1px solid #333;
|
|
4774
5259
|
border-bottom: 1px solid #333;
|
|
4775
5260
|
position: relative;
|
|
4776
5261
|
}
|
|
4777
|
-
.row-table[data-v-
|
|
4778
|
-
.row-table .table-left p[data-v-
|
|
5262
|
+
.row-table[data-v-cfe8f950] .ant-spin-container .table-left p,
|
|
5263
|
+
.row-table .table-left p[data-v-cfe8f950] {
|
|
4779
5264
|
position: absolute;
|
|
4780
5265
|
top: 50%;
|
|
4781
5266
|
left: 50%;
|
|
4782
5267
|
transform: translate(-50%, -50%);
|
|
4783
5268
|
}
|
|
4784
|
-
.row-table[data-v-
|
|
4785
|
-
.row-table .table-right[data-v-
|
|
5269
|
+
.row-table[data-v-cfe8f950] .ant-spin-container .table-right,
|
|
5270
|
+
.row-table .table-right[data-v-cfe8f950] {
|
|
4786
5271
|
flex: 1;
|
|
4787
5272
|
}
|
|
4788
|
-
.table-content[data-v-
|
|
5273
|
+
.table-content[data-v-cfe8f950] {
|
|
4789
5274
|
width: 100%;
|
|
4790
5275
|
height: 40px;
|
|
4791
5276
|
line-height: 40px;
|
|
@@ -4794,11 +5279,11 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4794
5279
|
border-bottom: 1px solid #333;
|
|
4795
5280
|
border-right: 1px solid #333;
|
|
4796
5281
|
}
|
|
4797
|
-
.sub-table-col[data-v-
|
|
5282
|
+
.sub-table-col[data-v-cfe8f950] {
|
|
4798
5283
|
display: flex;
|
|
4799
5284
|
box-sizing: border-box;
|
|
4800
5285
|
}
|
|
4801
|
-
.sub-table-col > span[data-v-
|
|
5286
|
+
.sub-table-col > span[data-v-cfe8f950] {
|
|
4802
5287
|
flex: 2;
|
|
4803
5288
|
border-bottom: 1px solid #000;
|
|
4804
5289
|
border-right: 1px solid #000;
|
|
@@ -4806,56 +5291,77 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4806
5291
|
line-height: 40px;
|
|
4807
5292
|
text-align: center;
|
|
4808
5293
|
}
|
|
4809
|
-
.sub-table-col > .last-one[data-v-
|
|
5294
|
+
.sub-table-col > .last-one[data-v-cfe8f950] {
|
|
4810
5295
|
width: 87px;
|
|
4811
5296
|
flex: 0 0 87px;
|
|
4812
5297
|
border-right: 1px solid #333;
|
|
4813
5298
|
border-bottom: 1px solid #333;
|
|
4814
5299
|
}
|
|
4815
|
-
.sub-table-col-no-border > span[data-v-
|
|
5300
|
+
.sub-table-col-no-border > span[data-v-cfe8f950] {
|
|
4816
5301
|
border: none;
|
|
4817
5302
|
height: auto;
|
|
4818
5303
|
width: 0;
|
|
4819
5304
|
}
|
|
4820
|
-
.sub-table-col-no-border > .sub-table-title[data-v-
|
|
4821
|
-
.sub-table-col-no-border > .sub-table-item[data-v-
|
|
5305
|
+
.sub-table-col-no-border > .sub-table-title[data-v-cfe8f950]:last-child,
|
|
5306
|
+
.sub-table-col-no-border > .sub-table-item[data-v-cfe8f950]:last-child {
|
|
4822
5307
|
border-right: none !important;
|
|
4823
5308
|
}
|
|
4824
|
-
.sub-table-col-no-border > .last-one[data-v-
|
|
5309
|
+
.sub-table-col-no-border > .last-one[data-v-cfe8f950] {
|
|
4825
5310
|
width: 87px;
|
|
4826
5311
|
flex: 0 0 87px;
|
|
4827
5312
|
display: flex;
|
|
4828
5313
|
justify-content: center;
|
|
4829
5314
|
align-items: center;
|
|
4830
5315
|
}
|
|
5316
|
+
.pagiAfter + .row-item[data-v-cfe8f950] {
|
|
5317
|
+
border-top-width: 1px;
|
|
5318
|
+
border-top-style: solid;
|
|
5319
|
+
}
|
|
5320
|
+
/* 选择所有后面还有其他非.hiddenWidget的.row-item元素的.hasWidgetAfter */
|
|
5321
|
+
.row-item:not(:last-child) .hasWidgetAfter[data-v-cfe8f950] {
|
|
5322
|
+
/* 为这些.hasWidgetAfter设置样式 */
|
|
5323
|
+
width: calc(100% + 1px);
|
|
5324
|
+
border-left-width: 1px;
|
|
5325
|
+
border-right-width: 1px;
|
|
5326
|
+
border-left-style: solid;
|
|
5327
|
+
border-right-style: solid;
|
|
5328
|
+
left: -1px;
|
|
5329
|
+
}
|
|
5330
|
+
.row-item:not(:last-child):has(+ .row-item.hiddenWidget) .hasWidgetAfter[data-v-cfe8f950] {
|
|
5331
|
+
/* 为这些.hasWidgetAfter设置样式 */
|
|
5332
|
+
width: calc(100% + 1px);
|
|
5333
|
+
border-left: none;
|
|
5334
|
+
border-right: none;
|
|
5335
|
+
left: -1px;
|
|
5336
|
+
}
|
|
4831
5337
|
/*****无border *****/
|
|
4832
|
-
.no-border .page-border[data-v-
|
|
5338
|
+
.no-border .page-border[data-v-cfe8f950] {
|
|
4833
5339
|
border: none;
|
|
4834
5340
|
}
|
|
4835
|
-
.no-border .page-border .row-item[data-v-
|
|
5341
|
+
.no-border .page-border .row-item[data-v-cfe8f950]:not(:last-child) {
|
|
4836
5342
|
border: none;
|
|
4837
5343
|
}
|
|
4838
|
-
.no-border .page-border[data-v-
|
|
5344
|
+
.no-border .page-border[data-v-cfe8f950] .ant-form-item .ant-form-item-label {
|
|
4839
5345
|
border: none;
|
|
4840
5346
|
}
|
|
4841
|
-
.table_border[data-v-
|
|
5347
|
+
.table_border[data-v-cfe8f950] {
|
|
4842
5348
|
border-bottom: 0;
|
|
4843
5349
|
border-right: 0;
|
|
4844
5350
|
}
|
|
4845
5351
|
/*****无border *****/
|
|
4846
|
-
[data-v-
|
|
5352
|
+
[data-v-cfe8f950] .ant-form-item-children > div > p,[data-v-cfe8f950] .ant-form-item-children > div > h1,[data-v-cfe8f950] .ant-form-item-children > div > h2,[data-v-cfe8f950] .ant-form-item-children > div > h3,[data-v-cfe8f950] .ant-form-item-children > div > h4,[data-v-cfe8f950] .ant-form-item-children > div > h5,[data-v-cfe8f950] .ant-form-item-children > div > table /deep/ .ant-form-item-children > div > pre {
|
|
4847
5353
|
margin: 10px 0;
|
|
4848
5354
|
line-height: 1.5;
|
|
4849
5355
|
}
|
|
4850
|
-
[data-v-
|
|
5356
|
+
[data-v-cfe8f950] .ant-spin-dot {
|
|
4851
5357
|
font-size: 20px !important;
|
|
4852
5358
|
}
|
|
4853
|
-
.form_skeleton[data-v-
|
|
5359
|
+
.form_skeleton[data-v-cfe8f950] {
|
|
4854
5360
|
display: block;
|
|
4855
5361
|
width: 700px;
|
|
4856
5362
|
margin: 55px auto;
|
|
4857
5363
|
}
|
|
4858
|
-
.form_skeleton[data-v-
|
|
5364
|
+
.form_skeleton[data-v-cfe8f950] .ant-skeleton-title {
|
|
4859
5365
|
margin: 0 auto;
|
|
4860
5366
|
}
|
|
4861
5367
|
|
|
@@ -4976,11 +5482,11 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4976
5482
|
background: #f1f1f1;
|
|
4977
5483
|
}
|
|
4978
5484
|
|
|
4979
|
-
.widget-view[data-v-
|
|
5485
|
+
.widget-view[data-v-093767a8] {
|
|
4980
5486
|
position: relative;
|
|
4981
5487
|
z-index: 8;
|
|
4982
5488
|
}
|
|
4983
|
-
.widget-view .widget-view-model[data-v-
|
|
5489
|
+
.widget-view .widget-view-model[data-v-093767a8] {
|
|
4984
5490
|
position: absolute;
|
|
4985
5491
|
top: 0px;
|
|
4986
5492
|
right: 3px;
|
|
@@ -4990,98 +5496,98 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
4990
5496
|
opacity: 0.6;
|
|
4991
5497
|
}
|
|
4992
5498
|
|
|
4993
|
-
.paper[data-v-
|
|
5499
|
+
.paper[data-v-eb999a52] * {
|
|
4994
5500
|
font-size: var(--paperFontSize);
|
|
4995
5501
|
}
|
|
4996
|
-
.paper .form-title[data-v-
|
|
5502
|
+
.paper .form-title[data-v-eb999a52] {
|
|
4997
5503
|
text-align: center;
|
|
4998
5504
|
font-weight: 600;
|
|
4999
5505
|
font-size: 16px;
|
|
5000
5506
|
min-height: 40px;
|
|
5001
5507
|
line-height: 30px;
|
|
5002
5508
|
}
|
|
5003
|
-
[data-v-
|
|
5509
|
+
[data-v-eb999a52] .vue-grid-layout {
|
|
5004
5510
|
z-index: 2;
|
|
5005
5511
|
}
|
|
5006
|
-
[data-v-
|
|
5512
|
+
[data-v-eb999a52] .vue-grid-item {
|
|
5007
5513
|
border: 1px dashed #ccc;
|
|
5008
5514
|
box-sizing: border-box;
|
|
5009
5515
|
background-color: #fff;
|
|
5010
5516
|
}
|
|
5011
|
-
[data-v-
|
|
5517
|
+
[data-v-eb999a52] .ant-form-item {
|
|
5012
5518
|
width: 100%;
|
|
5013
5519
|
height: 100%;
|
|
5014
5520
|
margin-bottom: 0;
|
|
5015
5521
|
}
|
|
5016
|
-
[data-v-
|
|
5522
|
+
[data-v-eb999a52] .ant-form-item .ant-form-item-label {
|
|
5017
5523
|
height: 100%;
|
|
5018
5524
|
position: absolute;
|
|
5019
5525
|
left: 0;
|
|
5020
5526
|
top: 0;
|
|
5021
5527
|
border-right: 1px solid var(--designBorderColor);
|
|
5022
5528
|
}
|
|
5023
|
-
[data-v-
|
|
5529
|
+
[data-v-eb999a52] .ant-form-item .ant-form-item-label label {
|
|
5024
5530
|
display: flex;
|
|
5025
5531
|
justify-content: center;
|
|
5026
5532
|
align-items: center;
|
|
5027
5533
|
height: 100%;
|
|
5028
5534
|
}
|
|
5029
|
-
[data-v-
|
|
5535
|
+
[data-v-eb999a52] .ant-form-item .ant-form-item-label > label.ant-form-item-no-colon::after {
|
|
5030
5536
|
display: none;
|
|
5031
5537
|
}
|
|
5032
|
-
[data-v-
|
|
5538
|
+
[data-v-eb999a52] .ant-form-item .ant-form-item-control-wrapper {
|
|
5033
5539
|
height: 100%;
|
|
5034
5540
|
float: right;
|
|
5035
5541
|
display: flex;
|
|
5036
5542
|
align-items: center;
|
|
5037
5543
|
}
|
|
5038
|
-
[data-v-
|
|
5544
|
+
[data-v-eb999a52] .ant-form-item .ant-form-item-control {
|
|
5039
5545
|
width: 98%;
|
|
5040
5546
|
margin: 0 auto;
|
|
5041
5547
|
}
|
|
5042
|
-
.is_required[data-v-
|
|
5548
|
+
.is_required[data-v-eb999a52]::before {
|
|
5043
5549
|
content: "*";
|
|
5044
5550
|
color: #f56c6c;
|
|
5045
5551
|
margin-right: 4px;
|
|
5046
5552
|
}
|
|
5047
|
-
.widget-form-list[data-v-
|
|
5553
|
+
.widget-form-list[data-v-eb999a52] {
|
|
5048
5554
|
background: #fff;
|
|
5049
5555
|
box-sizing: border-box;
|
|
5050
5556
|
}
|
|
5051
|
-
.widget-form-list .row-item[data-v-
|
|
5557
|
+
.widget-form-list .row-item[data-v-eb999a52]:first-child {
|
|
5052
5558
|
border-top: 1px solid var(--designBorderColor);
|
|
5053
5559
|
}
|
|
5054
|
-
.widget-form-list .row-item[data-v-
|
|
5560
|
+
.widget-form-list .row-item[data-v-eb999a52] {
|
|
5055
5561
|
border-bottom: 1px solid var(--designBorderColor);
|
|
5056
5562
|
}
|
|
5057
|
-
.widget-form-list .row-item[data-v-
|
|
5563
|
+
.widget-form-list .row-item[data-v-eb999a52] {
|
|
5058
5564
|
border-right: 1px solid var(--designBorderColor);
|
|
5059
5565
|
border-left: 1px solid var(--designBorderColor);
|
|
5060
5566
|
}
|
|
5061
|
-
.widget-form-list .item-bottom[data-v-
|
|
5567
|
+
.widget-form-list .item-bottom[data-v-eb999a52] {
|
|
5062
5568
|
border-bottom: 1px solid var(--designBorderColor);
|
|
5063
5569
|
}
|
|
5064
|
-
.widget-form-list .no-row-item[data-v-
|
|
5570
|
+
.widget-form-list .no-row-item[data-v-eb999a52] {
|
|
5065
5571
|
border-right: none;
|
|
5066
5572
|
border-bottom: none !important;
|
|
5067
5573
|
}
|
|
5068
|
-
.widget-form-list .no-row-item .widget-form-list[data-v-
|
|
5574
|
+
.widget-form-list .no-row-item .widget-form-list[data-v-eb999a52] {
|
|
5069
5575
|
border-top: none !important;
|
|
5070
5576
|
border-right: none;
|
|
5071
5577
|
}
|
|
5072
|
-
.widget-form-list .widget-grid[data-v-
|
|
5578
|
+
.widget-form-list .widget-grid[data-v-eb999a52] {
|
|
5073
5579
|
background: #f4f6fc;
|
|
5074
5580
|
position: relative;
|
|
5075
5581
|
border-left: 5px solid transparent;
|
|
5076
5582
|
padding: 5px;
|
|
5077
5583
|
margin: 0 !important;
|
|
5078
5584
|
}
|
|
5079
|
-
.widget-form-list .widget-grid.active[data-v-
|
|
5585
|
+
.widget-form-list .widget-grid.active[data-v-eb999a52] {
|
|
5080
5586
|
outline: 2px solid #409eff;
|
|
5081
5587
|
border: 1px solid #409eff;
|
|
5082
5588
|
background: #b3d8ff;
|
|
5083
5589
|
}
|
|
5084
|
-
.widget-form-list .widget-grid .grid-background[data-v-
|
|
5590
|
+
.widget-form-list .widget-grid .grid-background[data-v-eb999a52] {
|
|
5085
5591
|
position: absolute;
|
|
5086
5592
|
z-index: 1;
|
|
5087
5593
|
top: 0;
|
|
@@ -5092,85 +5598,85 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5092
5598
|
height: 100%;
|
|
5093
5599
|
padding: 5px 5px 10px 5px;
|
|
5094
5600
|
}
|
|
5095
|
-
.widget-form-list .widget-grid .grid-background .rows[data-v-
|
|
5601
|
+
.widget-form-list .widget-grid .grid-background .rows[data-v-eb999a52] {
|
|
5096
5602
|
border-bottom: 1px dashed #ccc;
|
|
5097
5603
|
border-left: 1px dashed #ccc;
|
|
5098
5604
|
box-sizing: border-box;
|
|
5099
5605
|
overflow: hidden;
|
|
5100
5606
|
}
|
|
5101
|
-
.widget-form-list .widget-grid .grid-background .rows[data-v-
|
|
5607
|
+
.widget-form-list .widget-grid .grid-background .rows[data-v-eb999a52]:first-child {
|
|
5102
5608
|
border-top: 1px dashed #ccc;
|
|
5103
5609
|
}
|
|
5104
|
-
.widget-form-list .widget-grid .grid-background .rows .columns[data-v-
|
|
5610
|
+
.widget-form-list .widget-grid .grid-background .rows .columns[data-v-eb999a52] {
|
|
5105
5611
|
float: left;
|
|
5106
5612
|
border-right: 1px dashed #ccc;
|
|
5107
5613
|
min-height: 40px;
|
|
5108
5614
|
box-sizing: border-box;
|
|
5109
5615
|
}
|
|
5110
|
-
.widget-form-list .row_table[data-v-
|
|
5616
|
+
.widget-form-list .row_table[data-v-eb999a52] {
|
|
5111
5617
|
min-height: 60px;
|
|
5112
5618
|
position: relative;
|
|
5113
5619
|
}
|
|
5114
|
-
.widget-form-list li.sortable-chosen[data-v-
|
|
5620
|
+
.widget-form-list li.sortable-chosen[data-v-eb999a52] {
|
|
5115
5621
|
height: 2px !important;
|
|
5116
5622
|
overflow: hidden !important;
|
|
5117
5623
|
background: red !important;
|
|
5118
5624
|
}
|
|
5119
|
-
.widget-form-list .widget-col-list[data-v-
|
|
5625
|
+
.widget-form-list .widget-col-list[data-v-eb999a52] {
|
|
5120
5626
|
min-height: 50px;
|
|
5121
5627
|
border: 1px dashed #ccc;
|
|
5122
5628
|
background: #fff;
|
|
5123
5629
|
}
|
|
5124
|
-
.widget-form-list .widget-col[data-v-
|
|
5630
|
+
.widget-form-list .widget-col[data-v-eb999a52] {
|
|
5125
5631
|
padding-bottom: 0;
|
|
5126
5632
|
padding: 5px;
|
|
5127
5633
|
background-color: rgba(253, 246, 236, 0.3);
|
|
5128
5634
|
}
|
|
5129
|
-
.grid-lay-out-wrap .widget-col-list[data-v-
|
|
5635
|
+
.grid-lay-out-wrap .widget-col-list[data-v-eb999a52] {
|
|
5130
5636
|
width: 100%;
|
|
5131
5637
|
height: 100%;
|
|
5132
5638
|
min-height: 40px;
|
|
5133
5639
|
border: none;
|
|
5134
5640
|
}
|
|
5135
|
-
.widget-form-ocuupied[data-v-
|
|
5641
|
+
.widget-form-ocuupied[data-v-eb999a52] {
|
|
5136
5642
|
min-height: 540px;
|
|
5137
5643
|
border: none;
|
|
5138
5644
|
}
|
|
5139
|
-
.drag_table[data-v-
|
|
5645
|
+
.drag_table[data-v-eb999a52] {
|
|
5140
5646
|
width: calc(100% - 100px);
|
|
5141
5647
|
height: 100%;
|
|
5142
5648
|
display: flex;
|
|
5143
5649
|
overflow-y: scroll;
|
|
5144
5650
|
}
|
|
5145
|
-
.drag_table[data-v-
|
|
5651
|
+
.drag_table[data-v-eb999a52]::-webkit-scrollbar {
|
|
5146
5652
|
width: 3px;
|
|
5147
5653
|
height: 3px;
|
|
5148
5654
|
}
|
|
5149
|
-
.drag_table[data-v-
|
|
5655
|
+
.drag_table[data-v-eb999a52]::-webkit-scrollbar-track {
|
|
5150
5656
|
background: #fff;
|
|
5151
5657
|
border-radius: 2px;
|
|
5152
5658
|
}
|
|
5153
|
-
.drag_table[data-v-
|
|
5659
|
+
.drag_table[data-v-eb999a52]::-webkit-scrollbar-thumb {
|
|
5154
5660
|
background: #cdcdcd;
|
|
5155
5661
|
border-radius: 8px;
|
|
5156
5662
|
}
|
|
5157
|
-
.drag_table[data-v-
|
|
5663
|
+
.drag_table[data-v-eb999a52]::-webkit-scrollbar-thumb:hover {
|
|
5158
5664
|
background: #cdcdcd;
|
|
5159
5665
|
}
|
|
5160
|
-
.drag_table[data-v-
|
|
5666
|
+
.drag_table[data-v-eb999a52]::-webkit-scrollbar-corner {
|
|
5161
5667
|
background: #cdcdcd;
|
|
5162
5668
|
}
|
|
5163
|
-
.widget-form-ocuupied[data-v-
|
|
5669
|
+
.widget-form-ocuupied[data-v-eb999a52] {
|
|
5164
5670
|
min-height: 540px;
|
|
5165
5671
|
border: none;
|
|
5166
5672
|
}
|
|
5167
|
-
.table_label[data-v-
|
|
5673
|
+
.table_label[data-v-eb999a52] {
|
|
5168
5674
|
width: 100px;
|
|
5169
5675
|
min-width: 100px;
|
|
5170
5676
|
height: 100%;
|
|
5171
5677
|
text-align: right;
|
|
5172
5678
|
}
|
|
5173
|
-
.widget-view-model[data-v-
|
|
5679
|
+
.widget-view-model[data-v-eb999a52] {
|
|
5174
5680
|
position: absolute;
|
|
5175
5681
|
top: 0px;
|
|
5176
5682
|
right: 3px;
|
|
@@ -5180,12 +5686,12 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5180
5686
|
opacity: 0.6;
|
|
5181
5687
|
}
|
|
5182
5688
|
/**selectedWidget active*/
|
|
5183
|
-
[data-v-
|
|
5689
|
+
[data-v-eb999a52] .active {
|
|
5184
5690
|
outline: 2px solid #539dfa;
|
|
5185
5691
|
box-shadow: 0 0 5px #539dfa;
|
|
5186
5692
|
position: relative;
|
|
5187
5693
|
}
|
|
5188
|
-
[data-v-
|
|
5694
|
+
[data-v-eb999a52] .active .widget-view-drag {
|
|
5189
5695
|
position: absolute;
|
|
5190
5696
|
left: -2px;
|
|
5191
5697
|
top: -2px;
|
|
@@ -5199,7 +5705,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5199
5705
|
color: #ffffff;
|
|
5200
5706
|
cursor: move;
|
|
5201
5707
|
}
|
|
5202
|
-
[data-v-
|
|
5708
|
+
[data-v-eb999a52] .active .widget-view-action {
|
|
5203
5709
|
width: 70px;
|
|
5204
5710
|
position: absolute;
|
|
5205
5711
|
right: 0px;
|
|
@@ -5212,7 +5718,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5212
5718
|
background: transparent;
|
|
5213
5719
|
color: #fff;
|
|
5214
5720
|
}
|
|
5215
|
-
[data-v-
|
|
5721
|
+
[data-v-eb999a52] .active .widget-view-action .iconfont {
|
|
5216
5722
|
width: 25px;
|
|
5217
5723
|
height: 25px;
|
|
5218
5724
|
border-radius: 50%;
|
|
@@ -5222,17 +5728,17 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5222
5728
|
font-size: 14px;
|
|
5223
5729
|
justify-content: center;
|
|
5224
5730
|
}
|
|
5225
|
-
[data-v-
|
|
5731
|
+
[data-v-eb999a52] .active .widget-view-action .icon-icon_clone {
|
|
5226
5732
|
background: red;
|
|
5227
5733
|
}
|
|
5228
|
-
[data-v-
|
|
5734
|
+
[data-v-eb999a52] .active .widget-view-action .icon-trash {
|
|
5229
5735
|
margin-left: 20px;
|
|
5230
5736
|
}
|
|
5231
|
-
.widget-form-list .widget-view[data-v-
|
|
5737
|
+
.widget-form-list .widget-view[data-v-eb999a52] {
|
|
5232
5738
|
z-index: 8;
|
|
5233
5739
|
position: relative;
|
|
5234
5740
|
}
|
|
5235
|
-
.widget-form-list .widget-view .widget-view-action[data-v-
|
|
5741
|
+
.widget-form-list .widget-view .widget-view-action[data-v-eb999a52] {
|
|
5236
5742
|
position: absolute;
|
|
5237
5743
|
right: 0px;
|
|
5238
5744
|
bottom: 0;
|
|
@@ -5244,7 +5750,7 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5244
5750
|
background: transparent;
|
|
5245
5751
|
color: #fff;
|
|
5246
5752
|
}
|
|
5247
|
-
.widget-form-list .widget-view .widget-view-action .iconfont[data-v-
|
|
5753
|
+
.widget-form-list .widget-view .widget-view-action .iconfont[data-v-eb999a52] {
|
|
5248
5754
|
width: 25px;
|
|
5249
5755
|
height: 25px;
|
|
5250
5756
|
border-radius: 50%;
|
|
@@ -5254,13 +5760,13 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5254
5760
|
font-size: 14px;
|
|
5255
5761
|
justify-content: center;
|
|
5256
5762
|
}
|
|
5257
|
-
.widget-form-list .widget-view .widget-view-action .icon-icon_clone[data-v-
|
|
5763
|
+
.widget-form-list .widget-view .widget-view-action .icon-icon_clone[data-v-eb999a52] {
|
|
5258
5764
|
background: red;
|
|
5259
5765
|
}
|
|
5260
|
-
.widget-form-list .widget-view .widget-view-action .icon-trash[data-v-
|
|
5766
|
+
.widget-form-list .widget-view .widget-view-action .icon-trash[data-v-eb999a52] {
|
|
5261
5767
|
margin-left: 20px;
|
|
5262
5768
|
}
|
|
5263
|
-
.widget-form-list .widget-view .widget-view-drag[data-v-
|
|
5769
|
+
.widget-form-list .widget-view .widget-view-drag[data-v-eb999a52] {
|
|
5264
5770
|
position: absolute;
|
|
5265
5771
|
left: -2px;
|
|
5266
5772
|
top: -2px;
|
|
@@ -5270,30 +5776,30 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5270
5776
|
background: #409eff;
|
|
5271
5777
|
z-index: 9;
|
|
5272
5778
|
}
|
|
5273
|
-
.widget-form-list .widget-view .widget-view-drag i[data-v-
|
|
5779
|
+
.widget-form-list .widget-view .widget-view-drag i[data-v-eb999a52] {
|
|
5274
5780
|
font-size: 14px;
|
|
5275
5781
|
color: #fff;
|
|
5276
5782
|
margin: 0 5px;
|
|
5277
5783
|
cursor: move;
|
|
5278
5784
|
}
|
|
5279
5785
|
/*****无border *****/
|
|
5280
|
-
.no-border .widget-form-list[data-v-
|
|
5786
|
+
.no-border .widget-form-list[data-v-eb999a52] {
|
|
5281
5787
|
border: none;
|
|
5282
5788
|
}
|
|
5283
|
-
.no-border .widget-form-list .row-item[data-v-
|
|
5789
|
+
.no-border .widget-form-list .row-item[data-v-eb999a52]:not(:last-child) {
|
|
5284
5790
|
border: none;
|
|
5285
5791
|
}
|
|
5286
|
-
.no-border .widget-form-list[data-v-
|
|
5792
|
+
.no-border .widget-form-list[data-v-eb999a52] .ant-form-item .ant-form-item-label {
|
|
5287
5793
|
border: 0;
|
|
5288
5794
|
}
|
|
5289
5795
|
/*****无border *****/
|
|
5290
5796
|
/***label对齐方式 */
|
|
5291
|
-
[data-v-
|
|
5797
|
+
[data-v-eb999a52] .custom_form_item .break {
|
|
5292
5798
|
white-space: normal;
|
|
5293
5799
|
word-break: break-all;
|
|
5294
5800
|
word-wrap: break-word;
|
|
5295
5801
|
}
|
|
5296
|
-
[data-v-
|
|
5802
|
+
[data-v-eb999a52] .custom_form_item .align-between {
|
|
5297
5803
|
white-space: normal;
|
|
5298
5804
|
word-break: break-all;
|
|
5299
5805
|
word-wrap: break-word;
|
|
@@ -5302,28 +5808,28 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5302
5808
|
text-align-last: justify;
|
|
5303
5809
|
width: 80%;
|
|
5304
5810
|
}
|
|
5305
|
-
[data-v-
|
|
5811
|
+
[data-v-eb999a52] .custom_form_item .align-middle {
|
|
5306
5812
|
white-space: normal;
|
|
5307
5813
|
word-break: break-all;
|
|
5308
5814
|
word-wrap: break-word;
|
|
5309
5815
|
text-align: center;
|
|
5310
5816
|
width: 80%;
|
|
5311
5817
|
}
|
|
5312
|
-
[data-v-
|
|
5818
|
+
[data-v-eb999a52] .custom_form_item .align-left {
|
|
5313
5819
|
white-space: normal;
|
|
5314
5820
|
word-break: break-all;
|
|
5315
5821
|
word-wrap: break-word;
|
|
5316
5822
|
text-align: left;
|
|
5317
5823
|
width: 80%;
|
|
5318
5824
|
}
|
|
5319
|
-
[data-v-
|
|
5825
|
+
[data-v-eb999a52] .custom_form_item .align-right {
|
|
5320
5826
|
white-space: normal;
|
|
5321
5827
|
word-break: break-all;
|
|
5322
5828
|
word-wrap: break-word;
|
|
5323
5829
|
text-align: right;
|
|
5324
5830
|
width: 80%;
|
|
5325
5831
|
}
|
|
5326
|
-
[data-v-
|
|
5832
|
+
[data-v-eb999a52] .custom_form_item .align-center {
|
|
5327
5833
|
white-space: normal;
|
|
5328
5834
|
word-break: break-all;
|
|
5329
5835
|
word-wrap: break-word;
|
|
@@ -5333,12 +5839,15 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5333
5839
|
/***label对齐方式 */
|
|
5334
5840
|
|
|
5335
5841
|
|
|
5336
|
-
[data-v-
|
|
5842
|
+
[data-v-3657ce48] .m-colorPicker {
|
|
5337
5843
|
z-index: 2;
|
|
5338
5844
|
}
|
|
5339
|
-
[data-v-
|
|
5845
|
+
[data-v-3657ce48] .m-colorPicker .colorBtn {
|
|
5340
5846
|
border: 1px solid #e3e3e3;
|
|
5341
5847
|
}
|
|
5848
|
+
[data-v-3657ce48] .ant-select-selection--multiple .ant-select-selection__rendered {
|
|
5849
|
+
line-height: 5px !important;
|
|
5850
|
+
}
|
|
5342
5851
|
|
|
5343
5852
|
|
|
5344
5853
|
[data-v-0b66aa74] .ant-form-item {
|
|
@@ -5532,25 +6041,25 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5532
6041
|
background-color: #f5f5f5 !important;
|
|
5533
6042
|
}
|
|
5534
6043
|
|
|
5535
|
-
.linkage_list-item[data-v-
|
|
6044
|
+
.linkage_list-item[data-v-860bdf12] {
|
|
5536
6045
|
display: flex;
|
|
5537
6046
|
align-items: center;
|
|
5538
6047
|
gap: 10px;
|
|
5539
6048
|
margin-bottom: 10px;
|
|
5540
6049
|
}
|
|
5541
|
-
.linkage_list-item > div[data-v-
|
|
6050
|
+
.linkage_list-item > div[data-v-860bdf12] {
|
|
5542
6051
|
flex-shrink: 0;
|
|
5543
6052
|
}
|
|
5544
|
-
[data-v-
|
|
6053
|
+
[data-v-860bdf12] .ant-select-dropdown-menu-item {
|
|
5545
6054
|
-webkit-user-select: initial !important;
|
|
5546
6055
|
-moz-user-select: initial !important;
|
|
5547
6056
|
user-select: initial !important;
|
|
5548
6057
|
}
|
|
5549
|
-
[data-v-
|
|
6058
|
+
[data-v-860bdf12] .ant-input-clear-icon {
|
|
5550
6059
|
display: none;
|
|
5551
6060
|
color: rgba(0, 0, 0, 0.25) !important;
|
|
5552
6061
|
}
|
|
5553
|
-
[data-v-
|
|
6062
|
+
[data-v-860bdf12] .ant-input-affix-wrapper:hover .ant-input-clear-icon {
|
|
5554
6063
|
display: initial;
|
|
5555
6064
|
}
|
|
5556
6065
|
|
|
@@ -5600,13 +6109,13 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
5600
6109
|
}
|
|
5601
6110
|
|
|
5602
6111
|
|
|
5603
|
-
[data-v-
|
|
6112
|
+
[data-v-cb201820] .ant-form-item {
|
|
5604
6113
|
margin-bottom: 0;
|
|
5605
6114
|
}
|
|
5606
|
-
.m-colorPicker[data-v-
|
|
6115
|
+
.m-colorPicker[data-v-cb201820] .box.open {
|
|
5607
6116
|
z-index: 999;
|
|
5608
6117
|
}
|
|
5609
|
-
.m-colorPicker[data-v-
|
|
6118
|
+
.m-colorPicker[data-v-cb201820] .colorBtn {
|
|
5610
6119
|
border: 1px solid #e3e3e3;
|
|
5611
6120
|
}
|
|
5612
6121
|
|
|
@@ -6482,6 +6991,9 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
6482
6991
|
background: #fff;
|
|
6483
6992
|
border-bottom: 1px solid #eee;
|
|
6484
6993
|
}
|
|
6994
|
+
.gzt-hidden-key .widget-form-list .widget-view-model {
|
|
6995
|
+
display: none;
|
|
6996
|
+
}
|
|
6485
6997
|
|
|
6486
6998
|
@font-face {
|
|
6487
6999
|
font-family: "iconfont";
|
|
@@ -7712,41 +8224,6 @@ span.CodeMirror-selectedtext { background: none; }
|
|
|
7712
8224
|
background: rgba(24, 144, 255, 0.6);
|
|
7713
8225
|
}
|
|
7714
8226
|
|
|
7715
|
-
.CodeMirror-hints {
|
|
7716
|
-
position: absolute;
|
|
7717
|
-
z-index: 10;
|
|
7718
|
-
overflow: hidden;
|
|
7719
|
-
list-style: none;
|
|
7720
|
-
|
|
7721
|
-
margin: 0;
|
|
7722
|
-
padding: 2px;
|
|
7723
|
-
box-shadow: 2px 3px 5px rgba(0,0,0,.2);
|
|
7724
|
-
border-radius: 3px;
|
|
7725
|
-
border: 1px solid silver;
|
|
7726
|
-
|
|
7727
|
-
background: white;
|
|
7728
|
-
font-size: 90%;
|
|
7729
|
-
font-family: monospace;
|
|
7730
|
-
|
|
7731
|
-
max-height: 20em;
|
|
7732
|
-
overflow-y: auto;
|
|
7733
|
-
box-sizing: border-box;
|
|
7734
|
-
}
|
|
7735
|
-
|
|
7736
|
-
.CodeMirror-hint {
|
|
7737
|
-
margin: 0;
|
|
7738
|
-
padding: 0 4px;
|
|
7739
|
-
border-radius: 2px;
|
|
7740
|
-
white-space: pre;
|
|
7741
|
-
color: black;
|
|
7742
|
-
cursor: pointer;
|
|
7743
|
-
}
|
|
7744
|
-
|
|
7745
|
-
li.CodeMirror-hint-active {
|
|
7746
|
-
background: #08f;
|
|
7747
|
-
color: white;
|
|
7748
|
-
}
|
|
7749
|
-
|
|
7750
8227
|
.cm-s-eclipse span.cm-meta { color: #FF1717; }
|
|
7751
8228
|
.cm-s-eclipse span.cm-keyword { line-height: 1em; font-weight: bold; color: #7F0055; }
|
|
7752
8229
|
.cm-s-eclipse span.cm-atom { color: #219; }
|