@jx3box/jx3box-editor 2.2.48 → 3.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 (175) hide show
  1. package/config/global.js +79 -0
  2. package/config/global.less +16 -0
  3. package/index.js +21 -8
  4. package/package.json +64 -63
  5. package/readme.md +25 -99
  6. package/src/Article.vue +96 -57
  7. package/src/ArticleMarkdown.vue +54 -47
  8. package/src/BoxResource.vue +67 -42
  9. package/src/Buff.vue +18 -7
  10. package/src/GameText.vue +32 -45
  11. package/src/Item.vue +143 -235
  12. package/src/ItemSimple.vue +27 -37
  13. package/src/Markdown.vue +362 -210
  14. package/src/Npc.vue +51 -30
  15. package/src/Resource.vue +296 -252
  16. package/src/Skill.vue +36 -26
  17. package/src/Tinymce.vue +124 -137
  18. package/src/Upload.vue +238 -155
  19. package/src/UploadAlbum.vue +189 -118
  20. package/{assets → src/assets}/css/article.less +1 -0
  21. package/src/assets/css/markdown.less +4 -0
  22. package/{assets → src/assets}/css/module/author.less +4 -3
  23. package/{assets → src/assets}/css/module/directory.less +23 -32
  24. package/{assets → src/assets}/css/module/talent.less +2 -2
  25. package/{assets → src/assets}/css/resource.less +56 -22
  26. package/src/assets/css/tinymce/_.less +28 -0
  27. package/src/assets/css/tinymce/a.less +21 -0
  28. package/{assets → src/assets}/css/tinymce/code.less +1 -1
  29. package/{assets/css → src/assets/css/tinymce}/combo.less +123 -18
  30. package/{assets → src/assets}/css/tinymce/fold.less +3 -6
  31. package/src/assets/css/tinymce/h.less +90 -0
  32. package/{assets → src/assets}/css/tinymce/latex.less +14 -14
  33. package/{assets → src/assets}/css/tinymce/macro.less +3 -3
  34. package/{assets → src/assets}/css/tinymce/pz.less +2 -2
  35. package/{assets → src/assets}/css/tinymce/table.less +5 -10
  36. package/{assets → src/assets}/css/tinymce.less +8 -4
  37. package/src/assets/css/upload.less +195 -0
  38. package/src/assets/css/upload_album.less +164 -0
  39. package/src/assets/css/var.less +2 -0
  40. package/src/assets/img/other/qr-code.svg +1 -0
  41. package/{assets → src/assets}/js/audio.js +2 -2
  42. package/{assets → src/assets}/js/directory.js +51 -23
  43. package/src/assets/js/hljs_languages.js +177 -0
  44. package/src/assets/js/katex.js +211 -0
  45. package/src/assets/js/renderImgPreview.js +49 -0
  46. package/{assets → src/assets}/js/xss.js +48 -5
  47. package/src/components/Author.vue +32 -13
  48. package/src/components/Avatar.vue +22 -3
  49. package/src/components/Combo.vue +118 -72
  50. package/src/components/PostAuthor.vue +13 -11
  51. package/src/components/QRcode.vue +136 -0
  52. package/src/components/SkillMartial.vue +13 -12
  53. package/src/pages/article.js +14 -0
  54. package/src/pages/index.js +5 -0
  55. package/src/pages/markdown.js +14 -0
  56. package/src/pages/tinymce.js +49 -0
  57. package/src/pages/upload.js +14 -0
  58. package/{service → src/service}/author.js +2 -2
  59. package/{service → src/service}/cms.js +5 -3
  60. package/{service → src/service}/database.js +4 -2
  61. package/{service → src/service}/item.js +1 -1
  62. package/{service → src/service}/node.js +1 -1
  63. package/{service → src/service}/resource.js +1 -1
  64. package/src/views/article.vue +72 -0
  65. package/src/views/index.vue +11 -0
  66. package/src/views/markdown.vue +58 -0
  67. package/src/views/tinymce.vue +58 -0
  68. package/src/views/upload.vue +111 -0
  69. package/.env +0 -2
  70. package/.vscode/settings.json +0 -5
  71. package/assets/css/katex-fix.css +0 -20
  72. package/assets/css/tinymce/_.less +0 -30
  73. package/assets/css/tinymce/a.less +0 -30
  74. package/assets/css/tinymce/combo.less +0 -111
  75. package/assets/css/tinymce/h.less +0 -58
  76. package/assets/css/upload.less +0 -105
  77. package/assets/js/katex.js +0 -191
  78. package/assets/js/renderImgPreview.js +0 -25
  79. package/babel.config.js +0 -3
  80. package/docs/markdown.md +0 -16
  81. package/jsconfig.json +0 -9
  82. package/public/article.html +0 -15
  83. package/public/css/article.css +0 -2481
  84. package/public/css/article.less +0 -3
  85. package/public/favicon.ico +0 -0
  86. package/public/tinymce.html +0 -33
  87. package/src/Equip.vue +0 -301
  88. package/src/components/LetterDemo.vue +0 -93
  89. package/src/components/medal.vue +0 -43
  90. package/test-audio.html +0 -121
  91. package/vue.config.js +0 -147
  92. /package/{assets → src/assets}/css/markdown/_.less +0 -0
  93. /package/{assets → src/assets}/css/markdown/macro.less +0 -0
  94. /package/{assets/css/article_markdown.less → src/assets/css/markdown/markdown-article.less} +0 -0
  95. /package/{assets/css/markdown.less → src/assets/css/markdown/markdown-editor.less} +0 -0
  96. /package/{assets → src/assets}/css/markdown/talent.less +0 -0
  97. /package/{assets → src/assets}/css/markdown/video.less +0 -0
  98. /package/{assets → src/assets}/css/module/buff.less +0 -0
  99. /package/{assets → src/assets}/css/module/icon.less +0 -0
  100. /package/{assets → src/assets}/css/module/item.less +0 -0
  101. /package/{assets → src/assets}/css/module/item_simple.less +0 -0
  102. /package/{assets → src/assets}/css/module/jx3_element.less +0 -0
  103. /package/{assets → src/assets}/css/module/macro.less +0 -0
  104. /package/{assets → src/assets}/css/module/npc.less +0 -0
  105. /package/{assets → src/assets}/css/module/resource.less +0 -0
  106. /package/{assets → src/assets}/css/module/skill.less +0 -0
  107. /package/{assets → src/assets}/css/tinymce/hr.less +0 -0
  108. /package/{assets → src/assets}/css/tinymce/img.less +0 -0
  109. /package/{assets → src/assets}/css/tinymce/imgpreview.less +0 -0
  110. /package/{assets → src/assets}/css/tinymce/list.less +0 -0
  111. /package/{assets → src/assets}/css/tinymce/nextpage.less +0 -0
  112. /package/{assets → src/assets}/css/tinymce/p.less +0 -0
  113. /package/{assets → src/assets}/css/tinymce/plugin.less +0 -0
  114. /package/{assets → src/assets}/css/tinymce/qixue.less +0 -0
  115. /package/{assets → src/assets}/css/tinymce/quote.less +0 -0
  116. /package/{assets → src/assets}/css/tinymce/video.less +0 -0
  117. /package/{assets → src/assets}/css/tinymce/voice.less +0 -0
  118. /package/{assets → src/assets}/data/detach_type.json +0 -0
  119. /package/{assets → src/assets}/data/game_font.json +0 -0
  120. /package/{assets → src/assets}/data/markdown_whitelist.json +0 -0
  121. /package/{assets → src/assets}/data/weapon_type.json +0 -0
  122. /package/{assets → src/assets}/img/buff.svg +0 -0
  123. /package/{assets → src/assets}/img/equip_bg.png +0 -0
  124. /package/{assets → src/assets}/img/file.svg +0 -0
  125. /package/{assets → src/assets}/img/icons.svg +0 -0
  126. /package/{assets → src/assets}/img/item/pve.png +0 -0
  127. /package/{assets → src/assets}/img/item/pvp.png +0 -0
  128. /package/{assets → src/assets}/img/item/pvx.png +0 -0
  129. /package/{assets → src/assets}/img/item/std.png +0 -0
  130. /package/{assets → src/assets}/img/item/wujie.png +0 -0
  131. /package/{assets → src/assets}/img/item.svg +0 -0
  132. /package/{assets → src/assets}/img/jx3.svg +0 -0
  133. /package/{assets → src/assets}/img/jx3box.svg +0 -0
  134. /package/{assets → src/assets}/img/npc/attack.svg +0 -0
  135. /package/{assets → src/assets}/img/npc/buff.svg +0 -0
  136. /package/{assets → src/assets}/img/npc/energy.svg +0 -0
  137. /package/{assets → src/assets}/img/npc/miss.svg +0 -0
  138. /package/{assets → src/assets}/img/npc/npc.svg +0 -0
  139. /package/{assets → src/assets}/img/npc/radar.svg +0 -0
  140. /package/{assets → src/assets}/img/npc/shield.svg +0 -0
  141. /package/{assets → src/assets}/img/npc/sight.svg +0 -0
  142. /package/{assets → src/assets}/img/npc/skull.svg +0 -0
  143. /package/{assets → src/assets}/img/npc/target.svg +0 -0
  144. /package/{assets → src/assets}/img/skill.svg +0 -0
  145. /package/{assets → src/assets}/img/skillset.png +0 -0
  146. /package/{assets → src/assets}/js/a.js +0 -0
  147. /package/{assets → src/assets}/js/code.js +0 -0
  148. /package/{assets → src/assets}/js/combo.js +0 -0
  149. /package/{assets → src/assets}/js/drag.js +0 -0
  150. /package/{assets → src/assets}/js/filter2.js +0 -0
  151. /package/{assets → src/assets}/js/fold.js +0 -0
  152. /package/{assets → src/assets}/js/gallery.js +0 -0
  153. /package/{assets → src/assets}/js/iframe.js +0 -0
  154. /package/{assets → src/assets}/js/img.js +0 -0
  155. /package/{assets → src/assets}/js/item/attribute_percent.js +0 -0
  156. /package/{assets → src/assets}/js/item/bind.js +0 -0
  157. /package/{assets → src/assets}/js/item/border.js +0 -0
  158. /package/{assets → src/assets}/js/item/border_quest.js +0 -0
  159. /package/{assets → src/assets}/js/item/color.js +0 -0
  160. /package/{assets → src/assets}/js/item/hljs_languages.js +0 -0
  161. /package/{assets → src/assets}/js/item/icon_url.js +0 -0
  162. /package/{assets → src/assets}/js/item/second_format.js +0 -0
  163. /package/{assets → src/assets}/js/jx3_element.js +0 -0
  164. /package/{assets → src/assets}/js/macro.js +0 -0
  165. /package/{assets → src/assets}/js/nextpage.js +0 -0
  166. /package/{assets → src/assets}/js/pswp.js +0 -0
  167. /package/{assets → src/assets}/js/pswp_template.js +0 -0
  168. /package/{assets → src/assets}/js/pz_iframe.js +0 -0
  169. /package/{assets → src/assets}/js/qixue.js +0 -0
  170. /package/{assets → src/assets}/js/script.js +0 -0
  171. /package/{assets → src/assets}/js/talent2.js +0 -0
  172. /package/{assets → src/assets}/js/tex-mml-chtml.js +0 -0
  173. /package/{service → src/service}/enum/CollectionPublic.js +0 -0
  174. /package/{service → src/service}/enum/EquipPosition.js +0 -0
  175. /package/{service → src/service}/enum/EquipType.js +0 -0
