bkui-vue 0.0.1-beta.1 → 0.0.1-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (348) hide show
  1. package/LICENSE.txt +22 -0
  2. package/README.md +55 -0
  3. package/dist/bkui-vue.cjs.js +9957 -257
  4. package/dist/bkui-vue.esm.js +9919 -257
  5. package/dist/bkui-vue.umd.js +9967 -267
  6. package/dist/style.css +4010 -428
  7. package/lib/alert/alert.css +75 -0
  8. package/lib/alert/alert.d.ts +53 -0
  9. package/lib/alert/alert.less +110 -0
  10. package/lib/alert/alert.variable.css +161 -0
  11. package/lib/alert/index.d.ts +144 -0
  12. package/lib/alert/index.js +1 -0
  13. package/lib/animate-number/animate-number.d.ts +22 -0
  14. package/lib/animate-number/index.d.ts +77 -0
  15. package/lib/animate-number/index.js +1 -0
  16. package/lib/backtop/backtop.css +42 -0
  17. package/lib/backtop/backtop.d.ts +46 -0
  18. package/lib/backtop/backtop.less +18 -0
  19. package/lib/backtop/backtop.variable.css +128 -0
  20. package/lib/backtop/index.d.ts +110 -0
  21. package/lib/backtop/index.js +1 -0
  22. package/lib/badge/badge.css +121 -0
  23. package/lib/badge/badge.d.ts +70 -0
  24. package/lib/badge/badge.less +137 -0
  25. package/lib/badge/badge.variable.css +207 -0
  26. package/lib/badge/index.d.ts +149 -0
  27. package/lib/badge/index.js +1 -0
  28. package/lib/breadcrumb/breadcrumb-item.d.ts +32 -0
  29. package/lib/breadcrumb/breadcrumb.css +59 -0
  30. package/lib/breadcrumb/breadcrumb.d.ts +26 -0
  31. package/lib/breadcrumb/breadcrumb.less +54 -0
  32. package/lib/breadcrumb/breadcrumb.variable.css +145 -0
  33. package/lib/breadcrumb/index.d.ts +122 -0
  34. package/lib/breadcrumb/index.js +1 -0
  35. package/lib/breadcrumb/props.d.ts +4 -0
  36. package/lib/button/button-group.d.ts +8 -0
  37. package/lib/button/button.css +242 -22
  38. package/lib/button/button.d.ts +114 -0
  39. package/lib/button/button.less +180 -36
  40. package/lib/button/button.variable.css +339 -0
  41. package/lib/button/index.d.ts +170 -0
  42. package/lib/button/index.js +1 -206
  43. package/lib/card/card.css +63 -0
  44. package/lib/card/card.d.ts +54 -0
  45. package/lib/card/card.less +44 -0
  46. package/lib/card/card.variable.css +149 -0
  47. package/lib/card/index.d.ts +127 -0
  48. package/lib/card/index.js +1 -0
  49. package/lib/checkbox/checkbox-group.d.ts +44 -0
  50. package/lib/checkbox/checkbox.css +54 -125
  51. package/lib/checkbox/checkbox.d.ts +105 -0
  52. package/lib/checkbox/checkbox.less +66 -6
  53. package/lib/checkbox/checkbox.variable.css +150 -0
  54. package/lib/checkbox/common.d.ts +13 -0
  55. package/lib/checkbox/index.d.ts +221 -0
  56. package/lib/checkbox/index.js +1 -64
  57. package/lib/checkbox/type.d.ts +19 -0
  58. package/lib/collapse/collapse.css +30 -0
  59. package/lib/collapse/collapse.d.ts +74 -0
  60. package/lib/collapse/collapse.less +37 -0
  61. package/lib/collapse/collapse.variable.css +30 -0
  62. package/lib/collapse/index.d.ts +130 -0
  63. package/lib/collapse/index.js +1 -0
  64. package/lib/components.d.ts +31 -0
  65. package/lib/date-picker/date-picker.css +407 -0
  66. package/lib/date-picker/date-picker.d.ts +357 -0
  67. package/lib/date-picker/date-picker.less +526 -0
  68. package/lib/date-picker/date-picker.variable.css +493 -0
  69. package/lib/date-picker/fecha.d.ts +6 -0
  70. package/lib/date-picker/index.d.ts +525 -0
  71. package/lib/date-picker/index.js +1 -0
  72. package/lib/date-picker/interface.d.ts +22 -0
  73. package/lib/date-picker/utils.d.ts +97 -0
  74. package/lib/dialog/dialog.css +68 -0
  75. package/lib/dialog/dialog.d.ts +83 -0
  76. package/lib/dialog/dialog.less +80 -0
  77. package/lib/dialog/dialog.variable.css +68 -0
  78. package/lib/dialog/index.d.ts +183 -0
  79. package/lib/dialog/index.js +1 -0
  80. package/lib/directives/clickoutside.d.ts +23 -0
  81. package/lib/directives/index.d.ts +3 -0
  82. package/lib/directives/index.js +15 -0
  83. package/lib/directives/mousewheel.d.ts +3 -0
  84. package/lib/directives/tooltips.d.ts +17 -0
  85. package/lib/divider/divider.css +38 -0
  86. package/lib/divider/divider.d.ts +40 -0
  87. package/lib/divider/divider.less +53 -0
  88. package/lib/divider/divider.variable.css +124 -0
  89. package/lib/divider/index.d.ts +110 -0
  90. package/lib/divider/index.js +1 -0
  91. package/lib/dropdown/dropdown-item.d.ts +18 -0
  92. package/lib/dropdown/dropdown-menu.d.ts +15 -0
  93. package/lib/dropdown/dropdown.css +43 -0
  94. package/lib/dropdown/dropdown.d.ts +49 -0
  95. package/lib/dropdown/dropdown.less +54 -0
  96. package/lib/dropdown/dropdown.variable.css +129 -0
  97. package/lib/dropdown/index.d.ts +160 -0
  98. package/lib/dropdown/index.js +1 -0
  99. package/lib/exception/exception.css +32 -0
  100. package/lib/exception/exception.d.ts +24 -0
  101. package/lib/exception/exception.less +39 -0
  102. package/lib/exception/exception.variable.css +118 -0
  103. package/lib/exception/index.d.ts +88 -0
  104. package/lib/exception/index.js +1 -0
  105. package/lib/fixed-navbar/fixed-navbar.css +42 -0
  106. package/lib/fixed-navbar/fixed-navbar.d.ts +28 -0
  107. package/lib/fixed-navbar/fixed-navbar.less +53 -0
  108. package/lib/fixed-navbar/fixed-navbar.variable.css +128 -0
  109. package/lib/fixed-navbar/index.d.ts +88 -0
  110. package/lib/fixed-navbar/index.js +1 -0
  111. package/lib/form/common.d.ts +3 -0
  112. package/lib/form/form-item.d.ts +140 -0
  113. package/lib/form/form.css +39 -0
  114. package/lib/form/form.d.ts +76 -0
  115. package/lib/form/form.less +50 -0
  116. package/lib/form/form.variable.css +39 -0
  117. package/lib/form/index.d.ts +4 -0
  118. package/lib/form/index.js +1 -0
  119. package/lib/form/type.d.ts +21 -0
  120. package/lib/form/validator.d.ts +8 -0
  121. package/lib/icon/angle-double-left.d.ts +4 -0
  122. package/lib/icon/angle-double-right.d.ts +4 -0
  123. package/lib/icon/angle-down-line.d.ts +4 -0
  124. package/lib/icon/angle-down.d.ts +4 -0
  125. package/lib/icon/angle-left.d.ts +4 -0
  126. package/lib/icon/angle-right.d.ts +4 -0
  127. package/lib/icon/angle-up.d.ts +4 -0
  128. package/lib/icon/circle.d.ts +4 -0
  129. package/lib/icon/close.d.ts +4 -0
  130. package/lib/icon/code.d.ts +4 -0
  131. package/lib/icon/cog-shape.d.ts +4 -0
  132. package/lib/icon/collapse-left.d.ts +4 -0
  133. package/lib/icon/copy.d.ts +4 -0
  134. package/lib/icon/done.d.ts +4 -0
  135. package/lib/icon/down-shape.d.ts +4 -0
  136. package/lib/icon/down-small.d.ts +4 -0
  137. package/lib/icon/error.d.ts +4 -0
  138. package/lib/icon/eye.d.ts +4 -0
  139. package/lib/icon/folder-open.d.ts +4 -0
  140. package/lib/icon/folder-shape-open.d.ts +4 -0
  141. package/lib/icon/folder-shape.d.ts +4 -0
  142. package/lib/icon/folder.d.ts +4 -0
  143. package/lib/icon/help-document-fill.d.ts +4 -0
  144. package/lib/icon/help-fill.d.ts +4 -0
  145. package/lib/icon/help.d.ts +4 -0
  146. package/lib/icon/icon.d.ts +12 -0
  147. package/lib/icon/index.d.ts +38 -0
  148. package/lib/icon/index.js +15 -0
  149. package/lib/icon/info-line.d.ts +4 -0
  150. package/lib/icon/info.d.ts +4 -0
  151. package/lib/icon/play-shape.d.ts +4 -0
  152. package/lib/icon/plus.d.ts +4 -0
  153. package/lib/icon/right-shape.d.ts +4 -0
  154. package/lib/icon/search.d.ts +4 -0
  155. package/lib/icon/share.d.ts +4 -0
  156. package/lib/icon/success.d.ts +4 -0
  157. package/lib/icon/switcher-loading.d.ts +4 -0
  158. package/lib/icon/text-file.d.ts +4 -0
  159. package/lib/icon/tree-application-shape.d.ts +4 -0
  160. package/lib/icon/unvisible.d.ts +4 -0
  161. package/lib/icon/warn.d.ts +4 -0
  162. package/lib/index.d.ts +3 -0
  163. package/lib/input/index.d.ts +275 -0
  164. package/lib/input/index.js +15 -60
  165. package/lib/input/input.css +114 -148
  166. package/lib/input/input.d.ts +185 -0
  167. package/lib/input/input.less +107 -40
  168. package/lib/input/input.variable.css +218 -0
  169. package/lib/link/index.d.ts +116 -0
  170. package/lib/link/index.js +1 -0
  171. package/lib/link/link.css +55 -0
  172. package/lib/link/link.d.ts +46 -0
  173. package/lib/link/link.less +74 -0
  174. package/lib/link/link.variable.css +141 -0
  175. package/lib/loading/index.d.ts +125 -0
  176. package/lib/loading/index.js +1 -0
  177. package/lib/loading/loading.css +225 -0
  178. package/lib/loading/loading.d.ts +64 -0
  179. package/lib/loading/loading.less +181 -0
  180. package/lib/loading/loading.variable.css +311 -0
  181. package/lib/menu/index.d.ts +169 -0
  182. package/lib/menu/index.js +1 -0
  183. package/lib/menu/menu-group.d.ts +13 -0
  184. package/lib/menu/menu-item.d.ts +15 -0
  185. package/lib/menu/menu.css +182 -0
  186. package/lib/menu/menu.d.ts +60 -0
  187. package/lib/menu/menu.less +180 -0
  188. package/lib/menu/menu.variable.css +268 -0
  189. package/lib/menu/submenu.d.ts +21 -0
  190. package/lib/menu/submenu.less +5 -0
  191. package/lib/menu/submenu.variable.css +86 -0
  192. package/lib/menu/utils.d.ts +41 -0
  193. package/lib/message/index.d.ts +2 -0
  194. package/lib/message/index.js +1 -0
  195. package/lib/message/message.css +53 -0
  196. package/lib/message/message.less +61 -0
  197. package/lib/message/message.variable.css +139 -0
  198. package/lib/message/messageConstructor.d.ts +61 -0
  199. package/lib/modal/index.d.ts +155 -0
  200. package/lib/modal/index.js +1 -0
  201. package/lib/modal/modal.css +11 -0
  202. package/lib/modal/modal.d.ts +47 -0
  203. package/lib/modal/modal.less +12 -0
  204. package/lib/modal/modal.variable.css +11 -0
  205. package/lib/modal/props.mixin.d.ts +22 -0
  206. package/lib/navigation/index.d.ts +2 -0
  207. package/lib/navigation/index.js +1 -0
  208. package/lib/navigation/navigation-title.d.ts +22 -0
  209. package/lib/navigation/navigation.css +184 -0
  210. package/lib/navigation/navigation.d.ts +94 -0
  211. package/lib/navigation/navigation.less +210 -0
  212. package/lib/navigation/navigation.variable.css +270 -0
  213. package/lib/notify/index.d.ts +2 -0
  214. package/lib/notify/index.js +1 -0
  215. package/lib/notify/notify.css +49 -0
  216. package/lib/notify/notify.less +58 -0
  217. package/lib/notify/notify.variable.css +135 -0
  218. package/lib/notify/notifyConstructor.d.ts +75 -0
  219. package/lib/popover/index.d.ts +202 -0
  220. package/lib/popover/index.js +1 -0
  221. package/lib/popover/popover.css +55 -0
  222. package/lib/popover/popover.d.ts +88 -0
  223. package/lib/popover/popover.less +70 -0
  224. package/lib/popover/popover.variable.css +141 -0
  225. package/lib/preset.d.ts +8 -0
  226. package/lib/progress/circle.d.ts +6 -0
  227. package/lib/progress/index.d.ts +228 -0
  228. package/lib/progress/index.js +1 -0
  229. package/lib/progress/line.d.ts +6 -0
  230. package/lib/progress/progress.css +97 -0
  231. package/lib/progress/progress.d.ts +118 -0
  232. package/lib/progress/progress.less +94 -0
  233. package/lib/progress/progress.variable.css +183 -0
  234. package/lib/radio/common.d.ts +13 -0
  235. package/lib/radio/index.d.ts +228 -0
  236. package/lib/radio/index.js +1 -61
  237. package/lib/radio/radio-button.d.ts +83 -0
  238. package/lib/radio/radio-group.d.ts +40 -0
  239. package/lib/radio/radio.css +128 -125
  240. package/lib/radio/radio.d.ts +77 -0
  241. package/lib/radio/radio.less +173 -20
  242. package/lib/radio/radio.variable.css +224 -0
  243. package/lib/radio/type.d.ts +9 -0
  244. package/lib/rate/index.d.ts +101 -0
  245. package/lib/rate/index.js +1 -0
  246. package/lib/rate/rate.css +10 -0
  247. package/lib/rate/rate.d.ts +29 -0
  248. package/lib/rate/rate.less +11 -0
  249. package/lib/rate/rate.variable.css +10 -0
  250. package/lib/rate/star.css +24 -0
  251. package/lib/rate/star.d.ts +57 -0
  252. package/lib/rate/star.less +29 -0
  253. package/lib/rate/star.variable.css +24 -0
  254. package/lib/select/common.d.ts +28 -0
  255. package/lib/select/index.d.ts +950 -0
  256. package/lib/select/index.js +15 -0
  257. package/lib/select/option.d.ts +32 -0
  258. package/lib/select/optionGroup.d.ts +115 -0
  259. package/lib/select/select.css +157 -0
  260. package/lib/select/select.d.ts +285 -0
  261. package/lib/select/select.less +203 -0
  262. package/lib/select/select.variable.css +243 -0
  263. package/lib/shared/bk-helper-core.d.ts +87 -0
  264. package/lib/shared/bk-mask-manager.d.ts +47 -0
  265. package/lib/shared/bk-pop-manager.d.ts +19 -0
  266. package/lib/shared/bk-popover.d.ts +86 -0
  267. package/lib/shared/index.d.ts +51 -0
  268. package/lib/shared/index.js +1 -13
  269. package/lib/shared/scrollbar-width.d.ts +1 -0
  270. package/lib/shared/vue-types.d.ts +115 -0
  271. package/lib/shared/z-index-manager.d.ts +93 -0
  272. package/lib/sideslider/index.d.ts +139 -0
  273. package/lib/sideslider/index.js +1 -0
  274. package/lib/sideslider/sideslider.css +69 -0
  275. package/lib/sideslider/sideslider.d.ts +54 -0
  276. package/lib/sideslider/sideslider.less +86 -0
  277. package/lib/sideslider/sideslider.variable.css +155 -0
  278. package/lib/slider/index.d.ts +27 -0
  279. package/lib/slider/index.js +15 -0
  280. package/lib/slider/slider-button.d.ts +72 -0
  281. package/lib/slider/slider.css +149 -0
  282. package/lib/slider/slider.d.ts +159 -0
  283. package/lib/slider/slider.less +179 -0
  284. package/lib/slider/slider.variable.css +235 -0
  285. package/lib/steps/index.d.ts +198 -0
  286. package/lib/steps/index.js +15 -0
  287. package/lib/steps/steps.css +285 -0
  288. package/lib/steps/steps.d.ts +148 -0
  289. package/lib/steps/steps.less +320 -0
  290. package/lib/steps/steps.variable.css +371 -0
  291. package/lib/styles/index.d.ts +38 -0
  292. package/lib/styles/index.js +1 -0
  293. package/lib/styles/mixins/animate.css +21 -0
  294. package/lib/styles/mixins/animate.less +27 -0
  295. package/lib/styles/mixins/animate.variable.css +21 -0
  296. package/lib/styles/mixins/ellipsis.less +8 -0
  297. package/lib/styles/mixins/mixins.css +21 -0
  298. package/lib/styles/mixins/mixins.less +2 -0
  299. package/lib/styles/mixins/mixins.variable.css +21 -0
  300. package/lib/styles/mixins/popper.css +43 -0
  301. package/lib/styles/mixins/popper.less +52 -0
  302. package/lib/styles/mixins/popper.variable.css +43 -0
  303. package/lib/styles/mixins/size.less +10 -1
  304. package/lib/styles/reset.css +273 -0
  305. package/lib/styles/reset.less +313 -0
  306. package/lib/styles/reset.variable.css +273 -0
  307. package/lib/styles/themes/themes.less +84 -284
  308. package/lib/switcher/index.d.ts +222 -0
  309. package/lib/switcher/index.js +1 -0
  310. package/lib/switcher/switcher.css +258 -0
  311. package/lib/switcher/switcher.d.ts +97 -0
  312. package/lib/switcher/switcher.less +302 -0
  313. package/lib/switcher/switcher.variable.css +344 -0
  314. package/lib/tab/index.d.ts +416 -0
  315. package/lib/tab/index.js +1 -0
  316. package/lib/tab/tab-nav.d.ts +154 -0
  317. package/lib/tab/tab-panel.d.ts +46 -0
  318. package/lib/tab/tab.css +147 -0
  319. package/lib/tab/tab.d.ts +131 -0
  320. package/lib/tab/tab.less +221 -0
  321. package/lib/tab/tab.variable.css +233 -0
  322. package/lib/table/index.d.ts +119 -0
  323. package/lib/table/index.js +1 -0
  324. package/lib/table/props.d.ts +41 -0
  325. package/lib/table/render.d.ts +47 -0
  326. package/lib/table/table.css +44 -0
  327. package/lib/table/table.d.ts +26 -0
  328. package/lib/table/table.less +67 -0
  329. package/lib/table/table.variable.css +130 -0
  330. package/lib/table/utils.d.ts +22 -0
  331. package/lib/tag/index.d.ts +338 -0
  332. package/lib/tag/index.js +1 -0
  333. package/lib/tag/tag.d.ts +54 -0
  334. package/lib/tag/tag.less +5 -0
  335. package/lib/tag/tag.variable.css +86 -0
  336. package/lib/tree/index.d.ts +149 -0
  337. package/lib/tree/index.js +1 -0
  338. package/lib/tree/tree.css +35 -0
  339. package/lib/tree/tree.d.ts +58 -0
  340. package/lib/tree/tree.less +55 -0
  341. package/lib/tree/tree.variable.css +35 -0
  342. package/lib/tree/util.d.ts +89 -0
  343. package/lib/use-message.d.ts +2 -0
  344. package/package.json +92 -40
  345. package/lib/styles/mixins/size.css +0 -0
  346. package/lib/styles/themes/themes.css +0 -119
  347. package/lib/styles/themes/variables.css +0 -27
  348. package/lib/styles/themes/variables.less +0 -36
