syntec3-0-ui-components-test 1.0.0

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.
Files changed (99) hide show
  1. package/README.md +5 -0
  2. package/dist/S3_0UC_main.csv +4 -0
  3. package/dist/S3_0UC_sub.csv +2 -0
  4. package/dist/globalVariableS3_0UC.json +1 -0
  5. package/dist/style.css +1 -0
  6. package/dist/syntec3-0-ui-components.es.js +19518 -0
  7. package/dist/syntec3-0-ui-components.es.js.map +1 -0
  8. package/dist/syntec3-0-ui-components.umd.js +23 -0
  9. package/dist/syntec3-0-ui-components.umd.js.map +1 -0
  10. package/dist/vite.svg +1 -0
  11. package/dist/web.config +17 -0
  12. package/package.json +137 -0
  13. package/src/App.vue +31 -0
  14. package/src/assets/fonts/genYoGothicTW-normal.js +7 -0
  15. package/src/assets/image/defaultImage.png +0 -0
  16. package/src/assets/vue.svg +1 -0
  17. package/src/components/Layout/modules/fullPageGlobal.vue +113 -0
  18. package/src/components/Layout/modules/viewFile/config.js +65 -0
  19. package/src/components/Layout/modules/viewFile/createView.vue +1000 -0
  20. package/src/components/Layout/modules/viewFile/filterCriteria.vue +816 -0
  21. package/src/components/Layout/modules/viewFile/viewList.vue +291 -0
  22. package/src/components/Layout/modules/viewFile/viewManageTool.js +271 -0
  23. package/src/components/Layout/modules/viewFile/viewRecord.vue +472 -0
  24. package/src/components/Layout/modules/viewFile/viewTabs.vue +542 -0
  25. package/src/components/Layout/tools/GlobalDialog.vue +115 -0
  26. package/src/components/Pagination.vue +139 -0
  27. package/src/components/columnConfigNext.vue +273 -0
  28. package/src/components/customFilter/customFilter.vue +492 -0
  29. package/src/components/customFilter/filterCriteria.vue +769 -0
  30. package/src/components/customTable/components/headerOperation/index.vue +136 -0
  31. package/src/components/customTable/components/headerTabs/index.vue +171 -0
  32. package/src/components/customTable/components/tableContent/index.vue +440 -0
  33. package/src/components/customTable/index.vue +305 -0
  34. package/src/components/dialog.vue +85 -0
  35. package/src/components/pageContent.vue +48 -0
  36. package/src/components/popover.vue +402 -0
  37. package/src/configFiles/apiFile/baseApiList.json +11 -0
  38. package/src/configFiles/apiFile/coreApiList.json +24 -0
  39. package/src/configFiles/apiFile/mesApiList.json +4 -0
  40. package/src/configFiles/apiFile/mmsApiList.json +3 -0
  41. package/src/configFiles/errorCode.json +291 -0
  42. package/src/configFiles/version.js +2 -0
  43. package/src/i18n/lang/en-us.json +2060 -0
  44. package/src/i18n/lang/errorCodeTranslate.mjs +847 -0
  45. package/src/i18n/lang/zh-cn.json +2062 -0
  46. package/src/i18n/lang/zh-tw.json +2059 -0
  47. package/src/index.js +115 -0
  48. package/src/main.js +51 -0
  49. package/src/plugins/excel.js +88 -0
  50. package/src/router/index.js +41 -0
  51. package/src/scriptFiles/apiConfig/baseApis.js +10 -0
  52. package/src/scriptFiles/apiConfig/mesApis.js +10 -0
  53. package/src/scriptFiles/apiConfig/mmsApis.js +10 -0
  54. package/src/scriptFiles/apiConfig/privateCloudCoreApis.js +13 -0
  55. package/src/scriptFiles/apiConfig/serviceRoute.js +23 -0
  56. package/src/scriptFiles/apis/baseApiFunction.js +63 -0
  57. package/src/scriptFiles/apis/mesApiFunction.js +15 -0
  58. package/src/scriptFiles/apis/mmsApiFunction.js +9 -0
  59. package/src/scriptFiles/apis/privateCloudCoreApiFunction.js +101 -0
  60. package/src/scriptFiles/backendApiFunction.js +11 -0
  61. package/src/scriptFiles/checkApiErrorMechanism.js +137 -0
  62. package/src/scriptFiles/common/objectDataProcessing.js +65 -0
  63. package/src/scss/base/commom.scss +1068 -0
  64. package/src/scss/base/dialog.scss +45 -0
  65. package/src/scss/base/index.scss +3 -0
  66. package/src/scss/base/table.scss +28 -0
  67. package/src/store/index.js +25 -0
  68. package/src/store/module/langStore.js +116 -0
  69. package/src/style.css +52 -0
  70. package/src/utils/excel.js +86 -0
  71. package/src/utils/formula.js +69 -0
  72. package/src/utils/https.js +13 -0
  73. package/src/utils/i18n.js +42 -0
  74. package/src/utils/shiftSelect.js +164 -0
  75. package/src/utils/summation.js +77 -0
  76. package/src/utils/tableWidth.js +29 -0
  77. package/src/utils/toolFun.js +93 -0
  78. package/src/views/productionWorkOrder/components/columnConfig.vue +242 -0
  79. package/src/views/productionWorkOrder/components/docCustomFieldForm.vue +739 -0
  80. package/src/views/productionWorkOrder/components/filePreview.vue +148 -0
  81. package/src/views/productionWorkOrder/components/querySearch.vue +363 -0
  82. package/src/views/productionWorkOrder/configFiles/excelImportErrorCode.json +94 -0
  83. package/src/views/productionWorkOrder/configFiles/pdfDefaultConfig.js +933 -0
  84. package/src/views/productionWorkOrder/configFiles/planMakingScript.js +600 -0
  85. package/src/views/productionWorkOrder/configFiles/productionRelatedScript.js +368 -0
  86. package/src/views/productionWorkOrder/configFiles/rulse.js +23 -0
  87. package/src/views/productionWorkOrder/configFiles/status.js +50 -0
  88. package/src/views/productionWorkOrder/index.vue +2174 -0
  89. package/src/views/productionWorkOrder/productionFlowLabel/component/addCirculationLabel.vue +394 -0
  90. package/src/views/productionWorkOrder/productionFlowLabel/component/circulationLabelTable.vue +124 -0
  91. package/src/views/productionWorkOrder/productionFlowLabel/component/materialPartFilePreview.vue +167 -0
  92. package/src/views/productionWorkOrder/productionFlowLabel/component/workOrderInformation.vue +28 -0
  93. package/src/views/productionWorkOrder/productionFlowLabel/index.vue +604 -0
  94. package/src/views/production_work_order/components/priorityTooltip.vue +53 -0
  95. package/src/views/production_work_order/index.vue +1307 -0
  96. package/src/views/review_record/components/materialInfo.vue +50 -0
  97. package/src/views/review_record/components/rootCause.vue +42 -0
  98. package/src/views/review_record/components/workDetail.vue +115 -0
  99. package/src/views/review_record/index.vue +884 -0
