@toolspack/ttd-pdfjs 0.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.
- package/.eslintignore +6 -0
- package/.eslintrc.js +52 -0
- package/README.md +20 -0
- package/lib/demo.html +8 -0
- package/lib/ttd-pdfjs.common.js +12281 -0
- package/lib/ttd-pdfjs.umd.js +12291 -0
- package/lib/ttd-pdfjs.umd.min.js +63 -0
- package/package.json +37 -0
- package/postcss.config.js +1 -0
- package/src/App.vue +56 -0
- package/src/main.js +8 -0
- package/src/packages/index.js +5 -0
- package/src/packages/pdfjs/PdfView216.vue +331 -0
- package/src/packages/utils/index.js +16 -0
- package/src/styles/base.scss +3 -0
- package/src/styles/common.less +729 -0
- package/src/styles/common.scss +22 -0
- package/src/styles/components/atomic.less +430 -0
- package/src/styles/components/button.scss +62 -0
- package/src/styles/components/el-pagination.scss +21 -0
- package/src/styles/components/file-group.scss +4 -0
- package/src/styles/components/input.scss +19 -0
- package/src/styles/components/message.scss +54 -0
- package/src/styles/components/reset.scss +8 -0
- package/src/styles/components/table.scss +35 -0
- package/src/styles/element-variables.scss +220 -0
- package/src/styles/input.less +59 -0
|
@@ -0,0 +1,430 @@
|
|
|
1
|
+
|
|
2
|
+
.w100 {
|
|
3
|
+
width: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.w80px {
|
|
7
|
+
width: 80px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.w240px {
|
|
11
|
+
width: 240px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.w320px {
|
|
15
|
+
width: 320px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.h100 {
|
|
19
|
+
height: 100%;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.tc {
|
|
23
|
+
text-align: center;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.tr {
|
|
27
|
+
text-align: right;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.tl {
|
|
31
|
+
text-align: left;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.fl {
|
|
35
|
+
float: left;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.fr {
|
|
39
|
+
float: right;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.p-r {
|
|
43
|
+
position: relative;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.over-h {
|
|
47
|
+
overflow: hidden !important;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.v-h {
|
|
51
|
+
visibility: hidden;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.df {
|
|
55
|
+
display: flex;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.flex-w-wrap {
|
|
59
|
+
flex-wrap: wrap;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.flex-ai-center {
|
|
63
|
+
align-items: center;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.flex-ai-stretch {
|
|
67
|
+
align-items: stretch;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.flex-ai-end {
|
|
71
|
+
align-items: flex-end;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.flex-jc-sb {
|
|
75
|
+
justify-content: space-between;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.flex-jc-center {
|
|
79
|
+
justify-content: center;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.flex-jc-start {
|
|
83
|
+
justify-content: flex-start;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.white {
|
|
87
|
+
color: #FFFFFF;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.red {
|
|
91
|
+
color: #FF553C !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.green {
|
|
95
|
+
color: #4DC766;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.blue {
|
|
99
|
+
color: #2E6BE6
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.color7C879B {
|
|
103
|
+
color: #7C879B;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.color4B5973 {
|
|
107
|
+
color: #4B5973;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.color336FFF {
|
|
111
|
+
color: #336FFF;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.color1990FC {
|
|
115
|
+
color: #1990FC;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.color666666 {
|
|
119
|
+
color: #666666;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.color222222 {
|
|
123
|
+
color: #222222;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.color909090 {
|
|
127
|
+
color: #909090;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.colorFFAA1F {
|
|
131
|
+
color: #FFAA1F;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.colorD9D9D9 {
|
|
135
|
+
color: #D9D9D9
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.color045 {
|
|
139
|
+
color: rgba(0,0,0,0.45);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.color085 {
|
|
143
|
+
color: rgba(0,0,0,0.85);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.bgF5F6F9 {
|
|
147
|
+
background: #F5F6F9;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.bgF1F2F6 {
|
|
151
|
+
background: #F1F2F6;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.bgFF4D4E {
|
|
155
|
+
background: #FF4D4E;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.bgD9DBE2 {
|
|
159
|
+
background: #D9DBE2;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.bgF8F8FA {
|
|
163
|
+
background: #F8F8FA
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.bg025 {
|
|
167
|
+
background: rgba(0,0,0,0.25)
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.font12 {
|
|
171
|
+
font-size: 12px;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.font14 {
|
|
175
|
+
font-size: 14px;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.font16 {
|
|
179
|
+
font-size: 16px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.font18 {
|
|
183
|
+
font-size: 18px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.font20 {
|
|
187
|
+
font-size: 20px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.font22 {
|
|
191
|
+
font-size: 22px;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
.font24 {
|
|
196
|
+
font-size: 24px;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.font28 {
|
|
200
|
+
font-size: 28px;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.font32 {
|
|
204
|
+
font-size: 32px;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.font30 {
|
|
208
|
+
font-size: 30px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.font40 {
|
|
212
|
+
font-size: 40px;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.fw500 {
|
|
216
|
+
font-weight: 500;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.bold {
|
|
220
|
+
font-weight: bold;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.lh0 {
|
|
224
|
+
line-height: 0;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.lh16 {
|
|
228
|
+
line-height: 16px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
.lh20 {
|
|
233
|
+
line-height: 20px;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.lh24 {
|
|
237
|
+
line-height: 24px;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.pointer {
|
|
241
|
+
cursor: pointer;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// margin相关
|
|
245
|
+
.margin0a {
|
|
246
|
+
margin: 0 auto;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.ml4 {
|
|
250
|
+
margin-left: 4px;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.ml8 {
|
|
254
|
+
margin-left: 8px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.ml12 {
|
|
258
|
+
margin-left: 12px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.ml16 {
|
|
262
|
+
margin-left: 16px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.ml20 {
|
|
266
|
+
margin-left: 20px;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.ml24 {
|
|
270
|
+
margin-left: 24px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.ml32 {
|
|
274
|
+
margin-left: 32px;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.ml80 {
|
|
278
|
+
margin-left: 80px;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.mr6 {
|
|
282
|
+
margin-right: 6px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.mr12 {
|
|
286
|
+
margin-right: 12px;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.mr16 {
|
|
290
|
+
margin-right: 16px;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.mt0 {
|
|
294
|
+
margin-top: 0 !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.mt8 {
|
|
298
|
+
margin-top: 8px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.mt12 {
|
|
302
|
+
margin-top: 12px;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.mt14 {
|
|
306
|
+
margin-top: 14px;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.mt16 {
|
|
310
|
+
margin-top: 16px;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.mt24 {
|
|
314
|
+
margin-top: 24px;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.mt28 {
|
|
318
|
+
margin-top: 28px;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.mt32 {
|
|
322
|
+
margin-top: 32px;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.mb6 {
|
|
326
|
+
margin-bottom: 6px;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.mb16 {
|
|
330
|
+
margin-bottom: 16px;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.mb18 {
|
|
334
|
+
margin-bottom: 18px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.mb24 {
|
|
338
|
+
margin-bottom: 24px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.mb32 {
|
|
342
|
+
margin-bottom: 32px;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.mb80 {
|
|
346
|
+
margin-bottom: 80px;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.mr8 {
|
|
350
|
+
margin-right: 8px;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.pad0 {
|
|
354
|
+
padding: 0;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.pt8 {
|
|
358
|
+
padding-top: 8px;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.pt16 {
|
|
362
|
+
padding-top: 16px;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// 有些表格显示不出右边框
|
|
366
|
+
.pr1 {
|
|
367
|
+
padding-right: 1px;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.pr16 {
|
|
371
|
+
padding-right: 16px;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.pr24 {
|
|
375
|
+
padding-right: 24px;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.pb8 {
|
|
379
|
+
padding-bottom: 8px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.pb16 {
|
|
383
|
+
padding-bottom: 16px;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.pl10 {
|
|
387
|
+
padding-left: 10px;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.pl100 {
|
|
391
|
+
margin-left: 100px;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.pl4 {
|
|
395
|
+
padding-left: 4px;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.pl16 {
|
|
399
|
+
padding-left: 16px;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.pl20 {
|
|
403
|
+
padding-left: 20px;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.pl24 {
|
|
407
|
+
padding-left: 24px;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.pl40 {
|
|
411
|
+
padding-left: 40px;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.borD9DBE2 {
|
|
415
|
+
border: 1px solid #D9DBE2;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.borD9DBE2-t {
|
|
419
|
+
border-top: 1px solid #D9DBE2;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.borD9DBE2-l {
|
|
423
|
+
border-left: 1px solid #D9DBE2;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
.bor-rad4 {
|
|
429
|
+
border-radius: 4px;
|
|
430
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
.el-button--primary.is-disabled,
|
|
2
|
+
.el-button--primary.is-disabled:hover,
|
|
3
|
+
.el-button--primary.is-disabled:focus,
|
|
4
|
+
.el-button--primary.is-disabled:active {
|
|
5
|
+
background-color: #DAE6FE;
|
|
6
|
+
border-color: #DAE6FE;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.el-button.black-btn {
|
|
10
|
+
color: #222222;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.el-button--info:hover,
|
|
14
|
+
.el-button--info:focus {
|
|
15
|
+
background: #7C879B;
|
|
16
|
+
border-color: #7C879B;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.el-button {
|
|
20
|
+
font-size: 16px;
|
|
21
|
+
padding: 12px 40px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.el-button--small {
|
|
25
|
+
font-size: 14px;
|
|
26
|
+
padding: 8px 15px;
|
|
27
|
+
border-radius: 2px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.el-button--text {
|
|
31
|
+
padding-left: 0;
|
|
32
|
+
padding-right: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.el-button--mini {
|
|
36
|
+
font-size: 12px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.el-button--danger-origin {
|
|
40
|
+
border-color: #FF3838;
|
|
41
|
+
background: #FF3838;
|
|
42
|
+
color: #ffffff;
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
background: #F78989;
|
|
46
|
+
border-color: #F78989;
|
|
47
|
+
color: #ffffff;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
.medium-origin.el-button--medium {
|
|
53
|
+
padding: 10px 20px;
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
border-radius: 4px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.mini-origin.el-button--mini {
|
|
59
|
+
padding: 7px 15px;
|
|
60
|
+
font-size: 12px;
|
|
61
|
+
border-radius: 3px;
|
|
62
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.detail-pageination {
|
|
2
|
+
padding: 18px 20px;
|
|
3
|
+
|
|
4
|
+
.el-pagination .btn-next:disabled,
|
|
5
|
+
.el-pagination .btn-prev:disabled {
|
|
6
|
+
background: transparent;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.el-pager li,
|
|
10
|
+
.btn-prev,
|
|
11
|
+
.btn-next {
|
|
12
|
+
background: transparent;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.el-pager li.active {
|
|
16
|
+
display: inline-block;
|
|
17
|
+
border: 1px solid #666;
|
|
18
|
+
background: #fff;
|
|
19
|
+
color: #666;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.keyword-search320 {
|
|
2
|
+
width: 320px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
// 重写el-input type="textarea"
|
|
6
|
+
.el-textarea__inner {
|
|
7
|
+
border-color: #d2d2d2;
|
|
8
|
+
border-radius: 2px;
|
|
9
|
+
resize: none;
|
|
10
|
+
height: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.el-input-number .el-input__inner {
|
|
14
|
+
text-align: left;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.el-input__inner[type=number] {
|
|
18
|
+
padding-right: 0;
|
|
19
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
.el-alert {
|
|
2
|
+
padding: 10px 8px;
|
|
3
|
+
|
|
4
|
+
.title-msg-header {
|
|
5
|
+
margin-top: 8px;
|
|
6
|
+
|
|
7
|
+
.icon-left {
|
|
8
|
+
font-size: 21px;
|
|
9
|
+
color: #1990fc;
|
|
10
|
+
vertical-align: middle;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.title {
|
|
14
|
+
margin-left: 8px;
|
|
15
|
+
font-size: 16px;
|
|
16
|
+
color: #222222;
|
|
17
|
+
letter-spacing: 0;
|
|
18
|
+
line-height: 24px;
|
|
19
|
+
vertical-align: middle
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.title-msg-body {
|
|
26
|
+
display: inline-block;
|
|
27
|
+
padding: 0 30px;
|
|
28
|
+
margin-bottom: 8px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.el-alert__title {
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
line-height: 20px;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.el-alert__closebtn {
|
|
38
|
+
font-size: 16px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.el-alert .el-alert__description {
|
|
42
|
+
font-size: 14px;
|
|
43
|
+
letter-spacing: 0;
|
|
44
|
+
line-height: 22px;
|
|
45
|
+
margin: 8px 0 0 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.el-alert--info.is-light {
|
|
49
|
+
background-color: rgba(51, 111, 255, 0.1);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.el-alert--info .el-alert__description {
|
|
53
|
+
color: #4B5973;
|
|
54
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/* 将所有表格 标题及内容左对齐 */
|
|
2
|
+
|
|
3
|
+
.el-table--small {
|
|
4
|
+
font-size: 13px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.el-table__empty-block {
|
|
8
|
+
line-height: 60px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.el-table {
|
|
12
|
+
color: #4B5973;
|
|
13
|
+
box-sizing: content-box;
|
|
14
|
+
overflow: visible;
|
|
15
|
+
|
|
16
|
+
thead {
|
|
17
|
+
color: #7C879B;
|
|
18
|
+
line-height: 24px;
|
|
19
|
+
|
|
20
|
+
th {
|
|
21
|
+
background: #F1F2F6;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
th.is-center,
|
|
26
|
+
td.is-center {
|
|
27
|
+
text-align: left;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
th.is-leaf {
|
|
31
|
+
border: none;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.table-embed {}
|