Greasy Fork is available in English.

知乎美化

1.【重要更新】增加夜间模式按钮 2.知乎题目栏增加举报、匿名、问题日志、快捷键四个按钮 3.知乎按钮图标在鼠标悬停时变色(题目按钮、回答下方按钮、评论按钮等) 4.回答的发布时间移至顶部 5.图片原图显示 6.文字和卡片链接从知乎跳转链接改为直链 7.隐藏侧边栏 8.GIF图自动播放【默认不开启】 9.问题增加创建时间和最后编辑时间 10.鼠标悬停在回答时显示浅蓝色聚焦框 11.引用角标高亮 12.首页信息流增加不感兴趣按钮 13.【重要更新】增加设置界面 14.显示信息流标签【默认不开启】

  1. // ==UserScript==
  2. // @name 知乎美化
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-1-21
  5. // @description 1.【重要更新】增加夜间模式按钮 2.知乎题目栏增加举报、匿名、问题日志、快捷键四个按钮 3.知乎按钮图标在鼠标悬停时变色(题目按钮、回答下方按钮、评论按钮等) 4.回答的发布时间移至顶部 5.图片原图显示 6.文字和卡片链接从知乎跳转链接改为直链 7.隐藏侧边栏 8.GIF图自动播放【默认不开启】 9.问题增加创建时间和最后编辑时间 10.鼠标悬停在回答时显示浅蓝色聚焦框 11.引用角标高亮 12.首页信息流增加不感兴趣按钮 13.【重要更新】增加设置界面 14.显示信息流标签【默认不开启】
  6. // @author AN drew
  7. // @match *://*.zhihu.com/*
  8. // @match https://v.vzuu.com/video/*
  9. // @require https://lib.baomitu.com/jquery/3.5.0/jquery.min.js
  10. // @require https://lib.baomitu.com/jquery-cookie/1.4.1/jquery.cookie.min.js
  11. // @resource zhihu-beautify https://update.greasyfork.org/scripts/523346/zhihu-beautify.user.css
  12. // @connect zhihu.com
  13. // @connect vzuu.com
  14. // @grant GM_info
  15. // @grant GM_download
  16. // @grant GM_registerMenuCommand
  17. // @grant GM_setValue
  18. // @grant GM_getValue
  19. // @grant GM_deleteValue
  20. // @grant GM_addStyle
  21. // @grant GM_getResourceText
  22. // @grant unsafeWindow
  23. // @run-at document-end
  24. // ==/UserScript==
  25.  
  26. var hideIndexSidebar; //隐藏首页侧边栏
  27. var hideQuestionSidebar; //隐藏回答侧边栏
  28. var hideSearchSideBar; //隐藏搜索侧边栏
  29. var hideTopicSideBar; //隐藏话题侧边栏
  30. var hideCollectionSideBar; //隐藏收藏侧边栏
  31. var hideClubSideBar; //隐藏圈子侧边栏
  32. var hideDraftSideBar; //隐藏草稿侧边栏
  33. var hideLaterSideBar; //隐藏稍后答侧边栏
  34. var hideProfileSidebar; //隐藏用户主页侧边栏
  35. var hideRecommendedReading; //隐藏专栏推荐阅读
  36. var publishTop; //置顶回答时间
  37. var GIFAutoPlay; //GIF自动播放
  38. var hoverShadow; //悬停时显示浅蓝色边框
  39. var blockingPictureVideo; //隐藏图片/视频
  40. var flowTag; //显示信息流标签
  41. var prefersColorScheme; //跟随系统夜间模式
  42. var hideFeedSource; //隐藏动态来源
  43.  
  44.  
  45. //日间模式图标(base64)
  46. var light = 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDIC' +
  47. 'ItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNTkxNjA2NzI5MzM4IiB' +
  48. 'jbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjkxNSIgd2lk' +
  49. 'dGg9IjMyIiBoZWlnaHQ9IjMyIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj5AZm9udC1mY' +
  50. 'WNlIHsgZm9udC1mYW1pbHk6IGVsZW1lbnQtaWNvbnM7IHNyYzogdXJsKCJjaHJvbWUtZXh0ZW5zaW9uOi8vYmJha2hubWZramVuZmJoamRkZGlwY2VmbmhwaWtqYmovZm9udH' +
  51. 'MvZWxlbWVudC1pY29ucy53b2ZmIikgZm9ybWF0KCJ3b2ZmIiksIHVybCgiY2hyb21lLWV4dGVuc2lvbjovL2JiYWtobm1ma2plbmZiaGpkZGRpcGNlZm5ocGlramJqL2ZvbnR' +
  52. 'zL2VsZW1lbnQtaWNvbnMudHRmICIpIGZvcm1hdCgidHJ1ZXR5cGUiKTsgfQo8L3N0eWxlPjwvZGVmcz48cGF0aCBkPSJNNTEyLjEgNzQzLjVjLTEyNy42IDAtMjMxLjQtMTAz' +
  53. 'LjgtMjMxLjQtMjMxLjRzMTAzLjgtMjMxLjQgMjMxLjQtMjMxLjQgMjMxLjQgMTAzLjggMjMxLjQgMjMxLjQtMTAzLjggMjMxLjQtMjMxLjQgMjMxLjR6IG0wLTM5My40Yy04O' +
  54. 'S4zIDAtMTYyIDcyLjctMTYyIDE2MnM3Mi43IDE2MiAxNjIgMTYyIDE2Mi03Mi43IDE2Mi0xNjItNzIuNy0xNjItMTYyLTE2MnpNNTEyLjEgMjI3LjFjLTE5LjIgMC0zNC43LT' +
  55. 'E1LjUtMzQuNy0zNC43Vjk4LjdjMC0xOS4yIDE1LjUtMzQuNyAzNC43LTM0LjcgMTkuMiAwIDM0LjcgMTUuNSAzNC43IDM0Ljd2OTMuN2MwIDE5LjEtMTUuNSAzNC43LTM0Ljc' +
  56. 'gMzQuN3pNMjg2IDMyMC43Yy04LjkgMC0xNy44LTMuNC0yNC41LTEwLjJsLTY2LjMtNjYuM2MtMTMuNi0xMy42LTEzLjYtMzUuNSAwLTQ5LjEgMTMuNS0xMy42IDM1LjUtMTMu' +
  57. 'NiA0OS4xIDBsNjYuMyA2Ni4zYzEzLjYgMTMuNiAxMy42IDM1LjUgMCA0OS4xYTM0LjY4IDM0LjY4IDAgMCAxLTI0LjYgMTAuMnpNMTkyLjQgNTQ2LjhIOTguN2MtMTkuMiAwL' +
  58. 'TM0LjctMTUuNS0zNC43LTM0LjcgMC0xOS4yIDE1LjUtMzQuNyAzNC43LTM0LjdoOTMuN2MxOS4yIDAgMzQuNyAxNS41IDM0LjcgMzQuNyAwIDE5LjEtMTUuNSAzNC43LTM0Lj' +
  59. 'cgMzQuN3pNMjE5LjggODM5LjFjLTguOSAwLTE3LjgtMy40LTI0LjUtMTAuMi0xMy42LTEzLjYtMTMuNi0zNS41IDAtNDkuMWw2Ni4zLTY2LjNjMTMuNS0xMy42IDM1LjUtMTM' +
  60. 'uNiA0OS4xIDAgMTMuNiAxMy42IDEzLjYgMzUuNSAwIDQ5LjFsLTY2LjMgNjYuM2MtNi45IDYuOC0xNS43IDEwLjItMjQuNiAxMC4yek01MTIuMSA5NjAuMmMtMTkuMiAwLTM0' +
  61. 'LjctMTUuNS0zNC43LTM0Ljd2LTkzLjdjMC0xOS4yIDE1LjUtMzQuNyAzNC43LTM0LjcgMTkuMiAwIDM0LjcgMTUuNSAzNC43IDM0Ljd2OTMuN2MwIDE5LjItMTUuNSAzNC43L' +
  62. 'TM0LjcgMzQuN3pNODA0LjQgODM5LjFjLTguOSAwLTE3LjgtMy40LTI0LjUtMTAuMmwtNjYuMy02Ni4zYy0xMy42LTEzLjYtMTMuNi0zNS41IDAtNDkuMSAxMy41LTEzLjYgMz' +
  63. 'UuNS0xMy42IDQ5LjEgMGw2Ni4zIDY2LjNjMTMuNiAxMy42IDEzLjYgMzUuNSAwIDQ5LjFhMzQuNjggMzQuNjggMCAwIDEtMjQuNiAxMC4yek05MjUuNSA1NDYuOGgtOTMuN2M' +
  64. 'tMTkuMiAwLTM0LjctMTUuNS0zNC43LTM0LjcgMC0xOS4yIDE1LjUtMzQuNyAzNC43LTM0LjdoOTMuN2MxOS4yIDAgMzQuNyAxNS41IDM0LjcgMzQuNyAwIDE5LjEtMTUuNSAz' +
  65. 'NC43LTM0LjcgMzQuN3pNNzM4LjIgMzIwLjdjLTguOSAwLTE3LjgtMy40LTI0LjUtMTAuMi0xMy42LTEzLjYtMTMuNi0zNS41IDAtNDkuMWw2Ni4zLTY2LjNjMTMuNS0xMy42I' +
  66. 'DM1LjUtMTMuNiA0OS4xIDAgMTMuNiAxMy42IDEzLjYgMzUuNSAwIDQ5LjFsLTY2LjMgNjYuM2MtNi45IDYuOC0xNS44IDEwLjItMjQuNiAxMC4yeiIgZmlsbD0iI2Y0ZWEyYS' +
  67. 'IgcC1pZD0iOTE2Ij48L3BhdGg+PC9zdmc+';
  68.  
  69. //夜间模式图标(base64)
  70. var dark = 'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDI' +
  71. 'CItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNTkxNjAzODE3ODAwI' +
  72. 'iBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjExMDEiI' +
  73. 'HhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPjxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+QGZvb' +
  74. 'nQtZmFjZSB7IGZvbnQtZmFtaWx5OiBlbGVtZW50LWljb25zOyBzcmM6IHVybCgiY2hyb21lLWV4dGVuc2lvbjovL2JiYWtobm1ma2plbmZiaGpkZGRpcGNlZm5ocGlramJqL' +
  75. '2ZvbnRzL2VsZW1lbnQtaWNvbnMud29mZiIpIGZvcm1hdCgid29mZiIpLCB1cmwoImNocm9tZS1leHRlbnNpb246Ly9iYmFraG5tZmtqZW5mYmhqZGRkaXBjZWZuaHBpa2pia' +
  76. 'i9mb250cy9lbGVtZW50LWljb25zLnR0ZiAiKSBmb3JtYXQoInRydWV0eXBlIik7IH0KPC9zdHlsZT48L2RlZnM+PHBhdGggZD0iTTUwMy40IDk1OS4yYy0xNTYuMSAwLTMwM' +
  77. 'y4xLTgzLjItMzgzLjUtMjE3LjNsLTQ1LjgtNzYuMyA4Ny4yIDE3LjNjNDQgOC44IDg4LjkgOC42IDEzMy4yLTAuNkMzODIuNiA2NjQuNCA0NTguMyA2MTMgNTA3LjggNTM4Y' +
  78. 'zQ5LjUtNzUuMSA2Ni44LTE2NC45IDQ4LjctMjUzLTExLjgtNTcuMy0zOC40LTExMC43LTc2LjktMTU0LjRsLTU4LjctNjYuNyA4OC44IDEuMmMyNDMuMSAzLjQgNDQwLjggM' +
  79. 'jAzLjkgNDQwLjggNDQ3IDAgMjQ2LjUtMjAwLjYgNDQ3LjEtNDQ3LjEgNDQ3LjF6TTIzOC4zIDc2OC4xYzY4LjUgNzEuNCAxNjMgMTEyLjMgMjY1LjEgMTEyLjMgMjAzLjEgM' +
  80. 'CAzNjguMy0xNjUuMiAzNjguMy0zNjguMyAwLTE3MS42LTExOS42LTMxNy40LTI3OS44LTM1Ny40IDE5LjQgMzUuNyAzMy41IDc0LjMgNDEuOCAxMTQuNCA0Ni4xIDIyNC40L' +
  81. 'Tk4LjkgNDQ0LjQtMzIzLjMgNDkwLjUtMjQgNS00OCA3LjgtNzIuMSA4LjV6IiBmaWxsPSIjMDAwMDAwIiBwLWlkPSIxMTAyIj48L3BhdGg+PC9zdmc+';
  82.  
  83. //显示快捷键窗口
  84. var $hint = $('<div>' +
  85. ' <div>' +
  86. ' <div>' +
  87. ' <div class=\"Modal-wrapper Modal-enter-done\">' +
  88. ' <div class=\"Modal-backdrop\"></div>' +
  89. ' <div class=\"Modal Modal--default ShortcutHintModal\" tabindex=\"0\">' +
  90. ' <div class=\"Modal-inner\">' +
  91. ' <h3 class=\"Modal-title\">快捷键帮助</h3>' +
  92. ' <div class=\"Modal-content\">' +
  93. ' <div class=\"ShortcutHintModal-content\">' +
  94. ' <div class=\"ShortcutHintModal-hintListContainer\">' +
  95. ' <div class=\"ShortcutHintModal-hintList\">' +
  96. ' <div class=\"ShortcutHintModal-hintTitle\">' +
  97. ' 操作' +
  98. ' </div>' +
  99. ' <div class=\"KeyHint\">' +
  100. ' <div class=\"KeyHint-keyContainer\">' +
  101. ' <div class=\"KeyHint-key\">' +
  102. ' <kbd class=\"KeyHint-kbd\">V</kbd>' +
  103. ' </div>' +
  104. ' </div>' +
  105. ' <div>' +
  106. ' :赞同' +
  107. ' </div>' +
  108. ' </div>' +
  109. ' <div class=\"KeyHint\">' +
  110. ' <div class=\"KeyHint-keyContainer\">' +
  111. ' <div class=\"KeyHint-key\">' +
  112. ' <kbd class=\"KeyHint-kbd\">D</kbd>' +
  113. ' </div>' +
  114. ' </div>' +
  115. ' <div>' +
  116. ' :反对' +
  117. ' </div>' +
  118. ' </div>' +
  119. ' <div class=\"KeyHint\">' +
  120. ' <div class=\"KeyHint-keyContainer\">' +
  121. ' <div class=\"KeyHint-key\">' +
  122. ' <kbd class=\"KeyHint-kbd\">L</kbd>' +
  123. ' </div>' +
  124. ' </div>' +
  125. ' <div>' +
  126. ' :喜欢' +
  127. ' </div>' +
  128. ' </div>' +
  129. ' <div class=\"KeyHint\">' +
  130. ' <div class=\"KeyHint-keyContainer\">' +
  131. ' <div class=\"KeyHint-key\">' +
  132. ' <kbd class=\"KeyHint-kbd\">C</kbd>' +
  133. ' </div>' +
  134. ' </div>' +
  135. ' <div>' +
  136. ' :展开 / 收起评论' +
  137. ' </div>' +
  138. ' </div>' +
  139. ' <div class=\"KeyHint\">' +
  140. ' <div class=\"KeyHint-keyContainer\">' +
  141. ' <div class=\"KeyHint-key\">' +
  142. ' <kbd class=\"KeyHint-kbd\">Shift</kbd>' +
  143. ' <div class=\"KeyHint-separator\">' +
  144. ' +' +
  145. ' </div>' +
  146. ' </div>' +
  147. ' <div class=\"KeyHint-key\">' +
  148. ' <kbd class=\"KeyHint-kbd\">C</kbd>' +
  149. ' </div>' +
  150. ' </div>' +
  151. ' <div>' +
  152. ' :聚焦到评论框' +
  153. ' </div>' +
  154. ' </div>' +
  155. ' <div class=\"KeyHint\">' +
  156. ' <div class=\"KeyHint-keyContainer\">' +
  157. ' <div class=\"KeyHint-key\">' +
  158. ' <kbd class=\"KeyHint-kbd\">O</kbd>' +
  159. ' </div>' +
  160. ' </div>' +
  161. ' <div>' +
  162. ' :展开 / 收起全文' +
  163. ' </div>' +
  164. ' </div>' +
  165. ' <div class=\"KeyHint\">' +
  166. ' <div class=\"KeyHint-keyContainer\">' +
  167. ' <div class=\"KeyHint-key\">' +
  168. ' <kbd class=\"KeyHint-kbd\">S</kbd>' +
  169. ' <div class=\"KeyHint-separator KeyHint-separator--space\"> ' +
  170. ' </div>' +
  171. ' </div>' +
  172. ' <div class=\"KeyHint-key\">' +
  173. ' <kbd class=\"KeyHint-kbd\">C</kbd>' +
  174. ' </div>' +
  175. ' </div>' +
  176. ' <div>' +
  177. ' :收藏' +
  178. ' </div>' +
  179. ' </div>' +
  180. ' <div class=\"KeyHint\">' +
  181. ' <div class=\"KeyHint-keyContainer\">' +
  182. ' <div class=\"KeyHint-key\">' +
  183. ' <kbd class=\"KeyHint-kbd\">F</kbd>' +
  184. ' <div class=\"KeyHint-separator KeyHint-separator--space\"> ' +
  185. ' </div>' +
  186. ' </div>' +
  187. ' <div class=\"KeyHint-key\">' +
  188. ' <kbd class=\"KeyHint-kbd\">X</kbd>' +
  189. ' </div>' +
  190. ' </div>' +
  191. ' <div>' +
  192. ' :分享' +
  193. ' </div>' +
  194. ' </div>' +
  195. ' </div>' +
  196. ' <div class=\"ShortcutHintModal-hintList\">' +
  197. ' <div class=\"ShortcutHintModal-hintTitle\">' +
  198. ' 导航' +
  199. ' </div>' +
  200. ' <div class=\"KeyHint\">' +
  201. ' <div class=\"KeyHint-keyContainer\">' +
  202. ' <div class=\"KeyHint-key\">' +
  203. ' <kbd class=\"KeyHint-kbd\">J</kbd>' +
  204. ' </div>' +
  205. ' </div>' +
  206. ' <div>' +
  207. ' :下一项' +
  208. ' </div>' +
  209. ' </div>' +
  210. ' <div class=\"KeyHint\">' +
  211. ' <div class=\"KeyHint-keyContainer\">' +
  212. ' <div class=\"KeyHint-key\">' +
  213. ' <kbd class=\"KeyHint-kbd\">K</kbd>' +
  214. ' </div>' +
  215. ' </div>' +
  216. ' <div>' +
  217. ' :上一项' +
  218. ' </div>' +
  219. ' </div>' +
  220. ' <div class=\"KeyHint\">' +
  221. ' <div class=\"KeyHint-keyContainer\">' +
  222. ' <div class=\"KeyHint-key\">' +
  223. ' <kbd class=\"KeyHint-kbd\">G</kbd>' +
  224. ' <div class=\"KeyHint-separator KeyHint-separator--space\"> ' +
  225. ' </div>' +
  226. ' </div>' +
  227. ' <div class=\"KeyHint-key\">' +
  228. ' <kbd class=\"KeyHint-kbd\">G</kbd>' +
  229. ' </div>' +
  230. ' </div>' +
  231. ' <div>' +
  232. ' :第一项' +
  233. ' </div>' +
  234. ' </div>' +
  235. ' <div class=\"KeyHint\">' +
  236. ' <div class=\"KeyHint-keyContainer\">' +
  237. ' <div class=\"KeyHint-key\">' +
  238. ' <kbd class=\"KeyHint-kbd\">Shift</kbd>' +
  239. ' <div class=\"KeyHint-separator\">' +
  240. ' +' +
  241. ' </div>' +
  242. ' </div>' +
  243. ' <div class=\"KeyHint-key\">' +
  244. ' <kbd class=\"KeyHint-kbd\">G</kbd>' +
  245. ' </div>' +
  246. ' </div>' +
  247. ' <div>' +
  248. ' :最后一项' +
  249. ' </div>' +
  250. ' </div>' +
  251. ' <div class=\"KeyHint\">' +
  252. ' <div class=\"KeyHint-keyContainer\">' +
  253. ' <div class=\"KeyHint-key\">' +
  254. ' <kbd class=\"KeyHint-kbd\">Shift</kbd>' +
  255. ' <div class=\"KeyHint-separator\">' +
  256. ' +' +
  257. ' </div>' +
  258. ' </div>' +
  259. ' <div class=\"KeyHint-key\">' +
  260. ' <kbd class=\"KeyHint-kbd\">U</kbd>' +
  261. ' </div>' +
  262. ' </div>' +
  263. ' <div>' +
  264. ' :向上滚动半屏' +
  265. ' </div>' +
  266. ' </div>' +
  267. ' <div class=\"KeyHint\">' +
  268. ' <div class=\"KeyHint-keyContainer\">' +
  269. ' <div class=\"KeyHint-key\">' +
  270. ' <kbd class=\"KeyHint-kbd\">Shift</kbd>' +
  271. ' <div class=\"KeyHint-separator\">' +
  272. ' +' +
  273. ' </div>' +
  274. ' </div>' +
  275. ' <div class=\"KeyHint-key\">' +
  276. ' <kbd class=\"KeyHint-kbd\">D</kbd>' +
  277. ' </div>' +
  278. ' </div>' +
  279. ' <div>' +
  280. ' :向下滚动半屏' +
  281. ' </div>' +
  282. ' </div>' +
  283. ' <div class="KeyHint">' +
  284. ' <div class="KeyHint-keyContainer">' +
  285. ' <div class="KeyHint-key">' +
  286. ' <kbd class="KeyHint-kbd">' +
  287. ' Alt' +
  288. ' </kbd>' +
  289. ' <div class="KeyHint-separator">' +
  290. ' +' +
  291. ' </div>' +
  292. ' </div>' +
  293. ' <div class="KeyHint-key">' +
  294. ' <kbd class="KeyHint-kbd">' +
  295. ' S' +
  296. ' </kbd>' +
  297. ' </div>' +
  298. ' </div>' +
  299. ' <div>' +
  300. ' :侧边栏第一项' +
  301. ' </div>' +
  302. ' </div>' +
  303. ' <div class=\"KeyHint\">' +
  304. ' <div class=\"KeyHint-keyContainer\">' +
  305. ' <div class=\"KeyHint-key\">' +
  306. ' <kbd class=\"KeyHint-kbd\">/</kbd>' +
  307. ' </div>' +
  308. ' </div>' +
  309. ' <div>' +
  310. ' :搜索' +
  311. ' </div>' +
  312. ' </div>' +
  313. ' <div class=\"KeyHint\">' +
  314. ' <div class=\"KeyHint-keyContainer\">' +
  315. ' <div class=\"KeyHint-key\">' +
  316. ' <kbd class=\"KeyHint-kbd\">?</kbd>' +
  317. ' </div>' +
  318. ' </div>' +
  319. ' <div>' +
  320. ' :快捷键帮助' +
  321. ' </div>' +
  322. ' </div>' +
  323. ' </div>' +
  324. ' </div>' +
  325. ' </div>' +
  326. ' </div>' +
  327. ' </div>' +
  328. ' <button aria-label=\"关闭\" type=\"button\" class=\"Button Modal-closeButton Button--plain\">' +
  329. ' <svg class=\"Zi Zi--Close Modal-closeIcon\" fill=\"currentColor\" viewbox=\"0 0 24 24\" width=\"24\" height=\"24\">' +
  330. ' <path d=\"M13.486 12l5.208-5.207a1.048 1.048 0 0 0-.006-1.483 1.046 1.046 0 0 0-1.482-.005L12 10.514 6.793 5.305a1.048 1.048 0 0 0-1.483.005 1.046 1.046 0 0 0-.005 1.483L10.514 12l-5.208 5.207a1.048 1.048 0 0 0 .006 1.483 1.046 1.046 0 0 0 1.482.005L12 13.486l5.207 5.208a1.048 1.048 0 0 0 1.483-.006 1.046 1.046 0 0 0 .005-1.482L13.486 12z\" fill-rule=\"evenodd\"></path>' +
  331. ' </svg></button>' +
  332. ' </div>' +
  333. ' </div>' +
  334. ' </div>' +
  335. ' </div>' +
  336. '</div>');
  337.  
  338. /*
  339. //添加"匿名"按钮
  340. function addAnonymous($QuestionHeaderActions, $more) {
  341. var a = '<button type=\"button\" class=\"Button Button--plain Button--withIcon Button--withLabel\">' +
  342. '<span style=\"display: inline-flex; align-items: center; vertical-align:middle;\">' +
  343. '<svg class=\"Zi Zi--Anonymous Button-zi\" fill=\"currentColor\" viewBox=\"0 0 1024 1024\" width=\"1.2em\" height=\"1.2em\">' +
  344. '<path d=\"M831.994 442.66v436.364c0 24.906 7.312 45.124 42.654 45.124 35.344 0 42.656-20.218 42.656-45.124V442.66h-85.31z\"></path>' +
  345. '<path d=\"M895.992 582.814c0 11.78 9.532 21.342 21.312 21.342v-42.654a21.3 21.3 0 0 0-21.312 21.312zM895.992 668.156c0 11.78 9.532 21.342 21.312 21.342v-42.686c-11.78 0-21.312 9.564-21.312 21.344zM895.992 753.496a21.3 21.3 0 0 0 21.312 21.312v-42.656c-11.78 0-21.312 9.562-21.312 21.344zM895.992 838.806c0 11.812 9.532 21.344 21.312 21.344v-42.654c-11.78 0-21.312 9.562-21.312 21.31zM853.306 582.814c0 11.78-9.532 21.342-21.312 21.342v-42.654a21.3 21.3 0 0 1 21.312 21.312zM853.306 668.156c0 11.78-9.532 21.342-21.312 21.342v-42.686c11.782 0 21.312 9.564 21.312 21.344zM853.306 753.496a21.3 21.3 0 0 1-21.312 21.312v-42.656c11.782 0 21.312 9.562 21.312 21.344zM853.306 838.806c0 11.812-9.532 21.344-21.312 21.344v-42.654c11.782 0 21.312 9.562 21.312 21.31z\"></path><path d=\"M831.994 590.688c26.25-14.124 56.592-34.404 85.31-62.402V442.66h-85.31v148.028z\"></path>' +
  346. '<path d=\"M1021.52 168.916c-15.532-160.26-413.238 8.594-509.516 8.594S17.986 8.656 2.486 168.916c-29.436 303.68 212.838 396.178 254.65 405.772 147.84 33.904 201.15-48.044 254.868-48.044 53.686 0 107.028 81.95 254.836 48.044 41.812-9.592 284.086-102.092 254.68-405.772zM392.85 399.318c-23.624 8.328-52.154 12.906-80.342 12.906-24.78 0-47.904-3.594-66.904-10.39-18.75-6.718-32.812-16.204-41.842-28.202-14.75-19.67-16.906-48.578-6.436-85.95 2.5-1.156 9.342-3.532 23.592-3.532 36.062 0 88.216 15.03 132.84 38.28 44.75 23.312 66.342 46.624 71.81 59.25-3.97 3.904-13.844 10.982-32.718 17.638z m427.364-25.688c-9 12-23.094 21.484-41.844 28.202-18.968 6.796-42.124 10.39-66.874 10.39-28.218 0-56.748-4.578-80.342-12.906-18.906-6.656-28.75-13.734-32.75-17.64 5.468-12.624 27.062-35.936 71.812-59.25 44.622-23.25 96.778-38.28 132.872-38.28 14.25 0 21.06 2.376 23.56 3.532 10.502 37.376 8.314 66.282-6.434 85.952z\" ></path>' +
  347. '<path d=\"M867.71 276.15a42.61 42.61 0 0 0-22.998-27.124c-10.718-5-24.716-7.546-41.624-7.546-43.094 0-101.56 16.516-152.59 43.11-46.406 24.186-79.688 53.404-91.248 80.154a42.642 42.642 0 0 0 9.342 47.466c7.532 7.344 22.032 18.062 48.376 27.342 28.032 9.89 61.592 15.344 94.53 15.344 29.592 0 57.716-4.468 81.28-12.89 26.75-9.578 47.436-23.968 61.56-42.764 12.31-16.406 19.404-36.186 21.124-58.764 1.436-19.284-1.158-40.938-7.752-64.328z m-47.496 97.48c-9 12-23.094 21.484-41.844 28.202-18.968 6.796-42.124 10.39-66.874 10.39-28.218 0-56.748-4.578-80.342-12.906-18.906-6.656-28.75-13.734-32.75-17.64 5.468-12.624 27.062-35.936 71.812-59.25 44.622-23.25 96.778-38.28 132.872-38.28 14.25 0 21.06 2.376 23.56 3.532 10.502 37.376 8.314 66.282-6.434 85.952zM464.722 364.742c-11.562-26.75-44.81-55.968-91.248-80.154-51.03-26.594-109.498-43.11-152.558-43.11-16.906 0-30.906 2.532-41.624 7.532a42.69 42.69 0 0 0-23.03 27.14c-6.562 23.39-9.156 45.044-7.718 64.326 1.688 22.578 8.782 42.358 21.092 58.764 14.124 18.796 34.842 33.188 61.592 42.764 23.562 8.422 51.654 12.89 81.278 12.89 32.906 0 66.468-5.454 94.53-15.344 26.312-9.28 40.812-20 48.342-27.342a42.638 42.638 0 0 0 9.344-47.466z m-71.872 34.576c-23.624 8.328-52.154 12.906-80.342 12.906-24.78 0-47.904-3.594-66.904-10.39-18.75-6.718-32.812-16.204-41.842-28.202-14.75-19.67-16.906-48.578-6.436-85.95 2.5-1.156 9.342-3.532 23.592-3.532 36.062 0 88.216 15.03 132.84 38.28 44.75 23.312 66.342 46.624 71.81 59.25-3.97 3.904-13.844 10.982-32.718 17.638z\"></path>' +
  348. '</svg></span> 匿名</button>';
  349. var $anonymous = $(a);
  350. $anonymous.bind("click", function() {
  351. $more.find("button").click();
  352. $(".Menu.QuestionHeader-menu").children().eq(0).click();
  353. });
  354. $QuestionHeaderActions.append($anonymous);
  355. }
  356. */
  357.  
  358. //添加"问题日志"按钮
  359. function addLog($QuestionHeaderActions) {
  360. var url = window.location.href;
  361. var end, href;
  362. if (url.indexOf("?") > -1) {
  363. end = url.indexOf("?");
  364. url = url.substring(0, end);
  365. }
  366.  
  367. if (url.indexOf("answer") > -1) {
  368. end = url.indexOf("answer");
  369. href = url.substring(0, end);
  370. } else {
  371. href = url + "/";
  372. }
  373. var L = '<button type=\"button\" class=\"Button Button--plain Button--withIcon Button--withLabel\"><a href=\"' + href + 'log\" target=\"_self\"><span style=\"display: inline-flex; align-items: center; vertical-align:middle;\"><svg class=\"Zi Zi--Log Button-zi\" fill=\"currentColor\" viewBox=\"0 0 1024 1024\" width=\"1.2em\" height=\"1.2em\"><path d=\"M733.129568 1.700997H1.700997v1020.598006h1020.598006v-765.448505z m204.119601 935.548172h-850.498338v-850.498338h614.910299l235.588039 206.671096z\"></path><path d=\"M170.099668 171.800664h279.813953v85.049834H170.099668zM170.099668 372.518272h683.800664v85.049834H170.099668zM170.099668 567.282392h683.800664v85.049834H170.099668zM170.099668 762.046512h683.800664v85.049834H170.099668z\"></path></svg></span>问题日志</a></button>';
  374. var $log = $(L);
  375. $QuestionHeaderActions.append($log);
  376. }
  377.  
  378. //添加"快捷键"按钮
  379. function addShortCut($QuestionHeaderActions) {
  380. var s = '<button type=\"button\" class=\"Button Button--plain Button--withIcon Button--withLabel\"><span style=\"display: inline-flex; align-items: center; vertical-align:middle;\"><svg class=\"Zi Zi--ShortCut Button-zi\" fill=\"currentColor\" viewBox=\"0 0 1024 1024\" width=\"1.5em\" height=\"1.2em\"><path d=\"M1088 128H64C28.8 128 0 156.8 0 192v640c0 35.2 28.8 64 64 64h1024c35.2 0 64-28.8 64-64V192c0-35.2-28.8-64-64-64zM640 256h128v128h-128V256z m192 192v128h-128v-128h128zM448 256h128v128h-128V256z m192 192v128h-128v-128h128zM256 256h128v128H256V256z m192 192v128h-128v-128h128zM128 256h64v128H128V256z m0 192h128v128H128v-128z m64 320H128v-128h64v128z m576 0H256v-128h512v128z m256 0h-192v-128h192v128z m0-192h-128v-128h128v128z m0-192h-192V256h192v128z\"></path></svg></span> 快捷键</button>';
  381. var $shortcut = $(s);
  382. $shortcut.css({
  383. "margin-left": "10px"
  384. });
  385. $shortcut.click(function() {
  386. $(".Modal-wrapper").show();
  387. });
  388. $QuestionHeaderActions.append($shortcut);
  389.  
  390. }
  391.  
  392. //UTC标准时转UTC+8北京时间
  393. function getUTC8(datetime) {
  394. let month = (datetime.getMonth() + 1) < 10 ? "0" + (datetime.getMonth() + 1) : (datetime.getMonth() + 1);
  395. let date = datetime.getDate() < 10 ? "0" + datetime.getDate() : datetime.getDate();
  396. let hours = datetime.getHours() < 10 ? "0" + datetime.getHours() : datetime.getHours();
  397. let minutes = datetime.getMinutes() < 10 ? "0" + datetime.getMinutes() : datetime.getMinutes();
  398. let seconds = datetime.getSeconds() < 10 ? "0" + datetime.getSeconds() : datetime.getSeconds();
  399. return (datetime.getFullYear() + "-" + month + "-" + date + "\xa0\xa0" + hours + ":" + minutes + ":" + seconds);
  400. }
  401.  
  402.  
  403. //回答页
  404. function question() {
  405. if (hideQuestionSidebar == 1) //隐藏侧边栏并拉宽内容
  406. {
  407. $(".Question-sideColumn.Question-sideColumn--sticky").hide();
  408. if ($(".ListShortcut").length > 0) {
  409. $(".ListShortcut").width($(".Question-main").width());
  410. $(".Question-mainColumn").width($(".ListShortcut").width());
  411. $(".ContentItem-actions").width($(".Question-mainColumn").width() - 40); //每个回答的的margin-left + margin-right=40px,减去才能正好居中
  412.  
  413. } else {
  414. $(".Question-mainColumn").width($(".Question-main").width());
  415. $(".ContentItem-actions").width($(".Question-mainColumn").width() - 40); //每个回答的的margin-left + margin-right=40px,减去才能正好居中
  416. }
  417. } else if (hideQuestionSidebar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  418. {
  419. $(".Question-sideColumn.Question-sideColumn--sticky").hide();
  420.  
  421. $(".Question-main").attr("style", "display:flex;justify-content:center;");
  422. $(".ContentItem-actions").width($(".Question-mainColumn").width() - 40); //每个回答的的margin-left + margin-right=40px,减去才能正好居中
  423. }
  424.  
  425. //首页顶部导航栏"等你来答"页
  426. if (window.location.href.indexOf("waiting") > -1) {
  427. if (hideIndexSidebar == 1) //隐藏侧边栏并拉宽内容
  428. {
  429. $('.css-1qyytj7').hide();
  430. $(".GlobalSideBar").hide();
  431. $(".QuestionWaiting-mainColumn").width($(".QuestionWaiting").width());
  432. } else if (hideIndexSidebar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  433. {
  434. $('.css-1qyytj7').hide();
  435. $(".GlobalSideBar").hide();
  436. $(".QuestionWaiting").attr("style", "display:flex;justify-content:center;");
  437. }
  438. }
  439.  
  440. //稍后答功能
  441. if (hideLaterSideBar == 1) //隐藏侧边栏并拉宽内容
  442. {
  443. $('.css-1qyytj7').hide();
  444. $(".GlobalSideBar").hide();
  445. $(".QuestionLater-mainColumn").width($(".QuestionLater").width());
  446. } else if (hideLaterSideBar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  447. {
  448. $('.css-1qyytj7').hide();
  449. $(".GlobalSideBar").hide();
  450. $(".QuestionLater").attr("style", "display:flex;justify-content:center;");
  451. }
  452.  
  453. //问题编辑时间参考:https://greasyfork.org/zh-CN/scripts/398195
  454. if ($(".QuestionPage .QuestionHeader-side p").length == 0 && window.location.href.indexOf("log") == -1) //非问题日志页
  455. {
  456. let createtime = $(".QuestionPage>[itemprop~=dateCreated]").attr("content");
  457. let modifiedtime = $(".QuestionPage>[itemprop~=dateModified]").attr("content");
  458. createtime = getUTC8(new Date(createtime));
  459. modifiedtime = getUTC8(new Date(modifiedtime));
  460.  
  461. $(".QuestionPage .QuestionHeader-side").append('<div style=\"color:#8590a6; margin-top:15px\"><p>创建时间:&nbsp;&nbsp;' + createtime + '</p><p>最后编辑:&nbsp;&nbsp;' + modifiedtime + '</p></div>');
  462. }
  463.  
  464. //快捷键提示框
  465. if ($(".Modal-wrapper").length == 0) {
  466. $(document.body).append($hint);
  467. $(".Modal-wrapper").hide();
  468. $(".Modal-closeButton").click(function() {
  469. $(".Modal-wrapper").hide();
  470. });
  471. }
  472.  
  473. //问题标题
  474. var $QuestionHeaderActions = $("div.QuestionHeaderActions");
  475.  
  476. var $titlemore = $QuestionHeaderActions.find(".Zi--Dots").parent().parent().parent(); //更多
  477. var $titlereport = $QuestionHeaderActions.find(".Title.Zi--Report"); //举报
  478. /*var $anonymous = $(".Zi--Anonymous"); //匿名*/
  479. var $log = $(".Zi--Log"); //日志
  480. var $shortcut = $(".Zi--ShortCut"); //快捷键
  481.  
  482. if ($(".AppHeader-profileAvatar").length > 0) //已登录
  483. {
  484. if ($titlereport.length == 0) //题目未添加举报
  485. {
  486. $titlemore.hide();
  487. let button_text = '<button type=\"button\" class=\"Button Button--plain Button--withIcon Button--withLabel\"><span style=\"display: inline-flex; align-items: center; vertical-align:middle;\"><svg class=\"Title Zi--Report \" fill=\"currentColor\" viewBox=\"0 0 24 24\" width=\"14\" height=\"14\"><path d=\"M19.947 3.129c-.633.136-3.927.639-5.697.385-3.133-.45-4.776-2.54-9.949-.888-.997.413-1.277 1.038-1.277 2.019L3 20.808c0 .3.101.54.304.718a.97.97 0 0 0 .73.304c.275 0 .519-.102.73-.304.202-.179.304-.418.304-.718v-6.58c4.533-1.235 8.047.668 8.562.864 2.343.893 5.542.008 6.774-.657.397-.178.596-.474.596-.887V3.964c0-.599-.42-.972-1.053-.835z\" fill-rule=\"evenodd\"></path></svg></span> 举报</button>';
  488. let $report = $(button_text);
  489. $report.bind("click", function() {
  490. $titlemore.find("button").click();
  491. $(".Menu.QuestionHeader-menu").children().eq(2).click();
  492. });
  493. $titlemore.after($report);
  494. }
  495. /*
  496. if ($anonymous.length == 0) //未添加匿名
  497. {
  498. addAnonymous($QuestionHeaderActions, $titlemore);
  499. }
  500. */
  501. if ($log.length == 0) //未添加查看问题日志
  502. {
  503. addLog($QuestionHeaderActions);
  504. }
  505. if ($shortcut.length == 0) //未添加快捷键帮助
  506. {
  507. addShortCut($QuestionHeaderActions);
  508. }
  509.  
  510. //回答举报按钮
  511. $(".ContentItem-actions").each(function() {
  512.  
  513. if ($(this).find(".Zi--Report").length == 0 && $(this).find(".Zi--Settings").length == 0) //未添加举报 且 不是自己的回答
  514. {
  515. let $question_dot = $(this).find(".Zi--Dots").closest(".ContentItem-action");
  516. $question_dot.hide();
  517. let button_text = '<button type=\"button\" class=\"Button ContentItem-action Button--plain Button--withIcon Button--withLabel\"><span style=\"display: inline-flex; align-items: center;\"><svg class=\"Zi Zi--Report\" fill=\"currentColor\" viewBox=\"0 0 24 24\" width=\"14\" height=\"14\"><path d=\"M19.947 3.129c-.633.136-3.927.639-5.697.385-3.133-.45-4.776-2.54-9.949-.888-.997.413-1.277 1.038-1.277 2.019L3 20.808c0 .3.101.54.304.718a.97.97 0 0 0 .73.304c.275 0 .519-.102.73-.304.202-.179.304-.418.304-.718v-6.58c4.533-1.235 8.047.668 8.562.864 2.343.893 5.542.008 6.774-.657.397-.178.596-.474.596-.887V3.964c0-.599-.42-.972-1.053-.835z\" fill-rule=\"evenodd\"></path></svg></span> 举报</button>';
  518. let $report = $(button_text);
  519. $report.bind("click", function() {
  520. $question_dot.find("button").click();
  521. $(".Menu.AnswerItem-selfMenu").find("button").each(function() {
  522. if ($(this).text().indexOf("举报") > -1)
  523. $(this).click();
  524. });
  525. });
  526. $question_dot.after($report);
  527. } else {
  528. $(this).find(".Zi--Dots").closest(".ContentItem-action").hide();
  529. }
  530. });
  531.  
  532. } else //未登录
  533. {
  534. $(".Zi--Dots").parent().parent().parent().hide();
  535.  
  536. $log = $(".Zi--Log"); //日志
  537. $shortcut = $(".Zi--ShortCut"); //快捷键
  538.  
  539. if ($log.length == 0) //未添加查看问题日志
  540. {
  541. addLog($QuestionHeaderActions);
  542. }
  543. if ($shortcut.length == 0) //未添加快捷键帮助
  544. {
  545. addShortCut($QuestionHeaderActions);
  546. }
  547. }
  548.  
  549. //调整问题的按钮间距
  550. $(".QuestionHeaderActions .QuestionHeader-Comment").css({
  551. "margin": "0px 0px 0px 0px"
  552. });
  553. $(".QuestionHeaderActions .Popover.ShareMenu").css({
  554. "margin": "0px 0px 0px 0px"
  555. });
  556. $(".QuestionHeaderActions .Button.Button--plain.Button--withIcon.Button--withLabel").css({
  557. "margin": "0px 0px 0px 9px"
  558. });
  559.  
  560. var $QuestionButtonGroup = $(".QuestionHeader-footer-main").find(".QuestionButtonGroup");
  561. $QuestionButtonGroup.children().eq(0).css({
  562. "margin": "0px 0px 0px 8px"
  563. });
  564. $QuestionButtonGroup.children().eq(1).css({
  565. "margin": "0px 0px 0px 8px"
  566. });
  567.  
  568. $(".QuestionHeaderActions").children().eq(0).css({
  569. "margin": "0px 8px 0px 0px"
  570. });
  571.  
  572. $(".GoodQuestionAction-commonBtn").css("margin", "0px 0px 0px 0px");
  573.  
  574. $('.css-8pep6o').width($('.AnswerForm.css-1ot8pew').width());
  575. $('.css-29tdoj').width($('.css-8pep6o').width());
  576. $('.InputLike.AnswerForm-editor').width($('.css-29tdoj').width());
  577.  
  578. $('.css-arjme8').width($('.toolbarV3.css-10r8x72').width());
  579. $('.css-jis2as').width($('.css-arjme8').width());
  580. $('.css-29tdoj').width($('.css-arjme8').width());
  581. $('.css-1pfsia3').width($('.css-arjme8').width());
  582.  
  583. //回答的发布时间
  584. $(".ContentItem.AnswerItem").each(function() {
  585. if (!($(this).find(".ContentItem-time:not(.css-18wtfyc)").hasClass("full")) && $(this).find(".ContentItem-time:not(.css-18wtfyc)").length > 0 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text() != null) {
  586. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") == -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") > -1) //只有"编辑于"时增加具体发布时间data-tooltip
  587. {
  588. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  589. var oldtext = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text();
  590. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip + "\xa0\xa0,\xa0\xa0" + oldtext);
  591. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  592. } else if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") > -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") == -1) //只有"发布于"时替换为具体发布时间data-tooltip
  593. {
  594. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  595. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip);
  596. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  597. }
  598.  
  599. //发布时间置顶
  600. if (publishTop == 1) {
  601. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("css-18wtfyc") && !$(this).find('.ContentItem-time.css-18wtfyc').hasClass('full')) {
  602. let temp_out_time = $(this).find('.ContentItem-time.css-18wtfyc').clone();
  603. $(this).find('.ContentItem-time.css-18wtfyc').hide();
  604. $(this).find(".ContentItem-meta").append(temp_out_time);
  605. $(this).find('.ContentItem-time.css-18wtfyc').addClass('full');
  606. } else if (!$(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("ContentItem-meta")) {
  607. let temp_time = $(this).find(".ContentItem-time:not(.css-18wtfyc)").clone();
  608. if ($(this).find(".RichContent").length > 0) {
  609. $(this).find(".RichContent .ContentItem-time:not(.css-18wtfyc)").hide();
  610. } else //没有RichContent
  611. {
  612. $(this).find(".ContentItem-time:not(.css-18wtfyc):nth-of-type(2)").hide();
  613. }
  614. $(this).find(".ContentItem-meta").append(temp_time);
  615. }
  616. }
  617. }
  618.  
  619. /*
  620. //移动关注按钮到用户名旁边
  621. if($(this).find('.FollowButton').length>0 && !$(this).find('.FollowButton').hasClass('left'))
  622. {
  623. let width=$(this).find('.AuthorInfo:not(.AnswerItem-authorInfo)').width()+10;
  624. $(this).find('.FollowButton').css({'position':'absolute', 'left': width});
  625. $(this).find('.FollowButton').addClass('left');
  626. }
  627. */
  628. });
  629.  
  630. //关怀版回答的发布时间
  631. $(".List-item.aria-answer-item").each(function() {
  632. if (!($(this).find(".ContentItem-time:not(.css-18wtfyc)").hasClass("full")) && $(this).find(".ContentItem-time:not(.css-18wtfyc)").length > 0 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text() != null) {
  633. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") == -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") > -1) //只有"编辑于"时增加具体发布时间data-tooltip
  634. {
  635. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  636. var oldtext = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text();
  637. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip + "\xa0\xa0,\xa0\xa0" + oldtext);
  638. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  639. } else if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") > -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") == -1) //只有"发布于"时替换为具体发布时间data-tooltip
  640. {
  641. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  642. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip);
  643. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  644. }
  645.  
  646. //发布时间置顶
  647. if (publishTop == 1) {
  648. let temp_time = $(this).find(".ContentItem-time:not(.css-18wtfyc)").clone();
  649. $(this).find(".RichContent .ContentItem-time:not(.css-18wtfyc)").hide();
  650. $(this).find(".aria-content").prepend(temp_time);
  651. }
  652. }
  653. });
  654.  
  655.  
  656. $(".Pc-card.Card").attr("style", "display:none");
  657.  
  658. //查看全部回答按钮变色
  659. $(".QuestionMainAction").attr("style", "color:white;background-color:#0084FF");
  660.  
  661. //将问题描述中的转义字符进行转义
  662. if (!$('.QuestionRichText--expandable.QuestionRichText--collapsed').hasClass('done')) {
  663. let description = $('.QuestionRichText--expandable.QuestionRichText--collapsed>div>span').text();
  664. description = description.replace(/&quot;/g, '"');
  665. description = description.replace(/&amp;/g, '&');
  666. description = description.replace(/&lt;/g, '<');
  667. description = description.replace(/&gt;/g, '>');
  668. description = description.replace(/&nbsp;/g, ' ');
  669. $('.QuestionRichText--expandable.QuestionRichText--collapsed>div>span').text(description);
  670. $('.QuestionRichText--expandable.QuestionRichText--collapsed').addClass('done');
  671. }
  672. }
  673.  
  674.  
  675. //知乎跳转链接转为直链
  676. function directLink() {
  677. var equal, colon, external_href, protocol, path, new_href;
  678. //文字链接
  679. $("a.external").each(function() {
  680. if ($(this).find("span").length > 0) {
  681. new_href = $(this).text();
  682. $(this).attr("href", new_href);
  683. } else if ($(this).attr("href").indexOf("link.zhihu.com/?target=") > -1) {
  684. external_href = $(this).attr("href");
  685. new_href = external_href.substring($(this).attr("href").indexOf("link.zhihu.com/?target=") + "link.zhihu.com/?target=".length);
  686.  
  687. new_href.replace(/%/g, '%25');
  688. $(this).attr("href", decodeURIComponent(new_href));
  689. } else {
  690. external_href = $(this).attr("href");
  691. if (external_href.lastIndexOf("https%3A"))
  692. new_href = $(this).attr("href").substring($(this).attr("href").lastIndexOf("https%3A"));
  693. else if (external_href.lastIndexOf("http%3A%2F%2F"))
  694. new_href = $(this).attr("href").substring($(this).attr("href").lastIndexOf("http%3A"));
  695.  
  696. new_href.replace(/%/g, '%25');
  697. $(this).attr("href", decodeURIComponent(new_href));
  698. }
  699. });
  700.  
  701. //卡片链接
  702. $("a.LinkCard:not(.MCNLinkCard):not(.ZVideoLinkCard):not(.ADLinkCardContainer)").each(function() {
  703. if ($(this).find(".LinkCard-title").length > 0 && $(this).find(".LinkCard-title").text().indexOf("http") > -1) {
  704. new_href = $(this).find(".LinkCard-title").text();
  705. $(this).attr("href", new_href);
  706. } else if ($(this).find(".LinkCard-desc").length > 0 && $(this).find(".LinkCard-desc").text().indexOf("http") > -1) {
  707. new_href = $(this).find(".LinkCard-desc").text();
  708. $(this).attr("href", new_href);
  709. } else if ($(this).attr("href").indexOf("link.zhihu.com/?target=") > -1) {
  710. external_href = $(this).attr("href");
  711. new_href = external_href.substring($(this).attr("href").indexOf("link.zhihu.com/?target=") + "link.zhihu.com/?target=".length);
  712.  
  713. new_href.replace(/%/g, '%25');
  714. $(this).attr("href", decodeURIComponent(new_href));
  715. } else {
  716. external_href = $(this).attr("href");
  717. if (external_href.lastIndexOf("https%3A"))
  718. new_href = $(this).attr("href").substring($(this).attr("href").lastIndexOf("https%3A"));
  719. else if (external_href.lastIndexOf("http%3A%2F%2F"))
  720. new_href = $(this).attr("href").substring($(this).attr("href").lastIndexOf("http%3A"));
  721.  
  722. new_href.replace(/%/g, '%25');
  723. $(this).attr("href", decodeURIComponent(new_href));
  724. }
  725. });
  726.  
  727. //旧版视频卡片链接
  728. $("a.VideoCard-link").each(function() {
  729. if ($(this).attr("href").indexOf("link.zhihu.com/?target=") > -1) {
  730. external_href = $(this).attr("href");
  731. equal = external_href.lastIndexOf("http");
  732. colon = external_href.lastIndexOf("%3A");
  733. protocol = external_href.substring(equal, colon);
  734. path = external_href.substring(colon + 5, external_href.length);
  735. new_href = protocol + "://" + path;
  736.  
  737. new_href.replace(/%/g, '%25');
  738. $(this).attr("href", decodeURIComponent(new_href));
  739. }
  740. });
  741.  
  742. //隐藏首页广告卡片
  743. $(".TopstoryItem--advertCard").hide();
  744.  
  745. //隐藏回答广告卡片
  746. $('.RichText-Ecommerce').hide();
  747. $('.RichText-EduCardContainer').hide();
  748.  
  749. }
  750.  
  751. //知乎专栏
  752. function zhuanlan() {
  753. //隐藏推荐文章
  754. if (hideRecommendedReading == 1) {
  755. $(".Recommendations-Main").hide();
  756. }
  757.  
  758. //专栏举报按钮
  759. if ($(".Zi--Report").length == 0) //未添加举报
  760. {
  761. let $lastchild = $(".ContentItem-actions").children().eq(-1);
  762. if ($lastchild.find(".Zi--Dots").length > 0)
  763. $lastchild.hide();
  764. var button_text = '<button type=\"button\" class=\"Button ContentItem-action Button--plain\"><span style=\"display: inline-flex; align-items: center;\"><svg class=\"Zi Zi--Report\" fill=\"currentColor\" viewBox=\"0 0 24 24\" width=\"14\" height=\"14\"><path d=\"M19.947 3.129c-.633.136-3.927.639-5.697.385-3.133-.45-4.776-2.54-9.949-.888-.997.413-1.277 1.038-1.277 2.019L3 20.808c0 .3.101.54.304.718a.97.97 0 0 0 .73.304c.275 0 .519-.102.73-.304.202-.179.304-.418.304-.718v-6.58c4.533-1.235 8.047.668 8.562.864 2.343.893 5.542.008 6.774-.657.397-.178.596-.474.596-.887V3.964c0-.599-.42-.972-1.053-.835z\" fill-rule=\"evenodd\"></path></svg></span> 举报</button>';
  765. var $report = $(button_text);
  766. $report.bind("click", function() {
  767. $lastchild.find("button").click();
  768. $(".Menu.Post-ActionMenu").find("button").click();
  769. });
  770. $lastchild.after($report);
  771. }
  772.  
  773. //有"编辑于"时,增加发布时间
  774. if ($(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") > -1 && !$(".ContentItem-time:not(.css-18wtfyc)").hasClass("done")) {
  775. let bianjiyu = $(".ContentItem-time:not(.css-18wtfyc)").text();
  776. $(".ContentItem-time:not(.css-18wtfyc)").click();
  777. $(".ContentItem-time:not(.css-18wtfyc)").text($(".ContentItem-time:not(.css-18wtfyc)").text() + "\xa0\xa0,\xa0\xa0" + bianjiyu);
  778. $(".ContentItem-time:not(.css-18wtfyc)").addClass("done");
  779. }
  780.  
  781. //发布时间置顶
  782. if (publishTop == 1 && $(".Post-Header").find(".ContentItem-time:not(.css-18wtfyc)").length == 0) {
  783. $(".ContentItem-time:not(.css-18wtfyc)").css({
  784. "padding": "0px 0px 0px 0px",
  785. "margin-top": "14px"
  786. });
  787. $(".ContentItem-time:not(.css-18wtfyc)").appendTo($(".Post-Header"));
  788. }
  789.  
  790. //专栏设置的已选菜单项变色
  791. $(".css-17px4ve").parent().each(function() {
  792. if ($(this).find(".css-17px4ve").children().length > 0) {
  793. $(this).css("color", "black");
  794. $(this).find(".Zi--Check").attr("fill", "black");
  795. }
  796. });
  797.  
  798. $('.css-sdgtgb').width($('.css-10r8x72').width());
  799. }
  800.  
  801. var upload_video_main_flag = 0; //上传视频页标志
  802.  
  803. //视频页
  804. function zvideo() {
  805.  
  806. //隐藏推荐视频
  807. $(".ZVideo-sideColumn").hide();
  808.  
  809. if (upload_video_main_flag == 0 && window.location.href.indexOf('upload-video') > 0) {
  810. GM_addStyle('html[data-theme=dark] main{background:rgb(18,18,18)}');
  811. upload_video_main_flag = 1;
  812. }
  813. }
  814.  
  815. //知乎圈子
  816. function club() {
  817. if (hideClubSideBar == 1) //隐藏侧边栏并拉宽内容
  818. {
  819. $(".ClubSideBar").hide();
  820. $(".Club-mainColumn").width($(".Club-container").width());
  821. $(".ClubEdit").width($(".Club-mainColumn").width() - 40); //每个提问的的margin-left + margin-right=40px,减去才能正好居中
  822. $('.ClubTopPosts').width($(".Club-mainColumn").width() - 32);
  823. $('.ClubPostList').width($(".Club-mainColumn").width());
  824. $('.PostItem.css-1b27c42').width($(".Club-mainColumn").width() - 32);
  825. $('section').css('border-right', 'none');
  826. } else if (hideClubSideBar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  827. {
  828. $(".ClubSideBar").hide();
  829. $(".Club-mainColumn").parent().attr("style", "display:flex;justify-content:center;");
  830. $(".ClubEdit").width($(".Club-mainColumn").width() - 40); //每个提问的的margin-left + margin-right=40px,减去才能正好居中
  831. $('.ClubTopPosts').width($(".Club-mainColumn").width() - 32);
  832. $('.ClubPostList').width($(".Club-mainColumn").width());
  833. $('.PostItem.css-1b27c42').width($(".Club-mainColumn").width() - 32);
  834. $('section').css('border-right', 'none');
  835. }
  836.  
  837. //退出圈子按钮
  838. var $ClubHeaderInfo_buttonGroup = $(".ClubHeaderInfo-buttonGroup");
  839. var $child1 = $ClubHeaderInfo_buttonGroup.children().eq(1 - 1);
  840. var $child2 = $ClubHeaderInfo_buttonGroup.children().eq(2 - 1);
  841. if ($child2.length > 0 && $child2.text().indexOf("签到") > -1 && $child2.text().indexOf("加入") == -1) //退出圈子
  842. {
  843. $child1.hide();
  844. let button_text = '<button class=\"ClubJoinOrCheckinButton\" style=\"margin-right:20px\"><img src=\"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjUxOTQxMTM1MTI0IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9Ijg2NDgiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiPjxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+QGZvbnQtZmFjZSB7IGZvbnQtZmFtaWx5OiBlbGVtZW50LWljb25zOyBzcmM6IHVybCgiY2hyb21lLWV4dGVuc2lvbjovL2JiYWtobm1ma2plbmZiaGpkZGRpcGNlZm5ocGlramJqL2ZvbnRzL2VsZW1lbnQtaWNvbnMud29mZiIpIGZvcm1hdCgid29mZiIpLCB1cmwoImNocm9tZS1leHRlbnNpb246Ly9iYmFraG5tZmtqZW5mYmhqZGRkaXBjZWZuaHBpa2piai9mb250cy9lbGVtZW50LWljb25zLnR0ZiAiKSBmb3JtYXQoInRydWV0eXBlIik7IH0KPC9zdHlsZT48L2RlZnM+PHBhdGggZD0iTTEwMjEuNzM4IDUxMS45OTggNzQzLjA4MiA2OTcuNzczIDc0My4wODIgNTU4LjQ0IDI3OC42NTYgNTU4LjQ0IDI3OC42NTYgNDY1LjU2bDQ2NC40MjYgMEw3NDMuMDgyIDMyNi4yMzIgMTAyMS43MzggNTExLjk5OHpNNTEwLjg2OSAyMzMuMzQ3IDkyLjg4NSAyMzMuMzQ3bDAgNTU3LjMwNyA0MTcuOTg0IDBMNTEwLjg2OSA2NTEuMzI2bDkyLjg4NSAwIDAgMjMyLjIxOC05Mi44ODUgMEw5Mi44ODUgODgzLjU0NCAwIDg4My41NDRsMC05Mi44OUwwIDIzMy4zNDdsMC05Mi44OSA5Mi44ODUgMCA0MTcuOTg0IDAgOTIuODg1IDAgMCAyMzIuMjE4LTkyLjg4NSAwTDUxMC44NjkgMjMzLjM0N3oiIHAtaWQ9Ijg2NDkiIGZpbGw9IiNmZjAwMDAiPjwvcGF0aD48L3N2Zz4=\"/><span style=\"color:red\">&nbsp;退出圈子</span></button>';
  845. let $report = $(button_text);
  846. $report.bind("click", function() {
  847. $child1.find("button").click();
  848. $(".ClubHeaderInfoMoreButton-item").click();
  849. });
  850. $child1.after($report);
  851. }
  852.  
  853. //圈子中提问举报按钮
  854. $(".PostReaction").each(function() {
  855. var $post_dot = $(this).find(".Zi--Dots").closest(".Popover");
  856. if ($(this).find(".Zi--Report").length == 0) //未添加举报
  857. {
  858. $post_dot.hide();
  859. let button_text = '<button type=\"button\" class=\"Button PostWebActionButtons-comment Button--plain Button--withIcon Button--withLabel\"><span style=\"display: inline-flex; align-items: center;\"><svg class=\"Zi Zi--Report\" fill=\"currentColor\" viewBox=\"0 0 24 24\" width=\"14\" height=\"14\"><path d=\"M19.947 3.129c-.633.136-3.927.639-5.697.385-3.133-.45-4.776-2.54-9.949-.888-.997.413-1.277 1.038-1.277 2.019L3 20.808c0 .3.101.54.304.718a.97.97 0 0 0 .73.304c.275 0 .519-.102.73-.304.202-.179.304-.418.304-.718v-6.58c4.533-1.235 8.047.668 8.562.864 2.343.893 5.542.008 6.774-.657.397-.178.596-.474.596-.887V3.964c0-.599-.42-.972-1.053-.835z\" fill-rule=\"evenodd\"></path></svg></span> 举报</button>';
  860. let $report = $(button_text);
  861. $report.bind("click", function() {
  862. $post_dot.find("button").click();
  863. $(".PostWebActionButtons-item").click();
  864. });
  865. $post_dot.after($report);
  866. }
  867. });
  868.  
  869. //有"最后回复"时,增加发布时间
  870. $(".PostItem-time").each(function() {
  871.  
  872. if ($(this).text().indexOf("发布时间") == -1 && $(this).parent().text().indexOf("最后回复") > -1) {
  873. let datetime = new Date($(this).attr("datetime"));
  874. let posttime = getUTC8(datetime);
  875. let replytime = $(this).text();
  876.  
  877. $(this).parent().get(0).childNodes[1].nodeValue = "";
  878. $(this).parent().get(0).childNodes[2].nodeValue = "";
  879. $(this).text("发布时间 " + posttime + "\xa0\xa0,\xa0\xa0" + "最后回复 " + replytime);
  880.  
  881. }
  882. });
  883. }
  884.  
  885. //获取url中?后面的参数
  886. function getQueryVariable(variable) {
  887. var query = window.location.search.substring(1);
  888. var vars = query.split("&");
  889. for (var i = 0; i < vars.length; i++) {
  890. var pair = vars[i].split("=");
  891. if (pair[0] == variable) {
  892. return pair[1];
  893. }
  894. }
  895. return (false);
  896. }
  897.  
  898. //搜索结果页
  899. function search() {
  900. if (hideSearchSideBar == 1) //隐藏侧边栏并拉宽内容
  901. {
  902. $('.css-knqde').hide();
  903. $(".SearchSideBar").hide();
  904. $(".SearchMain").width($(".Search-container").width());
  905. } else if (hideSearchSideBar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  906. {
  907. $('.css-knqde').hide();
  908. $(".SearchSideBar").hide();
  909. $(".Search-container").attr("style", "display:flex;justify-content:center;");
  910. }
  911.  
  912.  
  913. $(".ContentItem.AnswerItem, .ContentItem.ArticleItem").each(function() {
  914. if (!($(this).find(".ContentItem-time:not(.css-18wtfyc)").hasClass("full")) && $(this).find(".ContentItem-time:not(.css-18wtfyc)").length > 0 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text() != null) {
  915. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") == -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") > -1) //只有"编辑于"时,增加具体发布时间data-tooltip
  916. {
  917. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  918. var oldtext = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text();
  919. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip + "\xa0\xa0,\xa0\xa0" + oldtext);
  920. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  921. } else if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") > -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") == -1) //只有"发布于"时替换为具体发布时间data-tooltip
  922. {
  923. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  924. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip);
  925. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  926. }
  927.  
  928. //发布时间置顶
  929. if (publishTop == 1) {
  930. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("css-18wtfyc") && !$(this).find('.ContentItem-time.css-18wtfyc').hasClass('full')) {
  931. let temp_out_time = $(this).find('.ContentItem-time.css-18wtfyc').clone();
  932. $(this).find('.ContentItem-time.css-18wtfyc').hide();
  933. $(this).find(".SearchItem-meta").append(temp_out_time);
  934. $(this).find('.ContentItem-time.css-18wtfyc').addClass('full');
  935. } else if (!$(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("SearchItem-meta")) {
  936. let temp_time = $(this).find(".ContentItem-time:not(.css-18wtfyc)").clone();
  937. $(this).find(".RichContent .ContentItem-time:not(.css-18wtfyc)").hide();
  938. $(this).find(".SearchItem-meta").append(temp_time);
  939. }
  940. }
  941. }
  942.  
  943. });
  944.  
  945. //隐藏相关推荐的卡片,仅保留问题卡片
  946. /*
  947. $(".RelevantQuery").closest(".Card.SearchResult-Card").hide();
  948. $(".KfeCollection-PcCollegeCard-wrapper").closest(".Card.SearchResult-Card").hide();
  949. if (getQueryVariable("type") == "content") {
  950. $('.Card.SearchResult-Card[data-za-detail-view-path-module=\"UserItem\"]').hide();
  951. }
  952. */
  953.  
  954. //显示搜索页综合信息流标签
  955. if (flowTag == 1 && getQueryVariable("type") == "content") {
  956. $('.Card .List-item .ContentItem').each(function() {
  957. if ($(this).find('.Tag').length == 0) {
  958. let type;
  959. if ($(this).attr('itemprop') != undefined)
  960. type = $(this).attr('itemprop');
  961. else if ($(this).attr('itemtype') != undefined && $(this).attr('itemtype').indexOf('Zvideo') > -1)
  962. type = 'zvideo';
  963.  
  964. let typebackground = "",
  965. typename = "";
  966. if (type == 'answer') {
  967. typebackground = "#0084FF";
  968. typename = '问题';
  969. } else if (type == 'article') {
  970. typebackground = "orange";
  971. typename = '文章';
  972. } else if (type == 'zvideo') {
  973. typebackground = "red";
  974. typename = '视频';
  975. }
  976.  
  977. if (typename != "") {
  978. let tag = '<div class="Button Tag flowTag" style="background:' + typebackground + '"><span class="Tag-content">' + typename + '</span></div>';
  979. $(this).find('.ContentItem-title a').before($(tag));
  980. }
  981. }
  982. });
  983.  
  984. $('.Card.css-oo264i .css-ywimgq').each(function() {
  985. if ($(this).find('.Tag').length == 0) {
  986. let tag = '<div class="Button Tag flowTag" style="background:red"><span class="Tag-content">视频</span></div>';
  987. $(this).prepend($(tag));
  988. }
  989. });
  990. }
  991. }
  992.  
  993. //知乎讲座
  994. function lives() {
  995. $("[class*=\'LiveWechatSpread\']").hide(); //隐藏微信推荐
  996. }
  997.  
  998. //收藏夹
  999. function collection() {
  1000. if (hideCollectionSideBar == 1) //隐藏侧边栏并拉宽内容
  1001. {
  1002. $(".CollectionDetailPageSideBar").hide();
  1003. $(".CollectionsDetailPage-mainColumn").width($(".CollectionsDetailPage").width());
  1004.  
  1005. $(".GlobalSideBar").hide();
  1006. $(".Collections-mainColumn").width($(".Collections-container").width());
  1007.  
  1008. $(".css-1qyytj7").hide();
  1009. } else if (hideCollectionSideBar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  1010. {
  1011. $(".CollectionDetailPageSideBar").hide();
  1012. $(".CollectionsDetailPage-mainColumn").parent().attr("style", "display:flex;justify-content:center;");
  1013.  
  1014. $(".GlobalSideBar").hide();
  1015. $(".Collections-mainColumn").parent().attr("style", "display:flex;justify-content:center;");
  1016.  
  1017. $(".css-1qyytj7").hide();
  1018. }
  1019.  
  1020. //收藏夹举报按钮
  1021. $(".ContentItem-actions").each(function() {
  1022. var $collect_dot = $(this).find(".Zi--Dots").closest(".Popover");
  1023. if ($(this).find(".Zi--Report").length == 0) //未添加举报
  1024. {
  1025. $collect_dot.hide();
  1026. let button_text = '<button type=\"button\" class=\"Button ContentItem-action Button--plain\"><span style=\"display: inline-flex; align-items: center;\"><svg class=\"Zi Zi--Report\" fill=\"currentColor\" viewBox=\"0 0 24 24\" width=\"14\" height=\"14\"><path d=\"M19.947 3.129c-.633.136-3.927.639-5.697.385-3.133-.45-4.776-2.54-9.949-.888-.997.413-1.277 1.038-1.277 2.019L3 20.808c0 .3.101.54.304.718a.97.97 0 0 0 .73.304c.275 0 .519-.102.73-.304.202-.179.304-.418.304-.718v-6.58c4.533-1.235 8.047.668 8.562.864 2.343.893 5.542.008 6.774-.657.397-.178.596-.474.596-.887V3.964c0-.599-.42-.972-1.053-.835z\" fill-rule=\"evenodd\"></path></svg></span> 举报</button>';
  1027. let $report = $(button_text);
  1028. $report.bind("click", function() {
  1029. $collect_dot.find("button").click();
  1030. $(".AnswerItem-selfMenu").children().eq(1).click();
  1031. });
  1032. $collect_dot.after($report);
  1033. }
  1034. });
  1035. }
  1036.  
  1037. //按钮变色
  1038. function iconColor() {
  1039.  
  1040. //引用角标高亮
  1041. $('.ztext sup[data-draft-type=reference]').click(function() {
  1042.  
  1043. $('.ReferenceList li').removeClass('is-active');
  1044. let ref_id = $(this).find('a').attr('href');
  1045. $(this).closest('.List-item').find(ref_id).addClass('is-active');
  1046. $(this).closest('.ContentItem.AnswerItem').find(ref_id).addClass('is-active');
  1047. $(this).closest('.Post-content').find(ref_id).addClass('is-active');
  1048. $(this).closest('.TopicIntroContent').find(ref_id).addClass('is-active');
  1049. });
  1050.  
  1051. //悬停时显示浅蓝色边框
  1052. if (hoverShadow == 1) {
  1053. if (typeof($("html").attr("data-hover-visible")) == "undefined") {
  1054. $("html").attr("data-hover-visible", "1");
  1055. }
  1056. $("html").removeAttr("data-focus-visible"); //避免快捷键变色的影响
  1057. }
  1058.  
  1059. //折叠按钮
  1060. $(".Zi--EyeSlash").parent().parent().hover(function() {
  1061. $(this).find(".Zi--EyeSlash").attr("fill", "#22d3c3");
  1062. $(this).attr("style", "color:#22d3c3");
  1063. }, function() {
  1064. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("取消折叠") > -1) {
  1065. $(this).find(".Zi--EyeSlash").attr("fill", "#22d3c3");
  1066. $(this).attr("style", "color:#22d3c3");
  1067. } else {
  1068. $(this).find(".Zi--EyeSlash").attr("fill", "currentColor");
  1069. $(this).attr("style", "color:#8590A6");
  1070. }
  1071. });
  1072.  
  1073. //推荐按钮
  1074. $(".Zi--Recommend").parent().parent().hover(function() {
  1075. if (!$(this).hasClass('QuestionWaiting-types')) {
  1076. $(this).find(".Zi--Recommend").attr("fill", "#fcd02d");
  1077. $(this).attr("style", "color:#fcd02d");
  1078. }
  1079. }, function() {
  1080. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("取消推荐") > -1) {
  1081. $(this).find(".Zi--Recommend").attr("fill", "#fcd02d");
  1082. $(this).attr("style", "color:#fcd02d");
  1083. } else {
  1084. $(this).find(".Zi--Recommend").attr("fill", "currentColor");
  1085. $(this).attr("style", "color:#8590A6");
  1086. }
  1087. });
  1088.  
  1089. $(".Zi--List").parent().parent().hover(function() {
  1090. $(this).find(".Zi--List").attr("fill", "#0084FF");
  1091. $(this).attr("style", "color:#0084FF");
  1092. }, function() {
  1093. $(this).find(".Zi--List").attr("fill", "currentColor");
  1094. $(this).attr("style", "color:#8590A6");
  1095. });
  1096.  
  1097. //评论按钮
  1098. $(".Zi--Comment").parent().parent().hover(function() {
  1099. $(this).find(".Zi--Comment").attr("fill", "#0084FF");
  1100.  
  1101. if ($(this).closest(".QuestionHeaderActions").length > 0)
  1102. $(this).attr("style", "color:#0084FF;margin: 0px 0px 0px 9px;");
  1103. else
  1104. $(this).attr("style", "color:#0084FF");
  1105.  
  1106. }, function() {
  1107. if ($(this).closest(".QuestionHeaderActions").length > 0) {
  1108. $(this).find(".Zi--Comment").attr("fill", "currentColor");
  1109. $(this).attr("style", "color:#8590A6;margin: 0px 0px 0px 9px;");
  1110. } else if ($(this).closest(".css-b2n9t9").length > 0) {
  1111. $(this).find(".Zi--Comment").attr("fill", "currentColor");
  1112. $(this).attr("style", "color:#8590A6");
  1113. } else if ($(this).prop('lastChild').nodeValue.indexOf("收起评论") == -1) {
  1114. $(this).find(".Zi--Comment").attr("fill", "currentColor");
  1115. $(this).attr("style", "color:#8590A6");
  1116. }
  1117. });
  1118.  
  1119. //评论按钮(展开评论时)
  1120. $(".Zi--Comment").parent().parent().each(function() {
  1121. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("收起评论") > -1) {
  1122. $(this).find(".Zi--Comment").attr("fill", "#0084FF");
  1123. $(this).attr("style", "color:#0084FF");
  1124. }
  1125. });
  1126.  
  1127. $('.Zi--Catalog').closest('button').hover(function() {
  1128. $(this).attr('style', 'color:#10dede');
  1129. }, function() {
  1130. $(this).attr('style', 'color:#8590a6');
  1131. });
  1132.  
  1133. //评论弹窗关闭按钮
  1134. $(".Zi--Close").on("click", function() {
  1135. $(".Zi--Comment").parent().parent().each(function() {
  1136. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("收起评论") > -1) {
  1137. $(this).find(".Zi--Comment").attr("fill", "currentColor");
  1138. $(this).attr("style", "color:#8590A6");
  1139. }
  1140. });
  1141. });
  1142.  
  1143. /*
  1144. //私信按钮
  1145. $(".Zi--Comments").parent().parent().hover(function () {
  1146. $(this).find(".Zi--Comments").find("path").attr("fill", "#00FF7F");
  1147. $(this).css({ "color": "#00FF7F" });
  1148. }, function () {
  1149.  
  1150. if ($(this).hasClass("CommentItemV2-talkBtn")) //评论区查看回复按钮变色
  1151. {
  1152. $(this).find(".Zi--Comments").find("path").attr("fill", "#8590a6");
  1153. $(this).css({ "color": "#8590a6" });
  1154. }
  1155. else if ($(this).hasClass("CreationCard-ActionButton")) //内容管理查看评论按钮变色
  1156. {
  1157. $(this).css({ "color": "#8590a6" });
  1158. //图标变色在css中实现
  1159. }
  1160. else if ($(".Messages-content").length == 0) //私信框消失,私信按钮变色
  1161. {
  1162. if ($("html").attr("data-theme") == "dark") {
  1163. $(this).find(".Zi--Comments").find("path").attr("fill", "#8590a6");
  1164. $(this).css({ "color": "#8590a6" });
  1165. }
  1166. else {
  1167. $(this).find(".Zi--Comments").find("path").attr("fill", "rgb(68,68,68)");
  1168. $(this).css({ "color": "rgb(68,68,68)" });
  1169. }
  1170. }
  1171. });
  1172. */
  1173.  
  1174. //回复按钮
  1175. $(".Zi--Reply").parent().parent().hover(function() {
  1176. $(this).find(".Zi--Reply").attr("fill", "#32CD32");
  1177. $(this).attr("style", "color:#32CD32");
  1178. }, function() {
  1179. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("取消回复") == -1) {
  1180. $(this).find(".Zi--Reply").attr("fill", "currentColor");
  1181. $(this).attr("style", "color:#8590A6");
  1182. }
  1183. });
  1184.  
  1185. //回复按钮(点击后持续变色)
  1186. $(".Zi--Reply").parent().parent().each(function() {
  1187. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("取消回复") > -1) {
  1188. $(this).find(".Zi--Reply").attr("fill", "#32CD32");
  1189. $(this).attr("style", "color:#32CD32");
  1190. }
  1191. });
  1192.  
  1193. //回复按钮(点击后持续变色)
  1194. $('.css-1o56bgb').click(function() {
  1195. if ($(this).closest('.css-14nvvry').find('.css-fw5oj4').length == 0) {
  1196. $(this).attr('style', 'color:#32CD32');
  1197. } else {
  1198. $(this).removeAttr('style');
  1199. }
  1200. })
  1201.  
  1202. //点赞按钮
  1203. $(".Zi--Like:not(.css-4ky835)").parent().parent().hover(function() {
  1204. if (window.location.href.indexOf("search") > -1) {
  1205. if ($(this).hasClass("SearchTopicReview-Icon--like") || $(this).hasClass("SearchTopicReview-Icon--liked")) {
  1206. $(this).find(".Zi--Like").find("path").attr("fill", "#FF4D82");
  1207. $(this).attr("style", "color:#FF4D82;");
  1208. } else {
  1209. $(this).find(".Zi--Like").find("path").attr("fill", "black");
  1210. $(this).attr("style", "color:black;");
  1211. }
  1212. } else if (window.location.href.indexOf("people") > -1 || window.location.href.indexOf("org") > -1) {
  1213. $(this).find(".Zi--Like").attr("fill", "#FF4D82");
  1214. //$(this).attr("style", "color:#FF4D82;");
  1215. } else if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("踩") > -1 || $(this).attr("data-tooltip") == "不推荐") {
  1216. if ($("html").attr("data-theme") == "dark") {
  1217. $(this).find(".Zi--Like").attr("fill", "white");
  1218. $(this).css("color", "white");
  1219. } else {
  1220. $(this).find(".Zi--Like").attr("fill", "black");
  1221. $(this).css("color", "black");
  1222. }
  1223. } else if ($(this).hasClass('css-8mg22s')) {
  1224. $(this).find(".Zi--Like").attr("fill", "#FF4D82");
  1225. $(this).attr("style", "color:#FF4D82;");
  1226. } else {
  1227. $(this).find(".Zi--Like").attr("fill", "#FF4D82");
  1228. $(this).attr("style", "color:#FF4D82;margin:0px;");
  1229. }
  1230. }, function() {
  1231. if ($(this).find("#topic-recommend").length > 0 || $(this).find("#topic-against").length > 0 || $(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("取消踩") == -1)
  1232. $(this).find(".Zi--Like").attr("fill", "currentColor");
  1233.  
  1234. if (window.location.href.indexOf("search") > -1) {
  1235. $(this).find(".Zi--Like").find("path").attr("fill", "#8590A6");
  1236. $(this).attr("style", "color:#8590A6;");
  1237. } else if (window.location.href.indexOf("people") > -1 || window.location.href.indexOf("org") > -1) {
  1238. $(this).attr("style", "color:#646464;");
  1239. } else if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("取消踩") > -1) {
  1240. $(this).attr("style", "color:black;");
  1241. } else if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue.indexOf("踩") > -1 || $(this).attr("data-tooltip") == "不推荐") {
  1242. $(this).attr("style", "color:#8590A6;");
  1243. } else if ($(this).hasClass('css-8mg22s')) {
  1244. $(this).find(".Zi--Like").attr("fill", "#8590A6");
  1245. $(this).attr("style", "color:#8590A6;");
  1246. } else
  1247. $(this).attr("style", "color:#8590A6; margin:0px;");
  1248. });
  1249.  
  1250. //踩按钮(点击后持续变色)
  1251. $(".Zi--Like").parent().parent().each(function() {
  1252. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue == "取消踩")
  1253. $(this).find(".Zi--Like").attr("fill", "black");
  1254.  
  1255. if (window.location.href.indexOf("search") > -1) {
  1256. if ($(this).hasClass("SearchTopicReview-Icon--liked")) {
  1257. $(this).find(".Zi--Like").find("path").attr("fill", "#FF4D82");
  1258. $(this).attr("style", "color:#FF4D82;");
  1259. }
  1260. } else if (window.location.href.indexOf("people") > -1 || window.location.href.indexOf("org") > -1) {
  1261. if ($(this).hasClass("css-zkfaav") || $(this).hasClass("is-liked")) {
  1262. $(this).find(".Zi--Like").attr("fill", "#FF4D82");
  1263. //$(this).attr("style", "color:#FF4D82;");
  1264. }
  1265. }
  1266. });
  1267.  
  1268. //评论区点赞按钮
  1269. $(".ZDI--ThumbFill24").parent().parent().hover(function() {
  1270. $(this).find(".Zi--Like").attr("fill", "#FF4D82");
  1271. $(this).attr("style", "color:#FF4D82;");
  1272. }, function() {
  1273. if ($(this).hasClass("css-h1yvwn")) {
  1274. $(this).find(".Zi--Like").attr("fill", "#8590A6");
  1275. $(this).attr("style", "color:#8590A6;");
  1276. }
  1277. });
  1278.  
  1279. $(".GoodQuestionAction-highLightBtn").attr("style", "color:#FF4D82;margin:0px;"); //题目点赞后保持变色
  1280. $(".is-liked").attr("style", "color:#FF4D82;margin:0px;"); //评论点赞后保持变色
  1281.  
  1282. //分享按钮
  1283. $(".Zi--Share").parent().parent().parent().hover(function() {
  1284. $(this).find(".Zi--Share").attr("fill", "blue");
  1285.  
  1286. if ($(this).closest(".QuestionHeaderActions").length > 0)
  1287. $(this).find("button").attr("style", "color:blue;margin: 0px 0px 0px 9px;");
  1288. else if ($(this).find(".Post-SideActions-icon").length > 0)
  1289. $(this).attr("style", "color:blue;");
  1290. else
  1291. $(this).find("button").attr("style", "color:blue;");
  1292.  
  1293. }, function() {
  1294. $(this).find(".Zi--Share").attr("fill", "currentColor");
  1295.  
  1296. if ($(this).closest(".QuestionHeaderActions").length > 0)
  1297. $(this).find("button").attr("style", "color:#8590A6;margin: 0px 0px 0px 9px;");
  1298. else if ($(this).find(".Post-SideActions-icon").length > 0)
  1299. $(this).attr("style", "color:#8590A6;");
  1300. else
  1301. $(this).find("button").attr("style", "color:#8590A6;");
  1302. });
  1303.  
  1304. //收藏按钮
  1305. $(".Zi--Star").parent().parent().hover(function() {
  1306. if (!$(this).hasClass("ExploreHomePage-ContentSection") && !$(this).hasClass("css-18biwo") && !$(this).hasClass("css-g9eqf4-StrutAlign")) {
  1307. $(this).find(".Zi--Star").attr("fill", "orange");
  1308. $(this).attr("style", "color:orange");
  1309. }
  1310. }, function() {
  1311. if (!$(this).hasClass("ExploreHomePage-ContentSection") && !$(this).hasClass("css-18biwo") && !$(this).hasClass("css-g9eqf4-StrutAlign")) {
  1312. $(this).find(".Zi--Star").attr("fill", "currentColor");
  1313. $(this).attr("style", "color:#8590A6");
  1314. }
  1315. });
  1316.  
  1317. //喜欢按钮
  1318. $(".Zi--Heart").parent().parent().hover(function() {
  1319. if (!$(this).hasClass('AppHeaderProfileMenu') && !$(this).hasClass('MobileAppHeader-actions')) {
  1320. $(this).find(".Zi--Heart").attr("fill", "red");
  1321. $(this).attr("style", "color:red");
  1322. }
  1323. }, function() {
  1324. if ($(this).prop('lastChild').nodeValue == "喜欢")
  1325. $(this).find(".Zi--Heart").attr("fill", "currentColor");
  1326.  
  1327. $(this).attr("style", "color:#8590A6");
  1328. });
  1329.  
  1330. //喜欢按钮(点击后持续变色)
  1331. $(".Zi--Heart").parent().parent().each(function() {
  1332. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue == "取消喜欢")
  1333. $(this).prop('lastChild').nodeValue = "已喜欢";
  1334. if ($(this).prop('lastChild').nodeValue != null && $(this).prop('lastChild').nodeValue == "已喜欢") {
  1335. $(this).find(".Zi--Heart").attr("fill", "red");
  1336. $(this).attr("style", "color:red");
  1337. }
  1338. });
  1339.  
  1340. //喜欢按钮
  1341. $(".Like-likeWrapper-ejWmr").hover(function() {
  1342. $(this).find('svg path').attr("style", 'fill:red');
  1343. $(this).find('span').attr("style", 'color:red');
  1344. $(this).addClass('hover');
  1345. }, function() {
  1346. if ($(this).find('span').text().indexOf('已喜欢') > -1 || $(this).find('span').text().indexOf('取消喜欢') > -1) {
  1347. $(this).find('svg path').attr("style", 'fill:red');
  1348. $(this).find('span').attr("style", 'color:red');
  1349. } else {
  1350. $(this).find('svg path').attr("style", 'fill:#8590A6');
  1351. $(this).find('span').attr("style", 'color:#8590A6');
  1352. }
  1353.  
  1354. $(this).removeClass('hover');
  1355. });
  1356.  
  1357. //喜欢按钮(点击后持续变色)
  1358. $(".Like-likeWrapper-ejWmr").each(function() {
  1359. if ($(this).find('span').text().indexOf('取消喜欢') > -1)
  1360. $(this).find('span').text("已喜欢");
  1361. if ($(this).find('span').text().indexOf('已喜欢') > -1) {
  1362. $(this).find('svg path').attr("style", 'fill:red');
  1363. $(this).find('span').attr("style", 'color:red');
  1364. } else {
  1365. if (!$(this).hasClass('hover')) {
  1366. $(this).find('svg path').attr("style", 'fill:#8590A6');
  1367. $(this).find('span').attr("style", 'color:#8590A6');
  1368. }
  1369. }
  1370. });
  1371.  
  1372. //举报按钮
  1373. $(".Zi--Report").parent().parent().hover(function() {
  1374. $(this).find(".Zi--Report").attr("fill", "brown");
  1375.  
  1376. if ($(this).closest(".QuestionHeaderActions").length > 0)
  1377. $(this).attr("style", "color:brown;margin: 0px 0px 0px 9px;");
  1378. else
  1379. $(this).attr("style", "color:brown");
  1380.  
  1381. }, function() {
  1382. $(this).find(".Zi--Report").attr("fill", "currentColor");
  1383.  
  1384. if ($(this).closest(".QuestionHeaderActions").length > 0)
  1385. $(this).attr("style", "color:#8590A6;margin: 0px 0px 0px 9px;");
  1386. else
  1387. $(this).attr("style", "color:#8590A6");
  1388. });
  1389.  
  1390. //评论区举报按钮
  1391. $(".ZDI--FlagFill24").parent().parent().hover(function() {
  1392. $(this).attr("style", "color:brown");
  1393. }, function() {
  1394. $(this).attr("style", "color:#8590A6");
  1395. });
  1396.  
  1397. /*
  1398. $(".Zi--Bell").parent().parent().hover(function () {
  1399. $(this).find(".Zi--Bell path").attr("fill", "#FACB62");
  1400. }, function () {
  1401. if ($(".PushNotifications-content").length == 0) //没有通知框,恢复原色
  1402. {
  1403. if ($("html").attr("data-theme") == "light") //日间模式
  1404. {
  1405. $(this).find(".Zi--Bell path").attr("fill", "rgb(68,68,68)");
  1406. }
  1407. else //夜间模式
  1408. {
  1409. $(this).find(".Zi--Bell path").attr("fill", "#8590A6");
  1410. }
  1411. }
  1412. else //有通知框,持续变色
  1413. {
  1414. $(this).find(".Zi--Bell path").attr("fill", "#FACB62");
  1415. }
  1416. });
  1417.  
  1418. $(".Zi--Bell").parent().parent().on("click", function () {
  1419. if ($(".PushNotifications-content").length == 0) {
  1420. $(this).find(".Zi--Bell path").attr("fill", "#FACB62");
  1421. }
  1422. else {
  1423. $(this).find(".Zi--Bell path").attr("fill", "currentColor");
  1424. }
  1425. });
  1426. */
  1427.  
  1428. $(".Zi--Heart.PushNotifications-tabIcon").parent().parent().hover(function() {
  1429. $(this).find(".Zi--Heart").attr("fill", "#0084FF");
  1430. }, function() {
  1431. $(this).find(".Zi--Heart").attr("fill", "currentColor");
  1432. });
  1433.  
  1434. $(".Zi--Users").parent().parent().hover(function() {
  1435. $(this).find(".Zi--Users").attr("fill", "#0084FF");
  1436. }, function() {
  1437. $(this).find(".Zi--Users").attr("fill", "currentColor");
  1438. });
  1439.  
  1440. /*
  1441. //匿名按钮
  1442. $(".Zi--Anonymous").parent().parent().hover(function() {
  1443. if ($("html").attr("data-theme") == "dark") {
  1444. $(this).find(".Zi--Anonymous").attr("fill", "#d3d3d3");
  1445. $(this).attr("style", "color:#d3d3d3;margin: 0px 0px 0px 9px;");
  1446. } else {
  1447. $(this).find(".Zi--Anonymous").attr("fill", "black");
  1448. $(this).attr("style", "color:black;margin: 0px 0px 0px 9px;");
  1449. }
  1450. }, function() {
  1451. $(this).find(".Zi--Anonymous").attr("fill", "currentColor");
  1452. $(this).attr("style", "color:#8590A6;margin: 0px 0px 0px 9px;");
  1453. });
  1454. */
  1455.  
  1456. //查看问题日志按钮
  1457. $(".Zi--Log").parent().parent().hover(function() {
  1458. $(this).find(".Zi--Log").attr("fill", "purple");
  1459. $(this).parent().attr("style", "color:purple;margin: 0px 0px 0px 9px;");
  1460. }, function() {
  1461. $(this).find(".Zi--Log").attr("fill", "currentColor");
  1462. $(this).parent().attr("style", "color:#8590A6;margin: 0px 0px 0px 9px;");
  1463. });
  1464.  
  1465. //快捷键按钮
  1466. $(".Zi--ShortCut").parent().parent().hover(function() {
  1467. $(this).find(".Zi--ShortCut").attr("fill", "#44B8A1");
  1468. $(this).attr("style", "color:#44B8A1;margin: 0px 0px 0px 9px;");
  1469. }, function() {
  1470. $(this).find(".Zi--ShortCut").attr("fill", "currentColor");
  1471. $(this).attr("style", "color:#8590A6;margin: 0px 0px 0px 9px;");
  1472. });
  1473.  
  1474. //邀请回答按钮
  1475. $(".Zi--Invite").parent().parent().hover(function() {
  1476. if ($("html").attr("data-theme") == "light") {
  1477. $(this).find(".Zi--Invite").attr("fill", "black");
  1478. $(this).attr("style", "color:black;margin: 0px 8px 0px 0px;");
  1479. } else {
  1480. $(this).find(".Zi--Invite").attr("fill", "white");
  1481. $(this).attr("style", "color:white;margin: 0px 8px 0px 0px;");
  1482. }
  1483. }, function() {
  1484. $(this).find(".Zi--Invite").attr("fill", "currentColor");
  1485. $(this).attr("style", "color:#8590A6;margin: 0px 8px 0px 0px;");
  1486. });
  1487.  
  1488. //删除草稿按钮
  1489. $(".Zi--Trash").parent().parent().hover(function() {
  1490. $(this).find(".Zi--Trash").attr("fill", "#C70000");
  1491. $(this).attr("style", "color:#C70000");
  1492. }, function() {
  1493. $(this).find(".Zi--Trash").attr("fill", "currentColor");
  1494. $(this).attr("style", "color:#8590A6");
  1495. });
  1496.  
  1497. $(".SelfCollectionItem-actions .Zi--EditSurround").parent().parent().hover(function() {
  1498. $(this).find(".Zi--EditSurround").attr("fill", "orange");
  1499. $(this).attr("style", "color:orange");
  1500. }, function() {
  1501. $(this).find(".Zi--EditSurround").attr("fill", "currentColor");
  1502. $(this).attr("style", "color:#8590A6");
  1503. });
  1504.  
  1505. $(".CollectionDetailPageHeader-actions .Zi--EditSurround").parent().parent().hover(function() {
  1506. $(this).find(".Zi--EditSurround").attr("fill", "orange");
  1507. $(this).attr("style", "color:orange");
  1508. }, function() {
  1509. $(this).find(".Zi--EditSurround").attr("fill", "currentColor");
  1510. $(this).attr("style", "color:#8590A6");
  1511. });
  1512.  
  1513. $(".Zi--Emotion").parent().parent().hover(function() {
  1514. $(this).find(".Zi--Emotion").find("path").attr("fill", "#0084FF");
  1515. }, function() {
  1516. $(this).find(".Zi--Emotion").find("path").removeAttr("fill");
  1517. });
  1518.  
  1519. $(".Zi--AddImage").parent().parent().hover(function() {
  1520. $(this).find(".Zi--AddImage").find("path").attr("fill", "#0084FF");
  1521. }, function() {
  1522. $(this).find(".Zi--AddImage").find("path").removeAttr("fill");
  1523. });
  1524.  
  1525. $(".Zi--InsertImage").find("path").attr("fill", "blue");
  1526. $(".Zi--Image").find("path").attr("fill", "blue");
  1527.  
  1528. $(".Zi--InsertVideo, .Zi--FormatClear").find("path").attr("fill", "red");
  1529.  
  1530. $(".Zi--InsertFormula").find("path").attr("fill", "rgb(115,216,244)");
  1531.  
  1532. $(".Zi--InsertLink").find("path").attr("fill", "#0084FF");
  1533.  
  1534. $(".Zi--Folder").find("path").attr("fill", "#FF8C00");
  1535.  
  1536. $(".Zi--EditCircle").find("path").attr("fill", "#82480E");
  1537.  
  1538. $(".Zi--Juror").find("path").attr("fill", "brown");
  1539.  
  1540. $(".Zi--Marked").find("path").attr("fill", "blue");
  1541.  
  1542. $(".ZDI--AgreeFill24").find("path").attr("fill", "#FB7299");
  1543.  
  1544. if ($("html").attr("data-theme") == "light") {
  1545. $(".MathToolbar-button svg").attr("fill", "black");
  1546. $(".MathToolbar-paletteIcon").css("color", "black");
  1547. } else {
  1548. $(".MathToolbar-button svg").attr("fill", "#d3d3d3");
  1549. $(".MathToolbar-paletteIcon").css("color", "#d3d3d3");
  1550. }
  1551.  
  1552. $(".AnswerAdd-topicBiosButton").attr("style", "color:#0084FF");
  1553. $(".AnswerAdd-topicBiosButton .Zi--Edit").attr("fill", "#0084FF");
  1554.  
  1555. //内容管理-编辑按钮
  1556. $(".CreationCard-ActionButton .Zi--Edit").closest('.CreationCard-ActionButton').hover(function() {
  1557. $(this).find(".Zi--Trash").attr("fill", "#0084FF");
  1558. $(this).attr("style", "color:#0084FF");
  1559. }, function() {
  1560. $(this).find(".Zi--Trash").attr("fill", "currentColor");
  1561. $(this).attr("style", "color:#8590A6");
  1562. });
  1563.  
  1564. //内容管理-数据按钮
  1565. $(".css-5i9hgn .Zi--Statistics").closest('a').hover(function() {
  1566. $(this).find(".Zi--Statistics").attr("fill", "#8763f2");
  1567. $(this).attr("style", "color:#8763f2");
  1568. }, function() {
  1569. $(this).find(".Zi--Statistics").attr("fill", "currentColor");
  1570. $(this).attr("style", "color:#8590A6");
  1571. });
  1572.  
  1573. //内容管理-更多按钮的具体菜单项
  1574. $('.Button.Menu-item.css-cn5m5x').each(function() {
  1575. if ($(this).find('.Zi--Check').length > 0) {
  1576. if ($('html').attr('data-theme') == 'light') {
  1577. $(this).attr("style", "color:black; background:#f6f6f6");
  1578. } else {
  1579. $(this).attr("style", "color:#d3d3d3; background:#1b1b1b");
  1580. }
  1581. }
  1582. })
  1583.  
  1584. $(".Zi--Document").parent().parent().hover(function() {
  1585. $(this).find(".Zi--Document").find("path").attr("fill", "#FF8C00");
  1586. $(this).attr("style", "color:#FF8C00");
  1587. }, function() {
  1588. $(this).find(".Zi--Document").find("path").removeAttr("fill");
  1589. $(this).attr("style", "color:#8590A6");
  1590. });
  1591.  
  1592.  
  1593. $(".Zi--Time").parent().hover(function() {
  1594. if ($("html").attr("data-theme") == "light") {
  1595. $(this).find(".Zi--Time").find("path").attr("fill", "black");
  1596. $(this).attr("style", "color:black");
  1597. } else {
  1598. $(this).find(".Zi--Time").find("path").attr("fill", "white");
  1599. $(this).attr("style", "color:white");
  1600. }
  1601. }, function() {
  1602. $(this).find(".Zi--Time").find("path").removeAttr("fill");
  1603. $(this).attr("style", "color:#8590A6");
  1604. });
  1605.  
  1606. $(".Zi--Deliver").parent().parent().hover(function() {
  1607. if ($(this).hasClass('css-1uan5v7')) //专栏列表上方的"推荐文章"按钮
  1608. {
  1609. $('.css-119896g').hover(function() {
  1610. $(this).find(".Zi--Deliver").find("path").attr("fill", "#02E6B8");
  1611. $(this).attr("style", "color:#02E6B8");
  1612. }, function() {
  1613. $(this).find(".Zi--Deliver").find("path").removeAttr("fill");
  1614. $(this).attr("style", "color:#8590A6");
  1615. })
  1616. } else //专栏文章下方的"申请转载"按钮
  1617. {
  1618. $(this).find(".Zi--Deliver").find("path").attr("fill", "#02E6B8");
  1619. $(this).attr("style", "color:#02E6B8");
  1620. }
  1621. }, function() {
  1622. if (!$(this).hasClass('css-1uan5v7')) //专栏文章下方的"申请转载"按钮
  1623. {
  1624. $(this).find(".Zi--Deliver").find("path").removeAttr("fill");
  1625. $(this).attr("style", "color:#8590A6");
  1626. }
  1627. });
  1628.  
  1629. $(".Zi--FullscreenEnter").parent().parent().hover(function() {
  1630. $(this).find(".Zi--FullscreenEnter").find("path").attr("fill", "#0084FF");
  1631. $(this).attr("style", "color:#0084FF");
  1632. }, function() {
  1633. $(this).find(".Zi--FullscreenEnter").find("path").removeAttr("fill");
  1634. $(this).attr("style", "color:#8590A6");
  1635. });
  1636.  
  1637. $(".Zi--FullscreenExit").parent().parent().hover(function() {
  1638. $(this).find(".Zi--FullscreenExit").find("path").attr("fill", "#0084FF");
  1639. $(this).attr("style", "color:#0084FF");
  1640. }, function() {
  1641. $(this).find(".Zi--FullscreenExit").find("path").removeAttr("fill");
  1642. $(this).attr("style", "color:#8590A6");
  1643. });
  1644.  
  1645. $(".AnswerForm-exitFullscreenButton").hover(function() {
  1646. $(this).find(".AnswerForm-exitFullscreenButton").find("path").attr("fill", "#0084FF");
  1647. $(this).attr("style", "color:#0084FF");
  1648. }, function() {
  1649. $(this).find(".AnswerForm-exitFullscreenButton").find("path").removeAttr("fill");
  1650. $(this).attr("style", "color:#8590A6");
  1651. });
  1652.  
  1653. $(".Notifications-footer .Zi--Settings").parent().parent().hover(function() {
  1654. $(this).find(".Zi--Settings").attr("fill", "purple");
  1655. $(this).attr("style", "color:purple");
  1656. }, function() {
  1657. $(this).find(".Zi--Settings").attr("fill", "currentColor");
  1658. $(this).attr("style", "color:#8590A6");
  1659. });
  1660.  
  1661. $(".Post-ActionMenuButton .Zi--Settings").parent().parent().hover(function() {
  1662. $(this).find(".Zi--Settings").attr("fill", "purple");
  1663. $(this).attr("style", "color:purple");
  1664. }, function() {
  1665. $(this).find(".Zi--Settings").attr("fill", "currentColor");
  1666. $(this).attr("style", "color:#8590A6");
  1667. });
  1668.  
  1669. $(".TopicActions .Zi--Settings").parent().parent().hover(function() {
  1670. $(this).find(".Zi--Settings").attr("fill", "purple");
  1671. $(this).attr("style", "color:purple");
  1672. }, function() {
  1673. $(this).find(".Zi--Settings").attr("fill", "currentColor");
  1674. $(this).attr("style", "color:#8590A6");
  1675. });
  1676.  
  1677. $(".ContentItem-action .Zi--Settings, .AnswerForm-footerRight .Zi--Settings").parent().parent().hover(function() {
  1678. $(this).find(".Zi--Settings").attr("fill", "purple");
  1679. $(this).attr("style", "color:purple");
  1680. }, function() {
  1681. $(this).find(".Zi--Settings").attr("fill", "currentColor");
  1682. $(this).attr("style", "color:#8590A6");
  1683. });
  1684. /*
  1685. //无障碍按钮
  1686. $('.AppHeaderProfileMenu .ZDI--HeartFill16').parent().hover(function() {
  1687. $(this).find(".ZDI--HeartFill16").attr("fill", "#ff7d7d");
  1688. $(this).attr("style", "color:#ff7d7d");
  1689. }, function() {
  1690. if ($("html").attr("data-theme") == "light") {
  1691. $(this).find(".ZDI--HeartFill16").attr("fill", "black");
  1692. $(this).attr("style", "color:black");
  1693. } else {
  1694. $(this).find(".ZDI--HeartFill16").attr("fill", "#d3d3d3");
  1695. $(this).attr("style", "color:#d3d3d3");
  1696. }
  1697. });
  1698.  
  1699. //设置按钮
  1700. $(".AppHeaderProfileMenu .ZDI--GearFill24").parent().hover(function() {
  1701. $(this).find(".ZDI--GearFill24").attr("fill", "purple");
  1702. $(this).attr("style", "color:purple");
  1703. }, function() {
  1704. if ($("html").attr("data-theme") == "light") {
  1705. $(this).find(".ZDI--GearFill24").attr("fill", "black");
  1706. $(this).attr("style", "color:black");
  1707. } else {
  1708. $(this).find(".ZDI--GearFill24").attr("fill", "#d3d3d3");
  1709. $(this).attr("style", "color:#d3d3d3");
  1710. }
  1711. });
  1712.  
  1713. //退出按钮
  1714. $(".AppHeaderProfileMenu .ZDI--PowerFill24").parent().hover(function() {
  1715. $(this).find(".ZDI--PowerFill24").attr("fill", "red");
  1716. $(this).attr("style", "color:red");
  1717. }, function() {
  1718. if ($("html").attr("data-theme") == "light") {
  1719. $(this).find(".ZDI--PowerFill24").attr("fill", "black");
  1720. $(this).attr("style", "color:black");
  1721. } else {
  1722. $(this).find(".ZDI--PowerFill24").attr("fill", "#d3d3d3");
  1723. $(this).attr("style", "color:#d3d3d3");
  1724. }
  1725. });
  1726.  
  1727. //我的主页按钮
  1728. $(".AppHeaderProfileMenu .ZDI--UserFill24").parent().hover(function() {
  1729. $(this).find(".ZDI--UserFill24").attr("fill", "#08a500");
  1730. $(this).attr("style", "color:#08a500");
  1731. }, function() {
  1732. if ($("html").attr("data-theme") == "light") {
  1733. $(this).find(".ZDI--UserFill24").attr("fill", "black");
  1734. $(this).attr("style", "color:black");
  1735. } else {
  1736. $(this).find(".ZDI--UserFill24").attr("fill", "#d3d3d3");
  1737. $(this).attr("style", "color:#d3d3d3");
  1738. }
  1739. });
  1740.  
  1741. //关怀版按钮
  1742. $(".AppHeaderProfileMenu .ZDI--ElderFill16").parent().hover(function() {
  1743. $(this).find(".ZDI--ElderFill16").attr("fill", "#0084FF");
  1744. $(this).attr("style", "color:#0084FF");
  1745. }, function() {
  1746. if ($("html").attr("data-theme") == "light") {
  1747. $(this).find(".ZDI--ElderFill16").attr("fill", "black");
  1748. $(this).attr("style", "color:black");
  1749. } else {
  1750. $(this).find(".ZDI--ElderFill16").attr("fill", "#d3d3d3");
  1751. $(this).attr("style", "color:#d3d3d3");
  1752. }
  1753. });
  1754. */
  1755. $('.ZDI--UserFill24').closest('.AppHeaderProfileMenu-item').addClass('UserFill24');
  1756. $('.ZDI--HeartFill16').closest('.AppHeaderProfileMenu-item').addClass('HeartFill16');
  1757. $('.ZDI--ElderFill16').closest('.AppHeaderProfileMenu-item').addClass('ElderFill16');
  1758. $('.ZDI--GearFill24').closest('.AppHeaderProfileMenu-item').addClass('GearFill24');
  1759. $('.ZDI--PowerFill24').closest('.AppHeaderProfileMenu-item').addClass('PowerFill24');
  1760.  
  1761. $(".CommentMoreReplyButton .Button").hover(function() {
  1762. $(this).attr("style", "color:#00FF7F");
  1763. }, function() {
  1764. $(this).attr("style", "color:#8590A6");
  1765. });
  1766.  
  1767. $(".CommentCollapseButton").hover(function() {
  1768. $(this).find("Zi--ArrowUp").attr("fill", "#0084FF");
  1769. $(this).css({
  1770. "color": "#0084FF"
  1771. });
  1772.  
  1773. }, function() {
  1774. $(this).find("Zi--ArrowUp").attr("fill", "currentColor");
  1775. $(this).css({
  1776. "color": "#8590A6"
  1777. });
  1778.  
  1779. });
  1780.  
  1781. //点击评论列表右下角出现的"收起评论"时,将评论按钮恢复灰色
  1782. $(".CommentCollapseButton").on("click", function() {
  1783. let $t = $(this).closest(".Comments-container").prev().find(".Zi--Comment").parent().parent();
  1784. $t.find(".Zi--Comment").attr("fill", "currentColor");
  1785. $t.attr("style", "color:#8590A6");
  1786. });
  1787.  
  1788. $(".ContentItem-time:not(.css-18wtfyc)").each(function() {
  1789. $(this).find("a").attr("style", "border-bottom: 1px solid rgba(133,144,166,.72)");
  1790. });
  1791.  
  1792. $(".Button.ContentItem-action.ContentItem-rightButton.Button--plain").attr("style", "color:#175199");
  1793. $(".QuestionRichText-more").attr("style", "color:#0084FF");
  1794. $(".QuestionHeader-actions .Button").attr("style", "color:#0084FF");
  1795.  
  1796. $(".Zi--Switch").attr("fill", "#0084FF");
  1797. $(".Zi--Switch").parent().parent().css("color", "#0084FF");
  1798.  
  1799. $(".Zi--Select").attr("fill", "#0084FF");
  1800. $(".Zi--Select").parent().css("color", "#0084FF");
  1801.  
  1802. $(".Zi--Dots").hover(function() {
  1803. $(this).find("path").attr("fill", "#0084FF");
  1804. }, function() {
  1805. $(this).find("path").attr("fill", "#8590A6");
  1806. });
  1807.  
  1808. $(".Zi--FormatCode").find("path").attr("fill", "#0084FF");
  1809.  
  1810. $(".List-headerText").css("top", "-5px");
  1811.  
  1812. $(".Post-ActionMenu .Button.Menu-item.Button--plain .Zi--Check").each(function() {
  1813. $(this).parent().parent().parent().addClass('is-active');
  1814. });
  1815.  
  1816.  
  1817. $(".AnswerItem-selectMenuItem .Zi--Check, .CommentPermission-item .Zi--Check").each(function() {
  1818. $(this).parent().parent().parent().addClass('is-active');
  1819. });
  1820.  
  1821. /*
  1822. $(".AnswerItem-selectMenuItem").hover(function () {
  1823. if ($("html").attr("data-theme") == "dark")
  1824. $(this).attr("style", "color:#d3d3d3");
  1825. else
  1826. $(this).attr("style", "color:black");
  1827. }, function () {
  1828. if ($(this).find(".Zi--Check").length == 0)
  1829. $(this).attr("style", "color:#8590A6");
  1830. });
  1831.  
  1832. $(".CommentPermission-item").hover(function () {
  1833. if ($("html").attr("data-theme") == "dark")
  1834. $(this).attr("style", "color:#d3d3d3");
  1835. else
  1836. $(this).attr("style", "color:black");
  1837. }, function () {
  1838. if ($(this).find(".Zi--Check").length == 0)
  1839. $(this).attr("style", "color:#8590A6");
  1840. });
  1841. */
  1842.  
  1843. /*
  1844. $(".AnswerAdd-toggleAnonymous").hover(function() {
  1845. $(this).attr("style", "color:#0084FF");
  1846. }, function() {
  1847. $(this).attr("style", "color:#8590A6");
  1848. });
  1849. */
  1850.  
  1851. $(".DisclaimerEntry").hover(function() {
  1852. if ($("html").attr("data-theme") == "dark") {
  1853. $(this).find("path").attr("fill", "#d3d3d3");
  1854. $(this).find("button").attr("style", "color:#d3d3d3");
  1855. } else {
  1856. $(this).find("path").attr("fill", "black");
  1857. $(this).find("button").attr("style", "color:black");
  1858. }
  1859. }, function() {
  1860. $(this).find("path").attr("fill", "currentColor");
  1861. $(this).find("button").attr("style", "color:#8590A6");
  1862. });
  1863.  
  1864. $(".ImageView.CommentRichText-ImageView.is-active").css({
  1865. "z-index": "1000"
  1866. });
  1867.  
  1868. if ($(".css-70qvj9 .Zi--CheckboxOn").length > 0)
  1869. $(".css-70qvj9 .css-1d83bu8").attr("style", "color:#0084FF");
  1870. if ($(".css-70qvj9 .Zi--CheckboxOff").length > 0)
  1871. $(".css-70qvj9 .css-1d83bu8").attr("style", "color:#8590A6");
  1872.  
  1873. if ($.cookie('nightmode') == undefined)
  1874. $.cookie('nightmode', 0, {
  1875. expires: 365,
  1876. path: "/",
  1877. domain: "zhihu.com"
  1878. });
  1879.  
  1880. var $nightmode = $('<div><button id=\"nightmode\" class="nightmode" style=\"margin-left:15px; margin-top:6px; user-select:none; -webkit-user-select:none; width:100px\">' +
  1881. '<img style=\"vertical-align:middle; width:18px; height:18px; user-select:none; -webkit-user-select:none; \" src=\"' + dark + '\">' +
  1882. '<span style=\"vertical-align:middle; user-select:none; -webkit-user-select:none; \" > 夜间模式</span></button></div>');
  1883.  
  1884.  
  1885. $nightmode.click(function() {
  1886. if ($("html").attr("data-theme") == "light") {
  1887. $("html").attr("data-theme", "dark");
  1888. $(this).find("img").attr("src", light).attr("style", "vertical-align:middle; width:20px; height:20px;");
  1889. $(this).find("span").text(" 日间模式");
  1890. $.cookie('nightmode', 1, {
  1891. expires: 365,
  1892. path: "/",
  1893. domain: "zhihu.com"
  1894. });
  1895. } else {
  1896. $("html").attr("data-theme", "light");
  1897. $(this).find("img").attr("src", dark).attr("style", "vertical-align:middle; width:18px; height:18px;");
  1898. $(this).find("span").text(" 夜间模式");
  1899. $.cookie('nightmode', 0, {
  1900. expires: 365,
  1901. path: "/",
  1902. domain: "zhihu.com"
  1903. });
  1904. }
  1905. });
  1906.  
  1907. if ($("#nightmode").length == 0) {
  1908. $(".SearchBar").after($nightmode);
  1909.  
  1910. var $nightmode_question_log = $('<button id=\"nightmode\" class="nightmode" style=\"background:transparent; user-select: none; border:none; margin-top:11px; color:#eee; cursor:pointer; width:80px\">' +
  1911. '<img style=\"vertical-align:middle; width:18px; height:18px; user-select:none; -webkit-user-select:none; \" src=\"' + dark + '\">' +
  1912. '<span style=\"vertical-align:middle; user-select:none; -webkit-user-select:none; \" > 夜间模式</span></button>');
  1913.  
  1914. $nightmode_question_log.hover(function() {
  1915. $(this).find('span').css('color', 'white');
  1916. }, function() {
  1917. $(this).find('span').css('color', '#eee');
  1918. });
  1919.  
  1920. $("#zu-top-add-question").before($nightmode_question_log); //问题日志
  1921.  
  1922. $nightmode_question_log.click(function() {
  1923. if ($("html").attr("data-theme") == "light") {
  1924. $("html").attr("data-theme", "dark");
  1925. $(this).find("img").attr("src", light).attr("style", "vertical-align:middle; width:20px; height:20px;");
  1926. $(this).find("span").text(" 日间模式");
  1927. $.cookie('nightmode', 1, {
  1928. expires: 365,
  1929. path: "/",
  1930. domain: "zhihu.com"
  1931. });
  1932. } else {
  1933. $("html").attr("data-theme", "light");
  1934. $(this).find("img").attr("src", dark).attr("style", "vertical-align:middle; width:18px; height:18px;");
  1935. $(this).find("span").text(" 夜间模式");
  1936. $.cookie('nightmode', 0, {
  1937. expires: 365,
  1938. path: "/",
  1939. domain: "zhihu.com"
  1940. });
  1941. }
  1942. });
  1943.  
  1944.  
  1945. var $nightmode_vip = $('<button id=\"nightmode\" class="nightmode" style=\"background:transparent; user-select: none; border:none; margin-left:15px; margin-top:15px; color:#eee; cursor:pointer; width:100px\">' +
  1946. '<img style=\"vertical-align:middle; width:18px; height:18px; user-select:none; -webkit-user-select:none; \" src=\"' + dark + '\">' +
  1947. '<span style=\"vertical-align:middle; user-select:none; -webkit-user-select:none; font-size:15px;\" > 夜间模式</span></button>');
  1948.  
  1949. $nightmode_vip.hover(function() {
  1950. $(this).find('span').css('color', 'white');
  1951. }, function() {
  1952. $(this).find('span').css('color', '#eee');
  1953. });
  1954.  
  1955. $(".TopNavBar-root-f2drS .TopNavBar-searchBar-uo31N").after($nightmode_vip);
  1956.  
  1957. $nightmode_vip.click(function() {
  1958. if ($("html").attr("data-theme") == "light") {
  1959. $("html").attr("data-theme", "dark");
  1960. $(this).find("img").attr("src", light).attr("style", "vertical-align:middle; width:20px; height:20px;");
  1961. $(this).find("span").text(" 日间模式");
  1962. $.cookie('nightmode', 1, {
  1963. expires: 365,
  1964. path: "/",
  1965. domain: "zhihu.com"
  1966. });
  1967. } else {
  1968. $("html").attr("data-theme", "light");
  1969. $(this).find("img").attr("src", dark).attr("style", "vertical-align:middle; width:18px; height:18px;");
  1970. $(this).find("span").text(" 夜间模式");
  1971. $.cookie('nightmode', 0, {
  1972. expires: 365,
  1973. path: "/",
  1974. domain: "zhihu.com"
  1975. });
  1976. }
  1977. });
  1978.  
  1979. var $nightmode_zhuanlan = $nightmode.clone(true);
  1980. $nightmode_zhuanlan.find('button').css({
  1981. "margin": "0px 50px 0px 0px"
  1982. });
  1983.  
  1984. $(".ColumnPageHeader-WriteButton").before($nightmode_zhuanlan); //专栏文章
  1985. $(".PublishPanel-wrapper").before($nightmode_zhuanlan); //写文章
  1986. }
  1987.  
  1988. if ($(".TopNavBar-root-f2drS.TopNavBar-fixMode-4nQmh").length > 0 && $(".TopNavBar-root-f2drS.TopNavBar-fixMode-4nQmh #nightmode").length == 0) //VIP页固定悬浮导航栏
  1989. {
  1990. var $nightmode_vip2 = $('<div><button id=\"nightmode\" class="nightmode" style=\"margin-left:15px; margin-top:15px; user-select:none; -webkit-user-select:none; width:100px; padding: 0;cursor: pointer;background: none;border: none;outline: none;-webkit-appearance: none;-moz-appearance: none;appearance: none;\">' +
  1991. '<img style=\"vertical-align:middle; width:18px; height:18px; user-select:none; -webkit-user-select:none; \" src=\"' + dark + '\">' +
  1992. '<span style=\"vertical-align:middle; user-select:none; -webkit-user-select:none; font-size:15px;\" > 夜间模式</span></button></div>');
  1993.  
  1994. $(".TopNavBar-root-f2drS.TopNavBar-fixMode-4nQmh .TopNavBar-userInfo-bqiw4").before($nightmode_vip2);
  1995.  
  1996.  
  1997. $nightmode_vip2.click(function() {
  1998. if ($("html").attr("data-theme") == "light") {
  1999. $("html").attr("data-theme", "dark");
  2000. $(this).find("img").attr("src", light).attr("style", "vertical-align:middle; width:20px; height:20px;");
  2001. $(this).find("span").text(" 日间模式");
  2002. $.cookie('nightmode', 1, {
  2003. expires: 365,
  2004. path: "/",
  2005. domain: "zhihu.com"
  2006. });
  2007. } else {
  2008. $("html").attr("data-theme", "light");
  2009. $(this).find("img").attr("src", dark).attr("style", "vertical-align:middle; width:18px; height:18px;");
  2010. $(this).find("span").text(" 夜间模式");
  2011. $.cookie('nightmode', 0, {
  2012. expires: 365,
  2013. path: "/",
  2014. domain: "zhihu.com"
  2015. });
  2016. }
  2017. });
  2018. }
  2019.  
  2020. if(prefersColorScheme == 1)
  2021. {
  2022. const is_sys_darkmode = Number(window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches)
  2023. if(is_sys_darkmode != $.cookie('nightmode'))
  2024. $.cookie('nightmode', is_sys_darkmode, {
  2025. expires: 365,
  2026. path: "/",
  2027. domain: "zhihu.com"
  2028. })
  2029. }
  2030.  
  2031. if ($.cookie('nightmode') == 1) {
  2032. $("html").attr("data-theme", "dark");
  2033. $(".nightmode").find("img").attr("src", light).attr("style", "vertical-align:middle; width:20px; height:20px;");
  2034. $(".nightmode").each(function() {
  2035. if ($(this).find("span").text().indexOf(" 日间模式") == -1)
  2036. $(this).find("span").text(" 日间模式");
  2037. });
  2038. } else {
  2039. $("html").attr("data-theme", "light");
  2040. $(".nightmode").find("img").attr("src", dark).attr("style", "vertical-align:middle; width:18px; height:18px;");
  2041. $(".nightmode").each(function() {
  2042. if ($(this).find("span").text().indexOf(" 夜间模式") == -1)
  2043. $(this).find("span").text(" 夜间模式");
  2044. });
  2045. }
  2046.  
  2047. //自动展开楼中楼评论
  2048. $('.css-7dh30y').each(function() {
  2049. if ($(this).text().indexOf('展开') > -1) {
  2050. $(this).click();
  2051. }
  2052. })
  2053.  
  2054. $(".css-6f4i93").hide();
  2055. }
  2056.  
  2057. let index_addstyle = 0;
  2058.  
  2059. function index() {
  2060. if (index_addstyle == 0) {
  2061. GM_addStyle(`.ContentItem-action {margin-left: 16px;}
  2062. .App-main .Topstory div[style="opacity: 1;"]{display:none!important}
  2063. .App-main .Topstory div[style="height: 180px;"]{display:none!important}
  2064. `);
  2065. index_addstyle = 1;
  2066. }
  2067.  
  2068. setInterval(function() {
  2069.  
  2070. if(hideFeedSource==1)
  2071. {
  2072. if(window.location.href.indexOf('/follow')>-1)
  2073. {
  2074. $('.TopstoryItem').each(function(){
  2075. let FeedSource=$(this).find('.FeedSource-firstline').text()
  2076. if(FeedSource.indexOf('赞同')>-1 || FeedSource.indexOf('收藏')>-1)
  2077. {
  2078. $(this).hide();
  2079. }
  2080. });
  2081. }
  2082. }
  2083.  
  2084. if ($('header.AppHeader').length > 0) {
  2085. if (!$('header.AppHeader').hasClass('css-1x8hcdw'))
  2086. $('header.AppHeader').addClass('css-1x8hcdw');
  2087. let arr1 = $('header.AppHeader').attr('class').split(' ');
  2088. let arr2 = "Sticky AppHeader is-hidden is-fixed css-1x8hcdw".split(' ');
  2089. let arr = arr1.filter(x => arr2.includes(x)); //交集
  2090. $('header.AppHeader').attr('class', arr.join(' '));
  2091. }
  2092.  
  2093. if ($('.SearchBar-input').length > 0) {
  2094. if (!$('.SearchBar-input').hasClass('css-11bw1mm'))
  2095. $('.SearchBar-input').addClass('css-11bw1mm');
  2096. let arr1 = $('.SearchBar-input').attr('class').split(' ');
  2097. let arr2 = "SearchBar-input SearchBar-input--focus css-11bw1mm Input-wrapper QZcfWkCJoarhIYxlM_sG Input-wrapper--grey is-focus evPjxqnqXpIBzSRrcIDv".split(' ');
  2098. let arr = arr1.filter(x => arr2.includes(x)); //交集
  2099. $('.SearchBar-input').attr('class', arr.join(' '));
  2100. }
  2101.  
  2102. if ($('.SearchBar-searchIcon').length > 0) {
  2103. if (!$('.SearchBar-searchIcon').hasClass('css-1dlt5yv'))
  2104. $('.SearchBar-searchIcon').addClass('css-1dlt5yv');
  2105. let arr1 = $('.SearchBar-searchIcon').attr('class').split(' ');
  2106. let arr2 = "Zi Zi--Search SearchBar-searchIcon css-1dlt5yv".split(' ');
  2107. let arr = arr1.filter(x => arr2.includes(x)); //交集
  2108. $('.SearchBar-searchIcon').attr('class', arr.join(' '));
  2109. }
  2110.  
  2111. if ($('.SearchBar-askButton').length > 0) {
  2112. $('.SearchBar-askButton').removeClass('css-47os02');
  2113. }
  2114.  
  2115. if (!$('.Tabs-link.AppHeader-TabsLink').hasClass('css-1f6tgea')) {
  2116. $('.Tabs-link.AppHeader-TabsLink').removeClass('css-11e2zdz').addClass('css-1f6tgea');
  2117. }
  2118. if ($('.AppHeader-inner .css-1hlrcxk').attr('fill') != '#0066FF') {
  2119. $('.AppHeader-inner .css-1hlrcxk').attr('fill', '#0066FF');
  2120. }
  2121. if (!$('.SearchBar-input').hasClass('css-11bw1mm')) {
  2122. $('.SearchBar-input').removeClass('css-v1juu7').addClass('css-11bw1mm');
  2123. }
  2124. if (!$('.SearchBar-searchIcon').hasClass('css-1dlt5yv')) {
  2125. $('.SearchBar-searchIcon').removeClass('css-1mo564z').addClass('css-1dlt5yv');
  2126. }
  2127. if (!$('.SearchBar-askButton').hasClass('css-3q84jd')) {
  2128. $('.SearchBar-askButton').removeClass('css-146z333').removeClass('css-rf6mh0').addClass('css-3q84jd');
  2129. }
  2130. if (!$('.AppHeader-userInfo .Zi').hasClass('css-7dgah8')) {
  2131. $('.AppHeader-userInfo .Zi').removeClass('css-1iyiq0j').addClass('css-7dgah8');
  2132. }
  2133. }, 100);
  2134.  
  2135. setTimeout(function() {
  2136. $('.ContentItem.ZVideoItem').closest('.TopstoryItem').hide(); //隐藏视频信息流
  2137. $('.VideoAnswerPlayer').closest('.TopstoryItem').hide(); //隐藏视频回答
  2138. $('.ContentItem.EduSectionItem').closest('.TopstoryItem').hide(); //隐藏视频信息流
  2139. $('.ContentItem.ZVideoItem').remove();
  2140. $('.VideoAnswerPlayer').remove();
  2141. $('.ContentItem.EduSectionItem').remove();
  2142. }, 500);
  2143.  
  2144. if (hideIndexSidebar == 1) {
  2145. $('#TopstoryContent .css-cazg48').removeClass('css-cazg48').addClass('css-1tane06');
  2146. $('#TopstoryContent .css-yhjwoe').css('padding', '16px 52px');
  2147. }
  2148.  
  2149. $(".Zi--Hot").find("path").css({
  2150. "fill": "red"
  2151. });
  2152.  
  2153. $(".Zi--Share").closest(".Button").hover(function() {
  2154. $(this).find("path").css({
  2155. "fill": "blue"
  2156. });
  2157. $(this).css({
  2158. "color": "blue"
  2159. });
  2160. }, function() {
  2161. $(this).find("path").css({
  2162. "fill": "#8590A6"
  2163. });
  2164. $(this).css({
  2165. "color": "#8590A6"
  2166. });
  2167. });
  2168.  
  2169. $(".TopstoryItem").each(function() {
  2170. if (!($(this).find(".ContentItem-time:not(.css-18wtfyc)").hasClass("full")) && $(this).find(".ContentItem-time:not(.css-18wtfyc)").length > 0 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text() != null) {
  2171. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") == -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") > -1) //只有"编辑于"时增加具体发布时间data-tooltip
  2172. {
  2173. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  2174. var oldtext = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text();
  2175. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip + "\xa0\xa0,\xa0\xa0" + oldtext);
  2176. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  2177. } else if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") > -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") == -1) //只有"发布于"时替换为具体发布时间data-tooltip
  2178. {
  2179. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  2180. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip);
  2181. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  2182. }
  2183.  
  2184. //发布时间置顶
  2185. if (publishTop == 1) {
  2186. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("css-18wtfyc") && !$(this).find('.ContentItem-time.css-18wtfyc').hasClass('full')) {
  2187. let temp_out_time = $(this).find('.ContentItem-time.css-18wtfyc').clone();
  2188. $(this).find('.ContentItem-time.css-18wtfyc').hide();
  2189. $(this).find(".ContentItem-meta").append(temp_out_time);
  2190. $(this).find('.ContentItem-time.css-18wtfyc').addClass('full');
  2191. } else if (!$(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("ContentItem-meta")) {
  2192. let temp_time = $(this).find(".ContentItem-time:not(.css-18wtfyc)").clone();
  2193. $(this).find(".RichContent .ContentItem-time:not(.css-18wtfyc)").hide();
  2194. $(this).find(".ContentItem-meta").append(temp_time);
  2195. }
  2196. }
  2197. }
  2198.  
  2199. });
  2200.  
  2201. $(".Card.GlobalSideBar-category>a").hide();
  2202.  
  2203. $('.LoadingBar').removeClass('is-active');
  2204.  
  2205. $(".Zi--Disinterested").parent().parent().hover(function() {
  2206. $(this).find(".Zi--Disinterested").attr("fill", "rgb(252,96,123)");
  2207. $(this).attr("style", "color:rgb(252,96,123)");
  2208. }, function() {
  2209. $(this).find(".Zi--Disinterested").attr("fill", "currentColor");
  2210. $(this).attr("style", "color:#8590A6");
  2211. });
  2212.  
  2213. //首页隐藏侧边栏
  2214. if (hideIndexSidebar == 1) //隐藏侧边栏并拉宽内容
  2215. {
  2216. $('.css-1qyytj7').hide();
  2217. $(".GlobalSideBar").hide();
  2218. $(".GlobalLeftSideBar").hide();
  2219. //$(".Topstory-mainColumn").width($(".Topstory-container").width());
  2220. $(".Topstory-mainColumn").width("1000px");
  2221. } else if (hideIndexSidebar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  2222. {
  2223. $('.css-1qyytj7').hide();
  2224. $(".GlobalSideBar").hide();
  2225. $(".GlobalLeftSideBar").hide();
  2226. $(".Topstory-container").attr("style", "display:flex;justify-content:center;");
  2227. }
  2228.  
  2229. //首页回答举报按钮、不感兴趣按钮
  2230. $(".ContentItem-actions").each(function() {
  2231.  
  2232. if (window.location.href.indexOf('/follow') == -1 && $(this).find(".Zi--Disinterested").length == 0 && $(this).find(".Zi--Settings").length == 0) //未添加不感兴趣 且 不是自己的回答
  2233. {
  2234. let $question_dot = $(this).find(".Zi--Dots").closest(".ContentItem-action");
  2235. $question_dot.hide();
  2236. let button_text = '<button type=\"button\" class=\"Button ContentItem-action Button--plain Button--withIcon Button--withLabel\"><span style=\"display: inline-flex; align-items: center;\"><svg class=\"Zi Zi--Disinterested\" fill=\"currentColor\" viewBox=\"0 0 1024 1024\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" p-id=\"3931\" width=\"14\" height=\"14\"><path d=\"M512 32C251.4285715625 32 32 251.4285715625 32 512s219.4285715625 480 480 480 480-219.4285715625 480-480-219.4285715625-480-480-480z m205.7142853125 617.142856875c20.5714284375 20.5714284375 20.5714284375 48 0 61.714286249999994-20.5714284375 20.5714284375-48 20.5714284375-61.714285312499996 0l-137.142856875-137.1428578125L374.857143125 717.7142853125c-20.5714284375 20.5714284375-48 20.5714284375-68.5714284375 0s-20.5714284375-54.857143125 0-68.5714284375l144-144-137.1428578125-137.142856875c-20.5714284375-13.714285312500001-20.5714284375-41.142856875 0-61.714285312499996 20.5714284375-20.5714284375 48-20.5714284375 61.714286249999994 0l137.142856875 137.142856875 144-144c20.5714284375-20.5714284375 48-20.5714284375 68.5714284375 0 20.5714284375 20.5714284375 20.5714284375 48 0 68.5714284375L580.5714284375 512l137.142856875 137.142856875z\" p-id=\"3932\"></path></svg></span> 不感兴趣</button>';
  2237. let $disinterested = $(button_text);
  2238. $disinterested.bind("click", function() {
  2239. $question_dot.find("button").click();
  2240. $(".Menu.AnswerItem-selfMenu").find("button").each(function() { //回答
  2241. if ($(this).text().indexOf("不感兴趣") > -1) {
  2242. $(this).click();
  2243. }
  2244. });
  2245. $(".Menu.ItemOptions-selfMenu").find("button").each(function() { //专栏
  2246. if ($(this).text().indexOf("不感兴趣") > -1) {
  2247. $(this).click();
  2248. }
  2249. });
  2250. $('.ZVideoToolbar-menuItem').click(); //视频
  2251. });
  2252. $question_dot.after($disinterested);
  2253. } else {
  2254. $(this).find(".Zi--Dots").closest(".ContentItem-action").hide();
  2255. }
  2256.  
  2257. if (!$(this).closest('.ContentItem').hasClass('ArticleItem') && !$(this).closest('.ContentItem').hasClass('ZVideoItem') && $(this).find(".Zi--Report").length == 0 && $(this).find(".Zi--Settings").length == 0) //非文章非视频 且 未添加举报 且 不是自己的回答
  2258. {
  2259. let $question_dot = $(this).find(".Zi--Dots").closest(".ContentItem-action");
  2260. $question_dot.hide();
  2261. var button_text = '<button type="button" class="Button ContentItem-action FEfUrdfMIKpQDJDqkjte Button--plain fEPKGkUK5jyc4fUuT0QP" style="color:#8590A6"><span style="display: inline-flex; align-items: center;">​<svg width="1.2em" height="1.2em" viewBox="0 0 24 24" class="Zi Zi--Report ZDI ZDI--FlagFill24" fill="currentColor"><path d="M12.842 4.421c-1.86-1.24-3.957-1.408-5.798-1.025-1.827.38-3.467 1.313-4.47 2.381a.75.75 0 0 0-.171.732l4.44 14.546a.75.75 0 1 0 1.434-.438l-1.08-3.542c.025-.018.053-.036.083-.054.298-.184.801-.415 1.568-.523 1.386-.197 2.307.129 3.341.543l.187.075c1.005.405 2.161.872 3.791.804 1.401-.003 2.707-.45 3.67-1.015.483-.284.903-.612 1.212-.953.284-.312.581-.752.581-1.255V5.046a.75.75 0 0 0-1.17-.622c-1.82 1.23-4.881 1.823-7.618-.003Z"></path></svg></span> 举报</button>'
  2262. var $report = $(button_text);
  2263. $report.bind("click", function() {
  2264. $question_dot.find("button").click();
  2265. $(".Menu.AnswerItem-selfMenu").hide();
  2266. $(".Menu.AnswerItem-selfMenu").find("button").each(function() {
  2267. if ($(this).text().indexOf("举报") > -1)
  2268. $(this).click();
  2269. });
  2270. });
  2271. $question_dot.after($report);
  2272. } else {
  2273. $(this).find(".Zi--Dots").closest(".ContentItem-action").hide();
  2274. }
  2275.  
  2276. });
  2277.  
  2278. //视频清晰度自动选择超清
  2279. if ($('#player > div > div > div._1sxyvns > div._1jqeghjq > div > div._1c1cvug > div:nth-child(2) > div:nth-child(2) > button > span').length > 0 && !$('#player > div > div > div._1sxyvns > div._1jqeghjq > div > div._1c1cvug > div:nth-child(2) > div:nth-child(2) > button > span').hasClass('clear')) {
  2280. if ($('#player > div > div > div._1sxyvns > div._1jqeghjq > div > div._1c1cvug > div:nth-child(2) > div:nth-child(2) > button > span').text().indexOf('超清') == -1 && $('#player > div > div > div._1sxyvns > div._1jqeghjq > div > div._1c1cvug > div:nth-child(2) > div:nth-child(2) > div').text().indexOf('超清') > -1) {
  2281. $('#player > div > div > div._1sxyvns > div._1jqeghjq > div > div._1c1cvug > div:nth-child(2) > div:nth-child(2) > div').find('button').eq(0).click();
  2282. $('#player > div > div > div._1sxyvns > div._1jqeghjq > div > div._1c1cvug > div:nth-child(2) > div:nth-child(2) > button > span').addClass('clear');
  2283. }
  2284. }
  2285.  
  2286. //显示首页信息流标签
  2287. if (flowTag == 1) {
  2288. $('.Card .Feed .ContentItem').each(function() {
  2289. if ($(this).find('.Tag').length == 0) {
  2290.  
  2291. let typebackground = "",
  2292. typename = "";
  2293. /*
  2294. let zop= $(this).attr('data-zop');
  2295. let type = JSON.parse(zop)['type'];
  2296. if(type=='answer')
  2297. {
  2298. typebackground="#0084FF";
  2299. typename='问题';
  2300. }
  2301. else if(type=='article')
  2302. {
  2303. typebackground="orange";
  2304. typename='文章';
  2305. }
  2306. else if(type=='zvideo')
  2307. {
  2308. typebackground="red";
  2309. typename='视频';
  2310. }
  2311. */
  2312. if ($(this).hasClass('AnswerItem')) {
  2313. typebackground = "#0084FF";
  2314. typename = '问题';
  2315. } else if ($(this).hasClass('ArticleItem')) {
  2316. typebackground = "orange";
  2317. typename = '文章';
  2318. } else if ($(this).hasClass('ZVideoItem') || $(this).hasClass('EduSectionItem')) {
  2319. typebackground = "red";
  2320. typename = '视频';
  2321. }
  2322.  
  2323. if (typename != "") {
  2324. let tag = '<div class="Button Tag flowTag" style="background:' + typebackground + '"><span class="Tag-content">' + typename + '</span></div>';
  2325. $(this).find('.ContentItem-title a').before($(tag));
  2326. }
  2327. }
  2328. });
  2329. }
  2330. }
  2331.  
  2332. var view_details = 0; //详细资料是否被点击的标志
  2333.  
  2334. //用户主页
  2335. function people() {
  2336. //自动点击"查看详细资料"按钮
  2337. if ($(".ProfileHeader-expandButton").text().indexOf("查看详细资料") > -1 && view_details == 0) {
  2338. $(".ProfileHeader-expandButton").click();
  2339. view_details = 1;
  2340. }
  2341.  
  2342. if (hideProfileSidebar == 1) //隐藏侧边栏并拉宽内容
  2343. {
  2344. $(".Profile-sideColumn").hide();
  2345. $(".Profile-mainColumn").width($(".Profile-main").width());
  2346. } else if (hideProfileSidebar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  2347. {
  2348. $(".Profile-sideColumn").hide();
  2349. $(".Profile-main").attr("style", "display:flex;justify-content:center;");
  2350. }
  2351.  
  2352. $(".ContentItem.AnswerItem, .ContentItem.ArticleItem").each(function() {
  2353. if (!($(this).find(".ContentItem-time:not(.css-18wtfyc)").hasClass("full")) && $(this).find(".ContentItem-time:not(.css-18wtfyc)").length > 0 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text() != null) {
  2354. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") == -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") > -1) //只有"编辑于"时增加具体发布时间data-tooltip
  2355. {
  2356. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  2357. var oldtext = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text();
  2358. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip + "\xa0\xa0,\xa0\xa0" + oldtext);
  2359. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  2360. } else if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("发布于") > -1 && $(this).find(".ContentItem-time:not(.css-18wtfyc)").text().indexOf("编辑于") == -1) //只有"发布于"时替换为具体发布时间data-tooltip
  2361. {
  2362. let data_tooltip = $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").attr("data-tooltip");
  2363. $(this).find(".ContentItem-time:not(.css-18wtfyc)").find("a span").text(data_tooltip);
  2364. $(this).find(".ContentItem-time:not(.css-18wtfyc)").addClass("full");
  2365. }
  2366.  
  2367. //发布时间置顶
  2368. if (publishTop == 1) {
  2369. if ($(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("css-18wtfyc") && !$(this).find('.ContentItem-time.css-18wtfyc').hasClass('full')) {
  2370. let temp_out_time = $(this).find('.ContentItem-time.css-18wtfyc').clone();
  2371. $(this).find('.ContentItem-time.css-18wtfyc').hide();
  2372. $(this).find(".ContentItem-meta").append(temp_out_time);
  2373. $(this).find('.ContentItem-time.css-18wtfyc').addClass('full');
  2374. } else if (!$(this).find(".ContentItem-time:not(.css-18wtfyc)").parent().hasClass("ContentItem-meta")) {
  2375. let temp_time = $(this).find(".ContentItem-time:not(.css-18wtfyc)").clone();
  2376. $(this).find(".RichContent .ContentItem-time:not(.css-18wtfyc)").hide();
  2377. $(this).find(".ContentItem-meta").append(temp_time);
  2378. }
  2379. }
  2380. }
  2381.  
  2382. });
  2383. }
  2384.  
  2385. function column() {
  2386. $('.css-7q9l37').hide();
  2387. $('.Menu .Menu-item').hide();
  2388.  
  2389. //专栏列表举报按钮
  2390. if ($('.css-16qos9m').find('.Zi--Report').length == 0) {
  2391. let report = `<div style="margin-left:8px;"><button type="button" class="Button Button--plain" style="color:#8590A6">
  2392. <span style="display: inline-flex; align-items: center;">&#8203;<svg class="Zi Zi--Report" fill="currentColor" viewBox="0 0 24 24" width="14" height="14">
  2393. <path d="M19.947 3.129c-.633.136-3.927.639-5.697.385-3.133-.45-4.776-2.54-9.949-.888-.997.413-1.277 1.038-1.277 2.019L3 20.808c0 .3.101.54.304.718a.97.97 0 0 0 .73.304c.275 0 .519-.102.73-.304.202-.179.304-.418.304-.718v-6.58c4.533-1.235 8.047.668 8.562.864 2.343.893 5.542.008 6.774-.657.397-.178.596-.474.596-.887V3.964c0-.599-.42-.972-1.053-.835z" fill-rule="evenodd">
  2394. </path></svg></span> 举报</button></div>`;
  2395. let $report = $(report);
  2396. $report.click(function() {
  2397. $('.css-7q9l37 button').click();
  2398. $('.Menu .Menu-item button').eq(0).click();
  2399. });
  2400. $('.css-16qos9m').append($report);
  2401. }
  2402.  
  2403. //取消关注专栏按钮
  2404. if ($('.css-16qos9m').find('.unfollow_columns').length == 0) {
  2405. let $unfollow_columns = $('<button type="button" class="Button Button--plain unfollow_columns" style="margin-left:15px; display:none">取消关注专栏</button>');
  2406. $unfollow_columns.click(function() {
  2407. $('.css-7q9l37 button').click();
  2408. $('.Menu .Menu-item button').eq(1).click();
  2409. });
  2410. $('.css-16qos9m').append($unfollow_columns);
  2411. }
  2412. }
  2413.  
  2414. //图片调整到最高清晰度
  2415. function originalPic() {
  2416.  
  2417. if (blockingPictureVideo == 1) //隐藏图片/视频
  2418. {
  2419. $('img').each(function() {
  2420. if ($(this).closest('.RichContent-cover').length > 0 && !$(this).closest('.RichContent-cover').hasClass('hide')) //未隐藏
  2421. {
  2422. $(this).closest('.RichContent-cover').hide(); //隐藏首页回答封面
  2423. $(this).closest('.RichContent-cover').addClass('hide');
  2424. }
  2425.  
  2426. if ($(this).parent().attr('id') != 'nightmode' && !$(this).hasClass('Avatar')) //非夜间模式按钮,非头像
  2427. {
  2428. if (!$(this).hasClass('hide')) //未隐藏
  2429. {
  2430. $(this).hide();
  2431. $(this).addClass('hide');
  2432. }
  2433. }
  2434. });
  2435. $('.TitleImage').hide(); //隐藏专栏文章封面图
  2436. } else {
  2437. $("img").each(function() {
  2438. if ($(this).attr("data-original") != undefined && !$(this).hasClass("comment_sticker")) {
  2439. if ($(this).attr("src") != $(this).attr("data-original"))
  2440. $(this).attr("src", $(this).attr("data-original"));
  2441. }
  2442. });
  2443. }
  2444. }
  2445.  
  2446. function addLocalCSS() {
  2447. GM_addStyle(`
  2448. /* ==UserStyle==
  2449. @name zhihu-beautify
  2450. @description zhihu
  2451. @version 2025-1-21
  2452. @namespace zhihu
  2453. @license MIT
  2454. @downloadURL https://update.greasyfork.org/scripts/523346/zhihu-beautify.user.css
  2455. @updateURL https://update.greasyfork.org/scripts/523346/zhihu-beautify.meta.css
  2456. ==/UserStyle== */
  2457. html[data-theme=dark] .css-1qefhqu {
  2458. background-color: #1A1A1A
  2459. }
  2460.  
  2461. html[data-theme=dark] .LeftItem {
  2462. color: #606A80
  2463. }
  2464.  
  2465. html[data-theme=dark] .LeftItem:hover {
  2466. background-color: #F0F2F7 !important
  2467. }
  2468.  
  2469. #nightmode {
  2470. color: black
  2471. }
  2472.  
  2473. #nightmode:hover {
  2474. color: #0084FF
  2475. }
  2476.  
  2477. html[data-theme=dark] #nightmode {
  2478. color: hsla(0, 0%, 100%, .8)
  2479. }
  2480.  
  2481. html[data-theme=dark] #nightmode:hover {
  2482. color: #0084FF
  2483. }
  2484.  
  2485. .Reward {
  2486. display: none !important
  2487. }
  2488.  
  2489. html[data-hover-visible] .VoterList-content .List-item:hover {
  2490. -webkit-box-shadow: 0 0 0 2px #fff, 0.6px 0.4px 0 4px rgba(0, 132, 255, .3) inset;
  2491. box-shadow: 0 0 0 2px #fff, 0.6px 0.6px 0 4px rgba(0, 132, 255, .3) inset
  2492. }
  2493.  
  2494. html[data-theme=dark][data-hover-visible] .VoterList-content .List-item:hover {
  2495. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0.6px 0.4px 0 4px rgba(58, 118, 208, .6) inset;
  2496. box-shadow: 0 0 0 2px #1a1a1a, 0.6px 0.4px 0 4px rgba(58, 118, 208, .6) inset
  2497. }
  2498.  
  2499. html[data-hover-visible] .QuestionInvitation .List-item:hover {
  2500. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset;
  2501. box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset
  2502. }
  2503.  
  2504. html[data-theme=dark][data-hover-visible] .QuestionInvitation .List-item:hover {
  2505. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset;
  2506. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset
  2507. }
  2508.  
  2509. html[data-hover-visible] .List-item .List-item:hover {
  2510. -webkit-box-shadow: none;
  2511. box-shadow: none
  2512. }
  2513.  
  2514. html[data-theme=dark][data-hover-visible] .List-item .List-item:hover {
  2515. -webkit-box-shadow: none;
  2516. box-shadow: none
  2517. }
  2518.  
  2519. html[data-hover-visible] .List-item:hover {
  2520. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2521. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2522. }
  2523.  
  2524. html[data-theme=dark][data-hover-visible] .List-item:hover {
  2525. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2526. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2527. }
  2528.  
  2529. html[data-hover-visible] .QuestionAnswer-content:hover {
  2530. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2531. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2532. }
  2533.  
  2534. html[data-theme=dark][data-hover-visible] .QuestionAnswer-content:hover {
  2535. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2536. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2537. }
  2538.  
  2539. html[data-hover-visible] .List-item:hover {
  2540. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2541. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2542. }
  2543.  
  2544. html[data-theme=dark][data-hover-visible] .List-item:hover {
  2545. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2546. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2547. }
  2548.  
  2549. html[data-hover-visible] .QuestionItem.QuestionWaiting-questionItem:hover {
  2550. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2551. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2552. }
  2553.  
  2554. html[data-theme=dark][data-hover-visible] .QuestionItem.QuestionWaiting-questionItem:hover {
  2555. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2556. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2557. }
  2558.  
  2559. html[data-hover-visible] .QuestionItem.ToolsQuestionInvited-questionItem:hover {
  2560. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2561. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2562. }
  2563.  
  2564. html[data-theme=dark][data-hover-visible] .QuestionItem.ToolsQuestionInvited-questionItem:hover {
  2565. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2566. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2567. }
  2568.  
  2569. html[data-hover-visible] .QuestionItem.ToolsQuestionRecommend-questionItem:hover {
  2570. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2571. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2572. }
  2573.  
  2574. html[data-theme=dark][data-hover-visible] .QuestionItem.ToolsQuestionRecommend-questionItem:hover {
  2575. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2576. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2577. }
  2578.  
  2579. html[data-hover-visible] .css-1v8e53u:hover {
  2580. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2581. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2582. }
  2583.  
  2584. html[data-theme=dark][data-hover-visible] .css-1v8e53u:hover {
  2585. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  2586. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  2587. }
  2588.  
  2589. html[data-theme=dark][data-hover-visible] .QuestionItem.css-1ob7sqq {
  2590. border: none;
  2591. }
  2592.  
  2593. html[data-hover-visible] .QuestionItem.css-1ob7sqq:hover {
  2594. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset;
  2595. box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset;
  2596. }
  2597.  
  2598. html[data-theme=dark][data-hover-visible] .QuestionItem.css-1ob7sqq:hover {
  2599. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset;
  2600. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset;
  2601. }
  2602.  
  2603. html[data-hover-visible] .HotItem:hover {
  2604. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset;
  2605. box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset
  2606. }
  2607.  
  2608. html[data-theme=dark][data-hover-visible] .HotItem:hover {
  2609. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset;
  2610. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset
  2611. }
  2612.  
  2613. html[data-hover-visible] .Card.TopstoryItem:hover {
  2614. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset;
  2615. box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 132, 255, .3) inset
  2616. }
  2617.  
  2618. html[data-theme=dark][data-hover-visible] .Card.TopstoryItem:hover {
  2619. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset;
  2620. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset
  2621. }
  2622.  
  2623. html[data-hover-visible] .CollectionDetailPageItem:hover {
  2624. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  2625. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  2626. }
  2627.  
  2628. html[data-theme=dark][data-hover-visible] .CollectionDetailPageItem:hover {
  2629. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset;
  2630. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 3px rgba(58, 118, 208, .6) inset
  2631. }
  2632.  
  2633. html[data-hover-visible] .Card.TopstoryItem .ContentItem-actions {
  2634. margin-top: 0px;
  2635. margin-right: -17px;
  2636. margin-bottom: -10px;
  2637. margin-left: -17px;
  2638. padding-top: 10px;
  2639. padding-right: 17px;
  2640. padding-bottom: 10px;
  2641. padding-left: 17px;
  2642. }
  2643.  
  2644. html[data-hover-visible] .Card.TopstoryItem .ContentItem-actions.is-fixed {
  2645. margin-top: 0px;
  2646. margin-right: 0px;
  2647. margin-bottom: 0px;
  2648. margin-left: 0px;
  2649. padding-right: 20px;
  2650. padding-bottom: 10px;
  2651. padding-left: 20px;
  2652. }
  2653.  
  2654. .ModalExp-content {
  2655. display: none !important;
  2656. }
  2657.  
  2658. html .ColumnPageHeader-Menu .Menu-item {
  2659. color: black
  2660. }
  2661.  
  2662. html[data-theme=dark] .ColumnPageHeader-Menu .Menu-item {
  2663. color: hsla(0, 0%, 100%, .8)
  2664. }
  2665.  
  2666. html .ColumnPageHeader-Menu .Menu-item.is-active {
  2667. color: #0084FF
  2668. }
  2669.  
  2670. .Tabs-link.AppHeader-TabsLink {
  2671. color: black !important
  2672. }
  2673.  
  2674. html[data-theme=dark] .Tabs-link.AppHeader-TabsLink {
  2675. color: #d3d3d3 !important
  2676. }
  2677.  
  2678. .Tabs-link.AppHeader-TabsLink.is-active {
  2679. color: #0084FF !important
  2680. }
  2681.  
  2682. html[data-theme=dark] .Tabs-link.AppHeader-TabsLink.is-active {
  2683. color: #0084FF !important
  2684. }
  2685.  
  2686. .Tabs-link.AppHeader-TabsLink:hover {
  2687. color: #0084FF
  2688. }
  2689.  
  2690. html[data-theme=dark] .Tabs-link.AppHeader-TabsLink:hover {
  2691. color: #0084FF
  2692. }
  2693.  
  2694. html[data-theme=dark] .QuestionHeader-title {
  2695. color: #d3d3d3
  2696. }
  2697.  
  2698. html[data-theme=dark] .QuestionRichText {
  2699. color: #d3d3d3
  2700. }
  2701.  
  2702. html[data-theme=dark] .RichContent-inner {
  2703. color: #d3d3d3
  2704. }
  2705.  
  2706. html[data-theme=dark] .List-headerText {
  2707. color: #d3d3d3
  2708. }
  2709.  
  2710. html[data-theme=dark] .QuestionInvitation-title {
  2711. color: #d3d3d3
  2712. }
  2713.  
  2714. html[data-theme=dark] div[itemprop="zhihu:question"] {
  2715. color: #d3d3d3
  2716. }
  2717.  
  2718. html[data-theme=dark] .ContentItem-title {
  2719. color: #d3d3d3
  2720. }
  2721.  
  2722. html[data-theme=dark] .HotItem-title {
  2723. color: #d3d3d3
  2724. }
  2725.  
  2726. html[data-theme=dark] .CommentTopbar-title {
  2727. color: #d3d3d3 !important
  2728. }
  2729.  
  2730. html[data-theme=dark] .UserLink-link {
  2731. color: #d3d3d3
  2732. }
  2733.  
  2734. html[data-theme=dark] .CommentItemV2-content .RichText {
  2735. color: #d3d3d3
  2736. }
  2737.  
  2738. html[data-theme=dark] .ExploreHomePage-ContentSection-header {
  2739. color: #d3d3d3
  2740. }
  2741.  
  2742. html[data-theme=dark] .ExploreSpecialCard-title {
  2743. color: #d3d3d3
  2744. }
  2745.  
  2746. html[data-theme=dark] .ExploreSpecialCard-contentTitle {
  2747. color: #d3d3d3
  2748. }
  2749.  
  2750. html[data-theme=dark] .ExploreRoundtableCard-questionTitle {
  2751. color: #d3d3d3
  2752. }
  2753.  
  2754. html[data-theme=dark] .ExploreCollectionCard-title {
  2755. color: #d3d3d3
  2756. }
  2757.  
  2758. html[data-theme=dark] .ExploreCollectionCard-contentTitle {
  2759. color: #d3d3d3
  2760. }
  2761.  
  2762. html[data-theme=dark] .ExploreColumnCard-title {
  2763. color: #d3d3d3
  2764. }
  2765.  
  2766. html[data-theme=dark] .ClubItem-name {
  2767. color: #d3d3d3
  2768. }
  2769.  
  2770. html[data-theme=dark] .ClubHeaderInfo-name {
  2771. color: #d3d3d3
  2772. }
  2773.  
  2774. html[data-theme=dark] .ClubHeaderInfo-description {
  2775. color: #d3d3d3
  2776. }
  2777.  
  2778. html[data-theme=dark] .NumberBoard-itemValue {
  2779. color: #d3d3d3 !important
  2780. }
  2781.  
  2782. html[data-theme=dark] .Tabs-link.ClubTabs {
  2783. color: #d3d3d3
  2784. }
  2785.  
  2786. html[data-theme=dark] .ClubTopPosts-title {
  2787. color: #d3d3d3
  2788. }
  2789.  
  2790. html[data-theme=dark] .PostItem-headNameText {
  2791. color: #d3d3d3
  2792. }
  2793.  
  2794. html[data-theme=dark] .PostItem-titleText {
  2795. color: #d3d3d3
  2796. }
  2797.  
  2798. html[data-theme=dark] .PostItem-Title {
  2799. color: #d3d3d3
  2800. }
  2801.  
  2802. html[data-theme=dark] .PostItem-Summary {
  2803. color: #d3d3d3
  2804. }
  2805.  
  2806. html[data-theme=dark] .LinkCard-title {
  2807. color: #d3d3d3
  2808. }
  2809.  
  2810. html[data-theme=dark] .css-bb9ulb {
  2811. color: #d3d3d3
  2812. }
  2813.  
  2814. html[data-theme=dark] .CollectionDetailPageHeader-title {
  2815. color: #d3d3d3
  2816. }
  2817.  
  2818. html[data-theme=dark] .CollectionsHeader-tabsLink {
  2819. color: #d3d3d3
  2820. }
  2821.  
  2822. html[data-theme=dark] .SelfCollectionItem-title {
  2823. color: #d3d3d3
  2824. }
  2825.  
  2826. html[data-theme=dark] .Card-headerText {
  2827. color: #d3d3d3
  2828. }
  2829.  
  2830. html[data-theme=dark] .Modal-title {
  2831. color: #d3d3d3
  2832. }
  2833.  
  2834. html[data-theme=dark] .Favlists-itemNameText {
  2835. color: #d3d3d3
  2836. }
  2837.  
  2838. html[data-theme=dark] .ReportMenu-itemValue {
  2839. color: #d3d3d3
  2840. }
  2841.  
  2842. html[data-theme=dark] .ShortcutHintModal-hintTitle {
  2843. color: #d3d3d3
  2844. }
  2845.  
  2846. html[data-theme=dark] .KeyHint {
  2847. color: #d3d3d3
  2848. }
  2849.  
  2850. /*
  2851. html[data-theme=dark] .Anonymous-confirm {
  2852. color: #d3d3d3
  2853. }
  2854. */
  2855. html[data-theme=dark] .css-sumlaa svg {
  2856. fill: #d3d3d3
  2857. }
  2858.  
  2859. html[data-theme=dark] .Post-Title {
  2860. color: #d3d3d3
  2861. }
  2862.  
  2863. html[data-theme=dark] .Post-RichTextContainer p {
  2864. color: #d3d3d3
  2865. }
  2866.  
  2867. body:not(.zhi) {
  2868. color: black !important;
  2869. background: rgb(246, 246, 246) !important;
  2870. }
  2871.  
  2872. body.WhiteBg-body {
  2873. color: black !important;
  2874. background: white !important;
  2875. }
  2876.  
  2877. body.ZVideo-body {
  2878. color: black !important;
  2879. background: white !important;
  2880. }
  2881.  
  2882. html[data-theme=dark] body {
  2883. color: #d3d3d3 !important;
  2884. background: rgb(18, 18, 18) !important
  2885. }
  2886.  
  2887. .QuestionInvitation .Topbar {
  2888. cursor: pointer;
  2889. }
  2890.  
  2891. html[data-theme=dark] .WriteIndexLayout-main.WriteIndex {
  2892. border: 1px solid #222
  2893. }
  2894.  
  2895. html[data-theme=dark] .zhi {
  2896. color: #d3d3d3;
  2897. background-color: rgb(18, 18, 18)
  2898. }
  2899.  
  2900. .Zi--FormatBold,
  2901. .Zi--FormatItalic,
  2902. .Zi--FormatHeader,
  2903. .Zi--FormatBlockquote,
  2904. .Zi--InsertOrderedList,
  2905. .Zi--InsertUnorderedList,
  2906. .Zi--InsertReference,
  2907. .Zi--InsertDivider,
  2908. .Zi--InsertCatalog {
  2909. fill: black
  2910. }
  2911.  
  2912. html[data-theme=dark] .Zi--FormatBold,
  2913. html[data-theme=dark] .Zi--FormatItalic,
  2914. html[data-theme=dark] .Zi--FormatHeader,
  2915. html[data-theme=dark] .Zi--FormatBlockquote,
  2916. html[data-theme=dark] .Zi--InsertOrderedList,
  2917. html[data-theme=dark] .Zi--InsertUnorderedList,
  2918. html[data-theme=dark] .Zi--InsertReference,
  2919. html[data-theme=dark] .Zi--InsertDivider,
  2920. html[data-theme=dark] .Zi--InsertCatalog {
  2921. fill: #d3d3d3
  2922. }
  2923.  
  2924. .Zi--Bell path {
  2925. fill: rgb(68, 68, 68)
  2926. }
  2927.  
  2928. .Zi--Comments path {
  2929. fill: rgb(68, 68, 68)
  2930. }
  2931.  
  2932. .CarouselBanner-root-gGE8m .Zi--Bell path {
  2933. fill: #8590a6
  2934. }
  2935.  
  2936. .CarouselBanner-root-gGE8m .Zi--Comments path {
  2937. fill: #8590a6
  2938. }
  2939.  
  2940. html[data-theme=dark] .Zi--Bell path {
  2941. fill: #8590a6
  2942. }
  2943.  
  2944. html[data-theme=dark] .Zi--Comments path {
  2945. fill: #8590a6
  2946. }
  2947.  
  2948. .Zi--Bell:hover path {
  2949. fill: #FACB62
  2950. }
  2951.  
  2952. .Zi--Comments:hover path {
  2953. fill: #00FF7F
  2954. }
  2955.  
  2956. html[data-theme=dark] .Zi--Bell:hover path {
  2957. fill: #FACB62
  2958. }
  2959.  
  2960. html[data-theme=dark] .Zi--Comments:hover path {
  2961. fill: #00FF7F
  2962. }
  2963.  
  2964. .CommentItemV2-talkBtn .Zi--Comments path {
  2965. fill: #8590a6
  2966. }
  2967.  
  2968. html[data-theme=dark] .CommentItemV2-talkBtn .Zi--Comments path {
  2969. fill: #8590a6
  2970. }
  2971.  
  2972. .CommentItemV2-talkBtn:hover .Zi--Comments path {
  2973. fill: #00FF7F
  2974. }
  2975.  
  2976. html[data-theme=dark] .CommentItemV2-talkBtn:hover .Zi--Comments path {
  2977. fill: #00FF7F
  2978. }
  2979.  
  2980. .HoverCard-item .FollowButton+.Button:hover {
  2981. color: #00FF7F
  2982. }
  2983.  
  2984. html[data-theme=dark] .Zi--Browser {
  2985. fill: #8590A6
  2986. }
  2987.  
  2988. html[data-theme=dark] .css-w8abe7 {
  2989. background: rgb(18, 18, 18)
  2990. }
  2991.  
  2992. html[data-theme=dark] .css-12qxk2 {
  2993. background: rgb(18, 18, 18)
  2994. }
  2995.  
  2996. html[data-theme=dark] .css-huwkhm {
  2997. background: rgb(18, 18, 18)
  2998. }
  2999.  
  3000. html[data-theme=dark] .css-wgpue5 {
  3001. background: rgb(18, 18, 18)
  3002. }
  3003.  
  3004. html[data-theme=dark] .css-z0yjns {
  3005. background: rgb(18, 18, 18)
  3006. }
  3007.  
  3008. html[data-theme=dark] .css-yoby3j {
  3009. background: #191b1f;
  3010. }
  3011.  
  3012. html[data-theme=dark] .css-13445jb {
  3013. animation: none !important;
  3014. }
  3015.  
  3016. html[data-theme=dark] .css-akuk2k {
  3017. background: rgb(18, 18, 18);
  3018. border: none
  3019. }
  3020.  
  3021. html[data-theme=dark] .css-1v8e53u {
  3022. border: none
  3023. }
  3024.  
  3025. html[data-theme=dark] .css-k0fmhp {
  3026. color: #d3d3d3
  3027. }
  3028.  
  3029. html[data-theme=dark] .css-k0fmhp:hover {
  3030. color: #6385a6
  3031. }
  3032.  
  3033. html[data-theme=dark] .css-t3ae3e {
  3034. color: #d3d3d3
  3035. }
  3036.  
  3037. html[data-theme=dark] .css-1b3v2ql {
  3038. color: #d3d3d3;
  3039. }
  3040.  
  3041. html[data-theme=dark] .css-ke5ir5 {
  3042. color: rgb(133, 144, 166);
  3043. }
  3044.  
  3045. html[data-theme=dark] .CreatorHomeDeltaCount-compare {
  3046. color: #d3d3d3
  3047. }
  3048.  
  3049. html[data-theme=dark] .CreatorHomeAnalyticsData-title {
  3050. color: #d3d3d3
  3051. }
  3052.  
  3053. html[data-theme=dark] .CreatorHomeAnalyticsDataItem-type {
  3054. color: #d3d3d3
  3055. }
  3056.  
  3057. html[data-theme=dark] .CreatorHomeUpgradeGuide-title {
  3058. color: #d3d3d3
  3059. }
  3060.  
  3061. html[data-theme=dark] .Tabs-link {
  3062. color: #d3d3d3
  3063. }
  3064.  
  3065. html[data-theme=dark] .CreatorRecruitTitle {
  3066. color: #d3d3d3 !important
  3067. }
  3068.  
  3069. html[data-theme=dark] .Title-title-3QaE {
  3070. color: #d3d3d3
  3071. }
  3072.  
  3073. html[data-theme=dark] .ToolsCopyright-FieldName {
  3074. color: #d3d3d3
  3075. }
  3076.  
  3077. html[data-theme=dark] .ToolsCopyright-input {
  3078. background: rgb(18, 18, 18) !important;
  3079. color: #d3d3d3 !important
  3080. }
  3081.  
  3082. html[data-theme=dark] .ToolsCopyright-input::placeholder {
  3083. color: #8590A6
  3084. }
  3085.  
  3086. html[data-theme=dark] .community-copyright-form input {
  3087. background: rgb(18, 18, 18) !important;
  3088. border: 1px solid #444;
  3089. }
  3090.  
  3091. html[data-theme=dark] .community-copyright-form input::placeholder {
  3092. color: #8590A6 !important;
  3093. }
  3094.  
  3095. html[data-theme=dark] .community-copyright-form textarea {
  3096. background: rgb(18, 18, 18) !important;
  3097. border: 1px solid #444;
  3098. }
  3099.  
  3100. html[data-theme=dark] .community-copyright-form textarea::placeholder {
  3101. color: #8590A6 !important;
  3102. }
  3103.  
  3104. html[data-theme=dark] .community-copyright-form .copies-item-add-button .text {
  3105. color: #8590A6 !important;
  3106. }
  3107.  
  3108. html[data-theme=dark] .community-copyright-form .copies-item-add-button .sprite-community-copyright-icon-add {
  3109. filter: invert(1);
  3110. }
  3111.  
  3112. html[data-theme=dark] .CopyrightCenter-sideNavItem {
  3113. color: #d3d3d3
  3114. }
  3115.  
  3116. html[data-theme=dark] .CopyrightCenter-sideNavItem.is-active {
  3117. color: #0084ff
  3118. }
  3119.  
  3120. html[data-theme=dark] .Title-main-1ldU {
  3121. background: rgb(18, 18, 18)
  3122. }
  3123.  
  3124. html[data-theme=dark] .Title-border-1vTk {
  3125. background: #8590a65c
  3126. }
  3127.  
  3128. html[data-theme=dark] .iframeLive-iframe_live-WojO {
  3129. background: rgb(18, 18, 18)
  3130. }
  3131.  
  3132. html[data-theme=dark] .iframeLive-certifiedWrapper-pfzZ {
  3133. background: rgb(18, 18, 18);
  3134. border: 1px solid #8590a65c
  3135. }
  3136.  
  3137. html[data-theme=dark] .iframeLive-description-2C6O {
  3138. background: rgb(18, 18, 18);
  3139. border: 1px solid #8590a65c
  3140. }
  3141.  
  3142. html[data-theme=dark] .iframeLive-explanation-2IxQ {
  3143. color: #d3d3d3
  3144. }
  3145.  
  3146. html[data-theme=dark] .iframeLive-what_zhihu_title-1yQe {
  3147. color: #d3d3d3
  3148. }
  3149.  
  3150. html[data-theme=dark] .iframeLive-public_number_title-3kRs {
  3151. color: #d3d3d3
  3152. }
  3153.  
  3154. html[data-theme=dark] .SettingsFAQ-pageTitle {
  3155. color: #d3d3d3
  3156. }
  3157.  
  3158. html[data-theme=dark] .VideoGallery-root-7Z1Ci {
  3159. background: rgb(18, 18, 18) !important
  3160. }
  3161.  
  3162. html[data-theme=dark] .css-17714ul {
  3163. background: rgb(18, 18, 18)
  3164. }
  3165.  
  3166. html[data-theme=dark] .css-1bwzp6r {
  3167. background: rgb(18, 18, 18)
  3168. }
  3169.  
  3170. html[data-theme=dark] .css-w215gm {
  3171. background: rgb(18, 18, 18)
  3172. }
  3173.  
  3174. html[data-theme=dark] .css-ul9l2m {
  3175. background: rgb(18, 18, 18);
  3176. }
  3177.  
  3178. html[data-theme=dark] .css-m1yuwo {
  3179. border-left: 1px solid #8590a65c
  3180. }
  3181.  
  3182. html[data-theme=dark] .css-9ytsk0 {
  3183. border-bottom: 1px solid #8590a65c
  3184. }
  3185.  
  3186. html[data-theme=dark] .css-1pp4h0z {
  3187. border-top: 1px solid #8590a65c
  3188. }
  3189.  
  3190. html[data-theme=dark] .css-xevy9w tbody tr:nth-of-type(odd) {
  3191. background: rgb(18, 18, 18)
  3192. }
  3193.  
  3194. html[data-theme=dark] .css-1dah1m2 .css-wdqmif {
  3195. background: rgb(18, 18, 18);
  3196. border-bottom: 1px solid #8590a65c
  3197. }
  3198.  
  3199. .RichText .lazy[data-lazy-status=ok] {
  3200. animation: none;
  3201. }
  3202.  
  3203. html[data-theme=dark] img {
  3204. filter: brightness(0.6) !important;
  3205. }
  3206.  
  3207. /*
  3208. html[data-theme=dark] svg:not(.Zi):not(.ZDI) {
  3209. filter: brightness(0.6);
  3210. }
  3211. */
  3212.  
  3213. html[data-theme=dark] .ImageAlias {
  3214. filter: brightness(0.6);
  3215. }
  3216.  
  3217. html[data-theme=dark] .ExploreRoundtableCard-headerContainer {
  3218. filter: brightness(0.6) !important;
  3219. }
  3220.  
  3221. html[data-theme=dark] .TitleImage {
  3222. filter: brightness(0.6) !important;
  3223. }
  3224.  
  3225. html[data-theme=dark] .ecommerce-ad-arrow-img {
  3226. filter: brightness(0.6) !important;
  3227. }
  3228.  
  3229. html[data-theme=dark] circle {
  3230. fill-opacity: 0.6 !important;
  3231. }
  3232.  
  3233. html[data-theme=dark] .GifPlayer-icon {
  3234. opacity: 0.6 !important;
  3235. }
  3236.  
  3237. html[data-theme=dark] .css-iue0mv {
  3238. background: rgb(18, 18, 18)
  3239. }
  3240.  
  3241. html[data-theme=dark] .css-tpyajk {
  3242. background: rgb(18, 18, 18)
  3243. }
  3244.  
  3245. .AppHeaderProfileMenu .Button.Menu-item {
  3246. color: black
  3247. }
  3248.  
  3249. html[data-theme=dark] .AppHeaderProfileMenu .Button.Menu-item {
  3250. color: #d3d3d3
  3251. }
  3252.  
  3253. .UserLink-link {
  3254. color: black
  3255. }
  3256.  
  3257. html[data-theme=dark] .UserLink-link {
  3258. color: #d3d3d3
  3259. }
  3260.  
  3261. .css-g9ynb2 {
  3262. color: black
  3263. }
  3264.  
  3265. html[data-theme=dark] .css-g9ynb2 {
  3266. color: #d3d3d3
  3267. }
  3268.  
  3269. /*评论区*/
  3270. .CommentContent {
  3271. color: black
  3272. }
  3273.  
  3274. html[data-theme=dark] .CommentContent {
  3275. color: #d3d3d3
  3276. }
  3277.  
  3278. html[data-theme=dark] .css-10u695f {
  3279. color: #d3d3d3
  3280. }
  3281.  
  3282. .Button--secondary.Button--grey.css-7dh30y {
  3283. color: #0084FF
  3284. }
  3285.  
  3286. html[data-theme=dark] .Button--secondary.Button--grey.css-7dh30y {
  3287. color: #0084FF
  3288. }
  3289.  
  3290. .css-wu78cf {
  3291. color: #0084FF
  3292. }
  3293.  
  3294. html[data-theme=dark] .css-wu78cf .css-vurnku {
  3295. color: #0084FF
  3296. }
  3297.  
  3298. .css-8v0dsd {
  3299. color: #0084FF
  3300. }
  3301.  
  3302. html[data-theme=dark] .css-14zbeoe {
  3303. border: 1px solid #444
  3304. }
  3305.  
  3306. html[data-theme=dark] .css-u76jt1 {
  3307. border: 1px solid #444
  3308. }
  3309.  
  3310. html[data-theme=dark] .css-hzocic::before {
  3311. border: 1px solid #444
  3312. }
  3313.  
  3314. html[data-theme=dark] .InputLike {
  3315. border: 1px solid #444!important;
  3316. }
  3317.  
  3318. html[data-theme=dark] .css-wu78cf::before {
  3319. border-top: 1px solid #444
  3320. }
  3321.  
  3322. html[data-theme=dark] .css-7wvdjh {
  3323. background: rgb(18, 18, 18)
  3324. }
  3325.  
  3326. html[data-theme=dark] .css-r4op92 {
  3327. color: #d3d3d3
  3328. }
  3329.  
  3330. .css-1503iqi:hover {
  3331. color: #0084FF
  3332. }
  3333.  
  3334. html[data-theme=dark] .css-1503iqi {
  3335. background: rgb(18, 18, 18);
  3336. color: #929aab
  3337. }
  3338.  
  3339. html[data-theme=dark] .css-1503iqi:hover {
  3340. color: #0084FF
  3341. }
  3342.  
  3343. html[data-theme=dark] .css-97fdvh {
  3344. background: #8080801c;
  3345. color: #d3d3d3;
  3346. border: none;
  3347. }
  3348.  
  3349. html[data-theme=dark] .css-m0zh86 {
  3350. background: rgba(0, 102, 255, .08);
  3351. color: #0062ff;
  3352. border: none;
  3353. }
  3354.  
  3355.  
  3356. .MemberButtonGroup.ProfileButtonGroup.ProfileHeader-buttons .Button--grey.Button--withIcon.Button--withLabel {
  3357. color: rgb(68, 68, 68);
  3358. }
  3359.  
  3360. .MemberButtonGroup.ProfileButtonGroup.ProfileHeader-buttons .Button--grey.Button--withIcon.Button--withLabel:hover .Zi--Comments path {
  3361. fill: #00FF7F
  3362. }
  3363.  
  3364. html[data-theme=dark] .MemberButtonGroup.ProfileButtonGroup.ProfileHeader-buttons .Button--grey.Button--withIcon.Button--withLabel {
  3365. color: #8590A6 !important
  3366. }
  3367.  
  3368. .MemberButtonGroup.AnswerAuthor-buttons .Button--grey.Button--withIcon.Button--withLabel {
  3369. color: rgb(68, 68, 68);
  3370. }
  3371.  
  3372. .MemberButtonGroup.AnswerAuthor-buttons .Button--grey.Button--withIcon.Button--withLabel:hover .Zi--Comments path {
  3373. fill: #00FF7F
  3374. }
  3375.  
  3376. html[data-theme=dark] .MemberButtonGroup.AnswerAuthor-buttons .Button--grey.Button--withIcon.Button--withLabel {
  3377. color: #8590A6;
  3378. }
  3379.  
  3380. .ztext sup[data-draft-type=reference] {
  3381. background: yellow;
  3382. color: black
  3383. }
  3384.  
  3385. html[data-theme=dark] .ztext sup[data-draft-type=reference] {
  3386. background: yellow;
  3387. color: black
  3388. }
  3389.  
  3390. .ReferenceList .ReferenceList-backLink {
  3391. color: #0084ff;
  3392. }
  3393.  
  3394. html[data-theme=dark] .ReferenceList .ReferenceList-backLink {
  3395. color: #0084ff;
  3396. }
  3397.  
  3398. .ReferenceList li {
  3399. background: white;
  3400. color: black
  3401. }
  3402.  
  3403. html[data-theme=dark] .ReferenceList li {
  3404. background: rgb(18, 18, 18);
  3405. color: #d3d3d3
  3406. }
  3407.  
  3408. .ReferenceList li.is-active {
  3409. background: yellow;
  3410. color: black
  3411. }
  3412.  
  3413. html[data-theme=dark] .ReferenceList li.is-active {
  3414. background: yellow;
  3415. color: black
  3416. }
  3417.  
  3418. .zm-item-tag {
  3419. color: #0084ff;
  3420. background: #0084ff1a
  3421. }
  3422.  
  3423. html[data-theme=dark] .zg-item-log-detail {
  3424. border-left: 3px solid #d3d3d340;
  3425. }
  3426.  
  3427. html[data-theme=dark] del {
  3428. background: #0084ff1a;
  3429. }
  3430.  
  3431. .zg-item-log-detail ins,
  3432. .zg-item-log-detail ins a {
  3433. color: #0084ff;
  3434. background: #0084ff1a
  3435. }
  3436.  
  3437. .ReportMenu-inner.ReportMenu-options {
  3438. margin-bottom: 20px
  3439. }
  3440.  
  3441. .ModalButtonGroup.ModalButtonGroup--horizontal {
  3442. margin-top: 20px
  3443. }
  3444.  
  3445. .TopstoryItem-actionButton {
  3446. color: #8590A6
  3447. }
  3448.  
  3449. .TopstoryItem-actionButton:hover {
  3450. color: #0084FF
  3451. }
  3452.  
  3453. .TopstoryItem-uninterestTag {
  3454. color: #8590A6
  3455. }
  3456.  
  3457. .TopstoryItem-uninterestTag:hover {
  3458. color: #0084FF
  3459. }
  3460.  
  3461. html[data-theme=dark] .TopstoryItem-actionButton {
  3462. color: #8590A6
  3463. }
  3464.  
  3465. html[data-theme=dark] .TopstoryItem-actionButton:hover {
  3466. color: #0084FF
  3467. }
  3468.  
  3469. html[data-theme=dark] .TopstoryItem-uninterestTag {
  3470. color: #8590A6
  3471. }
  3472.  
  3473. html[data-theme=dark] .TopstoryItem-uninterestTag:hover {
  3474. color: #0084FF
  3475. }
  3476.  
  3477. .Button.Menu-item {
  3478. color: #8590A6
  3479. }
  3480.  
  3481. .Button.Menu-item.is-active {
  3482. color: black
  3483. }
  3484.  
  3485. html[data-theme=dark] .Button.Menu-item.is-active {
  3486. color: #d3d3d3 !important
  3487. }
  3488.  
  3489. html[data-theme=dark] .Post-ActionMenu .Button.Menu-item.Button--plain.is-active {
  3490. color: #d3d3d3 !important
  3491. }
  3492.  
  3493. html[data-theme=dark] .Post-ActionMenu .Button.Menu-item.Button--plain.is-active .css-17px4ve svg {
  3494. fill: #d3d3d3 !important
  3495. }
  3496.  
  3497. html[data-theme=dark] .AnswerItem-selectMenuItem.is-active {
  3498. color: #d3d3d3 !important
  3499. }
  3500.  
  3501. html[data-theme=dark] .AnswerItem-selectMenuItem.is-active .css-17px4ve svg {
  3502. fill: #d3d3d3 !important
  3503. }
  3504.  
  3505. html[data-theme=dark] .CommentPermission-item.is-active {
  3506. color: #d3d3d3 !important
  3507. }
  3508.  
  3509. html[data-theme=dark] .CommentPermission-item.is-active .css-17px4ve svg {
  3510. fill: #d3d3d3 !important
  3511. }
  3512.  
  3513. .ToolsQuestion-header--action {
  3514. color: #0084FF
  3515. }
  3516.  
  3517. html[data-theme=dark] .ToolsQuestion-header--action {
  3518. color: #0084FF
  3519. }
  3520.  
  3521. html[data-theme=dark] .Button.css-jamz70 {
  3522. color: white;
  3523. border: none
  3524. }
  3525.  
  3526. html[data-theme=dark] .css-l0zkw9 {
  3527. color: #8590A6
  3528. }
  3529.  
  3530. .Card.css-1y7nlna {
  3531. display: none !important
  3532. }
  3533.  
  3534. .SettingsNav-link[href="/settings/mcn"] {
  3535. display: none !important
  3536. }
  3537.  
  3538. .SettingsNav-link {
  3539. color: black
  3540. }
  3541.  
  3542. html[data-theme=dark] .SettingsNav-link {
  3543. color: #d3d3d3
  3544. }
  3545.  
  3546. html[data-theme=dark] .SettingsNav-link .Zi--Bell path {
  3547. fill: #d3d3d3
  3548. }
  3549.  
  3550. .SettingsNav-link.is-active {
  3551. color: #0084ff
  3552. }
  3553.  
  3554. .SettingsNav-link.is-active svg {
  3555. fill: #0084ff
  3556. }
  3557.  
  3558. .SettingsNav-link.is-active .Zi--Bell path {
  3559. fill: #0084ff
  3560. }
  3561.  
  3562. html[data-theme=dark] .SettingsNav-link.is-active {
  3563. color: #0084ff
  3564. }
  3565.  
  3566. html[data-theme=dark] .SettingsNav-link.is-active svg {
  3567. fill: #0084ff
  3568. }
  3569.  
  3570. html[data-theme=dark] .SettingsNav-link.is-active .Zi--Bell path {
  3571. fill: #0084ff
  3572. }
  3573.  
  3574. .SettingsNav-link:hover {
  3575. color: #0084ff
  3576. }
  3577.  
  3578. .SettingsNav-link:hover svg {
  3579. fill: #0084ff
  3580. }
  3581.  
  3582. .SettingsNav-link:hover .Zi--Bell path {
  3583. fill: #0084ff
  3584. }
  3585.  
  3586. html[data-theme=dark] .SettingsNav-link:hover {
  3587. color: #0084ff
  3588. }
  3589.  
  3590. html[data-theme=dark] .SettingsNav-link:hover svg {
  3591. fill: #0084ff
  3592. }
  3593.  
  3594. html[data-theme=dark] .SettingsNav-link:hover .Zi--Bell path {
  3595. fill: #0084ff
  3596. }
  3597.  
  3598. .Zi--InsertTable {
  3599. fill: #0084ff
  3600. }
  3601.  
  3602. .Zi--TableRowNum {
  3603. fill: #0084ff
  3604. }
  3605.  
  3606. .Zi--TableColumnNum {
  3607. fill: #0084ff
  3608. }
  3609.  
  3610. .ReportMenu-item:hover {
  3611. background: #8080801c;
  3612. }
  3613.  
  3614. .ReportInfringement-item:hover {
  3615. background: #0084ff26;
  3616. }
  3617.  
  3618. .css-520aav {
  3619. display: none !important;
  3620. }
  3621.  
  3622. .Pc-Business-Card-PcTopFeedBanner {
  3623. display: none !important;
  3624. }
  3625.  
  3626. #nightmode img {
  3627. filter: brightness(1) !important
  3628. }
  3629.  
  3630. html[data-theme=dark] .QuestionTopicReviewCardExtraInfo-cardTitle {
  3631. color: #d3d3d3
  3632. }
  3633.  
  3634. html[data-theme=dark] .MCNLinkCard-title {
  3635. color: #d3d3d3
  3636. }
  3637.  
  3638. html[data-theme=dark] .label-input-label {
  3639. background-color: #e1eaf2;
  3640. }
  3641.  
  3642. div.ModalButtonGroup.ModalButtonGroup--horizontal>button:nth-child(1):not([class="ReportMenu-button"]):hover {
  3643. background: #8080801c;
  3644. }
  3645.  
  3646. .Modal:not([class*="BaiduFileSelector"]) .Modal-inner {
  3647. overflow-y: hidden
  3648. }
  3649.  
  3650. .Modal.Modal--default.css-zelv4t .Modal-inner {
  3651. overflow-y: scroll
  3652. }
  3653.  
  3654. .Modal-content {
  3655. overflow-y: hidden
  3656. }
  3657.  
  3658. .BaiduFileSelector-content {
  3659. overflow-y: hidden;
  3660. }
  3661.  
  3662. html[data-theme=dark] .TopTabNavBar-isLight-bYRj {
  3663. background: rgb(18, 18, 18) !important
  3664. }
  3665.  
  3666. html[data-theme=dark] .Card-card-2K6v {
  3667. background: rgb(18, 18, 18);
  3668. }
  3669.  
  3670. html[data-theme=dark] .LiveItem-title-2qes {
  3671. color: #d3d3d3
  3672. }
  3673.  
  3674. html[data-theme=dark] .GlobalSidebar-introItem-24PB h3 {
  3675. color: #d3d3d3
  3676. }
  3677.  
  3678. html[data-theme=dark] .Tooltip-tooltip-2Cut.Tooltip-light-3TwZ .Tooltip-tooltipInner-B448 {
  3679. background: rgb(18, 18, 18)
  3680. }
  3681.  
  3682. html[data-theme=dark] .UserLivesPage-page-GSje {
  3683. background: rgb(18, 18, 18)
  3684. }
  3685.  
  3686. html[data-theme=dark] .Menu-menuInner-2eRf {
  3687. background: rgb(18, 18, 18)
  3688. }
  3689.  
  3690. .Menu-menuItem-1oId:hover {
  3691. background: #8080801c
  3692. }
  3693.  
  3694. html[data-theme=dark] .Menu-menuItem-1oId:hover {
  3695. background: #8080801c
  3696. }
  3697.  
  3698. html[data-theme=dark] .EditorAttachment {
  3699. background: rgb(18, 18, 18)
  3700. }
  3701.  
  3702. html[data-theme=dark] .css-ovbogu {
  3703. background: rgb(18, 18, 18)
  3704. }
  3705.  
  3706. html[data-theme=dark] .AppHeader {
  3707. background: rgb(18, 18, 18)
  3708. }
  3709.  
  3710. html[data-theme=dark] .PubIndex-CategoriesHeader {
  3711. background: rgb(26, 26, 26);
  3712. border: none
  3713. }
  3714.  
  3715. html[data-theme=dark] .BottomBar-wrapper-kXb19 {
  3716. background: rgb(18, 18, 18) !important
  3717. }
  3718.  
  3719. html[data-theme=dark] .css-1cs7y3i {
  3720. color: #d3d3d3
  3721. }
  3722.  
  3723. html[data-theme=dark] .TabNavBarItem-tab-MS9i {
  3724. color: #d3d3d3
  3725. }
  3726.  
  3727. html[data-theme=dark] .TabNavBarItem-tab-MS9i.TabNavBarItem-isActive-1iXL {
  3728. color: rgb(17, 133, 254);
  3729. }
  3730.  
  3731. .ToolsQuestionInvited-questionList {
  3732. padding: 0px 20px 20px 20px
  3733. }
  3734.  
  3735. html[data-theme=dark] .FeedbackButton-button-3waL {
  3736. background: #d3d3d3
  3737. }
  3738.  
  3739. html[data-theme=dark] .Pub-reader-clear-body {
  3740. background: #000;
  3741. color: #000
  3742. }
  3743.  
  3744. html[data-theme=dark] .Pub-reader-body {
  3745. background: #000;
  3746. color: #000
  3747. }
  3748.  
  3749. html[data-theme=dark] .Pub-reader-app-header {
  3750. background: rgb(18, 18, 18);
  3751. border-bottom: 1px solid #444;
  3752. }
  3753.  
  3754. html[data-theme=dark] .Pub-reader-app-header .reader-nav {
  3755. background: rgb(18, 18, 18);
  3756. }
  3757.  
  3758. html[data-theme=dark] .Pub-reader-bottom-bar {
  3759. background: rgb(18, 18, 18);
  3760. }
  3761.  
  3762. html[data-theme=dark] .Pub-reader-bottom-bar .reader-app-qrcode {
  3763. color: #d3d3d3;
  3764. }
  3765.  
  3766. html[data-theme=dark] .Pub-web-reader .Pub-reader-guidance.pc {
  3767. background: rgb(18, 18, 18);
  3768. }
  3769.  
  3770. html[data-theme=dark] .Pub-web-reader .reader-container {
  3771. background: rgb(0, 0, 0);
  3772. }
  3773.  
  3774. html[data-theme=dark] .Pub-web-reader .reader-chapter-content {
  3775. background: rgb(33, 33, 35);
  3776. }
  3777.  
  3778. html[data-theme=dark] .reader-chapter-content {
  3779. background: rgb(33, 33, 35);
  3780. color: rgb(115, 118, 125)
  3781. }
  3782.  
  3783. html[data-theme=dark] .Pub-web-reader .reader-chapter-content .MPub-reader-trial-finish {
  3784. color: #d3d3d3
  3785. }
  3786.  
  3787. html[data-theme=dark] .Pub-PageHeaderWrapper .PageHeader {
  3788. background: rgb(18, 18, 18);
  3789. }
  3790.  
  3791. html[data-theme=dark] .Pub-BookInfo h1 {
  3792. color: #d3d3d3
  3793. }
  3794.  
  3795. html[data-theme=dark] .Overview .left {
  3796. color: #d3d3d3
  3797. }
  3798.  
  3799. html[data-theme=dark] .reviewHeader div {
  3800. color: #d3d3d3
  3801. }
  3802.  
  3803. html[data-theme=dark] .ReviewCell .content {
  3804. color: gray
  3805. }
  3806.  
  3807. html[data-theme=dark] .TopNavBar-root {
  3808. background: rgb(18, 18, 18);
  3809. border: none
  3810. }
  3811.  
  3812. html[data-theme=dark] .TopNavBar-logout {
  3813. color: #d3d3d3
  3814. }
  3815.  
  3816. html[data-theme=dark] .Main {
  3817. background: rgb(18, 18, 18);
  3818. }
  3819.  
  3820. html[data-theme=dark] .Pub-BookInfo .Label {
  3821. color: #0084ff;
  3822. background: #0084ff1a;
  3823. }
  3824.  
  3825. html[data-theme=dark] .Labels-labelButton-ioRsP {
  3826. color: #0084ff;
  3827. background: #0084ff1a;
  3828. }
  3829.  
  3830. html[data-theme=dark] .PubBook-RelativeListItem-info {
  3831. color: #8590A6
  3832. }
  3833.  
  3834. html[data-theme=dark] .PubIndex-book-main .Summary .TabContent .Description {
  3835. color: #8590A6
  3836. }
  3837.  
  3838. html[data-theme=dark] .Pub-BookAuthorItem .AuthorName {
  3839. color: #d3d3d3
  3840. }
  3841.  
  3842. html[data-theme=dark] .PubIndex-book-main .Summary .TabContent .ShortDesc {
  3843. color: #d3d3d3
  3844. }
  3845.  
  3846. html[data-theme=dark] .css-k7kepf {
  3847. color: #d3d3d3
  3848. }
  3849.  
  3850. html[data-theme=dark] .App-root-63J6a {
  3851. border: 1px solid #444
  3852. }
  3853.  
  3854. html[data-theme=dark] .Pub-reader-app-header .reader-nav li:after {
  3855. background: #444
  3856. }
  3857.  
  3858. html[data-theme=dark] .Pub-reader-app-header .reader-logo span:before {
  3859. background: #444
  3860. }
  3861.  
  3862. html[data-theme=dark] .Pub-web-reader .Pub-reader-catalogue li {
  3863. border-bottom: 1px solid #444
  3864. }
  3865.  
  3866. html[data-theme=dark] .Pub-web-reader .Pub-reader-catalogue:before {
  3867. background: #444
  3868. }
  3869.  
  3870. html[data-theme=dark] .css-lcfru7,
  3871. html[data-theme=dark] .css-xnl4yp {
  3872. border-bottom: 1px solid #444
  3873. }
  3874.  
  3875. html[data-theme=dark] .zm-topic-topbar {
  3876. border-bottom: 1px solid #444
  3877. }
  3878.  
  3879. html[data-theme=dark] .SelfCollectionItem-innerContainer {
  3880. border-bottom: 1px solid #444
  3881. }
  3882.  
  3883. html[data-theme=dark] .zm-item+.zm-item {
  3884. border-top: 1px solid #444
  3885. }
  3886.  
  3887. html[data-theme=dark] .zh-footer .content {
  3888. border-top: 1px solid #444
  3889. }
  3890.  
  3891. html[data-theme=dark] .zm-side-section+.zm-side-section>.zm-side-section-inner {
  3892. border-top: 1px solid #444
  3893. }
  3894.  
  3895. html[data-theme=dark] .zg-btn-white.zu-button-more {
  3896. background: rgb(18, 18, 18);
  3897. color: #3a76d0 !important;
  3898. border-color: #3a76d0;
  3899. box-shadow: none;
  3900. text-shadow: none
  3901. }
  3902.  
  3903. html[data-theme=dark] .css-r9mkgf {
  3904. background: rgb(18, 18, 18);
  3905. }
  3906.  
  3907. html[data-theme=dark] .css-jwse5c,
  3908. html[data-theme=dark] .css-1zcaix,
  3909. html[data-theme=dark] .css-4a3k6y,
  3910. html[data-theme=dark] .css-eonief {
  3911. color: #d3d3d3;
  3912. }
  3913.  
  3914. html[data-theme=dark] .css-hd7egx {
  3915. color: #d3d3d3;
  3916. border-color: #444
  3917. }
  3918.  
  3919. html[data-theme=dark] .css-iin461 {
  3920. border: 1px solid #444
  3921. }
  3922.  
  3923. html[data-theme=dark] .css-1ki0pxd {
  3924. border: none
  3925. }
  3926.  
  3927. html[data-theme=dark] .Pub-BookVipEntrance {
  3928. filter: brightness(0.6) !important;
  3929. }
  3930.  
  3931. html[data-theme=dark] div.css-1b0ypf8>div.css-1sqjzsk>div.css-tr5tvs>img {
  3932. filter: brightness(1) !important;
  3933. }
  3934.  
  3935. html[data-theme=dark] .ColumnHomeTop:before {
  3936. background: none
  3937. }
  3938.  
  3939. html[data-theme=dark] .ColumnHomeBottom {
  3940. background: none
  3941. }
  3942.  
  3943. html[data-theme=dark] .HybridLink.Home-topic {
  3944. cursor: pointer
  3945. }
  3946.  
  3947. html[data-theme=dark] .WikiLandingWelcome-main h2 {
  3948. color: #d3d3d3
  3949. }
  3950.  
  3951. html[data-theme=dark] .WikiLandingExcellentItems-title {
  3952. color: #d3d3d3
  3953. }
  3954.  
  3955. html[data-theme=dark] .WikiLandingExcellentItems-calcWrapper .WikiLandingExcellentItems-name {
  3956. color: #d3d3d3
  3957. }
  3958.  
  3959. html[data-theme=dark] .WikiLandingItemCard-title {
  3960. color: #d3d3d3
  3961. }
  3962.  
  3963. html[data-theme=dark] .WikiLandingGuide-title {
  3964. color: #d3d3d3
  3965. }
  3966.  
  3967. html[data-theme=dark] .WikiLandingCarousel-author .UserLink-link {
  3968. color: #d3d3d3
  3969. }
  3970.  
  3971. html[data-theme=dark] .WikiLandingContributor-title {
  3972. color: #d3d3d3
  3973. }
  3974.  
  3975. html[data-theme=dark] .WikiLandingRight-title {
  3976. color: #d3d3d3
  3977. }
  3978.  
  3979. html[data-theme=dark] .WikiLandingRight-right .WikiLandingRight-name {
  3980. color: #d3d3d3
  3981. }
  3982.  
  3983. html[data-theme=dark] .WikiLandingEditBoard-title {
  3984. color: #d3d3d3
  3985. }
  3986.  
  3987. html[data-theme=dark] .WikiLandingNavSelector-navItem {
  3988. color: #d3d3d3
  3989. }
  3990.  
  3991. html[data-theme=dark] .BalanceDashboard-Currency-Number {
  3992. color: #d3d3d3
  3993. }
  3994.  
  3995. html[data-theme=dark] .BalanceDashboard h1 {
  3996. color: #d3d3d3
  3997. }
  3998.  
  3999. html[data-theme=dark] .BalanceDashboard-Currency-Label {
  4000. color: #d3d3d3
  4001. }
  4002.  
  4003. html[data-theme=dark] .ClubSliderList-name {
  4004. color: #d3d3d3
  4005. }
  4006.  
  4007. html[data-theme=dark] .BalanceTransactionList-Item:nth-child(2n) {
  4008. background-color: hsla(0, 0%, 97%, 0.03);
  4009. }
  4010.  
  4011. .WikiLandingNavSelector-navItem--active,
  4012. html[data-theme=dark] .WikiLandingNavSelector-navItem--active {
  4013. color: #5868d1;
  4014. }
  4015.  
  4016. html[data-theme=dark] .WikiLandingGuide-wiki .WikiLandingGuide-image {
  4017. filter: brightness(0.6) !important;
  4018. }
  4019.  
  4020. html[data-theme=dark] .WikiLandingGuide-abstract .WikiLandingGuide-image {
  4021. filter: brightness(0.6) !important;
  4022. }
  4023.  
  4024. html[data-theme=dark] ._Coupon_intro_1kIo {
  4025. filter: brightness(0.6) !important;
  4026. }
  4027.  
  4028. html[data-theme=dark] ._Coupon_item_34n9 {
  4029. filter: brightness(0.6) !important;
  4030. }
  4031.  
  4032. html[data-theme=dark] .Community-ContentLayout {
  4033. background: black
  4034. }
  4035.  
  4036. html[data-theme=dark] .css-dainun {
  4037. background: rgb(18, 18, 18);
  4038. border-bottom: 1px solid #444
  4039. }
  4040.  
  4041. html[data-theme=dark] .css-1t8cvcr {
  4042. border-right: 1px solid #444
  4043. }
  4044.  
  4045. html[data-theme=dark] .css-104x2kz {
  4046. border-bottom: 1px solid #444;
  4047. }
  4048.  
  4049. html[data-theme=dark] .css-16kxzh3 {
  4050. border-bottom: 1px solid #444;
  4051. border-left: 1px solid #444
  4052. }
  4053.  
  4054. html[data-theme=dark] .css-18xitnw {
  4055. border-top: 1px solid #444;
  4056. }
  4057.  
  4058. html[data-theme=dark] .css-11v4451 {
  4059. background: rgb(18, 18, 18)
  4060. }
  4061.  
  4062. html[data-theme=dark] .css-m9gn5f {
  4063. background: rgb(18, 18, 18)
  4064. }
  4065.  
  4066. html[data-theme=dark] .css-bnfl40 {
  4067. background: rgb(18, 18, 18);
  4068. border-bottom: 20px solid rgb(18, 18, 18);
  4069. }
  4070.  
  4071. html[data-theme=dark] .css-19e7d80 {
  4072. background: rgb(18, 18, 18);
  4073. color: #8590A6
  4074. }
  4075.  
  4076. html[data-theme=dark] .css-19e7d80:hover {
  4077. color: #0084FF
  4078. }
  4079.  
  4080. .css-19e7d80:hover {
  4081. color: #0084FF
  4082. }
  4083.  
  4084. .css-5gbrzs:hover {
  4085. color: #0084FF
  4086. }
  4087.  
  4088. html[data-theme=dark] .css-5gbrzs:hover {
  4089. color: #0084FF
  4090. }
  4091.  
  4092. .css-tcdp81:hover {
  4093. color: #0084FF
  4094. }
  4095.  
  4096. html[data-theme=dark] .css-cmuys0 {
  4097. color: #d3d3d3
  4098. }
  4099.  
  4100. html[data-theme=dark] .css-14chytt {
  4101. color: #d3d3d3
  4102. }
  4103.  
  4104. html[data-theme=dark] .css-1hhi6j5 {
  4105. color: #d3d3d3
  4106. }
  4107.  
  4108. html[data-theme=dark] .css-1d7g4vp {
  4109. color: #d3d3d3
  4110. }
  4111.  
  4112. html[data-theme=dark] .css-1c4skpi {
  4113. color: #d3d3d3;
  4114. border-bottom: 1px solid #444;
  4115. }
  4116.  
  4117. html[data-theme=dark] .css-yu9w3k {
  4118. color: #d3d3d3;
  4119. border-bottom: 1px solid #444;
  4120. }
  4121.  
  4122. html[data-theme=dark] .css-1117lk0:hover .css-yu9w3k {
  4123. color: rgb(68, 68, 68);
  4124. border: none
  4125. }
  4126.  
  4127. html[data-theme=dark] .css-m9gn5f:hover {
  4128. background-color: rgb(246, 246, 246);
  4129. }
  4130.  
  4131. html[data-theme=dark] .css-m9gn5f:hover .css-yu9w3k {
  4132. background-color: rgb(246, 246, 246);
  4133. color: rgb(68, 68, 68);
  4134. border: none
  4135. }
  4136.  
  4137. html[data-theme=dark] .AbstractCard-header:after,
  4138. html[data-theme=dark] .AbstractCard-header:before {
  4139. opacity: 0.1
  4140. }
  4141.  
  4142. html[data-theme=dark] .css-gvm7n2::before {
  4143. background-image: linear-gradient(to right, #0084ff00, #0084ffd4);
  4144. }
  4145.  
  4146. html[data-theme=dark] .css-gvm7n2 {
  4147. color: #f6f6f6;
  4148. background: #0084ffd4;
  4149. }
  4150.  
  4151. html[data-theme=dark] .css-1dz0u0s {
  4152. background: #d3d3d3;
  4153. }
  4154.  
  4155. html[data-theme=dark] .community-copyright-form input,
  4156. html[data-theme=dark] .community-copyright-form textarea {
  4157. background: #ddd;
  4158. }
  4159.  
  4160. html[data-theme=dark] ._Slogan_sloganWrapper_2E5y {
  4161. background: #d3d3d3;
  4162. }
  4163.  
  4164. html[data-theme=dark] .CopyrightSettings h2 {
  4165. color: #d3d3d3;
  4166. }
  4167.  
  4168. html[data-theme=dark] .CopyrightSettings-setall-tip {
  4169. color: #d3d3d3;
  4170. }
  4171.  
  4172. html[data-theme=dark] .community-copyright-form .copies-item-add-button .text {
  4173. color: #d3d3d3;
  4174. }
  4175.  
  4176. html[data-theme=dark] .sprite-community-copyright,
  4177. html[data-theme=dark] [class*=sprite-community-copyright-] {
  4178. border: none;
  4179. border-radius: 16px;
  4180. }
  4181.  
  4182. html[data-theme=dark] .tab-navs {
  4183. border-bottom: 1px solid #444
  4184. }
  4185.  
  4186. html[data-theme=dark] .community-copyright-faq dt:first-child {
  4187. border-top: 1px solid #444
  4188. }
  4189.  
  4190. html[data-theme=dark] .community-copyright-faq dt {
  4191. border-bottom: 1px solid #444
  4192. }
  4193.  
  4194. html[data-theme=dark] .css-19mtex {
  4195. border-top: 1px solid #444
  4196. }
  4197.  
  4198. .AdblockBanner {
  4199. display: none !important
  4200. }
  4201.  
  4202. .Pc-word {
  4203. display: none !important
  4204. }
  4205.  
  4206. ._7akbfp {
  4207. color: white !important
  4208. }
  4209.  
  4210. html[data-theme=dark] #player {
  4211. filter: brightness(0.6) !important;
  4212. }
  4213.  
  4214. html[data-theme=dark] .PubIndex-book-main .BasicInfo .Actions {
  4215. border-top: 1px solid #444;
  4216. }
  4217.  
  4218. html[data-theme=dark] .PubIndex-book-main .Summary .TabContent .ToggleCollapse {
  4219. border-top: 1px solid #444;
  4220. }
  4221.  
  4222. html[data-theme=dark] .ReviewCell {
  4223. border-top: 1px solid #444;
  4224. }
  4225.  
  4226. html[data-theme=dark] .PubIndex-book-aside .ToggleCollapse {
  4227. border-top: 1px solid #444;
  4228. }
  4229.  
  4230. html[data-theme=dark] .PubIndex-book-main .Summary .TabContent .ExtInfo {
  4231. border-top: 1px solid #444;
  4232. }
  4233.  
  4234. html[data-theme=dark] .PubIndex-book-main .Summary .MPub-reader-chapter li {
  4235. border-bottom-color: #444
  4236. }
  4237.  
  4238. html[data-theme=dark] .PubIndex-book-main .Summary .MPub-reader-chapter li:hover span {
  4239. color: #404040
  4240. }
  4241.  
  4242. html[data-theme=dark] .PubIndex-book-main .Summary .MPub-reader-chapter li.level-1:before {
  4243. background: #d3d3d3
  4244. }
  4245.  
  4246. html[data-theme=dark] .PubIndex-book-main .Summary .MPub-reader-chapter li.level-1:hover:before {
  4247. background: #404040
  4248. }
  4249.  
  4250. html[data-theme=dark] .PubIndex-book-aside .ToBePublisher .Link {
  4251. color: #404040
  4252. }
  4253.  
  4254. html[data-theme=dark] .PubAsideNavs .NavItem:after {
  4255. background: rgb(26, 26, 26)
  4256. }
  4257.  
  4258. html[data-theme=dark] .Pub-web-reader .Pub-reader-guidance h3 span.title {
  4259. color: #bfbfbf
  4260. }
  4261.  
  4262. html[data-theme=dark] .Pub-web-reader .Pub-reader-guidance .operation-names {
  4263. color: #bfbfbf
  4264. }
  4265.  
  4266. html[data-theme=dark] .CornerButton {
  4267. background: #1a1a1a;
  4268. }
  4269.  
  4270. .CornerButton .Zi--BackToTop {
  4271. fill: #8590A6;
  4272. }
  4273.  
  4274. .CornerButton:hover .Zi--BackToTop {
  4275. fill: #0084FF;
  4276. }
  4277.  
  4278. .CornerButton:hover .Zi--BackToTop:hover {
  4279. fill: #0084FF;
  4280. }
  4281.  
  4282. html[data-theme=dark] .CornerButton .Zi--BackToTop {
  4283. fill: #8590A6;
  4284. }
  4285.  
  4286. html[data-theme=dark] .CornerButton:hover .Zi--BackToTop {
  4287. fill: #0084FF;
  4288. }
  4289.  
  4290. html[data-theme=dark] .CornerButton:hover .Zi--BackToTop:hover {
  4291. fill: #0084FF;
  4292. }
  4293.  
  4294. html[data-theme=dark] .Main header {
  4295. border-bottom: 1px solid #444;
  4296. }
  4297.  
  4298. html[data-theme=dark] .Main .params section {
  4299. border-bottom: 1px solid #444;
  4300. }
  4301.  
  4302. html[data-theme=dark] .App-root-fNRdG {
  4303. border: 1px solid #444;
  4304. }
  4305.  
  4306. html[data-theme=dark] .Popover-content-fGkPm.Bubble-content-fdv1v {
  4307. border: none !important;
  4308. }
  4309.  
  4310. html[data-theme=dark] .SignFlowHomepage {
  4311. filter: brightness(0.6) !important;
  4312. }
  4313.  
  4314. html[data-theme=dark] .css-zvnmar {
  4315. background: rgb(18, 18, 18);
  4316. }
  4317.  
  4318. html[data-theme=dark] .css-1pk3pp1 {
  4319. background: rgb(18, 18, 18);
  4320. }
  4321.  
  4322. html[data-theme=dark] .SignFlow-captchaContainer.Captcha-chinese {
  4323. background: rgb(18, 18, 18);
  4324. }
  4325.  
  4326. html[data-theme=dark] .SignContainer-inner {
  4327. background: rgb(18, 18, 18);
  4328. }
  4329.  
  4330. html[data-theme=dark] .Login-socialLogin {
  4331. background: rgb(18, 18, 18);
  4332. }
  4333.  
  4334. html[data-theme=dark] .SignContainer-content input {
  4335. background: rgb(18, 18, 18) !important;
  4336. color: white !important
  4337. }
  4338.  
  4339. html[data-theme=dark] .css-1vs8y1g {
  4340. border-top: 1px solid #444;
  4341. }
  4342.  
  4343. html[data-theme=dark] .ZVideoLinkCard-title {
  4344. color: #d3d3d3
  4345. }
  4346.  
  4347. html[data-theme=dark] .ZVideo-title {
  4348. color: #d3d3d3
  4349. }
  4350.  
  4351. html[data-theme=dark] .LinkCard-title {
  4352. color: #d3d3d3
  4353. }
  4354.  
  4355. html[data-theme=dark] .ecommerce-ad-arrow-main-content-des span {
  4356. color: #d3d3d3 !important
  4357. }
  4358.  
  4359. html[data-theme=dark] .ArticleLinkCard-title {
  4360. color: #d3d3d3
  4361. }
  4362.  
  4363. html[data-theme=dark] .ProfileHeader-detail {
  4364. color: #d3d3d3
  4365. }
  4366.  
  4367. html[data-theme=dark] .BlockTitle {
  4368. color: #d3d3d3
  4369. }
  4370.  
  4371. html[data-theme=dark] .FormulaModal-formula img {
  4372. filter: invert(1) !important;
  4373. }
  4374.  
  4375. html[data-theme=dark] .MCNLinkCard-price {
  4376. color: #ff7955cc
  4377. }
  4378.  
  4379. html[data-theme=dark] .MCNLinkCard-button {
  4380. color: #ff7955cc
  4381. }
  4382.  
  4383. html[data-theme=dark] .css-10rt8mt {
  4384. background: #D3D3D3
  4385. }
  4386.  
  4387. html[data-theme=dark] .css-j3ksul {
  4388. color: #D3D3D3
  4389. }
  4390.  
  4391. html[data-theme=dark] .css-13ry121 {
  4392. color: #D3D3D3
  4393. }
  4394.  
  4395. html[data-theme=dark] .css-17sk48h {
  4396. background: #D3D3D3
  4397. }
  4398.  
  4399. html[data-theme=dark] .css-6pi7dw {
  4400. background: #D3D3D3
  4401. }
  4402.  
  4403. html[data-theme=dark] .css-1djl0i {
  4404. color: #D3D3D3
  4405. }
  4406.  
  4407. html[data-theme=dark] .css-ya4ahl {
  4408. color: #D3D3D3
  4409. }
  4410.  
  4411. html[data-theme=dark] .css-rpq3do {
  4412. background: #D3D3D3
  4413. }
  4414.  
  4415. html[data-theme=dark] .css-1fod326 {
  4416. background: #D3D3D3
  4417. }
  4418.  
  4419. html[data-theme=dark] .css-1lywtmg {
  4420. color: #D3D3D3
  4421. }
  4422.  
  4423. html[data-theme=dark] .css-1sxqbyv {
  4424. color: #D3D3D3
  4425. }
  4426.  
  4427. html[data-theme=dark] .css-noi2nm {
  4428. background: #f6f6f699
  4429. }
  4430.  
  4431. html[data-theme=dark] .OpenInAppButton {
  4432. display: none !important
  4433. }
  4434.  
  4435. html[data-theme=dark] .css-1rmxt0r {
  4436. background: rgb(18, 18, 18)
  4437. }
  4438.  
  4439. html[data-theme=dark] .css-17cflso {
  4440. background: rgb(18, 18, 18)
  4441. }
  4442.  
  4443. html[data-theme=dark] .css-148dlpw {
  4444. background: rgb(18, 18, 18)
  4445. }
  4446.  
  4447. html[data-theme=dark] .css-pxupqe {
  4448. background: rgb(18, 18, 18)
  4449. }
  4450.  
  4451. html[data-theme=dark] .css-u6lvao {
  4452. background: rgb(18, 18, 18)
  4453. }
  4454.  
  4455. html[data-theme=dark] .css-u6lvao:before {
  4456. background: rgb(18, 18, 18)
  4457. }
  4458.  
  4459. html[data-theme=dark] .css-u6lvao:after {
  4460. background: rgb(18, 18, 18)
  4461. }
  4462.  
  4463. html[data-theme=dark] .css-i6cwu4 {
  4464. background: rgb(18, 18, 18)
  4465. }
  4466.  
  4467. html[data-theme=dark] .Section-title-6pXgn {
  4468. color: #D3D3D3
  4469. }
  4470.  
  4471. html[data-theme=dark] .NewVipJointCard-info-kVD8s {
  4472. color: #D3D3D3;
  4473. }
  4474.  
  4475. html[data-theme=dark] .SectionTitle-title-hm9BX {
  4476. color: #D3D3D3
  4477. }
  4478.  
  4479. html[data-theme=dark] .OtherPrivileges-vipPrivilegeItem-2wWQh .OtherPrivileges-title-5TbKp {
  4480. color: #D3D3D3
  4481. }
  4482.  
  4483. html[data-theme=dark] .App-vipCard-smjUr {
  4484. filter: brightness(0.6) !important;
  4485. }
  4486.  
  4487. html[data-theme=dark] .App-rightsTitle-mSEk4 {
  4488. color: #D3D3D3
  4489. }
  4490.  
  4491. html[data-theme=dark] .App-vipBookItem-cdBqb {
  4492. color: #D3D3D3
  4493. }
  4494.  
  4495. html[data-theme=dark] .App-contentRightsItem-8pbnH {
  4496. color: #D3D3D3
  4497. }
  4498.  
  4499. html[data-theme=dark] .App-activityItem-9ttFQ {
  4500. color: #D3D3D3
  4501. }
  4502.  
  4503. html[data-theme=dark] .AlbumColumnMagazineWebPage-title-wN4vV {
  4504. color: #D3D3D3
  4505. }
  4506.  
  4507. html[data-theme=dark] .Tabs-tab-rmJ5e.Tabs-active-modB7 {
  4508. color: #D3D3D3
  4509. }
  4510.  
  4511. html[data-theme=dark] .Section-title-pJASK {
  4512. color: #D3D3D3
  4513. }
  4514.  
  4515. html[data-theme=dark] .Contents-chapterCommonTitle-ss2nC {
  4516. color: #D3D3D3
  4517. }
  4518.  
  4519. html[data-theme=dark] .ChapterCard-title-wFeeZ {
  4520. color: #D3D3D3
  4521. }
  4522.  
  4523. html[data-theme=dark] .SkuCell-title-bHvuZ {
  4524. color: #D3D3D3
  4525. }
  4526.  
  4527. html[data-theme=dark] .css-14mfnik {
  4528. background: rgb(27, 27, 27)
  4529. }
  4530.  
  4531. html[data-theme=dark] .GifPlayer.isPlaying .GifPlayer-icon {
  4532. opacity: 0 !important
  4533. }
  4534.  
  4535. html[data-theme=dark] .GifPlayer.isPlaying .GifPlayer-gif2mp4 {
  4536. filter: brightness(0.6) !important
  4537. }
  4538.  
  4539. html[data-theme=dark] .GifPlayer.isPlaying .GifPlayer-gif2mp4+img {
  4540. opacity: 0 !important
  4541. }
  4542.  
  4543. html[data-theme=dark] .css-1sry9ao {
  4544. background: rgb(18, 18, 18)
  4545. }
  4546.  
  4547. html[data-theme=dark] .css-a3trda .css-b1npk4 {
  4548. color: #0084ff
  4549. }
  4550.  
  4551. html[data-theme=dark] .css-1stnbni .css-b1npk4 {
  4552. color: #D3D3D3
  4553. }
  4554.  
  4555. html[data-theme=dark] .css-1stnbni:hover {
  4556. background: #8080801c;
  4557. }
  4558.  
  4559. html[data-theme=dark] .css-1myg3er path {
  4560. fill: #d3d3d3
  4561. }
  4562.  
  4563. html[data-theme=dark] .VersatileModuleRenderer-module-kEzfc .VersatileModuleRenderer-skuTitle-mDcPo {
  4564. color: #D3D3D3
  4565. }
  4566.  
  4567. html[data-theme=dark] .CreatorRecruitHeader-title {
  4568. color: #D3D3D3 !important
  4569. }
  4570.  
  4571. html[data-theme=dark] .css-1b1irul {
  4572. filter: brightness(0.6) !important
  4573. }
  4574.  
  4575. html[data-theme=dark] .css-125jmqu {
  4576. filter: brightness(0.6) !important
  4577. }
  4578.  
  4579. html[data-theme=dark] .css-1y2wwyj {
  4580. filter: brightness(0.6) !important
  4581. }
  4582.  
  4583. html[data-theme=dark] .css-1xxg9xm {
  4584. color: #0084FF
  4585. }
  4586.  
  4587. html[data-theme=dark] .css-17oyyq4:hover {
  4588. color: #0084FF
  4589. }
  4590.  
  4591. html[data-theme=dark] .css-uq88u1 {
  4592. color: #d3d3d3
  4593. }
  4594.  
  4595. html[data-theme=dark] .css-dh57eh {
  4596. color: #d3d3d3
  4597. }
  4598.  
  4599. html[data-theme=dark] .css-1j6wofp {
  4600. color: #d3d3d3
  4601. }
  4602.  
  4603. html[data-theme=dark] .css-jwu58x {
  4604. color: #d3d3d3
  4605. }
  4606.  
  4607. html[data-theme=dark] .css-1851dda {
  4608. color: #d3d3d3
  4609. }
  4610.  
  4611. html[data-theme=dark] .css-1yhwbu2 {
  4612. color: #d3d3d3
  4613. }
  4614.  
  4615. html[data-theme=dark] .css-1xg9zz8 {
  4616. color: #d3d3d3
  4617. }
  4618.  
  4619. html[data-theme=dark] .css-147d5r2 {
  4620. color: #d3d3d3
  4621. }
  4622.  
  4623. html[data-theme=dark] .css-103ktxc {
  4624. color: #d3d3d3
  4625. }
  4626.  
  4627. html[data-theme=dark] .css-1g2163c {
  4628. color: #d3d3d3
  4629. }
  4630.  
  4631. html[data-theme=dark] .css-sfliv9 {
  4632. color: rgb(153, 153, 153);
  4633. }
  4634.  
  4635. html[data-theme=dark] .css-jt1vdv {
  4636. border-bottom: 1px solid #d3d3d3;
  4637. border-color: #d3d3d3
  4638. }
  4639.  
  4640. html[data-theme=dark] .css-1da4iq8 {
  4641. background: rgb(18, 18, 18);
  4642. border: 1px solid #2e2e2e
  4643. }
  4644.  
  4645. html[data-theme=dark] .css-oqge09 {
  4646. background: rgb(18, 18, 18);
  4647. border: 1px solid #2e2e2e
  4648. }
  4649.  
  4650. html[data-theme=dark] .css-1s46lii {
  4651. background: rgb(18, 18, 18);
  4652. }
  4653.  
  4654. html[data-theme=dark] .KfeCollection-GoodsCardV2-detail-title {
  4655. color: #d3d3d3
  4656. }
  4657.  
  4658. html[data-theme=dark] .KfeCollection-GoodsCardV2-cover-label {
  4659. color: black
  4660. }
  4661.  
  4662. html[data-theme=dark] .ColumnMagazineWeb-newBottomBar-idP5i {
  4663. background: rgb(18, 18, 18);
  4664. border-top: 1px solid #2e2e2e
  4665. }
  4666.  
  4667. html[data-theme=dark] svg.NewBottomBar-defaultColor-3FMr6:not([class*="NewBottomBar-active-hvaTK"]) {
  4668. filter: invert(1) brightness(0.6) !important
  4669. }
  4670.  
  4671. html[data-theme=dark] .index-logo-cb3Kk .Image-image-bdKjJ {
  4672. filter: invert(1) brightness(0.6) !important
  4673. }
  4674.  
  4675. html[data-theme=dark] .index-contactCard-gjgfA .index-logo-krbeE .Image-image-bdKjJ {
  4676. filter: invert(1) brightness(0.6) !important
  4677. }
  4678.  
  4679. html[data-theme=dark] .HeaderInfo-root-gnEfo {
  4680. filter: brightness(0.6) !important
  4681. }
  4682.  
  4683. html[data-theme=dark] .AuthorsSection-headerTitle-xjzpp {
  4684. color: #d3d3d3
  4685. }
  4686.  
  4687. html[data-theme=dark] .CatalogModule-title-sggN4 {
  4688. color: #d3d3d3
  4689. }
  4690.  
  4691. html[data-theme=dark] a.UserCell-link-hyWMo {
  4692. color: #d3d3d3
  4693. }
  4694.  
  4695. html[data-theme=dark] .MyShelf-title-qA1gu {
  4696. color: #d3d3d3
  4697. }
  4698.  
  4699. html[data-theme=dark] .RecommendFeed-title-x2nEt {
  4700. color: #d3d3d3
  4701. }
  4702.  
  4703. html[data-theme=dark] .RecommendFeed-skuTitle-otRGK {
  4704. color: #d3d3d3 !important
  4705. }
  4706.  
  4707. html[data-theme=dark] .MemberInfoPanel-userName-boKER {
  4708. color: #d3d3d3 !important
  4709. }
  4710.  
  4711. html[data-theme=dark] .TopNavBar-inner-baxks .TopNavBar-tab-hBAaU a {
  4712. color: #d3d3d3
  4713. }
  4714.  
  4715. .TopNavBar-logoContainer-vDhU2 .TopNavBar-zhihuLogo-jzM1f {
  4716. color: #0084ff
  4717. }
  4718.  
  4719. html[data-theme=dark] .TopNavBar-logoContainer-vDhU2 .TopNavBar-zhihuLogo-jzM1f {
  4720. color: #0084ff
  4721. }
  4722.  
  4723. html[data-theme=dark] .RankingList-header-eSGqm .RankingList-tabList-usmMt .RankingList-tabItem-pTnCd {
  4724. color: #d3d3d3
  4725. }
  4726.  
  4727. html[data-theme=dark] .RankingList-header-eSGqm .RankingList-tabList-usmMt .RankingList-tabItem-pTnCd.RankingList-active-mh1YB {
  4728. color: #ce994f
  4729. }
  4730.  
  4731. html[data-theme=dark] .RankingList-header-eSGqm .RankingList-tabList-usmMt .RankingList-title-nDS4G {
  4732. color: #d3d3d3
  4733. }
  4734.  
  4735. html[data-theme=dark] .RankingList-skuItem-hpJpz .RankingList-title-nDS4G {
  4736. color: #d3d3d3
  4737. }
  4738.  
  4739. html[data-theme=dark] .RankingList-skuItem-hpJpz .RankingList-author-fH328 {
  4740. color: #d3d3d3
  4741. }
  4742.  
  4743. html[data-theme=dark] .SaltItem-title-th5Li {
  4744. color: #d3d3d3
  4745. }
  4746.  
  4747. html[data-theme=dark] .ShelfCell-title-bztZM {
  4748. color: #d3d3d3
  4749. }
  4750.  
  4751. .TopNavBar-root-hektz .TopNavBar-userInfo-kfSJK .TopNavBar-icon-9TVP7 .Zi--Bell path {
  4752. fill: #d3d3d3
  4753. }
  4754.  
  4755. .TopNavBar-root-hektz .TopNavBar-userInfo-kfSJK .TopNavBar-icon-9TVP7 .Zi--Comments path {
  4756. fill: #d3d3d3
  4757. }
  4758.  
  4759. .TopNavBar-root-hektz.TopNavBar-fixMode-29iHi .TopNavBar-userInfo-kfSJK .TopNavBar-icon-9TVP7 .Zi--Bell path {
  4760. fill: black
  4761. }
  4762.  
  4763. .TopNavBar-root-hektz.TopNavBar-fixMode-29iHi .TopNavBar-userInfo-kfSJK .TopNavBar-icon-9TVP7 .Zi--Comments path {
  4764. fill: black
  4765. }
  4766.  
  4767. html[data-theme=dark] .TopNavBar-root-hektz.TopNavBar-fixMode-29iHi .TopNavBar-userInfo-kfSJK .TopNavBar-icon-9TVP7 .Zi--Bell path {
  4768. fill: #8590A6
  4769. }
  4770.  
  4771. html[data-theme=dark] .TopNavBar-root-hektz.TopNavBar-fixMode-29iHi .TopNavBar-userInfo-kfSJK .TopNavBar-icon-9TVP7 .Zi--Comments path {
  4772. fill: #8590A6
  4773. }
  4774.  
  4775. html[data-theme=dark] .RankingList-root-ontG8 {
  4776. background: rgb(18, 18, 18)
  4777. }
  4778.  
  4779. html[data-theme=dark] .ProductCell-title-ar7kK {
  4780. color: #d3d3d3
  4781. }
  4782.  
  4783. html[data-theme=dark] .ProductItemVertical-title-7SkbW {
  4784. color: #d3d3d3
  4785. }
  4786.  
  4787. html[data-theme=dark] .LiveAppointmentItem-title-djRgc {
  4788. color: #d3d3d3
  4789. }
  4790.  
  4791. html[data-theme=dark] .CoverStory-bigTitle-r5fk8 {
  4792. color: #d3d3d3
  4793. }
  4794.  
  4795. html[data-theme=dark] .CarouselBanner-leftTurnPageBtn-jxet9,
  4796. html[data-theme=dark] .CarouselBanner-rightTurnPageBtn-gFDYQ {
  4797. color: #d3d3d3
  4798. }
  4799.  
  4800. html[data-theme=dark] .css-1v0m2e8 {
  4801. color: #d3d3d3
  4802. }
  4803.  
  4804. html[data-theme=dark] .MyShelf-bookCell-d1F4t .MyShelf-bookInfo-rXqus .MyShelf-bookTitle-sYXGP {
  4805. color: #d3d3d3
  4806. }
  4807.  
  4808. html[data-theme=dark] .SuperStarList-title-iem6E {
  4809. color: #d3d3d3
  4810. }
  4811.  
  4812. html[data-theme=dark] .SuperStarList-starCell-b5kon.SuperStarList-active-fqY4e .SuperStarList-name-fXz2f {
  4813. color: #d3d3d3
  4814. }
  4815.  
  4816. html[data-theme=dark] .SuperStarList-starCell-b5kon .SuperStarList-name-fXz2f:hover {
  4817. color: #d3d3d3
  4818. }
  4819.  
  4820. html[data-theme=dark] .MenuBar-root-v61Qh {
  4821. border-bottom: 10px solid rgb(18, 18, 18)
  4822. }
  4823.  
  4824. .Card.css-8z7gkt {
  4825. display: none !important;
  4826. }
  4827.  
  4828. html[data-theme=dark] .ManuscriptTitle-root-vhZzG {
  4829. color: #d3d3d3
  4830. }
  4831.  
  4832. html[data-theme=dark] .ProductCardNew-title-7X4Ff {
  4833. color: #d3d3d3
  4834. }
  4835.  
  4836. html[data-theme=dark] .TopNavBar-inner-baxks .TopNavBar-searchBar-wM9EY .TopNavBar-searchBtn-n4UgZ {
  4837. filter: brightness(0.9) !important
  4838. }
  4839.  
  4840. html[data-theme=dark] .MemberInfoPanel-info-fqJU8 .MemberInfoPanel-memberBtn-9B2nK {
  4841. filter: brightness(0.9) !important
  4842. }
  4843.  
  4844. html[data-theme=dark] .css-1pwpt4d {
  4845. color: #d3d3d3
  4846. }
  4847.  
  4848. html[data-theme=dark] .css-piu9of {
  4849. color: #d3d3d3
  4850. }
  4851.  
  4852. html[data-theme=dark] .css-rk0pq {
  4853. color: #d3d3d3
  4854. }
  4855.  
  4856. html[data-theme=dark] .css-p8hfce {
  4857. color: #d3d3d3
  4858. }
  4859.  
  4860. html[data-theme=dark] .css-kwnxmp {
  4861. color: #d3d3d3
  4862. }
  4863.  
  4864. html[data-theme=dark] .css-bc6idi {
  4865. color: #d3d3d3
  4866. }
  4867.  
  4868. html[data-theme=dark] .css-8u7moq {
  4869. color: #d3d3d3
  4870. }
  4871.  
  4872. html[data-theme=dark] .css-c0lyvn {
  4873. color: #d3d3d3
  4874. }
  4875.  
  4876. html[data-theme=dark] .css-1204lgo {
  4877. color: #d3d3d3
  4878. }
  4879.  
  4880. html[data-theme=dark] .css-17t0kok {
  4881. color: #8590a6
  4882. }
  4883.  
  4884. html[data-theme=dark] .css-1xegbra {
  4885. background-color: #d3d3d3
  4886. }
  4887.  
  4888. html[data-theme=dark] .css-80i0x3 {
  4889. background-color: #d3d3d3
  4890. }
  4891.  
  4892. html[data-theme=dark] .css-1akafz2 {
  4893. background-color: #d3d3d3
  4894. }
  4895.  
  4896. html[data-theme=dark] .css-16zrry9 {
  4897. background-color: rgb(18, 18, 18)
  4898. }
  4899.  
  4900. html[data-theme=dark] .css-ygii7h {
  4901. background-color: rgb(18, 18, 18)
  4902. }
  4903.  
  4904. html[data-theme=dark] .css-1f47p0s {
  4905. border-bottom: 1px solid #444
  4906. }
  4907.  
  4908. html[data-theme=dark] .css-19rbssv {
  4909. border-bottom: 1px solid #444
  4910. }
  4911.  
  4912. html[data-theme=dark] .css-wooxo5 .CreationManage-CreationCard {
  4913. border-top: 1px solid #444
  4914. }
  4915.  
  4916. html[data-theme=dark] .css-90w7z {
  4917. border-color: #444
  4918. }
  4919.  
  4920. html[data-theme=dark] .SkuTitle-skuTitleText-iVc91 {
  4921. color: #d3d3d3 !important
  4922. }
  4923.  
  4924. html[data-theme=dark] .GalleryCell-title-38fBA {
  4925. color: #d3d3d3 !important
  4926. }
  4927.  
  4928. html[data-theme=dark] .GalleryCell-footer-h9wzn {
  4929. color: #d3d3d3 !important
  4930. }
  4931.  
  4932. html[data-theme=dark] .VideoMask-duration-2dQ3k {
  4933. color: #d3d3d3 !important
  4934. }
  4935.  
  4936. .MemberButtonGroup.ProfileButtonGroup.HoverCard-buttons .Button--grey:hover .Zi--Comments path {
  4937. fill: rgb(0, 255, 127)
  4938. }
  4939.  
  4940. .MemberButtonGroup.ProfileButtonGroup.ProfileMain-buttons .Button--grey:hover .Zi--Comments path {
  4941. fill: rgb(0, 255, 127) !important
  4942. }
  4943.  
  4944. html[data-theme=dark] .MemberButtonGroup.ProfileButtonGroup.ProfileHeader-buttons .Button--grey.Button--withIcon.Button--withLabel:hover {
  4945. color: rgb(0, 255, 127) !important
  4946. }
  4947.  
  4948. html[data-theme=dark] .PushNotifications-item {
  4949. color: #d3d3d3 !important
  4950. }
  4951.  
  4952. html[data-theme=dark] .Messages-item {
  4953. color: #d3d3d3
  4954. }
  4955.  
  4956. html[data-theme=dark] .Messages-myMessageTab {
  4957. color: #d3d3d3
  4958. }
  4959.  
  4960. html[data-theme=dark] .Messages-myMessageTab:hover {
  4961. color: #d3d3d3
  4962. }
  4963.  
  4964. html[data-theme=dark] .ChatBoxModal-closeIcon {
  4965. fill: #d3d3d3
  4966. }
  4967.  
  4968. .Notifications-footer>a:nth-child(2):hover {
  4969. color: #0084ff
  4970. }
  4971.  
  4972. html[data-theme=dark] .Notifications-Main>header h1 {
  4973. color: #d3d3d3
  4974. }
  4975.  
  4976. html[data-theme="dark"] .Notifications-Section-header h2 {
  4977. color: #d3d3d3
  4978. }
  4979.  
  4980. html[data-theme=dark] .NotificationList-Item-content {
  4981. color: #d3d3d3
  4982. }
  4983.  
  4984. .Messages-footer .Button:hover {
  4985. color: #0084ff !important
  4986. }
  4987.  
  4988. html[data-theme=dark] .TopSearch-itemLink {
  4989. color: #d3d3d3
  4990. }
  4991.  
  4992. html[data-theme=dark] .RelatedCommodities-subject {
  4993. color: #d3d3d3
  4994. }
  4995.  
  4996. html[data-theme=dark] .SearchTopicHeader-IntroductionWrapper {
  4997. color: #d3d3d3
  4998. }
  4999.  
  5000. html[data-theme=dark] .RichContent-cover-duration {
  5001. color: #d3d3d3
  5002. }
  5003.  
  5004. html[data-theme=dark] .WriteIndex-pageTitle {
  5005. color: #d3d3d3
  5006. }
  5007.  
  5008. html[data-theme=dark] .Club-Search-Name {
  5009. color: #d3d3d3
  5010. }
  5011.  
  5012. html[data-theme=dark] .Club-Search-WebContent .Club-Search-Desc {
  5013. color: #d3d3d3
  5014. }
  5015.  
  5016. html[data-theme=dark] .Search-container .SearchItem-meta {
  5017. color: #d3d3d3
  5018. }
  5019.  
  5020. html[data-theme=dark] .ContentItem-title a:hover .Highlight em {
  5021. color: #6385a6
  5022. }
  5023.  
  5024. html[data-theme=dark] .Club-Search-Name:hover {
  5025. color: #6385a6
  5026. }
  5027.  
  5028. html[data-theme=dark] .Club-Search-Name:hover em {
  5029. color: #6385a6
  5030. }
  5031.  
  5032. html[data-theme=dark] .SearchClubCard-avatar {
  5033. filter: brightness(0.6) !important;
  5034. }
  5035.  
  5036. html[data-theme=dark] .ClubSideTitle-title {
  5037. color: #d3d3d3
  5038. }
  5039.  
  5040. html[data-theme=dark] .ClubInfoCard-title {
  5041. color: #d3d3d3
  5042. }
  5043.  
  5044. html[data-theme=dark] .ClubInfoCard-admins .ClubAdmin-name {
  5045. color: #d3d3d3
  5046. }
  5047.  
  5048. html[data-theme=dark] .Search-container {
  5049. color: #d3d3d3
  5050. }
  5051.  
  5052. html[data-theme=dark] .css-1v840mj {
  5053. background: rgb(18, 18, 18)
  5054. }
  5055.  
  5056. html[data-theme=dark] .css-a9sbyu {
  5057. background: rgb(18, 18, 18)
  5058. }
  5059.  
  5060. html[data-theme=dark] .css-1wof2n {
  5061. background: rgb(18, 18, 18)
  5062. }
  5063.  
  5064. html[data-theme=dark] .css-5abu0r {
  5065. background: rgb(18, 18, 18)
  5066. }
  5067.  
  5068. html[data-theme=dark] .css-6mdg56 {
  5069. background: rgb(18, 18, 18)
  5070. }
  5071.  
  5072. html[data-theme=dark] .css-n7efg0 {
  5073. background: rgb(18, 18, 18)
  5074. }
  5075.  
  5076. html[data-theme=dark] .css-12t64ov {
  5077. background: rgb(18, 18, 18)
  5078. }
  5079.  
  5080. html[data-theme=dark] .css-lpo24q {
  5081. background: rgb(18, 18, 18)
  5082. }
  5083.  
  5084. html[data-theme=dark] .css-mzh2tk {
  5085. background: rgb(18, 18, 18)
  5086. }
  5087.  
  5088. html[data-theme=dark] .css-1vm3b1t {
  5089. background: rgb(18, 18, 18)
  5090. }
  5091.  
  5092. html[data-theme=dark] .css-u8y4hj {
  5093. background: rgb(18, 18, 18)
  5094. }
  5095.  
  5096. html[data-theme=dark] .css-c23k4l {
  5097. background: rgb(18, 18, 18)
  5098. }
  5099.  
  5100. html[data-theme=dark] .css-mjg7l1 {
  5101. background: rgb(18, 18, 18)
  5102. }
  5103.  
  5104. html[data-theme=dark] .css-wcswpi {
  5105. background: rgb(18, 18, 18);
  5106. border: 1px solid rgb(18, 18, 18);
  5107. }
  5108.  
  5109. html[data-theme=dark] .index-bannerItem-3o3D7 {
  5110. background: rgb(18, 18, 18)
  5111. }
  5112.  
  5113. html[data-theme=dark] .LearningRouteCard-wrapper-8Yu5u {
  5114. background: rgb(18, 18, 18) !important
  5115. }
  5116.  
  5117. html[data-theme=dark] .ProfileMenu-root-mkEES {
  5118. background: rgb(18, 18, 18);
  5119. color: #d3d3d3
  5120. }
  5121.  
  5122. html[data-theme=dark] .ProfileMenu-item-iT1iQ:hover {
  5123. background: #1b1b1b
  5124. }
  5125.  
  5126. .ProfileMenu-item-iT1iQ:nth-child(1):hover {
  5127. color: rgb(5, 107, 0)
  5128. }
  5129.  
  5130. .ProfileMenu-item-iT1iQ:nth-child(2):hover {
  5131. color: #0084ff
  5132. }
  5133.  
  5134. .ProfileMenu-item-iT1iQ:nth-child(3):hover {
  5135. color: red
  5136. }
  5137.  
  5138. .ProfileMenu-item-iT1iQ:nth-child(4):hover {
  5139. color: purple
  5140. }
  5141.  
  5142. .ProfileMenu-item-iT1iQ:nth-child(5):hover {
  5143. color: red
  5144. }
  5145.  
  5146. .index-activityTabItemLabel-cPuZy {
  5147. color: #0084ff
  5148. }
  5149.  
  5150. html[data-theme=dark] .LearningRouteCard-pathContent-j3jVv {
  5151. background: rgb(18, 18, 18)
  5152. }
  5153.  
  5154. html[data-theme=dark] .Recruit-buttonFix-placeholder {
  5155. background: rgb(18, 18, 18) !important
  5156. }
  5157.  
  5158. html[data-theme=dark] .CreatorRecruitFooter--fix {
  5159. background: rgb(18, 18, 18)
  5160. }
  5161.  
  5162. html[data-theme=dark] .index-tab-qQX4H {
  5163. border: none
  5164. }
  5165.  
  5166. html[data-theme=dark] .css-17ephyd {
  5167. background: rgb(18, 18, 18);
  5168. border-bottom: 1px solid #444
  5169. }
  5170.  
  5171. html[data-theme=dark] .LearningRouteCard-seeAll-xnUqk .LearningRouteCard-text-jkiXH {
  5172. color: #0084ff
  5173. }
  5174.  
  5175. html[data-theme=dark] .LearningRouteCard-pathItem-xin1f .LearningRouteCard-content-kw2RW .LearningRouteCard-title-do7ND {
  5176. color: #d3d3d3
  5177. }
  5178.  
  5179. html[data-theme=dark] .LearningRouteCard-pathItem-xin1f .LearningRouteCard-content-kw2RW .LearningRouteCard-detail-i7CrR {
  5180. color: #d3d3d3
  5181. }
  5182.  
  5183. html[data-theme=dark] .index-extraLink-eCWnW.index-extraLink-ptmhQ.index-downLoadIcon-ofcPm {
  5184. color: #d3d3d3
  5185. }
  5186.  
  5187. html[data-theme=dark] .index-extraLink-ptmhQ {
  5188. color: #d3d3d3
  5189. }
  5190.  
  5191. html[data-theme=dark] .index-recordCourseTitle-eT8nU {
  5192. color: #d3d3d3
  5193. }
  5194.  
  5195. html[data-theme=dark] .index-root-pqCRt .title .index-hover-mfuGW {
  5196. color: #d3d3d3
  5197. }
  5198.  
  5199. html[data-theme=dark] .index-root-pqCRt .title:hover .index-hover-mfuGW {
  5200. color: #0084ff
  5201. }
  5202.  
  5203. html[data-theme=dark] .index-authorName-qsoxS {
  5204. color: #d3d3d3
  5205. }
  5206.  
  5207. html[data-theme=dark] .css-vl4iaa {
  5208. color: #d3d3d3
  5209. }
  5210.  
  5211. html[data-theme=dark] .css-1ng3oge {
  5212. color: #d3d3d3
  5213. }
  5214.  
  5215. html[data-theme=dark] .css-1myqwel {
  5216. color: #d3d3d3
  5217. }
  5218.  
  5219. html[data-theme=dark] .css-p52k8h {
  5220. color: #d3d3d3
  5221. }
  5222.  
  5223. html[data-theme=dark] .css-25wprl {
  5224. color: #d3d3d3
  5225. }
  5226.  
  5227. html[data-theme=dark] .css-1g4zjtl {
  5228. color: #d3d3d3
  5229. }
  5230.  
  5231. html[data-theme=dark] .css-1m63gvn {
  5232. color: #d3d3d3
  5233. }
  5234.  
  5235. html[data-theme=dark] .css-1k10w8f {
  5236. color: #d3d3d3
  5237. }
  5238.  
  5239. html[data-theme=dark] .css-o7lu8j {
  5240. color: #d3d3d3
  5241. }
  5242.  
  5243. html[data-theme=dark] .css-74475r {
  5244. color: #d3d3d3
  5245. }
  5246.  
  5247. html[data-theme=dark] .css-cgmw6p {
  5248. color: #d3d3d3
  5249. }
  5250.  
  5251. .ContentItem-convertVideoButton:hover {
  5252. color: red
  5253. }
  5254.  
  5255. .ContentItem-convertVideoButton:hover svg {
  5256. fill: red
  5257. }
  5258.  
  5259. html[data-theme=dark] .ContentItem-convertVideoButton:hover {
  5260. color: red
  5261. }
  5262.  
  5263. html[data-theme=dark] .ContentItem-convertVideoButton:hover svg {
  5264. fill: red;
  5265. filter: brightness(1) !important;
  5266. }
  5267.  
  5268. .CommentItemV2-footer .Button:last-of-type {
  5269. margin-left: 20px;
  5270. }
  5271.  
  5272. .CreationCard-ActionButton.css-r3cz0w .Zi--Comments path {
  5273. fill: #8590A6
  5274. }
  5275.  
  5276. .CreationCard-ActionButton.css-r3cz0w:hover .Zi--Comments path {
  5277. fill: #00FF7F
  5278. }
  5279.  
  5280. .css-s8vbhp button:hover {
  5281. color: purple
  5282. }
  5283.  
  5284. .css-s8vbhp button:hover .Zi--More {
  5285. fill: purple
  5286. }
  5287.  
  5288. html[data-theme=light] a.Menu-item.is-active {
  5289. color: black
  5290. }
  5291.  
  5292. .css-90wyh8 {
  5293. color: black !important
  5294. }
  5295.  
  5296. html[data-theme=dark] .css-90wyh8 {
  5297. color: #8590A6 !important
  5298. }
  5299.  
  5300. .css-1m60na {
  5301. color: black !important
  5302. }
  5303.  
  5304. html[data-theme=dark] .css-1m60na {
  5305. color: #8590A6 !important
  5306. }
  5307.  
  5308. .VessayTabs .Tabs-item.active .Tabs-link {
  5309. color: white
  5310. }
  5311.  
  5312. .VessayTabs .Tabs-item.active:after {
  5313. background: white
  5314. }
  5315.  
  5316. .ShareMenu-wechat:hover {
  5317. background: #f6f6f6
  5318. }
  5319.  
  5320. html[data-theme=dark] .ShareMenu-wechat:hover {
  5321. background: #1b1b1b
  5322. }
  5323.  
  5324. .ExploreHeader-tab {
  5325. color: black
  5326. }
  5327.  
  5328. html[data-theme=dark] .ExploreHeader-tab {
  5329. color: #d3d3d3
  5330. }
  5331.  
  5332. .css-1uan5v7 {
  5333. color: black
  5334. }
  5335.  
  5336. html[data-theme=dark] .css-1uan5v7 {
  5337. color: #d3d3d3
  5338. }
  5339.  
  5340. .css-119896g {
  5341. color: #8590A6
  5342. }
  5343.  
  5344. html[data-theme=dark] .css-1bnklpv {
  5345. color: #d3d3d3
  5346. }
  5347.  
  5348. html[data-theme=dark] .css-wh3ya8 {
  5349. color: #d3d3d3
  5350. }
  5351.  
  5352. .Button.unfollow_columns:hover {
  5353. color: #0084ff
  5354. }
  5355.  
  5356. .Button.Tag.flowTag {
  5357. margin: 0px 8px 3px 0px;
  5358. border-radius: 100px;
  5359. border: none;
  5360. padding: 0px;
  5361. width: 52px;
  5362. }
  5363.  
  5364. .Button.Tag.flowTag .Tag-content {
  5365. color: white;
  5366. font-weight: 400
  5367. }
  5368.  
  5369. .TopNavBar-searchBar-wM9EY {
  5370. margin-left: 30px !important
  5371. }
  5372.  
  5373. button.Button:hover .Zi--SquareDots {
  5374. color: #FF8C00
  5375. }
  5376.  
  5377. .css-1x8hcdw {
  5378. -webkit-transition-duration: 0s;
  5379. transition-duration: 0s;
  5380. }
  5381.  
  5382. .css-ug457g {
  5383. -webkit-transition-duration: 0s;
  5384. transition-duration: 0s;
  5385. }
  5386.  
  5387. .css-1f6tgea {
  5388. -webkit-transition-duration: 0s;
  5389. transition-duration: 0s;
  5390. }
  5391.  
  5392. html[data-theme=dark] .css-z3cdac {
  5393. border-bottom: 1px solid #2e2e2e
  5394. }
  5395.  
  5396. html[data-theme=dark] .css-1e9xwcu {
  5397. border: 1px solid #2e2e2e
  5398. }
  5399.  
  5400. html[data-theme=dark] .AnswerForm-footer {
  5401. border: 1px solid #2e2e2e
  5402. }
  5403.  
  5404. html[data-theme=dark] .css-ir23yd .InputLike {
  5405. border: none !important
  5406. }
  5407.  
  5408. html[data-theme=dark] .css-ir23yd {
  5409. border: 1px solid #2e2e2e
  5410. }
  5411.  
  5412. html[data-theme=dark] .css-x0pxoz .InputLike {
  5413. border: none !important
  5414. }
  5415.  
  5416. html[data-theme=dark] .css-i20zrt {
  5417. background: #2e2e2e;
  5418. display: none
  5419. }
  5420.  
  5421. html[data-theme=dark] .css-zadorc {
  5422. background: #2e2e2e
  5423. }
  5424.  
  5425. html[data-theme=dark] .css-16eulm {
  5426. background: #2e2e2e
  5427. }
  5428.  
  5429. html[data-theme=dark] .css-1rffuvb {
  5430. background: #2e2e2e
  5431. }
  5432.  
  5433. html[data-theme=dark] .css-10175to {
  5434. color: #2e2e2e
  5435. }
  5436.  
  5437. html[data-theme=dark] .css-qlh3fm::before {
  5438. border-top: 1px solid #2e2e2e
  5439. }
  5440.  
  5441. html[data-theme=dark] .css-1et71w6::before {
  5442. border-bottom: 1px solid #444
  5443. }
  5444.  
  5445. html[data-theme=dark] .css-1dmyrh6::before {
  5446. border-top: 1px solid #444
  5447. }
  5448.  
  5449. html[data-theme=dark] .css-132sfb2::before {
  5450. border-top: 1px solid #444
  5451. }
  5452.  
  5453. html[data-theme=dark] .css-1qjzmdv {
  5454. background: rgb(18, 18, 18)
  5455. }
  5456.  
  5457. html[data-theme=dark] .css-g3xs10 {
  5458. background: rgb(18, 18, 18)
  5459. }
  5460.  
  5461. html[data-theme=dark] .css-qlh3fm {
  5462. background: rgb(18, 18, 18)
  5463. }
  5464.  
  5465. html[data-theme=dark] .css-1shga26 {
  5466. background: rgb(18, 18, 18)
  5467. }
  5468.  
  5469. html[data-theme=dark] .css-1vk6f8t {
  5470. background: rgb(18, 18, 18)
  5471. }
  5472.  
  5473. html[data-theme=dark] .css-6lfjtn {
  5474. background: rgb(18, 18, 18)
  5475. }
  5476.  
  5477. html[data-theme=dark] .css-qniote-Header {
  5478. background: rgb(18, 18, 18)
  5479. }
  5480.  
  5481. html[data-theme=dark] .AnswerForm-fullscreenScroller {
  5482. background: rgb(18, 18, 18)
  5483. }
  5484.  
  5485. html[data-theme=dark] .AnswerForm-fullscreenContent .AnswerForm-footer {
  5486. background: rgb(18, 18, 18)
  5487. }
  5488.  
  5489. html[data-theme=dark] .css-vurnku {
  5490. color: #d3d3d3
  5491. }
  5492.  
  5493. html[data-theme=dark] .MyShelf-bookCell-oATrk .MyShelf-bookInfo-jchSK .MyShelf-bookTitle-5bHFD {
  5494. color: #d3d3d3
  5495. }
  5496.  
  5497. html[data-theme=dark] .RankingList-skuItem-iDCBE .RankingList-author-dk4vg {
  5498. color: #d3d3d3
  5499. }
  5500.  
  5501. html[data-theme=dark] .RecommendFeed-skuRecommendCell-goXoC .RecommendFeed-skuTitle-86JQc {
  5502. color: #444
  5503. }
  5504.  
  5505. html[data-theme=dark] .RankingList-header-epvWm .RankingList-tabList-dRs8z .RankingList-title-qhXL3 {
  5506. color: #d3d3d3
  5507. }
  5508.  
  5509. html[data-theme=dark] .RankingList-header-epvWm .RankingList-tabList-dRs8z .RankingList-tabItem-hWjTE {
  5510. color: #d3d3d3
  5511. }
  5512.  
  5513. html[data-theme=dark] .SuperStarList-title-9SLN8 {
  5514. color: #d3d3d3
  5515. }
  5516.  
  5517. html[data-theme=dark] .MyShelf-title-dKjJS {
  5518. color: #d3d3d3
  5519. }
  5520.  
  5521. html[data-theme=dark] .ShelfCell-title-v5pbX {
  5522. color: #d3d3d3
  5523. }
  5524.  
  5525. html[data-theme=dark] .RecommendFeed-title-r8118 {
  5526. color: #d3d3d3
  5527. }
  5528.  
  5529. html[data-theme=dark] .css-13brsx3 {
  5530. color: #d3d3d3
  5531. }
  5532.  
  5533. html[data-theme=dark] .SuperStarList-skuCell-8Fyd4 .SuperStarList-skuTitle-rj46b {
  5534. color: #d3d3d3
  5535. }
  5536.  
  5537. html[data-theme=dark] .RankingList-skuItem-iDCBE .RankingList-title-qhXL3 {
  5538. color: #d3d3d3
  5539. }
  5540.  
  5541. html[data-theme=dark] .CarouselBanner-leftTurnPageBtn-4Us1a,
  5542. html[data-theme=dark] .CarouselBanner-rightTurnPageBtn-soR95 {
  5543. color: #444
  5544. }
  5545.  
  5546. html[data-theme=dark] .MemberInfoPanel-info-x6X35 .MemberInfoPanel-userName-vctAu {
  5547. color: #444
  5548. }
  5549.  
  5550. html[data-theme=dark] .MemberInfoPanel-info-x6X35 .MemberInfoPanel-memberBtn-xkU3p {
  5551. filter: brightness(0.6) !important;
  5552. }
  5553.  
  5554. html[data-theme=dark] .SuperStarList-starCell-vgecF.SuperStarList-active-4BdFk .SuperStarList-name-3yW7u {
  5555. color: #444;
  5556. background: #dbaf72
  5557. }
  5558.  
  5559. html[data-theme=dark] .MenuBar-root-rQeFm {
  5560. border-bottom: 10px solid rgb(18, 18, 18)
  5561. }
  5562.  
  5563. html[data-theme=dark] .css-9gcdwe {
  5564. background: rgb(18, 18, 18)
  5565. }
  5566.  
  5567. html[data-theme=dark] .css-dpj044 {
  5568. background: rgb(18, 18, 18)
  5569. }
  5570.  
  5571. .TopNavBar-inner-77oXV .TopNavBar-searchBar-uo31N {
  5572. margin-left: 30px
  5573. }
  5574.  
  5575. html[data-theme=dark] .ZhihuEPub h1,
  5576. html[data-theme=dark] .ZhihuEPub h2,
  5577. html[data-theme=dark] .ZhihuEPub h3,
  5578. html[data-theme=dark] .ZhihuEPub h4,
  5579. html[data-theme=dark] .ZhihuEPub h5,
  5580. html[data-theme=dark] .ZhihuEPub h6 {
  5581. color: #8590A6
  5582. }
  5583.  
  5584. html[data-theme=dark] .ZhihuEPub p {
  5585. color: #8590A6
  5586. }
  5587.  
  5588. html[data-theme=dark] .ZhihuEPubCopyright p {
  5589. color: #8590A6
  5590. }
  5591.  
  5592. html[data-theme=dark] .App-root-r8X6V {
  5593. border: 1px solid rgb(18, 18, 18)
  5594. }
  5595.  
  5596. html[data-theme=dark] .Labels-labelButton-oroWw {
  5597. background: #f6f6f629
  5598. }
  5599.  
  5600. html[data-theme=dark] .css-1sclke5-Label {
  5601. background: #f6f6f629
  5602. }
  5603.  
  5604. html[data-theme=dark] .css-14olo3l {
  5605. background: rgb(18, 18, 18)
  5606. }
  5607.  
  5608. html[data-theme=dark] span.Formula.isEditable {
  5609. filter: invert(1) brightness(0.7) !important;
  5610. }
  5611.  
  5612. html[data-theme=dark] .ztext img[eeimg] {
  5613. filter: invert(1) brightness(0.7) !important;
  5614. }
  5615.  
  5616. html[data-theme=dark] textarea.Input {
  5617. color: #d3d3d3
  5618. }
  5619.  
  5620. .AnswerForm-fullscreenContent .AnswerForm-container {
  5621. max-width: 1000px
  5622. }
  5623.  
  5624. .AnswerForm-fullscreenContent .Editable-toolbar.css-1yorl4t {
  5625. width: 1000px;
  5626. }
  5627.  
  5628. .AnswerForm-fullscreenContent .Dropzone.Editable-content.RichText.RichText--editable.RichText--clearBoth.ztext {
  5629. width: 1000px;
  5630. }
  5631.  
  5632. .AnswerForm-fullscreenContent .AnswerForm-footer {
  5633. margin-left: 23px
  5634. }
  5635.  
  5636. .AnswerForm-fullscreenContent .css-1vk6f8t {
  5637. max-width: 1040px;
  5638. width: 1040px;
  5639. }
  5640.  
  5641. .AnswerForm-fullscreenContent .css-6lfjtn {
  5642. max-width: 1040px;
  5643. width: 1040px;
  5644. }
  5645.  
  5646. html[data-theme=dark] .css-q78bto {
  5647. color: #d3d3d3
  5648. }
  5649.  
  5650. html[data-theme=dark] .css-1bstlqk {
  5651. color: #d3d3d3
  5652. }
  5653.  
  5654. html[data-theme=dark] .css-16p5ii9 {
  5655. color: #d3d3d3
  5656. }
  5657.  
  5658. html[data-theme=dark] .SearchQustion-item-title {
  5659. color: #d3d3d3
  5660. }
  5661.  
  5662. html[data-theme=dark] .css-1gnydn2 {
  5663. background: rgb(18, 18, 18)
  5664. }
  5665.  
  5666. html[data-theme=dark] .css-1ravq34 {
  5667. background: rgb(18, 18, 18)
  5668. }
  5669.  
  5670. html[data-theme=dark] .css-iebf30 {
  5671. background: rgb(18, 18, 18)
  5672. }
  5673.  
  5674. .RichText-MCNLinkCardContainer {
  5675. display: none !important
  5676. }
  5677.  
  5678. .RichText-ADLinkCardContainer {
  5679. display: none !important
  5680. }
  5681.  
  5682. .css-zxzkug {
  5683. border: none !important
  5684. }
  5685.  
  5686. .AppHeader-userInfo .Popover button div {
  5687. border: none !important
  5688. }
  5689.  
  5690. .AppHeaderProfileMenu-item.css-1e76yen {
  5691. color: black
  5692. }
  5693.  
  5694. .css-arjme8 .AnswerForm-editor .RichText--editable {
  5695. padding: 12px 20px;
  5696. }
  5697.  
  5698. html[data-theme=dark] .AppHeaderProfileMenu-item.css-1e76yen {
  5699. color: #d3d3d3
  5700. }
  5701.  
  5702. html[data-theme=dark] .css-13ooiry {
  5703. background: rgb(18, 18, 18)
  5704. }
  5705.  
  5706. html[data-theme=dark] .css-sfrmtq {
  5707. background: rgb(18, 18, 18)
  5708. }
  5709.  
  5710. html[data-theme=dark] .css-1ql7em1 {
  5711. background: rgb(18, 18, 18)
  5712. }
  5713.  
  5714. html[data-theme=dark] .css-muf5zb {
  5715. background: rgb(18, 18, 18)
  5716. }
  5717.  
  5718. html[data-theme=dark] .css-h2vgdz {
  5719. background: rgb(18, 18, 18)
  5720. }
  5721.  
  5722. html[data-theme=dark] .css-1kjuah9 {
  5723. background: rgb(18, 18, 18)
  5724. }
  5725.  
  5726. html[data-theme=dark] .css-1pfsia3 {
  5727. background: rgb(18, 18, 18);
  5728. padding-left: 0px;
  5729. padding-right: 0px
  5730. }
  5731.  
  5732. .css-1pfsia3 {
  5733. padding-left: 0px;
  5734. padding-right: 0px
  5735. }
  5736.  
  5737. html[data-theme=dark] .css-jis2as {
  5738. background: rgb(18, 18, 18);
  5739. border: 1px solid #444;
  5740. padding: 20px 0px 0px 0px;
  5741. }
  5742.  
  5743. .css-jis2as {
  5744. padding: 20px 0px 0px 0px;
  5745. }
  5746.  
  5747. html[data-theme=dark] .CollectionDetailPageItem .ContentItem-actions {
  5748. margin: 0 -15px -10px;
  5749. }
  5750.  
  5751. html[data-theme=dark] .css-1k7a5k5 {
  5752. background: rgb(18, 18, 18);
  5753. border: 1px solid #444;
  5754. }
  5755.  
  5756. html[data-theme=dark] .css-6tr06j {
  5757. background: rgb(18, 18, 18);
  5758. border-top: 1px solid #444;
  5759. }
  5760.  
  5761. html[data-theme=dark] .css-1jly315 {
  5762. background: rgb(18, 18, 18);
  5763. color: #d3d3d3;
  5764. border: none;
  5765. margin-left: 20px
  5766. }
  5767.  
  5768. html[data-theme=dark] .css-1wj5qng {
  5769. background: rgb(18, 18, 18);
  5770. color: #d3d3d3;
  5771. }
  5772.  
  5773. html[data-theme=dark] .css-58rhkd {
  5774. background: rgb(18, 18, 18);
  5775. color: #d3d3d3;
  5776. border-bottom: 1px solid #444;
  5777. }
  5778.  
  5779. html[data-theme=dark] .css-1q919rp {
  5780. background: rgb(18, 18, 18);
  5781. color: #d3d3d3;
  5782. }
  5783.  
  5784. html[data-theme=dark] .css-1fjt1kp {
  5785. background: rgb(18, 18, 18);
  5786. color: #d3d3d3;
  5787. }
  5788.  
  5789. .css-1jly315 {
  5790. margin-left: 20px
  5791. }
  5792.  
  5793. .css-ae93cn {
  5794. margin: 0px 0px 0px 20px
  5795. }
  5796.  
  5797. .css-be2u3 {
  5798. margin: 0px 0px 0px 10px
  5799. }
  5800.  
  5801. html[data-theme=dark] .css-dvxtzn {
  5802. color: #d3d3d3
  5803. }
  5804.  
  5805. html[data-theme=dark] .css-ae93cn {
  5806. color: #d3d3d3
  5807. }
  5808.  
  5809. html[data-theme=dark] .css-1nj8b26 {
  5810. color: #d3d3d3
  5811. }
  5812.  
  5813. html[data-theme=dark] .css-16u8gs4 {
  5814. color: #d3d3d3
  5815. }
  5816.  
  5817. html[data-theme=dark] .css-1wi0qk8 {
  5818. box-shadow: #444 0px -0.5px 0px 0px inset
  5819. }
  5820.  
  5821. html[data-theme=dark] .css-sfrmtq {
  5822. border-bottom: 1px solid #444;
  5823. }
  5824.  
  5825. html[data-theme=dark] .css-1js8um3.Button.Button--plain:hover {
  5826. background: #4444449e;
  5827. }
  5828.  
  5829. html[data-theme=dark] .css-k5tfim.Button.Button--plain:hover {
  5830. background: #4444449e;
  5831. }
  5832.  
  5833. html[data-theme=dark] .css-suv4d2.Button.Button--plain:hover {
  5834. background: #4444449e;
  5835. }
  5836.  
  5837. html[data-theme=dark] .css-tg2k1h.Button.Button--plain {
  5838. color: #d3d3d3;
  5839. }
  5840.  
  5841. html[data-theme=dark] .css-tg2k1h.Button.Button--plain:hover {
  5842. background: #4444449e;
  5843. color: #d3d3d3;
  5844. }
  5845.  
  5846. html[data-theme=dark] .css-bq0zzv {
  5847. border-top: 1px solid #444;
  5848. }
  5849.  
  5850. html[data-theme=dark] .css-1r0kkal {
  5851. border-bottom: 1px solid #444;
  5852. }
  5853.  
  5854. html[data-theme=dark] .css-1zj9li {
  5855. border-bottom: 1px solid #444;
  5856. }
  5857.  
  5858. html[data-theme=dark] .Avatar {
  5859. background: #fff
  5860. }
  5861.  
  5862. html[data-theme=dark] .css-19v79p5 {
  5863. background: rgb(18, 18, 18);
  5864. }
  5865.  
  5866. html[data-theme=dark] .css-10fqe38 {
  5867. background: rgb(18, 18, 18);
  5868. }
  5869.  
  5870. html[data-theme=dark] .css-sdgtgb {
  5871. background: rgb(18, 18, 18);
  5872. }
  5873.  
  5874. html[data-theme=dark] .css-1r0kkal {
  5875. background: rgb(18, 18, 18);
  5876. }
  5877.  
  5878. html[data-theme=dark] .css-tgvbkv {
  5879. background: rgb(18, 18, 18);
  5880. }
  5881.  
  5882. html[data-theme=dark] .css-1envny0 {
  5883. background: rgb(18, 18, 18);
  5884. }
  5885.  
  5886. html[data-theme=dark] .EditorHelpDoc {
  5887. background: rgb(18, 18, 18);
  5888. }
  5889.  
  5890. html[data-theme=dark] .css-p7qmtz {
  5891. background: rgb(18, 18, 18);
  5892. }
  5893.  
  5894. html[data-theme=dark] .css-1aryoh2 {
  5895. background: rgb(18, 18, 18);
  5896. }
  5897.  
  5898. html[data-theme=dark] .CreatorSalt-personal-information .CreatorSalt-modal-tips {
  5899. background: rgb(18, 18, 18);
  5900. }
  5901.  
  5902. html[data-theme=dark] .css-8br8qd {
  5903. background: rgb(18, 18, 18);
  5904. color: #8590A6;
  5905. border: 2px solid #2e2e2e;
  5906. }
  5907.  
  5908. html[data-theme=dark] .css-o1wuhr {
  5909. background: rgb(18, 18, 18);
  5910. color: #8590A6;
  5911. border: 2px solid #2e2e2e;
  5912. }
  5913.  
  5914. html[data-theme=dark] .css-gifp1u {
  5915. background: rgb(18, 18, 18);
  5916. color: #d3d3d3;
  5917. border: 1px solid #8590a65c;
  5918. }
  5919.  
  5920. html[data-theme=dark] .css-18ve2gf {
  5921. background: rgb(18, 18, 18);
  5922. color: #8590A6;
  5923. border-bottom: 1px solid #2e2e2e;
  5924. }
  5925.  
  5926. html[data-theme=dark] .css-1niwbj7 {
  5927. color: #d3d3d3
  5928. }
  5929.  
  5930. html[data-theme=dark] .css-15etoc5 {
  5931. color: #d3d3d3
  5932. }
  5933.  
  5934. html[data-theme=dark] .css-1trd12v {
  5935. color: #d3d3d3
  5936. }
  5937.  
  5938. html[data-theme=dark] .css-1e8kdsc {
  5939. color: #d3d3d3
  5940. }
  5941.  
  5942. html[data-theme=dark] .css-ibcizu {
  5943. color: #d3d3d3
  5944. }
  5945.  
  5946. html[data-theme=dark] .css-111m6w7 {
  5947. color: #d3d3d3
  5948. }
  5949.  
  5950. html[data-theme=dark] .css-1ft9ymu {
  5951. color: #d3d3d3
  5952. }
  5953.  
  5954. html[data-theme=dark] .css-g03cqe {
  5955. color: #d3d3d3
  5956. }
  5957.  
  5958. html[data-theme=dark] .css-1ak5q6x {
  5959. color: #d3d3d3
  5960. }
  5961.  
  5962. html[data-theme=dark] .css-1z0ztic {
  5963. color: #d3d3d3
  5964. }
  5965.  
  5966. html[data-theme=dark] .css-1iw0hlv {
  5967. color: #d3d3d3
  5968. }
  5969.  
  5970. html[data-theme=dark] .css-1nd7dqm {
  5971. color: #d3d3d3
  5972. }
  5973.  
  5974. html[data-theme=dark] .css-1t9bp9f {
  5975. color: #d3d3d3
  5976. }
  5977.  
  5978. .css-1t9bp9f {
  5979. color: black
  5980. }
  5981.  
  5982. html[data-theme=dark] .css-4c3rcz svg {
  5983. fill: #d3d3d3 !important
  5984. }
  5985.  
  5986. html[data-theme=dark] .Creator-QuestionShared-title.css-1m2h1o9 {
  5987. color: #d3d3d3
  5988. }
  5989.  
  5990. .css-ot0irg {
  5991. margin: 0px 0px 0px 20px !important
  5992. }
  5993.  
  5994. /*.Menu.AnswerItem-selfMenu{display:none!important}*/
  5995. .Menu.QuestionHeader-menu {
  5996. display: none !important
  5997. }
  5998.  
  5999. .TopNavBar-vectorIcon-73v25 {
  6000. display: none !important
  6001. }
  6002.  
  6003. input.Input.setfont.ariafont14 {
  6004. background: transparent !important
  6005. }
  6006.  
  6007. .HotItem:hover .HotItem-metrics {
  6008. color: #ff0000d6
  6009. }
  6010.  
  6011. html[data-theme=dark] .Header-module-title-1Q5e {
  6012. color: #d3d3d3
  6013. }
  6014.  
  6015. html[data-theme=dark] css-3dzvwq {
  6016. color: #d3d3d3
  6017. }
  6018.  
  6019. html[data-theme=dark] .css-1bj56ke {
  6020. color: #d3d3d3
  6021. }
  6022.  
  6023. html[data-theme=dark] .css-1nne2a7 {
  6024. color: #d3d3d3
  6025. }
  6026.  
  6027. html[data-theme=dark] .css-18b1ycz {
  6028. color: #d3d3d3
  6029. }
  6030.  
  6031. html[data-theme=dark] .css-kbzfrw {
  6032. color: #d3d3d3
  6033. }
  6034.  
  6035. html[data-theme=dark] .css-1hj35rq {
  6036. color: #d3d3d3
  6037. }
  6038.  
  6039. html[data-theme=dark] .css-13erwii {
  6040. color: #d3d3d3
  6041. }
  6042.  
  6043. html[data-theme=dark] .css-jzr1wa {
  6044. color: #d3d3d3
  6045. }
  6046.  
  6047. html[data-theme=dark] .css-1j9cunp {
  6048. color: #d3d3d3
  6049. }
  6050.  
  6051. html[data-theme=dark] .css-10abirk {
  6052. color: #d3d3d3
  6053. }
  6054.  
  6055. html[data-theme=dark] .css-1hwbgi1 {
  6056. color: #d3d3d3
  6057. }
  6058.  
  6059. html[data-theme=dark] .css-l22qv5 {
  6060. color: #d3d3d3
  6061. }
  6062.  
  6063. html[data-theme=dark] .css-1gip1fb {
  6064. color: #d3d3d3
  6065. }
  6066.  
  6067. html[data-theme=dark] [class*="GotoAppDialog-line_"] {
  6068. color: #d3d3d3
  6069. }
  6070.  
  6071. html[data-theme=dark] .GotoAppDialog-triangle-gNmhi {
  6072. border-top-color: #d3d3d3
  6073. }
  6074.  
  6075. html[data-theme=dark] .GotoAppDialog-triangle_circle-hFW6W {
  6076. background: #d3d3d3
  6077. }
  6078.  
  6079. html[data-theme=dark] .GotoAppDialog-qrcode-u9uCN {
  6080. background: #d3d3d3
  6081. }
  6082.  
  6083. html[data-theme=dark] .HeaderInfo-title-h6ouo {
  6084. color: #d3d3d3
  6085. }
  6086.  
  6087. html[data-theme=dark] .Section-title-7anGr {
  6088. color: #d3d3d3
  6089. }
  6090.  
  6091. html[data-theme=dark] .AuthorsSection-headerTitle-4NeB7 {
  6092. color: #d3d3d3
  6093. }
  6094.  
  6095. html[data-theme=dark] .ReviewsList-title-isoCs {
  6096. color: #d3d3d3
  6097. }
  6098.  
  6099. html[data-theme=dark] a.UserCell-link-mRcUN {
  6100. color: #d3d3d3
  6101. }
  6102.  
  6103. html[data-theme=dark] .CatalogModule-title-9caZz {
  6104. color: #d3d3d3
  6105. }
  6106.  
  6107. html[data-theme=dark] .BookItem-title-nTgtT {
  6108. color: #d3d3d3
  6109. }
  6110.  
  6111. html[data-theme=dark] .ReviewInfo-reviewCount-3Sk8Z {
  6112. color: #d3d3d3
  6113. }
  6114.  
  6115. html[data-theme=dark] .Interpreters-title-hCj2x {
  6116. color: #d3d3d3
  6117. }
  6118.  
  6119. html[data-theme=dark] .SkuCell-title-9LGVz {
  6120. color: #d3d3d3
  6121. }
  6122.  
  6123. html[data-theme=dark] .QuestionItem-title-3XX9w {
  6124. color: #d3d3d3
  6125. }
  6126.  
  6127. html[data-theme=dark] .UserCell-name-vkTkJ {
  6128. color: #d3d3d3 !important
  6129. }
  6130.  
  6131. html[data-theme=dark] .UserCell-desc-ety4W {
  6132. color: #d3d3d3 !important
  6133. }
  6134.  
  6135. html[data-theme=dark] .css-169dic9 {
  6136. color: #d3d3d3 !important
  6137. }
  6138.  
  6139. html[data-theme=dark] .css-r7nsay {
  6140. color: #d3d3d3 !important
  6141. }
  6142.  
  6143. html[data-theme=dark] .NewHeader-module-title--1-3Xu3 {
  6144. color: #d3d3d3 !important
  6145. }
  6146.  
  6147. html[data-theme=dark] .ManuscriptTitle-root-pE6Xx {
  6148. color: #d3d3d3 !important
  6149. }
  6150.  
  6151. html[data-theme=dark] .ProductCardNew-title-rymdz {
  6152. color: #d3d3d3 !important
  6153. }
  6154.  
  6155. html[data-theme=dark] .BookInfo-section-uWdft .BookInfo-title-88mBY {
  6156. color: #d3d3d3
  6157. }
  6158.  
  6159. html[data-theme=dark] .SearchBar-input input.Input {
  6160. color: #d3d3d3 !important
  6161. }
  6162.  
  6163. html[data-theme=dark] .RecommendFeed-skuRecommendCell-goXoC .RecommendFeed-skuTitle-86JQc {
  6164. color: #d3d3d3
  6165. }
  6166.  
  6167. html[data-theme=dark] .css-uliqdc .css-0.setfont.ariafont15 {
  6168. color: #d3d3d3
  6169. }
  6170.  
  6171. html[data-theme=dark] .NewBottomBar-defaultColor-9kLGw path:nth-child(2) {
  6172. fill: #d3d3d3
  6173. }
  6174.  
  6175. html[data-theme=dark] .NewBottomBar-root-dVXzD {
  6176. background: rgb(18, 18, 18);
  6177. }
  6178.  
  6179. html[data-theme=dark] .css-yhjwoe {
  6180. background: rgb(18, 18, 18);
  6181. }
  6182.  
  6183. html[data-theme=dark] .css-13dk2dh {
  6184. background: rgb(18, 18, 18);
  6185. }
  6186.  
  6187. html[data-theme=dark] .css-1crdb1y {
  6188. background: rgb(18, 18, 18);
  6189. }
  6190.  
  6191. html[data-theme=dark] .css-1sasmtd .css-vurnku {
  6192. background: rgb(18, 18, 18);
  6193. }
  6194.  
  6195. html[data-theme=dark] .css-70dlgi {
  6196. background: rgb(18, 18, 18);
  6197. }
  6198.  
  6199. html[data-theme=dark] .css-42epbo {
  6200. background: rgb(18, 18, 18);
  6201. }
  6202.  
  6203. html[data-theme=dark] .css-v48dmn {
  6204. background: rgb(18, 18, 18);
  6205. }
  6206.  
  6207. html[data-theme=dark] .css-jlyj5p {
  6208. background: rgb(18, 18, 18);
  6209. }
  6210.  
  6211. html[data-theme=dark] .css-ndqbqd {
  6212. background: rgb(18, 18, 18);
  6213. }
  6214.  
  6215. html[data-theme=dark] .css-g7m146 {
  6216. background: rgb(18, 18, 18);
  6217. }
  6218.  
  6219. html[data-theme=dark] .css-1nu6k5h {
  6220. background: rgb(18, 18, 18);
  6221. }
  6222.  
  6223. html[data-theme=dark] .css-6m0gz1 {
  6224. background: rgb(18, 18, 18);
  6225. }
  6226.  
  6227. html[data-theme=dark] .css-gay8qr {
  6228. background: rgb(18, 18, 18);
  6229. }
  6230.  
  6231. html[data-theme=dark] .css-1gip1fb {
  6232. background: rgb(18, 18, 18);
  6233. }
  6234.  
  6235. html[data-theme=dark] .css-1gvsmgz {
  6236. background: rgb(18, 18, 18);
  6237. }
  6238.  
  6239. html[data-theme=dark] .css-1onq0ea {
  6240. background: rgb(18, 18, 18);
  6241. }
  6242.  
  6243. html[data-theme=dark] .css-1k3jzd0 {
  6244. background: rgb(18, 18, 18);
  6245. }
  6246.  
  6247. html[data-theme=dark] .css-1sgk1dw {
  6248. background: rgb(18, 18, 18);
  6249. }
  6250.  
  6251. html[data-theme=dark] .css-blkyql {
  6252. background: rgb(18, 18, 18);
  6253. }
  6254.  
  6255. html[data-theme=dark] .css-1h84h63 {
  6256. background: rgb(18, 18, 18);
  6257. }
  6258.  
  6259. html[data-theme=dark] .css-4fbeq5 {
  6260. background: rgb(18, 18, 18);
  6261. }
  6262.  
  6263. html[data-theme=dark] .css-1kyqks8 {
  6264. background: rgb(18, 18, 18);
  6265. }
  6266.  
  6267. html[data-theme=dark] .css-geku0 {
  6268. background: rgb(18, 18, 18);
  6269. }
  6270.  
  6271. html[data-theme=dark] .css-f955pw {
  6272. background: rgb(18, 18, 18);
  6273. }
  6274.  
  6275. html[data-theme=dark] .css-pslzz3 {
  6276. background: rgb(18, 18, 18);
  6277. }
  6278.  
  6279. html[data-theme=dark] .css-19dx6uk {
  6280. background: rgb(18, 18, 18);
  6281. }
  6282.  
  6283. html[data-theme=dark] .css-xqep55 {
  6284. background: rgb(18, 18, 18);
  6285. }
  6286.  
  6287. html[data-theme=dark] .css-1l6scuv {
  6288. background: rgb(18, 18, 18);
  6289. }
  6290.  
  6291. html[data-theme=dark] .css-1vwsb96 {
  6292. background: rgb(18, 18, 18);
  6293. }
  6294.  
  6295. html[data-theme=dark] .css-2vw1x6 {
  6296. background: rgb(18, 18, 18);
  6297. }
  6298.  
  6299. html[data-theme=dark] .css-vsscmp {
  6300. background: rgb(18, 18, 18);
  6301. }
  6302.  
  6303. html[data-theme=dark] .css-2kn3ar {
  6304. background: rgb(18, 18, 18);
  6305. }
  6306.  
  6307. html[data-theme=dark] .css-1r9j229 {
  6308. background: rgb(18, 18, 18);
  6309. }
  6310.  
  6311. html[data-theme=dark] .css-jukrrm {
  6312. background: rgb(18, 18, 18);
  6313. }
  6314.  
  6315. html[data-theme=dark] .css-1k8sxfm {
  6316. background: rgb(18, 18, 18);
  6317. }
  6318.  
  6319. html[data-theme=dark] .css-qc26up {
  6320. background: rgb(18, 18, 18);
  6321. }
  6322.  
  6323. html[data-theme=dark] .css-1pd8hyb {
  6324. background: rgb(18, 18, 18);
  6325. }
  6326.  
  6327. html[data-theme=dark] .css-99cxhp {
  6328. background: rgb(18, 18, 18);
  6329. }
  6330.  
  6331. html[data-theme=dark] .css-lmhi8a {
  6332. background: rgb(18, 18, 18);
  6333. }
  6334.  
  6335. html[data-theme=dark] .css-jpzy4w {
  6336. background: rgb(18, 18, 18);
  6337. }
  6338.  
  6339. html[data-theme=dark] .css-17oyyq4 {
  6340. background: rgb(18, 18, 18);
  6341. }
  6342.  
  6343. html[data-theme=dark] .css-rtxt89 {
  6344. background: rgb(18, 18, 18);
  6345. }
  6346.  
  6347. html[data-theme=dark] .css-uog1ui {
  6348. background: rgb(18, 18, 18);
  6349. }
  6350.  
  6351. html[data-theme=dark] .css-t65k75 {
  6352. background: rgb(18, 18, 18);
  6353. }
  6354.  
  6355. html[data-theme=dark] .css-805ti0 {
  6356. background: rgb(18, 18, 18);
  6357. }
  6358.  
  6359. html[data-theme=dark] .css-1gg5c0d {
  6360. background: rgb(18, 18, 18);
  6361. }
  6362.  
  6363. html[data-theme=dark] .css-1pw1ln {
  6364. background: rgb(18, 18, 18);
  6365. }
  6366.  
  6367. html[data-theme=dark] .css-ibhcpf {
  6368. background: rgb(18, 18, 18);
  6369. }
  6370.  
  6371. html[data-theme=dark] .Learned-tab-9Lce5 .Learned-tabTitle-j1ygz {
  6372. background: rgb(18, 18, 18);
  6373. }
  6374.  
  6375. html[data-theme=dark] .PcContentBought-root-bRUMJ {
  6376. background: rgb(18, 18, 18);
  6377. }
  6378.  
  6379. html[data-theme=dark] .index-learningRecord-eGQjv {
  6380. background: rgb(18, 18, 18);
  6381. }
  6382.  
  6383. html[data-theme=dark] .StickerPopover {
  6384. background: rgb(18, 18, 18);
  6385. }
  6386.  
  6387. html[data-theme=dark] .StickerPopoverArrow {
  6388. background: rgb(18, 18, 18);
  6389. }
  6390.  
  6391. html[data-theme=dark] .ImgContainer-Bg {
  6392. background: rgb(18, 18, 18);
  6393. }
  6394.  
  6395. html[data-theme=dark] .QuestionWaiting-typesTopper {
  6396. background: rgb(18, 18, 18);
  6397. }
  6398.  
  6399. html[data-theme=dark] .Achievement-userRecord-c53Uo .Achievement-userInfo-djuAz {
  6400. background: rgb(18, 18, 18);
  6401. }
  6402.  
  6403. html[data-theme=dark] .Achievement-userRecord-c53Uo .Achievement-card-vZ9YC {
  6404. background: rgb(18, 18, 18);
  6405. color: #d3d3d3
  6406. }
  6407.  
  6408. html[data-theme=dark] .Tab-tab-b9fvk .Tab-tabTitle-nrMPz {
  6409. background: rgb(18, 18, 18);
  6410. }
  6411.  
  6412. html[data-theme=dark] .Tab-tab-b9fvk .Tab-placeHolder-2QhHS {
  6413. background: rgb(18, 18, 18);
  6414. }
  6415.  
  6416. html[data-theme=dark] .Structure-structure-PMEqr {
  6417. background: rgb(18, 18, 18);
  6418. }
  6419.  
  6420. html[data-theme=dark] .Structure-structure-PMEqr .Structure-item-os59r {
  6421. background: rgb(18, 18, 18);
  6422. }
  6423.  
  6424. html[data-theme=dark] .LecturerCard-lectureCardWrapper-qnnTg {
  6425. background: rgb(18, 18, 18);
  6426. }
  6427.  
  6428. html[data-theme=dark] .PcContent-coverFix-3T97g {
  6429. background: rgb(18, 18, 18);
  6430. }
  6431.  
  6432. html[data-theme=dark] .Article-article-6PZ5y .Article-header-eNnYf {
  6433. background: rgb(18, 18, 18);
  6434. }
  6435.  
  6436. html[data-theme=dark] .VideoCourseCard-videoCourseCard-mNnq8 .VideoCourseCard-cover-eitUq {
  6437. background: rgb(18, 18, 18);
  6438. }
  6439.  
  6440. html[data-theme=dark] .PcContent-content-9URDE .PcContent-learningRecord-mAzPm {
  6441. background: rgb(18, 18, 18);
  6442. }
  6443.  
  6444. html[data-theme=dark] .LearningPathWayCard-pathItem-iv5Ey {
  6445. background: rgb(18, 18, 18);
  6446. }
  6447.  
  6448. html[data-theme=dark] .VideoCourseList-title-i5Gf5 {
  6449. background: rgb(18, 18, 18);
  6450. }
  6451.  
  6452. html[data-theme=dark] .PcContent-root-eFGC1 {
  6453. background: rgb(18, 18, 18);
  6454. }
  6455.  
  6456. .EpisodeList-duration-vPSzj {
  6457. color: #0084ff
  6458. }
  6459.  
  6460. html[data-theme=dark] .Achievement-userRecord-c53Uo .Achievement-userInfo-djuAz img {
  6461. background: white
  6462. }
  6463.  
  6464. html[data-theme=dark] .EpisodeList-duration-vPSzj {
  6465. background: rgb(18, 18, 18);
  6466. color: #0084ff
  6467. }
  6468.  
  6469. html[data-theme=dark] .EpisodeList-sectionItem-5wzFz {
  6470. background: rgb(18, 18, 18);
  6471. }
  6472.  
  6473. html[data-theme=dark] .EpisodeList-chapterTitle-koA6R {
  6474. background: rgb(18, 18, 18);
  6475. }
  6476.  
  6477. html[data-theme=dark] .EpisodeList-episodeListCon-dhDT7 {
  6478. background: rgb(18, 18, 18);
  6479. }
  6480.  
  6481. html[data-theme=dark] .index-content-jNRgg {
  6482. background: rgb(18, 18, 18);
  6483. }
  6484.  
  6485. html[data-theme=dark] .index-tabWrap-4Smyx {
  6486. background: rgb(18, 18, 18);
  6487. border: 1px solid #444
  6488. }
  6489.  
  6490. html[data-theme=dark] .index-tabList-3wASC {
  6491. background: rgb(18, 18, 18);
  6492. }
  6493.  
  6494. html[data-theme=dark] .css-1ulkprw::before {
  6495. background: rgb(18, 18, 18);
  6496. }
  6497.  
  6498. html[data-theme=dark] .css-1ulkprw {
  6499. background: rgb(18, 18, 18);
  6500. border-bottom: 1px solid #2e2e2e;
  6501. }
  6502.  
  6503. html[data-theme=dark] .css-1c1uom {
  6504. background: rgb(18, 18, 18);
  6505. border: 1px solid #2e2e2e;
  6506. }
  6507.  
  6508. html[data-theme=dark] .css-1j144gx {
  6509. background: #9e9e9e;
  6510. }
  6511.  
  6512. html[data-theme=dark] .css-n0ut2q {
  6513. background: #0084FF;
  6514. }
  6515.  
  6516. html[data-theme=dark] .css-1eddc7k {
  6517. background: #d3d3d3;
  6518. }
  6519.  
  6520. html[data-theme=dark] .css-1ne387d {
  6521. background: rgb(18, 18, 18);
  6522. }
  6523.  
  6524. html[data-theme=dark] .css-1lb5y3y {
  6525. background: rgb(18, 18, 18);
  6526. }
  6527.  
  6528. html[data-theme=dark] .css-1bi2006 {
  6529. background: rgb(18, 18, 18);
  6530. animation: none
  6531. }
  6532.  
  6533. html[data-theme=dark] .css-1w5juwq {
  6534. background: rgb(18, 18, 18);
  6535. animation: none
  6536. }
  6537.  
  6538. html[data-theme=dark] .css-1ggwojn {
  6539. background: rgb(18, 18, 18);
  6540. border-bottom: 20px solid rgb(18, 18, 18)
  6541. }
  6542.  
  6543. html[data-theme=dark] .Button.css-1slasee {
  6544. background: rgb(18, 18, 18);
  6545. color: #8590A6;
  6546. border: 1px solid #444
  6547. }
  6548.  
  6549. html[data-theme=dark] .Button.css-1slasee:hover {
  6550. color: #0084FF;
  6551. }
  6552.  
  6553. .Button.css-1slasee:hover {
  6554. color: #0084FF;
  6555. }
  6556.  
  6557. html[data-theme=dark] .css-ixdvjo {
  6558. background: rgb(18, 18, 18);
  6559. border: 1px solid #444
  6560. }
  6561.  
  6562. html[data-theme=dark] .css-1w9xlll {
  6563. background: rgb(18, 18, 18);
  6564. border: none
  6565. }
  6566.  
  6567. html[data-theme=dark] .css-1wqupar {
  6568. background: rgb(18, 18, 18);
  6569. }
  6570.  
  6571. html[data-theme=dark] .css-juilaj div {
  6572. background: rgb(18, 18, 18);
  6573. }
  6574.  
  6575. html[data-theme=dark] .entry___B74c- {
  6576. background: rgb(18, 18, 18);
  6577. }
  6578.  
  6579. html[data-theme=dark] .UserCell-root-rxd1i {
  6580. background: rgb(18, 18, 18) !important;
  6581. }
  6582.  
  6583. html[data-theme=dark] .StickerPreview-User img {
  6584. background: white
  6585. }
  6586.  
  6587. html[data-theme=dark] .css-1crdb1y {
  6588. color: #d3d3d3
  6589. }
  6590.  
  6591. html[data-theme=dark] .css-1evsiqj {
  6592. color: #d3d3d3
  6593. }
  6594.  
  6595. html[data-theme=dark] .css-nymych {
  6596. color: #d3d3d3
  6597. }
  6598.  
  6599. html[data-theme=dark] .css-25boxq {
  6600. color: #d3d3d3
  6601. }
  6602.  
  6603. html[data-theme=dark] .css-15991wd {
  6604. color: #d3d3d3
  6605. }
  6606.  
  6607. html[data-theme=dark] .css-zo9z3h {
  6608. color: #d3d3d3
  6609. }
  6610.  
  6611. html[data-theme=dark] .css-p54g1l {
  6612. color: #d3d3d3
  6613. }
  6614.  
  6615. html[data-theme=dark] .css-13eoys0 {
  6616. color: #d3d3d3
  6617. }
  6618.  
  6619. html[data-theme=dark] .css-1dgkfnj {
  6620. color: #d3d3d3
  6621. }
  6622.  
  6623. html[data-theme=dark] .css-3dx4z1 {
  6624. color: #d3d3d3
  6625. }
  6626.  
  6627. html[data-theme=dark] .css-13asnfo {
  6628. color: #d3d3d3
  6629. }
  6630.  
  6631. html[data-theme=dark] .css-uk6oel {
  6632. color: #d3d3d3
  6633. }
  6634.  
  6635. html[data-theme=dark] .css-1dpmqsl {
  6636. color: #d3d3d3
  6637. }
  6638.  
  6639. html[data-theme=dark] .css-1grt2f7 {
  6640. color: #d3d3d3
  6641. }
  6642.  
  6643. html[data-theme=dark] .css-jlrtgs {
  6644. color: #d3d3d3
  6645. }
  6646.  
  6647. html[data-theme=dark] .css-xwnz4l {
  6648. color: #d3d3d3
  6649. }
  6650.  
  6651. html[data-theme=dark] .css-g5pox1 {
  6652. color: #d3d3d3
  6653. }
  6654.  
  6655. html[data-theme=dark] .css-vn6wag {
  6656. color: #d3d3d3
  6657. }
  6658.  
  6659. html[data-theme=dark] .css-13jf0ln {
  6660. color: #d3d3d3
  6661. }
  6662.  
  6663. html[data-theme=dark] .css-qwfeb4 {
  6664. color: #d3d3d3
  6665. }
  6666.  
  6667. html[data-theme=dark] .css-jn7ejp {
  6668. color: #d3d3d3
  6669. }
  6670.  
  6671. html[data-theme=dark] .css-mrpzg7 {
  6672. color: #d3d3d3
  6673. }
  6674.  
  6675. html[data-theme=dark] .css-120h9fi {
  6676. color: #d3d3d3
  6677. }
  6678.  
  6679. html[data-theme=dark] .css-12y95y7 {
  6680. color: #d3d3d3
  6681. }
  6682.  
  6683. html[data-theme=dark] .css-3y6j4x {
  6684. color: #d3d3d3
  6685. }
  6686.  
  6687. html[data-theme=dark] .css-9q2iac {
  6688. color: #d3d3d3
  6689. }
  6690.  
  6691. html[data-theme=dark] .css-kiaw5d {
  6692. color: #d3d3d3
  6693. }
  6694.  
  6695. html[data-theme=dark] .css-13ilkp4 {
  6696. color: #d3d3d3
  6697. }
  6698.  
  6699. html[data-theme=dark] .css-jn6bg1 {
  6700. color: #d3d3d3
  6701. }
  6702.  
  6703. html[data-theme=dark] .css-81kmzo {
  6704. color: #d3d3d3
  6705. }
  6706.  
  6707. html[data-theme=dark] .css-3ibr72 {
  6708. color: #d3d3d3
  6709. }
  6710.  
  6711. html[data-theme=dark] .css-2orvqp {
  6712. color: #d3d3d3
  6713. }
  6714.  
  6715. html[data-theme=dark] .css-18w9eo6 {
  6716. color: #d3d3d3
  6717. }
  6718.  
  6719. html[data-theme=dark] .css-4zqdza {
  6720. color: #d3d3d3
  6721. }
  6722.  
  6723. html[data-theme=dark] .css-1j0bytm {
  6724. color: #d3d3d3
  6725. }
  6726.  
  6727. html[data-theme=dark] .css-zl3dgz {
  6728. color: #d3d3d3
  6729. }
  6730.  
  6731. html[data-theme=dark] .css-1xgvjg8 {
  6732. color: #d3d3d3
  6733. }
  6734.  
  6735. html[data-theme=dark] .css-xa9jmo {
  6736. color: #d3d3d3
  6737. }
  6738.  
  6739. html[data-theme=dark] .css-uaxmgr {
  6740. color: #d3d3d3
  6741. }
  6742.  
  6743. html[data-theme=dark] .css-cwwtjd {
  6744. color: #d3d3d3
  6745. }
  6746.  
  6747. html[data-theme=dark] .css-3karba {
  6748. color: #d3d3d3
  6749. }
  6750.  
  6751. html[data-theme=dark] .css-1bxoeey {
  6752. color: #d3d3d3
  6753. }
  6754.  
  6755. html[data-theme=dark] .css-1rxve6k {
  6756. color: #d3d3d3
  6757. }
  6758.  
  6759. html[data-theme=dark] .css-1nwtaha {
  6760. color: #d3d3d3
  6761. }
  6762.  
  6763. html[data-theme=dark] .css-348wka {
  6764. color: #d3d3d3
  6765. }
  6766.  
  6767. html[data-theme=dark] .css-1fg3px3 {
  6768. color: #d3d3d3
  6769. }
  6770.  
  6771. html[data-theme=dark] .css-1bu0eui {
  6772. color: #d3d3d3
  6773. }
  6774.  
  6775. html[data-theme=dark] .css-1esj255 {
  6776. color: #d3d3d3
  6777. }
  6778.  
  6779. html[data-theme=dark] .css-gtgb1u {
  6780. color: #d3d3d3
  6781. }
  6782.  
  6783. html[data-theme=dark] .css-1uz8l7v {
  6784. color: #d3d3d3
  6785. }
  6786.  
  6787. html[data-theme=dark] .css-jkt44i {
  6788. color: #d3d3d3
  6789. }
  6790.  
  6791. html[data-theme=dark] .css-a7cxzt {
  6792. color: #d3d3d3
  6793. }
  6794.  
  6795. html[data-theme=dark] .css-wsl5m6 {
  6796. color: #d3d3d3
  6797. }
  6798.  
  6799. html[data-theme=dark] .css-c52bb {
  6800. color: #d3d3d3
  6801. }
  6802.  
  6803. html[data-theme=dark] .css-116ccuj {
  6804. color: #d3d3d3
  6805. }
  6806.  
  6807. html[data-theme=dark] .css-2f1ndz {
  6808. color: #d3d3d3
  6809. }
  6810.  
  6811. html[data-theme=dark] .css-40rjat {
  6812. color: #d3d3d3
  6813. }
  6814.  
  6815. html[data-theme=dark] .css-1iw8gi5 {
  6816. color: #d3d3d3
  6817. }
  6818.  
  6819. html[data-theme=dark] .css-1y4e8ra {
  6820. color: #d3d3d3
  6821. }
  6822.  
  6823. html[data-theme=dark] .css-6orcwk {
  6824. color: #d3d3d3
  6825. }
  6826.  
  6827. html[data-theme=dark] .css-9pivh5 {
  6828. color: #d3d3d3
  6829. }
  6830.  
  6831. html[data-theme=dark] .css-gd3e4d {
  6832. color: #d3d3d3
  6833. }
  6834.  
  6835. html[data-theme=dark] .css-kihs6l {
  6836. color: #d3d3d3
  6837. }
  6838.  
  6839. html[data-theme=dark] .css-tnsaxh {
  6840. color: #d3d3d3
  6841. }
  6842.  
  6843. html[data-theme=dark] .css-1vgfg1a {
  6844. color: #d3d3d3
  6845. }
  6846.  
  6847. html[data-theme=dark] .css-1bbvash {
  6848. color: #d3d3d3
  6849. }
  6850.  
  6851. html[data-theme=dark] .css-43a2pm {
  6852. color: #d3d3d3
  6853. }
  6854.  
  6855. html[data-theme=dark] .css-1ozlzcd {
  6856. color: #d3d3d3
  6857. }
  6858.  
  6859. html[data-theme=dark] .css-1efbqx7 {
  6860. color: #d3d3d3
  6861. }
  6862.  
  6863. html[data-theme=dark] .css-1bfi5pu {
  6864. color: #d3d3d3
  6865. }
  6866.  
  6867. html[data-theme=dark] .css-195d1c3 {
  6868. color: #d3d3d3
  6869. }
  6870.  
  6871. html[data-theme=dark] .css-gsyo2n {
  6872. color: #d3d3d3
  6873. }
  6874.  
  6875. html[data-theme=dark] .css-1ygdre8 {
  6876. color: #d3d3d3
  6877. }
  6878.  
  6879. html[data-theme=dark] .css-9cejo9 {
  6880. color: #d3d3d3
  6881. }
  6882.  
  6883. html[data-theme=dark] .css-14wq2b1 {
  6884. color: #d3d3d3
  6885. }
  6886.  
  6887. html[data-theme=dark] .css-4fdgaw {
  6888. color: #d3d3d3
  6889. }
  6890.  
  6891. html[data-theme=dark] .css-owmotd {
  6892. color: #d3d3d3
  6893. }
  6894.  
  6895. html[data-theme=dark] .css-1rjujr1 {
  6896. color: #d3d3d3
  6897. }
  6898.  
  6899. html[data-theme=dark] .css-12squ1l {
  6900. color: #d3d3d3
  6901. }
  6902.  
  6903. html[data-theme=dark] .css-1rr6cp2 {
  6904. color: #d3d3d3
  6905. }
  6906.  
  6907. html[data-theme=dark] .css-1a1ypbl {
  6908. color: #d3d3d3
  6909. }
  6910.  
  6911. html[data-theme=dark] .Structure-structure-pD2Y3 .Structure-item-rNKiF a {
  6912. color: #d3d3d3
  6913. }
  6914.  
  6915. html[data-theme=dark] .Structure-structure-pD2Y3 .Structure-item-rNKiF.Structure-activeItem-sE3wB a {
  6916. color: #06f
  6917. }
  6918.  
  6919. html[data-theme=dark] span.index-left-hgVhw.index-text-6fdDo {
  6920. color: #d3d3d3
  6921. }
  6922.  
  6923. html[data-theme=dark] a.index-right-bpc5y.index-text-6fdDo {
  6924. color: #8590A6
  6925. }
  6926.  
  6927. html[data-theme=dark] .css-1nwr96x .CreatorTable-tableData {
  6928. color: #d3d3d3
  6929. }
  6930.  
  6931. .css-1ygdre8 {
  6932. color: black
  6933. }
  6934.  
  6935. .css-1tww9qq span:nth-child(1) {
  6936. color: black;
  6937. font-weight: bold
  6938. }
  6939.  
  6940. html[data-theme=dark] .ZDI--QuestionCircle24 {
  6941. fill: #8590A6 !important;
  6942. filter: brightness(1) !important;
  6943. }
  6944.  
  6945. html[data-theme=dark] .css-1tww9qq span:nth-child(1) {
  6946. color: #d3d3d3;
  6947. font-weight: bold
  6948. }
  6949.  
  6950. html[data-theme=dark] .ReviewCell-pc-xqgr3 .ReviewCell-headline-fTt5d {
  6951. color: #999
  6952. }
  6953.  
  6954. html[data-theme=dark] .Header-pc-tuEpA .Header-chapterButton-nBx53 {
  6955. color: #d3d3d3
  6956. }
  6957.  
  6958. html[data-theme=dark] .ReviewCell-pc-xqgr3 .ReviewCell-authorName-rntXj {
  6959. color: #d3d3d3
  6960. }
  6961.  
  6962. html[data-theme=dark] .Achievement-userRecord-c53Uo .Achievement-card-vZ9YC .Achievement-first-pWK1D .Achievement-num-dCdEa {
  6963. color: #d3d3d3
  6964. }
  6965.  
  6966. html[data-theme=dark] .css-9cejo9 p {
  6967. color: #d3d3d3
  6968. }
  6969.  
  6970. html[data-theme=dark] .Achievement-userRecord-c53Uo .Achievement-card-vZ9YC .Achievement-first-pWK1D .Achievement-label-w9tg9 {
  6971. color: #d3d3d3
  6972. }
  6973.  
  6974. html[data-theme=dark] .Achievement-userRecord-c53Uo .Achievement-userInfo-djuAz .Achievement-userName-n8maR {
  6975. color: #d3d3d3
  6976. }
  6977.  
  6978. html[data-theme=dark] .VideoCourseCard-videoCourseCard-xvwNy .VideoCourseCard-rightContent-uAj3N .VideoCourseCard-title-siFeQ {
  6979. color: #d3d3d3
  6980. }
  6981.  
  6982. html[data-theme=dark] .VideoCourseCard-videoCourseCard-xvwNy .VideoCourseCard-rightContent-uAj3N .VideoCourseCard-author-qeat7 .VideoCourseCard-authorName-g8Cva {
  6983. color: #d3d3d3;
  6984. }
  6985.  
  6986. html[data-theme=dark] .Tab-tab-b9fvk .Tab-tabTitle-nrMPz .Tab-item-gGXLM {
  6987. color: #d3d3d3;
  6988. }
  6989.  
  6990. html[data-theme=dark] .Tab-tab-b9fvk .Tab-tabTitle-nrMPz .Tab-activeItem-2Pp4v {
  6991. color: #0084ff;
  6992. }
  6993.  
  6994. html[data-theme=dark] .RecommendModule-moduleWrapper-2gVnZ .RecommendModule-moduleTitle-ehV2F {
  6995. color: #d3d3d3
  6996. }
  6997.  
  6998. html[data-theme=dark] .CourseItem-rightContent-4p3qc .CourseItem-courseTitle-2hYnF {
  6999. color: #d3d3d3
  7000. }
  7001.  
  7002. html[data-theme=dark] .CourseItem-rightContent-4p3qc .CourseItem-courseTitle-2hYnF:hover {
  7003. color: #0084ff
  7004. }
  7005.  
  7006. html[data-theme=dark] .LecturerCard-desc-wLJBX {
  7007. color: #d3d3d3
  7008. }
  7009.  
  7010. html[data-theme=dark] .LecturerCard-intro-k1BG1 {
  7011. color: #d3d3d3
  7012. }
  7013.  
  7014. html[data-theme=dark] .LecturerCard-fullname-hNRR4 {
  7015. color: #d3d3d3
  7016. }
  7017.  
  7018. html[data-theme=dark] .CourseDescription-playCount-kwVHf {
  7019. color: #d3d3d3
  7020. }
  7021.  
  7022. html[data-theme=dark] .LecturerList-title-omdNR {
  7023. color: #d3d3d3
  7024. }
  7025.  
  7026. html[data-theme=dark] .LecturerCard-dialog-e6BZW .LecturerCard-introduction-5GRpX {
  7027. color: #d3d3d3
  7028. }
  7029.  
  7030. html[data-theme=dark] .Banner-desc-ssgsA {
  7031. color: #d3d3d3
  7032. }
  7033.  
  7034. html[data-theme=dark] .VideoCourseList-title-i5Gf5 .VideoCourseList-text-h7we6 {
  7035. color: #d3d3d3
  7036. }
  7037.  
  7038. html[data-theme=dark] .Article-article-6PZ5y .Article-header-eNnYf .Article-title-whVN2 {
  7039. color: #d3d3d3
  7040. }
  7041.  
  7042. html[data-theme=dark] .LearningPathWayCard-pathItem-iv5Ey .LearningPathWayCard-right-tBY2X .LearningPathWayCard-detail-ir7kn {
  7043. color: #d3d3d3
  7044. }
  7045.  
  7046. html[data-theme=dark] .LearningPathWayCard-pathItem-iv5Ey .LearningPathWayCard-right-tBY2X .LearningPathWayCard-title-saKKa {
  7047. color: #d3d3d3
  7048. }
  7049.  
  7050. html[data-theme=dark] .VideoCourseCard-videoCourseCard-mNnq8 .VideoCourseCard-title-jGQDV {
  7051. color: #d3d3d3
  7052. }
  7053.  
  7054. html[data-theme=dark] .VideoCourseCard-videoCourseCard-mNnq8 .VideoCourseCard-author-axmAy .VideoCourseCard-authorName-ikENW {
  7055. color: #d3d3d3
  7056. }
  7057.  
  7058. html[data-theme=dark] .VideoCourseCard-videoCourseCard-mNnq8 .VideoCourseCard-records-nEMPH {
  7059. color: #d3d3d3
  7060. }
  7061.  
  7062. html[data-theme=dark] .Article-article-6PZ5y .Article-header-eNnYf .Article-superior-bFEUh {
  7063. color: #d3d3d3
  7064. }
  7065.  
  7066. html[data-theme=dark] .PcContent-content-9URDE .PcContent-learningRecord-mAzPm .PcContent-text-bRqSw span {
  7067. color: #d3d3d3
  7068. }
  7069.  
  7070. html[data-theme=dark] .artic .pages_content .pages_title h2 {
  7071. color: #d3d3d3
  7072. }
  7073.  
  7074. html[data-theme=dark] .ZhiPlusApplyCommon-title {
  7075. color: #d3d3d3
  7076. }
  7077.  
  7078. html[data-theme=dark] .ZhiPlusApplyHome-descTitle {
  7079. color: #d3d3d3
  7080. }
  7081.  
  7082. html[data-theme=dark] .EpisodeList-catalog-s9XZz {
  7083. color: #d3d3d3
  7084. }
  7085.  
  7086. html[data-theme=dark] .EpisodeList-chapterTitle-koA6R {
  7087. color: #d3d3d3
  7088. }
  7089.  
  7090. html[data-theme=dark] .css-74475r a.internal,
  7091. html[data-theme=dark] .css-74475r a.external {
  7092. color: #d3d3d3;
  7093. border-bottom: 1px solid #999;
  7094. }
  7095.  
  7096. html[data-theme=dark] .css-74475r a.internal:hover,
  7097. html[data-theme=dark] .css-74475r a.external:hover {
  7098. color: #6385a6;
  7099. border-bottom: 1px solid #6385a6;
  7100. }
  7101.  
  7102. html[data-theme=dark] .index-text-syTkE {
  7103. color: #d3d3d3
  7104. }
  7105.  
  7106. html[data-theme=dark] .index-title-6Yv3N {
  7107. color: #d3d3d3
  7108. }
  7109.  
  7110. html[data-theme=dark] .index-title-dhShT {
  7111. color: #d3d3d3
  7112. }
  7113.  
  7114. html[data-theme=dark] .index-authorName-7ESKF {
  7115. color: #d3d3d3
  7116. }
  7117.  
  7118. html[data-theme=dark] .index-title-mPEZh {
  7119. color: #d3d3d3
  7120. }
  7121.  
  7122. html[data-theme=dark] .index-item-mo6Mb {
  7123. color: #d3d3d3
  7124. }
  7125.  
  7126. html[data-theme=dark] .index-answerItemtitle-aHRVV {
  7127. color: #d3d3d3
  7128. }
  7129.  
  7130. html[data-theme=dark] .index-item-mo6Mb.index-selectTab-cNKP9 {
  7131. background: rgba(0, 102, 255, .08);
  7132. border: none;
  7133. color: #0084FF
  7134. }
  7135.  
  7136. html[data-theme=dark] .css-14fro2i .RichText.ztext.css-18edm6j {
  7137. color: #d3d3d3
  7138. }
  7139.  
  7140. html[data-theme=dark] .css-1crzugl {
  7141. color: #0084FF
  7142. }
  7143.  
  7144. html[data-theme=dark] .css-kkip9h {
  7145. fill: #d3d3d3
  7146. }
  7147.  
  7148. html[data-theme=dark] .css-1ujuaq7 {
  7149. fill: #d3d3d3
  7150. }
  7151.  
  7152. html[data-theme=dark] .css-1xzy5dd {
  7153. background: #d3d3d3
  7154. }
  7155.  
  7156. html[data-theme=dark] .css-1yofszl:hover svg.ZDI {
  7157. color: #d3d3d3;
  7158. filter: brightness(1)
  7159. }
  7160.  
  7161. html[data-theme=dark] .css-1yofszl:hover div {
  7162. color: #d3d3d3
  7163. }
  7164.  
  7165. html[data-theme=dark] .DraftHistory-title {
  7166. color: #d3d3d3
  7167. }
  7168.  
  7169. html[data-theme=dark] .DraftHistory-versionDate {
  7170. color: #d3d3d3
  7171. }
  7172.  
  7173. html[data-theme=dark] .DraftHistory-draftTitle {
  7174. color: #d3d3d3
  7175. }
  7176.  
  7177. html[data-theme=dark] .LinkCard.new .LinkCard-title {
  7178. color: #d3d3d3
  7179. }
  7180.  
  7181. html[data-theme=dark] .DraftHistory-version--selected:after {
  7182. background: #d3d3d3;
  7183. box-shadow: 0 0 0 2px #121212, 0 0 0 3px #d3d3d3;
  7184. }
  7185.  
  7186. html[data-theme=dark] .css-tf8o0f {
  7187. background: #d3d3d3
  7188. }
  7189.  
  7190. html[data-theme=dark] a.NavItemActiveClassName {
  7191. color: #d3d3d3
  7192. }
  7193.  
  7194. html[data-theme=dark] .NavItemClassName {
  7195. color: #d3d3d3
  7196. }
  7197.  
  7198. html[data-theme=dark] .UserHeader-NameSpan {
  7199. color: #d3d3d3
  7200. }
  7201.  
  7202. html[data-theme=dark] .WechatBind-bounded {
  7203. color: #d3d3d3
  7204. }
  7205.  
  7206. html[data-theme=dark] .SelectorField-title h4 {
  7207. color: #d3d3d3
  7208. }
  7209.  
  7210. html[data-theme=dark] .CreatorSalt-textarea-input {
  7211. color: #d3d3d3
  7212. }
  7213.  
  7214. html[data-theme=dark] .Calendar-topToolDate {
  7215. color: #d3d3d3
  7216. }
  7217.  
  7218. html[data-theme=dark] .css-1epee6j .CreatorTable-tableData {
  7219. color: #d3d3d3
  7220. }
  7221.  
  7222. html[data-theme=dark] .css-f7rzgf {
  7223. color: #8590a6;
  7224. background: rgb(18, 18, 18);
  7225. border: 1px solid #2e2e2e !important
  7226. }
  7227.  
  7228. html[data-theme=dark] .css-19dx6uk {
  7229. border: 1px solid #2e2e2e !important
  7230. }
  7231.  
  7232. html[data-theme=dark] .css-hte1to {
  7233. color: #d3d3d3;
  7234. background: #8080801c;
  7235. }
  7236.  
  7237. html[data-theme=dark] .css-ko9eoy {
  7238. color: #d3d3d3;
  7239. background: #8080801c;
  7240. }
  7241.  
  7242. html[data-theme=dark] .css-1136uqd {
  7243. color: #d3d3d3;
  7244. background: #8080801c;
  7245. }
  7246.  
  7247. html[data-theme=dark] .css-1p32f2 {
  7248. color: #d3d3d3;
  7249. background: #8080801c;
  7250. }
  7251.  
  7252. html[data-theme=dark] .css-hhy36c {
  7253. color: #d3d3d3;
  7254. background: #8080801c;
  7255. }
  7256.  
  7257. html[data-theme=dark] .Structure-structure-PMEqr .Structure-item-os59r {
  7258. color: #d3d3d3;
  7259. background: #8080801c;
  7260. border: 0.5px solid transparent;
  7261. }
  7262.  
  7263. html[data-theme=dark] .Structure-structure-PMEqr .Structure-activeItem-57Tw9 {
  7264. color: #06f;
  7265. font-weight: 500;
  7266. background: rgba(0, 102, 255, .08);
  7267. border: .5px solid rgba(0, 102, 255, .08);
  7268. }
  7269.  
  7270. html[data-theme=dark] .css-a7cxzt:hover {
  7271. color: #d3d3d3;
  7272. background: #8080801c;
  7273. }
  7274.  
  7275. html[data-theme=dark] .index-secondaryTabItem-ceH9p:not(.index-secondaryTabItemSelected-q4PmP) {
  7276. color: #d3d3d3;
  7277. background: #8080801c;
  7278. border: 0.5px solid transparent
  7279. }
  7280.  
  7281. html[data-theme=dark] .Structure-structure-pD2Y3 .Structure-item-rNKiF {
  7282. color: #d3d3d3;
  7283. background: #8080801c;
  7284. border: 0.5px solid transparent
  7285. }
  7286.  
  7287. html[data-theme=dark] .Structure-structure-pD2Y3 .Structure-activeItem-sE3wB {
  7288. color: #06f;
  7289. background: rgba(0, 102, 255, .08);
  7290. border: .5px solid rgba(0, 102, 255, .08);
  7291. }
  7292.  
  7293. html[data-theme=dark] .css-1bm62rf {
  7294. color: #0084FF;
  7295. background: #8080801c;
  7296. border: 1px solid #444;
  7297. }
  7298.  
  7299. html[data-theme=dark] .css-qogdkd {
  7300. color: #d3d3d3;
  7301. border: 1px solid #d3d3d38f;
  7302. }
  7303.  
  7304. html[data-theme=dark] .css-1bjcw8z {
  7305. color: #d3d3d3;
  7306. border: 1px solid #d3d3d38f;
  7307. }
  7308.  
  7309. html[data-theme=dark] .css-1bjcw8z:nth-of-type(n 2) {
  7310. border-left: 1px solid transparent;
  7311. }
  7312.  
  7313. html[data-theme=dark] .css-1wrebao {
  7314. color: #0084FF;
  7315. background: rgb(18, 18, 18);
  7316. }
  7317.  
  7318. html[data-theme=dark] .css-3dzvwq {
  7319. color: #d3d3d3
  7320. }
  7321.  
  7322. html[data-theme=dark] .css-k6u7gr {
  7323. color: #0084FF;
  7324. background: rgb(18, 18, 18);
  7325. }
  7326.  
  7327. html[data-theme=dark] .css-m974kf {
  7328. color: #8590A6
  7329. }
  7330.  
  7331. .css-12squ1l {
  7332. font-weight: bold
  7333. }
  7334.  
  7335. .css-17ndvmh {
  7336. font-weight: bold
  7337. }
  7338.  
  7339. html[data-theme=dark] .css-17ndvmh {
  7340. color: #8590A6
  7341. }
  7342.  
  7343. html[data-theme=dark] .css-1woyqhc {
  7344. color: #8590A6
  7345. }
  7346.  
  7347. html[data-theme=dark] .VipInterests-Span {
  7348. color: #ce994f
  7349. }
  7350.  
  7351. html[data-theme=dark] .UserHeader-LeftInfo img {
  7352. background: white;
  7353. }
  7354.  
  7355. .zu-top-nav-userinfo .Avatar {
  7356. background: white;
  7357. }
  7358.  
  7359. html[data-theme=dark] .css-fwzsfb {
  7360. box-shadow: none
  7361. }
  7362.  
  7363. html[data-theme=dark] .css-1bdx86i {
  7364. background: transparent;
  7365. }
  7366.  
  7367. html[data-theme=dark] .css-1pvv774 {
  7368. color: transparent;
  7369. background: transparent;
  7370. }
  7371.  
  7372. html[data-theme=dark] .css-1wvaud {
  7373. color: transparent;
  7374. background: transparent;
  7375. }
  7376.  
  7377. .Image-module-image-uorig {
  7378. background: white;
  7379. cursor: pointer
  7380. }
  7381.  
  7382. .MemberInfoPanel-info-x6X35 {
  7383. height: 180px;
  7384. padding-top: 40px
  7385. }
  7386.  
  7387. html[data-theme=dark] .css-1dszf3z {
  7388. color: #37f;
  7389. background: rgba(51, 119, 255, .1);
  7390. }
  7391.  
  7392. html[data-theme=dark] .Label-root-m9g5B {
  7393. border: none
  7394. }
  7395.  
  7396. html[data-theme=dark] .IntroModule-synopsis-nCbKy {
  7397. filter: brightness(0.8) !important
  7398. }
  7399.  
  7400. html[data-theme=dark] .css-1i5eh5t {
  7401. filter: brightness(0.6) !important
  7402. }
  7403.  
  7404. html[data-theme=dark] .creation-ranking-8ur6kw {
  7405. filter: brightness(0.6) !important
  7406. }
  7407.  
  7408. html[data-theme=dark] .creation-ranking-o89df3 {
  7409. filter: brightness(0.6) !important
  7410. }
  7411.  
  7412. html[data-theme=dark] .creation-ranking-1bcsc6 {
  7413. filter: brightness(0.6) !important
  7414. }
  7415.  
  7416. html[data-theme=dark] .creation-ranking-1c80dmb {
  7417. filter: brightness(0.6) !important
  7418. }
  7419.  
  7420. html[data-theme=dark] .creation-ranking-9taffg {
  7421. filter: none !important
  7422. }
  7423.  
  7424. html[data-theme=dark] .creation-ranking-1tc0xd3 {
  7425. filter: none !important
  7426. }
  7427.  
  7428. .RowUserList-wrapper-4E2Ct {
  7429. overflow-x: hidden;
  7430. }
  7431.  
  7432. html[data-theme=dark] .TopNavBar-inner-77oXV .TopNavBar-tab-gdypM a {
  7433. color: #d3d3d3
  7434. }
  7435.  
  7436. html[data-theme=dark] .TopNavBar-logoContainer-3Ubcr .TopNavBar-zhihuLogo-4KKCK {
  7437. color: white
  7438. }
  7439.  
  7440. html[data-theme=dark] .css-1xodv9x::after {
  7441. background: #444;
  7442. }
  7443.  
  7444. html[data-theme=dark] .css-oietxg::after {
  7445. background: #444;
  7446. }
  7447.  
  7448. html[data-theme=dark] .css-1vvynlj {
  7449. background: #444;
  7450. }
  7451.  
  7452. html[data-theme=dark] .css-2m6vwd {
  7453. background: #444;
  7454. }
  7455.  
  7456. html[data-theme=dark] .css-1fbmj9d {
  7457. background: #444;
  7458. }
  7459.  
  7460. html[data-theme=dark] .css-1vwmxb4:hover {
  7461. background: #ffffff1c;
  7462. }
  7463.  
  7464. html[data-theme=dark] .css-1stnbni:hover {
  7465. background: #ffffff1c;
  7466. }
  7467.  
  7468. html[data-theme=dark] .css-1gip1fb:hover {
  7469. background: #ffffff1c;
  7470. }
  7471.  
  7472. html[data-theme=dark] .css-1lpxgo5:hover {
  7473. background: #ffffff1c;
  7474. }
  7475.  
  7476. html[data-theme=dark] .css-pt9hcx:not(:last-child) .Creator-Home-HotQuestionCard {
  7477. border-bottom: 0.5px solid #444;
  7478. }
  7479.  
  7480. html[data-theme=dark] .css-w53kso {
  7481. border-bottom: 1px solid #444;
  7482. }
  7483.  
  7484. html[data-theme=dark] .css-26ys39 {
  7485. border-bottom: 1px solid #444;
  7486. }
  7487.  
  7488. html[data-theme=dark] .is-fixed.css-26ys39 {
  7489. background: rgb(18, 18, 18) !important;
  7490. }
  7491.  
  7492. html[data-theme=dark] .css-3yxeqs {
  7493. border-bottom: 1px solid #444;
  7494. }
  7495.  
  7496. html[data-theme=dark] .css-e45g0t {
  7497. border-bottom: 1px solid #444;
  7498. }
  7499.  
  7500. html[data-theme=dark] .css-laelx8 {
  7501. border-bottom: 1px solid #444;
  7502. }
  7503.  
  7504. html[data-theme=dark] .css-11zq2oq {
  7505. border-bottom: 1px solid #444;
  7506. }
  7507.  
  7508. html[data-theme=dark] .css-iebf30 {
  7509. border-bottom: 1px solid #444;
  7510. }
  7511.  
  7512. html[data-theme=dark] .css-vkc1l8 {
  7513. border-bottom: 1px solid #444;
  7514. }
  7515.  
  7516. html[data-theme=dark] .css-8m4yif {
  7517. border-bottom: 1px solid #444;
  7518. }
  7519.  
  7520. html[data-theme=dark] .css-en77lo {
  7521. border-bottom: 1px solid #444;
  7522. }
  7523.  
  7524. html[data-theme=dark] .css-ts3erk {
  7525. border-bottom: 1px solid #444;
  7526. }
  7527.  
  7528. html[data-theme=dark] .css-1r0njij {
  7529. border-bottom: 1px solid #444;
  7530. }
  7531.  
  7532. html[data-theme=dark] .css-1niwbj7 {
  7533. border-bottom: 1px solid #444;
  7534. }
  7535.  
  7536. html[data-theme=dark] .css-1vgfk12 {
  7537. border-bottom: 1px solid #444;
  7538. }
  7539.  
  7540. html[data-theme=dark] .css-geku0 {
  7541. border-bottom: 1px solid #444;
  7542. }
  7543.  
  7544. html[data-theme=dark] .css-1gcxsjq {
  7545. border-bottom: 1px solid #444;
  7546. }
  7547.  
  7548. html[data-theme=dark] .css-1842imd {
  7549. border-bottom: 1px solid #444;
  7550. }
  7551.  
  7552. html[data-theme=dark] .css-py1o25 {
  7553. border-bottom: 1px solid #444;
  7554. }
  7555.  
  7556. html[data-theme=dark] .css-tfglki {
  7557. border-bottom: 1px solid #444;
  7558. }
  7559.  
  7560. html[data-theme=dark] .css-3v0iam {
  7561. border-bottom: 1px solid #444;
  7562. }
  7563.  
  7564. html[data-theme=dark] .css-197xs71 {
  7565. border-bottom: 1px solid #444;
  7566. }
  7567.  
  7568. html[data-theme=dark] .VideoCourseCard-videoCourseCard-xvwNy {
  7569. border-bottom: 1px solid #444;
  7570. }
  7571.  
  7572. html[data-theme=dark] .Interaction-root-esGak {
  7573. border: none
  7574. }
  7575.  
  7576. html[data-theme=dark] .index-tabWrap-4Smyx {
  7577. border: none
  7578. }
  7579.  
  7580. html[data-theme=dark] .Tab-tab-b9fvk .Tab-tabTitle-nrMPz {
  7581. border: 1px solid transparent
  7582. }
  7583.  
  7584. html[data-theme=dark] .index-answerItem-29PGb {
  7585. border-bottom: 1px solid #444;
  7586. }
  7587.  
  7588. html[data-theme=dark] .css-we6n55::before {
  7589. border-bottom: 1px solid #444;
  7590. }
  7591.  
  7592. html[data-theme=dark] .ToolsCopyright-cardHeader {
  7593. border-bottom: 1px solid #444;
  7594. }
  7595.  
  7596. html[data-theme=dark] .css-1epee6j .CreatorTable-tableRow {
  7597. border-bottom: 1px solid #444;
  7598. }
  7599.  
  7600. html[data-theme=dark] .css-vlniwe {
  7601. border-bottom: 1px solid #1b1b1b;
  7602. }
  7603.  
  7604. html[data-theme=dark] .css-dwparj {
  7605. border: 2px dashed #444;
  7606. }
  7607.  
  7608. html[data-theme=dark] .css-1njot3d {
  7609. border: 1px solid #444;
  7610. }
  7611.  
  7612. html[data-theme=dark] .css-100f15l {
  7613. border: 1px solid #444;
  7614. }
  7615.  
  7616. html[data-theme=dark] .css-16rb3m9 {
  7617. border: 1px solid #444;
  7618. }
  7619.  
  7620. html[data-theme=dark] .css-1rzq96j {
  7621. border: 1px solid #444;
  7622. }
  7623.  
  7624. html[data-theme=dark] .css-1ql23fg {
  7625. border: 1px solid #444;
  7626. }
  7627.  
  7628. html[data-theme=dark] .css-m8zr0l {
  7629. border: 1px solid #444;
  7630. }
  7631.  
  7632. html[data-theme=dark] .css-v79isy {
  7633. border: 1px solid #444;
  7634. }
  7635.  
  7636. html[data-theme=dark] .css-16vm0j7 {
  7637. border: 1px solid #444;
  7638. }
  7639.  
  7640. html[data-theme=dark] .Input-wrapper {
  7641. border: 1px solid #444;
  7642. }
  7643.  
  7644. html[data-theme=dark] .css-13j624k {
  7645. border: 1px solid #444;
  7646. }
  7647.  
  7648. html[data-theme=dark] .css-kzr6qe {
  7649. border: 1px solid #444;
  7650. }
  7651.  
  7652. html[data-theme=dark] .css-x0pxoz {
  7653. border: 1px solid #444;
  7654. }
  7655.  
  7656. html[data-theme=dark] .css-90uup7 {
  7657. border: 1px solid #444;
  7658. }
  7659.  
  7660. html[data-theme=dark] .css-1odu5n9 {
  7661. border: 1px solid #444;
  7662. }
  7663.  
  7664. html[data-theme=dark] .css-10kdvgx {
  7665. border: 1px solid #444;
  7666. }
  7667.  
  7668. html[data-theme=dark] .TopNavBar-fixInner-8MxBW .TopNavBar-searchBar-hDE1u .TopNavBar-input-sjsdr {
  7669. border: 1px solid #444;
  7670. }
  7671.  
  7672. html[data-theme=dark] .css-10kl0bc {
  7673. border-top: 1px solid #444;
  7674. }
  7675.  
  7676. html[data-theme=dark] .css-lmhi8a div {
  7677. border-top: 1px solid #444;
  7678. }
  7679.  
  7680. html[data-theme=dark] .css-a44f8k div {
  7681. border-top: 1px solid #444;
  7682. }
  7683.  
  7684. html[data-theme=dark] .css-yqsr75 {
  7685. border-top: 1px solid #444;
  7686. }
  7687.  
  7688. html[data-theme=dark] .css-wx1uwz .CreationManage-CreationCard {
  7689. border-top: 1px solid #444;
  7690. }
  7691.  
  7692. html[data-theme=dark] .css-m163kg .CreationManage-CreationCard {
  7693. border-top: 1px solid #444;
  7694. }
  7695.  
  7696. html[data-theme=dark] .css-1uc08pw::before {
  7697. border: 1px solid #444;
  7698. }
  7699.  
  7700. html[data-theme=dark] .css-z07uxh {
  7701. border: none;
  7702. }
  7703.  
  7704. html[data-theme=dark] .css-18w5wl0 {
  7705. border: none;
  7706. }
  7707.  
  7708. html[data-theme=dark] .css-asds7r::before {
  7709. border: none;
  7710. }
  7711.  
  7712. html[data-theme=dark] .css-8wos8n::before {
  7713. border: none;
  7714. }
  7715.  
  7716. html[data-theme=dark] .css-mzh2tk .CommentManage-CreationCard>div {
  7717. border-top: 1px solid #444;
  7718. }
  7719.  
  7720. html[data-theme=dark] .css-5abu0r .CommentManage-CreationCard>div {
  7721. border-top: 1px solid #444;
  7722. }
  7723.  
  7724. html[data-theme=dark] .css-n7efg0 .CommentManage-CreationCard>div {
  7725. border-top: 1px solid #444;
  7726. }
  7727.  
  7728. html[data-theme=dark] .css-9m1zov .CommentManage-CommentCard>div {
  7729. border-top: 1px solid #444;
  7730. }
  7731.  
  7732. html[data-theme=dark] .css-1vm3b1t {
  7733. border-top: 1px solid #444;
  7734. }
  7735.  
  7736. html[data-theme=dark] .css-lq4o9h {
  7737. border-top: 1px solid #444;
  7738. }
  7739.  
  7740. html[data-theme=dark] .css-x4pr7v {
  7741. border-right: 1px solid #444;
  7742. }
  7743.  
  7744. .css-qx4v2b:hover .Popover {
  7745. background: #0084FF;
  7746. }
  7747.  
  7748. .css-qx4v2b:hover .css-r3cz0w {
  7749. color: white !important;
  7750. }
  7751.  
  7752. html[data-theme=dark] .css-prt2gy {
  7753. color: #0084FF;
  7754. }
  7755.  
  7756. html[data-theme=dark] .css-1x8xb90 .css-vurnku {
  7757. color: #0084FF;
  7758. }
  7759.  
  7760. html[data-theme=dark] .css-1x8xb90 svg {
  7761. fill: #0084FF;
  7762. }
  7763.  
  7764. html[data-theme=dark] .css-1sgk1dw {
  7765. border: none
  7766. }
  7767.  
  7768. html[data-theme=dark] .css-1ynwv5b {
  7769. border: none
  7770. }
  7771.  
  7772. html[data-theme=dark] .css-12294lk {
  7773. border: none
  7774. }
  7775.  
  7776. html[data-theme=dark] .public-DraftStyleDefault-block.public-DraftStyleDefault-ltr {
  7777. border: none
  7778. }
  7779.  
  7780. html[data-theme=dark] .css-blkyql {
  7781. border: 1px solid #444;
  7782. }
  7783.  
  7784. html[data-theme=dark] .css-t6zj4u {
  7785. color: #8590A6;
  7786. background: #ffffff1c;
  7787. }
  7788.  
  7789. html[data-theme=dark] .css-1woo4vw:hover {
  7790. background: #ffffff1c;
  7791. }
  7792.  
  7793. html[data-theme=dark] input.Input {
  7794. color: #d3d3d3
  7795. }
  7796.  
  7797. html[data-theme=dark] .SelectorField-options .Select-option {
  7798. color: #8590a6;
  7799. background: rgb(18, 18, 18);
  7800. }
  7801.  
  7802. html[data-theme=dark] .css-1f6hmyt {
  7803. border-bottom: 1px solid #444;
  7804. }
  7805.  
  7806. html[data-theme=dark] .css-110i2yo {
  7807. color: #37f;
  7808. background: rgba(51, 119, 255, .1);
  7809. }
  7810.  
  7811. html[data-theme=dark] .css-k5567v {
  7812. color: #37f;
  7813. background: rgba(51, 119, 255, .1);
  7814. }
  7815.  
  7816. html[data-theme=dark] .css-1ygdre8 a.internal,
  7817. .css-1ygdre8 a.external {
  7818. color: rgb(23, 81, 153);
  7819. }
  7820.  
  7821. .css-h9ndtl {
  7822. color: #0084FF
  7823. }
  7824.  
  7825. html[data-theme=dark] .css-x7xsnd {
  7826. background: rgb(18, 18, 18);
  7827. color: #8590A6
  7828. }
  7829.  
  7830. .css-x7xsnd:hover {
  7831. color: #0084FF
  7832. }
  7833.  
  7834. html[data-theme=dark] .css-x7xsnd:hover {
  7835. color: #0084FF
  7836. }
  7837.  
  7838. .css-1evwjhc:hover {
  7839. color: #0084FF
  7840. }
  7841.  
  7842. html[data-theme=dark] .css-1evwjhc {
  7843. background: rgb(18, 18, 18);
  7844. color: #8590A6
  7845. }
  7846.  
  7847. html[data-theme=dark] .css-1evwjhc:hover {
  7848. color: #0084FF
  7849. }
  7850.  
  7851. .css-1uc08pw {
  7852. color: #0084FF
  7853. }
  7854.  
  7855. .css-1yeqy9h::before {
  7856. border: none
  7857. }
  7858.  
  7859. .css-1yeqy9h {
  7860. color: #0084FF
  7861. }
  7862.  
  7863. html[data-theme=dark] .css-1yeqy9h,
  7864. html[data-theme=dark] .css-1yeqy9h .css-vurnku {
  7865. color: #0084FF
  7866. }
  7867.  
  7868. .css-1k10w8f,
  7869. .css-o7lu8j {
  7870. color: black
  7871. }
  7872.  
  7873. .css-12ta2mu,
  7874. html[data-theme=dark] .css-12ta2mu {
  7875. color: #0084FF
  7876. }
  7877.  
  7878. .css-1o56bgb:hover {
  7879. color: #32CD32
  7880. }
  7881.  
  7882. html[data-theme=dark] .css-1o56bgb:hover {
  7883. color: #32CD32
  7884. }
  7885.  
  7886. .css-h1yvwn:hover,
  7887. .css-1h9r04p,
  7888. .css-1h9r04p:hover {
  7889. color: #FF4D82
  7890. }
  7891.  
  7892. html[data-theme=dark] .css-h1yvwn:hover,
  7893. html[data-theme=dark] .css-1h9r04p,
  7894. html[data-theme=dark] .css-1h9r04p:hover {
  7895. color: #FF4D82
  7896. }
  7897.  
  7898. .css-15ivzwa {
  7899. background: white;
  7900. }
  7901.  
  7902. html[data-theme=dark] .css-15ivzwa {
  7903. background: rgb(30, 30, 30);
  7904. }
  7905.  
  7906. html[data-theme=dark] .css-h7rrn2 {
  7907. background: rgb(18, 18, 18);
  7908. }
  7909.  
  7910. html[data-theme=dark] .css-12yl4eo {
  7911. background: rgb(18, 18, 18)
  7912. }
  7913.  
  7914. .css-qwboob:hover {
  7915. background: #ffffff1c
  7916. }
  7917.  
  7918. html[data-theme=dark] .css-1iyxdkz {
  7919. background: #ffffff1c
  7920. }
  7921.  
  7922. .css-1s7s3n5:hover .ZDI--ImagePlus24 {
  7923. fill: rgb(221, 178, 116);
  7924. }
  7925.  
  7926. .css-1s7s3n5:hover .ZDI--EmoHappy24 {
  7927. fill: #0084FF;
  7928. }
  7929.  
  7930. .css-gm5a0s:hover .ZDI--ImagePlus24 {
  7931. fill: rgb(221, 178, 116);
  7932. }
  7933.  
  7934. .css-gm5a0s:hover .ZDI--EmoHappy24 {
  7935. fill: #0084FF;
  7936. }
  7937.  
  7938. html[data-theme=dark] .css-glctcg {
  7939. background: rgb(18, 18, 18)
  7940. }
  7941.  
  7942. html[data-theme=dark] .css-1hnxfhy {
  7943. background: rgb(18, 18, 18);
  7944. border: 2px solid #444;
  7945. }
  7946.  
  7947. html[data-theme=dark] .css-gjiv4z {
  7948. color: #0084FF;
  7949. background: #0066ff14;
  7950. }
  7951.  
  7952. html[data-theme=dark] .css-1v9si9f {
  7953. color: #8590A6;
  7954. background: #8080801c;
  7955. }
  7956.  
  7957. html[data-theme=dark] .css-16ywuwq {
  7958. color: rgb(0, 102, 255);
  7959. background: rgba(0, 102, 255, 0.08);
  7960. }
  7961.  
  7962. html[data-theme=dark] .css-1bsypu2 {
  7963. color: #0084FF
  7964. }
  7965.  
  7966. html[data-theme=dark] .css-1c354jk:hover {
  7967. background: #ffffff1c;
  7968. }
  7969.  
  7970. html[data-theme=dark] .css-a44f8k:hover {
  7971. background: #ffffff1c;
  7972. }
  7973.  
  7974. .css-1dq2715 {
  7975. cursor: pointer
  7976. }
  7977.  
  7978. .css-1pcum0z {
  7979. box-shadow: none
  7980. }
  7981.  
  7982. .ZDI--Dots24:hover {
  7983. color: #0084FF
  7984. }
  7985.  
  7986. html[data-theme=dark] .css-82zxhc {
  7987. color: white
  7988. }
  7989.  
  7990. html[data-theme=dark] .index-hover-qmVRA {
  7991. color: #d3d3d3
  7992. }
  7993.  
  7994. html[data-theme=dark] .index-hover-qmVRA:hover {
  7995. color: #0066ff
  7996. }
  7997.  
  7998. .css-19aqy0w {
  7999. color: black
  8000. }
  8001.  
  8002. .css-19aqy0w:hover {
  8003. background: rgb(246, 246, 246)
  8004. }
  8005.  
  8006. html[data-theme=dark] .css-19aqy0w {
  8007. color: #8590A6;
  8008. background: rgb(18, 18, 18)
  8009. }
  8010.  
  8011. html[data-theme=dark] .css-19aqy0w:hover {
  8012. color: #8590A6;
  8013. background: #8080801c;
  8014. }
  8015.  
  8016. html[data-theme=dark] .CopyrightCenter-sideNavItem.is-active,
  8017. html[data-theme=dark] .CopyrightCenter-sideNavItem:hover {
  8018. background: #8080801c;
  8019. }
  8020.  
  8021. html[data-theme=dark] .tab-navs .tab-nav>a {
  8022. color: #d3d3d3 !important;
  8023. border: none
  8024. }
  8025.  
  8026. html[data-theme=dark] .tab-navs .tab-nav.active>a {
  8027. background: #8080801c !important;
  8028. color: #0084FF !important;
  8029. border: 1px solid #444;
  8030. }
  8031.  
  8032. html[data-theme=dark] .tab-navs .tab-nav>a:hover {
  8033. background: #8080801c !important;
  8034. }
  8035.  
  8036. html[data-theme=dark] .tab-navs .tab-nav.active>a:hover {
  8037. background: #8080801c !important;
  8038. color: #0084FF !important;
  8039. border: 1px solid #444;
  8040. }
  8041.  
  8042. html[data-theme=dark] .CopyrightCenter-main .icon.empty-list {
  8043. filter: brightness(0.6)
  8044. }
  8045.  
  8046. html[data-theme=dark] .CopyrightSettings {
  8047. color: #d3d3d3
  8048. }
  8049.  
  8050. html[data-theme=dark] .CopyrightCenter-Help p,
  8051. html[data-theme=dark] .CopyrightCenter-Help ul {
  8052. color: #d3d3d3
  8053. }
  8054.  
  8055. html[data-theme=dark] ._Slogan_boxArrow_3K5o::before {
  8056. border-top-color: #444;
  8057. }
  8058.  
  8059. html[data-theme=dark] ._Slogan_boxArrow_3K5o::after {
  8060. border-top-color: #444;
  8061. }
  8062.  
  8063. html[data-theme=dark] ._Slogan_sloganWrapper_2E5y {
  8064. background: rgb(18, 18, 18);
  8065. border: 1px solid #444
  8066. }
  8067.  
  8068. html[data-theme=dark] .CopyrightCenter-main hr {
  8069. background: #444;
  8070. }
  8071.  
  8072. html[data-theme=dark] .css-1hwwfws {
  8073. border: 1px solid #000000d9;
  8074. background: rgb(18, 18, 18) !important;
  8075. color: #d3d3d3
  8076. }
  8077.  
  8078. .ToolsQuestion-header--action:focus {
  8079. outline: none
  8080. }
  8081.  
  8082. .ToolsQuestion-header--action span:focus {
  8083. outline: none
  8084. }
  8085.  
  8086. .TopNavBar-inner-77oXV .TopNavBar-searchBar-uo31N .TopNavBar-input-kbgKK {
  8087. padding: 0 0px 0 16px;
  8088. width: 323px;
  8089. }
  8090.  
  8091. html[data-theme=dark] .css-1va6xs3 {
  8092. background: #8080801c;
  8093. color: #d3d3d3
  8094. }
  8095.  
  8096. html[data-theme=dark] .index-more-j3pAc {
  8097. background: #8080801c;
  8098. color: #d3d3d3
  8099. }
  8100.  
  8101. html[data-theme=dark] .index-more-j3pAc:hover {
  8102. background: #8080801c;
  8103. color: #0084ff
  8104. }
  8105.  
  8106. html[data-theme=dark] .index-item-mo6Mb {
  8107. background: #8080801c;
  8108. border: none
  8109. }
  8110.  
  8111. html[data-theme=dark] .Learned-tab-9Lce5 .Learned-tabTitle-j1ygz .Learned-item-8B3JQ {
  8112. background: #8080801c;
  8113. border: none;
  8114. color: #d3d3d3
  8115. }
  8116.  
  8117. html[data-theme=dark] .Learned-tab-9Lce5 .Learned-tabTitle-j1ygz .Learned-item-8B3JQ.Learned-activeItem-qogUr {
  8118. background: rgba(0, 102, 255, .08);
  8119. border: .5px solid rgba(0, 102, 255, .08);
  8120. color: #06f
  8121. }
  8122.  
  8123. .css-1tm97em {
  8124. display: none !important
  8125. }
  8126.  
  8127. .css-1dwcfxl {
  8128. display: none !important
  8129. }
  8130.  
  8131. html[data-theme=dark] .index-content-jNRgg .index-item-tPBTL {
  8132. color: #d3d3d3
  8133. }
  8134.  
  8135. html[data-theme=dark] .index-content-jNRgg .index-item-tPBTL:hover {
  8136. color: #0084FF
  8137. }
  8138.  
  8139. html[data-theme=dark] .ZVideoTag {
  8140. color: #0084FF
  8141. }
  8142.  
  8143. html[data-theme=dark] .Creator-entityLink {
  8144. color: #0084FF
  8145. }
  8146.  
  8147. html[data-theme=dark] .Creator-hintLink:focus {
  8148. outline: none;
  8149. }
  8150.  
  8151. html[data-theme=dark] .ToolsRecommendList-hintLinkDivider+Creator-hintLink {
  8152. outline: none;
  8153. }
  8154.  
  8155. input[class*="TopNavBar"]:not(.ariaskiptheme) {
  8156. color: white !important;
  8157. background: transparent !important
  8158. }
  8159.  
  8160. .TopNavBar-inner-77oXV .TopNavBar-searchBar-uo31N .TopNavBar-input-kbgKK {
  8161. padding: 0px 0px 0px 16px;
  8162. width: 323px;
  8163. }
  8164.  
  8165. html[data-theme=dark] .TopNavBar-inner-77oXV .TopNavBar-searchBar-uo31N .TopNavBar-input-kbgKK {
  8166. background: #1b1b1b !important;
  8167. border: 1px solid #444;
  8168. }
  8169.  
  8170. html[data-theme=dark] .TopNavBar-inner-77oXV .TopNavBar-searchBar-uo31N .TopNavBar-input-kbgKK::placeholder {
  8171. color: transparent
  8172. }
  8173.  
  8174. html[data-theme=dark] .TopNavBar-fixInner-wr5x1 .TopNavBar-searchBar-uo31N .TopNavBar-input-kbgKK {
  8175. border: 1px solid #444;
  8176. }
  8177.  
  8178. .TopNavBar-inner-eTRQC .TopNavBar-searchBar-hDE1u {
  8179. margin-left: 20px !important
  8180. }
  8181.  
  8182. .TopNavBar-inner-eTRQC .TopNavBar-searchBar-hDE1u .TopNavBar-input-sjsdr {
  8183. padding: 0px 0px 0px 16px;
  8184. width: 323px;
  8185. }
  8186.  
  8187. html[data-theme=dark] .css-dnz5h8 {
  8188. border: 1px solid #444;
  8189. }
  8190.  
  8191. html[data-theme=dark] .CarouselBanner-topNavBarShow-utQMU {
  8192. background: rgb(18, 18, 18)
  8193. }
  8194.  
  8195. html[data-theme=dark] .TopNavBar-fixInner-8MxBW .TopNavBar-activeTab-nN4v9 a {
  8196. color: #0084FF !important
  8197. }
  8198.  
  8199. .TopNavBar-fixInner-wr5x1 .TopNavBar-activeTab-2qfUG.TopNavBar-tab-gdypM a {
  8200. color: #ce994f
  8201. }
  8202.  
  8203. .TopNavBar-fixInner-wr5x1 .TopNavBar-tab-gdypM a {
  8204. color: black
  8205. }
  8206.  
  8207. html[data-theme=dark] .TopNavBar-fixInner-wr5x1 .TopNavBar-tab-gdypM a {
  8208. color: #d3d3d3
  8209. }
  8210.  
  8211. .TopNavBar-fixInner-8MxBW .TopNavBar-tab-d8yaD a {
  8212. color: black
  8213. }
  8214.  
  8215. html[data-theme=dark] .TopNavBar-fixInner-8MxBW .TopNavBar-tab-d8yaD a {
  8216. color: #d3d3d3
  8217. }
  8218.  
  8219. .TopNavBar-fixInner-8MxBW .TopNavBar-tab-d8yaD.TopNavBar-activeTab-nN4v9 a {
  8220. color: #0084FF !important
  8221. }
  8222.  
  8223. html[data-theme=dark] .TopNavBar-inner-eTRQC .TopNavBar-activeTab-nN4v9 a {
  8224. color: #d3d3d3 !important
  8225. }
  8226.  
  8227. html[data-theme=dark] .css-b1ywb6 {
  8228. color: white
  8229. }
  8230.  
  8231. :focus {
  8232. outline: none
  8233. }
  8234.  
  8235. html[data-theme=dark] .index-listCard-crTRa {
  8236. background: rgb(153 153 153)
  8237. }
  8238.  
  8239. .css-w9oz6h:first-child {
  8240. margin-top: 10px
  8241. }
  8242.  
  8243. html[data-theme=dark] .index-hover-ok9Jt {
  8244. color: #d3d3d3
  8245. }
  8246.  
  8247. html[data-theme=dark] .index-hover-ok9Jt:hover {
  8248. color: #0084ff
  8249. }
  8250.  
  8251. html[data-theme=dark] .LearningRouteCard-categoryInfo-2Awbz .LearningRouteCard-categoryTitle-oAZLT {
  8252. color: #d3d3d3
  8253. }
  8254.  
  8255. html[data-theme=dark] .LearningRouteCard-pathItem-xin1f .LearningRouteCard-right-uzafZ .LearningRouteCard-title-do7ND {
  8256. color: #d3d3d3
  8257. }
  8258.  
  8259. html[data-theme=dark] .LearningRouteCard-pathItem-xin1f .LearningRouteCard-right-uzafZ .LearningRouteCard-title-do7ND:hover {
  8260. color: #0084ff
  8261. }
  8262.  
  8263. html[data-theme=dark] .LearningRouteCard-pathItem-xin1f .LearningRouteCard-right-uzafZ .LearningRouteCard-detail-i7CrR {
  8264. color: #d3d3d3
  8265. }
  8266.  
  8267. html[data-theme=dark] .index-title-iYS6y {
  8268. color: #d3d3d3
  8269. }
  8270.  
  8271. html[data-theme=dark] .index-number-nbTN6 {
  8272. color: #d3d3d3
  8273. }
  8274.  
  8275. html[data-theme=dark] .LearningRouteCard-wrapper-8Yu5u {
  8276. background: rgb(18, 18, 18)
  8277. }
  8278.  
  8279. html[data-theme=dark] .LearningRouteCard-seeAll-xnUqk {
  8280. background: rgb(18, 18, 18)
  8281. }
  8282.  
  8283. html[data-theme=dark] .index-item-u9evS {
  8284. background: rgb(18, 18, 18)
  8285. }
  8286.  
  8287. html[data-theme=dark] .css-13ld3zv {
  8288. background: rgb(18, 18, 18);
  8289. border: 1px solid #444;
  8290. }
  8291.  
  8292. html[data-theme=dark] .css-qj8kyw {
  8293. background: #d3d3d3;
  8294. border: 0.5px solid transparent;
  8295. }
  8296.  
  8297. html[data-theme=dark] .css-qj8kyw:hover {
  8298. /*background:#0066ff;*/
  8299. color: white
  8300. }
  8301.  
  8302. html[data-theme=dark] .css-klsxws {
  8303. background: #d3d3d3;
  8304. border: 0.5px solid transparent;
  8305. }
  8306.  
  8307. html[data-theme=dark] .css-klsxws:hover {
  8308. /*background:rgb(100, 100, 100);*/
  8309. color: white
  8310. }
  8311.  
  8312. html[data-theme=dark] .css-3y87e3 {
  8313. border: 0.5px solid transparent;
  8314. }
  8315.  
  8316. html[data-theme=dark] .css-2jhrb {
  8317. border: 0.5px solid transparent;
  8318. }
  8319.  
  8320. html[data-theme=dark] .css-smeeif {
  8321. filter: brightness(0.6)
  8322. }
  8323.  
  8324. html[data-theme=dark] .css-1xgftsj::before {
  8325. border-top: 1px solid #1B1B1B;
  8326. }
  8327.  
  8328. html[data-theme=dark] .css-1sqyxpr::before {
  8329. border-top: 1px solid #1B1B1B;
  8330. }
  8331.  
  8332. html[data-theme=dark] .css-dpj044::before {
  8333. border-top: 1px solid #1B1B1B;
  8334. }
  8335.  
  8336. html[data-theme=dark] .TopNavBar-fixMode-qXKMs {
  8337. background: rgb(18, 18, 18)
  8338. }
  8339.  
  8340. html[data-theme=dark] .PcContent-content-9URDE .PcContent-learningRecord-mAzPm .PcContent-text-bRqSw {
  8341. color: #8590A6
  8342. }
  8343.  
  8344. html[data-theme=dark] .Vote-voteUpBtn-9a8tV {
  8345. background: rgba(85, 142, 255, .1);
  8346. color: #558eff;
  8347. }
  8348.  
  8349. html[data-theme=dark] .Vote-voteDownBtn-sK2an {
  8350. background: rgba(85, 142, 255, .1);
  8351. color: #558eff;
  8352. }
  8353.  
  8354. .AuthorInfo.AnswerItem-authorInfo {
  8355. max-width: none !important
  8356. }
  8357.  
  8358. html[data-theme=dark] .css-5qaofe {
  8359. background: white
  8360. }
  8361.  
  8362. html[data-theme=dark] .css-asds7r {
  8363. color: #0084ff
  8364. }
  8365.  
  8366. html[data-theme=dark] .css-asds7r .css-vurnku {
  8367. color: #0084ff
  8368. }
  8369.  
  8370. html[data-theme=dark] .css-3dzvwq:hover {
  8371. color: #0084ff
  8372. }
  8373.  
  8374. html[data-theme=dark] .Interaction-favorites-7qKEU svg {
  8375. filter: brightness(1)
  8376. }
  8377.  
  8378. html[data-theme=dark] .Interaction-favorites-7qKEU:hover {
  8379. color: orange
  8380. }
  8381.  
  8382. html[data-theme=dark] .Interaction-favorites-7qKEU:hover svg path {
  8383. fill: orange
  8384. }
  8385.  
  8386. html[data-theme=dark] .Interaction-root-esGak>div:nth-child(3):hover {
  8387. color: #0084ff
  8388. }
  8389.  
  8390. html[data-theme=dark] .Interaction-root-esGak>div:nth-child(3) svg {
  8391. filter: brightness(1)
  8392. }
  8393.  
  8394. html[data-theme=dark] .Interaction-root-esGak>div:nth-child(3):hover svg path {
  8395. fill: #0084ff
  8396. }
  8397.  
  8398. html[data-theme=dark] .Interaction-root-esGak>div:nth-child(4) svg {
  8399. filter: brightness(1)
  8400. }
  8401.  
  8402. .css-82fsyv {
  8403. color: #8590A6
  8404. }
  8405.  
  8406. .css-1rjujr1 {
  8407. color: #8590A6
  8408. }
  8409.  
  8410. .css-1bb86fo {
  8411. color: #8590A6
  8412. }
  8413.  
  8414. .css-12cl38p {
  8415. color: #8590A6
  8416. }
  8417.  
  8418. .css-nm6sok {
  8419. color: #8590A6
  8420. }
  8421.  
  8422. .css-owuz05 {
  8423. color: #0084ff;
  8424. }
  8425.  
  8426. .css-1n5shmo {
  8427. color: black
  8428. }
  8429.  
  8430. .css-1iyxy9k {
  8431. color: black !important
  8432. }
  8433.  
  8434. html[data-theme=dark] .css-1iyxy9k {
  8435. color: #d3d3d3 !important
  8436. }
  8437.  
  8438. .css-1o4uqdq {
  8439. color: black !important
  8440. }
  8441.  
  8442. html[data-theme=dark] .css-1o4uqdq {
  8443. color: #d3d3d3 !important
  8444. }
  8445.  
  8446. html[data-theme=dark] .css-1n5shmo {
  8447. color: #8590A6 !important
  8448. }
  8449.  
  8450. .AppHeader-notifications .Zi--Bell path {
  8451. fill: black
  8452. }
  8453.  
  8454. .AppHeader-messages .Zi--Comments path {
  8455. fill: black
  8456. }
  8457.  
  8458. .css-79elbk .ZDI--UserPencilFill24 {
  8459. fill: black
  8460. }
  8461.  
  8462. .css-79elbk .ZDI--BellFill24 {
  8463. fill: black
  8464. }
  8465.  
  8466. .css-79elbk .ZDI--ChatBubbleTwoFill24 {
  8467. fill: black
  8468. }
  8469.  
  8470. html[data-theme=dark] .css-79elbk .ZDI--UserPencilFill24 {
  8471. fill: #8590A6
  8472. }
  8473.  
  8474. html[data-theme=dark] .css-79elbk .ZDI--BellFill24 {
  8475. fill: #8590A6
  8476. }
  8477.  
  8478. html[data-theme=dark] .css-79elbk .ZDI--ChatBubbleTwoFill24 {
  8479. fill: #8590A6
  8480. }
  8481.  
  8482. .css-79elbk:hover .css-1n5shmo {
  8483. color: #0084FF
  8484. }
  8485.  
  8486. .AppHeader-notifications:hover .css-1n5shmo {
  8487. color: #FACB62
  8488. }
  8489.  
  8490. .AppHeader-notifications:hover .Zi--Bell path {
  8491. fill: #FACB62
  8492. }
  8493.  
  8494. .AppHeader-messages:hover .css-1n5shmo {
  8495. color: #00FF7F
  8496. }
  8497.  
  8498. .AppHeader-messages:hover .Zi--Comments path {
  8499. fill: #00FF7F
  8500. }
  8501.  
  8502. .css-79elbk:hover .ZDI--UserPencilFill24 {
  8503. fill: #0084FF
  8504. }
  8505.  
  8506. .css-79elbk:hover .ZDI--BellFill24 {
  8507. fill: #FACB62
  8508. }
  8509.  
  8510. .css-79elbk:hover .ZDI--ChatBubbleTwoFill24 {
  8511. fill: #00FF7F
  8512. }
  8513.  
  8514. html[data-theme=dark] .css-79elbk:hover .ZDI--UserPencilFill24 {
  8515. fill: #0084FF
  8516. }
  8517.  
  8518. html[data-theme=dark] .css-79elbk:hover .ZDI--BellFill24 {
  8519. fill: #FACB62
  8520. }
  8521.  
  8522. html[data-theme=dark] .css-79elbk:hover .ZDI--ChatBubbleTwoFill24 {
  8523. fill: #00FF7F
  8524. }
  8525.  
  8526. .css-owuz05::before {
  8527. border: 1px solid #0084ff;
  8528. }
  8529.  
  8530. html[data-theme=dark] .LearningPathWayCard-pathItem-oCd3q .LearningPathWayCard-right-qowQR .LearningPathWayCard-title-p62ZV {
  8531. color: #d3d3d3
  8532. }
  8533.  
  8534. html[data-theme=dark] .LearningPathWayCard-pathItem-oCd3q .LearningPathWayCard-right-qowQR .LearningPathWayCard-detail-mNgef {
  8535. color: #d3d3d3
  8536. }
  8537.  
  8538. html[data-theme=dark] .VideoCourseList-title-o7MUU .VideoCourseList-text-37JQa {
  8539. color: #d3d3d3
  8540. }
  8541.  
  8542. html[data-theme=dark] .VideoCourseCard-videoCourseCard-h2ewn .VideoCourseCard-title-4zMJA {
  8543. color: #d3d3d3
  8544. }
  8545.  
  8546. html[data-theme=dark] .VideoCourseCard-videoCourseCard-h2ewn .VideoCourseCard-author-viP6g .VideoCourseCard-authorName-xwrLd {
  8547. color: #d3d3d3
  8548. }
  8549.  
  8550. html[data-theme=dark] .VideoCourseCard-videoCourseCard-h2ewn .VideoCourseCard-records-e1dJN {
  8551. color: #d3d3d3
  8552. }
  8553.  
  8554. html[data-theme=dark] .PcContent-content-n3TNS .PcContent-learningRecord-vDRHw .PcContent-left-4tmUS {
  8555. color: #d3d3d3
  8556. }
  8557.  
  8558. html[data-theme=dark] .Article-article-8UHAq .Article-header-r1Qd7 .Article-title-r1RkE {
  8559. color: #d3d3d3
  8560. }
  8561.  
  8562. html[data-theme=dark] .Article-article-8UHAq .Article-header-r1Qd7 .Article-superior-cyVwv {
  8563. color: #d3d3d3
  8564. }
  8565.  
  8566. html[data-theme=dark] .PcContent-content-n3TNS .PcContent-learningRecord-vDRHw .PcContent-right-bLRQH {
  8567. color: #8590A6
  8568. }
  8569.  
  8570. html[data-theme=dark] .PcContent-coverFix-5zWd3 {
  8571. background: rgb(18, 18, 18)
  8572. }
  8573.  
  8574. html[data-theme=dark] .Banner-wrapper-qANiD {
  8575. background: rgb(18, 18, 18)
  8576. }
  8577.  
  8578. html[data-theme=dark] .PcContent-content-n3TNS {
  8579. background: rgb(18, 18, 18)
  8580. }
  8581.  
  8582. html[data-theme=dark] .VideoCourseList-title-o7MUU {
  8583. background: rgb(18, 18, 18)
  8584. }
  8585.  
  8586. html[data-theme=dark] .Article-article-8UHAq .Article-header-r1Qd7 {
  8587. background: rgb(18, 18, 18)
  8588. }
  8589.  
  8590. html[data-theme=dark] .LearningPathWayCard-pathItem-oCd3q {
  8591. background: rgb(18, 18, 18)
  8592. }
  8593.  
  8594. html[data-theme=dark] .PcContent-content-n3TNS .PcContent-learningRecord-vDRHw {
  8595. background: rgb(18, 18, 18)
  8596. }
  8597.  
  8598. html[data-theme=dark] .Structure-structure-pD2Y3 {
  8599. background: rgb(18, 18, 18)
  8600. }
  8601.  
  8602. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-userInfo-kpbvq {
  8603. background: rgb(18, 18, 18)
  8604. }
  8605.  
  8606. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-userInfo-kpbvq .Achievement-userName-8PUaH {
  8607. color: #d3d3d3
  8608. }
  8609.  
  8610. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-userInfo-kpbvq img {
  8611. background: white
  8612. }
  8613.  
  8614. html[data-theme=dark] .Tab-tab-xnLDq .Tab-tabTitle-nueHF .Tab-item-vBYm1 {
  8615. color: #d3d3d3
  8616. }
  8617.  
  8618. html[data-theme=dark] .Tab-tab-xnLDq .Tab-tabTitle-nueHF .Tab-activeItem-aW8jh {
  8619. color: #06f
  8620. }
  8621.  
  8622. html[data-theme=dark] .VideoCourseCard-videoCourseCard-oGG6U .VideoCourseCard-rightContent-gdG5T .VideoCourseCard-title-rzU56 {
  8623. color: #d3d3d3
  8624. }
  8625.  
  8626. html[data-theme=dark] .VideoCourseCard-videoCourseCard-oGG6U .VideoCourseCard-rightContent-gdG5T .VideoCourseCard-author-qXzAV .VideoCourseCard-authorName-svABa {
  8627. color: #d3d3d3
  8628. }
  8629.  
  8630. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-card-6KACL .Achievement-first-pCy1T .Achievement-label-kkRmZ {
  8631. color: #d3d3d3
  8632. }
  8633.  
  8634. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-card-6KACL .Achievement-first-pCy1T .Achievement-num-uyphg {
  8635. color: #d3d3d3
  8636. }
  8637.  
  8638. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-card-6KACL .Achievement-item-t2YEj .Achievement-num-uyphg {
  8639. color: #d3d3d3
  8640. }
  8641.  
  8642. html[data-theme=dark] .Bubble-content-4n2tu {
  8643. background: rgb(18, 18, 18) !important;
  8644. }
  8645.  
  8646. html[data-theme=dark] .Achievement-contentPopup-iVfwy {
  8647. color: #d3d3d3 !important
  8648. }
  8649.  
  8650. html[data-theme=dark] .Tab-tab-xnLDq .Tab-tabTitle-nueHF {
  8651. background: rgb(18, 18, 18)
  8652. }
  8653.  
  8654. html[data-theme=dark] .Tab-tab-xnLDq .Tab-placeHolder-qa6gk {
  8655. background: rgb(18, 18, 18)
  8656. }
  8657.  
  8658. html[data-theme=dark] .Achievement-userRecord-7FBSL .Achievement-card-6KACL {
  8659. background: rgb(18, 18, 18)
  8660. }
  8661.  
  8662. html[data-theme=dark] .css-1t76iew {
  8663. background: rgb(18, 18, 18)
  8664. }
  8665.  
  8666. .css-1afbq0c {
  8667. color: #d3d3d3;
  8668. border-bottom: 0.5px solid #444
  8669. }
  8670.  
  8671. html[data-theme=dark] .css-10xcm3x {
  8672. background: #8080801c;
  8673. }
  8674.  
  8675. html[data-theme=dark] .css-7tluok {
  8676. background: #8080801c;
  8677. }
  8678.  
  8679. html[data-theme=dark] .VideoCourseCard-videoCourseCard-oGG6U {
  8680. border-bottom: 1px solid #444
  8681. }
  8682.  
  8683. html[data-theme=dark] .Tab-tab-xnLDq .Tab-tabTitle-nueHF {
  8684. border-bottom: 1px solid #444
  8685. }
  8686.  
  8687. html[data-theme=dark] .CollectionDetailPageItem-innerContainer {
  8688. border-bottom: 1px solid #444
  8689. }
  8690.  
  8691. html[data-theme=dark] .css-1woo4vw {
  8692. color: #d3d3d3
  8693. }
  8694.  
  8695. html[data-theme=dark] .css-3v0iam>div {
  8696. color: #d3d3d3
  8697. }
  8698.  
  8699. html[data-theme=dark] .css-1229yg4 {
  8700. color: #d3d3d3
  8701. }
  8702.  
  8703. html[data-theme=dark] .css-64vor1 {
  8704. color: #d3d3d3
  8705. }
  8706.  
  8707. html[data-theme=dark] .css-9iuyhq {
  8708. color: #d3d3d3
  8709. }
  8710.  
  8711. html[data-theme=dark] .css-1rd0h6f {
  8712. color: #d3d3d3
  8713. }
  8714.  
  8715. .css-1pr8gk5.is-active::after {
  8716. background-color: #1772F6 !important;
  8717. }
  8718.  
  8719. html[data-theme=dark] .css-tad50r:hover {
  8720. background: #ffffff1c;
  8721. }
  8722.  
  8723. html[data-theme=dark] .css-tj0ab2 {
  8724. fill: #d3d3d3
  8725. }
  8726.  
  8727. .css-8kjoqe+div:not(.css-1kg4pro)::before {
  8728. opacity: 0.1
  8729. }
  8730.  
  8731. .css-8kjoqe+div:not(.css-1v2mb5y)::after {
  8732. opacity: 0.1
  8733. }
  8734.  
  8735. html[data-theme=dark] .VideoUploadHint-buttonGroup {
  8736. justify-content: center;
  8737. }
  8738.  
  8739. html[data-theme=dark] .css-tad50r .css-vurnku {
  8740. background: transparent
  8741. }
  8742.  
  8743. html[data-theme=dark] .css-1afbq0c:focus-visible {
  8744. box-shadow: none;
  8745. }
  8746.  
  8747. html[data-theme=dark] .ZDI--ToolBarVipSetting {
  8748. fill: #d3d3d3
  8749. }
  8750.  
  8751. html[data-theme=dark] .css-12mpbz1 .css-vurnku {
  8752. background: transparent
  8753. }
  8754.  
  8755. html[data-theme=dark] .css-w39bbk .css-vurnku {
  8756. background: transparent
  8757. }
  8758.  
  8759. html[data-theme=dark] .css-1v31w62 {
  8760. background: rgba(133, 144, 166, 0.05);
  8761. border: 1px solid transparent
  8762. }
  8763.  
  8764. html[data-theme=dark] svg._11u3rwe {
  8765. filter: brightness(1) !important;
  8766. }
  8767.  
  8768. .css-1gn92fl {
  8769. position: absolute;
  8770. left: 155px;
  8771. top: 410px;
  8772. }
  8773.  
  8774. .css-10fy1q8 {
  8775. width: 372.88px
  8776. }
  8777.  
  8778. .css-1vqda4a {
  8779. display: none !important
  8780. }
  8781.  
  8782. #div-gpt-ad-bannerAd {
  8783. display: none !important
  8784. }
  8785.  
  8786. #div-gpt-ad-hotFeedAd {
  8787. display: none !important
  8788. }
  8789.  
  8790. .KfeCollection-VipRecommendCard {
  8791. display: none !important
  8792. }
  8793.  
  8794. .RelatedReadings {
  8795. display: none !important
  8796. }
  8797.  
  8798. .HotQuestions-title {
  8799. display: none !important
  8800. }
  8801.  
  8802. .HotQuestions-section {
  8803. display: none !important
  8804. }
  8805.  
  8806. html[data-theme=dark] .css-w9oz6h {
  8807. border: none;
  8808. }
  8809.  
  8810. html[data-hover-visible] .css-w9oz6h:hover {
  8811. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  8812. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  8813. }
  8814.  
  8815. html[data-theme=dark][data-hover-visible] .css-w9oz6h:hover {
  8816. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  8817. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  8818. }
  8819.  
  8820. html[data-hover-visible] .css-1f6hmyt:hover {
  8821. -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3);
  8822. box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(0, 132, 255, .3)
  8823. }
  8824.  
  8825. html[data-theme=dark][data-hover-visible] .css-1f6hmyt:hover {
  8826. -webkit-box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6);
  8827. box-shadow: 0 0 0 2px #1a1a1a, 0 0 0 5px rgba(58, 118, 208, .6)
  8828. }
  8829.  
  8830. html[data-theme=dark] .css-1qcx8mz {
  8831. border: none
  8832. }
  8833.  
  8834. .AppHeaderProfileMenu-item.UserFill24 {
  8835. color: black !important;
  8836. }
  8837.  
  8838. .AppHeaderProfileMenu-item.UserFill24 .ZDI--UserFill24 {
  8839. fill: black !important;
  8840. }
  8841.  
  8842. .AppHeaderProfileMenu-item.UserFill24:hover {
  8843. color: #08a500 !important;
  8844. }
  8845.  
  8846. .AppHeaderProfileMenu-item.UserFill24:hover .ZDI--UserFill24 {
  8847. fill: #08a500 !important;
  8848. }
  8849.  
  8850. html[data-theme=dark] .AppHeaderProfileMenu-item.UserFill24 {
  8851. color: #d3d3d3 !important;
  8852. }
  8853.  
  8854. html[data-theme=dark] .AppHeaderProfileMenu-item.UserFill24 .ZDI--UserFill24 {
  8855. fill: #d3d3d3 !important;
  8856. }
  8857.  
  8858. html[data-theme=dark] .AppHeaderProfileMenu-item.UserFill24:hover {
  8859. color: #08a500 !important;
  8860. }
  8861.  
  8862. html[data-theme=dark] .AppHeaderProfileMenu-item.UserFill24:hover .ZDI--UserFill24 {
  8863. fill: #08a500 !important;
  8864. }
  8865.  
  8866.  
  8867. .AppHeaderProfileMenu-item.HeartFill16 {
  8868. color: black !important;
  8869. }
  8870.  
  8871. .AppHeaderProfileMenu-item.HeartFill16 .ZDI--HeartFill16 {
  8872. fill: black !important;
  8873. }
  8874.  
  8875. .AppHeaderProfileMenu-item.HeartFill16:hover {
  8876. color: #ff7d7d !important;
  8877. }
  8878.  
  8879. .AppHeaderProfileMenu-item.HeartFill16:hover .ZDI--HeartFill16 {
  8880. fill: #ff7d7d !important;
  8881. }
  8882.  
  8883. html[data-theme=dark] .AppHeaderProfileMenu-item.HeartFill16 {
  8884. color: #d3d3d3 !important;
  8885. }
  8886.  
  8887. html[data-theme=dark] .AppHeaderProfileMenu-item.HeartFill16 .ZDI--HeartFill16 {
  8888. fill: #d3d3d3 !important;
  8889. }
  8890.  
  8891. html[data-theme=dark] .AppHeaderProfileMenu-item.HeartFill16:hover {
  8892. color: #ff7d7d !important;
  8893. }
  8894.  
  8895. html[data-theme=dark] .AppHeaderProfileMenu-item.HeartFill16:hover .ZDI--HeartFill16 {
  8896. fill: #ff7d7d !important;
  8897. }
  8898.  
  8899.  
  8900. .AppHeaderProfileMenu-item.ElderFill16 {
  8901. color: black !important;
  8902. }
  8903.  
  8904. .AppHeaderProfileMenu-item.ElderFill16 .ZDI--ElderFill16 {
  8905. fill: black !important;
  8906. }
  8907.  
  8908. .AppHeaderProfileMenu-item.ElderFill16:hover {
  8909. color: #0084FF !important;
  8910. }
  8911.  
  8912. .AppHeaderProfileMenu-item.ElderFill16:hover .ZDI--ElderFill16 {
  8913. fill: #0084FF !important;
  8914. }
  8915.  
  8916. html[data-theme=dark] .AppHeaderProfileMenu-item.ElderFill16 {
  8917. color: #d3d3d3 !important;
  8918. }
  8919.  
  8920. html[data-theme=dark] .AppHeaderProfileMenu-item.ElderFill16 .ZDI--ElderFill16 {
  8921. fill: #d3d3d3 !important;
  8922. }
  8923.  
  8924. html[data-theme=dark] .AppHeaderProfileMenu-item.ElderFill16:hover {
  8925. color: #0084FF !important;
  8926. }
  8927.  
  8928. html[data-theme=dark] .AppHeaderProfileMenu-item.ElderFill16:hover .ZDI--ElderFill16 {
  8929. fill: #0084FF !important;
  8930. }
  8931.  
  8932. .AppHeaderProfileMenu-item.GearFill24 {
  8933. color: black !important;
  8934. }
  8935.  
  8936. .AppHeaderProfileMenu-item.GearFill24 .ZDI--GearFill24 {
  8937. fill: black !important;
  8938. }
  8939.  
  8940. .AppHeaderProfileMenu-item.GearFill24:hover {
  8941. color: purple !important;
  8942. }
  8943.  
  8944. .AppHeaderProfileMenu-item.GearFill24:hover .ZDI--GearFill24 {
  8945. fill: purple !important;
  8946. }
  8947.  
  8948. html[data-theme=dark] .AppHeaderProfileMenu-item.GearFill24 {
  8949. color: #d3d3d3 !important;
  8950. }
  8951.  
  8952. html[data-theme=dark] .AppHeaderProfileMenu-item.GearFill24 .ZDI--GearFill24 {
  8953. fill: #d3d3d3 !important;
  8954. }
  8955.  
  8956. html[data-theme=dark] .AppHeaderProfileMenu-item.GearFill24:hover {
  8957. color: purple !important;
  8958. }
  8959.  
  8960. html[data-theme=dark] .AppHeaderProfileMenu-item.GearFill24:hover .ZDI--GearFill24 {
  8961. fill: purple !important;
  8962. }
  8963.  
  8964.  
  8965. .AppHeaderProfileMenu-item.PowerFill24 {
  8966. color: black !important;
  8967. }
  8968.  
  8969. .AppHeaderProfileMenu-item.PowerFill24 .ZDI--PowerFill24 {
  8970. fill: black !important;
  8971. }
  8972.  
  8973. .AppHeaderProfileMenu-item.PowerFill24:hover {
  8974. color: red !important;
  8975. }
  8976.  
  8977. .AppHeaderProfileMenu-item.PowerFill24:hover .ZDI--PowerFill24 {
  8978. fill: red !important;
  8979. }
  8980.  
  8981. html[data-theme=dark] .AppHeaderProfileMenu-item.PowerFill24 {
  8982. color: #d3d3d3 !important;
  8983. }
  8984.  
  8985. html[data-theme=dark] .AppHeaderProfileMenu-item.PowerFill24 .ZDI--PowerFill24 {
  8986. fill: #d3d3d3 !important;
  8987. }
  8988.  
  8989. html[data-theme=dark] .AppHeaderProfileMenu-item.PowerFill24:hover {
  8990. color: red !important;
  8991. }
  8992.  
  8993. html[data-theme=dark] .AppHeaderProfileMenu-item.PowerFill24:hover .ZDI--PowerFill24 {
  8994. fill: red !important;
  8995. }
  8996.  
  8997. .Catalog.isCatalogV2.css-2hy5iv {
  8998. display: none !important;
  8999. }
  9000.  
  9001. html[data-theme=dark] .css-zprod6 {
  9002. box-sizing: border-box;
  9003. margin: 0;
  9004. min-width: 0;
  9005. border-radius: 6px;
  9006. position: absolute;
  9007. width: 242px;
  9008. height: 242px;
  9009. top: 62px;
  9010. left: 174px;
  9011. box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  9012. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  9013. }
  9014.  
  9015.  
  9016. /*==知乎文章==*/
  9017. /*代码的滚动条样式*/
  9018. .css-ob6uua pre::-webkit-scrollbar {
  9019. height: 12px;
  9020. }
  9021.  
  9022. .css-ob6uua pre::-webkit-scrollbar-track {
  9023. background: #d3d3d3;
  9024. border-radius: 10px;
  9025. }
  9026.  
  9027. .css-ob6uua pre::-webkit-scrollbar-thumb {
  9028. background: #888;
  9029. border-radius: 10px;
  9030. }
  9031.  
  9032. .css-ob6uua pre::-webkit-scrollbar-thumb:hover {
  9033. background: #555;
  9034. }
  9035.  
  9036. /*代码背景*/
  9037. html[data-theme=dark] .css-ob6uua pre {
  9038. background: #212429 !important;
  9039. }
  9040.  
  9041. html[data-theme=dark] .css-ob6uua code {
  9042. background: #212429 !important;
  9043. }
  9044.  
  9045. /*作者边框*/
  9046. html[data-theme=dark] .css-zein01 {
  9047. border: none !important;
  9048. }
  9049.  
  9050. .css-b7erz1 {
  9051. color: #0084ff !important;
  9052. }
  9053.  
  9054. /*==知乎文章==*/
  9055.  
  9056.  
  9057. /*==等你来答==*/
  9058. /*为你推荐-问题标题*/
  9059. html[data-theme=dark] .css-bjox9u {
  9060. color: #d3d3d3 !important;
  9061. }
  9062.  
  9063. /*邀请回答-问题背景*/
  9064. html[data-theme=dark] .css-19nug30 {
  9065. background: none !important;
  9066. }
  9067.  
  9068. /*邀请回答-提问者名称*/
  9069. html[data-theme=dark] .css-1w0nc6z {
  9070. color: #d3d3d3 !important;
  9071. }
  9072.  
  9073. /*问题底部边框*/
  9074. html[data-theme=dark] .css-1cdnuuo {
  9075. border-bottom: 1px solid #444;
  9076. }
  9077.  
  9078. /*问题加载占位*/
  9079. html[data-theme=dark] .PlaceHolder-inner {
  9080. background: #121212 !important;
  9081. }
  9082. html[data-theme=dark] .PlaceHolder-bg {
  9083. background-color: #1b1b1b !important;
  9084. background-image: -webkit-gradient(linear,left top,right top,from(#1b1b1b),color-stop(25%,#2e2e2e),color-stop(75%,#2e2e2e),to(#1b1b1b)) !important;
  9085. background-image: linear-gradient(90deg,#1b1b1b 0,#2e2e2e 25%,#2e2e2e 75%,#1b1b1b) !important;
  9086. }
  9087. html[data-theme=dark] .PlaceHolder-bg svg path {
  9088. fill: #121212 !important;
  9089. }
  9090.  
  9091. /*==等你来答==*/
  9092.  
  9093.  
  9094. /*==知乎问题==*/
  9095. /*继续追问*/
  9096. html[data-theme=dark] .css-jghqwm {
  9097. background: #121212 !important;
  9098. border: 1px solid #444 !important;
  9099. }
  9100.  
  9101. html[data-theme=dark] .css-lzd0h4 {
  9102. color: #d3d3d3 !important;
  9103. }
  9104.  
  9105. /*继续追问-问题列表*/
  9106. html[data-theme=dark] .css-i0heim {
  9107. color: #d3d3d3 !important;
  9108. }
  9109.  
  9110. /*==知乎问题==*/
  9111.  
  9112.  
  9113. /*==知乎文章==*/
  9114. /*目录列表*/
  9115. html[data-theme=dark] .css-17v5fjs {
  9116. background: #151a23 !important
  9117. }
  9118.  
  9119. html[data-theme=dark] .css-1e6hvbc {
  9120. background: #151a23 !important
  9121. }
  9122.  
  9123. html[data-theme=dark] .css-1e6hvbc {
  9124. background: #151a23 !important
  9125. }
  9126.  
  9127. html[data-theme=dark] .css-1ifd8ga {
  9128. background: #151a23 !important
  9129. }
  9130.  
  9131. /*展开目录*/
  9132. html[data-theme=dark] .css-1hrberl {
  9133. background: #151a23 !important
  9134. }
  9135.  
  9136. /*==知乎文章==*/
  9137.  
  9138.  
  9139. /*==知乎知学堂==*/
  9140. /*导航栏*/
  9141. html[data-theme=dark] .TopNavBar-root-oL4f5 {
  9142. background: #121212 !important;
  9143. }
  9144.  
  9145. /*导航栏文字*/
  9146. html[data-theme=dark] .TopNavBar-inner-eTRQC .TopNavBar-tab-d8yaD a {
  9147. color: #d3d3d3 !important;
  9148. }
  9149.  
  9150. /*导航栏-知乎直答*/
  9151. html[data-theme=dark] .TopNavBar-inner-eTRQC .TopNavBar-tab-d8yaD a svg:nth-of-type(2) path {
  9152. fill: #d3d3d3 !important;
  9153. }
  9154.  
  9155. /*导航栏按钮*/
  9156. html[data-theme=dark] .TopNavBar-userInfo-rSUG5 {
  9157. background: #121212 !important;
  9158. }
  9159.  
  9160. /*轮播图*/
  9161. html[data-theme=dark] .index-root-7Tjww {
  9162. background: #121212 !important;
  9163. }
  9164.  
  9165. /*左侧菜单*/
  9166. html[data-theme=dark] .index-navtab-tySe5 {
  9167. background: #121212 !important;
  9168. border: 1px solid #444 !important;
  9169. }
  9170.  
  9171. /*左侧菜单-菜单项hover*/
  9172. html[data-theme=dark] .index-navtab-tySe5 .index-card-xeNbD:hover {
  9173. background: #ffffff1c !important;
  9174. }
  9175.  
  9176. /*左侧菜单-一级标题*/
  9177. html[data-theme=dark] .index-navtab-tySe5 .index-card-xeNbD .index-name-7ip2f {
  9178. color: #d3d3d3 !important
  9179. }
  9180.  
  9181. /*左侧菜单-二级菜单*/
  9182. html[data-theme=dark] .index-hoverCard-jc4Zu {
  9183. background: #191b1f !important;
  9184. border: none !important;
  9185. }
  9186.  
  9187. /*右侧菜单*/
  9188. html[data-theme=dark] .index-root-3h4H5 {
  9189. background: #121212 !important;
  9190. border: 1px solid #444 !important;
  9191. }
  9192.  
  9193. /*更多回答*/
  9194. html[data-theme=dark] .index-firstTitleInfo-khQSM{
  9195. color: #d3d3d3 !important;
  9196. }
  9197. html[data-theme=dark] .index-title-7SosK{
  9198. color: #d3d3d3 !important;
  9199. }
  9200. html[data-theme=dark] .index-info-3cNeG{
  9201. color: #d3d3d3 !important;
  9202. }
  9203. html[data-theme=dark] .index-bd-98u3g svg{
  9204. fill:#121212 !important;
  9205. filter: brightness(0.38) !important;
  9206. }
  9207. html[data-theme=dark] .index-dividing-covgT{
  9208. background:#444 !important;
  9209. }
  9210.  
  9211. /*课程介绍-回到顶部*/
  9212. html[data-theme=dark] .CornerButtonToTop-cornerButton-thbFX{
  9213. background: #1a1a1a !important;
  9214. color:#d3d3d3 !important;
  9215. border:none !important;
  9216. }
  9217. html[data-theme=dark] .CornerButtonToTop-cornerButton-thbFX svg path{
  9218. fill:#d3d3d3 !important;
  9219. }
  9220. html[data-theme=dark] .CornerButtonToTop-cornerButton-thbFX:hover{
  9221. background: #151a23 !important;
  9222. border:none !important;
  9223. }
  9224. html[data-theme=dark] .CornerButtonToTop-cornerButton-thbFX:hover svg path{
  9225. fill:#0084ff !important;
  9226. }
  9227. html[data-theme=dark] .CornerButtonToTop-cornerButton-thbFX:hover .CornerButtonToTop-tip-kZ89p{
  9228. color:#0084ff !important;
  9229. }
  9230.  
  9231. .CornerButtonToTop-cornerButton-qrpjx:hover svg {
  9232. fill: #0084FF !important;
  9233. }
  9234. /*课程视频-回到顶部*/
  9235. html[data-theme=dark] .CornerButtonToTop-cornerButton-qrpjx {
  9236. background: #1a1a1a;
  9237. color:#d3d3d3 !important;
  9238. border:none !important;
  9239. }
  9240.  
  9241. html[data-theme=dark] .CornerButtonToTop-cornerButton-qrpjx svg {
  9242. fill: #d3d3d3 !important;
  9243. }
  9244. html[data-theme=dark] .CornerButtonToTop-cornerButton-qrpjx:hover{
  9245. color: #0084FF !important;
  9246. }
  9247. html[data-theme=dark] .CornerButtonToTop-cornerButton-qrpjx:hover svg {
  9248. fill: #0084FF !important;
  9249. }
  9250.  
  9251. /*课程分类*/
  9252. html[data-theme=dark] .index-goodCourseContainerHeader-j88VF > img{
  9253. filter: brightness(0.6) invert(1) !important;
  9254. }
  9255. html[data-theme=dark] .index-title-cZ7Ux > img{
  9256. filter: brightness(0.6) invert(1) !important;
  9257. }
  9258. html[data-theme=dark] .index-title-oxWVR > img{
  9259. filter: brightness(0.6) invert(1) !important;
  9260. }
  9261.  
  9262. /*课程背景*/
  9263. html[data-theme=dark] .index-goodCourseCardContainer-mYGZe .index-goodCourseCards-bwKSm .index-goodCourseCard-tJhQ5 {
  9264. background: #0062ff0f !important
  9265. }
  9266. html[data-theme=dark] .index-learnPath-dfrcu .index-learnContainer-9QR37 .index-learnShow-p3yvw .index-learnCard-vuCza{
  9267. background: #0062ff0f !important
  9268. }
  9269. html[data-theme=dark] .index-moreCourse-i41VD .index-courseContainer-7ugwD .index-moreShow-4ViPd .index-courseCard-ebw4r{
  9270. background: #0062ff0f !important
  9271. }
  9272. html[data-theme=dark] .index-videoCardItem-bzeJ1{
  9273. background: #0062ff0f !important
  9274. }
  9275.  
  9276.  
  9277. /*课程标题*/
  9278. html[data-theme=dark] .index-title-gHxNQ .index-text-vqAEU {
  9279. color: #d3d3d3 !important;
  9280. }
  9281. html[data-theme=dark] .index-learnPath-dfrcu .index-learnContainer-9QR37 .index-learnShow-p3yvw .index-learnCard-vuCza .index-title-cZ7Ux{
  9282. color: #d3d3d3 !important;
  9283. }
  9284. html[data-theme=dark] .index-moreCourse-i41VD .index-courseContainer-7ugwD .index-moreShow-4ViPd .index-courseCard-ebw4r .index-title-oxWVR{
  9285. color: #d3d3d3 !important;
  9286. }
  9287. html[data-theme=dark] .index-title-8Nqsa a{
  9288. color: #d3d3d3 !important;
  9289. }
  9290.  
  9291.  
  9292. /*课程作者*/
  9293. html[data-theme=dark] .index-learnPath-dfrcu .index-learnContainer-9QR37 .index-learnShow-p3yvw .index-learnCard-vuCza .index-teacher-iS5qX .index-left-3uJ9a .index-info-nMxUt .index-name-xvcEq{
  9294. color: #d3d3d3 !important;
  9295. }
  9296. html[data-theme=dark] .index-moreCourse-i41VD .index-courseContainer-7ugwD .index-moreShow-4ViPd .index-courseCard-ebw4r .index-teacher-7bo8p .index-left-i7iyK .index-info-aXZTV .index-name-gBZqv{
  9297. color: #d3d3d3 !important;
  9298. }
  9299. html[data-theme=dark] .index-teacher-4xeNi .index-left-c1R6s .index-info-8mHSm .index-name-mytRy{
  9300. color: #d3d3d3 !important;
  9301. }
  9302. html[data-theme=dark] .index-teacher-oRzg6 .index-left-jbZXH .index-info-spqbi .index-name-eRKoT{
  9303. color: #d3d3d3 !important;
  9304. }
  9305.  
  9306.  
  9307. /*课程报名人数*/
  9308. html[data-theme=dark] .index-learnPath-dfrcu .index-learnContainer-9QR37 .index-learnShow-p3yvw .index-learnCard-vuCza .index-teacher-iS5qX .index-left-3uJ9a .index-desc-i4UK7 .index-descLeft-6oRth{
  9309. border:none;
  9310. }
  9311. html[data-theme=dark] .index-moreCourse-i41VD .index-courseContainer-7ugwD .index-moreShow-4ViPd .index-courseCard-ebw4r .index-teacher-7bo8p .index-left-i7iyK .index-desc-2TFdt .index-descLeft-2Dnem{
  9312. border:none;
  9313. }
  9314. html[data-theme=dark] .index-teacher-4xeNi .index-left-c1R6s .index-desc-qfkzi .index-descLeft-mTCLz{
  9315. border:none;
  9316. }
  9317.  
  9318.  
  9319. /*课程直播时间*/
  9320. html[data-theme=dark] .index-learnPath-dfrcu .index-learnContainer-9QR37 .index-learnShow-p3yvw .index-learnCard-vuCza .index-teacher-iS5qX .index-left-3uJ9a .index-tags-tr5ZQ .index-tag-dGyNz{
  9321. border:none;
  9322. }
  9323. html[data-theme=dark] .index-teacher-4xeNi .index-left-c1R6s .index-tag-jYChY .index-tagLeft-cRqGw{
  9324. border:none;
  9325. }
  9326.  
  9327. /*课程播放量*/
  9328. html[data-theme=dark] .index-teacher-oRzg6 .index-left-jbZXH .index-desc-fPsXa .index-descLeft-8JgCq{
  9329. border:none;
  9330. }
  9331.  
  9332.  
  9333. /*兴趣标签列表*/
  9334. html[data-theme=dark] .popover-root-jPqox {
  9335. background: #121212 !important;
  9336. }
  9337.  
  9338. html[data-theme=dark] .popover-header-xeHyh {
  9339. background: #121212 !important;
  9340. }
  9341.  
  9342. html[data-theme=dark] .popover-header-xeHyh div:last-of-type {
  9343. background: #444 !important;
  9344. }
  9345.  
  9346. /*兴趣标签列表-知乎知学堂*/
  9347. html[data-theme=dark] .popover-logoRight-qcJwZ {
  9348. filter: brightness(0.6) invert(1) !important;
  9349. }
  9350.  
  9351. /*兴趣标签列表-标签*/
  9352. html[data-theme=dark] .ItemComponent-unselectItemContainer-ozjFn {
  9353. background: #ffffff1c !important;
  9354. }
  9355.  
  9356. html[data-theme=dark] .ItemComponent-unSecelectItemText-cXXHM {
  9357. color: #d3d3d3 !important;
  9358. }
  9359.  
  9360. /*搜索框*/
  9361. .TopNavBar-searchBar-hDE1u {
  9362. border-radius: 999px;
  9363. background: #f8f8fa;
  9364. border: 1px solid #ebeced;
  9365. }
  9366.  
  9367. html[data-theme=dark] .TopNavBar-searchBar-hDE1u {
  9368. border-radius: 999px;
  9369. background: #212429;
  9370. border: 1px solid #282430;
  9371. }
  9372.  
  9373. /*搜索框文字*/
  9374. .TopNavBar-input-sjsdr {
  9375. border: none;
  9376. color: black !important;
  9377. }
  9378.  
  9379. html[data-theme=dark] .TopNavBar-input-sjsdr {
  9380. border: none;
  9381. color: #d3d3d3 !important;
  9382. }
  9383.  
  9384. /*搜索icon*/
  9385. .TopNavBar-searchIcon-bwNDS{
  9386. margin-top: 4px;
  9387. }
  9388.  
  9389. /*更多课程按钮*/
  9390. html[data-theme=dark] .index-learnPath-dfrcu .index-more-3mk2z{
  9391. background:#0084ff;
  9392. color:white;
  9393. }
  9394. html[data-theme=dark] .index-learnPath-dfrcu .index-more-3mk2z svg path{
  9395. fill:white;
  9396. }
  9397. html[data-theme=dark] .index-moreCourse-i41VD .index-more-re5tv{
  9398. background:#0084ff;
  9399. color:white;
  9400. }
  9401. html[data-theme=dark] .index-moreCourse-i41VD .index-more-re5tv svg path{
  9402. fill:white;
  9403. }
  9404.  
  9405. /*分类标签(圆形)*/
  9406. html[data-theme=dark] .index-subMenu-qKavE .index-tag-b6PXp{
  9407. background:#8080801c;
  9408. color:#d3d3d3;
  9409. border: none!important;
  9410. }
  9411. html[data-theme=dark] .index-subMenu-qKavE .index-tag-b6PXp.index-active-eQAh4{
  9412. background:#0066ff1a;
  9413. color:#06f;
  9414. border: none!important;
  9415. }
  9416. /*悬浮条背景*/
  9417. html[data-theme=dark] .CourseConsultation-corner-mddzk{
  9418. background: #151a23 !important;
  9419. border: .5px solid #444;
  9420. }
  9421. html[data-theme=dark] .CourseConsultation-corner-mddzk .CourseConsultation-cornerButton-7ycYw{
  9422. background: #151a23 !important
  9423. }
  9424. html[data-theme=dark] div[style="box-sizing:border-box;width:100%;margin:8px 0"] > div{
  9425. background: #444 !important
  9426. }
  9427. /*悬浮条图标*/
  9428. html[data-theme=dark] .CourseConsultation-corner-mddzk .CourseConsultation-cornerButton-7ycYw:not(:first-of-type) path{
  9429. fill:#d3d3d3 !important;
  9430. }
  9431. /*悬浮条文字*/
  9432. html[data-theme=dark] .CourseConsultation-corner-mddzk .CourseConsultation-cornerButton-7ycYw .CourseConsultation-tip-qBHqt{
  9433. color: #d3d3d3 !important;
  9434. }
  9435.  
  9436. /*课程购买-知学堂logo*/
  9437. html[data-theme=dark] .ShelfTopNav-logo-5nfWk svg g path:nth-of-type(-n+29) {
  9438. fill: #d3d3d3!important;
  9439. }
  9440. /*课程购买-标题*/
  9441. html[data-theme=dark] .ProductCard-titleWrap-swj39{
  9442. color: #d3d3d3!important;
  9443. }
  9444. html[data-theme=dark] .Tabs-tab-fg7zz.Tabs-active-dv4R2{
  9445. color: #d3d3d3!important;
  9446. }
  9447. /*课程购买须知*/
  9448. html[data-theme=dark] .Section-title-chTHJ{
  9449. color: #d3d3d3!important;
  9450. }
  9451. /*课程购买-内容更新*/
  9452. html[data-theme=dark] .Catalog-tipsText-4qrRq{
  9453. color: #0084ff!important;
  9454. }
  9455. /*课程购买-目录*/
  9456. html[data-theme=dark] .Catalog-chapterCommonTitle-dHpf9{
  9457. color: #d3d3d3!important;
  9458. }
  9459. html[data-theme=dark] .SectionCell-title-iqyj6{
  9460. color: #d3d3d3!important;
  9461. }
  9462.  
  9463. /*课程视频-标签*/
  9464. .CourseDescription-courseLabel-qPDMp{
  9465. overflow: hidden;
  9466. }
  9467. /*课程视频-目录*/
  9468. html[data-theme=dark] .Tabs-active-tab-2CpLg{
  9469. color: #0062ff!important;
  9470. }
  9471. /*课程视频-目录背景*/
  9472. html[data-theme=dark] .Tabs-container-feZhG{
  9473. background: #121212!important;
  9474. }
  9475. /*课程视频-目录滚动条*/
  9476. .EpisodeList-episodeList-m3CAU::-webkit-scrollbar {
  9477. width: 12px;
  9478. }
  9479. .EpisodeList-episodeList-m3CAU::-webkit-scrollbar-track {
  9480. background: #d3d3d3;
  9481. border-radius: 10px;
  9482. }
  9483. .EpisodeList-episodeList-m3CAU::-webkit-scrollbar-thumb {
  9484. background: #888;
  9485. border-radius: 10px;
  9486. }
  9487. .EpisodeList-episodeList-m3CAU::-webkit-scrollbar-thumb:hover {
  9488. background: #555;
  9489. }
  9490. /*课程视频-笔记背景*/
  9491. html[data-theme=dark] .StudyNotesList-bgGray-faf74{
  9492. background: #121212!important;
  9493. }
  9494. html[data-theme=dark] .Empty-emptyWrapper-dEdmh{
  9495. background: #121212!important;
  9496. }
  9497. /*课程视频-推荐视频标题*/
  9498. html[data-theme=dark] .CourseItem-rightContent-pc-fTpTc .CourseItem-courseTitle-2hYnF{
  9499. color: #d3d3d3!important;
  9500. }
  9501.  
  9502.  
  9503. /*==知乎知学堂==*/
  9504.  
  9505. /*==创作中心==*/
  9506. /*固定导航栏*/
  9507. html[data-theme=dark] .css-16rd4x4{
  9508. color: #d3d3d3!important;
  9509. /*background: #121212!important;*/
  9510. background: #151a23 !important;
  9511. }
  9512. /*固定导航栏-当前等级*/
  9513. html[data-theme=dark] .css-i9ss08{
  9514. color: #d3d3d3!important;
  9515. }
  9516. /*固定导航栏-活跃领域*/
  9517. html[data-theme=dark] .css-dj639p{
  9518. color: #d3d3d3!important;
  9519. }
  9520. /*固定导航栏-内容创作*/
  9521. html[data-theme=dark] .css-15aftra > .css-4mbc0 + div{
  9522. color: #d3d3d3!important;
  9523. background: #151a23 !important;
  9524. }
  9525. html[data-theme=dark] .css-1ooxkda:hover{
  9526. background:#1772f60f!important;
  9527. }
  9528. html[data-theme=dark] .css-1ooxkda:hover .ZDI{
  9529. fill:#0084ff!important;
  9530. }
  9531. html[data-theme=dark] .css-1ooxkda:hover .css-vurnku{
  9532. color:#0084ff!important;
  9533. }
  9534. /*固定导航栏-大菜单*/
  9535. html[data-theme=dark] .css-133xqjo{
  9536. color: #d3d3d3!important;
  9537. }
  9538. html[data-theme=dark] .css-133xqjo:hover{
  9539. color:#0084ff!important;
  9540. background:#1772f60f!important;
  9541. }
  9542. /*固定导航栏-小菜单*/
  9543. html[data-theme=dark] .css-nngq0i{
  9544. color:#03a9f4!important;
  9545. }
  9546. html[data-theme=dark] .css-17rhbf0:hover{
  9547. color:#03a9f4!important;
  9548. background:#1772f60f!important;
  9549. }
  9550.  
  9551. /*发布想法-编辑区*/
  9552. html[data-theme=dark] .css-16q9zcp{
  9553. color: #d3d3d3!important;
  9554. background: #151a23 !important;
  9555. border:1px solid #444 !important;
  9556. }
  9557. /*发布想法-标题*/
  9558. html[data-theme=dark] .css-odpg9{
  9559. color: #d3d3d3!important;
  9560. background: #151a23 !important;
  9561. }
  9562. /*发布想法-内容*/
  9563. html[data-theme=dark] .css-tl7t4z{
  9564. color: #d3d3d3!important;
  9565. background: #151a23 !important;
  9566. }
  9567. /*发布想法-标签*/
  9568. html[data-theme=dark] .css-1knhl7g{
  9569. color:#d3d3d3!important;
  9570. background:#8080801c!important;
  9571. border: none!important;
  9572. }
  9573. /*发布想法-评论权限*/
  9574. html[data-theme=dark] .css-1qwha0s{
  9575. background: #191b1f!important;
  9576. border: none!important;
  9577. }
  9578. html[data-theme=dark] .css-13ev0i{
  9579. background: #191b1f!important;
  9580. color: #d3d3d3!important;
  9581. }
  9582. html[data-theme=dark] .css-13ev0i:hover{
  9583. color: #0084ff!important;
  9584. }
  9585.  
  9586.  
  9587. /*发布文章-背景*/
  9588. html[data-theme=dark] .css-1losy9j{
  9589. background: #121212 !important;
  9590. }
  9591. html[data-theme=dark] .css-1ykdma4 {
  9592. background: #191b1f!important;
  9593. }
  9594.  
  9595. /*发布文章-工具栏*/
  9596. html[data-theme=dark] .css-10r8x72{
  9597. box-shadow: 0px -0.5px 0px 0px #444 inset;
  9598. }
  9599. /*发布文章-工具栏按钮*/
  9600. html[data-theme=dark] .ToolbarButton:hover{
  9601. background: #8080801c !important;
  9602. }
  9603. html[data-theme=dark] .ToolbarButton:hover .ZDI{
  9604. fill: #0084ff !important;
  9605. }
  9606. html[data-theme=dark] .ToolbarButton:hover .css-8atqhb{
  9607. color: #0084ff !important;
  9608. }
  9609. /*发布文章-工具栏更多*/
  9610. html[data-theme=dark] .css-1pmadmj.Button.Button--plain{
  9611. background: #191b1f!important;
  9612. color: #d3d3d3!important;
  9613. }
  9614. html[data-theme=dark] .css-15bmk8d.Button.Button--plain{
  9615. background: #191b1f!important;
  9616. color: #d3d3d3!important;
  9617. }
  9618. html[data-theme=dark] .css-1pmadmj.Button.Button--plain:hover{
  9619. background: #8080801c!important;
  9620. color: #0084ff!important;
  9621. }
  9622.  
  9623.  
  9624. /*发布文章-底栏*/
  9625. html[data-theme=dark] .css-1ppjin3{
  9626. background: #121212 !important;
  9627. border-top: 1px solid #444 !important;
  9628. }
  9629. html[data-theme=dark] .css-1ulchq2:hover{
  9630. background: #8080801c !important;
  9631. }
  9632. /*发布文章-编辑区*/
  9633. html[data-theme=dark] .css-1so3nbl{
  9634. background: #191b1f!important;
  9635. }
  9636. html[data-theme=dark] .PostEditor .DraftEditor-root{
  9637. border: 1px solid #444 !important;
  9638. }
  9639. html[data-theme=dark] .css-1gopqwh{
  9640. border: 1px solid #444 !important;
  9641. }
  9642.  
  9643. /*发布文章-发布设置*/
  9644. html[data-theme=dark] .css-13mrzb0{
  9645. background: #191b1f!important;
  9646. }
  9647. html[data-theme=dark] .css-19m36yt{
  9648. color: #d3d3d3!important;
  9649. }
  9650. html[data-theme=dark] .css-1yj4uzm{
  9651. color: #d3d3d3!important;
  9652. }
  9653. html[data-theme=dark] .css-qhzfje{
  9654. background: #191b1f!important;
  9655. }
  9656. /*发布文章-创作声明*/
  9657. html[data-theme=dark] .css-1rrt0uk{
  9658. color: #d3d3d3!important;
  9659. }
  9660. html[data-theme=dark] .css-1rrt0uk:hover{
  9661. color: #0084ff!important;
  9662. }
  9663. /*发布文章-文章话题*/
  9664. html[data-theme=dark] .css-jkribc{
  9665. color: #d3d3d3!important;
  9666. }
  9667. /*发布文章-添加话题*/
  9668. html[data-theme=dark] .css-1gtqxw0{
  9669. color: #d3d3d3!important;
  9670. background: #191b1f!important;
  9671. border: 1px solid #444 !important;
  9672. }
  9673. html[data-theme=dark] .css-1gtqxw0:hover {
  9674. background: #8080801c !important;
  9675. }
  9676. /*发布文章-搜索话题*/
  9677. html[data-theme=dark] .css-4cffwv>div{
  9678. background: #191b1f!important;
  9679. color:#0084ff!important;
  9680. border: 1px solid #444 !important;
  9681. }
  9682. html[data-theme=dark] .css-4cffwv>label{
  9683. background: #191b1f!important;
  9684. border: 1px solid #444 !important;
  9685. }
  9686. /*发布文章-搜索话题列表*/
  9687. html[data-theme=dark] .css-ogem9c{
  9688. background: #191b1f!important;
  9689. border:none!important;
  9690. }
  9691. html[data-theme=dark] .css-gfrh4c{
  9692. background: #191b1f!important;
  9693. color: #d3d3d3!important;
  9694. }
  9695. html[data-theme=dark] .css-gfrh4c:hover{
  9696. color: #0084ff!important;
  9697. }
  9698. /*发布文章-内容来源*/
  9699. html[data-theme=dark] .css-16tjfny{
  9700. border: 1px solid #444 !important;
  9701. }
  9702. html[data-theme=dark] .css-19bjnr2 {
  9703. color: #d3d3d3 !important;
  9704. }
  9705. html[data-theme=dark] .css-19bjnr2:hover {
  9706. background: #8080801c !important;
  9707. }
  9708.  
  9709.  
  9710.  
  9711.  
  9712. /*满意度-标题*/
  9713. html[data-theme=dark] .css-1eht88d{
  9714. color: #d3d3d3!important;
  9715. }
  9716. html[data-theme=dark] .css-1hk30kn{
  9717. color: #d3d3d3!important;
  9718. }
  9719.  
  9720.  
  9721.  
  9722.  
  9723.  
  9724. /*=主页=*/
  9725. /*公告栏*/
  9726. html[data-theme=dark] #creator-announcement{
  9727. color: #d3d3d3!important;
  9728. }
  9729. /*热门问题*/
  9730. html[data-theme=dark] .css-2kp40o{
  9731. color: #d3d3d3!important;
  9732. }
  9733. html[data-theme=dark] .css-12kq1qx{
  9734. color: #d3d3d3!important;
  9735. }
  9736. /*创作学院*/
  9737. html[data-theme=dark] #creator-manual{
  9738. color: #d3d3d3!important;
  9739. }
  9740. html[data-theme=dark] .css-cnnstd{
  9741. color: #d3d3d3!important;
  9742. }
  9743. /*提等级*/
  9744. html[data-theme=dark] .css-1mbpn2d{
  9745. background: #191b1f!important;
  9746. }
  9747. html[data-theme=dark] .css-1kki0ei{
  9748. border: 1px solid #444!important;
  9749. }
  9750. html[data-theme=dark] .css-hm67sn:nth-of-type(n + 3){
  9751. border-top: 1px solid #444!important;
  9752. }
  9753. /*等级任务*/
  9754. html[data-theme=dark] .css-pq1tj9{
  9755. border: 1px solid #444!important;
  9756. }
  9757. html[data-theme=dark] .css-180vb7x{
  9758. color: #d3d3d3!important;
  9759. }
  9760. html[data-theme=dark] .css-risksa{
  9761. color: #d3d3d3!important;
  9762. }
  9763. html[data-theme=dark] .css-6j0ktf{
  9764. color: #d3d3d3!important;
  9765. }
  9766. html[data-theme=dark] .css-1yn8tbw{
  9767. color: #d3d3d3!important;
  9768. }
  9769. html[data-theme=dark] .css-n0arjk{
  9770. filter:invert(1)!important;
  9771. }
  9772. html[data-theme=dark] .css-33pnco{
  9773. color: #d3d3d3!important;
  9774. }
  9775. /*赚收益*/
  9776. html[data-theme=dark] .css-1yjqd5z{
  9777. background: #191b1f!important;
  9778. }
  9779. html[data-theme=dark] .css-rwh8c6{
  9780. border: 1px solid #444!important;
  9781. }
  9782. html[data-theme=dark] .css-1wp1nud{
  9783. color: #d3d3d3!important;
  9784. }
  9785. html[data-theme=dark] .css-1fu8ne5{
  9786. color: #d3d3d3!important;
  9787. }
  9788. html[data-theme=dark] .css-1946lac{
  9789. color: #d3d3d3!important;
  9790. }
  9791. html[data-theme=dark] .css-1nk6mv0{
  9792. color: #d3d3d3!important;
  9793. }
  9794. html[data-theme=dark] .css-pjaw30{
  9795. filter:invert(1)!important;
  9796. }
  9797. /*=主页=*/
  9798.  
  9799.  
  9800. /*=创作灵感=*/
  9801.  
  9802. /*问题推荐-表格*/
  9803. html[data-theme=dark] .css-e4rh9a{
  9804. background: #191b1f!important;
  9805. border-bottom: 1px solid #444!important;
  9806. }
  9807. html[data-theme=dark] .css-n9ov20{
  9808. border-bottom: 1px solid #444!important;
  9809. }
  9810. html[data-theme=dark] .css-1hbj689{
  9811. border-bottom: 1px solid #444!important;
  9812. }
  9813. /*问题推荐-问题标题*/
  9814. html[data-theme=dark] .css-1o7uqnr{
  9815. color: #d3d3d3!important;
  9816. }
  9817. html[data-theme=dark] .css-ms14rw{
  9818. color: #d3d3d3!important;
  9819. }
  9820. /*问题推荐-提问用户*/
  9821. html[data-theme=dark] .css-1nr5ql7{
  9822. color: #d3d3d3!important;
  9823. }
  9824. /*问题推荐-推荐理由*/
  9825. html[data-theme=dark] .css-1czelnl{
  9826. color: #9196a1!important;
  9827. }
  9828. /*问题推荐-赞同过你*/
  9829. html[data-theme=dark] .css-n5qv0h{
  9830. color: #0084ff!important;
  9831. }
  9832. /*问题推荐-擅长话题*/
  9833. html[data-theme=dark] .css-1232est{
  9834. color: #0084ff!important;
  9835. background:#1772f60f!important;
  9836. border:none!important;
  9837. }
  9838.  
  9839.  
  9840. /*近期热点-背景*/
  9841. html[data-theme=dark] .css-35pmty{
  9842. background: #191b1f!important;
  9843. }
  9844. /*近期热点-固定表头*/
  9845. html[data-theme=dark] .css-1w5avc2{
  9846. background: #191b1f!important;
  9847. border-bottom: 1px solid #444!important;
  9848. }
  9849. /*近期热点-分类标签*/
  9850. html[data-theme=dark] .css-hdz1a3{
  9851. color: #d3d3d3!important;
  9852. background:#8080801c!important;
  9853. }
  9854. html[data-theme=dark] .css-12c1djq{
  9855. color: #1772f6!important;
  9856. background:#1772f614!important;
  9857. }
  9858. /*近期热点-问题*/
  9859. html[data-theme=dark] .css-dpt3mb{
  9860. color: #d3d3d3!important;
  9861. }
  9862. html[data-theme=dark] .css-1fd22oq{
  9863. border-bottom: 1px solid #444!important;
  9864. }
  9865. /*近期热点-问题标签*/
  9866. html[data-theme=dark] .css-1q65fkr{
  9867. color: #0084ff!important;
  9868. background:#8080801c!important;
  9869. }
  9870. /*近期热点-热力值*/
  9871. html[data-theme=dark] .css-1dydzuy{
  9872. color: #d3d3d3!important;
  9873. }
  9874. /*近期热点-增量*/
  9875. html[data-theme=dark] .css-1ggwcl9{
  9876. color: #d3d3d3!important;
  9877. }
  9878. /*近期热点-加载占位*/
  9879. html[data-theme=dark] .skeleton {
  9880. background: #121212 !important;
  9881. }
  9882. html[data-theme=dark] .skeleton__line {
  9883. background-color: #1b1b1b !important;
  9884. background-image: -webkit-gradient(linear,left top,right top,from(#1b1b1b),color-stop(25%,#2e2e2e),color-stop(75%,#2e2e2e),to(#1b1b1b)) !important;
  9885. background-image: linear-gradient(90deg,#1b1b1b 0,#2e2e2e 25%,#2e2e2e 75%,#1b1b1b) !important;
  9886. }
  9887. html[data-theme=dark] .skeleton__line::after{
  9888. background-color: #1b1b1b !important;
  9889. box-shadow:none!important;
  9890. }
  9891. /*近期热点-日榜/周榜*/
  9892. html[data-theme=dark] .css-1vu7v1r{
  9893. border: 1px solid #444!important;
  9894. }
  9895.  
  9896.  
  9897. /*问题搜索-背景*/
  9898. html[data-theme=dark] .css-xpmfhx{
  9899. background: linear-gradient(#121314,#191b1f)!important;
  9900. }
  9901. /*问题搜索-问题卡片*/
  9902. html[data-theme=dark] .css-3zr8ne{
  9903. background: #151a23 !important
  9904. }
  9905. /*问题搜索-知乎热词*/
  9906. html[data-theme=dark] .css-atxtl4{
  9907. color: #d3d3d3 !important;
  9908. }
  9909. /*问题搜索-热门问题*/
  9910. html[data-theme=dark] .css-qlj5ur{
  9911. color: #d3d3d3 !important;
  9912. }
  9913. /*=创作灵感=*/
  9914.  
  9915.  
  9916.  
  9917. /*=内容管理=*/
  9918. /*内容管理-背景*/
  9919. html[data-theme=dark] .css-1t0dqk7{
  9920. background: #191b1f!important;
  9921. border-bottom: 1px solid #444!important;
  9922. }
  9923. html[data-theme=dark] .css-1t0dqk7::before{
  9924. background: #191b1f!important;
  9925. }
  9926. html[data-theme=dark] .css-1357f6{
  9927. background: #191b1f!important;
  9928. }
  9929. html[data-theme=dark] .css-1ury69a{
  9930. background: #191b1f!important;
  9931. border-bottom: 1px solid #444!important;
  9932. }
  9933. html[data-theme=dark] .css-1cr4989{
  9934. background: #191b1f!important;
  9935. }
  9936. html[data-theme=dark] .css-d70ruc{
  9937. background: #191b1f!important;
  9938. border-bottom: 1px solid #444!important;
  9939. }
  9940. html[data-theme=dark] .css-slqtjm{
  9941. background: #191b1f!important;
  9942. }
  9943. /*内容管理-暂无内容*/
  9944. html[data-theme=dark] .css-xoei2t{
  9945. background: #191b1f!important;
  9946. }
  9947. html[data-theme=dark] .css-7aol5k{
  9948. background: #191b1f!important;
  9949. }
  9950. /*内容管理-内容数量*/
  9951. html[data-theme=dark] .css-1jrei64{
  9952. color: #d3d3d3 !important;
  9953. }
  9954. /*内容管理-问题标题*/
  9955. html[data-theme=dark] .css-1brgq4x{
  9956. color: #d3d3d3 !important;
  9957. }
  9958. /*内容管理-问题回答*/
  9959. html[data-theme=dark] .css-1yuw5jz{
  9960. color: #d3d3d3 !important;
  9961. }
  9962. /*内容管理-问题分割线*/
  9963. html[data-theme=dark] .css-htr1wb + .CreationManage-CreationCard{
  9964. border-top: 1px solid #444!important;
  9965. }
  9966. /*内容管理-草稿箱分类*/
  9967. html[data-theme=dark] css-1wi98sv{
  9968. color: #d3d3d3 !important;
  9969. }
  9970. html[data-theme=dark] css-1wi98sv.is-active{
  9971. color: #1772f6 !important;
  9972. }
  9973. /*内容管理-排序按钮*/
  9974. html[data-theme=dark] .css-pi8g4d{
  9975. border:1px solid #444!important;
  9976. }
  9977.  
  9978.  
  9979. /*评论管理-背景*/
  9980. html[data-theme=dark] .css-1edot45{
  9981. background: #191b1f!important;
  9982. }
  9983. html[data-theme=dark] .css-1615dnb {
  9984. background: #191b1f!important;
  9985. }
  9986. html[data-theme=dark] .css-bl1k5s {
  9987. background: #191b1f!important;
  9988. border-right:1px solid #444!important;
  9989. }
  9990. html[data-theme=dark] .css-k5im1d {
  9991. background: #191b1f!important;
  9992. }
  9993. html[data-theme=dark] .css-k5im1d + .CommentManage-CreationCard > div{
  9994. border-top:1px solid #444!important;
  9995. }
  9996. html[data-theme=dark] .css-986uza {
  9997. background: #191b1f!important;
  9998. }
  9999. html[data-theme=dark] .css-986uza + .CommentManage-CreationCard > div{
  10000. border-top:1px solid #444!important;
  10001. }
  10002. html[data-theme=dark] .css-kl7j3m {
  10003. border-top:1px solid #444!important;
  10004. }
  10005. html[data-theme=dark] .css-1soxxcw + .CommentManage-CommentCard > div {
  10006. border-top:1px solid #444!important;
  10007. }
  10008. html[data-theme=dark] .css-5jdstw {
  10009. background: #191b1f!important;
  10010. }
  10011. html[data-theme=dark] .css-5jdstw + .CommentManage-CreationCard > div {
  10012. border-top:1px solid #444!important;
  10013. }
  10014. html[data-theme=dark] .css-1rniuv1 {
  10015. background: #191b1f!important;
  10016. }
  10017. html[data-theme=dark] .css-1w24404 {
  10018. background: #191b1f!important;
  10019. }
  10020. html[data-theme=dark] .css-1w24404 + .CommentManage-CreationCard > div {
  10021. border-top:1px solid #444!important;
  10022. }
  10023.  
  10024. /*评论管理-最新评论*/
  10025. html[data-theme=dark] .css-1kq86bv{
  10026. color: #d3d3d3 !important;
  10027. }
  10028. html[data-theme=dark] .css-k5im1d .css-1kq86bv{
  10029. color:#0084ff!important;
  10030. }
  10031. /*评论管理-评论内容*/
  10032. html[data-theme=dark] .css-z06s02{
  10033. color: #d3d3d3 !important;
  10034. }
  10035. html[data-theme=dark] .css-1w24404 .css-z06s02{
  10036. color:#0084ff!important;
  10037. }
  10038. /*评论管理-问题标题*/
  10039. html[data-theme=dark] .css-4uviby{
  10040. color: #d3d3d3 !important;
  10041. }
  10042. /*评论管理-作者标志*/
  10043. html[data-theme=dark] .css-zcrcer{
  10044. color: #0084ff !important;
  10045. border:1px solid #444!important;
  10046. }
  10047. /*=内容管理=*/
  10048.  
  10049.  
  10050.  
  10051. /*=数据分析=*/
  10052. /*内容分析-边框*/
  10053. html[data-theme=dark] .css-158a5mc{
  10054. border-bottom: 1px solid #444!important;
  10055. }
  10056. html[data-theme=dark] .css-15e49nr{
  10057. border: 1px solid #444!important;
  10058. }
  10059. html[data-theme=dark] .css-1ebn9t9{
  10060. border: 1px solid #444!important;
  10061. }
  10062. html[data-theme=dark] .css-32kpjn{
  10063. border: 1px solid #444!important;
  10064. }
  10065. html[data-theme=dark] .css-1gvwuyu{
  10066. border: 1px solid #444!important;
  10067. }
  10068. html[data-theme=dark] .css-1xydvrl{
  10069. border: 1px solid #444!important;
  10070. }
  10071. html[data-theme=dark] .css-1u0mb11{
  10072. border: 1px solid #444!important;
  10073. }
  10074. html[data-theme=dark] .css-x2zg2y{
  10075. border: 1px solid #444!important;
  10076. }
  10077. html[data-theme=dark] .css-j970ps .CreatorTable-tableRow{
  10078. border-bottom: 1px solid #444!important;
  10079. }
  10080. /*内容分析-数据总览*/
  10081. html[data-theme=dark] .css-1k65ame{
  10082. color: #d3d3d3 !important;
  10083. }
  10084. /*内容分析-阅读总量*/
  10085. html[data-theme=dark] .css-anmzua{
  10086. color: #d3d3d3 !important;
  10087. }
  10088. /*内容分析-最近统计*/
  10089. html[data-theme=dark] .AnalyticsDetailRangePicker .Button {
  10090. color: #d3d3d3 !important;
  10091. }
  10092. html[data-theme=dark] .AnalyticsDetailRangePicker .Button.is-active {
  10093. color: #1772f6 !important;
  10094. }
  10095. /*内容分析-高级数据*/
  10096. html[data-theme=dark] .css-1yijwry{
  10097. color: #d3d3d3 !important;
  10098. }
  10099. /*内容分析-数据趋势*/
  10100. html[data-theme=dark] .css-1xvfl67{
  10101. color: #d3d3d3 !important;
  10102. }
  10103. /*内容分析-数据列表*/
  10104. html[data-theme=dark] .css-38vuf7 .CreatorTable-tableData{
  10105. color: #d3d3d3 !important;
  10106. }
  10107. html[data-theme=dark] .css-38vuf7 .CreatorTable-tableRow{
  10108. border-bottom: 1px solid #444!important;
  10109. }
  10110. /*内容分析-流量来源*/
  10111. html[data-theme=dark] .css-1rspjpf{
  10112. color: #d3d3d3 !important;
  10113. }
  10114. /*内容分析-导出Excel*/
  10115. .css-ywo81i{
  10116. color: #1c9b55 !important
  10117. }
  10118. /*内容分析-单篇回答分析*/
  10119. html[data-theme=dark] .css-1bcljsj{
  10120. color: #d3d3d3 !important;
  10121. }
  10122. html[data-theme=dark] .css-j970ps .CreatorTable-tableData{
  10123. color: #d3d3d3 !important;
  10124. }
  10125. /*内容分析-单篇回答详细分析*/
  10126. html[data-theme=dark] .css-zj15zn{
  10127. border-bottom: 1px solid #444!important;
  10128. }
  10129. html[data-theme=dark] .css-zi9b3g{
  10130. color: #d3d3d3 !important;
  10131. }
  10132. html[data-theme=dark] .css-7olrk9{
  10133. border: 1px solid #444!important;
  10134. }
  10135. html[data-theme=dark] .css-1q42e85{
  10136. color: #8590a6 !important;
  10137. }
  10138. html[data-theme=dark] .css-713e0k{
  10139. color: #d3d3d3 !important;
  10140. }
  10141. html[data-theme=dark] .css-od6vy7{
  10142. border: 1px solid #444!important;
  10143. }
  10144.  
  10145.  
  10146. /*收益分析-背景*/
  10147. html[data-theme=dark] .css-1m8gbjc{
  10148. background: #191b1f!important;
  10149. }
  10150. /*收益分析-表头*/
  10151. html[data-theme=dark] .css-1jw6urh{
  10152. border-bottom: 1px solid #444!important;
  10153. }
  10154. /*收益分析-数据总览*/
  10155. html[data-theme=dark] .css-1oqbvad{
  10156. background: #191b1f!important;
  10157. }
  10158. html[data-theme=dark] .css-urncze{
  10159. color: #d3d3d3 !important;
  10160. }
  10161. /*收益分析-今日收益*/
  10162. html[data-theme=dark] .css-15box0{
  10163. color: #d3d3d3 !important;
  10164. }
  10165. /*收益分析-收益数字*/
  10166. html[data-theme=dark] .css-1woiwqg{
  10167. color: #d3d3d3 !important;
  10168. }
  10169. /*收益分析-导出Excel*/
  10170. .css-rhskwy{
  10171. color: #1c9b55 !important
  10172. }
  10173. /*收益分析-详细数据*/
  10174. html[data-theme=dark] .css-h4o1q9{
  10175. border: 1px solid #444!important;
  10176. }
  10177.  
  10178.  
  10179. /*关注者分析-背景*/
  10180. html[data-theme=dark] .css-1ta275q{
  10181. background: #191b1f!important;
  10182. }
  10183. /*关注者分析-表头*/
  10184. html[data-theme=dark] .css-ohrujx{
  10185. border-bottom: 1px solid #444!important;
  10186. }
  10187. /*关注者分析-大标题*/
  10188. html[data-theme=dark] .css-1t3in1{
  10189. color: #d3d3d3 !important;
  10190. }
  10191. /*关注者分析-详细数据*/
  10192. html[data-theme=dark] .css-g62hty{
  10193. color: #1772f6 !important
  10194. }
  10195. /*关注者分析-关注者画像*/
  10196. html[data-theme=dark] .css-1iz9tag{
  10197. color: #d3d3d3 !important;
  10198. }
  10199. /*收益分析-导出Excel*/
  10200. .css-j8tcr6{
  10201. color: #1c9b55 !important
  10202. }
  10203. /*=数据分析=*/
  10204.  
  10205. /*=芝士平台=*/
  10206. /*好物推荐-基础权限*/
  10207. html[data-theme="dark"] .RecruitTab-itemContainer{
  10208. color: #d3d3d3 !important;
  10209. }
  10210. /*好物推荐-新手教学*/
  10211. html[data-theme="dark"] .CreatorRecruitAuditPassed-title{
  10212. color: #d3d3d3 !important;
  10213. }
  10214. /*好物推荐-问题推荐*/
  10215. html[data-theme=dark] .Creator-SubTabItem.Creator-SubTabItem--active{
  10216. color: #0084ff!important
  10217. }
  10218. /*好物推荐-问题标题*/
  10219. html[data-theme=dark] .MCNQuestionListItem-title{
  10220. color: #d3d3d3 !important;
  10221. }
  10222. html[data-theme=dark] .MCNQuestionListItem-title:hover{
  10223. color: #0084ff!important
  10224. }
  10225. /*好物推荐-写回答*/
  10226. html[data-theme=dark] .MCNQuestionListItem-answerBtn{
  10227. color: #d3d3d3 !important;
  10228. }
  10229. /*好物推荐-加载占位*/
  10230. html[data-theme=dark] .skeleton {
  10231. background: #121212 !important;
  10232. }
  10233. html[data-theme=dark] .skeleton__line {
  10234. background-color: #1b1b1b !important;
  10235. background-image: -webkit-gradient(linear,left top,right top,from(#1b1b1b),color-stop(25%,#2e2e2e),color-stop(75%,#2e2e2e),to(#1b1b1b)) !important;
  10236. background-image: linear-gradient(90deg,#1b1b1b 0,#2e2e2e 25%,#2e2e2e 75%,#1b1b1b) !important;
  10237. }
  10238. /*好物推荐-背景*/
  10239. html[data-theme="dark"] .ProfitMCN{
  10240. background: #191b1f!important;
  10241. }
  10242. /*好物推荐-预估收入*/
  10243. html[data-theme="dark"] .ProfitMCN-statisticsCard{
  10244. background: #191b1f!important;
  10245. }
  10246. /*好物推荐-订单详情*/
  10247. html[data-theme="dark"] .Tabs-link.is-active{
  10248. color:#0084ff!important;
  10249. }
  10250. html[data-theme="dark"] .css-d5vvj{
  10251. box-shadow: none!important;
  10252. border: 1px solid #444!important;
  10253. }
  10254. html[data-theme="dark"] .css-194iiw5{
  10255. background: #191b1f!important;
  10256. border-bottom: 1px solid #444!important;
  10257. }
  10258. /*好物推荐-订单信息表头*/
  10259. html[data-theme="dark"] .CreatorTable{
  10260. color: #d3d3d3 !important;
  10261. background: #191b1f!important;
  10262. }
  10263. html[data-theme="dark"] .CreatorTable-tableHead{
  10264. color: #d3d3d3 !important;
  10265. background: #191b1f!important;
  10266. }
  10267. html[data-theme="dark"] .css-d5vvj{
  10268. color: #d3d3d3 !important;
  10269. background: #191b1f!important;
  10270. }
  10271. html[data-theme="dark"] .css-6phhh0{
  10272. border-bottom: 1px solid #444!important;
  10273. }
  10274. /*推广设置*/
  10275. html[data-theme=dark] .ggrSettings{
  10276. background: #191b1f!important;
  10277. }
  10278. html[data-theme=dark] .MCNSettingItem{
  10279. background: #121212 !important;
  10280. }
  10281. /*芝士平台导航栏*/
  10282. html[data-theme="dark"] .middle___3vOfh a{
  10283. color: #d3d3d3 !important;
  10284. }
  10285. html[data-theme="dark"] .middle___3vOfh a.active{
  10286. color: #056de8 !important;
  10287. }
  10288. /*芝士平台banner*/
  10289. html[data-theme=dark] .entryBg___1If_d{
  10290. filter: brightness(0.6)!important;
  10291. }
  10292. /*任务广场*/
  10293. html[data-theme=dark] .taskCenter___WSAED .top___M5CzR .ant-tabs-nav .ant-tabs-tab{
  10294. color: #d3d3d3 !important;
  10295. }
  10296. html[data-theme=dark] .taskCenter___WSAED .top___M5CzR .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active{
  10297. color: #0084ff !important;
  10298. }
  10299. html[data-theme=dark] .taskCenter___WSAED .part___1klFQ{
  10300. background: #191b1f!important;
  10301. }
  10302. html[data-theme=dark] .bg-GBK99A{
  10303. background: #191b1f!important;
  10304. }
  10305. html[data-theme=dark] .bg-GBK99A{
  10306. background: #191b1f!important;
  10307. }
  10308.  
  10309. /*任务广场-输入框与选择框*/
  10310. html[data-theme=dark] .ant-input{
  10311. color: #d3d3d3 !important;
  10312. background: #191b1f!important;
  10313. border:1px solid #444!important;
  10314. }
  10315. html[data-theme=dark] .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled){
  10316. border:1px solid #2c8df5!important;
  10317. }
  10318. html[data-theme=dark] .ant-input-suffix svg{
  10319. fill: #d3d3d3!important;
  10320. }
  10321. html[data-theme=dark] .ant-select-selection{
  10322. color: #d3d3d3 !important;
  10323. background: #191b1f!important;
  10324. border:1px solid #444!important;
  10325. }
  10326. html[data-theme=dark] .ant-select-selection:hover{
  10327. border:1px solid #2c8df5!important;
  10328. }
  10329. html[data-theme=dark] .ant-select-arrow svg{
  10330. fill: #d3d3d3!important;
  10331. }
  10332. /*任务广场-下拉列表*/
  10333. html[data-theme=dark] .ant-select-dropdown{
  10334. color: #d3d3d3 !important;
  10335. background: #191b1f!important;
  10336. }
  10337. html[data-theme=dark] .ant-select-dropdown-menu-item-selected{
  10338. color: #d3d3d3 !important;
  10339. background: #191b1f!important;
  10340. }
  10341. html[data-theme=dark] .ant-select-dropdown-menu-item{
  10342. color: #d3d3d3 !important;
  10343. background: #191b1f!important;
  10344. }
  10345. html[data-theme=dark] .ant-select-dropdown-menu-item-selected{
  10346. color: #0084ff !important;
  10347. background: #191b1f!important;
  10348. }
  10349. html[data-theme=dark] .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled){
  10350. color: #0084ff !important;
  10351. background: #191b1f!important;
  10352. }
  10353. /*=芝士平台=*/
  10354.  
  10355. /*=权益中心=*/
  10356. /*创作权益*/
  10357. html[data-theme=dark] .css-9gnnsk{
  10358. filter: opacity(0.6) !important;
  10359. }
  10360. /*创作分明细-总览*/
  10361. html[data-theme=dark] .GrowthLevel-panelCard{
  10362. filter: opacity(0.6) !important;
  10363. }
  10364. /*创作分明细-更新时间*/
  10365. html[data-theme=dark] .css-ttldhb{
  10366. color: #d3d3d3 !important;
  10367. }
  10368. /*创作分明细-说明*/
  10369. html[data-theme=dark] .css-gmeku3{
  10370. color: #d3d3d3 !important;
  10371. }
  10372. /*创作分明细-查询时间范围*/
  10373. html[data-theme=dark] .css-yt5ue7{
  10374. color: #d3d3d3 !important;
  10375. background: #191b1f!important;
  10376. border:none!important;
  10377. }
  10378. html[data-theme=dark] .css-yt5ue7:hover{
  10379. color: #0084ff !important;
  10380. }
  10381. /*创作分明细-分值列表*/
  10382. html[data-theme=dark] .css-1h7b043{
  10383. border:1px solid #444!important;
  10384. }
  10385. html[data-theme=dark] .css-kgp89k{
  10386. border-bottom:1px solid #444!important;
  10387. }
  10388. html[data-theme=dark] .css-kgp89k > div{
  10389. color: #d3d3d3 !important;
  10390. }
  10391. /*创作分明细-创作分变更详情*/
  10392. html[data-theme=dark] .css-zhnajm{
  10393. border-bottom:none!important;
  10394. }
  10395. html[data-theme=dark] .css-1e58emc{
  10396. border-bottom:1px solid #444!important;
  10397. }
  10398. html[data-theme=dark] .css-1e58emc > div{
  10399. color: #d3d3d3 !important;
  10400. }
  10401. /*=权益中心=*/
  10402.  
  10403. /*=创作成长=*/
  10404. /*活动中心*/
  10405. html[data-theme=dark] .css-9qcwm9{
  10406. color: #d3d3d3 !important;
  10407. }
  10408.  
  10409. /*创作者学院-表头*/
  10410. html[data-theme=dark] .css-obieaf{
  10411. background: #121212!important;
  10412. }
  10413. html[data-theme=dark] .css-yykvn6{
  10414. color: #d3d3d3 !important;
  10415. background: #121212!important;
  10416. border-bottom:1px solid #444!important;
  10417. }
  10418. /*创作者学院-视频标题*/
  10419. html[data-theme=dark] .css-141xy67{
  10420. color: #d3d3d3 !important;
  10421. }
  10422. /*创作者学院-课程总数*/
  10423. html[data-theme=dark] .css-11prr91{
  10424. color: #d3d3d3 !important;
  10425. }
  10426.  
  10427. /*创作榜单*/
  10428. html[data-theme=dark] .css-he18ou{
  10429. color: #d3d3d3 !important;
  10430. }
  10431. /*=创作成长=*/
  10432.  
  10433. /*=个人中心=*/
  10434. /*创作设置-编辑器设置*/
  10435. html[data-theme=dark] .css-fqja0q{
  10436. background: #121212!important;
  10437. }
  10438. html[data-theme=dark] .css-bmqzl{
  10439. border-bottom:1px solid #444!important;
  10440. }
  10441. html[data-theme=dark] .css-1gb1bqz{
  10442. border-top:1px solid #444!important;
  10443. }
  10444. html[data-theme=dark] .css-cdfqm + .CreatorEditorSettingItem{
  10445. border-top:1px solid #444!important;
  10446. }
  10447. html[data-theme=dark] .css-vm9s9s{
  10448. color: #d3d3d3 !important;
  10449. }
  10450. html[data-theme=dark] .css-iotqsc{
  10451. color: #d3d3d3 !important;
  10452. }
  10453. /*账号信息-关联账号*/
  10454. html[data-theme=dark] .css-114mqx8{
  10455. background: #12121230!important;
  10456. }
  10457. html[data-theme=dark] .css-ipuq3s{
  10458. background: #191b1f!important;
  10459. border-bottom:1px solid #444!important;
  10460. }
  10461. .css-ipuq3s.is-fixed {
  10462. left:226.5px !important;
  10463. }
  10464. html[data-theme=dark] .css-3if57f{
  10465. border-bottom:1px solid #444!important;
  10466. }
  10467. html[data-theme=dark] .css-3if57f div{
  10468. color: #d3d3d3 !important;
  10469. }
  10470. html[data-theme=dark] .css-9ofz8q .MultiUploadButton-addWrapper{
  10471. border:1px solid #444!important;
  10472. }
  10473.  
  10474. /*常见问题*/
  10475. html[data-theme=dark] .css-15sganu{
  10476. box-shadow: #444 0px -1px 0px 0px inset;
  10477. }
  10478. /*瓦力保镖*/
  10479. html[data-theme=dark] .css-onu91o{
  10480. color: #d3d3d3 !important;
  10481. }
  10482. html[data-theme=dark] .css-yckfye{
  10483. background: #191b1f!important;
  10484. }
  10485. html[data-theme=dark] .css-1vrab86{
  10486. border:1px solid #444!important;
  10487. }
  10488. html[data-theme=dark] .css-lztgnc{
  10489. background: #191b1f!important;
  10490. }
  10491. html[data-theme=dark] .css-our8ff tbody tr:nth-of-type(2n+1){
  10492. background: #212429!important;
  10493. }
  10494. /*版权服务-常见问题*/
  10495. html[data-theme=dark] .ToolsCopyright-answer{
  10496. color: #d3d3d3 !important;
  10497. }
  10498. html[data-theme=dark] .ToolsCopyright-question{
  10499. color: #d3d3d3 !important;
  10500. }
  10501. /*=个人中心=*/
  10502.  
  10503. /*==创作中心==*/
  10504.  
  10505.  
  10506.  
  10507. /*==盐选作者平台==*/
  10508. /*固定导航栏-过渡边框*/
  10509. .ant-menu-item:not(.ant-menu-item-disabled):focus-visible, .ant-menu-submenu-title:not(.ant-menu-item-disabled):focus-visible{
  10510. box-shadow:none!important;
  10511. }
  10512. /*固定导航栏-大菜单*/
  10513. html[data-theme=dark] .Creator-salt-new-author-menu .ant-menu{
  10514. color: #d3d3d3 !important;
  10515. background: #151a23 !important;
  10516. }
  10517. html[data-theme=dark] .ant-menu-submenu-title:hover{
  10518. color:#0084ff!important;
  10519. background:#1772f60f!important;
  10520. }
  10521. html[data-theme=dark] .Creator-salt-new-author-route{
  10522. border-right: none!important;
  10523. }
  10524. /*固定导航栏-小菜单*/
  10525. html[data-theme=dark] .Creator-salt-new-author-route .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{
  10526. color:#03a9f4!important;
  10527. background:none!important;
  10528. }
  10529. html[data-theme=dark] .Creator-salt-new-author-menu .Creator-salt-new-author-route .ant-menu-item:hover{
  10530. color:#03a9f4!important;
  10531. background:#1772f60f!important;
  10532. }
  10533. /*=认识我们=*/
  10534. /*盐选作者福利*/
  10535. html[data-theme=dark] .Creator-salt-new-author-content{
  10536. background:#070300 !important;
  10537. }
  10538. html[data-theme=dark] .Creator-salt-author-welfare{
  10539. filter:invert(1)!important
  10540. }
  10541. html[data-theme=dark] .Creator-salt-author-welfare .Creator-salt-author-welfare-subtitle{
  10542. color: grey !important;
  10543. }
  10544. html[data-theme=dark] .Creator-salt-author-welfare .Creator-salt-author-welfare-title{
  10545. filter: invert(0.66) !important;
  10546. }
  10547. html[data-theme=dark] .Creator-salt-author-welfare .Creator-salt-author-welfare-card h1{
  10548. color: grey !important;
  10549. }
  10550. html[data-theme=dark] .css-15eqbps{
  10551. background:#070300 !important
  10552. }
  10553. /*=认识我们=*/
  10554.  
  10555. /*=如何赚钱=*/
  10556. /*作者经纪签、作者独家签*/
  10557. html[data-theme=dark] .Create-author-salt-content-title{
  10558. color: #d3d3d3 !important;
  10559. }
  10560. html[data-theme=dark] .Create-author-salt-sub-title{
  10561. color: #d3d3d3 !important;
  10562. }
  10563. html[data-theme=dark] .Creator-salt-author-exclusive-sign-list{
  10564. color: #d3d3d3 !important;
  10565. }
  10566. /*=如何赚钱=*/
  10567.  
  10568. /*=影响力打造=*/
  10569. /*影视改造-作品分类*/
  10570. html[data-theme=dark] .Creator-salt-author-collect-activity .ant-tabs-tab{
  10571. color: #d3d3d3 !important;
  10572. }
  10573. html[data-theme=dark] .Creator-salt-author-collect-activity .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn{
  10574. color: #0084ff !important;
  10575. }
  10576. html[data-theme=dark] .ant-tabs-bottom>.ant-tabs-nav:before,
  10577. html[data-theme=dark] .ant-tabs-bottom>div>.ant-tabs-nav:before,
  10578. html[data-theme=dark] .ant-tabs-top>.ant-tabs-nav:before,
  10579. html[data-theme=dark] .ant-tabs-top>div>.ant-tabs-nav:before{
  10580. border: 1px solid #444!important;
  10581. }
  10582. /*=影响力打造=*/
  10583.  
  10584. /*=官方有话说=*/
  10585. /*管理规范*/
  10586. html[data-theme=dark] .Creator-salt-author-manage-specification-sub-title{
  10587. color: #d3d3d3 !important;
  10588. }
  10589. html[data-theme=dark] .Creator-salt-author-manage-specification-third-title{
  10590. color: #d3d3d3 !important;
  10591. }
  10592. /*=官方有话说=*/
  10593.  
  10594. /*==盐选作者平台==*/
  10595.  
  10596. /*==知乎问题==*/
  10597. /*视频卡片*/
  10598. html[data-theme=dark] .css-ob6uua .LinkCard.new{
  10599. background: #121212 !important;
  10600. }
  10601. /*评论输入框*/
  10602. html[data-theme=dark] .InputLike.css-1rl4wxv{
  10603. border: none !important;
  10604. }
  10605. /*评论输入框-固定*/
  10606. html[data-theme=dark] .css-kt4t4n {
  10607. background: #191b1f !important;
  10608. }
  10609. /*评论区-更多*/
  10610. html[data-theme=dark] .css-pu97ow {
  10611. fill: #2e2e2e !important
  10612. }
  10613. html[data-theme=dark] .css-h9kawn {
  10614. background: #191b1f !important;
  10615. }
  10616. html[data-theme=dark] .css-wqf2py:hover {
  10617. color: #0084ff !important;
  10618. }
  10619. /*标题评论区-加载占位*/
  10620. html[data-theme=dark] path[d="M0 0h656v44H0V0zm0 0h480v12H0V0zm0 32h238v12H0V32z"]{
  10621. fill:#121212 !important;
  10622. }
  10623. /*私信聊天框*/
  10624. html[data-theme=dark] .css-h07o3w {
  10625. background: #191b1f !important;
  10626. }
  10627. html[data-theme=dark] .css-11lk6sp {
  10628. border-bottom: 1px solid #444!important;
  10629. }
  10630. /*私信聊天框-滚动条*/
  10631. .MessagesBox::-webkit-scrollbar {
  10632. width: 12px;
  10633. }
  10634. .MessagesBox::-webkit-scrollbar-track {
  10635. background: #d3d3d3;
  10636. border-radius: 10px;
  10637. }
  10638. .MessagesBox::-webkit-scrollbar-thumb {
  10639. background: #888;
  10640. border-radius: 10px;
  10641. }
  10642. .MessagesBox::-webkit-scrollbar-thumb:hover {
  10643. background: #555;
  10644. }
  10645. /*私信-搜索联系人*/
  10646. html[data-theme=dark] .ChatSideBar-Search-Input input{
  10647. background: #191b1f!important;
  10648. color:#d3d3d3!important;
  10649. border: 1px solid #444 !important;
  10650. }
  10651. html[data-theme=dark] .ChatUserListItem .Chat-ActionMenuPopover-Button{
  10652. background: #191b1f!important;
  10653. color:#d3d3d3!important;
  10654. }
  10655. html[data-theme=dark] .ChatListGroup-SectionTitle--bottomBorder:after{
  10656. background: #444 !important;
  10657. }
  10658. /*私信-当前联系人*/
  10659. html[data-theme=dark] .ChatUserListItem--active{
  10660. background: #8080801c !important;
  10661. }
  10662. html[data-theme=dark] .ChatUserListItem--active .Chat-ActionMenuPopover-Button{
  10663. background: #8080801c!important;
  10664. color:#d3d3d3!important;
  10665. }
  10666. html[data-theme=dark] .ChatUserListItem:after{
  10667. background: #444 !important;
  10668. }
  10669. /*私信-当前联系人-滚动条*/
  10670. .ChatListGroup-SectionContent::-webkit-scrollbar {
  10671. width: 12px;
  10672. }
  10673. .ChatListGroup-SectionContent::-webkit-scrollbar-track {
  10674. background: #d3d3d3;
  10675. border-radius: 10px;
  10676. }
  10677. .ChatListGroup-SectionContent::-webkit-scrollbar-thumb {
  10678. background: #888;
  10679. border-radius: 10px;
  10680. }
  10681. .ChatListGroup-SectionContent::-webkit-scrollbar-thumb:hover {
  10682. background: #555;
  10683. }
  10684.  
  10685.  
  10686. /* 自定义滚动条的箭头 */
  10687. /*
  10688. .ChatListGroup-SectionContent::-webkit-scrollbar-button {
  10689. background-color: c1c1c1;
  10690. }
  10691. */
  10692. /* 或者针对滚动条的上下箭头分别设置*/
  10693. /*
  10694. .ChatListGroup-SectionContent::-webkit-scrollbar-button:vertical:start {
  10695. background-color: #c1c1c1;
  10696. }
  10697.  
  10698. .ChatListGroup-SectionContent::-webkit-scrollbar-button:vertical:end {
  10699. background-color: #c1c1c1;
  10700. }
  10701. */
  10702.  
  10703. /*==知乎问题==*/
  10704.  
  10705. /*==知乎文章==*/
  10706. /*文章标签*/
  10707. html[data-theme=dark] .css-127i0sx {
  10708. background: #191b1f !important;
  10709. }
  10710. html[data-theme=dark] .css-1x8apwm{
  10711. border-bottom:1px solid #444!important;
  10712. }
  10713. /*没有评论svg*/
  10714. html[data-theme=dark] .css-1jroejq{
  10715. filter:brightness(0.6)!important;
  10716. }
  10717. /*底栏背景*/
  10718. html[data-theme=dark] .App-main{
  10719. background: #121212 !important;
  10720. }
  10721. html[data-theme=dark] .ContentItem-actions{
  10722. background: #191b1f !important;
  10723. }
  10724. /*文中提示*/
  10725. html[data-theme=dark] .css-ob6uua blockquote{
  10726. color: #0084ff !important
  10727. }
  10728. /*==知乎文章==*/
  10729.  
  10730.  
  10731. /*==搜索结果==*/
  10732. /*搜索分类*/
  10733. html[data-theme=dark] .SearchTabs.SearchTab-bottomShadow{
  10734. background: #121212 !important;
  10735. }
  10736. /*AI搜索*/
  10737. html[data-theme=dark] .css-10kzyet{
  10738. background: #191b1f !important;
  10739. }
  10740.  
  10741. /*AI回答-提示*/
  10742. html[data-theme=dark] .css-146c3p1{
  10743. color: #d3d3d3 !important
  10744. }
  10745. /*AI回答-背景*/
  10746. html[data-theme=dark] .css-q1rdu9{
  10747. background: #191b1f !important;
  10748. }
  10749. /*搜索结果-背景*/
  10750. html[data-theme=dark] .KfeCollection-PcCollegeCard-root{
  10751. background: #191b1f !important;
  10752. }
  10753. /*搜索结果-论文*/
  10754. html[data-theme=dark] .css-5ug749{
  10755. background: #191b1f !important;
  10756. border-bottom:none!important;
  10757. }
  10758. html[data-theme=dark] .css-ot1wt0{
  10759. color: #d3d3d3 !important
  10760. }
  10761. html[data-theme=dark] .css-ewblx3{
  10762. color: #0084ff !important
  10763. }
  10764. /*搜索结果-论文分类*/
  10765. html[data-theme=dark] .css-4jezjh{
  10766. background: #151a23 !important;
  10767. }
  10768. html[data-theme=dark] .css-e7s7cv{
  10769. border:1px solid #444!important;
  10770. }
  10771. html[data-theme=dark] .css-zul5nu{
  10772. border:1px solid #444!important;
  10773. }
  10774. html[data-theme=dark] .css-1cgjjzc{
  10775. border:1px solid #444!important;
  10776. opacity:1 !important;
  10777. }
  10778. html[data-theme=dark] .css-172ot2f{
  10779. color: #d3d3d3 !important;
  10780. }
  10781. html[data-theme=dark] .css-o296kv{
  10782. color: #d3d3d3 !important;
  10783. }
  10784. /*搜索结果-论文分类展开列表*/
  10785. html[data-theme=dark] .css-1xj1964{
  10786. background: #151a23 !important;
  10787. }
  10788. html[data-theme=dark] .css-ggid2{
  10789. background: #151a23 !important;
  10790. }
  10791. /*搜索结果-论文分类展开列表选项*/
  10792. html[data-theme=dark] .E211w_M7Hzs0GMB7BEyA{
  10793. color: #d3d3d3 !important;
  10794. background:#8080801c !important;
  10795. }
  10796. html[data-theme=dark] .E211w_M7Hzs0GMB7BEyA.css-181c5a9{
  10797. color:#0084ff!important;
  10798. background:#1772f60f!important;
  10799. }
  10800. /*搜索结果-阅读全文*/
  10801. html[data-theme=dark] .ContentItem-more{
  10802. color: #0084ff !important
  10803. }
  10804. /*搜索结果-电子书标签*/
  10805. html[data-theme=dark] .KfeCollection-PcCollegeCard-type{
  10806. color: #0084ff !important
  10807. }
  10808. /*搜索结果-更多电子书*/
  10809. html[data-theme=dark] .KfeCollection-PcCollegeCard-searchMore{
  10810. color: #0084ff !important
  10811. }
  10812. /*搜索结果-相关搜索*/
  10813. html[data-theme=dark] .RelevantQuery h2{
  10814. color: #d3d3d3 !important
  10815. }
  10816. html[data-theme=dark] .RelevantQuery li{
  10817. color: #0084ff !important
  10818. }
  10819. /*侧边栏-更多按钮*/
  10820. html[data-theme=dark] .css-1kxql2v{
  10821. color: #8590a6 !important;
  10822. background: #2e2e2e !important;
  10823. }
  10824. /*侧边栏-更多展开列表*/
  10825. html[data-theme=dark] .css-i9srcr{
  10826. background: #191b1f !important;
  10827. }
  10828. html[data-theme=dark] .css-2habnn > a:hover{
  10829. background: #8080801c !important;
  10830. }
  10831. html[data-theme=dark] .css-6lgbq5:hover{
  10832. color: #0084ff !important
  10833. }
  10834. /*==搜索结果==*/
  10835.  
  10836.  
  10837. /*==专栏==*/
  10838. /*专栏介绍*/
  10839. html[data-theme=dark] .css-h5rdys{
  10840. color: #d3d3d3 !important
  10841. }
  10842. html[data-theme=dark] .css-2sopzd{
  10843. background: #191b1f !important;
  10844. }
  10845. .css-1byd3cx{
  10846. transform: translateX(-7px);
  10847. }
  10848. html[data-theme=dark] .css-1byd3cx{
  10849. background: #191b1f !important;
  10850. }
  10851. html[data-theme=dark] .css-1symrae{
  10852. color: #d3d3d3 !important
  10853. }
  10854. /*分类标签*/
  10855. html[data-theme=dark] .css-1tvhjhb{
  10856. color: #1772F6 !important
  10857. }
  10858. html[data-theme=dark] .css-5ons2k{
  10859. color: #d3d3d3 !important;
  10860. }
  10861. /*作者介绍*/
  10862. html[data-theme=dark] .css-15k5nix{
  10863. background: #191b1f !important;
  10864. }
  10865. html[data-theme=dark] .css-f3930v{
  10866. color: #d3d3d3 !important;
  10867. }
  10868. html[data-theme=dark] .css-705zp9{
  10869. color: #d3d3d3 !important;
  10870. }
  10871. html[data-theme=dark] .css-9w3zhd{
  10872. border-bottom:1px solid #444!important;
  10873. }
  10874. /*==专栏==*/
  10875.  
  10876.  
  10877. /*==话题讨论==*/
  10878. /*次级导航栏*/
  10879. html[data-theme=dark] .Topic-pageHeader .Topic-tabs{
  10880. overflow: hidden !important;
  10881. }
  10882. /*百科-简介*/
  10883. html[data-theme=dark] .TopicIntroSection-title{
  10884. color: #d3d3d3 !important
  10885. }
  10886. /*百科-摘录*/
  10887. html[data-theme=dark] .TopicAbstract-title{
  10888. color: #d3d3d3 !important
  10889. }
  10890. /*==话题讨论==*/
  10891.  
  10892.  
  10893. /*==用户主页==*/
  10894. /*搜索按钮*/
  10895. html[data-theme=dark] .css-3f82om{
  10896. background: #191b1f !important;
  10897. }
  10898. html[data-theme=dark] .css-zduc1z{
  10899. background: #191b1f !important;
  10900. }
  10901. /*==用户主页==*/
  10902.  
  10903. /*==知乎圆桌==*/
  10904. /*圆桌首页背景*/
  10905. html[data-theme=dark] .css-lxxesj{
  10906. background: #191b1f !important;
  10907. }
  10908. /*圆桌首页封面标题*/
  10909. html[data-theme=dark] .css-1sjs4ns{
  10910. color: #d3d3d3 !important
  10911. }
  10912. /*圆桌介绍*/
  10913. html[data-theme=dark] .css-1fnir59,
  10914. html[data-theme=dark] .css-t3f0zn,
  10915. html[data-theme=dark] .css-1cj0s4z {
  10916. background: #191b1f !important;
  10917. }
  10918. /*圆桌标题*/
  10919. html[data-theme=dark] .css-1f0fpoe{
  10920. color: #d3d3d3 !important;
  10921. }
  10922. /*详细介绍*/
  10923. html[data-theme=dark] .css-f5u07t{
  10924. color: #d3d3d3 !important;
  10925. }
  10926. /*浏览量*/
  10927. html[data-theme=dark] .css-185ew1i{
  10928. color: #d3d3d3 !important;
  10929. }
  10930. /*主办方及主持人*/
  10931. html[data-theme=dark] .css-bgcgf1{
  10932. color: #d3d3d3 !important;
  10933. border-bottom:1px solid #444!important;
  10934. }
  10935. html[data-theme=dark] .css-7b4wc9{
  10936. background: #191b1f !important;
  10937. }
  10938. html[data-theme=dark] .css-1d1aerp{
  10939. border-top:1px solid #444!important;
  10940. }
  10941. /*嘉宾*/
  10942. html[data-theme=dark] .css-1xvgm7g{
  10943. background: #191b1f !important;
  10944. }
  10945. html[data-theme=dark] .css-tsxvph{
  10946. color: #d3d3d3 !important;
  10947. }
  10948. /*正在热议-用户名*/
  10949. html[data-theme=dark] .css-1vo4fqo{
  10950. color: #d3d3d3 !important;
  10951. }
  10952. /*正在热议-标题*/
  10953. html[data-theme=dark] .css-1kwr5sb{
  10954. color: #d3d3d3 !important;
  10955. }
  10956. /*正在热议-分割线*/
  10957. html[data-theme=dark] .css-1wpnzlt{
  10958. border-bottom:1px solid #444!important;
  10959. }
  10960. /*正在热议-文章标签*/
  10961. .css-18mnslu{
  10962. background: orange !important;
  10963. color:white !important;
  10964. }
  10965. html[data-theme=dark] .css-18mnslu{
  10966. color: #d3d3d3 !important;
  10967. }
  10968. /*最新提问-分割线*/
  10969. html[data-theme=dark] .css-1ppskpm{
  10970. border-bottom:1px solid #444!important;
  10971. }
  10972. /*关注圆桌按钮*/
  10973. html[data-theme=dark] .css-1ypq6gi{
  10974. color: #d3d3d3 !important;
  10975. }
  10976. /*参与讨论按钮*/
  10977. html[data-theme=dark] .css-lc30l3{
  10978. color: #d3d3d3 !important;
  10979. }
  10980. /*抢先回答按钮*/
  10981. html[data-theme=dark] .css-37j01z{
  10982. color: #d3d3d3 !important;
  10983. }
  10984. /*==知乎圆桌==*/
  10985.  
  10986. `)
  10987. }
  10988. function addCSS() {
  10989. //GM_addStyle(GM_getResourceText('zhihu-beautify'));
  10990. addLocalCSS();
  10991. }
  10992.  
  10993. //话题页
  10994. function topic() {
  10995. if (hideTopicSideBar == 1) //隐藏侧边栏并拉宽内容
  10996. {
  10997. $('.css-1q32xh5').hide();
  10998. $(".ContentLayout-sideColumn").hide();
  10999. $(".ContentLayout-mainColumn").width($(".ContentLayout").width());
  11000. } else if (hideTopicSideBar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  11001. {
  11002. $('.css-1q32xh5').hide();
  11003. $(".ContentLayout-sideColumn").hide();
  11004. $(".ContentLayout").attr("style", "display:flex;justify-content:center;");
  11005. }
  11006. }
  11007.  
  11008. //草稿页
  11009. function draft() {
  11010. if (hideDraftSideBar == 1) //隐藏侧边栏并拉宽内容
  11011. {
  11012. $('.GlobalSideBar').hide();
  11013. $(".DraftList-mainColumn").width($(".DraftList").width());
  11014. } else if (hideDraftSideBar == 2) //隐藏侧边栏,仅水平居中内容,不拉宽
  11015. {
  11016. $('.GlobalSideBar').hide();
  11017. $(".DraftList").attr("style", "display:flex;justify-content:center;");
  11018. }
  11019. }
  11020.  
  11021. //知乎圆桌页
  11022. function roundtable() {
  11023. //增加遮罩层
  11024. if ($('html[data-theme=dark] .css-zprod6').length == 0) {
  11025. $('html[data-theme=dark] div.css-1b0ypf8 > div.css-1sqjzsk > div.css-tr5tvs > img').after('<div class=\"css-zprod6\"></div>');
  11026. }
  11027. }
  11028.  
  11029. let cheese_addstyle = 0;
  11030.  
  11031. function cheese() {
  11032.  
  11033. if (cheese_addstyle == 0) {
  11034. GM_addStyle(`html[data-theme=dark] .navbarWrap___wvkSj{background:rgb(18,18,18);}
  11035. html[data-theme=dark] #root, body, html{background:rgb(18,18,18);}
  11036. html[data-theme=dark] .container___cOXUf>main{background:rgb(18,18,18);}
  11037. html[data-theme=dark] .introduce___14YE0{background:rgb(18,18,18);}
  11038. html[data-theme=dark] .conditionItemTag___3SNgb{background:rgb(18,18,18); color:#d3d3d3;}
  11039. html[data-theme=dark] .hometitle___2_1Bm p{color:#d3d3d3;}
  11040. html[data-theme=dark] .conditionItemInfo___2277d{color:#d3d3d3;}
  11041. html[data-theme=dark] .taskcardTitle___13gHK{color:#d3d3d3;}
  11042. html[data-theme=dark] .taskcardInfo___XkANs{color:#d3d3d3;}
  11043. html[data-theme=dark] .taskcardCondition___32u1P p{color:#d3d3d3;}
  11044. html[data-theme=dark] .taskcardCondition___32u1P span{color:#d3d3d3;}`);
  11045.  
  11046. cheese_addstyle = 1
  11047. }
  11048. }
  11049.  
  11050. //GIF自动播放
  11051. function gifPlaying() {
  11052. if (GIFAutoPlay == 1) {
  11053. $(".GifPlayer .ztext-gif").each(function() {
  11054. if ($(this).hasClass('GifPlayer-gif2mp4')) {
  11055. if ($(this).get(0).paused) {
  11056. $(this).get(0).play();
  11057. $(this).addClass('play');
  11058. }
  11059. } else {
  11060. $(this).parent().addClass("isPlaying");
  11061. if ($(this).attr("src").indexOf("webp") == -1) {
  11062. $(this).attr("src", $(this).attr("src").replace("jpg", "webp"));
  11063. //$(this).wrap("<a target=\'_blank\' href=\'" + $(this).attr("src") + "\'></a>");
  11064. }
  11065. }
  11066. });
  11067.  
  11068. }
  11069.  
  11070. }
  11071.  
  11072. //盐选专栏、知乎讲书
  11073. function xen() {
  11074. if ($('.css-18vw6y4').length > 0)
  11075. $('.css-18vw6y4').get(0).click();
  11076.  
  11077. if ($('.IntroSummary-expandButton-iZSs9').length > 0)
  11078. $('.IntroSummary-expandButton-iZSs9').get(0).click();
  11079. }
  11080.  
  11081. //创作中心
  11082. function creator() {
  11083. //内容的发布时间
  11084. $(".CreationManage-CreationCard.css-wooxo5").each(function() {
  11085. if (!($(this).find(".css-w1ffsg").hasClass("full")) && $(this).find(".css-w1ffsg").length > 0 && $(this).find(".css-w1ffsg").text() != null) {
  11086. if ($(this).find(".css-w1ffsg").text().indexOf("发布于") == -1 && $(this).find(".css-w1ffsg").text().indexOf("编辑于") > -1 && $(this).find(".css-w1ffsg").attr("data-tooltip") != null) //只有"编辑于"时增加具体发布时间data-tooltip
  11087. {
  11088. let data_tooltip = $(this).find(".css-w1ffsg").attr("data-tooltip");
  11089. var oldtext = $(this).find(".css-w1ffsg").text();
  11090. $(this).find(".css-w1ffsg").text(data_tooltip + "\xa0\xa0,\xa0\xa0" + oldtext);
  11091. $(this).find(".css-w1ffsg").addClass("full");
  11092. } else if ($(this).find(".css-w1ffsg").text().indexOf("发布于") > -1 && $(this).find(".css-w1ffsg").text().indexOf("编辑于") == -1 && $(this).find(".css-w1ffsg").attr("data-tooltip") != null) //只有"发布于"时替换为具体发布时间data-tooltip
  11093. {
  11094. let data_tooltip = $(this).find(".css-w1ffsg").attr("data-tooltip");
  11095. $(this).find(".css-w1ffsg").text(data_tooltip);
  11096. $(this).find(".css-w1ffsg").addClass("full");
  11097. }
  11098. }
  11099. });
  11100.  
  11101. //"被折叠"提示
  11102. $('html[data-theme=dark] .Zi--HelpOutline').closest('.css-vurnku').css('background', '#ffffff1c')
  11103. }
  11104.  
  11105. //无障碍
  11106. function wza() {
  11107. GM_addStyle('html[data-theme=dark] .content{background:rgb(18,18,18);}');
  11108. }
  11109.  
  11110. function printValue() {
  11111. console.log('\n');
  11112. console.log('hideIndexSidebar=' + hideIndexSidebar);
  11113. console.log('hideQuestionSidebar=' + hideQuestionSidebar);
  11114. console.log('hideSearchSideBar=' + hideSearchSideBar);
  11115. console.log('hideTopicSideBar=' + hideTopicSideBar);
  11116. console.log('hideCollectionSideBar=' + hideCollectionSideBar);
  11117. console.log('hideClubSideBar=' + hideClubSideBar);
  11118. console.log('hideDraftSideBar=' + hideDraftSideBar);
  11119. console.log('hideLaterSideBar=' + hideLaterSideBar);
  11120. console.log('hideProfileSidebar=' + hideProfileSidebar);
  11121. console.log('hideRecommendedReading=' + hideRecommendedReading);
  11122. console.log('publishTop=' + publishTop);
  11123. console.log('GIFAutoPlay=' + GIFAutoPlay);
  11124. console.log('hoverShadow=' + hoverShadow);
  11125. console.log('blockingPictureVideo=' + blockingPictureVideo);
  11126. console.log('flowTag=' + flowTag);
  11127. console.log('prefersColorScheme=' + prefersColorScheme);
  11128. console.log('hideFeedSource=' + hideFeedSource);
  11129. console.log('\n');
  11130. }
  11131.  
  11132. //设置框样式参考https://greasyfork.org/zh-CN/scripts/37988
  11133.  
  11134. function settings() {
  11135. let settingHTML=`
  11136. <div id="settingLayerMask" style="display: flex;">
  11137. <div id="settingLayer">
  11138. <div id="itemlist">
  11139. <section class="switch"><span>隐藏首页侧边栏</span>
  11140. <select name="hideIndexSidebar" id="hideIndexSidebar">
  11141. <option value="0">不隐藏</option>
  11142. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11143. <option value="2">隐藏,居中显示内容</option>
  11144. </select>
  11145. </section>
  11146. <section class="switch"><span>隐藏回答侧边栏</span>
  11147. <select name="hideQuestionSidebar" id="hideQuestionSidebar">
  11148. <option value="0">不隐藏</option>
  11149. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11150. <option value="2">隐藏,居中显示内容</option>
  11151. </select>
  11152. </section>
  11153. <section class="switch"><span>隐藏搜索侧边栏</span>
  11154. <select name="hideSearchSideBar" id="hideSearchSideBar">
  11155. <<option value="0">不隐藏</option>
  11156. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11157. <option value="2">隐藏,居中显示内容</option>
  11158. </select>
  11159. </section>
  11160. <section class="switch"><span>隐藏话题侧边栏</span>
  11161. <select name="hideTopicSideBar" id="hideTopicSideBar">
  11162. <option value="0">不隐藏</option>
  11163. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11164. <option value="2">隐藏,居中显示内容</option>
  11165. </select>
  11166. </section>
  11167. <section class="switch"><span>隐藏收藏侧边栏</span>
  11168. <select name="hideCollectionSideBar" id="hideCollectionSideBar">
  11169. <option value="0">不隐藏</option>
  11170. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11171. <option value="2">隐藏,居中显示内容</option>
  11172. </select>
  11173. </section>
  11174. <section class="switch"><span>隐藏圈子侧边栏</span>
  11175. <select name="hideClubSideBar" id="hideClubSideBar">
  11176. <option value="0">不隐藏</option>
  11177. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11178. <option value="2">隐藏,居中显示内容</option>
  11179. </select>
  11180. </section>
  11181. <section class="switch"><span>隐藏草稿侧边栏</span>
  11182. <select name="hideDraftSideBar" id="hideDraftSideBar">
  11183. <option value="0">不隐藏</option>
  11184. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11185. <option value="2">隐藏,居中显示内容</option>
  11186. </select>
  11187. </section>
  11188. <section class="switch"><span>隐藏稍后答侧边栏</span>
  11189. <select name="hideLaterSideBar" id="hideLaterSideBar">
  11190. <option value="0">不隐藏</option>
  11191. <option value="1" selected="selected">隐藏,拉宽显示内容</option>
  11192. <option value="2">隐藏,居中显示内容</option>
  11193. </select>
  11194. </section>
  11195. <section class="switch"><span>隐藏用户主页侧边栏</span>
  11196. <select name="hideProfileSidebar" id="hideProfileSidebar">
  11197. <option value="0" selected="selected">不隐藏</option>
  11198. <option value="1">隐藏,拉宽显示内容</option>
  11199. <option value="2">隐藏,居中显示内容</option>
  11200. </select>
  11201. </section>
  11202. <section class="switch"><span>隐藏专栏推荐</span>
  11203. <div class="checkbox on"><input type="checkbox" name="hideRecommendedReading" id="hideRecommendedReading" value="1"><label class="switchLabel"></label></div>
  11204. </section>
  11205. <section class="switch"><span>置顶回答时间</span>
  11206. <div class="checkbox on"><input type="checkbox" name="publishTop" id="publishTop" value="1"><label class="switchLabel"></label></div>
  11207. </section>
  11208. <section class="switch"><span>GIF自动播放</span>
  11209. <div class="checkbox"><input type="checkbox" name="GIFAutoPlay" id="GIFAutoPlay" value="0"><label class="switchLabel"></label></div>
  11210. </section>
  11211. <section class="switch"><span>悬停时显示浅蓝色边框</span>
  11212. <div class="checkbox on"><input type="checkbox" name="hoverShadow" id="hoverShadow" value="1"><label class="switchLabel"></label></div>
  11213. </section>
  11214. <section class="switch"><span>隐藏图片/视频</span>
  11215. <div class="checkbox on"><input type="checkbox" name="blockingPictureVideo" id="blockingPictureVideo" value="0"><label class="switchLabel"></label></div>
  11216. </section>
  11217. <section class="switch"><span>显示信息流标签</span>
  11218. <div class="checkbox on"><input type="checkbox" name="flowTag" id="flowTag" value="0"><label class="switchLabel"></label></div>
  11219. </section>
  11220. <section class="switch"><span>跟随系统夜间模式</span>
  11221. <div class="checkbox on"><input type="checkbox" name="prefersColorScheme" id="prefersColorScheme" value="0"><label class="switchLabel"></label></div>
  11222. </section>
  11223. <section class="switch"><span>隐藏动态来源</span>
  11224. <div class="checkbox on"><input type="checkbox" name="hideFeedSource" id="hideFeedSource" value="1"><label class="switchLabel"></label></div>
  11225. </section>
  11226. <section class="switch" style="visibility:hidden"><span>XXX</span>
  11227. <div class="checkbox on"><input type="checkbox" name="hideFeedSource" id="hideFeedSource" value="1"><label class="switchLabel"></label></div>
  11228. </section>
  11229. </div>
  11230. <div id="btnEle">
  11231. <div class="btnEleLayer">
  11232. <span id="settings-save" >保存并刷新</span>
  11233. </div>
  11234. </div><span id="settings-close" ></span></div>
  11235. </div>`;
  11236.  
  11237. $('body').append(settingHTML);
  11238.  
  11239. GM_addStyle(`
  11240. #settingLayer #itemlist {
  11241. display: flex;
  11242. display: -webkit-flex;
  11243. align-content: center;
  11244. align-items: center;
  11245. justify-content: center;
  11246. flex-flow: row wrap;
  11247. }
  11248.  
  11249. #settingLayer section {
  11250. display: grid;
  11251. float: left;
  11252. width: 200px;
  11253. padding: 10px 20px;
  11254. border-right: 1px solid #0084ff;
  11255. }
  11256.  
  11257. #settingLayer section:nth-of-type(3n) {
  11258. border-right: none;
  11259. }
  11260.  
  11261. #settingLayer .switch span {
  11262. height: 30px;
  11263. line-height: 30px;
  11264. font-size: 20px;
  11265. vertical-align: top;
  11266. }
  11267.  
  11268. #settingLayer .switch .checkbox {
  11269. float: right;
  11270. }
  11271.  
  11272. #settingLayer .checkbox {
  11273. position: relative;
  11274. display: inline-block;
  11275. }
  11276.  
  11277. #settingLayer .checkbox:after,
  11278. #settingLayer .checkbox:before {
  11279. -webkit-font-feature-settings: normal;
  11280. -moz-font-feature-settings: normal;
  11281. font-feature-settings: normal;
  11282. -webkit-font-kerning: auto;
  11283. font-kerning: auto;
  11284. -moz-font-language-override: normal;
  11285. font-language-override: normal;
  11286. font-stretch: normal;
  11287. font-style: normal;
  11288. font-synthesis: weight style;
  11289. font-variant: normal;
  11290. font-weight: normal;
  11291. text-rendering: auto;
  11292. }
  11293.  
  11294. #settingLayer .checkbox label {
  11295. width: 80px;
  11296. height: 30px;
  11297. background: #ccc;
  11298. position: relative;
  11299. display: inline-block;
  11300. border-radius: 46px;
  11301. -webkit-transition: 0.4s;
  11302. transition: 0.4s;
  11303. cursor: pointer;
  11304. }
  11305.  
  11306. #settingLayer .checkbox label:after {
  11307. content: "";
  11308. position: absolute;
  11309. width: 50px;
  11310. height: 50px;
  11311. border-radius: 100%;
  11312. left: 0;
  11313. top: -5px;
  11314. z-index: 2;
  11315. background: #fff;
  11316. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  11317. -webkit-transition: 0.4s;
  11318. transition: 0.4s;
  11319. cursor: pointer;
  11320. }
  11321.  
  11322. #settingLayer .checkbox input {
  11323. display: none;
  11324. }
  11325.  
  11326. #settingLayer .checkbox.on label:after {
  11327. left: 40px;
  11328. }
  11329.  
  11330. #settingLayer .checkbox.on label {
  11331. background: #4BD865;
  11332. }
  11333.  
  11334. #settingLayer .switch .checkbox label {
  11335. width: 70px;
  11336. }
  11337.  
  11338. #settingLayer .switch .checkbox label:after {
  11339. top: 0;
  11340. width: 30px;
  11341. height: 30px;
  11342. }
  11343.  
  11344. /* 弹出层 */
  11345.  
  11346. #settingLayerMask {
  11347. display: none;
  11348. justify-content: center;
  11349. align-items: center;
  11350. position: fixed;
  11351. top: 0;
  11352. right: 0;
  11353. bottom: 0;
  11354. left: 0;
  11355. background-color: rgba(0, 0, 0, .5);
  11356. z-index: 200000000;
  11357. overflow: auto;
  11358. font-family: arial, sans-serif;
  11359. min-height: 100%;
  11360. font-size: 16px;
  11361. transition: 0.5s;
  11362. opacity: 1;
  11363. user-select: none;
  11364. -moz-user-select: none;
  11365. padding-bottom: 80px;
  11366. box-sizing: border-box;
  11367. }
  11368.  
  11369. #settingLayer {
  11370. display: flex;
  11371. flex-wrap: wrap;
  11372. padding: 20px;
  11373. margin: 45px 25px 50px 5px;
  11374. background-color: #fff;
  11375. border-radius: 4px;
  11376. position: absolute;
  11377. width: 800px;
  11378. transition: 0.5s;
  11379. }
  11380.  
  11381. #settingLayer #btnEle {
  11382. position: absolute;
  11383. width: 100%;
  11384. bottom: 4px;
  11385. right: 0;
  11386. background: #fff;
  11387. border-radius: 4px;
  11388. }
  11389.  
  11390. #settingLayer #btnEle span {
  11391. display: inline-block;
  11392. background: #EFF4F8;
  11393. border: 1px solid #3abdc1;
  11394. margin: 12px auto 10px;
  11395. color: #3abdc1;
  11396. padding: 5px 10px;
  11397. border-radius: 4px;
  11398. cursor: pointer;
  11399. outline: none;
  11400. transition: 0.3s;
  11401. }
  11402.  
  11403. #settingLayer #btnEle a {
  11404. color: #999;
  11405. text-decoration: none;
  11406. }
  11407.  
  11408. #settingLayer #btnEle a:hover {
  11409. text-decoration: underline;
  11410. color: #ef8957;
  11411. }
  11412.  
  11413. #settingLayer #btnEle span.feedback:hover {
  11414. border-color: #ef8957;
  11415. }
  11416.  
  11417. #settingLayer #btnEle span:not(.feedback):hover {
  11418. background: #3ACBDD;
  11419. color: #fff;
  11420. }
  11421.  
  11422. #settingLayer #btnEle .feedback {
  11423. border-color: #aaa;
  11424. }
  11425.  
  11426. #settingLayer #btnEle>div {
  11427. width: 100%;
  11428. margin-bottom: -100%;
  11429. display: flex;
  11430. justify-content: space-around;
  11431. background: #EFF4F8;
  11432. border-radius: 4px;
  11433. }
  11434.  
  11435.  
  11436. /*close button*/
  11437.  
  11438. #settingLayer #settings-close {
  11439. background: white;
  11440. color: #3ABDC1;
  11441. line-height: 20px;
  11442. text-align: center;
  11443. height: 20px;
  11444. width: 20px;
  11445. font-size: 20px;
  11446. padding: 10px;
  11447. border: 3px solid #3ABDC1;
  11448. border-radius: 50%;
  11449. transition: .5s;
  11450. top: -20px;
  11451. right: -20px;
  11452. position: absolute;
  11453. cursor: pointer;
  11454. }
  11455.  
  11456. #settingLayer #settings-close::before {
  11457. content: "\\2716";
  11458. }
  11459.  
  11460. #settingLayer #settings-close:hover {
  11461. background: indianred;
  11462. border-color: indianred;
  11463. color: #fff;
  11464. }
  11465.  
  11466. #settingLayer select {
  11467. appearance:none;
  11468. -webkit-appearance: none;
  11469. -moz-appearance:none;
  11470. height: 30px;
  11471. width: 180px;
  11472. color: #0084FF;
  11473. background: white url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAfElEQVQ4T2NkoBAwUqifYdQABixh0PL/AQMDgzyOwH3IUMOogCyHGYit/w0Y/jMcYGBg4Ecz5CMDI4MDQzXjBfwGgGRBhvxjWMDAyKAPVvyf4SIDE0MCumaQFO5obPgvwMAMdgkDw18GB4YGxg/YvDWaDvAFIpG5jOJABABKFBYRvq528AAAAABJRU5ErkJggg==") no-repeat right;
  11474. font-size: 16px;
  11475. position: relative;
  11476. display: inline-block;
  11477. border: 1px solid rgb(118, 118, 118);
  11478. border-radius: 46px;
  11479. -webkit-transition: 0.4s;
  11480. transition: 0.4s;
  11481. cursor: pointer;
  11482. padding-left: 10px;
  11483. }
  11484. html[data-theme=dark] #settingLayer{
  11485. background: #191c25;
  11486. }
  11487. html[data-theme=dark] #settingLayer #btnEle>div{
  11488. background: #25282f;
  11489. }
  11490. html[data-theme=dark] #settingLayer #settings-save{
  11491. background: #8080801c;
  11492. }
  11493. html[data-theme=dark] #settingLayer select{
  11494. background: #8080801c url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAfElEQVQ4T2NkoBAwUqifYdQABixh0PL/AQMDgzyOwH3IUMOogCyHGYit/w0Y/jMcYGBg4Ecz5CMDI4MDQzXjBfwGgGRBhvxjWMDAyKAPVvyf4SIDE0MCumaQFO5obPgvwMAMdgkDw18GB4YGxg/YvDWaDvAFIpG5jOJABABKFBYRvq528AAAAABJRU5ErkJggg==") no-repeat right;
  11495. }
  11496. html[data-theme=dark] #settingLayer option{
  11497. background: #24272f;
  11498. }
  11499. html[data-theme=dark] #settingLayer #settings-close{
  11500. background: #25282f;
  11501. }
  11502. `)
  11503.  
  11504. //默认隐藏
  11505. $('#settingLayerMask').hide();
  11506.  
  11507. //读取值
  11508. hideIndexSidebar = GM_getValue('hideIndexSidebar');
  11509. hideQuestionSidebar = GM_getValue('hideQuestionSidebar');
  11510. hideSearchSideBar = GM_getValue('hideSearchSideBar');
  11511. hideTopicSideBar = GM_getValue('hideTopicSideBar');
  11512. hideCollectionSideBar = GM_getValue('hideCollectionSideBar');
  11513. hideClubSideBar = GM_getValue('hideClubSideBar');
  11514. hideDraftSideBar = GM_getValue('hideDraftSideBar');
  11515. hideLaterSideBar = GM_getValue('hideLaterSideBar');
  11516. hideProfileSidebar = GM_getValue('hideProfileSidebar');
  11517. hideRecommendedReading = GM_getValue('hideRecommendedReading');
  11518. publishTop = GM_getValue('publishTop');
  11519. GIFAutoPlay = GM_getValue('GIFAutoPlay');
  11520. hoverShadow = GM_getValue('hoverShadow');
  11521. blockingPictureVideo = GM_getValue('blockingPictureVideo');
  11522. flowTag = GM_getValue('flowTag');
  11523. prefersColorScheme = GM_getValue('prefersColorScheme');
  11524. hideFeedSource = GM_getValue('hideFeedSource');
  11525.  
  11526. printValue(); //输出所有设置值
  11527.  
  11528. //在设置界面设置相应值
  11529. $('select option').removeAttr('selected');
  11530.  
  11531. $('#hideIndexSidebar').val(hideIndexSidebar);
  11532. $('#hideQuestionSidebar').val(hideQuestionSidebar);
  11533. $('#hideSearchSideBar').val(hideSearchSideBar);
  11534. $('#hideTopicSideBar').val(hideTopicSideBar);
  11535. $('#hideCollectionSideBar').val(hideCollectionSideBar);
  11536. $('#hideClubSideBar').val(hideClubSideBar);
  11537. $('#hideDraftSideBar').val(hideDraftSideBar);
  11538. $('#hideLaterSideBar').val(hideLaterSideBar);
  11539. $('#hideProfileSidebar').val(hideProfileSidebar);
  11540. $('#hideRecommendedReading').val(hideRecommendedReading);
  11541. $('#publishTop').val(publishTop);
  11542. $('#GIFAutoPlay').val(GIFAutoPlay);
  11543. $('#hoverShadow').val(hoverShadow);
  11544. $('#blockingPictureVideo').val(blockingPictureVideo);
  11545. $('#flowTag').val(flowTag);
  11546. $('#prefersColorScheme').val(prefersColorScheme);
  11547. $('#hideFeedSource').val(hideFeedSource);
  11548.  
  11549. $('.checkbox').each(function() {
  11550. if ($(this).find('input').val() == 1)
  11551. $(this).addClass('on');
  11552. else
  11553. $(this).removeClass('on');
  11554. });
  11555.  
  11556. //点击关闭按钮隐藏
  11557. $('#settings-close').click(function() {
  11558. $('#settingLayerMask').hide();
  11559. });
  11560.  
  11561. //按ESC键隐藏
  11562. $(document).keyup(function(e) {
  11563. if (e.key === "Escape") {
  11564. $('#settingLayerMask').hide();
  11565. }
  11566. });
  11567.  
  11568. //开关按钮
  11569. $('.checkbox').click(function() {
  11570. if ($(this).hasClass('on')) {
  11571. $(this).find('input').val('0');
  11572. } else {
  11573. $(this).find('input').val('1');
  11574. }
  11575. $(this).toggleClass('on');
  11576. })
  11577.  
  11578. //保存设置
  11579. $('#settings-save').click(function() {
  11580. hideIndexSidebar = $('#hideIndexSidebar').val();
  11581. hideQuestionSidebar = $('#hideQuestionSidebar').val();
  11582. hideSearchSideBar = $('#hideSearchSideBar').val();
  11583. hideTopicSideBar = $('#hideTopicSideBar').val();
  11584. hideCollectionSideBar = $('#hideCollectionSideBar').val();
  11585. hideClubSideBar = $('#hideClubSideBar').val();
  11586. hideDraftSideBar = $('#hideDraftSideBar').val();
  11587. hideLaterSideBar = $('#hideLaterSideBar').val();
  11588. hideProfileSidebar = $('#hideProfileSidebar').val();
  11589. hideRecommendedReading = $('#hideRecommendedReading').val();
  11590. publishTop = $('#publishTop').val();
  11591. GIFAutoPlay = $('#GIFAutoPlay').val();
  11592. hoverShadow = $('#hoverShadow').val();
  11593. blockingPictureVideo = $('#blockingPictureVideo').val();
  11594. flowTag = $('#flowTag').val();
  11595. prefersColorScheme = $('#prefersColorScheme').val();
  11596. hideFeedSource = $('#hideFeedSource').val();
  11597.  
  11598.  
  11599. GM_setValue('hideIndexSidebar', hideIndexSidebar);
  11600. GM_setValue('hideQuestionSidebar', hideQuestionSidebar);
  11601. GM_setValue('hideSearchSideBar', hideSearchSideBar);
  11602. GM_setValue('hideTopicSideBar', hideTopicSideBar);
  11603. GM_setValue('hideCollectionSideBar', hideCollectionSideBar);
  11604. GM_setValue('hideClubSideBar', hideClubSideBar);
  11605. GM_setValue('hideDraftSideBar', hideDraftSideBar);
  11606. GM_setValue('hideLaterSideBar', hideLaterSideBar);
  11607. GM_setValue('hideProfileSidebar', hideProfileSidebar);
  11608. GM_setValue('hideRecommendedReading', hideRecommendedReading);
  11609. GM_setValue('publishTop', publishTop);
  11610. GM_setValue('GIFAutoPlay', GIFAutoPlay);
  11611. GM_setValue('hoverShadow', hoverShadow);
  11612. GM_setValue('blockingPictureVideo', blockingPictureVideo);
  11613. GM_setValue('flowTag', flowTag);
  11614. GM_setValue('prefersColorScheme', prefersColorScheme);
  11615. GM_setValue('hideFeedSource', hideFeedSource);
  11616.  
  11617.  
  11618. $('#settingLayerMask').hide(); //隐藏设置
  11619. window.location.reload(); //刷新当前页面.
  11620. });
  11621.  
  11622. }
  11623.  
  11624.  
  11625. function clearValue() {
  11626. GM_deleteValue('hideIndexSidebar');
  11627. GM_deleteValue('hideQuestionSidebar');
  11628. GM_deleteValue('hideSearchSideBar');
  11629. GM_deleteValue('hideTopicSideBar');
  11630. GM_deleteValue('hideCollectionSideBar');
  11631. GM_deleteValue('hideClubSideBar');
  11632. GM_deleteValue('hideDraftSideBar');
  11633. GM_deleteValue('hideLaterSideBar');
  11634. GM_deleteValue('hideProfileSidebar');
  11635. GM_deleteValue('hideRecommendedReading');
  11636. GM_deleteValue('publishTop');
  11637. GM_deleteValue('GIFAutoPlay');
  11638. GM_deleteValue('hoverShadow');
  11639. GM_deleteValue('blockingPictureVideo');
  11640. GM_deleteValue('flowTag');
  11641. GM_deleteValue('prefersColorScheme');
  11642. GM_deleteValue('hideFeedSource');
  11643. }
  11644.  
  11645.  
  11646. (function() {
  11647. 'use strict';
  11648.  
  11649. //根据当前cookie,判断是否设置夜间模式
  11650. if ($.cookie('nightmode') != undefined) {
  11651. if ($.cookie('nightmode') == 1) {
  11652. $("html").attr("data-theme", "dark");
  11653. $(".ightmode").find("img").attr("src", light).attr("style", "vertical-align:middle; width:20px; height:20px;");
  11654. $(".nightmode").find("span").text(" 日间模式");
  11655. } else {
  11656. $("html").attr("data-theme", "light");
  11657. $(".nightmode").find("img").attr("src", dark).attr("style", "vertical-align:middle; width:18px; height:18px;");
  11658. $(".nightmode").find("span").text(" 夜间模式");
  11659. }
  11660. }
  11661.  
  11662. $('head').append(`<meta http-equiv="Content-Security-Policy" content="script-src * 'unsafe-eval'">`);
  11663.  
  11664. //clearValue(); //清空所有设置值
  11665.  
  11666. //设置默认值
  11667. if (GM_getValue('hideIndexSidebar') == undefined) {
  11668. GM_setValue('hideIndexSidebar', '1');
  11669. }
  11670.  
  11671. if (GM_getValue('hideQuestionSidebar') == undefined) {
  11672. GM_setValue('hideQuestionSidebar', '1');
  11673. }
  11674.  
  11675. if (GM_getValue('hideSearchSideBar') == undefined) {
  11676. GM_setValue('hideSearchSideBar', '1');
  11677. }
  11678.  
  11679. if (GM_getValue('hideTopicSideBar') == undefined) {
  11680. GM_setValue('hideTopicSideBar', '1');
  11681. }
  11682.  
  11683. if (GM_getValue('hideCollectionSideBar') == undefined) {
  11684. GM_setValue('hideCollectionSideBar', '1');
  11685. }
  11686.  
  11687. if (GM_getValue('hideClubSideBar') == undefined) {
  11688. GM_setValue('hideClubSideBar', '1');
  11689. }
  11690.  
  11691. if (GM_getValue('hideDraftSideBar') == undefined) {
  11692. GM_setValue('hideDraftSideBar', '1');
  11693. }
  11694.  
  11695. if (GM_getValue('hideLaterSideBar') == undefined) {
  11696. GM_setValue('hideLaterSideBar', '1');
  11697. }
  11698.  
  11699. if (GM_getValue('hideProfileSidebar') == undefined) {
  11700. GM_setValue('hideProfileSidebar', '0');
  11701. }
  11702.  
  11703. if (GM_getValue('hideRecommendedReading') == undefined) {
  11704. GM_setValue('hideRecommendedReading', '1');
  11705. }
  11706.  
  11707. if (GM_getValue('publishTop') == undefined) {
  11708. GM_setValue('publishTop', '1');
  11709. }
  11710.  
  11711. if (GM_getValue('GIFAutoPlay') == undefined) {
  11712. GM_setValue('GIFAutoPlay', '0');
  11713. }
  11714.  
  11715. if (GM_getValue('hoverShadow') == undefined) {
  11716. GM_setValue('hoverShadow', '1');
  11717. }
  11718.  
  11719. if (GM_getValue('blockingPictureVideo') == undefined) {
  11720. GM_setValue('blockingPictureVideo', '0');
  11721. }
  11722.  
  11723. if (GM_getValue('flowTag') == undefined) {
  11724. GM_setValue('flowTag', '0');
  11725. }
  11726.  
  11727. if (GM_getValue('prefersColorScheme') == undefined) {
  11728. GM_setValue('prefersColorScheme', '0');
  11729. }
  11730.  
  11731. if (GM_getValue('hideFeedSource') == undefined) {
  11732. GM_setValue('hideFeedSource', '1');
  11733. }
  11734.  
  11735. //设置界面
  11736. settings();
  11737.  
  11738. //注册设置按钮
  11739. GM_registerMenuCommand("知乎 美化 设置", function() {
  11740. $('#settingLayerMask').show();
  11741. });
  11742.  
  11743. //添加自定义CSS
  11744. addCSS();
  11745.  
  11746. //全局功能函数
  11747. setInterval(directLink, 100);
  11748. setInterval(iconColor, 100);
  11749. setInterval(originalPic, 100);
  11750. setInterval(gifPlaying, 100);
  11751.  
  11752. //清空搜索框占位符
  11753. setInterval(function() {
  11754. $(".SearchBar-input input").attr("placeholder", "");
  11755. }, 100);
  11756.  
  11757. //折叠谢邀
  11758. let timer = setInterval(function() {
  11759. if ($(".QuestionInvitation-content").text().indexOf("更多推荐结果") > -1) {
  11760. clearInterval(timer);
  11761. $(".QuestionInvitation-content").addClass("hide");
  11762. $(".QuestionInvitation-content").hide();
  11763.  
  11764. $(".QuestionInvitation-title").html($(".QuestionInvitation-title").text() + '<span style=\"color:#8590A6;\">(点击此处展开/折叠)</span>');
  11765.  
  11766. $(".Topbar").click(function() {
  11767.  
  11768. if (($(".QuestionInvitation-content").hasClass("hide"))) {
  11769. $(".QuestionInvitation-content").removeClass("hide").addClass("show");
  11770. $(".QuestionInvitation-content").show();
  11771. } else {
  11772. $(".QuestionInvitation-content").removeClass("show").addClass("hide");
  11773. $(".QuestionInvitation-content").hide();
  11774. }
  11775. });
  11776. }
  11777. }, 100);
  11778.  
  11779. //每个页面对应的功能函数
  11780. if (window.location.href.indexOf("/topic/") > -1) //话题页
  11781. setInterval(topic, 300);
  11782. else if (window.location.href.indexOf("/question/") > -1) //回答页
  11783. setInterval(question, 300);
  11784. else if (window.location.href.indexOf("/zvideo/") > -1) //知乎视频页
  11785. setInterval(zvideo, 300);
  11786. else if (window.location.href.indexOf("/club/") > -1) //知乎圈子页
  11787. setInterval(club, 300);
  11788. else if (window.location.href.indexOf("/search") > -1) //搜索结果页
  11789. setInterval(search, 300);
  11790. else if (window.location.href.indexOf("/lives") > -1) //知乎讲座页
  11791. setInterval(lives, 300);
  11792. else if (window.location.href.indexOf("/collection/") > -1) //收藏夹
  11793. setInterval(collection, 300);
  11794. else if (window.location.href.indexOf("zhuanlan.") > -1) //专栏文章
  11795. setInterval(zhuanlan, 300);
  11796. else if (window.location.href.indexOf("/people/") > -1 || window.location.href.indexOf("/org/") > -1) //用户主页
  11797. setInterval(people, 300);
  11798. else if (window.location.href.indexOf("/draft") > -1) //草稿页
  11799. setInterval(draft, 300);
  11800. else if (window.location.href.indexOf("/roundtable/") > -1) //知乎圆桌页
  11801. setInterval(roundtable, 300);
  11802. else if (window.location.href.indexOf("/column/") > -1) //专栏列表
  11803. setInterval(column, 300);
  11804. else if (window.location.href.indexOf("cheese.") > -1) //芝士平台
  11805. setInterval(cheese, 300);
  11806. else if (window.location.href.indexOf("/xen/") > -1 || window.location.href.indexOf("/remix/") > -1) //盐选专栏、知乎讲书
  11807. setInterval(xen, 300);
  11808. else if (window.location.href.indexOf("/creator") > -1) //创作中心
  11809. setInterval(creator, 300);
  11810. else if (window.location.href.indexOf("/wza/public/") > -1) //无障碍说明
  11811. setInterval(wza, 300);
  11812. else
  11813. setInterval(index, 300); //首页
  11814.  
  11815. })();