@@ -0,0 +1,1068 @@
1
+ .commom-padding{
2
+ padding: 20px;
3
+ }
4
+ .ma-0 {
5
+ margin: 0px !important;
6
+ }
7
+
8
+ .ma-1 {
9
+ margin: 4px !important;
10
+ }
11
+
12
+ .ma-2 {
13
+ margin: 8px !important;
14
+ }
15
+
16
+ .ma-3 {
17
+ margin: 12px !important;
18
+ }
19
+
20
+ .ma-4 {
21
+ margin: 16px !important;
22
+ }
23
+
24
+ .ma-5 {
25
+ margin: 20px !important;
26
+ }
27
+
28
+ .ma-6 {
29
+ margin: 24px !important;
30
+ }
31
+
32
+ .ma-7 {
33
+ margin: 28px !important;
34
+ }
35
+
36
+ .ma-8 {
37
+ margin: 32px !important;
38
+ }
39
+
40
+ .ma-9 {
41
+ margin: 36px !important;
42
+ }
43
+
44
+ .ma-10 {
45
+ margin: 40px !important;
46
+ }
47
+
48
+ .ma-11 {
49
+ margin: 44px !important;
50
+ }
51
+
52
+ .ma-12 {
53
+ margin: 48px !important;
54
+ }
55
+
56
+ .ma-13 {
57
+ margin: 52px !important;
58
+ }
59
+
60
+ .ma-14 {
61
+ margin: 56px !important;
62
+ }
63
+
64
+ .ma-15 {
65
+ margin: 60px !important;
66
+ }
67
+
68
+ .ma-16 {
69
+ margin: 64px !important;
70
+ }
71
+
72
+ .ma-auto {
73
+ margin: auto !important;
74
+ }
75
+
76
+ .mx-0 {
77
+ margin-right: 0px !important;
78
+ margin-left: 0px !important;
79
+ }
80
+
81
+ .mx-1 {
82
+ margin-right: 4px !important;
83
+ margin-left: 4px !important;
84
+ }
85
+
86
+ .mx-2 {
87
+ margin-right: 8px !important;
88
+ margin-left: 8px !important;
89
+ }
90
+
91
+ .mx-3 {
92
+ margin-right: 12px !important;
93
+ margin-left: 12px !important;
94
+ }
95
+
96
+ .mx-4 {
97
+ margin-right: 16px !important;
98
+ margin-left: 16px !important;
99
+ }
100
+
101
+ .mx-5 {
102
+ margin-right: 20px !important;
103
+ margin-left: 20px !important;
104
+ }
105
+
106
+ .mx-6 {
107
+ margin-right: 24px !important;
108
+ margin-left: 24px !important;
109
+ }
110
+
111
+ .mx-7 {
112
+ margin-right: 28px !important;
113
+ margin-left: 28px !important;
114
+ }
115
+
116
+ .mx-8 {
117
+ margin-right: 32px !important;
118
+ margin-left: 32px !important;
119
+ }
120
+
121
+ .mx-9 {
122
+ margin-right: 36px !important;
123
+ margin-left: 36px !important;
124
+ }
125
+
126
+ .mx-10 {
127
+ margin-right: 40px !important;
128
+ margin-left: 40px !important;
129
+ }
130
+
131
+ .mx-11 {
132
+ margin-right: 44px !important;
133
+ margin-left: 44px !important;
134
+ }
135
+
136
+ .mx-12 {
137
+ margin-right: 48px !important;
138
+ margin-left: 48px !important;
139
+ }
140
+
141
+ .mx-13 {
142
+ margin-right: 52px !important;
143
+ margin-left: 52px !important;
144
+ }
145
+
146
+ .mx-14 {
147
+ margin-right: 56px !important;
148
+ margin-left: 56px !important;
149
+ }
150
+
151
+ .mx-15 {
152
+ margin-right: 60px !important;
153
+ margin-left: 60px !important;
154
+ }
155
+
156
+ .mx-16 {
157
+ margin-right: 64px !important;
158
+ margin-left: 64px !important;
159
+ }
160
+
161
+ .mx-auto {
162
+ margin-right: auto !important;
163
+ margin-left: auto !important;
164
+ }
165
+
166
+ .my-0 {
167
+ margin-top: 0px !important;
168
+ margin-bottom: 0px !important;
169
+ }
170
+
171
+ .my-1 {
172
+ margin-top: 4px !important;
173
+ margin-bottom: 4px !important;
174
+ }
175
+
176
+ .my-2 {
177
+ margin-top: 8px !important;
178
+ margin-bottom: 8px !important;
179
+ }
180
+
181
+ .my-3 {
182
+ margin-top: 12px !important;
183
+ margin-bottom: 12px !important;
184
+ }
185
+
186
+ .my-4 {
187
+ margin-top: 16px !important;
188
+ margin-bottom: 16px !important;
189
+ }
190
+
191
+ .my-5 {
192
+ margin-top: 20px !important;
193
+ margin-bottom: 20px !important;
194
+ }
195
+
196
+ .my-6 {
197
+ margin-top: 24px !important;
198
+ margin-bottom: 24px !important;
199
+ }
200
+
201
+ .my-7 {
202
+ margin-top: 28px !important;
203
+ margin-bottom: 28px !important;
204
+ }
205
+
206
+ .my-8 {
207
+ margin-top: 32px !important;
208
+ margin-bottom: 32px !important;
209
+ }
210
+
211
+ .my-9 {
212
+ margin-top: 36px !important;
213
+ margin-bottom: 36px !important;
214
+ }
215
+
216
+ .my-10 {
217
+ margin-top: 40px !important;
218
+ margin-bottom: 40px !important;
219
+ }
220
+
221
+ .my-11 {
222
+ margin-top: 44px !important;
223
+ margin-bottom: 44px !important;
224
+ }
225
+
226
+ .my-12 {
227
+ margin-top: 48px !important;
228
+ margin-bottom: 48px !important;
229
+ }
230
+
231
+ .my-13 {
232
+ margin-top: 52px !important;
233
+ margin-bottom: 52px !important;
234
+ }
235
+
236
+ .my-14 {
237
+ margin-top: 56px !important;
238
+ margin-bottom: 56px !important;
239
+ }
240
+
241
+ .my-15 {
242
+ margin-top: 60px !important;
243
+ margin-bottom: 60px !important;
244
+ }
245
+
246
+ .my-16 {
247
+ margin-top: 64px !important;
248
+ margin-bottom: 64px !important;
249
+ }
250
+
251
+ .my-auto {
252
+ margin-top: auto !important;
253
+ margin-bottom: auto !important;
254
+ }
255
+
256
+ .mt-0 {
257
+ margin-top: 0px !important;
258
+ }
259
+
260
+ .mt-1 {
261
+ margin-top: 4px !important;
262
+ }
263
+
264
+ .mt-2 {
265
+ margin-top: 8px !important;
266
+ }
267
+
268
+ .mt-3 {
269
+ margin-top: 12px !important;
270
+ }
271
+
272
+ .mt-4 {
273
+ margin-top: 16px !important;
274
+ }
275
+
276
+ .mt-5 {
277
+ margin-top: 20px !important;
278
+ }
279
+
280
+ .mt-6 {
281
+ margin-top: 24px !important;
282
+ }
283
+
284
+ .mt-7 {
285
+ margin-top: 28px !important;
286
+ }
287
+
288
+ .mt-8 {
289
+ margin-top: 32px !important;
290
+ }
291
+
292
+ .mt-9 {
293
+ margin-top: 36px !important;
294
+ }
295
+
296
+ .mt-10 {
297
+ margin-top: 40px !important;
298
+ }
299
+
300
+ .mt-11 {
301
+ margin-top: 44px !important;
302
+ }
303
+
304
+ .mt-12 {
305
+ margin-top: 48px !important;
306
+ }
307
+
308
+ .mt-13 {
309
+ margin-top: 52px !important;
310
+ }
311
+
312
+ .mt-14 {
313
+ margin-top: 56px !important;
314
+ }
315
+
316
+ .mt-15 {
317
+ margin-top: 60px !important;
318
+ }
319
+
320
+ .mt-16 {
321
+ margin-top: 64px !important;
322
+ }
323
+
324
+ .mt-auto {
325
+ margin-top: auto !important;
326
+ }
327
+
328
+ .mr-0 {
329
+ margin-right: 0px !important;
330
+ }
331
+
332
+ .mr-1 {
333
+ margin-right: 4px !important;
334
+ }
335
+
336
+ .mr-2 {
337
+ margin-right: 8px !important;
338
+ }
339
+
340
+ .mr-3 {
341
+ margin-right: 12px !important;
342
+ }
343
+
344
+ .mr-4 {
345
+ margin-right: 16px !important;
346
+ }
347
+
348
+ .mr-5 {
349
+ margin-right: 20px !important;
350
+ }
351
+
352
+ .mr-6 {
353
+ margin-right: 24px !important;
354
+ }
355
+
356
+ .mr-7 {
357
+ margin-right: 28px !important;
358
+ }
359
+
360
+ .mr-8 {
361
+ margin-right: 32px !important;
362
+ }
363
+
364
+ .mr-9 {
365
+ margin-right: 36px !important;
366
+ }
367
+
368
+ .mr-10 {
369
+ margin-right: 40px !important;
370
+ }
371
+
372
+ .mr-11 {
373
+ margin-right: 44px !important;
374
+ }
375
+
376
+ .mr-12 {
377
+ margin-right: 48px !important;
378
+ }
379
+
380
+ .mr-13 {
381
+ margin-right: 52px !important;
382
+ }
383
+
384
+ .mr-14 {
385
+ margin-right: 56px !important;
386
+ }
387
+
388
+ .mr-15 {
389
+ margin-right: 60px !important;
390
+ }
391
+
392
+ .mr-16 {
393
+ margin-right: 64px !important;
394
+ }
395
+
396
+ .mr-auto {
397
+ margin-right: auto !important;
398
+ }
399
+
400
+ .mb-0 {
401
+ margin-bottom: 0px !important;
402
+ }
403
+
404
+ .mb-1 {
405
+ margin-bottom: 4px !important;
406
+ }
407
+
408
+ .mb-2 {
409
+ margin-bottom: 8px !important;
410
+ }
411
+
412
+ .mb-3 {
413
+ margin-bottom: 12px !important;
414
+ }
415
+
416
+ .mb-4 {
417
+ margin-bottom: 16px !important;
418
+ }
419
+
420
+ .mb-5 {
421
+ margin-bottom: 20px !important;
422
+ }
423
+
424
+ .mb-6 {
425
+ margin-bottom: 24px !important;
426
+ }
427
+
428
+ .mb-7 {
429
+ margin-bottom: 28px !important;
430
+ }
431
+
432
+ .mb-8 {
433
+ margin-bottom: 32px !important;
434
+ }
435
+
436
+ .mb-9 {
437
+ margin-bottom: 36px !important;
438
+ }
439
+
440
+ .mb-10 {
441
+ margin-bottom: 40px !important;
442
+ }
443
+
444
+ .mb-11 {
445
+ margin-bottom: 44px !important;
446
+ }
447
+
448
+ .mb-12 {
449
+ margin-bottom: 48px !important;
450
+ }
451
+
452
+ .mb-13 {
453
+ margin-bottom: 52px !important;
454
+ }
455
+
456
+ .mb-14 {
457
+ margin-bottom: 56px !important;
458
+ }
459
+
460
+ .mb-15 {
461
+ margin-bottom: 60px !important;
462
+ }
463
+
464
+ .mb-16 {
465
+ margin-bottom: 64px !important;
466
+ }
467
+
468
+ .mb-auto {
469
+ margin-bottom: auto !important;
470
+ }
471
+
472
+ .ml-0 {
473
+ margin-left: 0px !important;
474
+ }
475
+
476
+ .ml-1 {
477
+ margin-left: 4px !important;
478
+ }
479
+
480
+ .ml-2 {
481
+ margin-left: 8px !important;
482
+ }
483
+
484
+ .ml-3 {
485
+ margin-left: 12px !important;
486
+ }
487
+
488
+ .ml-4 {
489
+ margin-left: 16px !important;
490
+ }
491
+
492
+ .ml-5 {
493
+ margin-left: 20px !important;
494
+ }
495
+
496
+ .ml-6 {
497
+ margin-left: 24px !important;
498
+ }
499
+
500
+ .ml-7 {
501
+ margin-left: 28px !important;
502
+ }
503
+
504
+ .ml-8 {
505
+ margin-left: 32px !important;
506
+ }
507
+
508
+ .ml-9 {
509
+ margin-left: 36px !important;
510
+ }
511
+
512
+ .ml-10 {
513
+ margin-left: 40px !important;
514
+ }
515
+
516
+ .ml-11 {
517
+ margin-left: 44px !important;
518
+ }
519
+
520
+ .ml-12 {
521
+ margin-left: 48px !important;
522
+ }
523
+
524
+ .ml-13 {
525
+ margin-left: 52px !important;
526
+ }
527
+
528
+ .ml-14 {
529
+ margin-left: 56px !important;
530
+ }
531
+
532
+ .ml-15 {
533
+ margin-left: 60px !important;
534
+ }
535
+
536
+ .ml-16 {
537
+ margin-left: 64px !important;
538
+ }
539
+
540
+ .ml-auto {
541
+ margin-left: auto !important;
542
+ }
543
+ .mt-n1 {
544
+ margin-top: -4px !important;
545
+ }
546
+
547
+ .mt-n2 {
548
+ margin-top: -8px !important;
549
+ }
550
+
551
+ .mt-n3 {
552
+ margin-top: -12px !important;
553
+ }
554
+
555
+ .mt-n4 {
556
+ margin-top: -16px !important;
557
+ }
558
+
559
+ .mt-n5 {
560
+ margin-top: -20px !important;
561
+ }
562
+
563
+ .mt-n6 {
564
+ margin-top: -24px !important;
565
+ }
566
+
567
+ .mt-n7 {
568
+ margin-top: -28px !important;
569
+ }
570
+
571
+ .mt-n8 {
572
+ margin-top: -32px !important;
573
+ }
574
+
575
+ .mt-n9 {
576
+ margin-top: -36px !important;
577
+ }
578
+
579
+ .mt-n10 {
580
+ margin-top: -40px !important;
581
+ }
582
+
583
+ .mt-n11 {
584
+ margin-top: -44px !important;
585
+ }
586
+
587
+ .mt-n12 {
588
+ margin-top: -48px !important;
589
+ }
590
+
591
+ .mt-n13 {
592
+ margin-top: -52px !important;
593
+ }
594
+
595
+ .mt-n14 {
596
+ margin-top: -56px !important;
597
+ }
598
+
599
+ .mt-n15 {
600
+ margin-top: -60px !important;
601
+ }
602
+
603
+ .mt-n16 {
604
+ margin-top: -64px !important;
605
+ }
606
+
607
+ .mr-n1 {
608
+ margin-right: -4px !important;
609
+ }
610
+
611
+ .mr-n2 {
612
+ margin-right: -8px !important;
613
+ }
614
+
615
+ .mr-n3 {
616
+ margin-right: -12px !important;
617
+ }
618
+
619
+ .mr-n4 {
620
+ margin-right: -16px !important;
621
+ }
622
+
623
+ .mr-n5 {
624
+ margin-right: -20px !important;
625
+ }
626
+
627
+ .mr-n6 {
628
+ margin-right: -24px !important;
629
+ }
630
+
631
+ .mr-n7 {
632
+ margin-right: -28px !important;
633
+ }
634
+
635
+ .mr-n8 {
636
+ margin-right: -32px !important;
637
+ }
638
+
639
+ .mr-n9 {
640
+ margin-right: -36px !important;
641
+ }
642
+
643
+ .mr-n10 {
644
+ margin-right: -40px !important;
645
+ }
646
+
647
+ .mr-n11 {
648
+ margin-right: -44px !important;
649
+ }
650
+
651
+ .mr-n12 {
652
+ margin-right: -48px !important;
653
+ }
654
+
655
+ .mr-n13 {
656
+ margin-right: -52px !important;
657
+ }
658
+
659
+ .mr-n14 {
660
+ margin-right: -56px !important;
661
+ }
662
+
663
+ .mr-n15 {
664
+ margin-right: -60px !important;
665
+ }
666
+
667
+ .mr-n16 {
668
+ margin-right: -64px !important;
669
+ }
670
+
671
+ .mb-n1 {
672
+ margin-bottom: -4px !important;
673
+ }
674
+
675
+ .mb-n2 {
676
+ margin-bottom: -8px !important;
677
+ }
678
+
679
+ .mb-n3 {
680
+ margin-bottom: -12px !important;
681
+ }
682
+
683
+ .mb-n4 {
684
+ margin-bottom: -16px !important;
685
+ }
686
+
687
+ .mb-n5 {
688
+ margin-bottom: -20px !important;
689
+ }
690
+
691
+ .mb-n6 {
692
+ margin-bottom: -24px !important;
693
+ }
694
+
695
+ .mb-n7 {
696
+ margin-bottom: -28px !important;
697
+ }
698
+
699
+ .mb-n8 {
700
+ margin-bottom: -32px !important;
701
+ }
702
+
703
+ .mb-n9 {
704
+ margin-bottom: -36px !important;
705
+ }
706
+
707
+ .mb-n10 {
708
+ margin-bottom: -40px !important;
709
+ }
710
+
711
+ .mb-n11 {
712
+ margin-bottom: -44px !important;
713
+ }
714
+
715
+ .mb-n12 {
716
+ margin-bottom: -48px !important;
717
+ }
718
+
719
+ .mb-n13 {
720
+ margin-bottom: -52px !important;
721
+ }
722
+
723
+ .mb-n14 {
724
+ margin-bottom: -56px !important;
725
+ }
726
+
727
+ .mb-n15 {
728
+ margin-bottom: -60px !important;
729
+ }
730
+
731
+ .mb-n16 {
732
+ margin-bottom: -64px !important;
733
+ }
734
+
735
+ .ml-n1 {
736
+ margin-left: -4px !important;
737
+ }
738
+
739
+ .ml-n2 {
740
+ margin-left: -8px !important;
741
+ }
742
+
743
+ .ml-n3 {
744
+ margin-left: -12px !important;
745
+ }
746
+
747
+ .ml-n4 {
748
+ margin-left: -16px !important;
749
+ }
750
+
751
+ .ml-n5 {
752
+ margin-left: -20px !important;
753
+ }
754
+
755
+ .ml-n6 {
756
+ margin-left: -24px !important;
757
+ }
758
+
759
+ .ml-n7 {
760
+ margin-left: -28px !important;
761
+ }
762
+
763
+ .ml-n8 {
764
+ margin-left: -32px !important;
765
+ }
766
+
767
+ .ml-n9 {
768
+ margin-left: -36px !important;
769
+ }
770
+
771
+ .ml-n10 {
772
+ margin-left: -40px !important;
773
+ }
774
+
775
+ .ml-n11 {
776
+ margin-left: -44px !important;
777
+ }
778
+
779
+ .ml-n12 {
780
+ margin-left: -48px !important;
781
+ }
782
+
783
+ .ml-n13 {
784
+ margin-left: -52px !important;
785
+ }
786
+
787
+ .ml-n14 {
788
+ margin-left: -56px !important;
789
+ }
790
+
791
+ .ml-n15 {
792
+ margin-left: -60px !important;
793
+ }
794
+
795
+ .ml-n16 {
796
+ margin-left: -64px !important;
797
+ }
798
+ .pt-0 {
799
+ padding-top: 0px !important;
800
+ }
801
+
802
+ .pt-1 {
803
+ padding-top: 4px !important;
804
+ }
805
+
806
+ .pt-2 {
807
+ padding-top: 8px !important;
808
+ }
809
+
810
+ .pt-3 {
811
+ padding-top: 12px !important;
812
+ }
813
+
814
+ .pt-4 {
815
+ padding-top: 16px !important;
816
+ }
817
+
818
+ .pt-5 {
819
+ padding-top: 20px !important;
820
+ }
821
+
822
+ .pt-6 {
823
+ padding-top: 24px !important;
824
+ }
825
+
826
+ .pt-7 {
827
+ padding-top: 28px !important;
828
+ }
829
+
830
+ .pt-8 {
831
+ padding-top: 32px !important;
832
+ }
833
+
834
+ .pt-9 {
835
+ padding-top: 36px !important;
836
+ }
837
+
838
+ .pt-10 {
839
+ padding-top: 40px !important;
840
+ }
841
+
842
+ .pt-11 {
843
+ padding-top: 44px !important;
844
+ }
845
+
846
+ .pt-12 {
847
+ padding-top: 48px !important;
848
+ }
849
+
850
+ .pt-13 {
851
+ padding-top: 52px !important;
852
+ }
853
+
854
+ .pt-14 {
855
+ padding-top: 56px !important;
856
+ }
857
+
858
+ .pt-15 {
859
+ padding-top: 60px !important;
860
+ }
861
+
862
+ .pt-16 {
863
+ padding-top: 64px !important;
864
+ }
865
+
866
+ .pr-0 {
867
+ padding-right: 0px !important;
868
+ }
869
+
870
+ .pr-1 {
871
+ padding-right: 4px !important;
872
+ }
873
+
874
+ .pr-2 {
875
+ padding-right: 8px !important;
876
+ }
877
+
878
+ .pr-3 {
879
+ padding-right: 12px !important;
880
+ }
881
+
882
+ .pr-4 {
883
+ padding-right: 16px !important;
884
+ }
885
+
886
+ .pr-5 {
887
+ padding-right: 20px !important;
888
+ }
889
+
890
+ .pr-6 {
891
+ padding-right: 24px !important;
892
+ }
893
+
894
+ .pr-7 {
895
+ padding-right: 28px !important;
896
+ }
897
+
898
+ .pr-8 {
899
+ padding-right: 32px !important;
900
+ }
901
+
902
+ .pr-9 {
903
+ padding-right: 36px !important;
904
+ }
905
+
906
+ .pr-10 {
907
+ padding-right: 40px !important;
908
+ }
909
+
910
+ .pr-11 {
911
+ padding-right: 44px !important;
912
+ }
913
+
914
+ .pr-12 {
915
+ padding-right: 48px !important;
916
+ }
917
+
918
+ .pr-13 {
919
+ padding-right: 52px !important;
920
+ }
921
+
922
+ .pr-14 {
923
+ padding-right: 56px !important;
924
+ }
925
+
926
+ .pr-15 {
927
+ padding-right: 60px !important;
928
+ }
929
+
930
+ .pr-16 {
931
+ padding-right: 64px !important;
932
+ }
933
+
934
+ .pb-0 {
935
+ padding-bottom: 0px !important;
936
+ }
937
+
938
+ .pb-1 {
939
+ padding-bottom: 4px !important;
940
+ }
941
+
942
+ .pb-2 {
943
+ padding-bottom: 8px !important;
944
+ }
945
+
946
+ .pb-3 {
947
+ padding-bottom: 12px !important;
948
+ }
949
+
950
+ .pb-4 {
951
+ padding-bottom: 16px !important;
952
+ }
953
+
954
+ .pb-5 {
955
+ padding-bottom: 20px !important;
956
+ }
957
+
958
+ .pb-6 {
959
+ padding-bottom: 24px !important;
960
+ }
961
+
962
+ .pb-7 {
963
+ padding-bottom: 28px !important;
964
+ }
965
+
966
+ .pb-8 {
967
+ padding-bottom: 32px !important;
968
+ }
969
+
970
+ .pb-9 {
971
+ padding-bottom: 36px !important;
972
+ }
973
+
974
+ .pb-10 {
975
+ padding-bottom: 40px !important;
976
+ }
977
+
978
+ .pb-11 {
979
+ padding-bottom: 44px !important;
980
+ }
981
+
982
+ .pb-12 {
983
+ padding-bottom: 48px !important;
984
+ }
985
+
986
+ .pb-13 {
987
+ padding-bottom: 52px !important;
988
+ }
989
+
990
+ .pb-14 {
991
+ padding-bottom: 56px !important;
992
+ }
993
+
994
+ .pb-15 {
995
+ padding-bottom: 60px !important;
996
+ }
997
+
998
+ .pb-16 {
999
+ padding-bottom: 64px !important;
1000
+ }
1001
+
1002
+ .pl-0 {
1003
+ padding-left: 0px !important;
1004
+ }
1005
+
1006
+ .pl-1 {
1007
+ padding-left: 4px !important;
1008
+ }
1009
+
1010
+ .pl-2 {
1011
+ padding-left: 8px !important;
1012
+ }
1013
+
1014
+ .pl-3 {
1015
+ padding-left: 12px !important;
1016
+ }
1017
+
1018
+ .pl-4 {
1019
+ padding-left: 16px !important;
1020
+ }
1021
+
1022
+ .pl-5 {
1023
+ padding-left: 20px !important;
1024
+ }
1025
+
1026
+ .pl-6 {
1027
+ padding-left: 24px !important;
1028
+ }
1029
+
1030
+ .pl-7 {
1031
+ padding-left: 28px !important;
1032
+ }
1033
+
1034
+ .pl-8 {
1035
+ padding-left: 32px !important;
1036
+ }
1037
+
1038
+ .pl-9 {
1039
+ padding-left: 36px !important;
1040
+ }
1041
+
1042
+ .pl-10 {
1043
+ padding-left: 40px !important;
1044
+ }
1045
+
1046
+ .pl-11 {
1047
+ padding-left: 44px !important;
1048
+ }
1049
+
1050
+ .pl-12 {
1051
+ padding-left: 48px !important;
1052
+ }
1053
+
1054
+ .pl-13 {
1055
+ padding-left: 52px !important;
1056
+ }
1057
+
1058
+ .pl-14 {
1059
+ padding-left: 56px !important;
1060
+ }
1061
+
1062
+ .pl-15 {
1063
+ padding-left: 60px !important;
1064
+ }
1065
+
1066
+ .pl-16 {
1067
+ padding-left: 64px !important;
1068
+ }