@@ -1,2481 +0,0 @@
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
- scroll-behavior: smooth;
137
- }
138
- .c-article-tinymce * {
139
- max-width: 100%;
140
- box-sizing: border-box;
141
- }
142
- .c-article-editor {
143
- margin: 8px;
144
- }
145
- .c-article-origin {
146
- display: none;
147
- }
148
- @media print {
149
- .c-article-tinymce {
150
- -webkit-print-color-adjust: exact;
151
- }
152
- }
153
- /* 链接 */
154
- .c-article-tinymce a {
155
- color: #0366d6;
156
- text-decoration: none;
157
- word-break: break-all;
158
- }
159
- .c-article-tinymce a:hover {
160
- box-shadow: 0 1px 0 #0366d6;
161
- }
162
- .c-article-tinymce .e-jx3-author {
163
- color: #8250df;
164
- }
165
- .c-article-tinymce .e-jx3-author:hover {
166
- box-shadow: 0 1px 0 #8250df;
167
- }
168
- /* 列表 */
169
- .c-article-tinymce {
170
- /* 旧版checklist,无创建逻辑,仅作留存显示 */
171
- }
172
- .c-article-tinymce ul,
173
- .c-article-tinymce ol {
174
- margin: 20px 0;
175
- }
176
- .c-article-tinymce ul,
177
- .c-article-tinymce ol {
178
- padding-left: 40px;
179
- }
180
- .c-article-tinymce .e-checklist div {
181
- position: relative;
182
- padding-left: 1.4em;
183
- }
184
- .c-article-tinymce .e-checklist div:before {
185
- display: block;
186
- position: absolute;
187
- left: 0;
188
- top: 0.7em;
189
- content: "";
190
- cursor: pointer;
191
- height: 1em;
192
- width: 1em;
193
- 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");
194
- background-size: 100%;
195
- background-repeat: no-repeat;
196
- background-position: 0 0;
197
- }
198
- .c-article-tinymce .e-checklist div.on:before {
199
- 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");
200
- }
201
- .c-article-tinymce .tox-checklist > li {
202
- line-height: 2.2;
203
- margin: 0 !important;
204
- }
205
- .c-article-tinymce .tox-checklist > li:not(.tox-checklist--hidden) {
206
- list-style: none;
207
- margin: 0.25em 0;
208
- }
209
- .c-article-tinymce .tox-checklist > li:not(.tox-checklist--hidden)::before {
210
- 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");
211
- background-size: 100%;
212
- content: "";
213
- cursor: pointer;
214
- height: 1em;
215
- margin-left: -1.5em;
216
- margin-top: 0.7em;
217
- position: absolute;
218
- width: 1em;
219
- }
220
- .c-article-tinymce .tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
221
- 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");
222
- }
223
- .c-article-tinymce [dir="rtl"] .tox-checklist > li:not(.tox-checklist--hidden)::before {
224
- margin-left: 0;
225
- margin-right: -1.5em;
226
- }
227
- /* 引用 */
228
- .c-article-tinymce blockquote {
229
- border: 1px dashed #e1e4e8;
230
- border-radius: 4px;
231
- padding: 10px;
232
- background-color: #fafbfc;
233
- font-size: 14px;
234
- line-height: 2;
235
- margin: 10px 0;
236
- }
237
- /* 水平线 */
238
- .c-article-tinymce hr {
239
- margin-top: 22px;
240
- margin-bottom: 22px;
241
- border: 0;
242
- border-top: 1px solid #eeeeee;
243
- }
244
- /* 表格 */
245
- .c-article-tinymce table {
246
- border-collapse: collapse;
247
- width: 100%;
248
- height: auto;
249
- margin: 10px 0;
250
- overflow-x: auto;
251
- max-width: 100%;
252
- border: none;
253
- line-height: 2.2;
254
- color: #3d454d;
255
- }
256
- .c-article-tinymce table td,
257
- .c-article-tinymce table th {
258
- padding: 6px 10px;
259
- }
260
- .c-article-tinymce table td {
261
- border: 1px solid #eee;
262
- }
263
- .c-article-tinymce table tr:nth-child(2n + 1) {
264
- background-color: #fafbfc;
265
- }
266
- .c-article-tinymce table tr:first-child {
267
- background-color: #fafbfc;
268
- font-weight: 600;
269
- }
270
- @media screen and (max-width: 720px) {
271
- .c-article-tinymce table {
272
- display: block;
273
- width: 100% !important;
274
- height: auto !important;
275
- }
276
- .c-article-tinymce table th,
277
- .c-article-tinymce table td {
278
- white-space: nowrap;
279
- }
280
- }
281
- @media print {
282
- table {
283
- page-break-inside: avoid !important;
284
- }
285
- }
286
- .c-article-tinymce img {
287
- height: auto;
288
- padding: 5px;
289
- border: 1px solid #eee;
290
- margin: 5px;
291
- }
292
- .c-article-tinymce .t-emotion {
293
- padding: 0 1px;
294
- border: none;
295
- margin: 0;
296
- vertical-align: -3px;
297
- }
298
- .c-article-tinymce p,
299
- .c-article-tinymce div:not([class]) {
300
- margin: 0;
301
- line-height: 2.2;
302
- }
303
- .c-article-tinymce h1,
304
- .c-article-tinymce h2,
305
- .c-article-tinymce h3,
306
- .c-article-tinymce h4,
307
- .c-article-tinymce h5,
308
- .c-article-tinymce h6 {
309
- margin-top: 24px;
310
- margin-bottom: 16px;
311
- font-weight: 600;
312
- line-height: 1.25;
313
- }
314
- .c-article-tinymce h1,
315
- .c-article-tinymce h2 {
316
- padding-bottom: 0.3em;
317
- border-bottom: 1px solid #eaecef;
318
- }
319
- .c-article-tinymce h1 {
320
- font-size: 2em;
321
- }
322
- .c-article-tinymce h2 {
323
- font-size: 1.5em;
324
- }
325
- .c-article-tinymce h3 {
326
- font-size: 1.25em;
327
- }
328
- .c-article-tinymce h4 {
329
- font-size: 1em;
330
- border-left: 5px solid #0366d6;
331
- padding: 6px 10px;
332
- background-color: #fafbfc;
333
- }
334
- .c-article-tinymce h5 {
335
- font-size: 14px;
336
- padding: 8px 10px;
337
- background-color: #fafbfc;
338
- border-radius: 4px;
339
- }
340
- .c-article-tinymce h6 {
341
- font-size: 13px;
342
- padding: 5px 0 10px 0;
343
- border-bottom: 1px dotted #ddd;
344
- }
345
- .c-article-tinymce h6:before {
346
- content: ">";
347
- color: #ccc;
348
- margin-right: 10px;
349
- font-family: "宋体", Consolas;
350
- }
351
- .c-article-tinymce {
352
- /* Code blocks */
353
- /* Inline code */
354
- }
355
- .c-article-tinymce code {
356
- font-family: Consolas, monospace, serif;
357
- color: #dd0055;
358
- padding: 2px 4px;
359
- border: 1px solid #dddddd;
360
- border-radius: 3px;
361
- background: #fafafa;
362
- }
363
- .c-article-tinymce code[class*="language-"],
364
- .c-article-tinymce pre[class*="language-"] {
365
- color: black;
366
- background: none;
367
- text-shadow: 0 1px white;
368
- font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
369
- font-size: 1em;
370
- text-align: left;
371
- white-space: pre;
372
- word-spacing: normal;
373
- word-break: normal;
374
- word-wrap: normal;
375
- line-height: 1.5;
376
- -moz-tab-size: 4;
377
- tab-size: 4;
378
- -webkit-hyphens: none;
379
- -ms-hyphens: none;
380
- hyphens: none;
381
- border: none;
382
- padding: 0;
383
- border-radius: 0;
384
- }
385
- .c-article-tinymce pre[class*="language-"]::-moz-selection,
386
- .c-article-tinymce pre[class*="language-"] ::-moz-selection,
387
- .c-article-tinymce code[class*="language-"]::-moz-selection,
388
- .c-article-tinymce code[class*="language-"] ::-moz-selection {
389
- text-shadow: none;
390
- background: #b3d4fc;
391
- }
392
- .c-article-tinymce pre[class*="language-"]::selection,
393
- .c-article-tinymce pre[class*="language-"] ::selection,
394
- .c-article-tinymce code[class*="language-"]::selection,
395
- .c-article-tinymce code[class*="language-"] ::selection {
396
- text-shadow: none;
397
- background: #b3d4fc;
398
- }
399
- @media print {
400
- .c-article-tinymce code[class*="language-"],
401
- .c-article-tinymce pre[class*="language-"] {
402
- text-shadow: none;
403
- }
404
- }
405
- .c-article-tinymce pre[class*="language-"] {
406
- padding: 1em;
407
- margin: 0.5em 0;
408
- overflow: auto;
409
- }
410
- .c-article-tinymce :not(pre) > code[class*="language-"],
411
- .c-article-tinymce pre[class*="language-"] {
412
- background: #f6f8fa;
413
- }
414
- .c-article-tinymce :not(pre) > code[class*="language-"] {
415
- padding: 0.1em;
416
- border-radius: 0.3em;
417
- white-space: normal;
418
- }
419
- .c-article-tinymce .token.comment,
420
- .c-article-tinymce .token.prolog,
421
- .c-article-tinymce .token.doctype,
422
- .c-article-tinymce .token.cdata {
423
- color: slategray;
424
- }
425
- .c-article-tinymce .token.punctuation {
426
- color: #999;
427
- }
428
- .c-article-tinymce .namespace {
429
- opacity: 0.7;
430
- }
431
- .c-article-tinymce .token.property,
432
- .c-article-tinymce .token.tag,
433
- .c-article-tinymce .token.boolean,
434
- .c-article-tinymce .token.number,
435
- .c-article-tinymce .token.constant,
436
- .c-article-tinymce .token.symbol,
437
- .c-article-tinymce .token.deleted {
438
- color: #905;
439
- }
440
- .c-article-tinymce .token.selector,
441
- .c-article-tinymce .token.attr-name,
442
- .c-article-tinymce .token.string,
443
- .c-article-tinymce .token.char,
444
- .c-article-tinymce .token.builtin,
445
- .c-article-tinymce .token.inserted {
446
- color: #690;
447
- }
448
- .c-article-tinymce .token.operator,
449
- .c-article-tinymce .token.entity,
450
- .c-article-tinymce .token.url,
451
- .c-article-tinymce .language-css .token.string,
452
- .c-article-tinymce .style .token.string {
453
- color: #9a6e3a;
454
- background: hsla(0, 0%, 100%, 0.5);
455
- }
456
- .c-article-tinymce .token.atrule,
457
- .c-article-tinymce .token.attr-value,
458
- .c-article-tinymce .token.keyword {
459
- color: #07a;
460
- }
461
- .c-article-tinymce .token.function,
462
- .c-article-tinymce .token.class-name {
463
- color: #dd4a68;
464
- }
465
- .c-article-tinymce .token.regex,
466
- .c-article-tinymce .token.important,
467
- .c-article-tinymce .token.variable {
468
- color: #e90;
469
- }
470
- .c-article-tinymce .token.important,
471
- .c-article-tinymce .token.bold {
472
- font-weight: bold;
473
- }
474
- .c-article-tinymce .token.italic {
475
- font-style: italic;
476
- }
477
- .c-article-tinymce .token.entity {
478
- cursor: help;
479
- }
480
- .c-article-tinymce .e-details,
481
- .c-article-tinymce .e-summary {
482
- font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
483
- margin: 0;
484
- }
485
- .c-article-tinymce .e-summary {
486
- cursor: pointer;
487
- position: relative;
488
- border: 1px solid #ddd;
489
- background-color: #fafbfc;
490
- padding: 8px 10px 8px 26px;
491
- display: block;
492
- margin-bottom: 0;
493
- border-radius: 4px;
494
- line-height: 1.6;
495
- font-size: 14px;
496
- letter-spacing: 0.5px;
497
- }
498
- .c-article-tinymce .e-summary:before {
499
- content: ">";
500
- display: block;
501
- position: absolute;
502
- left: 10px;
503
- top: 8px;
504
- font-family: "宋体", Consolas;
505
- color: #aaa;
506
- transform: rotate(0);
507
- }
508
- .c-article-tinymce .e-summary:after {
509
- content: "🌷";
510
- display: block;
511
- position: absolute;
512
- right: 10px;
513
- top: 8px;
514
- }
515
- .c-article-tinymce .e-summary.on {
516
- border-bottom-left-radius: 0;
517
- border-bottom-right-radius: 0;
518
- }
519
- .c-article-tinymce .e-summary.on:before {
520
- transform: rotate(90deg);
521
- }
522
- .c-article-tinymce .e-summary.on:after {
523
- content: "🌸";
524
- }
525
- .c-article-tinymce .e-details {
526
- padding: 10px;
527
- border: 1px dashed #ddd;
528
- margin-top: 0;
529
- background: none;
530
- border-top: none;
531
- display: none;
532
- line-height: 2.2;
533
- }
534
- .c-article-tinymce pre.e-details {
535
- white-space: pre-line;
536
- }
537
- .c-article-tinymce div.e-details {
538
- white-space: normal;
539
- }
540
- .c-article-editor .e-summary {
541
- cursor: text;
542
- }
543
- .c-article-editor .e-details {
544
- display: block;
545
- }
546
- .hevue-imgpreview-wrap .he-img-wrap {
547
- background: rgba(0, 0, 0, 0.8);
548
- }
549
- .hevue-imgpreview-wrap .arrow,
550
- .hevue-imgpreview-wrap .he-close-icon {
551
- display: block!important;
552
- text-align: center!important;
553
- }
554
- .hevue-imgpreview-wrap .he-close-icon:hover {
555
- transform: scale(1.2);
556
- }
557
- .c-article-tinymce .w-latex {
558
- position: relative;
559
- *zoom: 1;
560
- font-family: Georgia, 'Times New Roman', Times, serif;
561
- }
562
- .c-article-tinymce .w-latex:after {
563
- content: 'JX3BOX·Katex';
564
- position: absolute;
565
- right: 0;
566
- top: -30px;
567
- background-color: #24292e;
568
- color: #fff;
569
- border-radius: 3px;
570
- padding: 0 8px;
571
- line-height: 28px;
572
- height: 28px;
573
- box-sizing: border-box;
574
- font-size: 14px;
575
- font-family: consolas;
576
- }
577
- .c-article-editor .e-latex-area {
578
- min-height: 24px;
579
- border-radius: 4px;
580
- padding: 10px;
581
- font-size: 14px;
582
- white-space: pre-wrap;
583
- background-color: #f1f8ff;
584
- border: 1px solid #c8e1ff;
585
- color: #62a9ff;
586
- font-family: Georgia, 'Times New Roman', Times, serif;
587
- position: relative;
588
- *zoom: 1;
589
- }
590
- .c-article-editor .e-latex-area:after {
591
- content: 'Latex';
592
- position: absolute;
593
- right: 10px;
594
- top: 10px;
595
- background-color: #62a9ff;
596
- color: #fff;
597
- border-radius: 3px;
598
- padding: 0 8px;
599
- font-family: consolas;
600
- }
601
- .c-article-editor .mce-pagebreak {
602
- padding: 0;
603
- outline: none;
604
- border: none;
605
- border-top: 1px dashed #aaa;
606
- height: 10px !important;
607
- margin: 20px auto;
608
- }
609
- .c-article-chunk {
610
- display: none;
611
- }
612
- .c-article-chunk.on {
613
- display: block;
614
- }
615
- .c-article-all {
616
- width: 100%;
617
- margin: 10px auto !important;
618
- display: block !important;
619
- }
620
- .c-article-pages {
621
- margin: 10px;
622
- max-width: 100%;
623
- overflow-x: auto;
624
- text-align: center;
625
- }
626
- .c-article-pages .el-pager {
627
- margin: 0;
628
- padding: 0;
629
- }
630
- .c-article .e-print-pagebreak {
631
- display: none;
632
- }
633
- .c-article-editor .e-print-pagebreak {
634
- display: block;
635
- border: none;
636
- border-bottom: 1px dotted #7ddcf9;
637
- font-size: 0;
638
- width: 100%;
639
- height: 0;
640
- box-sizing: border-box;
641
- margin: 0 !important;
642
- }
643
- @media print {
644
- .c-article .e-print-pagebreak {
645
- page-break-after: always;
646
- }
647
- }
648
- .w-jx3macro {
649
- font-size: 15px;
650
- line-height: 24px;
651
- font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
652
- }
653
- .w-jx3macro ol {
654
- padding: 0 0 0 40px;
655
- border-radius: 4px;
656
- background: #f6f8fa;
657
- border: 1px solid #eee;
658
- }
659
- .w-jx3macro li {
660
- margin: 0 !important;
661
- background: #fafbfc;
662
- border-bottom: 1px solid #e1e4e8;
663
- border-left: 1px solid #e1e4e8;
664
- list-style: decimal;
665
- }
666
- .w-jx3macro li:last-child {
667
- border-bottom: none;
668
- }
669
- .w-jx3macro li:hover {
670
- background-color: #fff;
671
- }
672
- .w-jx3macro pre {
673
- background: none;
674
- border: none;
675
- padding: 6px 10px !important;
676
- margin: 0;
677
- line-height: 24px;
678
- border: none !important;
679
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
680
- white-space: normal;
681
- }
682
- @media print {
683
- .w-jx3macro {
684
- page-break-inside: avoid !important;
685
- }
686
- .w-jx3macro ol {
687
- padding-left: 0;
688
- }
689
- .w-jx3macro li {
690
- list-style: none;
691
- border-left: none;
692
- }
693
- }
694
- .jx3macro-comment {
695
- color: #22863a;
696
- }
697
- .jx3macro-condition {
698
- color: #6f42c1;
699
- }
700
- .jx3macro-key {
701
- color: #d73a49;
702
- }
703
- .jx3macro-keyword-cast {
704
- color: #005cc5;
705
- }
706
- .jx3macro-keyword-fcast {
707
- color: #e6a11d;
708
- }
709
- .jx3macro-keyword-msg {
710
- color: #666;
711
- }
712
- .w-qixue-box {
713
- zoom: 1;
714
- display: inline-block;
715
- *display: inline;
716
- background-color: #2e4946;
717
- border-radius: 5px;
718
- border: 2px solid #6f888a;
719
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
720
- padding-top: 8px;
721
- padding-bottom: 8px;
722
- padding-right: 20px;
723
- white-space: nowrap;
724
- font-size: 0;
725
- position: relative;
726
- *zoom: 1;
727
- }
728
- .w-qixue-box.isQQBrowser {
729
- padding-right: 30px !important;
730
- }
731
- .w-qixue-box li {
732
- list-style: none;
733
- }
734
- .w-qixue-box img {
735
- display: block;
736
- width: 48px;
737
- height: 48px;
738
- border-radius: 5px;
739
- margin-left: auto;
740
- margin-right: auto;
741
- box-sizing: border-box;
742
- filter: saturate(110%) brightness(110%);
743
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
744
- user-select: none;
745
- }
746
- .w-qixue-box .w-qixue-xf {
747
- display: inline-block;
748
- *display: inline;
749
- *zoom: 1;
750
- vertical-align: top;
751
- font-size: 14px;
752
- color: #fff;
753
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
754
- text-align: center;
755
- padding: 0 4px 0 0;
756
- box-sizing: border-box;
757
- writing-mode: tb-rl;
758
- writing-mode: vertical-rl;
759
- background: url("https://img.jx3box.com/img/qixue/label.png") no-repeat 0 0;
760
- width: 23px;
761
- height: 86px;
762
- margin-right: 5px;
763
- margin-left: 10px;
764
- user-select: none;
765
- border: none;
766
- font-weight: normal;
767
- margin-top: 0;
768
- margin-bottom: 0;
769
- line-height: 1.1;
770
- text-combine-upright: none !important;
771
- }
772
- .w-qixue-box .w-qixue-clist {
773
- margin: 0;
774
- }
775
- .w-qixue-box .w-qixue-clist-item[data-color="0"]:not([data-is_skill="1"]) .u-pic:after,
776
- .w-qixue-box .w-qixue-olist-item[data-color="0"]:not([data-is_skill="1"]) .u-pic:after {
777
- background: url("https://img.jx3box.com/img/qixue/newqixue1_9.png") no-repeat 0 0;
778
- }
779
- .w-qixue-box .w-qixue-clist-item[data-color="1"] .u-pic:after,
780
- .w-qixue-box .w-qixue-olist-item[data-color="1"] .u-pic:after {
781
- background: url("https://img.jx3box.com/img/qixue/newqixue1_1.png") no-repeat 0 0;
782
- }
783
- .w-qixue-box .w-qixue-clist-item[data-color="2"] .u-pic:after,
784
- .w-qixue-box .w-qixue-olist-item[data-color="2"] .u-pic:after {
785
- background: url("https://img.jx3box.com/img/qixue/newqixue1_2.png") no-repeat 0 0;
786
- }
787
- .w-qixue-box .w-qixue-clist-item[data-color="3"] .u-pic:after,
788
- .w-qixue-box .w-qixue-olist-item[data-color="3"] .u-pic:after {
789
- background: url("https://img.jx3box.com/img/qixue/newqixue1_4.png") no-repeat 0 0;
790
- }
791
- .w-qixue-box .w-qixue-clist-item[data-color="4"] .u-pic:after,
792
- .w-qixue-box .w-qixue-olist-item[data-color="4"] .u-pic:after {
793
- background: url("https://img.jx3box.com/img/qixue/newqixue1_5.png") no-repeat 0 0;
794
- }
795
- .w-qixue-box .w-qixue-clist-item .u-pic,
796
- .w-qixue-box .w-qixue-olist-item .u-pic {
797
- display: block;
798
- position: relative;
799
- *zoom: 1;
800
- }
801
- .w-qixue-box .w-qixue-clist-item .u-pic:before,
802
- .w-qixue-box .w-qixue-olist-item .u-pic:before,
803
- .w-qixue-box .w-qixue-clist-item .u-pic:after,
804
- .w-qixue-box .w-qixue-olist-item .u-pic:after {
805
- content: "";
806
- display: block;
807
- }
808
- .w-qixue-box .w-qixue-clist-item .u-pic:after,
809
- .w-qixue-box .w-qixue-olist-item .u-pic:after {
810
- width: 80px;
811
- height: 80px;
812
- position: absolute;
813
- left: -10px;
814
- top: -10px;
815
- z-index: 6;
816
- pointer-events: none;
817
- transform: scale(1.06);
818
- transform-origin: center;
819
- }
820
- .w-qixue-box .w-qixue-clist-item img,
821
- .w-qixue-box .w-qixue-olist-item img {
822
- border-radius: 48px;
823
- padding: 0;
824
- margin: 0;
825
- border: none;
826
- border: 2px solid #485053;
827
- box-sizing: border-box;
828
- }
829
- .w-qixue-box .w-qixue-clist-item .u-title,
830
- .w-qixue-box .w-qixue-olist-item .u-title {
831
- color: #fff;
832
- text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
833
- font-size: 13px;
834
- line-height: 14px;
835
- text-align: center;
836
- display: block;
837
- margin-left: auto;
838
- margin-right: auto;
839
- margin-top: 6px;
840
- width: 48px;
841
- }
842
- .w-qixue-box .w-qixue-clist {
843
- display: inline-block;
844
- *display: inline;
845
- vertical-align: top;
846
- font-size: 0;
847
- white-space: nowrap;
848
- margin-top: 8px;
849
- position: relative;
850
- *zoom: 1;
851
- z-index: 2;
852
- padding-left: 0;
853
- }
854
- .w-qixue-box .w-qixue-clist-item {
855
- display: inline-block;
856
- *display: inline;
857
- vertical-align: middle;
858
- padding-left: 10px;
859
- padding-right: 10px;
860
- position: relative;
861
- *zoom: 1;
862
- }
863
- .w-qixue-box .w-qixue-clist-item:last-child {
864
- margin-right: 0;
865
- }
866
- .w-qixue-box .w-qixue-clist-item.w-qixue-type-1-last,
867
- .w-qixue-box .w-qixue-clist-item.w-qixue-type-2-last {
868
- margin-right: 30px;
869
- }
870
- .w-qixue-box .w-qixue-clist-item[data-type="3"]:not(.w-qixue-type-3-center)::before {
871
- opacity: 0;
872
- }
873
- .w-qixue-box .w-qixue-clist-item:before {
874
- position: relative;
875
- *zoom: 1;
876
- content: "";
877
- width: 46px;
878
- height: 12px;
879
- background: url("https://img.jx3box.com/img/qixue/fold.png") no-repeat 0 0;
880
- bottom: 2px;
881
- z-index: 7;
882
- display: none;
883
- }
884
- .w-qixue-box .w-qixue-clist-item.on:before {
885
- background-image: url("https://img.jx3box.com/img/qixue/unfold.png");
886
- }
887
- .w-qixue-box .w-qixue-obox,
888
- .w-qixue-box .w-qixue-olist,
889
- .w-qixue-box .w-qixue-item-pop {
890
- display: none;
891
- }
892
- .w-qixue-box .w-qixue-obox {
893
- position: absolute;
894
- left: 40px;
895
- bottom: 100%;
896
- white-space: nowrap;
897
- font-size: 0;
898
- }
899
- .w-qixue-box .w-qixue-obox.on {
900
- display: flex;
901
- flex-direction: row;
902
- align-items: flex-end;
903
- }
904
- .w-qixue-box:not(.w-qixue-v20250921) .w-qixue-olist {
905
- max-height: unset;
906
- }
907
- .w-qixue-box .w-qixue-olist {
908
- position: relative;
909
- *zoom: 1;
910
- z-index: 1000;
911
- vertical-align: bottom;
912
- background-color: #2e4946;
913
- padding: 8px;
914
- border-top-left-radius: 5px;
915
- border-top-right-radius: 5px;
916
- border: 2px solid #6f888a;
917
- border-bottom: none;
918
- box-shadow: 3px -3px 3px rgba(0, 0, 0, 0.4);
919
- display: flex;
920
- flex-direction: row;
921
- flex-wrap: wrap;
922
- width: min-content;
923
- max-height: 304px;
924
- gap: 8px 20px;
925
- transform: scale(0);
926
- }
927
- .w-qixue-box .w-qixue-olist.w-qixue-type-3 {
928
- width: 184px;
929
- }
930
- .w-qixue-box .w-qixue-olist.w-qixue-type-1-last,
931
- .w-qixue-box .w-qixue-olist.w-qixue-type-2-last {
932
- margin-right: 30px;
933
- }
934
- .w-qixue-box .w-qixue-olist:last-child {
935
- margin-right: 0;
936
- }
937
- .w-qixue-box .w-qixue-olist.on {
938
- transform: scale(1);
939
- }
940
- .w-qixue-box .w-qixue-olist-item {
941
- position: relative;
942
- *zoom: 1;
943
- }
944
- .w-qixue-box .w-qixue-olist-item .u-pic:before {
945
- width: 100%;
946
- height: 100%;
947
- position: absolute;
948
- left: 0;
949
- top: 0;
950
- background-color: rgba(0, 0, 0, 0.6);
951
- border-radius: 48px;
952
- z-index: 5;
953
- }
954
- .w-qixue-box .w-qixue-olist-item:hover:not(.is-disabled) .u-pic:before,
955
- .w-qixue-box .w-qixue-olist-item.is-active .u-pic:before {
956
- opacity: 0;
957
- filter: alpha(opacity=0);
958
- }
959
- .w-qixue-box .w-qixue-olist-item.is-disabled {
960
- cursor: not-allowed;
961
- }
962
- .w-qixue-box .w-qixue-olist-item:last-child {
963
- margin-bottom: 0;
964
- }
965
- .w-qixue-box .w-qixue-is_skill .u-pic:before,
966
- .w-qixue-box .w-qixue-is_skill .u-pic img {
967
- border-radius: 0;
968
- }
969
- .w-qixue-box .w-qixue-item-pop {
970
- position: absolute;
971
- left: 100%;
972
- top: 0;
973
- z-index: 999;
974
- background-color: rgba(0, 0, 0, 0.8);
975
- margin-left: 4px;
976
- border-radius: 3px;
977
- padding: 10px;
978
- width: 320px;
979
- max-width: none;
980
- }
981
- .w-qixue-box .w-qixue-item-pop * {
982
- display: block;
983
- white-space: normal;
984
- word-wrap: break-word;
985
- word-break: break-all;
986
- }
987
- .w-qixue-box .w-qixue-item-pop .u-name,
988
- .w-qixue-box .w-qixue-item-pop .u-desc {
989
- color: #ffff00;
990
- }
991
- .w-qixue-box .w-qixue-item-pop .u-name {
992
- font-size: 14px;
993
- line-height: 2;
994
- }
995
- .w-qixue-box .w-qixue-item-pop .u-desc {
996
- font-size: 12px;
997
- line-height: 20px;
998
- }
999
- .w-qixue-box .w-qixue-item-pop .u-skill {
1000
- color: #fff;
1001
- font-size: 13px;
1002
- line-height: 20px;
1003
- }
1004
- .w-qixue-box .w-qixue-item-pop .u-meta,
1005
- .w-qixue-box .w-qixue-item-pop .u-extend {
1006
- color: #ff9600;
1007
- font-size: 13px;
1008
- line-height: 2;
1009
- font-style: normal;
1010
- }
1011
- .w-qixue-box .w-qixue-item-pop.on {
1012
- display: block;
1013
- }
1014
- .w-qixue-box .w-qixue-clist-item .w-qixue-item-pop {
1015
- left: 0;
1016
- top: auto;
1017
- bottom: 100%;
1018
- margin-bottom: 10px;
1019
- }
1020
- @media screen and (max-width: 1133px) {
1021
- .w-qixue-box {
1022
- *zoom: 1;
1023
- display: block;
1024
- width: auto;
1025
- }
1026
- .w-qixue-box:after {
1027
- content: "";
1028
- display: table;
1029
- clear: both;
1030
- }
1031
- .w-qixue-box li,
1032
- .w-qixue-box .w-qixue-xf {
1033
- float: left;
1034
- *display: inline;
1035
- margin-bottom: 10px;
1036
- }
1037
- .w-qixue-box .w-qixue-xf {
1038
- display: none;
1039
- }
1040
- .w-qixue-box .w-qixue-clist {
1041
- display: block;
1042
- *zoom: 1;
1043
- margin-top: 0;
1044
- }
1045
- .w-qixue-box .w-qixue-clist:after {
1046
- content: "";
1047
- display: table;
1048
- clear: both;
1049
- }
1050
- .w-qixue-box .w-qixue-clist .w-qixue-clist-item.w-qixue-type-1-last,
1051
- .w-qixue-box .w-qixue-clist .w-qixue-clist-item.w-qixue-type-2-last {
1052
- margin-right: unset;
1053
- }
1054
- }
1055
- .w-qixue-editable .w-qixue-xf {
1056
- margin-top: 5px;
1057
- }
1058
- .w-qixue-editable li {
1059
- cursor: pointer;
1060
- }
1061
- .w-qixue-editable .w-qixue-clist-item {
1062
- user-select: none;
1063
- }
1064
- .w-qixue-editable .w-qixue-clist-item:before {
1065
- display: block;
1066
- }
1067
- .w-qixue-editable.disabled:after {
1068
- content: "";
1069
- display: block;
1070
- width: 100%;
1071
- height: 100%;
1072
- position: absolute;
1073
- left: 0;
1074
- top: 0;
1075
- z-index: 10;
1076
- background-color: rgba(0, 0, 0, 0.5);
1077
- }
1078
- .w-qixue-editable.active:after {
1079
- display: none;
1080
- }
1081
- .w-qixue-editable .w-qixue-clist-item .w-qixue-item-pop {
1082
- display: none !important;
1083
- }
1084
- @media screen and (max-width: 1133px) {
1085
- .w-qixue-editable {
1086
- display: block;
1087
- width: auto;
1088
- }
1089
- .w-qixue-editable li,
1090
- .w-qixue-editable .w-qixue-xf {
1091
- float: left;
1092
- *display: inline;
1093
- margin-bottom: 10px;
1094
- }
1095
- .w-qixue-editable .w-qixue-obox {
1096
- left: 0;
1097
- }
1098
- .w-qixue-editable .w-qixue-olist {
1099
- *zoom: 1;
1100
- display: none;
1101
- }
1102
- .w-qixue-editable .w-qixue-olist:after {
1103
- content: "";
1104
- display: table;
1105
- clear: both;
1106
- }
1107
- .w-qixue-editable .w-qixue-olist.on {
1108
- display: block;
1109
- width: unset;
1110
- }
1111
- .w-qixue-editable .w-qixue-olist li {
1112
- margin-right: 10px;
1113
- transform: scale(1);
1114
- }
1115
- .w-qixue-editable .w-qixue-olist li:last-child {
1116
- margin-right: 0;
1117
- }
1118
- .w-qixue-editable .w-qixue-item-pop {
1119
- left: 0;
1120
- top: auto;
1121
- bottom: 100%;
1122
- }
1123
- }
1124
- @media print {
1125
- .w-qixue-box {
1126
- page-break-inside: avoid !important;
1127
- padding-right: 40px;
1128
- }
1129
- .w-qixue-box .w-qixue-clist-item {
1130
- padding-left: 5px;
1131
- padding-right: 0;
1132
- transform: scale(0.85);
1133
- }
1134
- }
1135
- .c-article-tinymce video {
1136
- background-color: #333;
1137
- width: 100%;
1138
- height: 800px;
1139
- display: block;
1140
- cursor: pointer;
1141
- }
1142
- .c-article-videox iframe,
1143
- .c-article-videox iframe[allowfullscreen="allowfullscreen"] {
1144
- width: 100%;
1145
- height: 800px;
1146
- border: 1px solid #eee;
1147
- box-sizing: border-box;
1148
- }
1149
- .w-player-bilibili {
1150
- width: 100%;
1151
- height: 800px;
1152
- border: 1px solid #eee;
1153
- box-sizing: border-box;
1154
- }
1155
- @media screen and (max-width: 1133px) {
1156
- .w-player-bilibili {
1157
- height: 600px;
1158
- }
1159
- }
1160
- @media screen and (max-width: 1023px) {
1161
- .w-player-bilibili {
1162
- height: 500px;
1163
- }
1164
- }
1165
- @media screen and (max-width: 720px) {
1166
- .w-player-bilibili {
1167
- height: 240px;
1168
- }
1169
- }
1170
- @media screen and (max-width: 374px) {
1171
- .w-player-bilibili {
1172
- height: 180px;
1173
- }
1174
- }
1175
- .c-article-editor video,
1176
- .c-article-editor iframe {
1177
- cursor: default;
1178
- }
1179
- .c-article-editor iframe {
1180
- width: auto;
1181
- height: auto;
1182
- }
1183
- @media screen and (max-width: 1133px) {
1184
- .c-article video,
1185
- .c-article-videox iframe {
1186
- height: auto;
1187
- min-height: 200px;
1188
- }
1189
- }
1190
- .c-article-tinymce .e-jx3macro-area {
1191
- position: relative;
1192
- *zoom: 1;
1193
- }
1194
- .c-article-tinymce .e-jx3macro-area:after {
1195
- content: 'JX3BOX·MACRO';
1196
- position: absolute;
1197
- right: 0;
1198
- top: -30px;
1199
- background-color: #24292e;
1200
- color: #fff;
1201
- border-radius: 3px;
1202
- padding: 0 8px;
1203
- line-height: 28px;
1204
- height: 28px;
1205
- box-sizing: border-box;
1206
- font-size: 14px;
1207
- }
1208
- .c-article-editor .e-jx3macro-area {
1209
- min-height: 24px;
1210
- border-radius: 4px;
1211
- padding: 10px;
1212
- font-size: 14px;
1213
- white-space: pre-wrap;
1214
- background-color: #f1f8ff;
1215
- border: 1px solid #c8e1ff;
1216
- color: #62a9ff;
1217
- position: relative;
1218
- *zoom: 1;
1219
- }
1220
- .c-article-editor .e-jx3macro-area:after {
1221
- content: 'JX3BOX·MACRO';
1222
- position: absolute;
1223
- right: 10px;
1224
- top: 10px;
1225
- background-color: #62a9ff;
1226
- color: #fff;
1227
- border-radius: 3px;
1228
- padding: 0 8px;
1229
- }
1230
- .e-jx3qixue-area,
1231
- .e-jx3talent2-area {
1232
- min-height: 24px;
1233
- border-radius: 4px;
1234
- font-size: 14px;
1235
- width: 100%;
1236
- box-sizing: border-box;
1237
- background-color: #f1f8ff;
1238
- border: 1px solid #c8e1ff;
1239
- color: #62a9ff;
1240
- line-height: 40px !important;
1241
- padding: 0 10px;
1242
- font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1243
- position: relative;
1244
- *zoom: 1;
1245
- }
1246
- .e-jx3qixue-area:after,
1247
- .e-jx3talent2-area:after {
1248
- content: "JX3BOX·TALENT";
1249
- position: absolute;
1250
- right: 8px;
1251
- top: 8px;
1252
- background-color: #62a9ff;
1253
- color: #fff;
1254
- border-radius: 3px;
1255
- padding: 2px 8px;
1256
- line-height: 21px;
1257
- }
1258
- .c-article .e-jx3qixue-area,
1259
- .c-article .e-jx3talent2-area {
1260
- display: none;
1261
- }
1262
- .c-article-editor .e-jx3qixue-area,
1263
- .c-article-editor .e-jx3talent2-area {
1264
- display: block;
1265
- }
1266
- .e-pz-iframe {
1267
- min-height: 24px;
1268
- border-radius: 4px;
1269
- font-size: 14px;
1270
- width: 100%;
1271
- box-sizing: border-box;
1272
- background-color: #f1f8ff;
1273
- border: 1px solid #c8e1ff;
1274
- color: #62a9ff;
1275
- line-height: 40px !important;
1276
- padding: 0 10px 0 140px;
1277
- font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1278
- position: relative;
1279
- *zoom: 1;
1280
- }
1281
- .e-pz-iframe:after {
1282
- content: "JX3BOX·配装方案";
1283
- position: absolute;
1284
- left: 8px;
1285
- top: 8px;
1286
- background-color: #62a9ff;
1287
- color: #fff;
1288
- border-radius: 3px;
1289
- padding: 2px 8px;
1290
- line-height: 21px;
1291
- }
1292
- .c-article-tinymce .e-pz-iframe {
1293
- display: none;
1294
- }
1295
- .c-article-editor .e-pz-iframe {
1296
- display: block;
1297
- }
1298
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo {
1299
- display: flex;
1300
- gap: 20px;
1301
- flex-wrap: wrap;
1302
- list-style: none;
1303
- padding: 0;
1304
- margin: 0;
1305
- }
1306
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item {
1307
- list-style: none;
1308
- position: relative;
1309
- *zoom: 1;
1310
- display: flex;
1311
- flex-direction: column;
1312
- align-items: center;
1313
- }
1314
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item:not(:last-of-type)::after {
1315
- content: "▲";
1316
- position: absolute;
1317
- right: -20px;
1318
- top: 5px;
1319
- transform: rotate(90deg);
1320
- }
1321
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item img {
1322
- border: none;
1323
- padding: 0;
1324
- margin: 0;
1325
- }
1326
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-icon {
1327
- width: 48px;
1328
- height: 48px;
1329
- text-align: center;
1330
- display: flex;
1331
- align-items: center;
1332
- justify-content: center;
1333
- }
1334
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-icon_small {
1335
- width: 42px;
1336
- height: 42px;
1337
- }
1338
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-gcd-icon {
1339
- position: absolute;
1340
- left: -4px;
1341
- top: -4px;
1342
- background-color: #0366d6;
1343
- width: 12px;
1344
- height: 12px;
1345
- border-radius: 50%;
1346
- display: block;
1347
- display: none;
1348
- }
1349
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-gcd-icon.is-show {
1350
- display: inline-block;
1351
- }
1352
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-gcd-icon i {
1353
- color: #fff;
1354
- font-size: 12px;
1355
- line-height: 1;
1356
- display: block;
1357
- }
1358
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-name {
1359
- font-size: 13px;
1360
- line-height: 1.5;
1361
- width: 56px;
1362
- overflow: hidden;
1363
- text-overflow: clip;
1364
- white-space: pre-wrap;
1365
- text-align: center;
1366
- }
1367
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-name_underline {
1368
- text-decoration: underline;
1369
- text-underline-offset: 3px;
1370
- }
1371
- .c-article-tinymce:not(.c-article-editor) .w-skill-combo-item .u-skill-note {
1372
- font-size: 12px;
1373
- line-height: 1;
1374
- width: 56px;
1375
- text-overflow: clip;
1376
- white-space: pre-wrap;
1377
- text-align: center;
1378
- margin-bottom: 5px;
1379
- }
1380
- .c-article-editor .e-skill-combo {
1381
- font-size: 14px;
1382
- width: 100%;
1383
- box-sizing: border-box;
1384
- background-color: #f1f8ff;
1385
- border: 1px solid #c8e1ff;
1386
- color: #62a9ff;
1387
- padding: 10px 10px 10px 30px;
1388
- font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1389
- position: relative;
1390
- *zoom: 1;
1391
- border-radius: 3px;
1392
- }
1393
- .c-article-editor .e-skill-combo:after {
1394
- content: "JX3BOX·连招套路";
1395
- position: absolute;
1396
- right: 8px;
1397
- top: 8px;
1398
- background-color: #62a9ff;
1399
- color: #fff;
1400
- border-radius: 3px;
1401
- padding: 2px 8px;
1402
- line-height: 21px;
1403
- }
1404
- .e-audio {
1405
- min-height: 24px;
1406
- border-radius: 4px;
1407
- font-size: 14px;
1408
- width: 100%;
1409
- box-sizing: border-box;
1410
- background-color: #f1f8ff;
1411
- border: 1px solid #c8e1ff;
1412
- color: #62a9ff;
1413
- line-height: 1.6 !important;
1414
- padding: 10px;
1415
- padding-right: 135px;
1416
- font-family: Monaco, Consolas, "Lucida Console", "Courier New", serif;
1417
- word-break: break-all;
1418
- white-space: pre-wrap !important;
1419
- overflow-wrap: break-word;
1420
- position: relative;
1421
- *zoom: 1;
1422
- }
1423
- .e-audio:after {
1424
- content: "JX3BOX·AUDIO";
1425
- position: absolute;
1426
- right: 8px;
1427
- top: 8px;
1428
- background-color: #62a9ff;
1429
- color: #fff;
1430
- border-radius: 3px;
1431
- padding: 2px 8px;
1432
- line-height: 21px;
1433
- }
1434
- .w-audio-player {
1435
- position: relative;
1436
- *zoom: 1;
1437
- border-radius: 24px;
1438
- box-sizing: border-box;
1439
- width: 376px;
1440
- background: rgba(255, 255, 255, 0.1);
1441
- transition: all 0.3s ease-in-out;
1442
- padding: 24px;
1443
- }
1444
- .w-audio-player .m-item {
1445
- position: relative;
1446
- cursor: pointer;
1447
- border-radius: 16px;
1448
- overflow: hidden;
1449
- *zoom: 1;
1450
- margin-bottom: 24px;
1451
- color: #fff;
1452
- padding: 32px 36px;
1453
- box-sizing: border-box;
1454
- width: 100%;
1455
- background: linear-gradient(180deg, #7676f0 0%, #9495e9 100%);
1456
- }
1457
- .w-audio-player .m-item a {
1458
- color: #fff;
1459
- text-decoration: none;
1460
- }
1461
- .w-audio-player .m-item a:hover {
1462
- text-decoration: none;
1463
- box-shadow: none;
1464
- }
1465
- .w-audio-player .m-item img {
1466
- padding: 0;
1467
- margin: 0;
1468
- border: none;
1469
- }
1470
- .w-audio-player .m-item::before {
1471
- content: "";
1472
- position: absolute;
1473
- left: 0;
1474
- top: 0;
1475
- opacity: 0;
1476
- filter: alpha(opacity=0);
1477
- width: 100%;
1478
- height: 100%;
1479
- transition: opacity 0.3s ease-in-out;
1480
- background: linear-gradient(180deg, #f9c27f 0%, #9697ed 100%);
1481
- }
1482
- .w-audio-player .m-item .u-title {
1483
- display: flex;
1484
- position: relative;
1485
- *zoom: 1;
1486
- font-weight: bold;
1487
- font-size: 24px;
1488
- text-align: center;
1489
- justify-content: center;
1490
- align-items: center;
1491
- max-width: 300px;
1492
- box-sizing: border-box;
1493
- font-family: "ALIMAMASHUHEITI";
1494
- }
1495
- .w-audio-player .m-item .u-title .clip {
1496
- overflow: hidden;
1497
- *zoom: 1;
1498
- width: 100%;
1499
- }
1500
- .w-audio-player .m-item .u-title .marquee-wrapper {
1501
- white-space: nowrap;
1502
- position: relative;
1503
- display: inline-block;
1504
- transition: transform 0s linear;
1505
- }
1506
- .w-audio-player .m-item .u-title .marquee-wrapper.marquee-animate {
1507
- animation: marquee linear infinite;
1508
- animation-fill-mode: forwards;
1509
- }
1510
- .w-audio-player .m-item .u-title .marquee-text {
1511
- display: inline-block;
1512
- }
1513
- .w-audio-player .m-item .u-title .marquee-text::after {
1514
- content: "》";
1515
- display: inline-block;
1516
- }
1517
- .w-audio-player .m-item .u-title .marquee-text::before {
1518
- content: "《";
1519
- display: inline-block;
1520
- }
1521
- .w-audio-player .m-item .u-title .marquee-text.copy {
1522
- margin-left: 180px;
1523
- display: none;
1524
- }
1525
- .w-audio-player .m-item .u-title .marquee-text.copy::after,
1526
- .w-audio-player .m-item .u-title .marquee-text.copy::before {
1527
- display: none;
1528
- }
1529
- .w-audio-player .m-item .u-title.marquee-active .marquee-text.copy {
1530
- display: inline-block;
1531
- }
1532
- .w-audio-player .m-item .u-title.marquee-active .marquee-animate .marquee-text::after,
1533
- .w-audio-player .m-item .u-title.marquee-active .marquee-animate .marquee-text::before {
1534
- display: none;
1535
- }
1536
- .w-audio-player .m-item .u-title.marquee-active::after {
1537
- content: "》";
1538
- display: inline-block;
1539
- position: absolute;
1540
- right: -28px;
1541
- top: 50%;
1542
- transform: translateY(-50%);
1543
- z-index: 1;
1544
- }
1545
- .w-audio-player .m-item .u-title.marquee-active::before {
1546
- content: "《";
1547
- display: inline-block;
1548
- position: absolute;
1549
- left: -28px;
1550
- top: 50%;
1551
- transform: translateY(-50%);
1552
- z-index: 1;
1553
- }
1554
- .w-audio-player .m-item .u-author {
1555
- text-align: center;
1556
- font-size: 14px;
1557
- opacity: 0.75;
1558
- filter: alpha(opacity=75);
1559
- margin-top: 5px;
1560
- }
1561
- .w-audio-player .m-item .m-record {
1562
- position: relative;
1563
- *zoom: 1;
1564
- padding: 42px 0 3px 0;
1565
- }
1566
- .w-audio-player .m-item .m-record .u-needle {
1567
- position: absolute;
1568
- left: 50%;
1569
- top: 0;
1570
- width: 120px;
1571
- height: 72px;
1572
- margin-left: -10px;
1573
- user-select: none;
1574
- pointer-events: none;
1575
- transition: transform 0.3s ease-out, top 0.3s ease-out, margin 0.3s ease-out;
1576
- transform-origin: 0% 0%;
1577
- transform: rotate(0deg);
1578
- }
1579
- .w-audio-player .m-item .m-record .u-needle.isPlaying {
1580
- top: -3px;
1581
- margin: 0;
1582
- transform-origin: 0% 0%;
1583
- transform: rotate(30deg);
1584
- display: inline-block;
1585
- }
1586
- .w-audio-player .m-item .m-record .u-record {
1587
- display: block;
1588
- width: 182px;
1589
- height: 182px;
1590
- margin-left: auto;
1591
- margin-right: auto;
1592
- user-select: none;
1593
- padding: 28px;
1594
- box-sizing: border-box;
1595
- background: url("https://cdn.jx3box.com/design/event/jx3cxk/web/item/record.svg") no-repeat center center;
1596
- background-size: 100% 100%;
1597
- }
1598
- .w-audio-player .m-item .m-record .u-avatar {
1599
- border-radius: 50%;
1600
- width: 100%;
1601
- height: 100%;
1602
- object-fit: cover;
1603
- transition: transform 0.6s ease-out;
1604
- }
1605
- .w-audio-player .m-item .m-record .u-avatar.isRotate {
1606
- animation: rotate 6s linear infinite;
1607
- }
1608
- .w-audio-player .m-item .m-record .u-avatar.isRotate.isPaused {
1609
- animation-play-state: paused;
1610
- }
1611
- .w-audio-player .m-item .m-progress {
1612
- position: relative;
1613
- *zoom: 1;
1614
- margin: 16px 0;
1615
- }
1616
- .w-audio-player .m-item .m-progress .u-progress-bar {
1617
- position: relative;
1618
- *zoom: 1;
1619
- height: 3px;
1620
- background: rgba(65, 61, 82, 0.3);
1621
- border-radius: 3px;
1622
- cursor: pointer;
1623
- overflow: visible;
1624
- }
1625
- .w-audio-player .m-item .m-progress .u-progress-bar .u-progress-fill {
1626
- position: absolute;
1627
- height: 100%;
1628
- background: #fff;
1629
- border-radius: 3px;
1630
- width: 0%;
1631
- transition: width 0.1s linear;
1632
- }
1633
- .w-audio-player .m-item .m-progress .u-progress-bar .u-progress-handle {
1634
- position: absolute;
1635
- top: 50%;
1636
- left: 0%;
1637
- width: 12px;
1638
- height: 12px;
1639
- background: #fff;
1640
- border: 2px solid rgba(65, 61, 82, 0.3);
1641
- border-radius: 50%;
1642
- transform: translate(-50%, -50%);
1643
- cursor: pointer;
1644
- transition: left 0.1s linear;
1645
- }
1646
- .w-audio-player .m-item .m-play {
1647
- position: relative;
1648
- *zoom: 1;
1649
- display: flex;
1650
- padding-top: 10px;
1651
- flex-wrap: wrap;
1652
- justify-content: space-between;
1653
- align-items: center;
1654
- }
1655
- .w-audio-player .m-item .m-play .u-play-button {
1656
- display: flex;
1657
- justify-content: space-between;
1658
- width: 70%;
1659
- box-sizing: border-box;
1660
- margin: 0 15% 20px 15%;
1661
- align-items: center;
1662
- }
1663
- .w-audio-player .m-item .m-play .u-icon {
1664
- width: 24px;
1665
- height: 24px;
1666
- }
1667
- .w-audio-player .m-item .m-play .u-play {
1668
- width: 64px;
1669
- height: 64px;
1670
- }
1671
- .w-audio-player .m-item .m-play .u-like {
1672
- opacity: 0.75;
1673
- filter: alpha(opacity=75);
1674
- display: flex;
1675
- align-items: center;
1676
- gap: 5px;
1677
- }
1678
- .w-audio-player .m-item .m-play .u-like .u-icon {
1679
- width: 20px;
1680
- height: 20px;
1681
- }
1682
- .w-audio-player .m-item .m-play .u-link {
1683
- opacity: 0.75;
1684
- filter: alpha(opacity=75);
1685
- color: #fff;
1686
- }
1687
- .w-audio-player.play .m-item {
1688
- background: linear-gradient(180deg, #55c79f 0%, #9697ed 100%);
1689
- }
1690
- .w-audio-player:hover {
1691
- background: rgba(255, 255, 255, 0.15);
1692
- }
1693
- .w-audio-player:hover .m-item::before {
1694
- opacity: 1;
1695
- filter: alpha(opacity=100);
1696
- }
1697
- @keyframes rotate {
1698
- from {
1699
- transform: rotate(0deg);
1700
- }
1701
- to {
1702
- transform: rotate(360deg);
1703
- }
1704
- }
1705
- @keyframes marquee {
1706
- 0% {
1707
- transform: translateX(0);
1708
- }
1709
- 100% {
1710
- transform: translateX(-100%);
1711
- }
1712
- }
1713
- .c-article-tinymce .e-audio {
1714
- display: none;
1715
- }
1716
- .c-article-editor .e-audio {
1717
- display: block;
1718
- }
1719
- .c-article-directory h1,
1720
- .c-article-directory h2,
1721
- .c-article-directory h3,
1722
- .c-article-directory h4,
1723
- .c-article-directory h5,
1724
- .c-article-directory h6 {
1725
- margin: 0;
1726
- padding: 0;
1727
- cursor: pointer;
1728
- font-weight: normal;
1729
- white-space: nowrap;
1730
- word-wrap: normal;
1731
- word-break: keep-all;
1732
- text-overflow: ellipsis;
1733
- overflow: hidden;
1734
- letter-spacing: 0.2px;
1735
- line-height: 20px;
1736
- padding: 8px 0;
1737
- font-size: 12px;
1738
- }
1739
- .c-article-directory h1:hover,
1740
- .c-article-directory h2:hover,
1741
- .c-article-directory h3:hover,
1742
- .c-article-directory h4:hover,
1743
- .c-article-directory h5:hover,
1744
- .c-article-directory h6:hover {
1745
- color: #0366d6;
1746
- }
1747
- .c-article-directory a {
1748
- color: #3d454d;
1749
- }
1750
- .c-article-directory h1::before,
1751
- .c-article-directory h2::before,
1752
- .c-article-directory h3::before,
1753
- .c-article-directory h4::before,
1754
- .c-article-directory h5::before,
1755
- .c-article-directory h6::before {
1756
- content: "\e78b";
1757
- font-family: element-icons !important;
1758
- speak: none;
1759
- font-style: normal;
1760
- font-weight: 400;
1761
- font-variant: normal;
1762
- text-transform: none;
1763
- line-height: 1;
1764
- vertical-align: baseline;
1765
- display: inline-block;
1766
- -webkit-font-smoothing: antialiased;
1767
- margin-right: 5px;
1768
- font-size: 16px;
1769
- }
1770
- .c-article-directory .lv2 {
1771
- padding-left: 20px;
1772
- }
1773
- .c-article-directory .lv3 {
1774
- padding-left: 40px;
1775
- }
1776
- .c-article-directory .lv0 {
1777
- display: none;
1778
- }
1779
- .c-article-directory-title {
1780
- margin-bottom: 5px;
1781
- }
1782
- .c-article-directory-title .c-article-directory-title-label {
1783
- font-weight: 300;
1784
- font-size: 18px;
1785
- }
1786
- .c-article-directory-title .c-article-directory-title-label .u-icon {
1787
- font-size: 20px;
1788
- }
1789
- .c-article-directory-title .c-article-directory-title-skip,
1790
- .c-article-directory-title .c-article-directory-title-folder {
1791
- font-size: 14px;
1792
- float: right;
1793
- padding: 0 5px;
1794
- line-height: 25px;
1795
- color: #cdd1db;
1796
- cursor: pointer;
1797
- }
1798
- .c-article-directory-title .c-article-directory-title-skip:hover,
1799
- .c-article-directory-title .c-article-directory-title-folder:hover {
1800
- color: #a1a9bb;
1801
- }
1802
- .c-article-directory-content {
1803
- padding: 10px 15px;
1804
- }
1805
- @keyframes focusFade {
1806
- from {
1807
- background-color: #c3fcff;
1808
- }
1809
- to {
1810
- background-color: transparent;
1811
- }
1812
- }
1813
- .c-article .isScrollFocus {
1814
- animation: focusFade 0.5s ease-in-out;
1815
- }
1816
- .w-directory-anchor {
1817
- font-size: 16px;
1818
- cursor: pointer;
1819
- }
1820
- .w-directory-anchor:hover {
1821
- box-shadow: none !important;
1822
- color: #c00 !important;
1823
- }
1824
- .c-article .e-jx3-icon {
1825
- padding: 0;
1826
- width: 48px;
1827
- height: 48px;
1828
- border-radius: 6px;
1829
- box-shadow: 0 0 1px inset rgba(0, 0, 0, 0.2);
1830
- vertical-align: middle;
1831
- }
1832
- .c-article .e-jx3-emotion {
1833
- max-width: 320px;
1834
- vertical-align: middle;
1835
- }
1836
- .c-article .e-jx3-emotion:hover {
1837
- box-shadow: none !important;
1838
- }
1839
- .c-article .e-jx3-emotion .e-jx3-emotion-img {
1840
- border: none !important;
1841
- }
1842
- .c-article .e-jx3-resource {
1843
- display: block;
1844
- *zoom: 1;
1845
- border: 1px solid #eee;
1846
- background: #fafafa;
1847
- margin-bottom: 10px;
1848
- padding: 5px 5px 5px 60px;
1849
- min-height: 60px;
1850
- box-sizing: border-box;
1851
- position: relative;
1852
- white-space: normal;
1853
- font-family: -apple-system, "Microsoft YaHei", Trebuchet MS, Calibri, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, sans-serif;
1854
- text-rendering: optimizelegibility;
1855
- }
1856
- .c-article .e-jx3-resource:after {
1857
- content: "";
1858
- display: table;
1859
- clear: both;
1860
- }
1861
- .c-article .e-jx3-resource .u-pic {
1862
- border: none;
1863
- outline: none !important;
1864
- padding: 0;
1865
- margin: 0;
1866
- display: block;
1867
- position: absolute;
1868
- left: 5px;
1869
- top: 5px;
1870
- width: 48px;
1871
- height: 48px;
1872
- border-radius: 6px;
1873
- box-shadow: 0 0 1px inset rgba(0, 0, 0, 0.2);
1874
- }
1875
- .c-article .e-jx3-resource .u-name {
1876
- font-size: 14px;
1877
- line-height: 2;
1878
- font-weight: bold;
1879
- display: block;
1880
- }
1881
- .c-article .e-jx3-resource .u-name em {
1882
- font-style: normal;
1883
- font-weight: normal;
1884
- color: #999;
1885
- font-size: 12px;
1886
- }
1887
- .c-article .e-jx3-resource .u-desc,
1888
- .c-article .e-jx3-resource .u-content {
1889
- font-size: 12px;
1890
- display: block;
1891
- white-space: pre-wrap;
1892
- }
1893
- .c-article .e-jx3-resource .u-id {
1894
- font-size: 10px;
1895
- color: #555;
1896
- position: absolute;
1897
- right: 5px;
1898
- top: 5px;
1899
- text-align: right;
1900
- }
1901
- .c-article .e-jx3-resource .u-detach {
1902
- margin-top: 4px;
1903
- display: block;
1904
- }
1905
- .c-article .e-jx3-resource .u-remark {
1906
- display: none;
1907
- }
1908
- .c-article .e-jx3-resource .u-primary {
1909
- display: block;
1910
- }
1911
- @media print {
1912
- .e-jx3-resource {
1913
- page-break-inside: avoid !important;
1914
- }
1915
- }
1916
- .w-jx3-element-pop {
1917
- position: fixed;
1918
- z-index: 2000;
1919
- }
1920
- .w-buff {
1921
- padding: 1px;
1922
- border: 1px solid #0f2222;
1923
- }
1924
- .w-buff .w-buff-wrapper {
1925
- max-width: 345px;
1926
- min-width: 200px;
1927
- padding: 9px 10px 10px;
1928
- background-color: rgba(15, 34, 34, 0.88);
1929
- box-sizing: border-box;
1930
- display: flex;
1931
- }
1932
- .w-buff .w-buff-icon {
1933
- width: 48px;
1934
- height: 48px;
1935
- border: none;
1936
- padding: 0;
1937
- margin: 0 10px 0 0;
1938
- }
1939
- .w-buff .w-buff-content {
1940
- font-weight: normal;
1941
- flex-grow: 1;
1942
- text-shadow: 1px 1px 1px #0f2222;
1943
- line-height: 20px;
1944
- }
1945
- .w-buff .w-buff-name {
1946
- color: #ff0;
1947
- display: block;
1948
- font-size: 13px;
1949
- }
1950
- .w-buff .w-buff-type {
1951
- display: block;
1952
- color: #77ecff;
1953
- letter-spacing: 0.5px;
1954
- margin-bottom: 5px;
1955
- font-size: 12px;
1956
- line-height: 20px;
1957
- }
1958
- .w-buff .w-buff-desc {
1959
- color: #ffffff;
1960
- letter-spacing: 0.5px;
1961
- font-size: 12px;
1962
- line-height: 20px;
1963
- }
1964
- .w-buff .w-buff-meta {
1965
- display: block;
1966
- font-size: 12px;
1967
- line-height: 20px;
1968
- color: #5df9eb;
1969
- }
1970
- .c-article .e-jx3-buff {
1971
- text-decoration: underline;
1972
- }
1973
- .c-article .e-jx3-buff:hover {
1974
- box-shadow: none !important;
1975
- }
1976
- .w-skill {
1977
- padding: 1px;
1978
- border: 1px solid #0f2222;
1979
- }
1980
- .w-skill .w-skill-wrapper {
1981
- max-width: 345px;
1982
- min-width: 200px;
1983
- padding: 9px 10px 10px;
1984
- background-color: rgba(15, 34, 34, 0.88);
1985
- box-sizing: border-box;
1986
- display: flex;
1987
- }
1988
- .w-skill .w-skill-icon {
1989
- width: 48px;
1990
- height: 48px;
1991
- border: none;
1992
- padding: 0;
1993
- margin: 0 10px 0 0;
1994
- }
1995
- .w-skill .w-skill-content {
1996
- font-weight: normal;
1997
- flex-grow: 1;
1998
- text-shadow: 1px 1px 1px #0f2222;
1999
- line-height: 20px;
2000
- }
2001
- .w-skill .w-skill-switch-parse {
2002
- padding: 5px;
2003
- float: right;
2004
- color: #5df9eb;
2005
- transition: all 0.15s ease;
2006
- }
2007
- .w-skill .w-skill-switch-parse:hover {
2008
- color: #ff0;
2009
- }
2010
- .w-skill .w-skill-name {
2011
- color: #ff0;
2012
- display: block;
2013
- font-size: 13px;
2014
- }
2015
- .w-skill .w-skill-desc {
2016
- color: #ffffff;
2017
- letter-spacing: 0.5px;
2018
- margin-bottom: 10px;
2019
- font-size: 12px;
2020
- line-height: 20px;
2021
- white-space: pre-wrap;
2022
- }
2023
- .w-skill .w-skill-talent {
2024
- color: #04cfb4;
2025
- letter-spacing: 0.5px;
2026
- margin-bottom: 10px;
2027
- font-size: 12px;
2028
- line-height: 20px;
2029
- white-space: pre-wrap;
2030
- }
2031
- .w-skill .w-skill-meta {
2032
- display: block;
2033
- font-size: 12px;
2034
- line-height: 20px;
2035
- color: #5df9eb;
2036
- }
2037
- .c-article .e-jx3-skill {
2038
- text-decoration: underline;
2039
- }
2040
- .c-article .e-jx3-skill:hover {
2041
- box-shadow: none !important;
2042
- }
2043
- .c-article .e-jx3-item {
2044
- cursor: pointer;
2045
- }
2046
- .c-article .e-jx3-item-q0 {
2047
- color: #a7a7a7;
2048
- box-shadow: 0 1px 0 #a7a7a7;
2049
- }
2050
- .c-article .e-jx3-item-q0:hover {
2051
- color: #a7a7a7;
2052
- box-shadow: 0 1px 0 rgba(167, 167, 167, 0.88);
2053
- }
2054
- .c-article .e-jx3-item-q1 {
2055
- color: #06bfcc;
2056
- box-shadow: 0 1px 0 #06bfcc;
2057
- }
2058
- .c-article .e-jx3-item-q1:hover {
2059
- color: rgba(6, 191, 204, 0.88);
2060
- box-shadow: 0 1px 0 rgba(6, 191, 204, 0.88);
2061
- }
2062
- .c-article .e-jx3-item-q2 {
2063
- color: #00d24b;
2064
- box-shadow: 0 1px 0 #00d24b;
2065
- }
2066
- .c-article .e-jx3-item-q2:hover {
2067
- color: rgba(0, 210, 75, 0.88);
2068
- box-shadow: 0 1px 0 rgba(0, 210, 75, 0.88);
2069
- }
2070
- .c-article .e-jx3-item-q3 {
2071
- color: #007eff;
2072
- box-shadow: 0 1px 0 #007eff;
2073
- }
2074
- .c-article .e-jx3-item-q3:hover {
2075
- color: rgba(0, 126, 255, 0.88);
2076
- box-shadow: 0 1px 0 rgba(0, 126, 255, 0.88);
2077
- }
2078
- .c-article .e-jx3-item-q4 {
2079
- color: #fe2dfe;
2080
- box-shadow: 0 1px 0 #fe2dfe;
2081
- }
2082
- .c-article .e-jx3-item-q4:hover {
2083
- color: rgba(254, 45, 254, 0.88);
2084
- box-shadow: 0 1px 0 rgba(254, 45, 254, 0.88);
2085
- }
2086
- .c-article .e-jx3-item-q5 {
2087
- color: #ffa500;
2088
- box-shadow: 0 1px 0 #ffa500;
2089
- }
2090
- .c-article .e-jx3-item-q5:hover {
2091
- color: rgba(255, 165, 0, 0.88);
2092
- box-shadow: 0 1px 0 rgba(255, 165, 0, 0.88);
2093
- }
2094
- .c-item {
2095
- position: relative;
2096
- display: inline-block;
2097
- *display: inline;
2098
- *zoom: 1;
2099
- padding: 2px;
2100
- font-family: "SimHei", "STHeiti", "Microsoft YaHei";
2101
- }
2102
- .c-item.c-item-equipment {
2103
- width: 345px;
2104
- }
2105
- .c-item.c-item-furniture {
2106
- min-width: 200px;
2107
- }
2108
- .c-item * {
2109
- box-sizing: border-box;
2110
- }
2111
- .c-item ul {
2112
- margin: 0;
2113
- padding: 0;
2114
- list-style: none;
2115
- }
2116
- .c-item .c-item-wrapper {
2117
- max-width: 345px;
2118
- padding: 9px 10px 10px;
2119
- background-color: rgba(15, 34, 34, 0.88);
2120
- color: #ffffff;
2121
- }
2122
- .c-item .c-item-wrapper * {
2123
- font-weight: normal;
2124
- font-size: 13.6px;
2125
- line-height: 1.5em;
2126
- text-shadow: 1px 1px 1px #0f2222;
2127
- }
2128
- .c-item .c-item-wrapper:before {
2129
- content: "";
2130
- position: absolute;
2131
- top: 0;
2132
- left: 0;
2133
- width: 100%;
2134
- height: 100%;
2135
- border: 1px solid #0f2222;
2136
- box-sizing: border-box;
2137
- pointer-events: none;
2138
- }
2139
- .c-item .c-item-wrapper .u-title {
2140
- font-weight: normal;
2141
- }
2142
- .c-item .c-item-wrapper .u-label-icon {
2143
- transform: scale(1.1);
2144
- width: 14px;
2145
- vertical-align: text-bottom;
2146
- }
2147
- .c-item .c-item-wrapper .u-desc {
2148
- padding-right: 0px;
2149
- }
2150
- .c-item .c-item-wrapper .u-title,
2151
- .c-item .c-item-wrapper .u-desc {
2152
- margin: 0;
2153
- }
2154
- .c-item .c-item-wrapper .u-spec-attribute.u-value::before {
2155
- content: "·";
2156
- font-weight: bold;
2157
- color: #ffa500;
2158
- }
2159
- .c-item .c-item-wrapper .u-orange {
2160
- color: #ffa500;
2161
- }
2162
- .c-item .c-item-wrapper .u-yellow {
2163
- color: #ffff00;
2164
- }
2165
- .c-item .c-item-wrapper .u-green {
2166
- color: #00d24b;
2167
- }
2168
- .c-item .c-item-wrapper .u-white {
2169
- color: #ffffff;
2170
- }
2171
- .c-item .c-item-wrapper .u-gray {
2172
- color: #adadad;
2173
- }
2174
- .c-item .c-item-wrapper .u-max-strength-level {
2175
- position: relative;
2176
- *zoom: 1;
2177
- color: #7ee3a3;
2178
- }
2179
- .c-item .c-item-wrapper .u-max-strength-level span {
2180
- position: absolute;
2181
- top: 0;
2182
- right: 0;
2183
- }
2184
- .c-item .c-item-wrapper .u-max-exist-time {
2185
- color: #cfcfcf;
2186
- }
2187
- .c-item .c-item-wrapper .u-weapon-type-label + .u-type-label {
2188
- float: right;
2189
- *display: inline;
2190
- transform: translateY(-100%);
2191
- }
2192
- .c-item .c-item-wrapper .u-attributes {
2193
- position: relative;
2194
- *zoom: 1;
2195
- padding-right: 0px;
2196
- }
2197
- .c-item .c-item-wrapper .u-attributes .u-orange {
2198
- color: #ff9600;
2199
- }
2200
- .c-item .c-item-wrapper .u-attributes .u-green {
2201
- color: #00c848;
2202
- }
2203
- .c-item .c-item-wrapper .u-attributes .u-speed {
2204
- position: absolute;
2205
- top: 0;
2206
- right: 0;
2207
- }
2208
- .c-item .c-item-wrapper .u-attributes .u-horse-attribute .u-horse-icon {
2209
- float: left;
2210
- width: 22px;
2211
- margin-top: 3px;
2212
- }
2213
- .c-item .c-item-wrapper .u-attributes .u-horse-attribute .u-horse-icon + .u-horse-desc {
2214
- margin-left: 22px;
2215
- }
2216
- .c-item .c-item-wrapper .u-diamonds {
2217
- margin: 0;
2218
- padding: 0;
2219
- list-style: none;
2220
- }
2221
- .c-item .c-item-wrapper .u-diamonds .u-diamond .u-square,
2222
- .c-item .c-item-wrapper .u-diamonds .u-diamond .u-text {
2223
- display: inline-block;
2224
- vertical-align: middle;
2225
- }
2226
- .c-item .c-item-wrapper .u-diamonds .u-diamond .u-square {
2227
- width: 1.1em;
2228
- height: 1.1em;
2229
- margin-right: 3px;
2230
- border: 1px solid #999999;
2231
- }
2232
- .c-item .c-item-wrapper .u-diamonds .u-diamond .u-text {
2233
- margin-top: -1px;
2234
- }
2235
- .c-item .c-item-wrapper .u-can-shared {
2236
- color: #4fff6c;
2237
- }
2238
- .c-item .c-item-wrapper .u-furniture-can span {
2239
- padding-right: 10px;
2240
- }
2241
- .c-item .c-item-wrapper .u-get-source {
2242
- margin-top: 1rem;
2243
- }
2244
- .c-item .c-item-wrapper .u-get-source-header {
2245
- color: #ffa500;
2246
- }
2247
- .c-item .c-item-wrapper .u-get-source-list {
2248
- padding-left: 0.9rem;
2249
- }
2250
- .c-item .c-item-wrapper .u-get-source-child {
2251
- color: #00c848;
2252
- position: relative;
2253
- *zoom: 1;
2254
- }
2255
- .c-item .c-item-wrapper .u-get-source-child.is-link {
2256
- cursor: pointer;
2257
- }
2258
- .c-item .c-item-wrapper .u-get-source-child::before {
2259
- position: absolute;
2260
- left: -0.9rem;
2261
- content: "➻";
2262
- margin-right: 0.2rem;
2263
- color: #00c848;
2264
- }
2265
- .c-item .c-item-wrapper .u-get-source-type {
2266
- color: #ffff00;
2267
- }
2268
- .w-npc {
2269
- padding: 1px;
2270
- border: 1px solid #0f2222;
2271
- }
2272
- .w-npc .w-npc-wrapper {
2273
- min-width: 200px;
2274
- background-color: rgba(15, 34, 34, 0.88);
2275
- box-sizing: border-box;
2276
- display: flex;
2277
- }
2278
- .w-npc .w-npc-wrapper .w-npc-content {
2279
- box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
2280
- border-radius: 4px;
2281
- *zoom: 1;
2282
- font-size: 13px;
2283
- color: #e7e7e7;
2284
- margin: 0;
2285
- padding: 5px 15px 10px 15px;
2286
- }
2287
- .w-npc .w-npc-wrapper .w-npc-content:after {
2288
- content: "";
2289
- display: table;
2290
- clear: both;
2291
- }
2292
- .w-npc .w-npc-wrapper .u-icon {
2293
- float: left;
2294
- *display: inline;
2295
- margin-right: 10px;
2296
- border-radius: 4px;
2297
- box-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
2298
- }
2299
- .w-npc .w-npc-wrapper .u-isBoss {
2300
- position: absolute;
2301
- right: 10px;
2302
- top: 40px;
2303
- z-index: 2;
2304
- font-style: normal;
2305
- line-height: 20px;
2306
- font-weight: bold;
2307
- }
2308
- .w-npc .w-npc-wrapper .u-isBoss svg {
2309
- width: 20px;
2310
- height: 20px;
2311
- vertical-align: top;
2312
- }
2313
- .w-npc .w-npc-wrapper .u-id {
2314
- position: absolute;
2315
- right: 15px;
2316
- top: 10px;
2317
- cursor: pointer;
2318
- color: #5df9eb;
2319
- }
2320
- .w-npc .w-npc-wrapper .u-title {
2321
- min-height: 48px;
2322
- border-bottom: 1px solid #4a5056;
2323
- padding-bottom: 10px;
2324
- }
2325
- .w-npc .w-npc-wrapper .u-title .u-name {
2326
- font-size: 18px;
2327
- color: #ebeef5;
2328
- margin-right: 5px;
2329
- font-weight: bold;
2330
- font-weight: 300;
2331
- }
2332
- .w-npc .w-npc-wrapper .u-title .u-name-add {
2333
- font-size: 12px;
2334
- color: #aaa;
2335
- }
2336
- .w-npc .w-npc-wrapper .u-title .u-level {
2337
- font-size: 12px;
2338
- }
2339
- .w-npc .w-npc-wrapper .u-base {
2340
- font-size: 12px;
2341
- line-height: 2;
2342
- }
2343
- .w-npc .w-npc-wrapper .u-base span:after {
2344
- content: "|";
2345
- color: #aaa;
2346
- padding: 0 5px;
2347
- }
2348
- .w-npc .w-npc-wrapper .u-base span:last-child:after {
2349
- display: none;
2350
- }
2351
- .w-npc .w-npc-wrapper .u-primary {
2352
- margin-top: 10px;
2353
- min-height: 23px;
2354
- }
2355
- .w-npc .w-npc-wrapper .u-primary em {
2356
- display: none;
2357
- }
2358
- .w-npc .w-npc-wrapper .u-primary b {
2359
- padding: 2px 5px;
2360
- margin-right: 15px;
2361
- vertical-align: top;
2362
- height: 20px;
2363
- font-size: 13px;
2364
- font-weight: normal;
2365
- color: #aaa;
2366
- }
2367
- .w-npc .w-npc-wrapper .u-primary div {
2368
- font-size: 12px;
2369
- line-height: 23px;
2370
- white-space: nowrap;
2371
- overflow-x: auto;
2372
- }
2373
- .w-npc .w-npc-wrapper .u-primary strong {
2374
- font-size: 13px;
2375
- color: #eee;
2376
- }
2377
- .w-npc .w-npc-wrapper .u-primary .u-range {
2378
- transform: skewX(-15deg);
2379
- background-color: #ddd;
2380
- border-radius: 2px;
2381
- width: 220px;
2382
- display: inline-block;
2383
- *display: inline;
2384
- vertical-align: top;
2385
- height: 19px;
2386
- margin: 2px 0;
2387
- position: relative;
2388
- *zoom: 1;
2389
- }
2390
- .w-npc .w-npc-wrapper .u-primary .u-range strong {
2391
- height: 100%;
2392
- display: block;
2393
- position: absolute;
2394
- left: 0;
2395
- top: 0;
2396
- font-weight: 400;
2397
- text-indent: 10px;
2398
- border-radius: 2px;
2399
- font-size: 12px;
2400
- line-height: 18px;
2401
- color: #fff;
2402
- max-width: 300%;
2403
- }
2404
- .w-npc .w-npc-wrapper .u-sitem {
2405
- color: #aaa;
2406
- }
2407
- .w-npc .w-npc-wrapper .u-shield .u-sitem,
2408
- .w-npc .w-npc-wrapper .u-critical .u-sitem,
2409
- .w-npc .w-npc-wrapper .u-attack .u-sitem {
2410
- margin-right: 20px;
2411
- }
2412
- .w-npc .w-npc-wrapper .u-shield .u-value,
2413
- .w-npc .w-npc-wrapper .u-critical .u-value,
2414
- .w-npc .w-npc-wrapper .u-attack .u-value {
2415
- padding: 0 5px;
2416
- font-weight: bold;
2417
- font-size: 13px;
2418
- color: #eee;
2419
- }
2420
- .w-npc .w-npc-wrapper .u-misc .u-remark {
2421
- margin-right: 20px;
2422
- }
2423
- .w-npc .w-npc-wrapper .u-misc .u-remark strong {
2424
- color: #f28f02;
2425
- color: #f00;
2426
- }
2427
- .w-npc .w-npc-wrapper .u-misc-tip {
2428
- text-align: center;
2429
- background-color: #444;
2430
- border-radius: 2px;
2431
- color: #999;
2432
- padding: 5px 10px;
2433
- }
2434
- .w-npc .w-npc-wrapper .u-misc-tip a {
2435
- color: #fff;
2436
- margin: 0 3px;
2437
- box-shadow: 0 1px 0 #fff;
2438
- }
2439
- .w-npc .w-npc-wrapper .u-misc-tip a:hover {
2440
- color: #eee;
2441
- }
2442
- .w-npc .w-npc-wrapper .u-descicon {
2443
- width: 14px;
2444
- height: 14px;
2445
- vertical-align: -2px;
2446
- margin-right: 5px;
2447
- }
2448
- .w-npc .w-npc-wrapper .u-descicon-life {
2449
- fill: #ffacd5;
2450
- }
2451
- .w-npc .w-npc-wrapper .u-descicon-mana {
2452
- fill: #77e3ff;
2453
- }
2454
- .w-npc .w-npc-wrapper .u-descicon-speed {
2455
- fill: #c2f703;
2456
- }
2457
- .w-npc .w-npc-wrapper .u-descicon-shield {
2458
- fill: #49c10f;
2459
- }
2460
- .w-npc .w-npc-wrapper .u-descicon-touch {
2461
- fill: #f1c309;
2462
- }
2463
- .w-npc .w-npc-wrapper .u-descicon-sense {
2464
- fill: #c0a3ff;
2465
- }
2466
- .w-npc .w-npc-wrapper .u-descicon-dodge {
2467
- fill: #49c10f;
2468
- }
2469
- .w-npc .w-npc-wrapper .u-descicon-attack {
2470
- fill: #fc3c3c;
2471
- }
2472
- .w-npc .u-primary {
2473
- position: relative;
2474
- *zoom: 1;
2475
- }
2476
- .c-article .e-jx3-npc {
2477
- text-decoration: underline;
2478
- }
2479
- .c-article .e-jx3-npc:hover {
2480
- box-shadow: none !important;
2481
- }