@@ -0,0 +1,39 @@
1
+ @import '../styles/themes/themes.less';
2
+
3
+ .bk-exception-wrapper {
4
+ position: relative;
5
+ display: flex;
6
+ width: 100%;
7
+ align-items: center;
8
+ flex-direction: column;
9
+
10
+ .bk-exception-img {
11
+ display: flex;
12
+ width: 480px;
13
+ height: 240px;
14
+ align-items: center;
15
+ justify-content: center;
16
+
17
+ &.part-img {
18
+ width: 120px;
19
+ height: 100px;
20
+ }
21
+
22
+ .exception-image {
23
+ display: block;
24
+ height: 100%;
25
+ vertical-align: middle;
26
+ object-fit: contain;
27
+ }
28
+ }
29
+
30
+ .bk-exception-text {
31
+ font-size: 24px;
32
+ color: #63656e;
33
+ text-align: center;
34
+
35
+ &.part-text {
36
+ font-size: 14px;
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,118 @@
1
+ :root {
2
+ --bk-prefix: bk;
3
+ --primary-color: #3a84ff;
4
+ --success-color: #2dcb56;
5
+ --warning-color: #ff9c01;
6
+ --danger-color: #ea3636;
7
+ --default-color: #63656e;
8
+ --gray-color: #979ba5;
9
+ --light-gray: #c4c6cc;
10
+ --white-color: white;
11
+ --disable-color: #dcdee5;
12
+ --font-size-base: 12px;
13
+ --font-size-medium: 14px;
14
+ --font-size-large: 16px;
15
+ --line-height-base: 16px;
16
+ --line-height-medium: 16px;
17
+ --line-height-large: 18px;
18
+ --component-size-small: 26px;
19
+ --component-size-base: 32px;
20
+ --component-size-large: 38px;
21
+ --border-width-base: 1px;
22
+ --border-style-base: solid;
23
+ --border-radius-base: 2px;
24
+ --input-disabled-bg: #fafbfd;
25
+ --input-disabled-border: var(--disable-color);
26
+ --input-height-base: var(--component-size-base);
27
+ --input-color: var(--default-color);
28
+ --input-bg: white;
29
+ --input-border-color: var(--light-gray);
30
+ --input-broder-radius: 3px;
31
+ --input-shadow-color: #a3c5fd;
32
+ --input-horizontal-padding: 10px;
33
+ --input-block-color: #f4f6fa;
34
+ --input-icon-size: var(--font-size-large);
35
+ --input-maxlength-color: #979ba5;
36
+ --button-primary-hover-color: #5594fa;
37
+ --button-danger-hover-color: #ff5656;
38
+ --button-success-hover-color: #45e35f;
39
+ --button-warning-hover-color: #ffb848;
40
+ --button-default-hover-border-color: #979ba5;
41
+ --button-primary-active-color: #2c77f4;
42
+ --button-danger-active-color: #db2626;
43
+ --button-success-active-color: #1ab943;
44
+ --button-warning-active-color: #eb9000;
45
+ --fixed-navbar-background: #fff;
46
+ --fixed-navbar-boxshadow-color: rgba(0, 0, 0, 0.1);
47
+ --switch-default-color: #fff;
48
+ --switch-grey-color: #c4c6cc;
49
+ --breadcrumb-black-color: #979ba5;
50
+ --breadcrumb-primary-hover-color: #0082ff;
51
+ --breadcrumb-fn-main-color: #63656e;
52
+ --link-default-hover-color: #979ba5;
53
+ --link-primary-hover-color: #699df4;
54
+ --link-success-hover-color: #45e35f;
55
+ --link-warning-hover-color: #ffb848;
56
+ --link-danger-hover-color: #ff5656;
57
+ --link-default-disabled-color: #dcdee5;
58
+ --link-primary-disabled-color: #a3c5fd;
59
+ --link-success-disabled-color: #94f5a4;
60
+ --link-warning-disabled-color: #ffd695;
61
+ --link-danger-disabled-color: #fd9c9c;
62
+ --message-color: var(--default-color);
63
+ --message-primary-bg-color: #f0f8ff;
64
+ --message-primary-border-color: #e1ecff;
65
+ --message-warning-bg-color: #fff4e2;
66
+ --message-warning-border-color: #ffe8c3;
67
+ --message-success-bg-color: #f2fff4;
68
+ --message-success-border-color: #dcffe2;
69
+ --message-danger-bg-color: #ffeded;
70
+ --message-danger-border-color: #ffdddd;
71
+ --slider-default-bg: #dcdee5;
72
+ --slider-disable-bar-bg: #979ba5;
73
+ --menu-bg-color: #182132;
74
+ --submenu-bg-color: #151d2c;
75
+ --menu-active-bg-color: linear-gradient(90deg, #3f87ff 0%, #3a84ff 100%);
76
+ --menu-color: #96a2b9;
77
+ --menu-group-color: var(--default-color);
78
+ --menu-width: 260px;
79
+ --menu-collapse-width: 60px;
80
+ --menu-active-color: white;
81
+ --nav-header-bg-color: #182132;
82
+ --nav-bg-color: #182132;
83
+ --date-picker-disabled-bg: #fafbfd;
84
+ --date-picker-dropdown-mb: 4px;
85
+ --date-picker-dropdown-bg: #fff;
86
+ }
87
+ .bk-exception-wrapper {
88
+ position: relative;
89
+ display: flex;
90
+ width: 100%;
91
+ align-items: center;
92
+ flex-direction: column;
93
+ }
94
+ .bk-exception-wrapper .bk-exception-img {
95
+ display: flex;
96
+ width: 480px;
97
+ height: 240px;
98
+ align-items: center;
99
+ justify-content: center;
100
+ }
101
+ .bk-exception-wrapper .bk-exception-img.part-img {
102
+ width: 120px;
103
+ height: 100px;
104
+ }
105
+ .bk-exception-wrapper .bk-exception-img .exception-image {
106
+ display: block;
107
+ height: 100%;
108
+ vertical-align: middle;
109
+ object-fit: contain;
110
+ }
111
+ .bk-exception-wrapper .bk-exception-text {
112
+ font-size: 24px;
113
+ color: #63656e;
114
+ text-align: center;
115
+ }
116
+ .bk-exception-wrapper .bk-exception-text.part-text {
117
+ font-size: 14px;
118
+ }
@@ -0,0 +1,88 @@
1
+ declare const BkException: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{
6
+ extCls: string;
7
+ type: string;
8
+ scene: string;
9
+ }> & Omit<Readonly<{
10
+ type?: unknown;
11
+ scene?: unknown;
12
+ extCls?: unknown;
13
+ } & {
14
+ extCls: string;
15
+ type: string;
16
+ scene: string;
17
+ } & {}> & {} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "extCls" | "type" | "scene">;
18
+ $attrs: {
19
+ [x: string]: unknown;
20
+ };
21
+ $refs: {
22
+ [x: string]: unknown;
23
+ };
24
+ $slots: Readonly<{
25
+ [name: string]: import("vue").Slot;
26
+ }>;
27
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
28
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
29
+ $emit: (event: string, ...args: any[]) => void;
30
+ $el: any;
31
+ $options: import("vue").ComponentOptionsBase<Readonly<{
32
+ type?: unknown;
33
+ scene?: unknown;
34
+ extCls?: unknown;
35
+ } & {
36
+ extCls: string;
37
+ type: string;
38
+ scene: string;
39
+ } & {}> & {}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
40
+ extCls: string;
41
+ type: string;
42
+ scene: string;
43
+ }> & {
44
+ beforeCreate?: (() => void) | (() => void)[];
45
+ created?: (() => void) | (() => void)[];
46
+ beforeMount?: (() => void) | (() => void)[];
47
+ mounted?: (() => void) | (() => void)[];
48
+ beforeUpdate?: (() => void) | (() => void)[];
49
+ updated?: (() => void) | (() => void)[];
50
+ activated?: (() => void) | (() => void)[];
51
+ deactivated?: (() => void) | (() => void)[];
52
+ beforeDestroy?: (() => void) | (() => void)[];
53
+ beforeUnmount?: (() => void) | (() => void)[];
54
+ destroyed?: (() => void) | (() => void)[];
55
+ unmounted?: (() => void) | (() => void)[];
56
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
57
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
58
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
59
+ };
60
+ $forceUpdate: () => void;
61
+ $nextTick: typeof import("vue").nextTick;
62
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
63
+ } & Readonly<{
64
+ type?: unknown;
65
+ scene?: unknown;
66
+ extCls?: unknown;
67
+ } & {
68
+ extCls: string;
69
+ type: string;
70
+ scene: string;
71
+ } & {}> & {} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & {} & import("vue").ComponentCustomProperties;
72
+ __isFragment?: never;
73
+ __isTeleport?: never;
74
+ __isSuspense?: never;
75
+ } & import("vue").ComponentOptionsBase<Readonly<{
76
+ type?: unknown;
77
+ scene?: unknown;
78
+ extCls?: unknown;
79
+ } & {
80
+ extCls: string;
81
+ type: string;
82
+ scene: string;
83
+ } & {}> & {}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
84
+ extCls: string;
85
+ type: string;
86
+ scene: string;
87
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
88
+ export default BkException;
@@ -0,0 +1 @@
1
+ !function(t,s){"object"==typeof exports&&"undefined"!=typeof module?s(exports,require("vue"),require("../shared")):"function"==typeof define&&define.amd?define(["exports","vue","../shared"],s):s((t="undefined"!=typeof globalThis?globalThis:t||self).bkuiVue={},t.Vue,t.Shared)}(this,(function(t,s,n){"use strict";var e=s.defineComponent({name:"BkException",props:{type:n.PropTypes.commonType(["404","403","500","building","empty","search-empty","login"],"type").def("404"),scene:n.PropTypes.commonType(["page","part"],"scene").def("page"),extCls:n.PropTypes.string},setup:function(t,n){var e=n.slots,l={403:"无业务权限",404:"页面不存在",500:"服务维护中",building:"功能建设中",empty:"没有数据","search-empty":"搜索为空",login:"请登入蓝鲸"},r={403:'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:none;}\n\t.st1{fill:#C4C6CC;}\n\t.st2{fill:url(#Fill-1_1_);}\n\t.st3{fill:url(#矩形_4_);}\n\t.st4{fill:#979BA5;}\n\t.st5{fill:url(#SVGID_1_);}\n\t.st6{fill:#F8F9FA;}\n\t.st7{fill:url(#形状结合_1_);}\n\t.st8{fill:url(#形状结合_6_);}\n\t.st9{fill:#DCDEE0;}\n</style>\n<g id="页面-1">\n\t<g id="Exception_x2F_异常提示" transform="translate(-870.000000, -2381.000000)">\n\t\t<g id="无权限类" transform="translate(357.000000, 2287.000000)">\n\t\t\t<g id="编组-12" transform="translate(0.000000, 73.000000)">\n\t\t\t\t<g id="无权限类-插图" transform="translate(513.000000, 21.000000)">\n\t\t\t\t\t<g id="没有权限" transform="translate(128.000000, 42.000000)">\n\t\t\t\t\t\t<rect id="矩形_1_" class="st0" width="224" height="183"/>\n\t\t\t\t\t\t<circle id="椭圆形" class="st1" cx="132" cy="11" r="1"/>\n\t\t\t\t\t\t<circle id="椭圆形_1_" class="st1" cx="173" cy="94" r="2"/>\n\t\t\t\t\t\t<circle id="椭圆形_2_" class="st1" cx="59" cy="66" r="2"/>\n\t\t\t\t\t\t<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="116.3587" y1="129.4075" x2="119.3314" y2="157.6906">\n\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#FBFCFD"/>\n\t\t\t\t\t\t\t<stop offset="0.9988" style="stop-color:#F2F4F7"/>\n\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t<path id="Fill-1" class="st2" d="M60.5,136.1c16.2-3.5,40.6-4.7,56.5-3.9c15.8,0.8,33.1,3.1,33.1,3.1s4.5-1.9,4.1-1.2\n\t\t\t\t\t\t\tc-0.3,0.8-2.4,1.9-1,2.3c1.4,0.4,15.5,1.9,21.4,3.1s8.6,2.3,8.6,2.3s3.8-6.6,12.3-5.8c0,0.6-3.1,1.4-4.2,3.1S188,142,188,142\n\t\t\t\t\t\t\ts1.8-1,4.9,0.5s6.1,2,6.1,2.2s-1.4,3.5-12.7,1.2c-4.6-1.2-6.9,5.1-29.3,6.6s-60.3,2.7-60.3,2.7s1.7,2.3,5.2,3.1\n\t\t\t\t\t\t\tc0,0-2.4,2.3-7.2,1.6c-4.8-0.8-10-4.7-10-4.7s-12.7-0.8-17.6-1.6s-10.3-2.7-14.1-3.1c-3.8-0.4-21-2.3-14.5-6.6\n\t\t\t\t\t\t\tC38.5,143.9,44.3,139.6,60.5,136.1z"/>\n\n\t\t\t\t\t\t\t<linearGradient id="矩形_4_" gradientUnits="userSpaceOnUse" x1="156.1667" y1="-2.5143" x2="156.1667" y2="-1.5143" gradientTransform="matrix(96 0 0 70 -14879 252)">\n\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#F2F3F5"/>\n\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E5E8EB"/>\n\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t<path id="矩形_2_" class="st3" d="M70,76h86c2.8,0,5,2.2,5,5v60c0,2.8-2.2,5-5,5H70c-2.8,0-5-2.2-5-5V81\n\t\t\t\t\t\t\tC65,78.2,67.2,76,70,76z"/>\n\t\t\t\t\t\t<path id="形状结合" class="st1" d="M59.3,138v11.7H71v2.3H59.3l0,0H57v-14H59.3z"/>\n\t\t\t\t\t\t<path id="形状结合备份-4" class="st1" d="M166.7,138v11.7H155v2.3h11.7l0,0h2.3v-14H166.7z"/>\n\t\t\t\t\t\t<g>\n\t\t\t\t\t\t\t<path id="形状结合_5_" class="st4" d="M116.5,116.8l1.6,7.9c0.2,0.8-0.4,1.6-1.2,1.8c-0.1,0-0.2,0-0.3,0h-7.2\n\t\t\t\t\t\t\t\tc-0.8,0-1.5-0.7-1.5-1.5c0-0.1,0-0.2,0-0.3l1.6-7.9c-3-1.3-5-4.1-5-7.3c0-4.4,3.8-8,8.5-8s8.5,3.6,8.5,8\n\t\t\t\t\t\t\t\tC121.5,112.7,119.5,115.5,116.5,116.8z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="136.0294" y1="-6.8011" x2="136.0294" y2="-6.2789" gradientTransform="matrix(17 0 0 25 -2199.5 277.5)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#EEF0F2"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path class="st5" d="M117,127.5h-7.6c-1.4,0-2.5-1.1-2.5-2.5l0-0.5l1.4-7.1c-3-1.6-4.9-4.6-4.9-7.9c0-5,4.3-9,9.5-9\n\t\t\t\t\t\t\t\ts9.5,4,9.5,9c0,3.3-1.9,6.3-4.9,7.9l1.4,7.1c0.3,1.2-0.6,2.6-1.9,3L117,127.5z M108.9,124.8v0.2c0,0.2,0.3,0.5,0.5,0.5h7.3\n\t\t\t\t\t\t\t\tc0.2-0.1,0.4-0.4,0.4-0.6l-1.8-8.7l0.7-0.3c2.7-1.2,4.4-3.6,4.4-6.4c0-3.9-3.4-7-7.5-7s-7.5,3.1-7.5,7c0,2.8,1.7,5.2,4.4,6.4\n\t\t\t\t\t\t\t\tl0.7,0.3L108.9,124.8z"/>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<path id="矩形_3_" class="st6" d="M70,76h86c2.8,0,5,2.2,5,5l0,0c0,2.8-2.2,5-5,5H70c-2.8,0-5-2.2-5-5l0,0\n\t\t\t\t\t\t\tC65,78.2,67.2,76,70,76z"/>\n\n\t\t\t\t\t\t\t<linearGradient id="形状结合_1_" gradientUnits="userSpaceOnUse" x1="155.0263" y1="-2.6667" x2="155.0263" y2="-1.6727" gradientTransform="matrix(76 0 0 66 -11669 192)">\n\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#F3F4F5"/>\n\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E6E8EB"/>\n\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t<path id="形状结合_2_" class="st7" d="M141.5,54.6c0-16-12.8-29-28.5-29s-28.5,13-28.5,29l0,0v25.8c0,0.9-2.1,1.6-4.8,1.6\n\t\t\t\t\t\t\tc-2.5,0-4.6-0.7-4.7-1.5v-0.1V54.6C75,33.3,92,16,113,16s38,17.3,38,38.6l0,0v25.8c0,0.9-2.1,1.6-4.8,1.6s-4.8-0.7-4.8-1.6\n\t\t\t\t\t\t\tl0,0V54.6H141.5z"/>\n\n\t\t\t\t\t\t\t<linearGradient id="形状结合_6_" gradientUnits="userSpaceOnUse" x1="153.7903" y1="-3.2385" x2="153.7903" y2="-2.2592" gradientTransform="matrix(62 0 0 54 -9422 201)">\n\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E7E9EB"/>\n\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E7E9EB"/>\n\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t<path id="形状结合_3_" class="st8" d="M82,54.5C82.3,38.2,96,25,113,25c17.1,0,31,13.4,31,30h-3.1c0-14.9-12.5-27-27.9-27\n\t\t\t\t\t\t\tS85.1,40.1,85.1,55v24H82V55V54.5z M144,55v24h-3.1V55H144z"/>\n\t\t\t\t\t\t<path id="形状结合_4_" class="st9" d="M80,78c2.7,0,4.9-0.8,5-1.9V76v4c0,1.1-2.2,2-5,2c-2.7,0-4.9-0.8-5-1.9V80v-4\n\t\t\t\t\t\t\tC75,77.1,77.2,78,80,78z"/>\n\t\t\t\t\t\t<path id="形状结合备份-3" class="st9" d="M146,78c2.7,0,4.9-0.8,5-1.9V76v4c0,1.1-2.2,2-5,2c-2.7,0-4.9-0.8-5-1.9V80v-4\n\t\t\t\t\t\t\tC141,77.1,143.2,78,146,78z"/>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t</g>\n\t\t</g>\n\t</g>\n</g>\n</svg>',404:'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:url(#Fill-1_1_);}\n\t.st1{fill:url(#矩形_9_);}\n\t.st2{fill:url(#矩形_10_);}\n\t.st3{fill:#F0F2F5;stroke:url(#矩形_11_);}\n\t.st4{fill:#979BA5;stroke:url(#矩形_12_);}\n\t.st5{fill:#979BA5;stroke:url(#矩形备份-9_1_);}\n\t.st6{fill:#979BA5;stroke:url(#形状结合_6_);}\n\t.st7{fill:url(#形状结合_8_);}\n\t.st8{fill:url(#形状结合备份-3_1_);}\n\t.st9{fill:url(#形状结合_9_);}\n\t.st10{fill:#E1E3E6;}\n\t.st11{fill:#F0F2F5;}\n\t.st12{fill:#F4F4F4;}\n\t.st13{fill:url(#路径-5_1_);}\n\t.st14{fill:url(#形状结合_10_);}\n\t.st15{fill:url(#形状结合备份-4_1_);}\n\t.st16{fill:#C7C9CC;}\n\t.st17{fill:#E5E7E9;}\n\t.st18{fill:#ECEEF0;}\n\t.st19{fill:#C4C6CC;}\n\t.st20{fill:#EDEEF3;}\n\t.st21{fill:#343434;fill-opacity:3.000000e-02;}\n</style>\n<g id="Exception_x2F_异常提示" transform="translate(-870.000000, -1335.000000)">\n\t<g id="_x34_04" transform="translate(357.000000, 1216.000000)">\n\t\t<g id="_x34_04-插图" transform="translate(513.000000, 119.000000)">\n\t\t\t<g id="编组-13" transform="translate(10.000000, 11.036648)">\n\t\t\t\t<g id="_x34_04主体" transform="translate(94.324022, 42.538771)">\n\t\t\t\t\t<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="141.3912" y1="55.6869" x2="152.3307" y2="117.7277">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#F8FCFD"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="Fill-1" class="st0" d="M45.3,72.9c29.3-6.6,71.5-9.6,100.2-8.1s52.4,6.5,54.1,5.3c5.7-3.8,17.9-5.5,17.3-4\n\t\t\t\t\t\ts-8.5,6.1-6,6.8c2.5,0.7,28,3.7,38.6,5.9c10.6,2.2,17.4,4.4,19.7,4.4c2.3,0,5.9-3.1,21.3-1.6c0.3,0.6-3.4,0.8-6.8,2.5\n\t\t\t\t\t\ts-5.9,1.6-5.9,2s1.9-0.6,5.9,2c4,2.5,11,3.4,11,4s-8.9,3.6-23.8-1.1c-3.8-1.2-12.6,9.2-53.1,12.1s-109.1,5.2-109.1,5.2\n\t\t\t\t\t\ts4.1,5.3,10.1,6.8c0.3,0.5-2.4,2.5-14,0.3s-17.9-7.1-17.9-7.1s-23.1-1.5-31.8-2.9s-18.7-5.2-25.6-5.9S-8.5,95,3.3,86.9\n\t\t\t\t\t\tC3.3,86.9,16,79.5,45.3,72.9z"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形_9_" gradientUnits="userSpaceOnUse" x1="304.8467" y1="101.2492" x2="304.8467" y2="100.2546" gradientTransform="matrix(93.3907 0 0 -93.4627 -28335.9453 9463.0273)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#ECEEF0"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#D7D9DB"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="矩形_1_" class="st1" d="M89.2,0h89.4c1.1,0,2,0.9,2,2v89.5c0,1.1-0.9,2-2,2H89.2c-1.1,0-2-0.9-2-2V2\n\t\t\t\t\t\tC87.2,0.9,88.1,0,89.2,0z"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形_10_" gradientUnits="userSpaceOnUse" x1="303.8915" y1="101.6532" x2="303.8915" y2="100.653" gradientTransform="matrix(81.7169 0 0 -81.7799 -24699.2246 8318.9902)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#F5F7FA"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#EBEDF0"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="矩形_2_" class="st2" d="M94,5.8h79.7c0.6,0,1,0.4,1,1v79.8c0,0.6-0.4,1-1,1H94c-0.6,0-1-0.4-1-1V6.8\n\t\t\t\t\t\tC93,6.3,93.5,5.8,94,5.8z"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形_11_" gradientUnits="userSpaceOnUse" x1="299.4186" y1="103.5052" x2="299.4186" y2="102.5599" gradientTransform="matrix(51.5323 0 0 -51.5728 -15295.877 5360.9736)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F7F9FC"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="矩形_3_" class="st3" d="M109.1,20.9h49.5c0.6,0,1,0.4,1,1v49.6c0,0.6-0.4,1-1,1h-49.5c-0.6,0-1-0.4-1-1V21.9\n\t\t\t\t\t\tC108.1,21.4,108.6,20.9,109.1,20.9z"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形_12_" gradientUnits="userSpaceOnUse" x1="195.4879" y1="119.2237" x2="195.4879" y2="118.2566" gradientTransform="matrix(5.3777 0 0 -12.6828 -928.3755 1546.8516)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F0F2F5"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<rect id="矩形_4_" x="120.2" y="34.5" class="st4" width="5.4" height="12.7"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形备份-9_1_" gradientUnits="userSpaceOnUse" x1="195.4901" y1="119.2237" x2="195.4901" y2="118.2566" gradientTransform="matrix(5.3777 0 0 -12.6828 -906.4871 1546.8516)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F0F2F5"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<rect id="矩形备份-9" x="142.1" y="34.5" class="st5" width="5.4" height="12.7"/>\n\n\t\t\t\t\t\t<linearGradient id="形状结合_6_" gradientUnits="userSpaceOnUse" x1="247.566" y1="125.4514" x2="247.566" y2="124.4844" gradientTransform="matrix(9.7554 0 0 -9.7621 -2281.2051 1276.906)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F0F2F5"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="形状结合" class="st6" d="M129,56.7L129,56.7c0.1-2.6,2.3-4.7,4.9-4.7c2.6,0,4.7,2,4.9,4.7v0.2v4.9H129v-0.5v-4.4\n\t\t\t\t\t\tV56.7z"/>\n\n\t\t\t\t\t\t<linearGradient id="形状结合_8_" gradientUnits="userSpaceOnUse" x1="302.9761" y1="101.2375" x2="302.9761" y2="100.3016" gradientTransform="matrix(72.9615 0 0 -93.4627 -21879.7441 9463.0273)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#EBEDF0;stop-opacity:0.9917"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#E1E3E6"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="形状结合_1_" class="st7" d="M244.8,0h2.9v58.4h14.6v17.5h-14.6v17.5h-20.4V75.9h-37.9V58.4L227.3,0H244.8z\n\t\t\t\t\t\t M227.3,28.2l-18.8,30.3h18.8V28.2z"/>\n\n\t\t\t\t\t\t<linearGradient id="形状结合备份-3_1_" gradientUnits="userSpaceOnUse" x1="302.9756" y1="101.2375" x2="302.9756" y2="100.3016" gradientTransform="matrix(72.9615 0 0 -93.4627 -22063.6074 9463.0273)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#EBEDF0;stop-opacity:0.9917"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#E1E3E6"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="形状结合备份-3" class="st8" d="M60.9,0h2.9v58.4h14.6v17.5H63.8v17.5H43.4V75.9H5.5V58.4L43.4,0H60.9z\n\t\t\t\t\t\t M43.4,28.2L24.6,58.4h18.8V28.2z"/>\n\n\t\t\t\t\t\t<linearGradient id="形状结合_9_" gradientUnits="userSpaceOnUse" x1="299.0466" y1="107.2827" x2="299.0535" y2="107.011" gradientTransform="matrix(50.0035 0 0 -28.6053 -14857.7529 3216.7395)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#FBFCFD"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F0F2F5"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="形状结合_2_" class="st9" d="M99.6,137.3c11.7,0,21.2,5.6,21.2,12.4c0,6.9-9.5,12.4-21.2,12.4\n\t\t\t\t\t\tc-4.4,0-8.5-0.8-11.9-2.1l-7,5.9l-1.9-2.2l6-5.1c-3.9-2.3-6.4-5.4-6.4-8.9c0-0.2,0-0.5,0-0.7l-5.8,5.1l-1.9-2.2l15.4-13.4\n\t\t\t\t\t\tl1.1,1.2C90.7,138.1,95,137.3,99.6,137.3z"/>\n\t\t\t\t\t<rect id="矩形_5_" x="225.8" y="87.6" class="st10" width="23.3" height="5.8"/>\n\t\t\t\t\t<rect id="矩形_6_" x="227.3" y="86.2" class="st11" width="20.4" height="1.5"/>\n\t\t\t\t\t<rect id="矩形_7_" x="41.9" y="87.6" class="st10" width="23.3" height="5.8"/>\n\t\t\t\t\t<rect id="矩形_8_" x="43.4" y="86.2" class="st11" width="20.4" height="1.5"/>\n\t\t\t\t\t<path id="路径-4" class="st11" d="M0,0"/>\n\t\t\t\t\t<path id="路径-8" class="st12" d="M115.6,134.9c2.4-2.2,9.7-3.4,21.9-3.4c6.4,0,11,0.7,39.9,5.7c2.9,0.5,5.3,0.9,7.7,1.3\n\t\t\t\t\t\tc25.8,4.3,40.8,5.7,48.6,3.3l-0.4-1.4c-7.5,2.2-22.5,0.9-48-3.4c-2.3-0.4-4.8-0.8-7.6-1.3c-29.1-5.1-33.6-5.8-40.2-5.8\n\t\t\t\t\t\tc-12.6,0-20.1,1.2-22.9,3.8L115.6,134.9z"/>\n\n\t\t\t\t\t\t<linearGradient id="路径-5_1_" gradientUnits="userSpaceOnUse" x1="307.1105" y1="103.481" x2="307.1105" y2="102.4922" gradientTransform="matrix(141.25 0 0 -52.0962 -43201.7227 5481.3613)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#DCDEE5"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#979BA5"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="路径-5" class="st13" d="M225.8,89.8h-20c-6.9,0-10.7,3.1-8,7.5c2.7,4.6,11.9,9.7,27.1,14.4\n\t\t\t\t\t\tc15.5,4.8,24.9,15.5,21,22.5c-4.5,8.1-24.4,8.9-56.3-0.8c-48.4-14.6-75.8-16.1-82.6-4.1l1.3,0.7c6.2-11.1,33.2-9.7,80.9,4.7\n\t\t\t\t\t\tc32.5,9.8,53,9.1,58,0.1c4.5-8-5.6-19.5-21.9-24.6c-14.8-4.6-23.8-9.6-26.2-13.7c-1.8-3.1,0.8-5.3,6.8-5.3h20v-1.4H225.8z"/>\n\n\t\t\t\t\t\t<linearGradient id="形状结合_10_" gradientUnits="userSpaceOnUse" x1="294.1835" y1="101.4578" x2="294.7074" y2="101.4022" gradientTransform="matrix(37.7993 7.3474 7.6337 -39.272 -11803.8252 1959.452)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#E7E9EB;stop-opacity:0.9365"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#CDCFD1"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="形状结合_3_" class="st14" d="M111.7,125.2c4,4.9,4.7,11.3,2.4,13.5l-0.1,0.1l-5.5,5.6c0.6,2.9,0.5,5.3-1.1,6.7\n\t\t\t\t\t\tl0,0l0,0l-8.2,8.7l-21.8-30.6l8.3-4.8v0.1c1.7-0.9,4.1-0.6,6.7,0.4l6.8-4.2l0.1-0.1C102,118.7,107.8,120.3,111.7,125.2z"/>\n\n\t\t\t\t\t\t<linearGradient id="形状结合备份-4_1_" gradientUnits="userSpaceOnUse" x1="295.4054" y1="82.3197" x2="296.1287" y2="82.2994" gradientTransform="matrix(23.8243 29.4206 15.8614 -12.8443 -8255.8438 -7504.8457)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#EBEDEF"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#D8DADC"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="形状结合备份-4" class="st15" d="M103.3,132.4c5.9,7.2,7.2,15.4,4,18.9l0,0l-8.1,8.5L76,129.9l9.4-5.5l0,0\n\t\t\t\t\t\tC89.5,122.1,97.5,125.2,103.3,132.4z"/>\n\n\t\t\t\t\t\t<ellipse id="椭圆形备份-2" transform="matrix(0.7771 -0.6293 0.6293 0.7771 -71.7573 87.3809)" class="st16" cx="87.5" cy="145" rx="9.5" ry="19"/>\n\n\t\t\t\t\t\t<g id="编组-5" transform="translate(85.288705, 155.695465) rotate(6.000000) translate(-85.288705, -155.695465) translate(79.143453, 146.756917)">\n\t\t\t\t\t\t<polygon id="路径-9" class="st17" points="12.2,1.1 12.2,6.1 1.2,17.5 1.2,12.5 \t\t\t\t\t\t"/>\n\t\t\t\t\t\t<polygon id="路径-10" class="st11" points="12.2,1.1 11.3,0 0.3,11.1 1.2,12.5 \t\t\t\t\t\t"/>\n\t\t\t\t\t\t<polygon id="路径-11" class="st18" points="0.3,11.1 1.2,12.5 1.2,17.5 0.3,16.1 \t\t\t\t\t\t"/>\n\t\t\t\t\t</g>\n\n\t\t\t\t\t\t<g id="编组-5备份" transform="translate(76.826277, 143.885105) rotate(6.000000) translate(-76.826277, -143.885105) translate(70.681025, 134.946558)">\n\t\t\t\t\t\t<polygon id="路径-9_1_" class="st17" points="12.2,1.1 12.2,6.1 1.2,17.5 1.2,12.5 \t\t\t\t\t\t"/>\n\t\t\t\t\t\t<polygon id="路径-10_1_" class="st11" points="12.2,1.1 11.3,0 0.3,11.1 1.2,12.5 \t\t\t\t\t\t"/>\n\t\t\t\t\t\t<polygon id="路径-11_1_" class="st18" points="0.3,11.1 1.2,12.5 1.2,17.5 0.3,16.1 \t\t\t\t\t\t"/>\n\t\t\t\t\t</g>\n\n\t\t\t\t\t\t<g id="编组-5_1_" transform="translate(84.643349, 156.203183) rotate(6.000000) translate(-84.643349, -156.203183) translate(78.136612, 146.629796)">\n\t\t\t\t\t</g>\n\n\t\t\t\t\t\t<g id="编组-5备份_1_" transform="translate(76.257985, 144.291942) rotate(6.000000) translate(-76.257985, -144.291942) translate(69.751248, 134.718555)">\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t\t<circle id="椭圆形" class="st19" cx="1.7" cy="80" r="1.7"/>\n\t\t\t\t<path id="形状结合_4_" class="st20" d="M123.7,62.9l-1.2,1.8c-58.4,14.6-97.3,34.8-95.2,51.8c1.2,10,16.5,17.6,41,22.2\n\t\t\t\t\tc7.9-8.6,18.3-17.9,30.7-27.5v1.9C87.4,122.2,77.6,131,70,139c9.2,1.6,19.7,2.9,31.2,3.7c1.5,0.7,3.4,1.3,5.5,1.8\n\t\t\t\t\tc-14.1-0.8-26.9-2.2-37.8-4.2C55,155.1,49,167.5,53,175.4c8.6,16.9,61.2,8.8,126.8-17.6c0.5,0.3,1,0.6,1.6,1\n\t\t\t\t\tc-66.8,27-120.5,35.2-129.6,17.3c-4.2-8.3,1.7-21.1,15.4-36.2c-24.7-4.8-40-12.7-41.3-23.2C23.6,98.5,63.7,77.7,123.7,62.9z\n\t\t\t\t\t M313.3,118.4h5.1c-6.8,2.1-13.9,4.1-21.4,6c-1.4-0.2-2.8-0.4-3.9-0.5C300.2,122.1,306.9,120.3,313.3,118.4z M283.1,105.8v1.7\n\t\t\t\t\tc-2.9,1.8-5.8,3.5-8.8,5.3v-1.7C277.3,109.3,280.2,107.6,283.1,105.8z M378.5,9.6c4.7,9.2-3.1,24-20.2,41.3\n\t\t\t\t\tc18.9,4.9,30.4,12,31.6,21c1.3,10.4-11.4,21.6-33.7,32.2v-1.6c21.4-10.1,33.4-20.8,32.3-30.4c-1.1-8.6-12.5-15.4-31.3-20.1\n\t\t\t\t\tl-0.3,0.3c-4.5,4.5-9.6,9.1-15.3,13.9v-1.9c5-4.3,9.6-8.4,13.7-12.4l0.3-0.3c-4.3-1-9-1.9-14-2.7v-1.5c5.4,0.9,10.5,1.9,15.1,3\n\t\t\t\t\tc17.1-17.1,25-31.5,20.6-40.3c-10-19.7-79.9-5.4-160.4,32.2h-3.4C295.9,3.4,367.8-11.5,378.5,9.6z M136.9,84.5v1.8\n\t\t\t\t\tc-5.8,3.7-11.4,7.4-16.7,11.1l2-3.1C127,90.9,131.9,87.7,136.9,84.5z M321.1,80.4v1.8c-4.2,3-8.5,6.1-13,9.2l2-3.1\n\t\t\t\t\tC313.9,85.6,317.5,83,321.1,80.4z M180.8,58.9v1.7c-8.1,4.3-15.9,8.7-23.4,13.1V72C164.9,67.6,172.7,63.2,180.8,58.9z\n\t\t\t\t\t M180.8,51.6v1.5c-8,1.2-15.8,2.6-23.4,4v-1.5C165,54.1,172.8,52.8,180.8,51.6z M319.5,44.9l-0.9,1.4\n\t\t\t\t\tc-13.4-1.1-28.3-1.5-44.3-1.3v-0.5c0-0.3-0.1-0.7-0.2-0.9C290.5,43.3,305.8,43.7,319.5,44.9z"/>\n\t\t\t\t<path id="形状结合_5_" class="st21" d="M378.5,9.6c4.7,9.2-3.1,24-20.2,41.3c18.9,4.9,30.4,12,31.6,21\n\t\t\t\t\tc2.9,24-68.6,52.8-162.4,66.1c-86.9,42.9-164.6,59.9-175.8,38c-4.2-8.3,1.7-21.1,15.4-36.2c-24.7-4.8-40-12.7-41.3-23.2\n\t\t\t\t\tc-1.7-13.8,21.1-29.1,58.5-42.2l0.3,1.4c-36.6,12.8-59,27.6-57.4,40.6c1.2,10,16.5,17.6,41,22.2c6.8-7.3,15.4-15.2,25.5-23.4\n\t\t\t\t\tl0.3,1.2l0.8-0.2c-9.8,7.9-18.2,15.5-24.9,22.6c34.4,6.1,86.2,6.6,143.3-0.4c4.7-0.6,9.3-1.2,13.8-1.8c2.7-1.4,5.5-2.7,8.3-4.1\n\t\t\t\t\tc51.8-26.4,95-56.1,119.9-80.6l0.3-0.3c-2.7-0.6-5.5-1.2-8.4-1.8l-0.4-1.5c3.5,0.6,6.8,1.4,10,2.1c17.1-17.1,25-31.5,20.6-40.3\n\t\t\t\t\tc-4.2-8.3-19.2-10.6-41.1-7.6l-0.3-1.4C358.5-1.8,374,0.7,378.5,9.6z M222.9,138.7l-0.4,0.1c-3,0.4-6,0.8-9,1.2\n\t\t\t\t\tc-57.7,7.1-110,6.7-144.7,0.2C55,155.1,49,167.5,53,175.4C63.4,195.9,138.4,179.7,222.9,138.7z M357.1,52l-0.3,0.3\n\t\t\t\t\tc-25,24.8-68.5,54.8-120.8,81.4c-1.4,0.7-2.9,1.5-4.3,2.2c90.6-13.5,159.5-41.5,156.7-63.9C387.4,63.5,375.9,56.7,357.1,52z"/>\n\t\t\t\t<circle id="椭圆形_1_" class="st19" cx="135.2" cy="144.2" r="2.2"/>\n\t\t\t\t<circle id="椭圆形备份-4" class="st19" cx="357" cy="50.9" r="3.9"/>\n\t\t\t\t<circle id="椭圆形备份" class="st19" cx="43.6" cy="93.9" r="2.2"/>\n\t\t\t\t<circle id="椭圆形_2_" class="st19" cx="372.1" cy="3.4" r="2.2"/>\n\t\t\t\t<circle id="椭圆形_3_" class="st19" cx="73.2" cy="50.9" r="1.7"/>\n\t\t\t\t<circle id="椭圆形_4_" class="st19" cx="293.3" cy="169.4" r="1.7"/>\n\t\t\t\t<circle id="椭圆形_5_" class="st19" cx="398.3" cy="15.2" r="1.7"/>\n\t\t\t</g>\n\t\t</g>\n\t</g>\n</g>\n</svg>',500:'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:url(#Fill-1_1_);}\n\t.st1{fill:#C4C6CC;}\n\t.st2{fill:url(#矩形-2_1_);}\n\t.st3{fill:url(#矩形_6_);}\n\t.st4{fill:#DCDEE0;}\n\t.st5{fill:#D1D3D6;}\n\t.st6{fill:url(#矩形-3_1_);}\n\t.st7{fill:#E5E7EC;}\n\t.st8{fill:url(#三角形_1_);}\n\t.st9{fill:#979BA5;}\n</style>\n<g id="页面-1">\n\t<g id="Exception_x2F_异常提示" transform="translate(-869.000000, -2918.000000)">\n\t\t<g id="异常失败类" transform="translate(357.000000, 2823.000000)">\n\t\t\t<g id="异常失败类-插图" transform="translate(512.000000, 95.000000)">\n\t\t\t\t<g id="编组-2" transform="translate(123.000000, 33.000000)">\n\t\t\t\t\t<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="126.5699" y1="134.9889" x2="130.1638" y2="169.1827">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#FBFCFD"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="Fill-1" class="st0" d="M60,143c19.3-4.2,48.4-5.7,67.3-4.7s39.4,3.8,39.4,3.8s5.3-2.4,4.9-1.4\n\t\t\t\t\t\tc-0.4,0.9-2.9,2.4-1.2,2.8c1.6,0.5,18.5,2.4,25.4,3.8c7,1.4,10.3,2.8,10.3,2.8s4.6-8,14.7-7.1c0,0.8-3.7,1.7-5,3.8\n\t\t\t\t\t\tc-1.2,2.1-4,3.3-4,3.3s2.2-1.2,5.9,0.6s7.3,2.4,7.3,2.7s-1.6,4.2-15.2,1.4c-5.5-1.4-8.2,6.1-34.9,8s-71.8,3.3-71.8,3.3\n\t\t\t\t\t\ts2.1,2.8,6.2,3.8c0,0-2.9,2.8-8.6,1.9c-5.7-0.9-11.9-5.7-11.9-5.7s-15.2-0.9-20.9-1.9s-12.3-3.3-16.8-3.8s-25-2.8-17.2-8\n\t\t\t\t\t\tC33.8,152.4,40.7,147.3,60,143z"/>\n\t\t\t\t\t<path id="形状结合" class="st1" d="M60.8,147v9.2H70v1.8H59v-11H60.8z"/>\n\t\t\t\t\t<path id="形状结合备份" class="st1" d="M66,31.8h-9.2V41H55v-9.2l0,0V30h11V31.8z"/>\n\t\t\t\t\t<path id="形状结合备份-2" class="st1" d="M157.2,41v-9.2H148V30h9.2l0,0h1.8v11H157.2z"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形-2_1_" gradientUnits="userSpaceOnUse" x1="165.7727" y1="-1.5597" x2="165.7727" y2="-0.6238" gradientTransform="matrix(88 0 0 112 -14480 214)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#EBEDF0;stop-opacity:0.9917"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#E1E3E6"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="矩形-2" class="st2" d="M65,38h86c0.6,0,1,0.4,1,1v110c0,0.6-0.4,1-1,1H65c-0.6,0-1-0.4-1-1V39\n\t\t\t\t\t\tC64,38.4,64.4,38,65,38z"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形_6_" gradientUnits="userSpaceOnUse" x1="164.8014" y1="-1.8144" x2="164.8014" y2="-0.8259" gradientTransform="matrix(73 0 0 97 -11923 221)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#FFFFFF"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<rect id="矩形_1_" x="71" y="45" class="st3" width="73" height="97"/>\n\t\t\t\t\t<rect id="矩形_2_" x="86" y="49" class="st4" width="43" height="2"/>\n\t\t\t\t\t<rect id="矩形_3_" x="71" y="140" class="st5" width="73" height="2"/>\n\n\t\t\t\t\t\t<linearGradient id="矩形-3_1_" gradientUnits="userSpaceOnUse" x1="160.8256" y1="-11.7333" x2="160.8256" y2="-10.7412" gradientTransform="matrix(43 0 0 15 -6808 210)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#EDEFF2"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#E8EAED"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<rect id="矩形-3" x="86" y="34" class="st6" width="43" height="15"/>\n\t\t\t\t\t<path id="形状结合_1_" class="st5" d="M152,105v44c0,0.6-0.4,1-1,1h-24.6L152,105z"/>\n\t\t\t\t\t<path id="形状结合_2_" class="st7" d="M144,119.2V140h-12L144,119.2z"/>\n\n\t\t\t\t\t\t<linearGradient id="三角形_1_" gradientUnits="userSpaceOnUse" x1="163.9143" y1="-3.0812" x2="163.9143" y2="-2.1453" gradientTransform="matrix(63.1799 0 0 56.9033 -10198.1719 277.0945)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#E6E8EB;stop-opacity:0.9917"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#D4D6D9"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="三角形" class="st8" d="M159.7,102.1l1.5,2.6l0,0l28.1,50.3c0.5,1,0.2,2.2-0.8,2.7c-0.3,0.2-0.6,0.3-1,0.3h-59.2\n\t\t\t\t\t\tc-1.1,0-2-0.9-2-2c0-0.3,0.1-0.7,0.3-1l29.6-52.9c0.5-1,1.8-1.3,2.7-0.8C159.3,101.5,159.6,101.8,159.7,102.1z"/>\n\t\t\t\t\t<path id="_x21_" class="st9" d="M160.7,124l-0.6,16.4h-4.2l-0.6-16.4C155.3,124,160.7,124,160.7,124z M155,145.8\n\t\t\t\t\t\tc0-0.9,0.3-1.6,0.9-2.2s1.3-0.8,2.1-0.8c0.9,0,1.6,0.3,2.1,0.8c0.6,0.6,0.8,1.3,0.8,2.1s-0.3,1.6-0.8,2.1\n\t\t\t\t\t\tc-0.6,0.6-1.2,0.9-2,0.9c-1,0-1.7-0.3-2.3-0.9C155.3,147.3,155,146.6,155,145.8z"/>\n\t\t\t\t\t<g id="编组-3" transform="translate(101.000000, 74.000000)">\n\t\t\t\t\t\t<rect id="矩形_4_" class="st1" width="3.8" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份" x="7.6" class="st1" width="3.8" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-2" x="15.1" class="st1" width="3.8" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-3" x="22.7" class="st1" width="3.8" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-4" x="30.2" class="st1" width="3.8" height="1"/>\n\t\t\t\t\t</g>\n\t\t\t\t\t<g id="编组-3_1_" transform="translate(124.000000, 91.000000)">\n\t\t\t\t\t\t<rect id="矩形_5_" x="7.8" class="st1" width="3.9" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-5" class="st1" width="3.9" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份_1_" x="15.6" class="st1" width="3.9" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-2_1_" x="23.5" class="st1" width="3.9" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-3_1_" x="31.3" class="st1" width="3.9" height="1"/>\n\t\t\t\t\t\t<rect id="矩形备份-4_1_" x="39.1" class="st1" width="3.9" height="1"/>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t</g>\n\t\t</g>\n\t</g>\n</g>\n</svg>',building:'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:url(#Fill-1_1_);}\n\t.st1{fill:url(#椭圆形备份-5_2_);}\n\t.st2{fill:url(#矩形_19_);}\n\t.st3{fill:url(#矩形备份-21_1_);}\n\t.st4{fill:url(#形状结合_6_);}\n\t.st5{fill:#EAECEF;}\n\t.st6{fill:url(#矩形_20_);}\n\t.st7{fill:#F4F4F5;}\n\t.st8{fill:#F9F9FA;}\n\t.st9{fill:#979797;}\n\t.st10{fill:#E8EAEC;}\n\t.st11{fill:#F7F8FA;}\n\t.st12{fill:url(#矩形_21_);}\n\t.st13{fill:url(#矩形备份-22_1_);}\n\t.st14{fill:url(#路径-23_1_);}\n\t.st15{fill:url(#矩形_22_);}\n\t.st16{fill:#DCDDE0;}\n\t.st17{fill:url(#路径-19_1_);}\n\t.st18{fill:url(#形状结合_9_);}\n\t.st19{fill:#CDCED1;}\n\t.st20{fill:none;stroke:url(#路径-21_1_);}\n\t.st21{fill:#C6C7CB;}\n\t.st22{fill:#D1D2D6;stroke:#EAEDF0;stroke-width:2;}\n\t.st23{fill:#F9FAFC;}\n\t.st24{fill:url(#矩形_23_);}\n\t.st25{fill:#F1F3F5;}\n\t.st26{fill:#E6E8EB;}\n\t.st27{fill:#D1D2D6;}\n\t.st28{fill:url(#椭圆形备份-8_1_);}\n\t.st29{fill:#EEEFF3;}\n\t.st30{fill:#D4D6DA;}\n\t.st31{fill:#E8EAED;stroke:#D9DBDE;}\n\t.st32{fill:#D8D8D8;stroke:#CFD0D3;}\n\t.st33{fill:#DDDEE0;}\n\t.st34{fill:#EEF0F2;}\n\t.st35{fill:none;stroke:url(#矩形_24_);stroke-width:2;}\n\t.st36{fill:none;stroke:url(#矩形_25_);stroke-width:0.7;}\n\t.st37{fill:url(#矩形_26_);}\n\t.st38{fill:url(#矩形_27_);}\n\t.st39{fill:url(#矩形_28_);}\n\t.st40{fill:#959699;fill-opacity:0.12;}\n\t.st41{fill:#C4C6CC;}\n</style>\n<g id="页面-1">\n\t<g id="Exception_x2F_异常提示" transform="translate(-870.000000, -1882.000000)">\n\t\t<g id="功能建设类" transform="translate(357.000000, 1751.000000)">\n\t\t\t<g id="编组-11" transform="translate(0.000000, 73.000000)">\n\t\t\t\t<g id="功能建设类-插图" transform="translate(513.000000, 58.000000)">\n\t\t\t\t\t<g id="图案" transform="translate(58.000000, 17.000000)">\n\t\t\t\t\t\t<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="206.3927" y1="158.529" x2="209.889" y2="191.7948">\n\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#FBFCFD"/>\n\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t<path id="Fill-1" class="st0" d="M143.4,166.4c18.6-4.2,45.5-6.1,63.7-5.1c18.2,0.9,33.3,4.1,34.4,3.4\n\t\t\t\t\t\t\tc3.6-2.4,11.4-3.5,11-2.6s-5.4,3.9-3.8,4.3s17.8,2.3,24.6,3.7c6.7,1.4,11.1,2.8,12.5,2.8c1.5,0,3.8-2,13.5-1\n\t\t\t\t\t\t\tc0.2,0.4-2.2,0.5-4.3,1.6c-2.2,1.1-3.7,1-3.7,1.3s1.2-0.4,3.7,1.3c2.5,1.6,7,2.1,7,2.6c0,0.4-5.7,2.3-15.1-0.7\n\t\t\t\t\t\t\tc-2.4-0.8-8,5.8-33.8,7.7s-69.4,3.3-69.4,3.3s2.6,3.4,6.4,4.3c0.2,0.3-1.5,1.6-8.9,0.2c-7.4-1.4-11.4-4.5-11.4-4.5\n\t\t\t\t\t\t\ts-14.7-0.9-20.2-1.9c-5.6-0.9-11.9-3.3-16.3-3.7s-24.2-2.8-16.7-8C116.7,175.3,124.7,170.6,143.4,166.4z"/>\n\t\t\t\t\t\t<g id="编组-4" transform="translate(37.000000, 0.000000)">\n\n\t\t\t\t\t\t\t\t<linearGradient id="椭圆形备份-5_2_" gradientUnits="userSpaceOnUse" x1="197.4328" y1="-9.9726" x2="197.4328" y2="-8.9726" gradientTransform="matrix(14.3114 0 0 17.6485 -2812.2903 258.7591)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#EAECEE"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#CDCFD1"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="椭圆形备份-5" class="st1" d="M13.2,100.4c3.1,0,7.2-6.5,7.2-10.5s-3.2-7.2-7.2-7.2S6.1,86,6.1,89.9\n\t\t\t\t\t\t\t\tC6.1,93.9,10.1,100.4,13.2,100.4z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_19_" gradientUnits="userSpaceOnUse" x1="-151.3664" y1="-2.2156" x2="-151.3664" y2="-1.2158" gradientTransform="matrix(1.1009 0 0 79.4182 177.6893 185.9593)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#DCDEE5"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#B2B5BE"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<rect id="矩形_1_" x="10.5" y="10" class="st2" width="1.1" height="79.4"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形备份-21_1_" gradientUnits="userSpaceOnUse" x1="-151.3689" y1="-2.2156" x2="-151.3689" y2="-1.2158" gradientTransform="matrix(1.1009 0 0 79.4182 180.992 185.9593)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#DCDEE5"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#B2B5BE"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<rect id="矩形备份-21" x="13.8" y="10" class="st3" width="1.1" height="79.4"/>\n\n\t\t\t\t\t\t\t\t<g id="编组-3" transform="translate(62.941725, 73.841793) rotate(-39.000000) translate(-62.941725, -73.841793) translate(50.441725, -10.658207)">\n\t\t\t\t\t\t\t\t<g id="编组-2" transform="translate(0.000000, 38.513548)">\n\n\t\t\t\t\t\t\t\t\t\t<linearGradient id="形状结合_6_" gradientUnits="userSpaceOnUse" x1="93.6991" y1="33.1133" x2="93.6991" y2="34.0924" gradientTransform="matrix(24.5163 -7.574732e-05 7.264147e-05 129.5456 -2278.9958 -4263.5239)">\n\t\t\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E4E6E9"/>\n\t\t\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#CBCED6"/>\n\t\t\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t\t\t<path id="形状结合" class="st4" d="M24.5,0l0,102.7l0,14l0,12.8H0L0,0L24.5,0z M12.3,123.1l-10,5.3h20.1L12.3,123.1z\n\t\t\t\t\t\t\t\t\t\t M23.3,117.3l-9.8,5.1l9.8,5.1L23.3,117.3z M1.2,117.3l0,10.3l9.8-5.1L1.2,117.3z M22,116.7H2.5l9.7,5.1L22,116.7z\n\t\t\t\t\t\t\t\t\t\t M12.3,110.4l-9.7,5.1H22L12.3,110.4z M1.2,104.6l0,10.3l9.8-5.1L1.2,104.6z M23.3,104.6l-9.8,5.1l9.8,5.1L23.3,104.6z\n\t\t\t\t\t\t\t\t\t\t M22.3,103.9l-20.1,0l10,5.3L22.3,103.9z M12.3,97.5l-10,5.3l20.1,0L12.3,97.5z M1.2,91.6l0,10.3l9.8-5.1L1.2,91.6z\n\t\t\t\t\t\t\t\t\t\t M23.3,91.6l-9.8,5.1l9.8,5.1L23.3,91.6z M22,91L2.5,91l9.7,5.1L22,91z M12.3,84.8l-9.7,5.1l19.5,0L12.3,84.8z M1.2,79\n\t\t\t\t\t\t\t\t\t\tl0,10.3l9.8-5.1L1.2,79z M23.3,79l-9.8,5.1l9.8,5.1L23.3,79z M22.3,78.2H2.2l10,5.3L22.3,78.2z M12.3,71.8L2.2,77l20.1,0\n\t\t\t\t\t\t\t\t\t\tL12.3,71.8z M1.2,66l0,10.3l9.8-5.1L1.2,66z M23.3,66l-9.8,5.1l9.8,5.1L23.3,66z M22,65.4l-19.5,0l9.7,5.1L22,65.4z\n\t\t\t\t\t\t\t\t\t\t M12.3,59.1l-9.7,5.1l19.5,0L12.3,59.1z M1.2,53.3l0,10.3l9.8-5.1L1.2,53.3z M23.3,53.3l-9.8,5.1l9.8,5.1L23.3,53.3z\n\t\t\t\t\t\t\t\t\t\t M22.3,52.5l-20.1,0l10,5.3L22.3,52.5z M12.3,46.1l-10,5.3l20.1,0L12.3,46.1z M23.3,40.3l-9.8,5.1l9.8,5.1L23.3,40.3z\n\t\t\t\t\t\t\t\t\t\t M1.2,40.3l0,10.3l9.8-5.1L1.2,40.3z M22,39.7l-19.5,0l9.7,5.1L22,39.7z M12.3,33.4l-9.7,5.1l19.5,0L12.3,33.4z M1.2,27.6\n\t\t\t\t\t\t\t\t\t\tl0,10.3l9.8-5.1L1.2,27.6z M23.3,27.6l-9.8,5.1l9.8,5.1L23.3,27.6z M22.3,26.8l-20.1,0l10,5.3L22.3,26.8z M12.3,20.4\n\t\t\t\t\t\t\t\t\t\tl-10,5.3l20.1,0L12.3,20.4z M1.2,14.6l0,10.3l9.8-5.1L1.2,14.6z M23.3,14.6l-9.8,5.1l9.8,5.1L23.3,14.6z M22,14L2.5,14\n\t\t\t\t\t\t\t\t\t\tl9.7,5.1L22,14z M12.3,7.7l-9.7,5.1l19.5,0L12.3,7.7z M1.2,1.9l0,10.3L11,7.1L1.2,1.9z M23.3,1.9L13.5,7l9.8,5.1L23.3,1.9z\n\t\t\t\t\t\t\t\t\t\t M22.3,1.2l-20.1,0l10,5.3L22.3,1.2z"/>\n\t\t\t\t\t\t\t\t</g>\n\n\t\t\t\t\t\t\t\t\t<ellipse id="椭圆形" transform="matrix(-0.7771 -0.6293 0.6293 -0.7771 19.1491 14.9201)" class="st5" cx="12.2" cy="4.1" rx="4.1" ry="4.1"/>\n\n\t\t\t\t\t\t\t\t\t<linearGradient id="矩形_20_" gradientUnits="userSpaceOnUse" x1="115.9711" y1="32.1774" x2="115.9711" y2="33.1774" gradientTransform="matrix(19.8465 3.667631e-05 -8.645036e-06 31.5111 -2283.1047 -1000.0709)">\n\t\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#EBEDF0"/>\n\t\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E4E6E9"/>\n\t\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t\t<polygon id="矩形_2_" class="st6" points="7,5.8 17.5,5.8 22.2,37.3 2.3,37.3 \t\t\t\t\t\t\t\t"/>\n\t\t\t\t\t\t\t\t<polygon id="路径-17" class="st7" points="0,38.5 2.3,37.3 22.2,37.3 24.5,38.5 \t\t\t\t\t\t\t\t"/>\n\t\t\t\t\t\t\t\t<polygon id="路径-18" class="st8" points="8.2,5.8 8.2,4.6 16.3,4.6 16.3,5.8 \t\t\t\t\t\t\t\t"/>\n\t\t\t\t\t\t\t</g>\n\t\t\t\t\t\t\t<path id="形状结合_1_" class="st9" d="M12.7,99.3v7.2v0.1c-0.2,0-0.4-0.1-0.6-0.1c-1.5,0-2.8,1.3-2.8,3s1.2,3,2.8,3\n\t\t\t\t\t\t\t\tc1.3,0,2.5-1,2.7-2.4h1.1c-0.3,2-1.9,3.6-3.8,3.6c-2.1,0-3.9-1.9-3.9-4.2c0-2.1,1.4-3.8,3.3-4.1v-6L12.7,99.3L12.7,99.3z"/>\n\t\t\t\t\t\t\t<path id="椭圆形_1_" class="st10" d="M12.1,100.4c3.1,0,7.2-6.5,7.2-10.5s-3.2-7.2-7.2-7.2S5,86,5,89.9\n\t\t\t\t\t\t\t\tC5,93.9,9,100.4,12.1,100.4z"/>\n\t\t\t\t\t\t\t<rect id="矩形_3_" x="122.8" y="121.4" class="st11" width="102.4" height="2.2"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_21_" gradientUnits="userSpaceOnUse" x1="100.0187" y1="-1.1966" x2="100.0187" y2="-0.2166" gradientTransform="matrix(3.4301 0.7291 -14.6403 68.8774 -167.9161 65.3722)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#EAEDF0"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E7E7EB"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="矩形_4_" class="st12" d="M191.3,54.1l3.4,0.7l-14.6,68.5c-0.7,0.1-1.3,0.1-1.9,0c-0.5-0.1-1.1-0.4-1.5-0.7\n\t\t\t\t\t\t\t\tL191.3,54.1z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形备份-22_1_" gradientUnits="userSpaceOnUse" x1="126.5297" y1="5.966" x2="126.5297" y2="6.9462" gradientTransform="matrix(1.6467 3.0971 -42.2724 22.4766 281.2271 -423.6879)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#EFF2F5"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E7E7EB"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="矩形备份-22" class="st13" d="M237.4,100.3l1.6,3.1l-39.5,20.7c-0.4,0-1.2-0.1-2.4-0.3c-1.2-0.2-1.9-0.6-2-1\n\t\t\t\t\t\t\t\tL237.4,100.3z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="路径-23_1_" gradientUnits="userSpaceOnUse" x1="100.5191" y1="-53.1867" x2="100.5191" y2="-52.1867" gradientTransform="matrix(3.3026 0 0 3.3091 -98.6243 278.6146)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E7E8EB"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#CACDD1"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="路径-23" class="st14" d="M233.4,102.6l-1.7,0.7c0,0.4,0.2,0.9,0.6,1.5c0.4,0.5,0.8,0.9,1.3,1.1l1.4-0.6\n\t\t\t\t\t\t\t\tL233.4,102.6z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_22_" gradientUnits="userSpaceOnUse" x1="221.5281" y1="-8.8653" x2="221.5281" y2="-7.8653" gradientTransform="matrix(83.6667 0 0 19.8545 -18351.1758 312.8161)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E3E5E8"/>\n\t\t\t\t\t\t\t\t<stop offset="0.9713" style="stop-color:#CDCED1"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<rect id="矩形_5_" x="141.5" y="136.8" class="st15" width="83.7" height="19.9"/>\n\t\t\t\t\t\t\t<path id="路径-20" class="st16" d="M140.4,156.7h10.2c-0.1-3.1,2-5.2,6.4-6.3s27.1-3.7,68.2-7.9v-3.1v-9.2h-84.8\n\t\t\t\t\t\t\t\tL140.4,156.7L140.4,156.7z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="路径-19_1_" gradientUnits="userSpaceOnUse" x1="223.0654" y1="-5.3179" x2="223.0654" y2="-4.3264" gradientTransform="matrix(121.0965 0 0 33.0909 -26847.7422 299.5751)">\n\t\t\t\t\t\t\t\t<stop offset="1.187711e-02" style="stop-color:#F3F3F5"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E1E3E6"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="路径-19" class="st17" d="M225.2,123.6H104.1v33.1H144c1-4.1,2.8-6.6,5.4-7.5c2.6-0.9,27.9-3.2,75.9-6.9\n\t\t\t\t\t\t\t\tL225.2,123.6L225.2,123.6z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="形状结合_9_" gradientUnits="userSpaceOnUse" x1="216.2874" y1="-5.3052" x2="216.2874" y2="-4.3255" gradientTransform="matrix(40.7316 0 0 33.0909 -8685.2812 299.5751)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E4E7EB"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#D8DADC"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="形状结合_2_" class="st18" d="M144.8,123.6v25.6c0,1-0.7,1.8-1.6,2l-30.5,5.5h-8.6v-33.1H144.8z"/>\n\t\t\t\t\t\t\t<rect id="矩形_6_" x="129.4" y="156.7" class="st19" width="37.4" height="2.2"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="路径-21_1_" gradientUnits="userSpaceOnUse" x1="224.2886" y1="-1.6419" x2="225.0738" y2="-1.4702" gradientTransform="matrix(219.0746 0 0 89.3455 -49076.6602 188.1616)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#D5D8DF"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#B5B8C1"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<polyline id="路径-21" class="st20" points="18.2,12.2 192.9,53.7 237.3,101.5 \t\t\t\t\t\t\t"/>\n\t\t\t\t\t\t\t<path id="路径-22" class="st21" d="M189.9,59.9c0.4,0.3,0.9,0.5,1.4,0.7s1,0.2,1.6,0.1l0.3-1.4l-3-0.8L189.9,59.9z"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_2_" class="st22" cx="193.2" cy="54.1" rx="4.5" ry="4.5"/>\n\t\t\t\t\t\t\t<rect id="矩形-4" x="122.8" y="123.6" class="st23" width="102.4" height="1.1"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_23_" gradientUnits="userSpaceOnUse" x1="210.4035" y1="-3.6982" x2="211.1111" y2="-3.6982" gradientTransform="matrix(26.4211 0 0 41.9151 -5331.103 292.962)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#EFF0F2"/>\n\t\t\t\t\t\t\t\t<stop offset="0.4724" style="stop-color:#F4F5F7"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#EEF0F2"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<rect id="矩形_7_" x="224.1" y="117" class="st24" width="26.4" height="41.9"/>\n\t\t\t\t\t\t\t<rect id="矩形_8_" x="223" y="121.4" class="st25" width="1.1" height="3.3"/>\n\t\t\t\t\t\t\t<rect id="矩形备份-23" x="223" y="124.7" class="st26" width="1.1" height="17.6"/>\n\t\t\t\t\t\t\t<rect id="矩形_9_" x="223" y="142.3" class="st27" width="1.1" height="14.3"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_3_" class="st23" cx="237.3" cy="117" rx="13.2" ry="2.2"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="椭圆形备份-8_1_" gradientUnits="userSpaceOnUse" x1="210.4035" y1="-39.3843" x2="211.1111" y2="-39.3843" gradientTransform="matrix(26.4211 0 0 4.4121 -5331.103 332.6674)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#EFF0F2"/>\n\t\t\t\t\t\t\t\t<stop offset="0.4724" style="stop-color:#F4F5F7"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#EEF0F2"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<ellipse id="椭圆形备份-8" class="st28" cx="237.3" cy="158.9" rx="13.2" ry="2.2"/>\n\t\t\t\t\t\t\t<path id="矩形_10_" class="st29" d="M236.2,105.9h3.3v10.5c-0.6,0.3-1.1,0.5-1.7,0.5s-1.1-0.2-1.7-0.5L236.2,105.9\n\t\t\t\t\t\t\t\tL236.2,105.9z"/>\n\t\t\t\t\t\t\t<path id="路径-24" class="st30" d="M236.2,106v1.7c0.4,0.3,1,0.4,1.7,0.4s1.2-0.1,1.7-0.4v-1.8L236.2,106z"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形备份-9" class="st22" cx="237.3" cy="102.6" rx="4.5" ry="4.5"/>\n\t\t\t\t\t\t\t<g id="编组-6" transform="translate(69.937516, 158.870594)">\n\t\t\t\t\t\t\t\t<ellipse id="椭圆形_4_" class="st31" cx="11.1" cy="11" rx="8.8" ry="8.7"/>\n\t\t\t\t\t\t\t\t<ellipse id="椭圆形备份-10" class="st31" cx="141.9" cy="11" rx="8.8" ry="8.7"/>\n\t\t\t\t\t\t\t\t<path id="矩形_11_" class="st32" d="M11.1,10.9h7c0.7,0,1.2,0.6,1.2,1.2l0,0c0,0.7-0.6,1.2-1.2,1.2h-7\n\t\t\t\t\t\t\t\t\tc-0.7,0-1.2-0.6-1.2-1.2l0,0C9.8,11.5,10.4,10.9,11.1,10.9z"/>\n\t\t\t\t\t\t\t\t<path id="矩形_12_" class="st32" d="M134.9,10.9h7c0.7,0,1.2,0.6,1.2,1.2l0,0c0,0.7-0.6,1.2-1.2,1.2h-7\n\t\t\t\t\t\t\t\t\tc-0.7,0-1.2-0.6-1.2-1.2l0,0C133.7,11.5,134.3,10.9,134.9,10.9z"/>\n\t\t\t\t\t\t\t\t<path id="矩形_13_" class="st33" d="M10.9,9.8h131.3c0.8,0,1.5,0.7,1.5,1.5v0.5c0,0.8-0.7,1.5-1.5,1.5H10.9\n\t\t\t\t\t\t\t\t\tc-0.8,0-1.5-0.7-1.5-1.5v-0.5C9.4,10.5,10.1,9.8,10.9,9.8z"/>\n\t\t\t\t\t\t\t\t<path id="形状结合_3_" class="st34" d="M142.2,9.8c0.7,0,1.3,0.5,1.5,1.2H9.4c0.2-0.7,0.7-1.2,1.5-1.2H142.2z"/>\n\n\t\t\t\t\t\t\t\t\t<linearGradient id="矩形_24_" gradientUnits="userSpaceOnUse" x1="83.8703" y1="-8.7587" x2="83.8703" y2="-7.7734" gradientTransform="matrix(151.0219 0 0 20.0606 -12589.7578 176.9999)">\n\t\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#D7D8DB"/>\n\t\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#D0D3D6"/>\n\t\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t\t<path id="矩形_14_" class="st35" d="M10.5,1h132c5.2,0,9.5,4.3,9.5,9.5v1.1c0,5.2-4.3,9.5-9.5,9.5h-132\n\t\t\t\t\t\t\t\t\tc-5.2,0-9.5-4.3-9.5-9.5v-1.1C1,5.3,5.3,1,10.5,1z"/>\n\n\t\t\t\t\t\t\t\t\t<linearGradient id="矩形_25_" gradientUnits="userSpaceOnUse" x1="83.8129" y1="-10.3844" x2="83.8129" y2="-9.4242" gradientTransform="matrix(147.9184 0 0 16.9485 -12320.917 178.5564)">\n\t\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#CDCED1"/>\n\t\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#EEEFF1"/>\n\t\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t\t<path id="矩形_15_" class="st36" d="M10.1,2.6H143c4.1,0,7.5,3.4,7.5,7.5V12c0,4.1-3.4,7.5-7.5,7.5H10.1\n\t\t\t\t\t\t\t\t\tc-4.1,0-7.5-3.4-7.5-7.5v-1.9C2.6,5.9,5.9,2.6,10.1,2.6z"/>\n\t\t\t\t\t\t\t</g>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_26_" gradientUnits="userSpaceOnUse" x1="216.5575" y1="-4.354" x2="216.5575" y2="-3.354" gradientTransform="matrix(41.8333 0 0 40.4227 -8936.4668 291.8492)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#F0F1F2"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#E6E8EB"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="矩形_16_" class="st37" d="M115.9,115.9h25.8c1.1,0,2,0.9,2,2v29.7c0,1-0.7,1.8-1.6,2l-37.8,6.8\n\t\t\t\t\t\t\t\tc-1.1,0.2-2.1-0.5-2.3-1.6c0-0.1,0-0.2,0-0.4V130C101.9,122.1,108.1,115.9,115.9,115.9z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_27_" gradientUnits="userSpaceOnUse" x1="204.2732" y1="-7.978" x2="204.2732" y2="-6.978" gradientTransform="matrix(18.7149 0 0 22.0606 -3708.4031 295.1615)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E6E8EB"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#D7D9DC"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="矩形_17_" class="st38" d="M115.2,119.2h8.7l0,0v20.9l-18.7,1.2v-12.1C105.2,123.6,109.6,119.2,115.2,119.2z"/>\n\n\t\t\t\t\t\t\t\t<linearGradient id="矩形_28_" gradientUnits="userSpaceOnUse" x1="197.4332" y1="-8.398" x2="197.4332" y2="-7.398" gradientTransform="matrix(14.3114 0 0 20.9576 -2692.2952 295.1579)">\n\t\t\t\t\t\t\t\t<stop offset="0" style="stop-color:#E6E8EB"/>\n\t\t\t\t\t\t\t\t<stop offset="1" style="stop-color:#D7D9DC"/>\n\t\t\t\t\t\t\t</linearGradient>\n\t\t\t\t\t\t\t<path id="矩形_18_" class="st39" d="M126.1,119.2h13.3c0.6,0,1,0.4,1,1V139l0,0l-14.3,1.2\n\t\t\t\t\t\t\t\tC126.1,140.2,126.1,119.2,126.1,119.2z"/>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t\t<path id="形状结合_4_" class="st40" d="M192.2,169.8c87.5-7.7,156.8-33,154.7-56.7c-2.1-23.6-74.7-36.6-162.2-29\n\t\t\t\t\t\t\tS28,117.2,30,140.9S104.7,177.5,192.2,169.8z M192.2,168.8c-86.9,7.6-159.1-5.3-161.1-28s66.9-48,153.8-55.6\n\t\t\t\t\t\t\ts159.1,5.3,161.1,28C347.9,136,279,161.2,192.2,168.8z"/>\n\t\t\t\t\t\t<path id="形状结合_5_" class="st40" d="M235.3,51.9c45.1-17.3,79.9-21.2,88-7.3c12,20.8-40.2,73.4-116.5,117.5\n\t\t\t\t\t\t\ts-148,63-160,42.1S87,130.8,163.3,86.7C184.6,74.5,205.6,64.1,225,56c0.1,0.3,0.3,0.6,0.4,0.9C206,65,185,75.3,163.7,87.6\n\t\t\t\t\t\t\tC87.9,131.5,36,183.8,47.6,203.8s82.8,1.3,158.7-42.5S334,65.2,322.4,45.2c-7.7-13.4-42.2-9.4-86.8,7.8\n\t\t\t\t\t\t\tC235.5,52.6,235.4,52.3,235.3,51.9L235.3,51.9z"/>\n\t\t\t\t\t\t<g id="编组-9" transform="translate(0.000000, 38.000000)">\n\t\t\t\t\t\t\t<ellipse id="椭圆形_5_" class="st41" cx="303.1" cy="50.2" rx="2.8" ry="2.8"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_6_" class="st41" cx="316.3" cy="1.7" rx="1.7" ry="1.7"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_7_" class="st41" cx="121.6" cy="136.2" rx="2.8" ry="2.8"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_8_" class="st41" cx="33" cy="90.4" rx="1.1" ry="1.1"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_9_" class="st41" cx="290.5" cy="114.7" rx="1.1" ry="1.1"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形_10_" class="st41" cx="70.4" cy="35.3" rx="2.2" ry="2.2"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形备份-6" class="st41" cx="1.7" cy="68.9" rx="1.7" ry="1.7"/>\n\t\t\t\t\t\t\t<ellipse id="椭圆形备份-5_1_" class="st41" cx="233.8" cy="159.3" rx="1.7" ry="1.7"/>\n\t\t\t\t\t\t</g>\n\t\t\t\t\t</g>\n\t\t\t\t</g>\n\t\t\t</g>\n\t\t</g>\n\t</g>\n</g>\n</svg>',empty:'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:url(#Fill-1_1_);}\n\t.st1{fill:url(#路径-3_1_);}\n\t.st2{fill:url(#形状结合_2_);}\n\t.st3{fill:#C4C6CC;}\n</style>\n<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="241.4427" y1="84.9601" x2="247.5184" y2="50.5028" gradientTransform="matrix(1 0 0 -1 0 240)">\n\t<stop offset="0" style="stop-color:#FBFCFD"/>\n\t<stop offset="1" style="stop-color:#F0F2F5"/>\n</linearGradient>\n<path id="Fill-1" class="st0" d="M188,164.7c16.3-3.7,39.7-5.3,55.6-4.5s29.1,3.6,30,2.9c3.2-2.1,10-3,9.6-2.2\n\tc-0.3,0.8-4.7,3.4-3.3,3.8c1.4,0.4,15.6,2,21.5,3.3c5.9,1.2,9.7,2.4,11,2.4s3.3-1.7,11.8-0.9c0.2,0.3-1.9,0.4-3.8,1.4\n\ts-3.3,0.9-3.3,1.1s1.1-0.3,3.3,1.1c2.2,1.4,6.1,1.9,6.1,2.2s-4.9,2-13.2-0.6c-2.1-0.7-7,5.1-29.5,6.7s-60.5,2.9-60.5,2.9\n\ts2.3,2.9,5.6,3.8c0.2,0.3-1.3,1.4-7.8,0.2s-9.9-3.9-9.9-3.9s-12.8-0.8-17.6-1.6s-10.4-2.9-14.2-3.3c-3.8-0.4-21.1-2.4-14.5-6.9\n\tC164.7,172.5,171.7,168.4,188,164.7z"/>\n<linearGradient id="路径-3_1_" gradientUnits="userSpaceOnUse" x1="412.5606" y1="-3.1133" x2="412.5606" y2="-2.1773" gradientTransform="matrix(105.6 0 0 56.32 -43326.4023 278.4001)">\n\t<stop offset="0" style="stop-color:#E6E8EB;stop-opacity:0.9917"/>\n\t<stop offset="1" style="stop-color:#D4D6D9"/>\n</linearGradient>\n<polygon id="路径-3" class="st1" points="187.2,137.6 210.7,102.4 269.3,102.4 292.8,137.6 292.8,158.7 187.2,158.7 "/>\n<linearGradient id="形状结合_2_" gradientUnits="userSpaceOnUse" x1="412.5606" y1="-5" x2="412.5606" y2="-4.0079" gradientTransform="matrix(105.6 0 0 35.2 -43326.4023 313.6004)">\n\t<stop offset="0" style="stop-color:#EDEFF2"/>\n\t<stop offset="1" style="stop-color:#E8EAED"/>\n</linearGradient>\n<path id="形状结合" class="st2" d="M212.6,172.8h-23.4c-1.1,0-2-0.9-2-2v-33.2h23.4c1.1,0,2,0.9,2,2v7.4c0,1.1,0.8,1.9,1.9,2\n\th0.1h50.8c1.1,0,1.9-0.8,2-1.9V147v-7.4c0-1.1,0.9-2,2-2h23.4v33.2c0,1.1-0.9,2-2,2h-23.4H212.6z"/>\n<path id="形状结合_1_" class="st3" d="M182.4,169.6v8h8v1.6h-9.6v-9.6H182.4z"/>\n<path id="形状结合备份" class="st3" d="M289.6,177.6h8v-8h1.6v9.6h-9.6V177.6z"/>\n<g id="编组-4" transform="translate(91.688890, 11.874936) rotate(21.000000) translate(-91.688890, -11.874936) translate(90.888890, 0.674936)">\n\n\t\t<rect id="矩形_1_" x="183.1" y="24.5" transform="matrix(5.449899e-06 1 -1 5.449899e-06 209.9379 -159.3938)" class="st3" width="3.2" height="1.6"/>\n\n\t\t<rect id="矩形备份-6" x="183.1" y="30.9" transform="matrix(5.449898e-06 1 -1 5.449898e-06 216.3378 -152.9939)" class="st3" width="3.2" height="1.6"/>\n\n\t\t<rect id="矩形备份-7" x="183.1" y="37.3" transform="matrix(5.449898e-06 1 -1 5.449898e-06 222.7379 -146.5939)" class="st3" width="3.2" height="1.6"/>\n\n\t\t<rect id="矩形备份-8" x="183.1" y="43.7" transform="matrix(5.449899e-06 1 -1 5.449899e-06 229.1379 -140.1939)" class="st3" width="3.2" height="1.6"/>\n</g>\n<g id="编组-3" transform="translate(36.000000, 27.200000) rotate(-32.000000) translate(-36.000000, -27.200000) translate(35.200000, 12.800000)">\n\n\t\t<rect id="矩形_2_" x="91.7" y="161.1" transform="matrix(-1 5.426337e-06 -5.426337e-06 -1 185.0753 325.4438)" class="st3" width="1.6" height="3.2"/>\n\n\t\t<rect id="矩形备份-2" x="91.7" y="167.5" transform="matrix(-1 5.426336e-06 -5.426336e-06 -1 185.0755 338.2438)" class="st3" width="1.6" height="3.2"/>\n\n\t\t<rect id="矩形备份-3" x="91.7" y="173.9" transform="matrix(-1 5.426336e-06 -5.426336e-06 -1 185.0755 351.0439)" class="st3" width="1.6" height="3.2"/>\n\n\t\t<rect id="矩形备份-4" x="91.7" y="180.3" transform="matrix(-1 5.426336e-06 -5.426336e-06 -1 185.0755 363.8438)" class="st3" width="1.6" height="3.2"/>\n\n\t\t<rect id="矩形备份-5" x="91.7" y="186.7" transform="matrix(-1 5.426337e-06 -5.426337e-06 -1 185.0755 376.6438)" class="st3" width="1.6" height="3.2"/>\n</g>\n<circle id="椭圆形" class="st3" cx="268.8" cy="94.4" r="1.6"/>\n<circle id="椭圆形备份" class="st3" cx="227.2" cy="120" r="1.6"/>\n</svg>',"search-empty":'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:url(#Fill-1_1_);}\n\t.st1{fill:#C4C6CC;}\n\t.st2{fill:url(#矩形-2_1_);}\n\t.st3{fill:url(#矩形_6_);}\n\t.st4{fill:#DCDEE0;}\n\t.st5{fill:#D1D3D6;}\n\t.st6{fill:url(#矩形-3_1_);}\n\t.st7{fill:#E5E7EC;}\n\t.st8{fill:#DCDDE0;}\n\t.st9{fill:url(#路径-13_1_);}\n\t.st10{fill:url(#椭圆形_3_);stroke:url(#椭圆形_4_);}\n\t.st11{fill:url(#椭圆形_5_);stroke:url(#椭圆形_6_);}\n\t.st12{fill:#FFFFFF;}\n</style>\n<g id="页面-1">\n\t<g id="Exception_x2F_异常提示" transform="translate(-869.000000, -2918.000000)">\n\t\t<g id="搜索为空" transform="translate(869.000000, 2918.000000)">\n\t\t\t<linearGradient id="Fill-1_1_" gradientUnits="userSpaceOnUse" x1="243.0464" y1="167.9793" x2="245.8071" y2="194.2456">\n\t\t\t\t<stop offset="0" style="stop-color:#FBFCFD"/>\n\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="Fill-1" class="st0" d="M193.1,174.2c14.8-3.3,36-4.8,50.5-4.1c14.4,0.7,26.4,3.3,27.3,2.7c2.9-1.9,9-2.8,8.7-2\n\t\t\t\tc-0.3,0.7-4.3,3.1-3,3.4c1.3,0.4,14.1,1.9,19.5,3c5.3,1.1,8.8,2.2,9.9,2.2c1.2,0,3-1.6,10.7-0.8c0.1,0.3-1.7,0.4-3.4,1.3\n\t\t\t\tc-1.7,0.9-3,0.8-3,1s1-0.3,3,1s5.5,1.7,5.5,2s-4.5,1.8-12-0.6c-1.9-0.6-6.3,4.6-26.8,6.1s-55,2.6-55,2.6s2.1,2.7,5.1,3.4\n\t\t\t\tc0.2,0.3-1.2,1.3-7.1,0.2c-5.9-1.1-9-3.6-9-3.6s-11.6-0.7-16-1.5c-4.4-0.7-9.4-2.6-12.9-3s-19.2-2.2-13.2-6.3\n\t\t\t\tC172,181.2,178.3,177.5,193.1,174.2z"/>\n\t\t\t<path id="形状结合" class="st1" d="M193.1,177.4v9.4h9.4v1.9h-11.2v-11.2L193.1,177.4L193.1,177.4z"/>\n\t\t\t<path id="形状结合备份" class="st1" d="M200.6,64.9h-9.4v9.4h-1.9v-9.4l0,0V63h11.2L200.6,64.9L200.6,64.9z"/>\n\t\t\t<path id="形状结合备份-2" class="st1" d="M288.8,74.2v-9.4h-9.4V63h9.4l0,0h1.9v11.2H288.8z"/>\n\n\t\t\t\t<linearGradient id="矩形-2_1_" gradientUnits="userSpaceOnUse" x1="411.6768" y1="-1.6066" x2="411.6768" y2="-0.6707" gradientTransform="matrix(86.25 0 0 108.75 -35267.125 246.5)">\n\t\t\t\t<stop offset="0" style="stop-color:#EBEDF0;stop-opacity:0.9917"/>\n\t\t\t\t<stop offset="1" style="stop-color:#E1E3E6"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="矩形-2" class="st2" d="M197.9,70.5h84.2c0.6,0,1,0.4,1,1v106.8c0,0.6-0.4,1-1,1h-84.2c-0.6,0-1-0.4-1-1V71.5\n\t\t\t\tC196.9,70.9,197.3,70.5,197.9,70.5z"/>\n\n\t\t\t\t<linearGradient id="矩形_6_" gradientUnits="userSpaceOnUse" x1="410.6614" y1="-1.8773" x2="410.6614" y2="-0.8888" gradientTransform="matrix(71.25 0 0 93.75 -29019.625 254)">\n\t\t\t\t<stop offset="0" style="stop-color:#FFFFFF"/>\n\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t</linearGradient>\n\t\t\t<rect id="矩形_1_" x="204.4" y="78" class="st3" width="71.2" height="93.8"/>\n\t\t\t<rect id="矩形_2_" x="219.4" y="81.8" class="st4" width="41.2" height="1.9"/>\n\t\t\t<rect id="矩形_3_" x="204.4" y="171.8" class="st5" width="71.2" height="1.9"/>\n\n\t\t\t\t<linearGradient id="矩形-3_1_" gradientUnits="userSpaceOnUse" x1="406.4152" y1="-11.7334" x2="406.4152" y2="-10.7413" gradientTransform="matrix(41.25 0 0 15 -16524.625 242.75)">\n\t\t\t\t<stop offset="0" style="stop-color:#EDEFF2"/>\n\t\t\t\t<stop offset="1" style="stop-color:#E8EAED"/>\n\t\t\t</linearGradient>\n\t\t\t<rect id="矩形-3" x="219.4" y="66.8" class="st6" width="41.2" height="15"/>\n\t\t\t<g id="编组-3" transform="translate(223.125000, 98.625000)">\n\t\t\t\t<rect id="矩形_4_" class="st1" width="3.8" height="1.9"/>\n\t\t\t\t<rect id="矩形备份" x="7.5" class="st1" width="3.8" height="1.9"/>\n\t\t\t\t<rect id="矩形备份-2" x="15" class="st1" width="3.8" height="1.9"/>\n\t\t\t\t<rect id="矩形备份-3" x="22.5" class="st1" width="3.8" height="1.9"/>\n\t\t\t\t<rect id="矩形备份-4" x="30" class="st1" width="3.8" height="1.9"/>\n\t\t\t</g>\n\t\t\t<g id="编组-6" transform="translate(228.750000, 113.625000)">\n\t\t\t\t<circle id="椭圆形" class="st7" cx="24.4" cy="26.2" r="24.4"/>\n\t\t\t\t<path id="路径-12" class="st7" d="M39,45l3.1,3.2c-0.6,0.8-0.6,1.5,0,2.2s2.2,2.5,4.7,5.3v-7.5l-6.1-5L39,45z"/>\n\n\t\t\t\t\t<g id="编组-4" transform="translate(50.226317, 51.709077) rotate(-45.000000) translate(-50.226317, -51.709077) translate(44.601317, 36.709077)">\n\n\t\t\t\t\t\t<rect id="矩形_5_" x="3.8" y="0" transform="matrix(-1 5.070363e-06 -5.070363e-06 -1 11.4 9.35)" class="st8" width="3.7" height="9.4"/>\n\n\t\t\t\t\t\t<linearGradient id="路径-13_1_" gradientUnits="userSpaceOnUse" x1="-109.3915" y1="-55.9383" x2="-109.5578" y2="-55.8905" gradientTransform="matrix(9.2129 0 0 22.5 1013.9285 1277.281)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#D7D8DB"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#BEBFC2"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<path id="路径-13" class="st9" d="M3.7,5.7h4c0.5,0,1,0.4,1,0.9l1.5,20.5c0,0.6-0.4,1-0.9,1.1c0,0,0,0-0.1,0H2\n\t\t\t\t\t\tc-0.6,0-1-0.4-1-1v-0.1L2.7,6.6C2.7,6.1,3.2,5.7,3.7,5.7z"/>\n\t\t\t\t</g>\n\t\t\t\t<g id="编组-5">\n\n\t\t\t\t\t\t<linearGradient id="椭圆形_3_" gradientUnits="userSpaceOnUse" x1="-49.7115" y1="-3.6859" x2="-49.7115" y2="-2.6859" gradientTransform="matrix(47.75 0 0 47.75 2398.125 176.5)">\n\t\t\t\t\t\t<stop offset="1.530828e-03" style="stop-color:#DDDEE0"/>\n\t\t\t\t\t\t<stop offset="0.998" style="stop-color:#C3C5C7"/>\n\t\t\t\t\t</linearGradient>\n\n\t\t\t\t\t\t<linearGradient id="椭圆形_4_" gradientUnits="userSpaceOnUse" x1="-49.7115" y1="-3.6858" x2="-49.7115" y2="-2.7054" gradientTransform="matrix(47.75 0 0 47.75 2398.125 176.5)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#DDDEE0"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#BEC0C2"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<circle id="椭圆形_1_" class="st10" cx="24.4" cy="24.4" r="23.9"/>\n\n\t\t\t\t\t\t<linearGradient id="椭圆形_5_" gradientUnits="userSpaceOnUse" x1="-52.3966" y1="-4.822" x2="-52.3966" y2="-3.838" gradientTransform="matrix(36.5 0 0 36.5 1936.875 182.125)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#FEFEFE"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F2F4F7"/>\n\t\t\t\t\t</linearGradient>\n\n\t\t\t\t\t\t<linearGradient id="椭圆形_6_" gradientUnits="userSpaceOnUse" x1="-52.3966" y1="-4.822" x2="-52.3966" y2="-3.8398" gradientTransform="matrix(36.5 0 0 36.5 1936.875 182.125)">\n\t\t\t\t\t\t<stop offset="0" style="stop-color:#F3F4F5"/>\n\t\t\t\t\t\t<stop offset="1" style="stop-color:#F3F5F7"/>\n\t\t\t\t\t</linearGradient>\n\t\t\t\t\t<circle id="椭圆形_2_" class="st11" cx="24.4" cy="24.4" r="18.2"/>\n\t\t\t\t\t<path id="形状结合_1_" class="st12" d="M23.5,12.3c5.8,0,10.9,3.3,13.4,8.2c-2.5-1.6-5.5-2.6-8.7-2.6c-4,0-7.7,1.5-10.5,4\n\t\t\t\t\t\tL14,15.7C16.6,13.6,19.9,12.3,23.5,12.3z"/>\n\t\t\t\t</g>\n\t\t\t\t<polygon id="路径-14" class="st5" points="46.9,53.4 46.9,55.6 54.4,64.4 54.4,62.3 \t\t\t\t"/>\n\t\t\t</g>\n\t\t</g>\n\t</g>\n</g>\n</svg>',login:'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="图层_2_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"\n\t y="0px" viewBox="0 0 480 240" style="enable-background:new 0 0 480 240;" xml:space="preserve">\n<style type="text/css">\n\t.st0{fill:url(#形状结合_3_);}\n\t.st1{fill:url(#形状结合_7_);}\n\t.st2{fill:#C4C6CC;}\n\t.st3{fill:url(#形状结合_9_);}\n\t.st4{fill:url(#形状结合_10_);fill-opacity:0.6;}\n\t.st5{fill:url(#形状结合_11_);}\n\t.st6{fill:url(#路径-3_1_);}\n\t.st7{fill:url(#形状结合_12_);}\n\t.st8{fill:url(#路径-3_4_);}\n\t.st9{fill:url(#形状结合_13_);}\n\t.st10{fill:url(#形状结合_15_);}\n\t.st11{fill:#979BA5;}\n\t.st12{fill:url(#SVGID_1_);}\n\t.st13{fill:url(#SVGID_2_);}\n\t.st14{fill:url(#形状结合_16_);}\n\t.st15{fill:url(#形状结合备份-2_2_);}\n\t.st16{fill:#343434;fill-opacity:0.1;}\n</style>\n<g id="页面-1">\n\t<g id="Exception_x2F_异常提示_x2F_灰白对比" transform="translate(-924.000000, -707.000000)">\n\t\t<g id="需要登录" transform="translate(924.000000, 707.000000)">\n\n\t\t\t\t<linearGradient id="形状结合_3_" gradientUnits="userSpaceOnUse" x1="1019.9006" y1="-8.3354" x2="1019.9006" y2="-7.3367" gradientTransform="matrix(200.0257 0 0 58.3047 -203759.5469 663.9944)">\n\t\t\t\t<stop offset="0" style="stop-color:#F5F6F7"/>\n\t\t\t\t<stop offset="1" style="stop-color:#F7F9FC"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_30_" class="st0" d="M249.6,178v8.7c0,2.5,2.1,4.6,4.6,4.6s4.5,1.9,4.6,4.4v0.2v0.9\n\t\t\t\tc1.1-0.5,2.3-0.8,3.5-0.8c4.3,0,7.8,3.2,8.4,7.3c1-0.8,2.2-1.3,3.6-1.3c1.2,0,2.3,0.4,3.2,1c2.3-4.2,6.7-7,11.8-7\n\t\t\t\tc7.2,0,13,5.6,13.5,12.7c4.9,0.7,10.1,1.5,13.3,2.1c7.2,1.5,11.8,3,13.4,3s4-2.1,14.5-1.1c0.2,0.4-2.3,0.5-4.7,1.7s-4,1.1-4,1.4\n\t\t\t\ts1.3-0.4,4,1.3s7.5,2.3,7.5,2.8s-6.1,2.4-16.2-0.8c-2.6-0.8-8.6,6.2-36.1,8.2c-27.6,2-74.2,3.5-74.2,3.5s2.8,3.6,6.9,4.6\n\t\t\t\tc0.2,0.4-1.6,1.7-9.6,0.2c-7.9-1.5-12.2-4.8-12.2-4.8s-15.7-1-21.6-2c-5.9-1-12.7-3.5-17.4-4s-25.9-3-17.8-8.5\n\t\t\t\tc0,0,7.2-4.2,23.6-8.3c2-3.5,5.7-5.9,10.1-5.9c2.7,0,5.2,0.9,7.1,2.5c1.4-0.2,2.9-0.4,4.4-0.6c1.2-1.1,2.8-1.8,4.5-1.8\n\t\t\t\tc1.2,0,2.3,0.3,3.2,0.9l0.5-0.1c1-3.9,4.5-6.8,8.7-6.8c2.8,0,5.4,1.3,7,3.3v-2.8c0-2.9,2.4-5.3,5.3-5.3c2.8,0,5.2-2.2,5.3-5.1\n\t\t\t\tv-0.2v-8L249.6,178L249.6,178z"/>\n\n\t\t\t\t<linearGradient id="形状结合_7_" gradientUnits="userSpaceOnUse" x1="1003.2384" y1="-43.6818" x2="1003.9461" y2="-43.6818" gradientTransform="matrix(44 0 0 11 -43919.1992 655.5)">\n\t\t\t\t<stop offset="0" style="stop-color:#E2E3E6"/>\n\t\t\t\t<stop offset="0.4543" style="stop-color:#ECEEF0"/>\n\t\t\t\t<stop offset="1" style="stop-color:#E2E4E6"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_29_" class="st1" d="M216.8,169.5h44v6c0,2.8-9.8,5-22,5s-22-2.2-22-5l0,0L216.8,169.5L216.8,169.5z"/>\n\t\t\t<path id="形状结合备份_1_" class="st2" d="M216.8,165h44v6c0,2.8-9.8,5-22,5s-22-2.2-22-5l0,0L216.8,165L216.8,165z"/>\n\n\t\t\t\t<linearGradient id="形状结合_9_" gradientUnits="userSpaceOnUse" x1="947.4888" y1="-8.3848" x2="948.1863" y2="-8.3848" gradientTransform="matrix(12 0 0 54.7 -11177.2002 581.2991)">\n\t\t\t\t<stop offset="0" style="stop-color:#F1F3F5"/>\n\t\t\t\t<stop offset="0.4576" style="stop-color:#F4F5F7"/>\n\t\t\t\t<stop offset="1" style="stop-color:#ECEEF0"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_28_" class="st3" d="M196.8,95.3c1.8,0,6,8.3,6,11.7l0,0v43h-12v-43v-0.2C190.9,103.4,195,95.3,196.8,95.3\n\t\t\t\tz"/>\n\n\t\t\t\t<linearGradient id="形状结合_10_" gradientUnits="userSpaceOnUse" x1="947.8464" y1="-19.8282" x2="947.827" y2="-19.6418" gradientTransform="matrix(12 0 0 24.2 -11093.2002 602.9993)">\n\t\t\t\t<stop offset="0" style="stop-color:#CDD0D2;stop-opacity:0"/>\n\t\t\t\t<stop offset="1" style="stop-color:#CDD0D2"/>\n\t\t\t</linearGradient>\n\t\t\t<polygon id="形状结合_26_" class="st4" points="274.8,117 274.8,132.6 279.7,141.2 286.8,135.4 286.8,126 \t\t\t"/>\n\n\t\t\t\t<linearGradient id="形状结合_11_" gradientUnits="userSpaceOnUse" x1="948.1716" y1="-8.3848" x2="947.4741" y2="-8.3848" gradientTransform="matrix(12 0 0 54.7 -11093.2002 581.2991)">\n\t\t\t\t<stop offset="0" style="stop-color:#F1F3F5"/>\n\t\t\t\t<stop offset="0.4576" style="stop-color:#F4F5F7"/>\n\t\t\t\t<stop offset="1" style="stop-color:#ECEEF0"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_25_" class="st5" d="M280.8,95.3c-1.8,0-6,8.3-6,11.7l0,0v43h12v-43v-0.2\n\t\t\t\tC286.6,103.4,282.5,95.3,280.8,95.3z"/>\n\t\t\t<g id="编组_3_" transform="translate(80.760499, 77.000000)">\n\n\t\t\t\t\t<linearGradient id="路径-3_1_" gradientUnits="userSpaceOnUse" x1="514.3141" y1="-6.8905" x2="514.3943" y2="-6.5204" gradientTransform="matrix(36 0 0 66 -18395.7324 506)">\n\t\t\t\t\t<stop offset="0" style="stop-color:#E8E9EB"/>\n\t\t\t\t\t<stop offset="1" style="stop-color:#D7D8DB"/>\n\t\t\t\t</linearGradient>\n\t\t\t\t<path id="路径-3_3_" class="st6" d="M135,20c-1.4,7-4.5,13.3-9.4,19.1c-7.3,8.7-15.2,13.6-18.4,23.8\n\t\t\t\t\tc-2.1,6.8-3.2,12.9-3.2,18.3l32.1,4.8l3.9-4.8L135,20z"/>\n\n\t\t\t\t\t<linearGradient id="形状结合_12_" gradientUnits="userSpaceOnUse" x1="469.125" y1="-6.98" x2="469.1263" y2="-6.9681" gradientTransform="matrix(13 0 0 64.5 -5965.6816 507.5)">\n\t\t\t\t\t<stop offset="0" style="stop-color:#EBEDEF;stop-opacity:0"/>\n\t\t\t\t\t<stop offset="1" style="stop-color:#C8CACC"/>\n\t\t\t\t</linearGradient>\n\t\t\t\t<path id="形状结合_24_" class="st7" d="M135.2,21.5l4.8,59.7l-3.9,4.8l-9.1-1.4l3.3-52.2c2-3.5,3.4-7.1,4.4-10.9\n\t\t\t\t\tC134.7,21.5,135.2,21.5,135.2,21.5z"/>\n\t\t\t</g>\n\n\t\t\t\t<g id="编组_2_" transform="translate(171.000000, 110.000000) scale(-1, 1) translate(-171.000000, -110.000000) translate(153.000000, 77.000000)">\n\n\t\t\t\t\t<linearGradient id="路径-3_4_" gradientUnits="userSpaceOnUse" x1="26.1195" y1="-6.7506" x2="26.1998" y2="-6.3805" gradientTransform="matrix(36 0 0 66 -1024 506)">\n\t\t\t\t\t<stop offset="0" style="stop-color:#E8E9EB"/>\n\t\t\t\t\t<stop offset="1" style="stop-color:#D7D8DB"/>\n\t\t\t\t</linearGradient>\n\t\t\t\t<path id="路径-3_2_" class="st8" d="M-73,20c-1.4,7-4.5,13.3-9.4,19.1c-7.3,8.7-15.2,13.6-18.4,23.8\n\t\t\t\t\tc-2.1,6.8-3.2,12.9-3.2,18.3l32.1,4.8l3.9-4.8L-73,20z"/>\n\t\t\t</g>\n\n\t\t\t\t<linearGradient id="形状结合_13_" gradientUnits="userSpaceOnUse" x1="659.6453" y1="-6.98" x2="659.6465" y2="-6.968" gradientTransform="matrix(-13 0 0 64.5 8839.2148 584.5)">\n\t\t\t\t<stop offset="0" style="stop-color:#EBEDEF;stop-opacity:0"/>\n\t\t\t\t<stop offset="1" style="stop-color:#C8CACC"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_2_" class="st9" d="M261.6,98.5l-4.8,59.7l3.9,4.8l9.1-1.4l-3.3-52.2c-2-3.5-3.4-7.1-4.4-10.9\n\t\t\t\tC262.1,98.5,261.6,98.5,261.6,98.5z"/>\n\n\t\t\t\t<linearGradient id="形状结合_15_" gradientUnits="userSpaceOnUse" x1="1004.9811" y1="-2.6558" x2="1005.6887" y2="-2.6558" gradientTransform="matrix(48 0 0 154 -48017.1992 506)">\n\t\t\t\t<stop offset="0" style="stop-color:#EAEBED"/>\n\t\t\t\t<stop offset="0.4543" style="stop-color:#F4F5F7"/>\n\t\t\t\t<stop offset="1" style="stop-color:#EEF0F2"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_18_" class="st10" d="M238.8,20c7,0,24,27.7,24,41l0,0v106c0,0.1,0,0.2,0,0.3s0,0.2,0,0.2\n\t\t\t\tc0,3.6-10.7,6.5-24,6.5s-24-2.9-24-6.5c0-0.1,0-0.2,0-0.2c0-0.1,0-0.2,0-0.3V61v-0.4C215.1,47.2,231.8,20,238.8,20z"/>\n\t\t\t<g>\n\t\t\t\t<circle id="椭圆形_7_" class="st11" cx="238.8" cy="71" r="9.5"/>\n\n\t\t\t\t\t<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="976.079" y1="-25.3334" x2="976.079" y2="-24.8244" gradientTransform="matrix(19 0 0 19 -18306.6992 547.5)">\n\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t<stop offset="1" style="stop-color:#F0F2F5"/>\n\t\t\t\t</linearGradient>\n\t\t\t\t<path class="st12" d="M238.8,81c-5.5,0-10-4.5-10-10s4.5-10,10-10s10,4.5,10,10S244.3,81,238.8,81z M238.8,62c-5,0-9,4-9,9\n\t\t\t\t\ts4,9,9,9s9-4,9-9S243.8,62,238.8,62z"/>\n\t\t\t</g>\n\t\t\t<g>\n\t\t\t\t<circle id="椭圆形备份-11_1_" class="st11" cx="238.8" cy="89" r="3.5"/>\n\n\t\t\t\t\t<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="893.0715" y1="-69.2048" x2="893.0715" y2="-68.6522" gradientTransform="matrix(7 0 0 7 -6012.7002 571.5)">\n\t\t\t\t\t<stop offset="0" style="stop-color:#E1E2E6"/>\n\t\t\t\t\t<stop offset="1" style="stop-color:#F0F2F5"/>\n\t\t\t\t</linearGradient>\n\t\t\t\t<path class="st13" d="M238.8,93c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S241,93,238.8,93z M238.8,86c-1.7,0-3,1.3-3,3s1.3,3,3,3\n\t\t\t\t\ts3-1.3,3-3S240.5,86,238.8,86z"/>\n\t\t\t</g>\n\n\t\t\t\t<linearGradient id="形状结合_16_" gradientUnits="userSpaceOnUse" x1="1004.9811" y1="-70.9706" x2="1005.6854" y2="-70.9706" gradientTransform="matrix(48 0 0 6.8 -48017.1992 624.0004)">\n\t\t\t\t<stop offset="0" style="stop-color:#E2E3E6"/>\n\t\t\t\t<stop offset="0.4766" style="stop-color:#FBFDFF"/>\n\t\t\t\t<stop offset="1" style="stop-color:#E2E4E6"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合_14_" class="st14" d="M262.8,138v2.5c-3.9,2.5-13.2,4.3-24,4.3s-20.1-1.8-24-4.3V138l0,0\n\t\t\t\tc0.6,2.8,11.1,5.5,24,5.5S262.2,140.8,262.8,138L262.8,138z"/>\n\n\t\t\t\t<linearGradient id="形状结合备份-2_2_" gradientUnits="userSpaceOnUse" x1="1004.9811" y1="-70.9706" x2="1005.6854" y2="-70.9706" gradientTransform="matrix(48 0 0 6.8 -48017.1992 629.0004)">\n\t\t\t\t<stop offset="0" style="stop-color:#E2E3E6"/>\n\t\t\t\t<stop offset="0.4766" style="stop-color:#FBFDFF"/>\n\t\t\t\t<stop offset="1" style="stop-color:#E2E4E6"/>\n\t\t\t</linearGradient>\n\t\t\t<path id="形状结合备份-2_1_" class="st15" d="M262.8,143v2.5c-3.9,2.5-13.2,4.3-24,4.3s-20.1-1.8-24-4.3V143l0,0\n\t\t\t\tc0.6,2.8,11.1,5.5,24,5.5S262.2,145.8,262.8,143L262.8,143z"/>\n\t\t\t<path id="形状结合_8_" class="st16" d="M262.8,73c43.2-8.6,77.1-6.3,80.9,6.7c4.6,15.9-37.4,41.9-93.6,58.1\n\t\t\t\ts-105.6,16.3-110.2,0.4c-4-14.1,28.4-36.1,74.9-52.1v1.1c-45.8,15.9-77.7,37.5-73.9,50.8c4.3,15.1,53.2,14.9,108.9-1.1\n\t\t\t\ts97.3-41.7,92.9-56.8c-3.5-12.4-37.2-14.5-79.9-6V73L262.8,73z"/>\n\t\t\t<path id="形状结合_1_" class="st16" d="M105.2,76c3.8-14,50.7-14,109.5-1.1v1c-58.3-12.8-105-12.9-108.6,0.3\n\t\t\t\tc-4,15.1,49.1,43.2,118.5,61.8s129.5,20.9,133.6,5.8c3.6-13.4-37.7-37-95.6-55.1v-1.1c58.6,18.3,100.3,42.2,96.5,56.4\n\t\t\t\tc-4.3,16-64.6,13.7-134.8-5.1S101,92,105.2,76z"/>\n\t\t\t<circle id="椭圆形_6_" class="st2" cx="317.8" cy="109" r="2"/>\n\t\t\t<circle id="椭圆形_5_" class="st2" cx="117.3" cy="121.5" r="1.5"/>\n\t\t\t<circle id="椭圆形_4_" class="st2" cx="281.8" cy="58" r="1"/>\n\t\t\t<circle id="椭圆形_3_" class="st2" cx="191.8" cy="164" r="1"/>\n\t\t\t<circle id="椭圆形_1_" class="st2" cx="351.8" cy="150" r="2"/>\n\t\t</g>\n\t</g>\n</g>\n</svg>'};return function(){var n,i;return s.createVNode("div",{class:["bk-exception-wrapper",t.extCls]},[s.createVNode("div",{class:["bk-exception-img","".concat(t.scene,"-img")]},[s.createVNode("img",{class:"exception-image",src:r[t.type],alt:"type"},null)]),s.createVNode("div",{class:["bk-exception-text","".concat(t.scene,"-text")]},[null!==(i=null===(n=e.default)||void 0===n?void 0:n.call(e))&&void 0!==i?i:l[t.type]])])}}}),l=n.withInstall(e);t.default=l,Object.defineProperty(t,"__esModule",{value:!0})}));
@@ -0,0 +1,42 @@
1
+ .bk-fixed-navbar {
2
+ position: fixed;
3
+ right: 10px;
4
+ width: 52px;
5
+ padding: 22px 14px;
6
+ background: #fff;
7
+ border-radius: 26px;
8
+ opacity: 1;
9
+ box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
10
+ box-sizing: border-box;
11
+ }
12
+ .bk-fixed-navbar.middle {
13
+ top: 50%;
14
+ transform: translateY(-50%);
15
+ }
16
+ .bk-fixed-navbar.bottom {
17
+ bottom: 10%;
18
+ }
19
+ .bk-fixed-navbar.top {
20
+ top: 10%;
21
+ }
22
+ .bk-fixed-navbar .fixed-navbar-item {
23
+ display: flex;
24
+ color: #63656e;
25
+ align-items: center;
26
+ justify-content: center;
27
+ flex-direction: column;
28
+ }
29
+ .bk-fixed-navbar .fixed-navbar-item:hover {
30
+ color: #3a84ff;
31
+ cursor: pointer;
32
+ }
33
+ .bk-fixed-navbar .fixed-navbar-item:not(:last-of-type) {
34
+ margin-bottom: 25px;
35
+ }
36
+ .bk-fixed-navbar .fixed-navbar-item .icon {
37
+ margin-bottom: 5px;
38
+ font-size: 17px;
39
+ }
40
+ .bk-fixed-navbar .fixed-navbar-item .text {
41
+ font-size: 12px;
42
+ }
@@ -0,0 +1,28 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ navItems: import("vue-types").VueTypeValidableDef<unknown[]> & {
3
+ default: () => unknown[];
4
+ } & {
5
+ default: () => unknown[];
6
+ };
7
+ extCls: import("vue-types").VueTypeValidableDef<string> & {
8
+ default: string;
9
+ } & {
10
+ default: string;
11
+ };
12
+ position: import("vue-types").VueTypeDef<string> & {
13
+ default: string;
14
+ };
15
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
16
+ navItems?: unknown;
17
+ extCls?: unknown;
18
+ position?: unknown;
19
+ } & {
20
+ extCls: string;
21
+ position: string;
22
+ navItems: unknown[];
23
+ } & {}> & {}, {
24
+ extCls: string;
25
+ position: string;
26
+ navItems: unknown[];
27
+ }>;
28
+ export default _default;
@@ -0,0 +1,53 @@
1
+ @import '../styles/themes/themes.less';
2
+
3
+ .@{bk-prefix}-fixed-navbar {
4
+ position: fixed;
5
+ right: 10px;
6
+ width: 52px;
7
+ padding: 22px 14px;
8
+ background: @fixed-navbar-background;
9
+ border-radius: 26px;
10
+ opacity: 1;
11
+ box-shadow: 0px 2px 4px 0px @fixed-navbar-boxshadow-color;
12
+ box-sizing: border-box;
13
+
14
+ &.middle {
15
+ top: 50%;
16
+ transform: translateY(-50%);
17
+ }
18
+
19
+ &.bottom {
20
+ bottom: 10%;
21
+ }
22
+
23
+ &.top {
24
+ top: 10%;
25
+ }
26
+
27
+ .fixed-navbar-item {
28
+ display: flex;
29
+ color: @default-color;
30
+ align-items: center;
31
+ justify-content: center;
32
+ flex-direction: column;
33
+
34
+ &:hover {
35
+ color: @primary-color;
36
+ cursor: pointer;
37
+ }
38
+
39
+ &:not(:last-of-type) {
40
+ margin-bottom: 25px;
41
+ }
42
+
43
+ .icon {
44
+ margin-bottom: 5px;
45
+ font-size: 17px;
46
+ }
47
+
48
+ .text {
49
+ font-size: 12px;
50
+ }
51
+ }
52
+
53
+ }