@jx3box/jx3box-editor 1.8.7 → 1.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2018 @@
1
+ /*
2
+ * Base.less
3
+ * Author: iRuxu
4
+ * Description: Base function,ie hack,quick layout
5
+ * Manual: http://csslab.cc
6
+ */
7
+ /*-------------------------------------
8
+ ├ Font ┆
9
+ └------------------------------------*/
10
+ /*-------------------------------------
11
+ ├ Align ┆
12
+ └------------------------------------*/
13
+ /*-------------------------------------
14
+ ├ Text ┆
15
+ └------------------------------------*/
16
+ /*-------------------------------------
17
+ ├ Size ┆
18
+ └------------------------------------*/
19
+ /*-------------------------------------
20
+ ├ Display ┆
21
+ └------------------------------------*/
22
+ .none {
23
+ display: none;
24
+ }
25
+ .hide {
26
+ visibility: hidden;
27
+ }
28
+ .show {
29
+ visibility: visible;
30
+ }
31
+ .clip {
32
+ overflow: hidden;
33
+ *zoom: 1;
34
+ }
35
+ /*-------------------------------------
36
+ ├ Layout ┆
37
+ └------------------------------------*/
38
+ .fl {
39
+ float: left;
40
+ *display: inline;
41
+ }
42
+ .fr {
43
+ float: right;
44
+ *display: inline;
45
+ }
46
+ .clearfix {
47
+ *zoom: 1;
48
+ }
49
+ .clearfix:after {
50
+ content: "";
51
+ display: table;
52
+ clear: both;
53
+ }
54
+ .fbox {
55
+ display: table-cell;
56
+ width: 5000px;
57
+ *display: inline-block;
58
+ *width: auto;
59
+ }
60
+ /*-------------------------------------
61
+ ├ Flex & Grid ┆
62
+ └------------------------------------*/
63
+ .flex {
64
+ display: flex;
65
+ }
66
+ .iflex {
67
+ display: inline-flex;
68
+ }
69
+ .grid {
70
+ display: grid;
71
+ }
72
+ .igrid {
73
+ display: inline-grid;
74
+ }
75
+ /*-------------------------------------
76
+ ├ Position ┆
77
+ └------------------------------------*/
78
+ .ps {
79
+ position: static;
80
+ }
81
+ .pr {
82
+ position: relative;
83
+ *zoom: 1;
84
+ }
85
+ .pa {
86
+ position: absolute;
87
+ }
88
+ .pf {
89
+ position: fixed;
90
+ }
91
+ .po {
92
+ position: static;
93
+ margin: 0;
94
+ }
95
+ .islocked {
96
+ width: 100%;
97
+ height: 100%;
98
+ overflow: hidden;
99
+ }
100
+ .islocked body {
101
+ width: 100%;
102
+ height: 100%;
103
+ overflow: hidden;
104
+ }
105
+ /*-------------------------------------
106
+ ├ Image ┆
107
+ └------------------------------------*/
108
+ /*-------------------------------------
109
+ ├ Effect ┆
110
+ └------------------------------------*/
111
+ /*-------------------------------------
112
+ ├ Other ┆
113
+ └------------------------------------*/
114
+ .iconfont {
115
+ display: inline-block;
116
+ *display: inline;
117
+ *zoom: 1;
118
+ vertical-align: middle;
119
+ font-family: "iconfont";
120
+ font-style: normal;
121
+ -webkit-font-smoothing: antialiased;
122
+ -webkit-text-stroke-width: 0.2px;
123
+ -moz-osx-font-smoothing: grayscale;
124
+ cursor: pointer;
125
+ }
126
+ .c-article-tinymce {
127
+ font-size: 1em;
128
+ line-height: 1.8;
129
+ color: #3d454d;
130
+ max-width: 100%;
131
+ -webkit-font-smoothing: antialiased !important;
132
+ overflow-wrap: break-word;
133
+ word-wrap: break-word;
134
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, "Microsoft YaHei", Trebuchet MS, Calibri, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, sans-serif;
135
+ text-rendering: optimizelegibility;
136
+ }
137
+ .c-article-tinymce * {
138
+ max-width: 100%;
139
+ box-sizing: border-box;
140
+ }
141
+ .c-article-editor {
142
+ margin: 8px;
143
+ }
144
+ .c-article-origin {
145
+ display: none;
146
+ }
147
+ @media print {
148
+ .c-article-tinymce {
149
+ -webkit-print-color-adjust: exact;
150
+ }
151
+ }
152
+ /* 链接 */
153
+ .c-article-tinymce a {
154
+ color: #0366d6;
155
+ text-decoration: none;
156
+ }
157
+ .c-article-tinymce a:hover {
158
+ box-shadow: 0 1px 0 #0366d6;
159
+ }
160
+ .c-article-tinymce .e-jx3-author {
161
+ color: #8250df;
162
+ }
163
+ .c-article-tinymce .e-jx3-author:hover {
164
+ box-shadow: 0 1px 0 #8250df;
165
+ }
166
+ /* 列表 */
167
+ .c-article-tinymce {
168
+ /* 旧版checklist,无创建逻辑,仅作留存显示 */
169
+ }
170
+ .c-article-tinymce ul,
171
+ .c-article-tinymce ol {
172
+ margin: 20px 0;
173
+ }
174
+ .c-article-tinymce ul,
175
+ .c-article-tinymce ol {
176
+ padding-left: 40px;
177
+ }
178
+ .c-article-tinymce .e-checklist div {
179
+ position: relative;
180
+ padding-left: 1.4em;
181
+ }
182
+ .c-article-tinymce .e-checklist div:before {
183
+ display: block;
184
+ position: absolute;
185
+ left: 0;
186
+ top: 0.7em;
187
+ content: "";
188
+ cursor: pointer;
189
+ height: 1em;
190
+ width: 1em;
191
+ background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
192
+ background-size: 100%;
193
+ background-repeat: no-repeat;
194
+ background-position: 0 0;
195
+ }
196
+ .c-article-tinymce .e-checklist div.on:before {
197
+ background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
198
+ }
199
+ .c-article-tinymce .tox-checklist > li {
200
+ line-height: 2.2;
201
+ margin: 0 !important;
202
+ }
203
+ .c-article-tinymce .tox-checklist > li:not(.tox-checklist--hidden) {
204
+ list-style: none;
205
+ margin: 0.25em 0;
206
+ }
207
+ .c-article-tinymce .tox-checklist > li:not(.tox-checklist--hidden)::before {
208
+ background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
209
+ background-size: 100%;
210
+ content: "";
211
+ cursor: pointer;
212
+ height: 1em;
213
+ margin-left: -1.5em;
214
+ margin-top: 0.7em;
215
+ position: absolute;
216
+ width: 1em;
217
+ }
218
+ .c-article-tinymce .tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
219
+ background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
220
+ }
221
+ .c-article-tinymce [dir="rtl"] .tox-checklist > li:not(.tox-checklist--hidden)::before {
222
+ margin-left: 0;
223
+ margin-right: -1.5em;
224
+ }
225
+ /* 引用 */
226
+ .c-article-tinymce blockquote {
227
+ border: 1px dashed #e1e4e8;
228
+ border-radius: 4px;
229
+ padding: 10px;
230
+ background-color: #fafbfc;
231
+ font-size: 14px;
232
+ line-height: 2;
233
+ margin: 10px 0;
234
+ }
235
+ /* 水平线 */
236
+ .c-article-tinymce hr {
237
+ margin-top: 22px;
238
+ margin-bottom: 22px;
239
+ border: 0;
240
+ border-top: 1px solid #eeeeee;
241
+ }
242
+ /* 表格 */
243
+ .c-article-tinymce table {
244
+ border-collapse: collapse;
245
+ width: 100%;
246
+ height: auto;
247
+ margin: 10px 0;
248
+ overflow-x: auto;
249
+ max-width: 100%;
250
+ border: none;
251
+ line-height: 2.2;
252
+ color: #3d454d;
253
+ }
254
+ .c-article-tinymce table td,
255
+ .c-article-tinymce table th {
256
+ padding: 6px 10px;
257
+ }
258
+ .c-article-tinymce table td {
259
+ border: 1px solid #eee;
260
+ }
261
+ .c-article-tinymce table tr:nth-child(2n + 1) {
262
+ background-color: #fafbfc;
263
+ }
264
+ .c-article-tinymce table tr:first-child {
265
+ background-color: #fafbfc;
266
+ font-weight: 600;
267
+ }
268
+ @media screen and (max-width: 720px) {
269
+ .c-article-tinymce table {
270
+ display: block;
271
+ width: 100% !important;
272
+ height: auto !important;
273
+ }
274
+ .c-article-tinymce table th,
275
+ .c-article-tinymce table td {
276
+ white-space: nowrap;
277
+ }
278
+ }
279
+ @media print {
280
+ table {
281
+ page-break-inside: avoid !important;
282
+ }
283
+ }
284
+ .c-article-tinymce img {
285
+ height: auto;
286
+ padding: 5px;
287
+ border: 1px solid #eee;
288
+ margin: 5px;
289
+ }
290
+ .c-article-tinymce .t-emotion {
291
+ padding: 0 1px;
292
+ border: none;
293
+ margin: 0;
294
+ vertical-align: -3px;
295
+ }
296
+ .c-article-tinymce p,
297
+ .c-article-tinymce div {
298
+ margin: 0;
299
+ line-height: 2.2;
300
+ }
301
+ .c-article-tinymce h1,
302
+ .c-article-tinymce h2,
303
+ .c-article-tinymce h3,
304
+ .c-article-tinymce h4,
305
+ .c-article-tinymce h5,
306
+ .c-article-tinymce h6 {
307
+ margin-top: 24px;
308
+ margin-bottom: 16px;
309
+ font-weight: 600;
310
+ line-height: 1.25;
311
+ }
312
+ .c-article-tinymce h1,
313
+ .c-article-tinymce h2 {
314
+ padding-bottom: 0.3em;
315
+ border-bottom: 1px solid #eaecef;
316
+ }
317
+ .c-article-tinymce h1 {
318
+ font-size: 2em;
319
+ }
320
+ .c-article-tinymce h2 {
321
+ font-size: 1.5em;
322
+ }
323
+ .c-article-tinymce h3 {
324
+ font-size: 1.25em;
325
+ }
326
+ .c-article-tinymce h4 {
327
+ font-size: 1em;
328
+ border-left: 5px solid #0366d6;
329
+ padding: 6px 10px;
330
+ background-color: #fafbfc;
331
+ }
332
+ .c-article-tinymce h5 {
333
+ font-size: 14px;
334
+ padding: 8px 10px;
335
+ background-color: #fafbfc;
336
+ border-radius: 4px;
337
+ }
338
+ .c-article-tinymce h6 {
339
+ font-size: 13px;
340
+ padding: 5px 0 10px 0;
341
+ border-bottom: 1px dotted #ddd;
342
+ }
343
+ .c-article-tinymce h6:before {
344
+ content: ">";
345
+ color: #ccc;
346
+ margin-right: 10px;
347
+ font-family: "宋体", Consolas;
348
+ }
349
+ .c-article-tinymce {
350
+ /* Code blocks */
351
+ /* Inline code */
352
+ }
353
+ .c-article-tinymce code {
354
+ font-family: Consolas, monospace, serif;
355
+ color: #dd0055;
356
+ padding: 2px 4px;
357
+ border: 1px solid #dddddd;
358
+ border-radius: 3px;
359
+ background: #fafafa;
360
+ }
361
+ .c-article-tinymce code[class*="language-"],
362
+ .c-article-tinymce pre[class*="language-"] {
363
+ color: black;
364
+ background: none;
365
+ text-shadow: 0 1px white;
366
+ font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
367
+ font-size: 1em;
368
+ text-align: left;
369
+ white-space: pre;
370
+ word-spacing: normal;
371
+ word-break: normal;
372
+ word-wrap: normal;
373
+ line-height: 1.5;
374
+ -moz-tab-size: 4;
375
+ tab-size: 4;
376
+ -webkit-hyphens: none;
377
+ -ms-hyphens: none;
378
+ hyphens: none;
379
+ border: none;
380
+ padding: 0;
381
+ border-radius: 0;
382
+ }
383
+ .c-article-tinymce pre[class*="language-"]::-moz-selection,
384
+ .c-article-tinymce pre[class*="language-"] ::-moz-selection,
385
+ .c-article-tinymce code[class*="language-"]::-moz-selection,
386
+ .c-article-tinymce code[class*="language-"] ::-moz-selection {
387
+ text-shadow: none;
388
+ background: #b3d4fc;
389
+ }
390
+ .c-article-tinymce pre[class*="language-"]::selection,
391
+ .c-article-tinymce pre[class*="language-"] ::selection,
392
+ .c-article-tinymce code[class*="language-"]::selection,
393
+ .c-article-tinymce code[class*="language-"] ::selection {
394
+ text-shadow: none;
395
+ background: #b3d4fc;
396
+ }
397
+ @media print {
398
+ .c-article-tinymce code[class*="language-"],
399
+ .c-article-tinymce pre[class*="language-"] {
400
+ text-shadow: none;
401
+ }
402
+ }
403
+ .c-article-tinymce pre[class*="language-"] {
404
+ padding: 1em;
405
+ margin: 0.5em 0;
406
+ overflow: auto;
407
+ }
408
+ .c-article-tinymce :not(pre) > code[class*="language-"],
409
+ .c-article-tinymce pre[class*="language-"] {
410
+ background: #f6f8fa;
411
+ }
412
+ .c-article-tinymce :not(pre) > code[class*="language-"] {
413
+ padding: 0.1em;
414
+ border-radius: 0.3em;
415
+ white-space: normal;
416
+ }
417
+ .c-article-tinymce .token.comment,
418
+ .c-article-tinymce .token.prolog,
419
+ .c-article-tinymce .token.doctype,
420
+ .c-article-tinymce .token.cdata {
421
+ color: slategray;
422
+ }
423
+ .c-article-tinymce .token.punctuation {
424
+ color: #999;
425
+ }
426
+ .c-article-tinymce .namespace {
427
+ opacity: 0.7;
428
+ }
429
+ .c-article-tinymce .token.property,
430
+ .c-article-tinymce .token.tag,
431
+ .c-article-tinymce .token.boolean,
432
+ .c-article-tinymce .token.number,
433
+ .c-article-tinymce .token.constant,
434
+ .c-article-tinymce .token.symbol,
435
+ .c-article-tinymce .token.deleted {
436
+ color: #905;
437
+ }
438
+ .c-article-tinymce .token.selector,
439
+ .c-article-tinymce .token.attr-name,
440
+ .c-article-tinymce .token.string,
441
+ .c-article-tinymce .token.char,
442
+ .c-article-tinymce .token.builtin,
443
+ .c-article-tinymce .token.inserted {
444
+ color: #690;
445
+ }
446
+ .c-article-tinymce .token.operator,
447
+ .c-article-tinymce .token.entity,
448
+ .c-article-tinymce .token.url,
449
+ .c-article-tinymce .language-css .token.string,
450
+ .c-article-tinymce .style .token.string {
451
+ color: #9a6e3a;
452
+ background: hsla(0, 0%, 100%, 0.5);
453
+ }
454
+ .c-article-tinymce .token.atrule,
455
+ .c-article-tinymce .token.attr-value,
456
+ .c-article-tinymce .token.keyword {
457
+ color: #07a;
458
+ }
459
+ .c-article-tinymce .token.function,
460
+ .c-article-tinymce .token.class-name {
461
+ color: #dd4a68;
462
+ }
463
+ .c-article-tinymce .token.regex,
464
+ .c-article-tinymce .token.important,
465
+ .c-article-tinymce .token.variable {
466
+ color: #e90;
467
+ }
468
+ .c-article-tinymce .token.important,
469
+ .c-article-tinymce .token.bold {
470
+ font-weight: bold;
471
+ }
472
+ .c-article-tinymce .token.italic {
473
+ font-style: italic;
474
+ }
475
+ .c-article-tinymce .token.entity {
476
+ cursor: help;
477
+ }
478
+ .c-article-tinymce .e-details,
479
+ .c-article-tinymce .e-summary {
480
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
481
+ white-space: pre-wrap;
482
+ margin: 0;
483
+ }
484
+ .c-article-tinymce .e-summary {
485
+ cursor: pointer;
486
+ position: relative;
487
+ border: 1px solid #ddd;
488
+ background-color: #fafbfc;
489
+ padding: 8px 10px 8px 26px;
490
+ display: block;
491
+ margin-bottom: 0;
492
+ border-radius: 4px;
493
+ line-height: 1.6;
494
+ font-size: 14px;
495
+ letter-spacing: 0.5px;
496
+ }
497
+ .c-article-tinymce .e-summary:before {
498
+ content: ">";
499
+ display: block;
500
+ position: absolute;
501
+ left: 10px;
502
+ top: 8px;
503
+ font-family: "宋体", Consolas;
504
+ color: #aaa;
505
+ transform: rotate(0);
506
+ }
507
+ .c-article-tinymce .e-summary:after {
508
+ content: "🌷";
509
+ display: block;
510
+ position: absolute;
511
+ right: 10px;
512
+ top: 8px;
513
+ }
514
+ .c-article-tinymce .e-summary.on {
515
+ border-bottom-left-radius: 0;
516
+ border-bottom-right-radius: 0;
517
+ }
518
+ .c-article-tinymce .e-summary.on:before {
519
+ transform: rotate(90deg);
520
+ }
521
+ .c-article-tinymce .e-summary.on:after {
522
+ content: "🌸";
523
+ }
524
+ .c-article-tinymce .e-details {
525
+ padding: 10px;
526
+ border: 1px dashed #ddd;
527
+ margin-top: 0;
528
+ background: none;
529
+ border-top: none;
530
+ display: none;
531
+ }
532
+ .c-article-editor .e-summary {
533
+ cursor: text;
534
+ }
535
+ .c-article-editor .e-details {
536
+ display: block;
537
+ }
538
+ .hevue-imgpreview-wrap .he-img-wrap {
539
+ background: rgba(0, 0, 0, 0.8);
540
+ }
541
+ .hevue-imgpreview-wrap .arrow,
542
+ .hevue-imgpreview-wrap .he-close-icon {
543
+ display: block!important;
544
+ text-align: center!important;
545
+ }
546
+ .hevue-imgpreview-wrap .he-close-icon:hover {
547
+ transform: scale(1.2);
548
+ }
549
+ .c-article-tinymce .w-latex {
550
+ position: relative;
551
+ *zoom: 1;
552
+ font-family: Georgia, 'Times New Roman', Times, serif;
553
+ }
554
+ .c-article-tinymce .w-latex:after {
555
+ content: 'JX3BOX·Katex';
556
+ position: absolute;
557
+ right: 0;
558
+ top: -30px;
559
+ background-color: #24292e;
560
+ color: #fff;
561
+ border-radius: 3px;
562
+ padding: 0 8px;
563
+ line-height: 28px;
564
+ height: 28px;
565
+ box-sizing: border-box;
566
+ font-size: 14px;
567
+ font-family: consolas;
568
+ }
569
+ .c-article-editor .e-latex-area {
570
+ min-height: 24px;
571
+ border-radius: 4px;
572
+ padding: 10px;
573
+ font-size: 14px;
574
+ white-space: pre-wrap;
575
+ background-color: #f1f8ff;
576
+ border: 1px solid #c8e1ff;
577
+ color: #62a9ff;
578
+ font-family: Georgia, 'Times New Roman', Times, serif;
579
+ position: relative;
580
+ *zoom: 1;
581
+ }
582
+ .c-article-editor .e-latex-area:after {
583
+ content: 'Latex';
584
+ position: absolute;
585
+ right: 10px;
586
+ top: 10px;
587
+ background-color: #62a9ff;
588
+ color: #fff;
589
+ border-radius: 3px;
590
+ padding: 0 8px;
591
+ font-family: consolas;
592
+ }
593
+ .c-article-editor .mce-pagebreak {
594
+ padding: 0;
595
+ outline: none;
596
+ border: none;
597
+ border-top: 1px dashed #aaa;
598
+ height: 10px !important;
599
+ margin: 20px auto;
600
+ }
601
+ .c-article-chunk {
602
+ display: none;
603
+ }
604
+ .c-article-chunk.on {
605
+ display: block;
606
+ }
607
+ .c-article-all {
608
+ width: 100%;
609
+ margin: 10px auto !important;
610
+ display: block !important;
611
+ }
612
+ .c-article-pages {
613
+ margin: 10px;
614
+ max-width: 100%;
615
+ overflow-x: auto;
616
+ text-align: center;
617
+ }
618
+ .c-article-pages .el-pager {
619
+ margin: 0;
620
+ padding: 0;
621
+ }
622
+ .c-article .e-print-pagebreak {
623
+ display: none;
624
+ }
625
+ .c-article-editor .e-print-pagebreak {
626
+ display: block;
627
+ border: none;
628
+ border-bottom: 1px dotted #7ddcf9;
629
+ font-size: 0;
630
+ width: 100%;
631
+ height: 0;
632
+ box-sizing: border-box;
633
+ margin: 0 !important;
634
+ }
635
+ @media print {
636
+ .c-article .e-print-pagebreak {
637
+ page-break-after: always;
638
+ }
639
+ }
640
+ .w-jx3macro {
641
+ font-size: 15px;
642
+ line-height: 24px;
643
+ font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
644
+ }
645
+ .w-jx3macro ol {
646
+ padding: 0 0 0 40px;
647
+ border-radius: 4px;
648
+ background: #f6f8fa;
649
+ border: 1px solid #eee;
650
+ }
651
+ .w-jx3macro li {
652
+ margin: 0 !important;
653
+ background: #fafbfc;
654
+ border-bottom: 1px solid #e1e4e8;
655
+ border-left: 1px solid #e1e4e8;
656
+ list-style: decimal;
657
+ }
658
+ .w-jx3macro li:last-child {
659
+ border-bottom: none;
660
+ }
661
+ .w-jx3macro li:hover {
662
+ background-color: #fff;
663
+ }
664
+ .w-jx3macro pre {
665
+ background: none;
666
+ border: none;
667
+ padding: 6px 10px !important;
668
+ margin: 0;
669
+ line-height: 24px;
670
+ border: none !important;
671
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
672
+ white-space: normal;
673
+ }
674
+ @media print {
675
+ .w-jx3macro {
676
+ page-break-inside: avoid !important;
677
+ }
678
+ .w-jx3macro ol {
679
+ padding-left: 0;
680
+ }
681
+ .w-jx3macro li {
682
+ list-style: none;
683
+ border-left: none;
684
+ }
685
+ }
686
+ .jx3macro-comment {
687
+ color: #22863a;
688
+ }
689
+ .jx3macro-condition {
690
+ color: #6f42c1;
691
+ }
692
+ .jx3macro-key {
693
+ color: #d73a49;
694
+ }
695
+ .jx3macro-keyword-cast {
696
+ color: #005cc5;
697
+ }
698
+ .jx3macro-keyword-fcast {
699
+ color: #e6a11d;
700
+ }
701
+ .jx3macro-keyword-msg {
702
+ color: #666;
703
+ }
704
+ .w-qixue-box {
705
+ zoom: 1;
706
+ display: inline-flex;
707
+ background-color: #2e4946;
708
+ border-radius: 5px;
709
+ border: 2px solid #6f888a;
710
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
711
+ padding-top: 8px;
712
+ padding-bottom: 8px;
713
+ padding-right: 20px;
714
+ white-space: nowrap;
715
+ font-size: 0;
716
+ position: relative;
717
+ *zoom: 1;
718
+ }
719
+ .w-qixue-box.isQQBrowser {
720
+ padding-right: 30px !important;
721
+ }
722
+ .w-qixue-box li {
723
+ list-style: none;
724
+ }
725
+ .w-qixue-box img {
726
+ display: block;
727
+ width: 48px;
728
+ height: 48px;
729
+ border-radius: 5px;
730
+ margin-left: auto;
731
+ margin-right: auto;
732
+ box-sizing: border-box;
733
+ filter: saturate(110%) brightness(110%);
734
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
735
+ user-select: none;
736
+ }
737
+ .w-qixue-box .w-qixue-xf {
738
+ vertical-align: top;
739
+ font-size: 14px;
740
+ color: #fff;
741
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
742
+ text-align: center;
743
+ box-sizing: border-box;
744
+ writing-mode: tb-rl;
745
+ writing-mode: vertical-rl;
746
+ background: url("https://img.jx3box.com/img/qixue/label.png") no-repeat 0 0;
747
+ width: 23px;
748
+ height: 86px;
749
+ margin-right: 5px;
750
+ margin-left: 10px;
751
+ user-select: none;
752
+ border: none;
753
+ font-weight: normal;
754
+ margin-top: 0;
755
+ margin-bottom: 0;
756
+ line-height: 1.1;
757
+ padding-right: 5px;
758
+ letter-spacing: 1px;
759
+ }
760
+ .w-qixue-box .w-qixue-clist {
761
+ margin: 0;
762
+ }
763
+ .w-qixue-box .w-qixue-clist-item .u-pic,
764
+ .w-qixue-box .w-qixue-olist-item .u-pic {
765
+ display: block;
766
+ position: relative;
767
+ *zoom: 1;
768
+ }
769
+ .w-qixue-box .w-qixue-clist-item .u-pic:before,
770
+ .w-qixue-box .w-qixue-olist-item .u-pic:before,
771
+ .w-qixue-box .w-qixue-clist-item .u-pic:after,
772
+ .w-qixue-box .w-qixue-olist-item .u-pic:after {
773
+ content: "";
774
+ display: block;
775
+ }
776
+ .w-qixue-box .w-qixue-clist-item .u-pic:after,
777
+ .w-qixue-box .w-qixue-olist-item .u-pic:after {
778
+ width: 52px;
779
+ height: 52px;
780
+ position: absolute;
781
+ left: -2px;
782
+ top: -2px;
783
+ background: url("https://img.jx3box.com/img/qixue/bg.png") no-repeat 0 0;
784
+ z-index: 6;
785
+ }
786
+ .w-qixue-box .w-qixue-clist-item img,
787
+ .w-qixue-box .w-qixue-olist-item img {
788
+ border-radius: 48px;
789
+ padding: 0;
790
+ margin: 0;
791
+ border: none;
792
+ }
793
+ .w-qixue-box .w-qixue-clist-item .u-title,
794
+ .w-qixue-box .w-qixue-olist-item .u-title {
795
+ color: #fff;
796
+ text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
797
+ font-size: 13px;
798
+ line-height: 14px;
799
+ text-align: center;
800
+ display: block;
801
+ margin-left: auto;
802
+ margin-right: auto;
803
+ margin-top: 6px;
804
+ width: 48px;
805
+ }
806
+ .w-qixue-box .w-qixue-clist {
807
+ display: inline-block;
808
+ *display: inline;
809
+ vertical-align: top;
810
+ font-size: 0;
811
+ white-space: nowrap;
812
+ margin-top: 8px;
813
+ position: relative;
814
+ *zoom: 1;
815
+ z-index: 2;
816
+ padding-left: 0;
817
+ }
818
+ .w-qixue-box .w-qixue-clist-item {
819
+ display: inline-block;
820
+ *display: inline;
821
+ vertical-align: middle;
822
+ padding-left: 10px;
823
+ padding-right: 10px;
824
+ position: relative;
825
+ *zoom: 1;
826
+ /* &.w-qixue-isskill .u-pic{
827
+ &:before{
828
+ .pa;.lt(0);
829
+ .full;
830
+ border:2px solid @color-cyan;
831
+ }
832
+ } */
833
+ }
834
+ .w-qixue-box .w-qixue-clist-item:last-child {
835
+ margin-right: 0;
836
+ }
837
+ .w-qixue-box .w-qixue-clist-item:before {
838
+ content: "";
839
+ width: 44px;
840
+ height: 11px;
841
+ background: url("https://img.jx3box.com/img/qixue/fold.png") no-repeat 0 0;
842
+ margin: 0 2px;
843
+ display: none;
844
+ }
845
+ .w-qixue-box .w-qixue-clist-item.on:before {
846
+ background-image: url("https://img.jx3box.com/img/qixue/unfold.png");
847
+ }
848
+ .w-qixue-box .w-qixue-obox,
849
+ .w-qixue-box .w-qixue-olist,
850
+ .w-qixue-box .w-qixue-item-pop {
851
+ display: none;
852
+ }
853
+ .w-qixue-box .w-qixue-obox {
854
+ position: absolute;
855
+ left: 40px;
856
+ bottom: 100%;
857
+ white-space: nowrap;
858
+ font-size: 0;
859
+ }
860
+ .w-qixue-box .w-qixue-obox.on {
861
+ display: block;
862
+ }
863
+ .w-qixue-box .w-qixue-olist {
864
+ position: relative;
865
+ z-index: 1000;
866
+ display: inline-block;
867
+ *display: inline;
868
+ *zoom: 1;
869
+ vertical-align: bottom;
870
+ background-color: #2e4946;
871
+ padding: 8px;
872
+ border-top-left-radius: 5px;
873
+ border-top-right-radius: 5px;
874
+ border: 2px solid #6f888a;
875
+ border-bottom: none;
876
+ box-shadow: 3px -3px 3px rgba(0, 0, 0, 0.4);
877
+ transform: scale(0);
878
+ }
879
+ .w-qixue-box .w-qixue-olist:last-child {
880
+ margin-right: 0;
881
+ }
882
+ .w-qixue-box .w-qixue-olist.on {
883
+ transform: scale(1);
884
+ }
885
+ .w-qixue-box .w-qixue-olist-item {
886
+ margin-bottom: 8px;
887
+ position: relative;
888
+ *zoom: 1;
889
+ }
890
+ .w-qixue-box .w-qixue-olist-item .u-pic:before {
891
+ width: 100%;
892
+ height: 100%;
893
+ position: absolute;
894
+ left: 0;
895
+ top: 0;
896
+ background-color: rgba(0, 0, 0, 0.6);
897
+ border-radius: 48px;
898
+ z-index: 5;
899
+ }
900
+ .w-qixue-box .w-qixue-olist-item:hover .u-pic:before {
901
+ opacity: 0;
902
+ filter: alpha(opacity=0);
903
+ }
904
+ .w-qixue-box .w-qixue-olist-item:last-child {
905
+ margin-bottom: 0;
906
+ }
907
+ .w-qixue-box .w-qixue-is_skill .u-pic:before,
908
+ .w-qixue-box .w-qixue-is_skill .u-pic img {
909
+ border-radius: 0;
910
+ }
911
+ .w-qixue-box .w-qixue-is_skill .u-pic:after {
912
+ display: none;
913
+ }
914
+ .w-qixue-box .w-qixue-item-pop {
915
+ position: absolute;
916
+ left: 100%;
917
+ top: 0;
918
+ z-index: 999;
919
+ background-color: rgba(0, 0, 0, 0.8);
920
+ margin-left: 4px;
921
+ border-radius: 3px;
922
+ padding: 10px;
923
+ width: 320px;
924
+ max-width: none;
925
+ }
926
+ .w-qixue-box .w-qixue-item-pop * {
927
+ display: block;
928
+ white-space: normal;
929
+ word-wrap: break-word;
930
+ word-break: break-all;
931
+ }
932
+ .w-qixue-box .w-qixue-item-pop .u-name,
933
+ .w-qixue-box .w-qixue-item-pop .u-desc {
934
+ color: #ffff00;
935
+ }
936
+ .w-qixue-box .w-qixue-item-pop .u-name {
937
+ font-size: 14px;
938
+ line-height: 2;
939
+ }
940
+ .w-qixue-box .w-qixue-item-pop .u-desc {
941
+ font-size: 12px;
942
+ line-height: 20px;
943
+ }
944
+ .w-qixue-box .w-qixue-item-pop .u-skill {
945
+ color: #fff;
946
+ font-size: 13px;
947
+ line-height: 20px;
948
+ }
949
+ .w-qixue-box .w-qixue-item-pop .u-meta,
950
+ .w-qixue-box .w-qixue-item-pop .u-extend {
951
+ color: #ff9600;
952
+ font-size: 13px;
953
+ line-height: 2;
954
+ font-style: normal;
955
+ }
956
+ .w-qixue-box .w-qixue-item-pop.on {
957
+ display: block;
958
+ }
959
+ .w-qixue-box .w-qixue-clist-item .w-qixue-item-pop {
960
+ left: 0;
961
+ top: auto;
962
+ bottom: 100%;
963
+ margin-bottom: 10px;
964
+ }
965
+ @media screen and (max-width: 1133px) {
966
+ .w-qixue-box {
967
+ *zoom: 1;
968
+ display: block;
969
+ width: auto;
970
+ }
971
+ .w-qixue-box:after {
972
+ content: "";
973
+ display: table;
974
+ clear: both;
975
+ }
976
+ .w-qixue-box li,
977
+ .w-qixue-box .w-qixue-xf {
978
+ float: left;
979
+ *display: inline;
980
+ margin-bottom: 10px;
981
+ }
982
+ .w-qixue-box .w-qixue-xf {
983
+ display: none;
984
+ }
985
+ .w-qixue-box .w-qixue-clist {
986
+ display: block;
987
+ *zoom: 1;
988
+ margin-top: 0;
989
+ }
990
+ .w-qixue-box .w-qixue-clist:after {
991
+ content: "";
992
+ display: table;
993
+ clear: both;
994
+ }
995
+ }
996
+ .w-qixue-editable .w-qixue-xf {
997
+ margin-top: 5px;
998
+ }
999
+ .w-qixue-editable li {
1000
+ cursor: pointer;
1001
+ }
1002
+ .w-qixue-editable .w-qixue-clist-item {
1003
+ user-select: none;
1004
+ }
1005
+ .w-qixue-editable .w-qixue-clist-item:before {
1006
+ display: block;
1007
+ }
1008
+ .w-qixue-editable.disabled:after {
1009
+ content: "";
1010
+ display: block;
1011
+ width: 100%;
1012
+ height: 100%;
1013
+ position: absolute;
1014
+ left: 0;
1015
+ top: 0;
1016
+ z-index: 10;
1017
+ background-color: rgba(0, 0, 0, 0.5);
1018
+ }
1019
+ .w-qixue-editable.active:after {
1020
+ display: none;
1021
+ }
1022
+ .w-qixue-editable .w-qixue-clist-item .w-qixue-item-pop {
1023
+ display: none !important;
1024
+ }
1025
+ @media screen and (max-width: 1133px) {
1026
+ .w-qixue-editable {
1027
+ display: block;
1028
+ width: auto;
1029
+ }
1030
+ .w-qixue-editable li,
1031
+ .w-qixue-editable .w-qixue-xf {
1032
+ float: left;
1033
+ *display: inline;
1034
+ margin-bottom: 10px;
1035
+ }
1036
+ .w-qixue-editable .w-qixue-obox {
1037
+ left: 0;
1038
+ }
1039
+ .w-qixue-editable .w-qixue-olist {
1040
+ *zoom: 1;
1041
+ display: none;
1042
+ }
1043
+ .w-qixue-editable .w-qixue-olist:after {
1044
+ content: "";
1045
+ display: table;
1046
+ clear: both;
1047
+ }
1048
+ .w-qixue-editable .w-qixue-olist.on {
1049
+ display: block;
1050
+ }
1051
+ .w-qixue-editable .w-qixue-olist li {
1052
+ margin-right: 10px;
1053
+ transform: scale(1);
1054
+ }
1055
+ .w-qixue-editable .w-qixue-olist li:last-child {
1056
+ margin-right: 0;
1057
+ }
1058
+ .w-qixue-editable .w-qixue-item-pop {
1059
+ left: 0;
1060
+ top: auto;
1061
+ bottom: 100%;
1062
+ }
1063
+ }
1064
+ @media print {
1065
+ .w-qixue-box {
1066
+ page-break-inside: avoid !important;
1067
+ padding-right: 40px;
1068
+ }
1069
+ .w-qixue-box .w-qixue-clist-item {
1070
+ padding-left: 5px;
1071
+ padding-right: 0;
1072
+ transform: scale(0.85);
1073
+ }
1074
+ }
1075
+ .c-article-tinymce video {
1076
+ background-color: #333;
1077
+ width: 100%;
1078
+ height: 800px;
1079
+ display: block;
1080
+ cursor: pointer;
1081
+ }
1082
+ .c-article-videox iframe,
1083
+ .c-article-videox iframe[allowfullscreen="allowfullscreen"] {
1084
+ width: 100%;
1085
+ height: 800px;
1086
+ border: 1px solid #eee;
1087
+ box-sizing: border-box;
1088
+ }
1089
+ .w-player-bilibili {
1090
+ width: 100%;
1091
+ height: 800px;
1092
+ border: 1px solid #eee;
1093
+ box-sizing: border-box;
1094
+ }
1095
+ @media screen and (max-width: 1133px) {
1096
+ .w-player-bilibili {
1097
+ height: 600px;
1098
+ }
1099
+ }
1100
+ @media screen and (max-width: 1023px) {
1101
+ .w-player-bilibili {
1102
+ height: 500px;
1103
+ }
1104
+ }
1105
+ @media screen and (max-width: 720px) {
1106
+ .w-player-bilibili {
1107
+ height: 240px;
1108
+ }
1109
+ }
1110
+ @media screen and (max-width: 374px) {
1111
+ .w-player-bilibili {
1112
+ height: 180px;
1113
+ }
1114
+ }
1115
+ .c-article-editor video,
1116
+ .c-article-editor iframe {
1117
+ cursor: default;
1118
+ }
1119
+ .c-article-editor iframe {
1120
+ width: auto;
1121
+ height: auto;
1122
+ }
1123
+ @media screen and (max-width: 1133px) {
1124
+ .c-article video,
1125
+ .c-article-videox iframe {
1126
+ height: auto;
1127
+ min-height: 200px;
1128
+ }
1129
+ }
1130
+ .c-article-tinymce .e-jx3macro-area {
1131
+ position: relative;
1132
+ *zoom: 1;
1133
+ }
1134
+ .c-article-tinymce .e-jx3macro-area:after {
1135
+ content: 'JX3BOX·MACRO';
1136
+ position: absolute;
1137
+ right: 0;
1138
+ top: -30px;
1139
+ background-color: #24292e;
1140
+ color: #fff;
1141
+ border-radius: 3px;
1142
+ padding: 0 8px;
1143
+ line-height: 28px;
1144
+ height: 28px;
1145
+ box-sizing: border-box;
1146
+ font-size: 14px;
1147
+ }
1148
+ .c-article-editor .e-jx3macro-area {
1149
+ min-height: 24px;
1150
+ border-radius: 4px;
1151
+ padding: 10px;
1152
+ font-size: 14px;
1153
+ white-space: pre-wrap;
1154
+ background-color: #f1f8ff;
1155
+ border: 1px solid #c8e1ff;
1156
+ color: #62a9ff;
1157
+ position: relative;
1158
+ *zoom: 1;
1159
+ }
1160
+ .c-article-editor .e-jx3macro-area:after {
1161
+ content: 'JX3BOX·MACRO';
1162
+ position: absolute;
1163
+ right: 10px;
1164
+ top: 10px;
1165
+ background-color: #62a9ff;
1166
+ color: #fff;
1167
+ border-radius: 3px;
1168
+ padding: 0 8px;
1169
+ }
1170
+ .e-jx3qixue-area,
1171
+ .e-jx3talent2-area {
1172
+ min-height: 24px;
1173
+ border-radius: 4px;
1174
+ font-size: 14px;
1175
+ width: 100%;
1176
+ box-sizing: border-box;
1177
+ background-color: #f1f8ff;
1178
+ border: 1px solid #c8e1ff;
1179
+ color: #62a9ff;
1180
+ line-height: 40px !important;
1181
+ padding: 0 10px;
1182
+ font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1183
+ position: relative;
1184
+ *zoom: 1;
1185
+ }
1186
+ .e-jx3qixue-area:after,
1187
+ .e-jx3talent2-area:after {
1188
+ content: "JX3BOX·TALENT";
1189
+ position: absolute;
1190
+ right: 8px;
1191
+ top: 8px;
1192
+ background-color: #62a9ff;
1193
+ color: #fff;
1194
+ border-radius: 3px;
1195
+ padding: 2px 8px;
1196
+ line-height: 21px;
1197
+ }
1198
+ .c-article .e-jx3qixue-area,
1199
+ .c-article .e-jx3talent2-area {
1200
+ display: none;
1201
+ }
1202
+ .c-article-editor .e-jx3qixue-area,
1203
+ .c-article-editor .e-jx3talent2-area {
1204
+ display: block;
1205
+ }
1206
+ .e-pz-iframe {
1207
+ min-height: 24px;
1208
+ border-radius: 4px;
1209
+ font-size: 14px;
1210
+ width: 100%;
1211
+ box-sizing: border-box;
1212
+ background-color: #f1f8ff;
1213
+ border: 1px solid #c8e1ff;
1214
+ color: #62a9ff;
1215
+ line-height: 40px !important;
1216
+ padding: 0 10px 0 140px;
1217
+ font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1218
+ position: relative;
1219
+ *zoom: 1;
1220
+ }
1221
+ .e-pz-iframe:after {
1222
+ content: "JX3BOX·配装方案";
1223
+ position: absolute;
1224
+ left: 8px;
1225
+ top: 8px;
1226
+ background-color: #62a9ff;
1227
+ color: #fff;
1228
+ border-radius: 3px;
1229
+ padding: 2px 8px;
1230
+ line-height: 21px;
1231
+ }
1232
+ .c-article-tinymce .e-pz-iframe {
1233
+ display: none;
1234
+ }
1235
+ .c-article-editor .e-pz-iframe {
1236
+ display: block;
1237
+ }
1238
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo {
1239
+ display: flex;
1240
+ gap: 20px;
1241
+ flex-wrap: wrap;
1242
+ list-style: none;
1243
+ padding: 0;
1244
+ margin: 0;
1245
+ }
1246
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item {
1247
+ list-style: none;
1248
+ position: relative;
1249
+ *zoom: 1;
1250
+ display: flex;
1251
+ flex-direction: column;
1252
+ align-items: center;
1253
+ }
1254
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item:not(:last-of-type)::after {
1255
+ content: "▲";
1256
+ position: absolute;
1257
+ right: -20px;
1258
+ top: 5px;
1259
+ transform: rotate(90deg);
1260
+ }
1261
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item img {
1262
+ border: none;
1263
+ padding: 0;
1264
+ margin: 0;
1265
+ }
1266
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-gcd-icon {
1267
+ position: absolute;
1268
+ left: -4px;
1269
+ top: -4px;
1270
+ background-color: #0366d6;
1271
+ width: 12px;
1272
+ height: 12px;
1273
+ border-radius: 50%;
1274
+ display: block;
1275
+ }
1276
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-gcd-icon i {
1277
+ color: #fff;
1278
+ font-size: 12px;
1279
+ display: block;
1280
+ }
1281
+ .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-name {
1282
+ font-size: 13px;
1283
+ line-height: 1.5;
1284
+ width: 56px;
1285
+ overflow: hidden;
1286
+ text-overflow: clip;
1287
+ white-space: pre-wrap;
1288
+ text-align: center;
1289
+ }
1290
+ .c-article-editor .e-skill-combo {
1291
+ font-size: 14px;
1292
+ width: 100%;
1293
+ box-sizing: border-box;
1294
+ background-color: #f1f8ff;
1295
+ border: 1px solid #c8e1ff;
1296
+ color: #62a9ff;
1297
+ padding: 10px 10px 10px 30px;
1298
+ font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1299
+ position: relative;
1300
+ *zoom: 1;
1301
+ border-radius: 3px;
1302
+ }
1303
+ .c-article-editor .e-skill-combo:after {
1304
+ content: "JX3BOX·连招套路";
1305
+ position: absolute;
1306
+ right: 8px;
1307
+ top: 8px;
1308
+ background-color: #62a9ff;
1309
+ color: #fff;
1310
+ border-radius: 3px;
1311
+ padding: 2px 8px;
1312
+ line-height: 21px;
1313
+ }
1314
+ .c-article-directory h1,
1315
+ .c-article-directory h2,
1316
+ .c-article-directory h3,
1317
+ .c-article-directory h4,
1318
+ .c-article-directory h5,
1319
+ .c-article-directory h6 {
1320
+ margin: 0;
1321
+ padding: 0;
1322
+ cursor: pointer;
1323
+ font-weight: normal;
1324
+ white-space: nowrap;
1325
+ word-wrap: normal;
1326
+ word-break: keep-all;
1327
+ text-overflow: ellipsis;
1328
+ overflow: hidden;
1329
+ letter-spacing: 0.2px;
1330
+ line-height: 20px;
1331
+ padding: 8px 0;
1332
+ font-size: 12px;
1333
+ }
1334
+ .c-article-directory h1:hover,
1335
+ .c-article-directory h2:hover,
1336
+ .c-article-directory h3:hover,
1337
+ .c-article-directory h4:hover,
1338
+ .c-article-directory h5:hover,
1339
+ .c-article-directory h6:hover {
1340
+ color: #0366d6;
1341
+ }
1342
+ .c-article-directory a {
1343
+ color: #3d454d;
1344
+ }
1345
+ .c-article-directory h1::before,
1346
+ .c-article-directory h2::before,
1347
+ .c-article-directory h3::before,
1348
+ .c-article-directory h4::before,
1349
+ .c-article-directory h5::before,
1350
+ .c-article-directory h6::before {
1351
+ content: "\e78b";
1352
+ font-family: element-icons !important;
1353
+ speak: none;
1354
+ font-style: normal;
1355
+ font-weight: 400;
1356
+ font-variant: normal;
1357
+ text-transform: none;
1358
+ line-height: 1;
1359
+ vertical-align: baseline;
1360
+ display: inline-block;
1361
+ -webkit-font-smoothing: antialiased;
1362
+ margin-right: 5px;
1363
+ font-size: 16px;
1364
+ }
1365
+ .c-article-directory .lv2 {
1366
+ padding-left: 20px;
1367
+ }
1368
+ .c-article-directory .lv3 {
1369
+ padding-left: 40px;
1370
+ }
1371
+ .c-article-directory .lv0 {
1372
+ display: none;
1373
+ }
1374
+ .c-article-directory-title {
1375
+ margin-bottom: 5px;
1376
+ }
1377
+ .c-article-directory-title .c-article-directory-title-label {
1378
+ font-weight: 300;
1379
+ font-size: 20px;
1380
+ }
1381
+ .c-article-directory-title .c-article-directory-title-skip,
1382
+ .c-article-directory-title .c-article-directory-title-folder {
1383
+ font-size: 14px;
1384
+ float: right;
1385
+ padding: 0 5px;
1386
+ line-height: 25px;
1387
+ color: #cdd1db;
1388
+ cursor: pointer;
1389
+ }
1390
+ .c-article-directory-title .c-article-directory-title-skip:hover,
1391
+ .c-article-directory-title .c-article-directory-title-folder:hover {
1392
+ color: #a1a9bb;
1393
+ }
1394
+ .c-article-directory-content {
1395
+ padding: 10px 15px;
1396
+ }
1397
+ @keyframes focusFade {
1398
+ from {
1399
+ background-color: #c3fcff;
1400
+ }
1401
+ to {
1402
+ background-color: transparent;
1403
+ }
1404
+ }
1405
+ .c-article .isScrollFocus {
1406
+ animation: focusFade 0.5s ease-in-out;
1407
+ }
1408
+ .w-directory-anchor {
1409
+ font-size: 16px;
1410
+ cursor: pointer;
1411
+ }
1412
+ .w-directory-anchor:hover {
1413
+ box-shadow: none !important;
1414
+ color: #c00 !important;
1415
+ }
1416
+ .c-article .e-jx3-icon {
1417
+ padding: 0;
1418
+ width: 48px;
1419
+ height: 48px;
1420
+ border-radius: 6px;
1421
+ box-shadow: 0 0 1px inset rgba(0, 0, 0, 0.2);
1422
+ vertical-align: middle;
1423
+ }
1424
+ .c-article .e-jx3-emotion {
1425
+ max-width: 320px;
1426
+ vertical-align: middle;
1427
+ }
1428
+ .c-article .e-jx3-emotion:hover {
1429
+ box-shadow: none !important;
1430
+ }
1431
+ .c-article .e-jx3-emotion .e-jx3-emotion-img {
1432
+ border: none !important;
1433
+ }
1434
+ .c-article .e-jx3-resource {
1435
+ display: block;
1436
+ *zoom: 1;
1437
+ border: 1px solid #eee;
1438
+ background: #fafafa;
1439
+ margin-bottom: 10px;
1440
+ padding: 5px 5px 5px 60px;
1441
+ min-height: 60px;
1442
+ box-sizing: border-box;
1443
+ position: relative;
1444
+ white-space: normal;
1445
+ font-family: -apple-system, "Microsoft YaHei", Trebuchet MS, Calibri, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, sans-serif;
1446
+ text-rendering: optimizelegibility;
1447
+ }
1448
+ .c-article .e-jx3-resource:after {
1449
+ content: "";
1450
+ display: table;
1451
+ clear: both;
1452
+ }
1453
+ .c-article .e-jx3-resource .u-pic {
1454
+ border: none;
1455
+ outline: none !important;
1456
+ padding: 0;
1457
+ margin: 0;
1458
+ display: block;
1459
+ position: absolute;
1460
+ left: 5px;
1461
+ top: 5px;
1462
+ width: 48px;
1463
+ height: 48px;
1464
+ border-radius: 6px;
1465
+ box-shadow: 0 0 1px inset rgba(0, 0, 0, 0.2);
1466
+ }
1467
+ .c-article .e-jx3-resource .u-name {
1468
+ font-size: 14px;
1469
+ line-height: 2;
1470
+ font-weight: bold;
1471
+ display: block;
1472
+ }
1473
+ .c-article .e-jx3-resource .u-name em {
1474
+ font-style: normal;
1475
+ font-weight: normal;
1476
+ color: #999;
1477
+ font-size: 12px;
1478
+ }
1479
+ .c-article .e-jx3-resource .u-desc,
1480
+ .c-article .e-jx3-resource .u-content {
1481
+ font-size: 12px;
1482
+ display: block;
1483
+ white-space: pre-wrap;
1484
+ }
1485
+ .c-article .e-jx3-resource .u-id {
1486
+ font-size: 10px;
1487
+ color: #555;
1488
+ position: absolute;
1489
+ right: 5px;
1490
+ top: 5px;
1491
+ text-align: right;
1492
+ }
1493
+ .c-article .e-jx3-resource .u-detach {
1494
+ margin-top: 4px;
1495
+ display: block;
1496
+ }
1497
+ .c-article .e-jx3-resource .u-remark {
1498
+ display: none;
1499
+ }
1500
+ .c-article .e-jx3-resource .u-primary {
1501
+ display: block;
1502
+ }
1503
+ @media print {
1504
+ .e-jx3-resource {
1505
+ page-break-inside: avoid !important;
1506
+ }
1507
+ }
1508
+ .w-jx3-element-pop {
1509
+ position: fixed;
1510
+ z-index: 2000;
1511
+ }
1512
+ .w-buff {
1513
+ padding: 1px;
1514
+ border: 1px solid #0f2222;
1515
+ }
1516
+ .w-buff .w-buff-wrapper {
1517
+ max-width: 345px;
1518
+ min-width: 200px;
1519
+ padding: 9px 10px 10px;
1520
+ background-color: rgba(15, 34, 34, 0.88);
1521
+ box-sizing: border-box;
1522
+ display: flex;
1523
+ }
1524
+ .w-buff .w-buff-icon {
1525
+ width: 48px;
1526
+ height: 48px;
1527
+ border: none;
1528
+ padding: 0;
1529
+ margin: 0 10px 0 0;
1530
+ }
1531
+ .w-buff .w-buff-content {
1532
+ font-weight: normal;
1533
+ flex-grow: 1;
1534
+ text-shadow: 1px 1px 1px #0f2222;
1535
+ line-height: 20px;
1536
+ }
1537
+ .w-buff .w-buff-name {
1538
+ color: #ff0;
1539
+ display: block;
1540
+ font-size: 13px;
1541
+ }
1542
+ .w-buff .w-buff-type {
1543
+ display: block;
1544
+ color: #77ecff;
1545
+ letter-spacing: 0.5px;
1546
+ margin-bottom: 5px;
1547
+ font-size: 12px;
1548
+ line-height: 20px;
1549
+ }
1550
+ .w-buff .w-buff-desc {
1551
+ color: #ffffff;
1552
+ letter-spacing: 0.5px;
1553
+ font-size: 12px;
1554
+ line-height: 20px;
1555
+ }
1556
+ .w-buff .w-buff-meta {
1557
+ display: block;
1558
+ font-size: 12px;
1559
+ line-height: 20px;
1560
+ color: #5df9eb;
1561
+ }
1562
+ .c-article .e-jx3-buff {
1563
+ text-decoration: underline;
1564
+ }
1565
+ .c-article .e-jx3-buff:hover {
1566
+ box-shadow: none !important;
1567
+ }
1568
+ .w-skill {
1569
+ padding: 1px;
1570
+ border: 1px solid #0f2222;
1571
+ }
1572
+ .w-skill .w-skill-wrapper {
1573
+ max-width: 345px;
1574
+ min-width: 200px;
1575
+ padding: 9px 10px 10px;
1576
+ background-color: rgba(15, 34, 34, 0.88);
1577
+ box-sizing: border-box;
1578
+ display: flex;
1579
+ }
1580
+ .w-skill .w-skill-icon {
1581
+ width: 48px;
1582
+ height: 48px;
1583
+ border: none;
1584
+ padding: 0;
1585
+ margin: 0 10px 0 0;
1586
+ }
1587
+ .w-skill .w-skill-content {
1588
+ font-weight: normal;
1589
+ flex-grow: 1;
1590
+ text-shadow: 1px 1px 1px #0f2222;
1591
+ line-height: 20px;
1592
+ }
1593
+ .w-skill .w-skill-name {
1594
+ color: #ff0;
1595
+ display: block;
1596
+ font-size: 13px;
1597
+ }
1598
+ .w-skill .w-skill-desc {
1599
+ color: #ffffff;
1600
+ letter-spacing: 0.5px;
1601
+ margin-bottom: 10px;
1602
+ font-size: 12px;
1603
+ line-height: 20px;
1604
+ }
1605
+ .w-skill .w-skill-meta {
1606
+ display: block;
1607
+ font-size: 12px;
1608
+ line-height: 20px;
1609
+ color: #5df9eb;
1610
+ }
1611
+ .c-article .e-jx3-skill {
1612
+ text-decoration: underline;
1613
+ }
1614
+ .c-article .e-jx3-skill:hover {
1615
+ box-shadow: none !important;
1616
+ }
1617
+ .c-article .e-jx3-item {
1618
+ cursor: pointer;
1619
+ }
1620
+ .c-article .e-jx3-item-q0 {
1621
+ color: #a7a7a7;
1622
+ box-shadow: 0 1px 0 #a7a7a7;
1623
+ }
1624
+ .c-article .e-jx3-item-q0:hover {
1625
+ color: #a7a7a7;
1626
+ box-shadow: 0 1px 0 rgba(167, 167, 167, 0.88);
1627
+ }
1628
+ .c-article .e-jx3-item-q1 {
1629
+ color: #06bfcc;
1630
+ box-shadow: 0 1px 0 #06bfcc;
1631
+ }
1632
+ .c-article .e-jx3-item-q1:hover {
1633
+ color: rgba(6, 191, 204, 0.88);
1634
+ box-shadow: 0 1px 0 rgba(6, 191, 204, 0.88);
1635
+ }
1636
+ .c-article .e-jx3-item-q2 {
1637
+ color: #00d24b;
1638
+ box-shadow: 0 1px 0 #00d24b;
1639
+ }
1640
+ .c-article .e-jx3-item-q2:hover {
1641
+ color: rgba(0, 210, 75, 0.88);
1642
+ box-shadow: 0 1px 0 rgba(0, 210, 75, 0.88);
1643
+ }
1644
+ .c-article .e-jx3-item-q3 {
1645
+ color: #007eff;
1646
+ box-shadow: 0 1px 0 #007eff;
1647
+ }
1648
+ .c-article .e-jx3-item-q3:hover {
1649
+ color: rgba(0, 126, 255, 0.88);
1650
+ box-shadow: 0 1px 0 rgba(0, 126, 255, 0.88);
1651
+ }
1652
+ .c-article .e-jx3-item-q4 {
1653
+ color: #fe2dfe;
1654
+ box-shadow: 0 1px 0 #fe2dfe;
1655
+ }
1656
+ .c-article .e-jx3-item-q4:hover {
1657
+ color: rgba(254, 45, 254, 0.88);
1658
+ box-shadow: 0 1px 0 rgba(254, 45, 254, 0.88);
1659
+ }
1660
+ .c-article .e-jx3-item-q5 {
1661
+ color: #ffa500;
1662
+ box-shadow: 0 1px 0 #ffa500;
1663
+ }
1664
+ .c-article .e-jx3-item-q5:hover {
1665
+ color: rgba(255, 165, 0, 0.88);
1666
+ box-shadow: 0 1px 0 rgba(255, 165, 0, 0.88);
1667
+ }
1668
+ .c-item {
1669
+ position: relative;
1670
+ display: inline-block;
1671
+ *display: inline;
1672
+ *zoom: 1;
1673
+ padding: 2px;
1674
+ font-family: "SimHei", "STHeiti", "Microsoft YaHei";
1675
+ }
1676
+ .c-item.c-item-equipment {
1677
+ width: 345px;
1678
+ }
1679
+ .c-item.c-item-furniture {
1680
+ min-width: 200px;
1681
+ }
1682
+ .c-item * {
1683
+ box-sizing: border-box;
1684
+ }
1685
+ .c-item ul {
1686
+ margin: 0;
1687
+ padding: 0;
1688
+ list-style: none;
1689
+ }
1690
+ .c-item .c-item-wrapper {
1691
+ max-width: 345px;
1692
+ padding: 9px 10px 10px;
1693
+ background-color: rgba(15, 34, 34, 0.88);
1694
+ color: #ffffff;
1695
+ }
1696
+ .c-item .c-item-wrapper * {
1697
+ font-weight: normal;
1698
+ font-size: 13.6px;
1699
+ line-height: 1.5em;
1700
+ text-shadow: 1px 1px 1px #0f2222;
1701
+ }
1702
+ .c-item .c-item-wrapper:before {
1703
+ content: "";
1704
+ position: absolute;
1705
+ top: 0;
1706
+ left: 0;
1707
+ width: 100%;
1708
+ height: 100%;
1709
+ border: 1px solid #0f2222;
1710
+ box-sizing: border-box;
1711
+ pointer-events: none;
1712
+ }
1713
+ .c-item .c-item-wrapper .u-title {
1714
+ font-weight: normal;
1715
+ }
1716
+ .c-item .c-item-wrapper .u-desc {
1717
+ padding-right: 0px;
1718
+ }
1719
+ .c-item .c-item-wrapper .u-title,
1720
+ .c-item .c-item-wrapper .u-desc {
1721
+ margin: 0;
1722
+ }
1723
+ .c-item .c-item-wrapper .u-orange {
1724
+ color: #ffa500;
1725
+ }
1726
+ .c-item .c-item-wrapper .u-yellow {
1727
+ color: #ffff00;
1728
+ }
1729
+ .c-item .c-item-wrapper .u-green {
1730
+ color: #00d24b;
1731
+ }
1732
+ .c-item .c-item-wrapper .u-white {
1733
+ color: #ffffff;
1734
+ }
1735
+ .c-item .c-item-wrapper .u-gray {
1736
+ color: #adadad;
1737
+ }
1738
+ .c-item .c-item-wrapper .u-max-strength-level {
1739
+ position: relative;
1740
+ *zoom: 1;
1741
+ color: #7ee3a3;
1742
+ }
1743
+ .c-item .c-item-wrapper .u-max-strength-level span {
1744
+ position: absolute;
1745
+ top: 0;
1746
+ right: 0;
1747
+ }
1748
+ .c-item .c-item-wrapper .u-max-exist-time {
1749
+ color: #cfcfcf;
1750
+ }
1751
+ .c-item .c-item-wrapper .u-weapon-type-label + .u-type-label {
1752
+ float: right;
1753
+ *display: inline;
1754
+ transform: translateY(-100%);
1755
+ }
1756
+ .c-item .c-item-wrapper .u-attributes {
1757
+ position: relative;
1758
+ *zoom: 1;
1759
+ padding-right: 0px;
1760
+ }
1761
+ .c-item .c-item-wrapper .u-attributes .u-orange {
1762
+ color: #ff9600;
1763
+ }
1764
+ .c-item .c-item-wrapper .u-attributes .u-green {
1765
+ color: #00c848;
1766
+ }
1767
+ .c-item .c-item-wrapper .u-attributes .u-speed {
1768
+ position: absolute;
1769
+ top: 0;
1770
+ right: 0;
1771
+ }
1772
+ .c-item .c-item-wrapper .u-attributes .u-horse-attribute .u-horse-icon {
1773
+ float: left;
1774
+ width: 22px;
1775
+ margin-top: 3px;
1776
+ }
1777
+ .c-item .c-item-wrapper .u-attributes .u-horse-attribute .u-horse-icon + .u-horse-desc {
1778
+ margin-left: 22px;
1779
+ }
1780
+ .c-item .c-item-wrapper .u-diamonds {
1781
+ margin: 0;
1782
+ padding: 0;
1783
+ list-style: none;
1784
+ }
1785
+ .c-item .c-item-wrapper .u-diamonds .u-diamond .u-square,
1786
+ .c-item .c-item-wrapper .u-diamonds .u-diamond .u-text {
1787
+ display: inline-block;
1788
+ vertical-align: middle;
1789
+ }
1790
+ .c-item .c-item-wrapper .u-diamonds .u-diamond .u-square {
1791
+ width: 1.1em;
1792
+ height: 1.1em;
1793
+ margin-right: 3px;
1794
+ border: 1px solid #999999;
1795
+ }
1796
+ .c-item .c-item-wrapper .u-diamonds .u-diamond .u-text {
1797
+ margin-top: -1px;
1798
+ }
1799
+ .c-item .c-item-wrapper .u-can-shared {
1800
+ color: #4fff6c;
1801
+ }
1802
+ .c-item .c-item-wrapper .u-furniture-can span {
1803
+ padding-right: 10px;
1804
+ }
1805
+ .w-npc {
1806
+ padding: 1px;
1807
+ border: 1px solid #0f2222;
1808
+ }
1809
+ .w-npc .w-npc-wrapper {
1810
+ min-width: 200px;
1811
+ background-color: rgba(15, 34, 34, 0.88);
1812
+ box-sizing: border-box;
1813
+ display: flex;
1814
+ }
1815
+ .w-npc .w-npc-wrapper .w-npc-content {
1816
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
1817
+ border-radius: 4px;
1818
+ *zoom: 1;
1819
+ font-size: 13px;
1820
+ color: #e7e7e7;
1821
+ margin: 0;
1822
+ padding: 5px 15px 10px 15px;
1823
+ }
1824
+ .w-npc .w-npc-wrapper .w-npc-content:after {
1825
+ content: "";
1826
+ display: table;
1827
+ clear: both;
1828
+ }
1829
+ .w-npc .w-npc-wrapper .u-icon {
1830
+ float: left;
1831
+ *display: inline;
1832
+ margin-right: 10px;
1833
+ border-radius: 4px;
1834
+ box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
1835
+ }
1836
+ .w-npc .w-npc-wrapper .u-isBoss {
1837
+ position: absolute;
1838
+ right: 10px;
1839
+ top: 40px;
1840
+ z-index: 2;
1841
+ font-style: normal;
1842
+ line-height: 20px;
1843
+ font-weight: bold;
1844
+ }
1845
+ .w-npc .w-npc-wrapper .u-isBoss svg {
1846
+ width: 20px;
1847
+ height: 20px;
1848
+ vertical-align: top;
1849
+ }
1850
+ .w-npc .w-npc-wrapper .u-id {
1851
+ position: absolute;
1852
+ right: 15px;
1853
+ top: 10px;
1854
+ cursor: pointer;
1855
+ color: #5df9eb;
1856
+ }
1857
+ .w-npc .w-npc-wrapper .u-title {
1858
+ min-height: 48px;
1859
+ border-bottom: 1px solid #4a5056;
1860
+ padding-bottom: 10px;
1861
+ }
1862
+ .w-npc .w-npc-wrapper .u-title .u-name {
1863
+ font-size: 18px;
1864
+ color: #ebeef5;
1865
+ margin-right: 5px;
1866
+ font-weight: bold;
1867
+ font-weight: 300;
1868
+ }
1869
+ .w-npc .w-npc-wrapper .u-title .u-name-add {
1870
+ font-size: 12px;
1871
+ color: #aaa;
1872
+ }
1873
+ .w-npc .w-npc-wrapper .u-title .u-level {
1874
+ font-size: 12px;
1875
+ }
1876
+ .w-npc .w-npc-wrapper .u-base {
1877
+ font-size: 12px;
1878
+ line-height: 2;
1879
+ }
1880
+ .w-npc .w-npc-wrapper .u-base span:after {
1881
+ content: "|";
1882
+ color: #aaa;
1883
+ padding: 0 5px;
1884
+ }
1885
+ .w-npc .w-npc-wrapper .u-base span:last-child:after {
1886
+ display: none;
1887
+ }
1888
+ .w-npc .w-npc-wrapper .u-primary {
1889
+ margin-top: 10px;
1890
+ min-height: 23px;
1891
+ }
1892
+ .w-npc .w-npc-wrapper .u-primary em {
1893
+ display: none;
1894
+ }
1895
+ .w-npc .w-npc-wrapper .u-primary b {
1896
+ padding: 2px 5px;
1897
+ margin-right: 15px;
1898
+ vertical-align: top;
1899
+ height: 20px;
1900
+ font-size: 13px;
1901
+ font-weight: normal;
1902
+ color: #aaa;
1903
+ }
1904
+ .w-npc .w-npc-wrapper .u-primary div {
1905
+ font-size: 12px;
1906
+ line-height: 23px;
1907
+ white-space: nowrap;
1908
+ overflow-x: auto;
1909
+ }
1910
+ .w-npc .w-npc-wrapper .u-primary strong {
1911
+ font-size: 13px;
1912
+ color: #eee;
1913
+ }
1914
+ .w-npc .w-npc-wrapper .u-primary .u-range {
1915
+ transform: skewX(-15deg);
1916
+ background-color: #ddd;
1917
+ border-radius: 2px;
1918
+ width: 220px;
1919
+ display: inline-block;
1920
+ *display: inline;
1921
+ vertical-align: top;
1922
+ height: 19px;
1923
+ margin: 2px 0;
1924
+ position: relative;
1925
+ *zoom: 1;
1926
+ }
1927
+ .w-npc .w-npc-wrapper .u-primary .u-range strong {
1928
+ height: 100%;
1929
+ display: block;
1930
+ position: absolute;
1931
+ left: 0;
1932
+ top: 0;
1933
+ font-weight: 400;
1934
+ text-indent: 10px;
1935
+ border-radius: 2px;
1936
+ font-size: 12px;
1937
+ line-height: 18px;
1938
+ color: #fff;
1939
+ max-width: 300%;
1940
+ }
1941
+ .w-npc .w-npc-wrapper .u-sitem {
1942
+ color: #aaa;
1943
+ }
1944
+ .w-npc .w-npc-wrapper .u-shield .u-sitem,
1945
+ .w-npc .w-npc-wrapper .u-critical .u-sitem,
1946
+ .w-npc .w-npc-wrapper .u-attack .u-sitem {
1947
+ margin-right: 20px;
1948
+ }
1949
+ .w-npc .w-npc-wrapper .u-shield .u-value,
1950
+ .w-npc .w-npc-wrapper .u-critical .u-value,
1951
+ .w-npc .w-npc-wrapper .u-attack .u-value {
1952
+ padding: 0 5px;
1953
+ font-weight: bold;
1954
+ font-size: 13px;
1955
+ color: #eee;
1956
+ }
1957
+ .w-npc .w-npc-wrapper .u-misc .u-remark {
1958
+ margin-right: 20px;
1959
+ }
1960
+ .w-npc .w-npc-wrapper .u-misc .u-remark strong {
1961
+ color: #f28f02;
1962
+ color: #f00;
1963
+ }
1964
+ .w-npc .w-npc-wrapper .u-misc-tip {
1965
+ text-align: center;
1966
+ background-color: #444;
1967
+ border-radius: 2px;
1968
+ color: #999;
1969
+ padding: 5px 10px;
1970
+ }
1971
+ .w-npc .w-npc-wrapper .u-misc-tip a {
1972
+ color: #fff;
1973
+ margin: 0 3px;
1974
+ box-shadow: 0 1px 0 #fff;
1975
+ }
1976
+ .w-npc .w-npc-wrapper .u-misc-tip a:hover {
1977
+ color: #eee;
1978
+ }
1979
+ .w-npc .w-npc-wrapper .u-descicon {
1980
+ width: 14px;
1981
+ height: 14px;
1982
+ vertical-align: -2px;
1983
+ margin-right: 5px;
1984
+ }
1985
+ .w-npc .w-npc-wrapper .u-descicon-life {
1986
+ fill: #ffacd5;
1987
+ }
1988
+ .w-npc .w-npc-wrapper .u-descicon-mana {
1989
+ fill: #77e3ff;
1990
+ }
1991
+ .w-npc .w-npc-wrapper .u-descicon-speed {
1992
+ fill: #c2f703;
1993
+ }
1994
+ .w-npc .w-npc-wrapper .u-descicon-shield {
1995
+ fill: #49c10f;
1996
+ }
1997
+ .w-npc .w-npc-wrapper .u-descicon-touch {
1998
+ fill: #f1c309;
1999
+ }
2000
+ .w-npc .w-npc-wrapper .u-descicon-sense {
2001
+ fill: #c0a3ff;
2002
+ }
2003
+ .w-npc .w-npc-wrapper .u-descicon-dodge {
2004
+ fill: #49c10f;
2005
+ }
2006
+ .w-npc .w-npc-wrapper .u-descicon-attack {
2007
+ fill: #fc3c3c;
2008
+ }
2009
+ .w-npc .u-primary {
2010
+ position: relative;
2011
+ *zoom: 1;
2012
+ }
2013
+ .c-article .e-jx3-npc {
2014
+ text-decoration: underline;
2015
+ }
2016
+ .c-article .e-jx3-npc:hover {
2017
+ box-shadow: none !important;
2018
+ }