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
package/dist/style.css CHANGED
@@ -1,469 +1,4051 @@
1
+ html,
2
+ body {
3
+ padding: 0;
4
+ margin: 0;
5
+ }
6
+ * {
7
+ box-sizing: border-box;
8
+ }
9
+ /**
10
+ * HTML5 display definitions
11
+ * ==========================================================================
12
+ *
13
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
14
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
15
+ * Correct `block` display not defined for `main` in IE 11.
16
+ */
17
+ article,
18
+ aside,
19
+ details,
20
+ figcaption,
21
+ figure,
22
+ footer,
23
+ header,
24
+ hgroup,
25
+ main,
26
+ menu,
27
+ nav,
28
+ section,
29
+ summary {
30
+ display: block;
31
+ }
32
+ /**
33
+ * 1. Correct `inline-block` display not defined in IE 8/9.
34
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
35
+ */
36
+ audio,
37
+ canvas,
38
+ progress,
39
+ video {
40
+ /* 1 */
41
+ display: inline-block;
42
+ /* 2 */
43
+ vertical-align: baseline;
44
+ }
45
+ /**
46
+ * Prevent modern browsers from displaying `audio` without controls.
47
+ * Remove excess height in iOS 5 devices.
48
+ */
49
+ audio:not([controls]) {
50
+ display: none;
51
+ height: 0;
52
+ }
53
+ /**
54
+ * Address `[hidden]` styling not present in IE 8/9/10.
55
+ * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
56
+ */
57
+ [hidden],
58
+ template {
59
+ display: none;
60
+ }
61
+ /**
62
+ * Links
63
+ * ==========================================================================
64
+ *
65
+ * Remove the gray background color from active links in IE 10.
66
+ */
67
+ a {
68
+ background-color: transparent;
69
+ }
70
+ /**
71
+ * Improve readability of focused elements when they are also in an
72
+ * active/hover state.
73
+ */
74
+ a:active,
75
+ a:hover {
76
+ outline: 0;
77
+ }
78
+ /**
79
+ * Text-level semantics
80
+ * ==========================================================================
81
+ *
82
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
83
+ */
84
+ abbr[title] {
85
+ border-bottom: 1px dotted;
86
+ }
87
+ /**
88
+ * Embedded content
89
+ * ==========================================================================
90
+ *
91
+ * Remove border when inside `a` element in IE 8/9/10.
92
+ */
93
+ img {
94
+ border: 0;
95
+ }
96
+ /**
97
+ * Correct overflow not hidden in IE 9/10/11.
98
+ */
99
+ svg:not(:root) {
100
+ overflow: hidden;
101
+ }
102
+ /**
103
+ * Grouping content
104
+ * ==========================================================================
105
+ *
106
+ * Address margin not present in IE 8/9 and Safari.
107
+ */
108
+ figure {
109
+ margin: 1em 40px;
110
+ }
111
+ /**
112
+ * Address differences between Firefox and other browsers.
113
+ */
114
+ hr {
115
+ height: 0;
116
+ box-sizing: content-box;
117
+ }
118
+ /**
119
+ * Address odd `em`-unit font size rendering in all browsers.
120
+ *
121
+ * Forms
122
+ * ==========================================================================
123
+ *
124
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
125
+ * styling of `select`, unless a `border` property is set.
126
+ *
127
+ * 1. Correct color not being inherited.
128
+ * Known issue: affects color of disabled elements.
129
+ * 2. Correct font properties not being inherited.
130
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
131
+ */
132
+ button,
133
+ input,
134
+ optgroup,
135
+ select,
136
+ textarea {
137
+ /* 3 */
138
+ margin: 0;
139
+ /* 2 */
140
+ font: inherit;
141
+ /* 1 */
142
+ color: inherit;
143
+ }
144
+ /**
145
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
146
+ */
147
+ button {
148
+ overflow: visible;
149
+ }
150
+ /**
151
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
152
+ * All other form control elements do not inherit `text-transform` values.
153
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
154
+ * Correct `select` style inheritance in Firefox.
155
+ */
156
+ button,
157
+ select {
158
+ text-transform: none;
159
+ }
160
+ /**
161
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
162
+ * 2. Correct inability to style clickable `input` types in iOS.
163
+ * 3. Improve usability and consistency of cursor style between image-type `input` and others.
164
+ */
165
+ button,
166
+ html input[type='button'],
167
+ input[type='reset'],
168
+ input[type='submit'] {
169
+ /* 3 */
170
+ cursor: pointer;
171
+ /* 2 */
172
+ appearance: button;
173
+ }
174
+ /* Re-set default cursor for disabled elements. */
175
+ button[disabled],
176
+ html input[disabled] {
177
+ cursor: default;
178
+ }
179
+ /* Remove inner padding and border in Firefox 4+. */
180
+ button::-moz-focus-inner,
181
+ input::-moz-focus-inner {
182
+ padding: 0;
183
+ border: 0;
184
+ }
185
+ /**
186
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet.
187
+ */
188
+ input {
189
+ line-height: normal;
190
+ }
191
+ /**
192
+ * It's recommended that you don't attempt to style these elements.
193
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
194
+ *
195
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
196
+ * 2. Remove excess padding in IE 8/9/10.
197
+ */
198
+ input[type='checkbox'],
199
+ input[type='radio'] {
200
+ /* 2 */
201
+ padding: 0;
202
+ /* 1 */
203
+ box-sizing: border-box;
204
+ }
205
+ /**
206
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
207
+ * `font-size` values of the `input`, it causes the cursor style of the
208
+ * decrement button to change from `default` to `text`.
209
+ */
210
+ input[type='number']::-webkit-inner-spin-button,
211
+ input[type='number']::-webkit-outer-spin-button {
212
+ height: auto;
213
+ }
214
+ ::-ms-clear,
215
+ ::-ms-reveal {
216
+ display: none;
217
+ }
218
+ input[type='text']::-ms-clear {
219
+ display: none;
220
+ }
221
+ input[type='text']::-ms-reveal {
222
+ display: none;
223
+ }
224
+ /**
225
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
226
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
227
+ */
228
+ input[type='search'] {
229
+ /* 2 */
230
+ box-sizing: content-box;
231
+ /* 1 */
232
+ appearance: textfield;
233
+ }
234
+ /**
235
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
236
+ * Safari (but not Chrome) clips the cancel button when the search input has
237
+ * padding (and `textfield` appearance).
238
+ */
239
+ input[type='search']::-webkit-search-cancel-button,
240
+ input[type='search']::-webkit-search-decoration {
241
+ appearance: none;
242
+ }
243
+ /**
244
+ * Define consistent border, margin, and padding.
245
+ */
246
+ fieldset {
247
+ padding: 0.35em 0.625em 0.75em;
248
+ margin: 0 2px;
249
+ border: 1px solid #c0c0c0;
250
+ }
251
+ /**
252
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
253
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
254
+ */
255
+ legend {
256
+ /* 2 */
257
+ padding: 0;
258
+ /* 1 */
259
+ border: 0;
260
+ }
261
+ /**
262
+ * Remove default vertical scrollbar in IE 8/9/10/11.
263
+ */
264
+ textarea {
265
+ overflow: auto;
266
+ }
267
+ /**
268
+ * Don't inherit the `font-weight` (applied by a rule above).
269
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
270
+ */
271
+ optgroup {
272
+ font-weight: bold;
273
+ }
274
+ .bk-alert {
275
+ position: relative;
276
+ font-size: 12px;
277
+ color: #63656e;
278
+ text-align: left;
279
+ word-wrap: break-word;
280
+ border: 1px solid;
281
+ border-radius: 2px;
282
+ }
283
+ .bk-alert .bk-alert-icon-info {
284
+ margin-right: 8px;
285
+ font-size: 16px;
286
+ }
287
+ .bk-alert .icon-close {
288
+ font-size: 17px;
289
+ }
290
+ .bk-alert-wraper {
291
+ display: flex;
292
+ padding: 8px 10px;
293
+ }
294
+ .bk-alert-info {
295
+ background-color: #f0f8ff;
296
+ border-color: #c5daff;
297
+ }
298
+ .bk-alert-info .bk-alert-icon-info {
299
+ color: #3a84ff;
300
+ }
301
+ .bk-alert-success {
302
+ background-color: #f2fff4;
303
+ border-color: #94f5a4;
304
+ }
305
+ .bk-alert-success .bk-alert-icon-info {
306
+ color: #2dcb56;
307
+ }
308
+ .bk-alert-warning {
309
+ background-color: #fff4e2;
310
+ border-color: #ffdfac;
311
+ }
312
+ .bk-alert-warning .bk-alert-icon-info {
313
+ color: #ff9c01;
314
+ }
315
+ .bk-alert-error {
316
+ background-color: #ffeded;
317
+ border-color: #ffd2d2;
318
+ }
319
+ .bk-alert-error .bk-alert-icon-info {
320
+ color: #ea3636;
321
+ }
322
+ .bk-alert-content {
323
+ display: flex;
324
+ flex: 1;
325
+ flex-direction: column;
326
+ overflow: hidden;
327
+ }
328
+ .bk-alert-title {
329
+ line-height: 16px;
330
+ }
331
+ .bk-alert-close {
332
+ padding: 8px 12px 0 6px;
333
+ margin-top: -8px;
334
+ margin-right: -10px;
335
+ font-size: 12px;
336
+ white-space: nowrap;
337
+ cursor: pointer;
338
+ }
339
+ .bk-alert-leave-leave {
340
+ opacity: 1;
341
+ }
342
+ .bk-alert-leave-leave-active {
343
+ overflow: hidden;
344
+ transition: opacity 0.15s, height 0.2s;
345
+ }
346
+ .bk-alert-leave-leave-to {
347
+ opacity: 0;
348
+ }
349
+ @keyframes loading-scale-animate {
350
+ 0% {
351
+ transform: scale(1);
352
+ }
353
+ 100% {
354
+ transform: scale(0.6);
355
+ }
356
+ }
357
+ @keyframes fade {
358
+ 100% {
359
+ background-color: transparent;
360
+ }
361
+ }
362
+ .bk-fade-transtion .bk-fade-enter-active,
363
+ .bk-fade-transtion .bk-fade-leave-active {
364
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
365
+ }
366
+ .bk-fade-transtion .bk-fade-enter,
367
+ .bk-fade-transtion .bk-fade-leave-to {
368
+ opacity: 0;
369
+ }
370
+ .bk-backtop {
371
+ position: fixed;
372
+ display: flex;
373
+ width: 52px;
374
+ height: 52px;
375
+ cursor: pointer;
376
+ background: #fff;
377
+ border-radius: 50%;
378
+ opacity: 1;
379
+ box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
380
+ align-items: center;
381
+ justify-content: center;
382
+ }
383
+ .bk-fade-enter-active,
384
+ .bk-fade-leave-active {
385
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
386
+ }
387
+ .bk-fade-enter,
388
+ .bk-fade-leave-to {
389
+ opacity: 0;
390
+ }
391
+ .bk-badge-main {
392
+ position: relative;
393
+ display: inline-block;
394
+ }
395
+ .bk-badge-main .bk-badge {
396
+ position: relative;
397
+ display: inline-block;
398
+ height: 16px;
399
+ padding: 1px 5px;
400
+ font-size: 12px;
401
+ line-height: 16px;
402
+ text-align: center;
403
+ background-color: white;
404
+ border-radius: 18px;
405
+ }
406
+ .bk-badge-main .bk-badge.pinned {
407
+ position: absolute;
408
+ }
409
+ .bk-badge-main .bk-badge.pinned.top-right {
410
+ top: 0;
411
+ right: 0;
412
+ transform: translate(50%, -50%) scale(1, 1);
413
+ }
414
+ .bk-badge-main .bk-badge.pinned.top-right.fade-center-enter,
415
+ .bk-badge-main .bk-badge.pinned.top-right.fade-center-leave-active {
416
+ opacity: 0;
417
+ transform: translate(50%, -50%) scale(0, 0);
418
+ }
419
+ .bk-badge-main .bk-badge.pinned.right {
420
+ top: 50%;
421
+ right: 0%;
422
+ transform: translate(100%, -50%) scale(1, 1);
423
+ }
424
+ .bk-badge-main .bk-badge.pinned.right.fade-center-enter,
425
+ .bk-badge-main .bk-badge.pinned.right.fade-center-leave-active {
426
+ opacity: 0;
427
+ transform: translate(50%, -50%) scale(0, 0);
428
+ }
429
+ .bk-badge-main .bk-badge.pinned.bottom-right {
430
+ right: 0;
431
+ bottom: 0;
432
+ transform: translate(50%, 50%) scale(1, 1);
433
+ }
434
+ .bk-badge-main .bk-badge.pinned.bottom-right.fade-center-enter,
435
+ .bk-badge-main .bk-badge.pinned.bottom-right.fade-center-leave-active {
436
+ opacity: 0;
437
+ transform: translate(50%, 50%) scale(0, 0);
438
+ }
439
+ .bk-badge-main .bk-badge.pinned.top-left {
440
+ top: 0;
441
+ left: 0;
442
+ transform: translate(-50%, -50%) scale(1, 1);
443
+ }
444
+ .bk-badge-main .bk-badge.pinned.top-left.fade-center-enter,
445
+ .bk-badge-main .bk-badge.pinned.top-left.fade-center-leave-active {
446
+ opacity: 0;
447
+ transform: translate(-50%, -50%) scale(0, 0);
448
+ }
449
+ .bk-badge-main .bk-badge.pinned.bottom-left {
450
+ bottom: 0;
451
+ left: 0;
452
+ transform: translate(-50%, 50%) scale(1, 1);
453
+ }
454
+ .bk-badge-main .bk-badge.pinned.bottom-left.fade-center-enter,
455
+ .bk-badge-main .bk-badge.pinned.bottom-left.fade-center-leave-active {
456
+ opacity: 0;
457
+ transform: translate(-50%, 50%) scale(0, 0);
458
+ }
459
+ .bk-badge-main .bk-badge.bk-danger {
460
+ color: white;
461
+ background-color: #ea3636;
462
+ border: 2px solid white;
463
+ }
464
+ .bk-badge-main .bk-badge.bk-danger.is-icon {
465
+ color: #ea3636;
466
+ background-color: white;
467
+ border-color: white;
468
+ }
469
+ .bk-badge-main .bk-badge.bk-warning {
470
+ color: white;
471
+ background-color: #ff9c01;
472
+ border: 2px solid white;
473
+ }
474
+ .bk-badge-main .bk-badge.bk-warning.is-icon {
475
+ color: #ff9c01;
476
+ background-color: white;
477
+ border-color: white;
478
+ }
479
+ .bk-badge-main .bk-badge.bk-success {
480
+ color: white;
481
+ background-color: #2dcb56;
482
+ border: 2px solid white;
483
+ }
484
+ .bk-badge-main .bk-badge.bk-success.is-icon {
485
+ color: #2dcb56;
486
+ background-color: white;
487
+ border-color: white;
488
+ }
489
+ .bk-badge-main .bk-badge.bk-primary {
490
+ color: white;
491
+ background-color: #3a84ff;
492
+ border: 2px solid white;
493
+ }
494
+ .bk-badge-main .bk-badge.bk-primary.is-icon {
495
+ color: #3a84ff;
496
+ background-color: white;
497
+ border-color: white;
498
+ }
499
+ .bk-badge-main .bk-badge.dot {
500
+ width: 6px;
501
+ height: 6px;
502
+ min-width: 6px;
503
+ padding: 0;
504
+ border: 1px solid white;
505
+ }
506
+ .bk-badge-main .bk-badge.bk-badge-icon {
507
+ display: inline-block;
508
+ padding: 0;
509
+ padding-bottom: 1px;
510
+ font-size: 16px;
511
+ }
512
+ @keyframes loading-scale-animate {
513
+ 0% {
514
+ transform: scale(1);
515
+ }
516
+ 100% {
517
+ transform: scale(0.6);
518
+ }
519
+ }
520
+ @keyframes fade {
521
+ 100% {
522
+ background-color: transparent;
523
+ }
524
+ }
525
+ .bk-fade-transtion .bk-fade-enter-active,
526
+ .bk-fade-transtion .bk-fade-leave-active {
527
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
528
+ }
529
+ .bk-fade-transtion .bk-fade-enter,
530
+ .bk-fade-transtion .bk-fade-leave-to {
531
+ opacity: 0;
532
+ }
533
+ .bk-breadcrumb {
534
+ display: flex;
535
+ font-size: 14px;
536
+ color: #979ba5;
537
+ align-items: center;
538
+ }
539
+ .bk-breadcrumb::after {
540
+ clear: both;
541
+ }
542
+ .bk-breadcrumb-separator {
543
+ margin: 0 9px;
544
+ font-weight: bold;
545
+ }
546
+ .bk-breadcrumb-separator[class*=icon] {
547
+ margin: 0 6px;
548
+ font-weight: normal;
549
+ }
550
+ .bk-breadcrumb-item-inner.is-link,
551
+ .bk-breadcrumb-item-inner a {
552
+ text-decoration: none;
553
+ }
554
+ .bk-breadcrumb-item-inner.is-link:hover,
555
+ .bk-breadcrumb-item-inner a:hover {
556
+ color: #0082ff;
557
+ cursor: pointer;
558
+ }
559
+ .bk-breadcrumb-item:last-child {
560
+ color: #63656e;
561
+ }
562
+ .bk-breadcrumb-item:last-child .el-breadcrumb__inner,
563
+ .bk-breadcrumb-item:last-child .el-breadcrumb__inner a,
564
+ .bk-breadcrumb-item:last-child .el-breadcrumb__inner:hover,
565
+ .bk-breadcrumb-item:last-child .el-breadcrumb__inner a:hover {
566
+ cursor: text;
567
+ }
568
+ .bk-breadcrumb-item:last-child .bk-breadcrumb-separator {
569
+ display: none;
570
+ }
1
571
  .bk-button {
2
- font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
572
+ display: inline-block;
573
+ height: 32px;
574
+ min-width: 64px;
575
+ padding: 0 15px;
576
+ font-size: 14px;
577
+ color: #63656e;
578
+ text-align: center;
579
+ text-decoration: none;
580
+ white-space: nowrap;
581
+ vertical-align: middle;
582
+ cursor: pointer;
583
+ background-color: white;
584
+ border: 1px solid #c4c6cc;
585
+ border-radius: 2px;
586
+ outline: none;
587
+ box-sizing: border-box;
588
+ transition: background-color ease 0.3s;
589
+ appearance: none;
590
+ }
591
+ .bk-button.bk-button-primary {
592
+ background-color: #3a84ff;
593
+ color: white;
594
+ border-color: #3a84ff;
595
+ }
596
+ .bk-button.bk-button-primary:hover {
597
+ background-color: #5594fa;
598
+ border-color: #5594fa;
599
+ }
600
+ .bk-button.bk-button-primary:active {
601
+ background-color: #2c77f4;
602
+ border-color: #2c77f4;
603
+ }
604
+ .bk-button.bk-button-primary.is-disabled {
605
+ background-color: #dcdee5;
606
+ border-color: #dcdee5;
607
+ }
608
+ .bk-button.bk-button-primary.is-outline {
609
+ color: #3a84ff;
610
+ border-color: #3a84ff;
611
+ background-color: white;
612
+ }
613
+ .bk-button.bk-button-primary.is-outline:hover {
614
+ background-color: #5594fa;
615
+ border-color: #5594fa;
616
+ color: white;
617
+ }
618
+ .bk-button.bk-button-primary.is-text {
619
+ color: #3a84ff;
620
+ background: none;
621
+ border: none;
622
+ }
623
+ .bk-button.bk-button-primary.is-text:hover {
624
+ color: #5594fa;
625
+ }
626
+ .bk-button.bk-button-hover-primary:hover {
627
+ background-color: #5594fa;
628
+ border-color: #5594fa;
629
+ color: white;
630
+ }
631
+ .bk-button.bk-button-warning {
632
+ background-color: #ff9c01;
633
+ color: white;
634
+ border-color: #ff9c01;
635
+ }
636
+ .bk-button.bk-button-warning:hover {
637
+ background-color: #ffb848;
638
+ border-color: #ffb848;
639
+ }
640
+ .bk-button.bk-button-warning:active {
641
+ background-color: #eb9000;
642
+ border-color: #eb9000;
643
+ }
644
+ .bk-button.bk-button-warning.is-disabled {
645
+ background-color: #dcdee5;
646
+ border-color: #dcdee5;
647
+ }
648
+ .bk-button.bk-button-warning.is-outline {
649
+ color: #ff9c01;
650
+ border-color: #ff9c01;
651
+ background-color: white;
652
+ }
653
+ .bk-button.bk-button-warning.is-outline:hover {
654
+ background-color: #ffb848;
655
+ border-color: #ffb848;
656
+ color: white;
657
+ }
658
+ .bk-button.bk-button-warning.is-text {
659
+ color: #ff9c01;
660
+ background: none;
661
+ border: none;
662
+ }
663
+ .bk-button.bk-button-warning.is-text:hover {
664
+ color: #ffb848;
665
+ }
666
+ .bk-button.bk-button-hover-warning:hover {
667
+ background-color: #ffb848;
668
+ border-color: #ffb848;
669
+ color: white;
670
+ }
671
+ .bk-button.bk-button-success {
672
+ background-color: #2dcb56;
673
+ color: white;
674
+ border-color: #2dcb56;
675
+ }
676
+ .bk-button.bk-button-success:hover {
677
+ background-color: #45e35f;
678
+ border-color: #45e35f;
679
+ }
680
+ .bk-button.bk-button-success:active {
681
+ background-color: #1ab943;
682
+ border-color: #1ab943;
683
+ }
684
+ .bk-button.bk-button-success.is-disabled {
685
+ background-color: #dcdee5;
686
+ border-color: #dcdee5;
687
+ }
688
+ .bk-button.bk-button-success.is-outline {
689
+ color: #2dcb56;
690
+ border-color: #2dcb56;
691
+ background-color: white;
692
+ }
693
+ .bk-button.bk-button-success.is-outline:hover {
694
+ background-color: #45e35f;
695
+ border-color: #45e35f;
696
+ color: white;
697
+ }
698
+ .bk-button.bk-button-success.is-text {
699
+ color: #2dcb56;
700
+ background: none;
701
+ border: none;
702
+ }
703
+ .bk-button.bk-button-success.is-text:hover {
704
+ color: #45e35f;
705
+ }
706
+ .bk-button.bk-button-hover-success:hover {
707
+ background-color: #45e35f;
708
+ border-color: #45e35f;
709
+ color: white;
710
+ }
711
+ .bk-button.bk-button-danger {
712
+ background-color: #ea3636;
713
+ color: white;
714
+ border-color: #ea3636;
715
+ }
716
+ .bk-button.bk-button-danger:hover {
717
+ background-color: #ff5656;
718
+ border-color: #ff5656;
719
+ }
720
+ .bk-button.bk-button-danger:active {
721
+ background-color: #db2626;
722
+ border-color: #db2626;
723
+ }
724
+ .bk-button.bk-button-danger.is-disabled {
725
+ background-color: #dcdee5;
726
+ border-color: #dcdee5;
727
+ }
728
+ .bk-button.bk-button-danger.is-outline {
729
+ color: #ea3636;
730
+ border-color: #ea3636;
731
+ background-color: white;
732
+ }
733
+ .bk-button.bk-button-danger.is-outline:hover {
734
+ background-color: #ff5656;
735
+ border-color: #ff5656;
736
+ color: white;
737
+ }
738
+ .bk-button.bk-button-danger.is-text {
739
+ color: #ea3636;
740
+ background: none;
741
+ border: none;
742
+ }
743
+ .bk-button.bk-button-danger.is-text:hover {
744
+ color: #ff5656;
745
+ }
746
+ .bk-button.bk-button-hover-danger:hover {
747
+ background-color: #ff5656;
748
+ border-color: #ff5656;
749
+ color: white;
750
+ }
751
+ .bk-button.bk-button-small {
752
+ min-width: 48px;
753
+ height: 26px;
754
+ padding: 0 12px;
755
+ }
756
+ .bk-button.bk-button-large {
757
+ min-width: 74px;
758
+ height: 38px;
759
+ padding: 0 20px;
760
+ }
761
+ .bk-button:hover {
762
+ border-color: #979ba5;
763
+ }
764
+ .bk-button:active {
765
+ color: #3a84ff;
766
+ border-color: #3a84ff;
767
+ }
768
+ .bk-button.is-disabled {
769
+ color: #dcdee5;
770
+ cursor: auto;
771
+ border-color: #dcdee5;
772
+ }
773
+ .bk-button.is-text {
774
+ font-size: 14px;
775
+ color: #63656e;
776
+ text-decoration: none;
777
+ cursor: pointer;
778
+ background: none;
779
+ border: none;
780
+ outline: none;
781
+ }
782
+ .bk-button-group {
783
+ display: inline-block;
784
+ font-size: 0;
785
+ }
786
+ .bk-button-group.bk-button-group-small .bk-button {
787
+ min-width: 48px;
788
+ height: 26px;
789
+ padding: 0 12px;
790
+ }
791
+ .bk-button-group.bk-button-group-large .bk-button {
792
+ min-width: 74px;
793
+ height: 38px;
794
+ padding: 0 20px;
795
+ }
796
+ .bk-button-group .bk-button {
797
+ height: 32px;
798
+ min-width: 64px;
799
+ margin: 0 0 0 -1px;
800
+ border-radius: 0;
801
+ }
802
+ .bk-button-group .bk-button:not(.is-disabled) {
803
+ color: #63656e;
804
+ background-color: white;
805
+ border-color: #c4c6cc;
806
+ }
807
+ .bk-button-group .bk-button:first-child {
808
+ border-radius: 2px 0 0 2px;
809
+ }
810
+ .bk-button-group .bk-button:last-child {
811
+ border-radius: 0 2px 2px 0;
812
+ }
813
+ .bk-button-group .bk-button:only-child {
814
+ border-radius: 2px;
815
+ }
816
+ .bk-button-group .bk-button:hover:not(.is-disabled),
817
+ .bk-button-group .bk-button.is-selected:not(.is-disabled) {
818
+ position: relative;
819
+ z-index: 1;
820
+ color: #3a84ff;
821
+ background-color: white;
822
+ border-color: #3a84ff;
823
+ }
824
+ @keyframes loading-scale-animate {
825
+ 0% {
826
+ transform: scale(1);
827
+ }
828
+ 100% {
829
+ transform: scale(0.6);
830
+ }
831
+ }
832
+ @keyframes fade {
833
+ 100% {
834
+ background-color: transparent;
835
+ }
836
+ }
837
+ .bk-fade-transtion .bk-fade-enter-active,
838
+ .bk-fade-transtion .bk-fade-leave-active {
839
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
840
+ }
841
+ .bk-fade-transtion .bk-fade-enter,
842
+ .bk-fade-transtion .bk-fade-leave-to {
843
+ opacity: 0;
844
+ }
845
+ .bk-card {
846
+ position: relative;
847
+ display: inline-block;
848
+ width: 100%;
849
+ text-align: left;
850
+ cursor: pointer;
851
+ background: white;
852
+ border: 1px solid #dcdee5;
853
+ border-radius: 2px;
854
+ box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
855
+ }
856
+ .bk-card .bk-card-head {
857
+ position: relative;
858
+ width: 100%;
859
+ height: 50px;
860
+ padding: 0 20px;
861
+ line-height: 50px;
862
+ border-bottom: 1px solid #f0f2f5;
863
+ }
864
+ .bk-card .bk-card-head .title {
865
+ font-weight: 600;
866
+ color: #63656e;
867
+ display: inline-block;
868
+ max-width: 85%;
869
+ overflow: hidden;
870
+ text-overflow: ellipsis;
871
+ white-space: nowrap;
872
+ }
873
+ .bk-card .bk-card-body {
874
+ width: 100%;
875
+ padding: 0 20px;
876
+ text-align: left;
877
+ }
878
+ .bk-card .bk-card-footer {
879
+ width: 100%;
880
+ height: 50px;
881
+ line-height: 50px;
882
+ border-top: 1px solid #f0f2f5;
883
+ }
884
+ .bk-card-border-none {
885
+ border: none;
886
+ }
887
+ .bk-checkbox {
888
+ display: inline-block;
889
+ margin-right: 30px;
890
+ font-size: 14px;
891
+ letter-spacing: normal;
892
+ color: #63656e;
893
+ cursor: pointer;
894
+ user-select: none;
895
+ }
896
+ .bk-checkbox.is-checked .bk-checkbox-input {
897
+ background: #3a84ff;
898
+ border-color: #3a84ff;
899
+ transition: all 0.1s;
900
+ }
901
+ .bk-checkbox.is-checked .bk-checkbox-input::after {
902
+ position: absolute;
903
+ top: 1px;
904
+ left: 5px;
905
+ width: 4px;
906
+ height: 8px;
907
+ border: 2px solid #fff;
908
+ border-top: 0;
909
+ border-left: 0;
910
+ content: '';
911
+ transform: scaleY(1) rotate(45deg);
912
+ transform-origin: center;
913
+ }
914
+ .bk-checkbox.is-disabled {
915
+ color: #c4c6cc;
916
+ cursor: not-allowed;
917
+ }
918
+ .bk-checkbox.is-disabled .bk-checkbox-input {
919
+ background: #fafbfd;
920
+ border-color: #dcdee5;
921
+ }
922
+ .bk-checkbox.is-disabled .bk-checkbox-input::after {
923
+ background: #dcdee5;
924
+ }
925
+ .bk-checkbox.is-disabled.is-checked .bk-checkbox-input {
926
+ background: #dcdee5;
927
+ }
928
+ .bk-checkbox .bk-checkbox-input {
929
+ position: relative;
930
+ display: inline-block;
931
+ width: 16px;
932
+ height: 16px;
933
+ margin-right: 5px;
934
+ vertical-align: middle;
935
+ border: 1px solid #979ba5;
936
+ border-radius: 2px;
937
+ }
938
+ .bk-checkbox .bk-checkbox-original {
939
+ position: absolute;
940
+ top: 0;
941
+ left: 0;
942
+ z-index: -1;
943
+ width: 0;
944
+ height: 0;
945
+ }
946
+ .bk-checkbox .bk-checkbox-label {
947
+ display: inline-block;
948
+ line-height: 18px;
949
+ vertical-align: middle;
950
+ }
951
+ .bk-collapse-wrapper .bk-collapse-item {
952
+ text-align: left;
953
+ }
954
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-header {
955
+ position: relative;
956
+ height: 42px;
957
+ padding: 0 10px;
958
+ overflow: hidden;
959
+ font-size: 14px;
960
+ line-height: 42px;
961
+ color: #63656e;
962
+ text-overflow: ellipsis;
963
+ cursor: pointer;
964
+ }
965
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-header .bk-collapse-icon {
966
+ position: absolute;
967
+ right: 10px;
968
+ }
969
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-header .bk-collapse-icon svg {
970
+ font-size: 20px;
971
+ }
972
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-content {
973
+ display: none;
974
+ padding: 0 10px;
975
+ font-size: 13px;
976
+ color: #979ba5;
977
+ }
978
+ .bk-collapse-wrapper .bk-collapse-item .bk-collapse-content.active {
979
+ display: block;
980
+ }
981
+ .bk-modal-wrapper.bk-dialog-wrapper {
982
+ position: relative;
983
+ }
984
+ .bk-modal-wrapper.bk-dialog-wrapper * {
985
+ box-sizing: border-box;
986
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
987
+ }
988
+ .bk-modal-wrapper.bk-dialog-wrapper.scroll-able .bk-modal-content {
989
+ overflow: auto;
990
+ }
991
+ .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-tool {
992
+ position: absolute;
993
+ top: 0;
994
+ right: 0;
995
+ left: 0;
996
+ height: 30px;
997
+ }
998
+ .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-tool .bk-dialog-close {
999
+ position: absolute;
1000
+ top: 5px;
1001
+ right: 5px;
1002
+ display: flex;
1003
+ width: 26px;
1004
+ height: 26px;
1005
+ font-size: 22px;
1006
+ font-weight: 700;
1007
+ line-height: 26px;
1008
+ color: #979ba5;
1009
+ text-align: center;
1010
+ cursor: pointer;
1011
+ border-radius: 50%;
1012
+ transform: rotate(45deg);
1013
+ justify-content: center;
1014
+ align-items: center;
1015
+ }
1016
+ .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-header {
1017
+ padding: 24px;
1018
+ font-size: 20px;
1019
+ line-height: 1;
1020
+ }
1021
+ .bk-modal-wrapper.bk-dialog-wrapper .bk-dialog-header .bk-dialog-title {
1022
+ display: inline-block;
1023
+ width: 100%;
1024
+ overflow: hidden;
1025
+ font-size: 24px;
1026
+ color: #313238;
1027
+ text-overflow: ellipsis;
1028
+ white-space: nowrap;
1029
+ }
1030
+ .bk-modal-wrapper.bk-dialog-wrapper .bk-modal-content {
1031
+ height: calc(100% - 132px);
1032
+ padding: 3px 24px 26px;
1033
+ margin-bottom: 58px;
1034
+ font-size: 14px;
1035
+ line-height: 1.5;
1036
+ color: #63656e;
1037
+ }
1038
+ .bk-modal-wrapper.bk-dialog-wrapper .bk-modal-footer {
1039
+ position: absolute;
1040
+ right: 0;
1041
+ bottom: 0;
1042
+ left: 0;
1043
+ height: 58px;
1044
+ padding: 12px 24px;
1045
+ background-color: #fafbfd;
1046
+ border-top: 1px solid #dcdee5;
1047
+ border-radius: 2px;
1048
+ }
1049
+ .bk-exception-wrapper {
1050
+ position: relative;
1051
+ display: flex;
1052
+ width: 100%;
1053
+ align-items: center;
1054
+ flex-direction: column;
1055
+ }
1056
+ .bk-exception-wrapper .bk-exception-img {
1057
+ display: flex;
1058
+ width: 480px;
1059
+ height: 240px;
1060
+ align-items: center;
1061
+ justify-content: center;
1062
+ }
1063
+ .bk-exception-wrapper .bk-exception-img.part-img {
1064
+ width: 120px;
1065
+ height: 100px;
1066
+ }
1067
+ .bk-exception-wrapper .bk-exception-img .exception-image {
1068
+ display: block;
1069
+ height: 100%;
1070
+ vertical-align: middle;
1071
+ object-fit: contain;
1072
+ }
1073
+ .bk-exception-wrapper .bk-exception-text {
1074
+ font-size: 24px;
1075
+ color: #63656e;
1076
+ text-align: center;
1077
+ }
1078
+ .bk-exception-wrapper .bk-exception-text.part-text {
1079
+ font-size: 14px;
1080
+ }
1081
+ .bk-fixed-navbar {
1082
+ position: fixed;
1083
+ right: 10px;
1084
+ width: 52px;
1085
+ padding: 22px 14px;
1086
+ background: #fff;
1087
+ border-radius: 26px;
1088
+ opacity: 1;
1089
+ box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
1090
+ box-sizing: border-box;
1091
+ }
1092
+ .bk-fixed-navbar.middle {
1093
+ top: 50%;
1094
+ transform: translateY(-50%);
1095
+ }
1096
+ .bk-fixed-navbar.bottom {
1097
+ bottom: 10%;
1098
+ }
1099
+ .bk-fixed-navbar.top {
1100
+ top: 10%;
1101
+ }
1102
+ .bk-fixed-navbar .fixed-navbar-item {
1103
+ display: flex;
1104
+ color: #63656e;
1105
+ align-items: center;
1106
+ justify-content: center;
1107
+ flex-direction: column;
1108
+ }
1109
+ .bk-fixed-navbar .fixed-navbar-item:hover {
1110
+ color: #3a84ff;
1111
+ cursor: pointer;
1112
+ }
1113
+ .bk-fixed-navbar .fixed-navbar-item:not(:last-of-type) {
1114
+ margin-bottom: 25px;
1115
+ }
1116
+ .bk-fixed-navbar .fixed-navbar-item .icon {
1117
+ margin-bottom: 5px;
1118
+ font-size: 17px;
1119
+ }
1120
+ .bk-fixed-navbar .fixed-navbar-item .text {
1121
+ font-size: 12px;
1122
+ }
1123
+ @keyframes loading-scale-animate {
1124
+ 0% {
1125
+ transform: scale(1);
1126
+ }
1127
+ 100% {
1128
+ transform: scale(0.6);
1129
+ }
1130
+ }
1131
+ @keyframes fade {
1132
+ 100% {
1133
+ background-color: transparent;
1134
+ }
1135
+ }
1136
+ .bk-fade-transtion .bk-fade-enter-active,
1137
+ .bk-fade-transtion .bk-fade-leave-active {
1138
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
1139
+ }
1140
+ .bk-fade-transtion .bk-fade-enter,
1141
+ .bk-fade-transtion .bk-fade-leave-to {
1142
+ opacity: 0;
1143
+ }
1144
+ .bk-input {
1145
+ display: flex;
1146
+ align-items: stretch;
1147
+ height: 32px;
1148
+ font-size: 12px;
1149
+ border: 1px solid #c4c6cc;
1150
+ border-radius: 2px;
1151
+ transition: all 0.3s;
1152
+ }
1153
+ .bk-input--suffix-icon {
1154
+ padding-right: 10px;
1155
+ font-size: 16px;
1156
+ color: #c4c6cc;
1157
+ align-self: center;
1158
+ }
1159
+ .bk-input--large {
1160
+ height: 38px;
1161
+ font-size: 16px;
1162
+ }
1163
+ .bk-input--small {
1164
+ height: 26px;
1165
+ font-size: 12px;
1166
+ }
1167
+ .bk-input.is-focused:not(.is-readonly) {
1168
+ border-color: #3a84ff;
1169
+ outline: 0;
1170
+ box-shadow: 0px 0px 3px 0px #a3c5fd;
1171
+ }
1172
+ .bk-input.is-disabled {
1173
+ cursor: not-allowed;
1174
+ background-color: #fafbfd;
1175
+ opacity: 1;
1176
+ }
1177
+ .bk-input--prefix-area,
1178
+ .bk-input--suffix-area {
1179
+ display: flex;
1180
+ padding: 0 10px;
1181
+ color: #63656e;
1182
+ background-color: #f4f6fa;
1183
+ border-right: 1px solid #c4c6cc;
1184
+ align-items: center;
1185
+ }
1186
+ .bk-input--suffix-area {
1187
+ border: 0;
1188
+ border-left: 1px solid #c4c6cc;
1189
+ }
1190
+ .bk-input--max-length {
1191
+ align-self: center;
1192
+ padding-right: 10px;
1193
+ }
1194
+ .bk-input--max-length span {
1195
+ color: #979ba5;
1196
+ }
1197
+ .bk-input--text {
1198
+ padding: 0 10px;
1199
+ font-size: 12px;
1200
+ line-height: 1;
1201
+ color: #63656e;
1202
+ background-color: white;
1203
+ background-image: none;
1204
+ border: none;
1205
+ outline: none;
1206
+ box-sizing: border-box;
1207
+ transition: all 0.3s;
1208
+ flex: 1;
1209
+ }
1210
+ .bk-input--text[type='search']::-webkit-search-decoration,
1211
+ .bk-input--text[type='search']::-webkit-search-cancel-button,
1212
+ .bk-input--text[type='search']::-webkit-search-results-button,
1213
+ .bk-input--text[type='search']::-webkit-search-results-decoration {
1214
+ appearance: none;
1215
+ }
1216
+ .bk-input--text [type=search]::-ms-clear {
1217
+ display: none;
1218
+ width: 0;
1219
+ height: 0;
1220
+ }
1221
+ .bk-input--text [type=search]::-ms-reveal {
1222
+ display: none;
1223
+ width: 0;
1224
+ height: 0;
1225
+ }
1226
+ .bk-input--text[type='number']::-webkit-inner-spin-button,
1227
+ .bk-input--text[type='number']::-webkit-outer-spin-button {
1228
+ margin: 0;
1229
+ appearance: none;
1230
+ }
1231
+ .bk-input--text::placeholder {
1232
+ color: #c4c6cc;
1233
+ }
1234
+ .bk-input--number-control {
1235
+ width: 26px;
1236
+ height: 100%;
1237
+ font-size: 0;
1238
+ flex-direction: column;
1239
+ }
1240
+ .bk-input--number-control span {
1241
+ display: block;
1242
+ height: 50%;
1243
+ overflow: hidden;
1244
+ color: #c4c6cc;
1245
+ }
1246
+ .bk-input--number-control svg {
1247
+ font-size: 16px;
1248
+ }
1249
+ .bk-input--number-control span:first-child {
1250
+ transform: rotate(180deg);
1251
+ }
1252
+ .bk-input--number-control span:hover {
1253
+ background-color: #f4f6fa;
1254
+ }
1255
+ .bk-link {
1256
+ font-size: 14px;
1257
+ text-decoration: none;
1258
+ }
1259
+ .bk-link.is-disabled {
1260
+ cursor: not-allowed;
1261
+ }
1262
+ .bk-link.has-underline {
1263
+ text-decoration: underline;
1264
+ }
1265
+ .bk-link.default {
1266
+ color: #63656e;
1267
+ }
1268
+ .bk-link.default.is-disabled {
1269
+ color: #dcdee5;
1270
+ }
1271
+ .bk-link.default:hover {
1272
+ color: #979ba5;
1273
+ }
1274
+ .bk-link.primary {
1275
+ color: #3a84ff;
1276
+ }
1277
+ .bk-link.primary.is-disabled {
1278
+ color: #a3c5fd;
1279
+ }
1280
+ .bk-link.primary:hover {
1281
+ color: #699df4;
1282
+ }
1283
+ .bk-link.success {
1284
+ color: #2dcb56;
1285
+ }
1286
+ .bk-link.success.is-disabled {
1287
+ color: #94f5a4;
1288
+ }
1289
+ .bk-link.success:hover {
1290
+ color: #45e35f;
1291
+ }
1292
+ .bk-link.warning {
1293
+ color: #ff9c01;
1294
+ }
1295
+ .bk-link.warning.is-disabled {
1296
+ color: #ffd695;
1297
+ }
1298
+ .bk-link.warning:hover {
1299
+ color: #ffb848;
1300
+ }
1301
+ .bk-link.danger {
1302
+ color: #ea3636;
1303
+ }
1304
+ .bk-link.danger:hover {
1305
+ color: #ff5656;
1306
+ }
1307
+ .bk-link.danger.is-disabled {
1308
+ color: #fd9c9c;
1309
+ }
1310
+ .bk-dropdown {
1311
+ display: inline-block;
1312
+ }
1313
+ .bk-dropdown .bk-dropdown-content {
1314
+ display: none;
1315
+ box-shadow: 0 2px 6px rgba(51, 60, 72, 0.1);
1316
+ }
1317
+ .bk-dropdown .bk-dropdown-content[data-show] {
1318
+ display: block;
1319
+ }
1320
+ .bk-dropdown-menu {
1321
+ min-width: 100%;
1322
+ padding: 5px 0;
1323
+ margin: 0;
1324
+ background: #fff;
1325
+ border: 1px solid #dcdee5;
1326
+ border-radius: 2px;
1327
+ box-sizing: border-box;
1328
+ }
1329
+ .bk-dropdown-menu::-webkit-scrollbar {
1330
+ width: 4px;
1331
+ height: 4px;
1332
+ }
1333
+ .bk-dropdown-menu::-webkit-scrollbar-thumb {
1334
+ background: #dde4eb;
1335
+ border-radius: 20px;
1336
+ box-shadow: inset 0 0 6px hsla(0, 0%, 80%, 0.3);
1337
+ }
1338
+ .bk-dropdown-item {
1339
+ display: block;
1340
+ height: 32px;
1341
+ padding: 0 16px;
1342
+ font-size: 12px;
1343
+ line-height: 33px;
1344
+ color: #63656e;
1345
+ white-space: nowrap;
1346
+ list-style: none;
1347
+ cursor: pointer;
1348
+ }
1349
+ .bk-dropdown-item:hover {
1350
+ color: #3a84ff;
1351
+ background-color: #eaf3ff;
1352
+ }
1353
+ @keyframes loading-scale-animate {
1354
+ 0% {
1355
+ transform: scale(1);
1356
+ }
1357
+ 100% {
1358
+ transform: scale(0.6);
1359
+ }
1360
+ }
1361
+ @keyframes fade {
1362
+ 100% {
1363
+ background-color: transparent;
1364
+ }
1365
+ }
1366
+ .bk-fade-transtion .bk-fade-enter-active,
1367
+ .bk-fade-transtion .bk-fade-leave-active {
1368
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
1369
+ }
1370
+ .bk-fade-transtion .bk-fade-enter,
1371
+ .bk-fade-transtion .bk-fade-leave-to {
1372
+ opacity: 0;
1373
+ }
1374
+ .bk-loading-wrapper {
1375
+ position: static;
1376
+ display: inline-block;
1377
+ font-size: 0;
1378
+ }
1379
+ .bk-loading-wrapper.bk-nested-loading {
1380
+ position: relative;
1381
+ }
1382
+ .bk-loading-wrapper.bk-nested-loading .bk-loading-indicator {
1383
+ position: absolute;
1384
+ top: 50%;
1385
+ left: 50%;
1386
+ z-index: 4;
1387
+ transform: translate(-50%, -50%);
1388
+ }
1389
+ .bk-loading-wrapper .bk-loading-mask {
1390
+ opacity: 0.5;
1391
+ }
1392
+ .bk-loading-wrapper .bk-loading-mask::after {
1393
+ position: absolute;
1394
+ top: 0;
1395
+ right: 0;
1396
+ bottom: 0;
1397
+ left: 0;
1398
+ z-index: 10;
1399
+ width: 100%;
1400
+ height: 100%;
1401
+ background-color: rgba(255, 255, 255, 0.9);
1402
+ content: '';
1403
+ }
1404
+ .bk-loading-wrapper .bk-loading-indicator {
1405
+ font-size: 14px;
1406
+ }
1407
+ .bk-loading-wrapper .bk-loading-indicator .dot-1 {
1408
+ background-color: #ea3636;
1409
+ animation-delay: 0.1s;
1410
+ }
1411
+ .bk-loading-wrapper .bk-loading-indicator .dot-2 {
1412
+ background-color: #ff9c01;
1413
+ animation-delay: 0.25s;
1414
+ }
1415
+ .bk-loading-wrapper .bk-loading-indicator .dot-3 {
1416
+ background-color: #2dcb56;
1417
+ animation-delay: 0.4s;
1418
+ }
1419
+ .bk-loading-wrapper .bk-loading-indicator .dot-4 {
1420
+ background-color: #3a84ff;
1421
+ animation-delay: 0.55s;
1422
+ margin-right: 0;
1423
+ }
1424
+ .bk-loading-wrapper .bk-loading-indicator .oval-1 {
1425
+ transform: rotate(-135deg);
1426
+ animation-delay: 0.6s;
1427
+ }
1428
+ .bk-loading-wrapper .bk-loading-indicator .oval-2 {
1429
+ transform: rotate(-90deg);
1430
+ animation-delay: 0.75s;
1431
+ }
1432
+ .bk-loading-wrapper .bk-loading-indicator .oval-3 {
1433
+ transform: rotate(-45deg);
1434
+ animation-delay: 0.9s;
1435
+ }
1436
+ .bk-loading-wrapper .bk-loading-indicator .oval-4 {
1437
+ transform: rotate(0deg);
1438
+ animation-delay: 1.05s;
1439
+ }
1440
+ .bk-loading-wrapper .bk-loading-indicator .oval-5 {
1441
+ transform: rotate(45deg);
1442
+ animation-delay: 1.2s;
1443
+ }
1444
+ .bk-loading-wrapper .bk-loading-indicator .oval-6 {
1445
+ transform: rotate(90deg);
1446
+ animation-delay: 1.35s;
1447
+ }
1448
+ .bk-loading-wrapper .bk-loading-indicator .oval-7 {
1449
+ transform: rotate(135deg);
1450
+ animation-delay: 1.5s;
1451
+ }
1452
+ .bk-loading-wrapper .bk-loading-indicator .oval-8 {
1453
+ transform: rotate(180deg);
1454
+ animation-delay: 1.65s;
1455
+ }
1456
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-success .oval,
1457
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-success .dot,
1458
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-success .dot1,
1459
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-success .dot2,
1460
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-success .dot3,
1461
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-success .dot4 {
1462
+ background-color: #2dcb56;
1463
+ }
1464
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-danger .oval,
1465
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-danger .dot,
1466
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-danger .dot1,
1467
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-danger .dot2,
1468
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-danger .dot3,
1469
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-danger .dot4 {
1470
+ background-color: #ea3636;
1471
+ }
1472
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-warning .oval,
1473
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-warning .dot,
1474
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-warning .dot1,
1475
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-warning .dot2,
1476
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-warning .dot3,
1477
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-warning .dot4 {
1478
+ background-color: #ff9c01;
1479
+ }
1480
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-primary .oval,
1481
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-primary .dot,
1482
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-primary .dot1,
1483
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-primary .dot2,
1484
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-primary .dot3,
1485
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-primary .dot4 {
1486
+ background-color: #3a84ff;
1487
+ }
1488
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-white .oval,
1489
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-white .dot,
1490
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-white .dot1,
1491
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-white .dot2,
1492
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-white .dot3,
1493
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-white .dot4 {
1494
+ background-color: white;
1495
+ }
1496
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-default .oval,
1497
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-default .dot,
1498
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-default .dot1,
1499
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-default .dot2,
1500
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-default .dot3,
1501
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-default .dot4 {
1502
+ background-color: #c4c6cc;
1503
+ }
1504
+ .bk-loading-wrapper .bk-loading-indicator .bk-spin-indicator {
1505
+ height: 40px;
1506
+ }
1507
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-small .bk-spin-indicator {
1508
+ height: 22px;
1509
+ }
1510
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-small .dot {
1511
+ width: 6px;
1512
+ height: 6px;
1513
+ margin-right: 6px;
1514
+ }
1515
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-small .dot.dot-4 {
1516
+ margin-right: 0;
1517
+ }
1518
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-small .oval {
1519
+ width: 4px;
1520
+ height: 5px;
1521
+ border-radius: 5px;
1522
+ transform-origin: center 11px;
1523
+ }
1524
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-small .bk-loading-title {
1525
+ font-size: 12px;
1526
+ }
1527
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-large .bk-spin-indicator {
1528
+ height: 52px;
1529
+ }
1530
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-large .dot {
1531
+ width: 20px;
1532
+ height: 20px;
1533
+ margin-right: 12px;
1534
+ }
1535
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-large .dot.dot-4 {
1536
+ margin-right: 0;
1537
+ }
1538
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-large .oval {
1539
+ width: 8px;
1540
+ height: 12px;
1541
+ border-radius: 12px;
1542
+ transform-origin: center 26px;
1543
+ }
1544
+ .bk-loading-wrapper .bk-loading-indicator.bk-loading-size-large .bk-loading-title {
1545
+ font-size: 14px;
1546
+ }
1547
+ .bk-loading-wrapper .bk-loading-indicator .bk-loading-title {
1548
+ margin-top: 8px;
1549
+ font-size: 14px;
1550
+ line-height: normal;
1551
+ color: #63656e;
1552
+ text-align: center;
1553
+ }
1554
+ .bk-loading-wrapper .bk-loading-indicator .dot {
1555
+ display: inline-block;
1556
+ width: 14px;
1557
+ height: 14px;
1558
+ margin-right: 10px;
1559
+ border-radius: 50%;
1560
+ transform: scale(0.6);
1561
+ animation-duration: 0.8s;
1562
+ animation-iteration-count: infinite;
1563
+ animation-name: loading-scale-animate;
1564
+ animation-direction: normal;
1565
+ }
1566
+ .bk-loading-wrapper .bk-loading-indicator .oval {
1567
+ position: absolute;
1568
+ width: 6px;
1569
+ height: 8px;
1570
+ background-color: #63656e;
1571
+ border-radius: 8px;
1572
+ animation-duration: 1.2s;
1573
+ animation-iteration-count: infinite;
1574
+ animation-name: fade;
1575
+ transform-origin: center 20px;
1576
+ animation-direction: normal;
1577
+ }
1578
+ .bk-modal-wrapper {
1579
+ position: absolute;
1580
+ top: 50%;
1581
+ left: 50%;
1582
+ background: #fff;
1583
+ transform: translate(-50%, -50%);
1584
+ }
1585
+ .bk-modal-wrapper .bk-modal-body {
1586
+ height: 100%;
1587
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1588
+ }
1589
+ .bk-popover .bk-popover-reference {
1590
+ display: inline-block;
1591
+ }
1592
+ .bk-popover .bk-popover-content {
1593
+ display: none;
1594
+ padding: 7px 14px;
1595
+ font-size: 12px;
1596
+ color: #fff;
1597
+ background: #26323d;
1598
+ border-radius: 4px;
1599
+ box-sizing: border-box;
1600
+ }
1601
+ .bk-popover .bk-popover-content[data-theme='dark'] {
1602
+ color: #fff;
1603
+ background: #26323d;
1604
+ }
1605
+ .bk-popover .bk-popover-content[data-theme='light'] {
1606
+ color: #26323d;
1607
+ background-color: #fff;
1608
+ box-shadow: 0 0 6px 0 #dcdee5;
1609
+ }
1610
+ .bk-popover .bk-popover-content[data-theme='light'][data-show] {
1611
+ box-shadow: 0 0 6px 0 #dcdee5;
1612
+ }
1613
+ .bk-popover .bk-popover-content[data-show] {
1614
+ display: block;
1615
+ }
1616
+ .bk-popover .bk-popover-content .arrow {
1617
+ position: absolute;
1618
+ width: 8px;
1619
+ height: 8px;
1620
+ background: inherit;
1621
+ visibility: hidden;
1622
+ }
1623
+ .bk-popover .bk-popover-content .arrow::before {
1624
+ position: absolute;
1625
+ width: 8px;
1626
+ height: 8px;
1627
+ background: inherit;
1628
+ content: '';
1629
+ visibility: visible;
1630
+ transform: rotate(45deg);
1631
+ }
1632
+ .bk-popover .bk-popover-content[data-popper-placement^='top'] > .arrow {
1633
+ bottom: -4px;
1634
+ }
1635
+ .bk-popover .bk-popover-content[data-popper-placement^='bottom'] > .arrow {
1636
+ top: -4px;
1637
+ }
1638
+ .bk-popover .bk-popover-content[data-popper-placement^='left'] > .arrow {
1639
+ right: 0;
1640
+ }
1641
+ .bk-popover .bk-popover-content[data-popper-placement^='right'] > .arrow {
1642
+ left: -8px;
1643
+ }
1644
+ @keyframes loading-scale-animate {
1645
+ 0% {
1646
+ transform: scale(1);
1647
+ }
1648
+ 100% {
1649
+ transform: scale(0.6);
1650
+ }
1651
+ }
1652
+ @keyframes fade {
1653
+ 100% {
1654
+ background-color: transparent;
1655
+ }
1656
+ }
1657
+ .bk-fade-transtion .bk-fade-enter-active,
1658
+ .bk-fade-transtion .bk-fade-leave-active {
1659
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
1660
+ }
1661
+ .bk-fade-transtion .bk-fade-enter,
1662
+ .bk-fade-transtion .bk-fade-leave-to {
1663
+ opacity: 0;
1664
+ }
1665
+ .bk-progress {
1666
+ display: inline-block;
1667
+ }
1668
+ .bk-progress .progress-outer {
1669
+ display: flex;
1670
+ width: 100%;
1671
+ align-items: center;
1672
+ }
1673
+ .bk-progress .progress-bar {
1674
+ position: relative;
1675
+ width: 100%;
1676
+ height: 4px;
1677
+ text-align: center;
1678
+ vertical-align: middle;
1679
+ background: #f0f1f5;
1680
+ border-radius: 50px;
1681
+ }
1682
+ .bk-progress .progress-bar.bk-progress-small {
1683
+ height: 2px;
1684
+ }
1685
+ .bk-progress .progress-bar.bk-progress-normal {
1686
+ height: 4px;
1687
+ }
1688
+ .bk-progress .progress-bar.bk-progress-large {
1689
+ height: 12px;
1690
+ }
1691
+ .bk-progress .progress-inner {
1692
+ position: absolute;
1693
+ top: 0;
1694
+ left: 0;
1695
+ width: 50%;
1696
+ height: 100%;
1697
+ border-radius: 50px;
1698
+ transition: width 0.5s ease;
1699
+ }
1700
+ .bk-progress .progress-inner.bk-primary {
1701
+ background: #3a84ff;
1702
+ }
1703
+ .bk-progress .progress-inner.bk-success {
1704
+ background: #2dcb56;
1705
+ }
1706
+ .bk-progress .progress-inner.bk-warning {
1707
+ background: #ff9c01;
1708
+ }
1709
+ .bk-progress .progress-inner.bk-danger {
1710
+ background: #ea3636;
1711
+ }
1712
+ .bk-progress .inner-text {
1713
+ width: 100%;
1714
+ height: 100%;
1715
+ color: #fff;
1716
+ text-align: center;
1717
+ }
1718
+ .bk-progress .progress-text {
1719
+ width: 7%;
1720
+ text-align: center;
1721
+ }
1722
+ .bk-progress .process-circle-trail {
1723
+ stroke: #f5f5f5;
1724
+ }
1725
+ .bk-progress .progress-circle-text {
1726
+ position: absolute;
1727
+ top: 50%;
1728
+ left: 0;
1729
+ width: 100%;
1730
+ margin: 0;
1731
+ text-align: center;
1732
+ transform: translateY(-50%);
1733
+ }
1734
+ .bk-progress-line {
1735
+ width: 100%;
1736
+ }
1737
+ .bk-progress-circle,
1738
+ .bk-progress-dashboard {
1739
+ position: relative;
1740
+ }
1741
+ .bk-radio {
1742
+ display: inline-block;
1743
+ margin-right: 30px;
1744
+ font-size: 12px;
1745
+ font-weight: normal;
1746
+ line-height: 1;
1747
+ letter-spacing: normal;
1748
+ color: #63656e;
1749
+ white-space: nowrap;
1750
+ cursor: pointer;
1751
+ outline: none;
1752
+ user-select: none;
1753
+ }
1754
+ .bk-radio:last-child {
1755
+ margin-right: 0;
1756
+ }
1757
+ .bk-radio.is-checked .bk-radio-input {
1758
+ padding: 3px;
1759
+ color: #3a84ff;
1760
+ background-color: #3a84ff;
1761
+ border-color: #3a84ff;
1762
+ }
1763
+ .bk-radio.is-disabled {
1764
+ color: #dcdee5;
1765
+ cursor: not-allowed;
1766
+ }
1767
+ .bk-radio.is-disabled.is-checked .bk-radio-input {
1768
+ background-color: #dcdee5;
1769
+ }
1770
+ .bk-radio.is-disabled .bk-radio-input {
1771
+ cursor: not-allowed;
1772
+ border-color: #dcdee5;
1773
+ }
1774
+ .bk-radio.is-disabled .bk-radio-text {
1775
+ cursor: not-allowed;
1776
+ }
1777
+ .bk-radio.is-focus .bk-radio-input {
1778
+ border-color: #3a84ff;
1779
+ }
1780
+ .bk-radio .bk-radio-text {
1781
+ font-size: 12px;
1782
+ font-style: normal;
1783
+ font-weight: normal;
1784
+ color: #63656e;
1785
+ vertical-align: middle;
1786
+ cursor: pointer;
1787
+ }
1788
+ .bk-radio .bk-radio-input {
1789
+ position: relative;
1790
+ display: inline-block;
1791
+ width: 16px;
1792
+ height: 16px;
1793
+ margin: 0 5px 0 0;
1794
+ color: #fff;
1795
+ vertical-align: middle;
1796
+ cursor: pointer;
1797
+ background-color: #fff;
1798
+ border: 1px solid #63656e;
1799
+ border-radius: 50%;
1800
+ outline: none;
1801
+ visibility: visible;
1802
+ transition: all 0.3s;
1803
+ background-clip: content-box;
1804
+ appearance: none;
1805
+ }
1806
+ .bk-radio-button {
1807
+ position: relative;
1808
+ z-index: 1;
1809
+ display: inline-block;
1810
+ font-size: 0;
1811
+ font-weight: normal;
1812
+ line-height: 1;
1813
+ letter-spacing: normal;
1814
+ color: #63656e;
1815
+ white-space: nowrap;
1816
+ cursor: pointer;
1817
+ outline: none;
1818
+ opacity: 1;
1819
+ user-select: none;
1820
+ }
1821
+ .bk-radio-button:nth-child(n+2) {
1822
+ margin-left: -1px;
1823
+ }
1824
+ .bk-radio-button:first-child .bk-radio-button-text {
1825
+ border-bottom-left-radius: 2px;
1826
+ border-top-left-radius: 2px;
1827
+ }
1828
+ .bk-radio-button:last-child .bk-radio-button-text {
1829
+ border-top-right-radius: 2px;
1830
+ border-bottom-right-radius: 2px;
1831
+ }
1832
+ .bk-radio-button.is-checked {
1833
+ z-index: 2;
1834
+ }
1835
+ .bk-radio-button.is-checked .bk-radio-button-text {
1836
+ color: #fff;
1837
+ background: #3a84ff;
1838
+ border-color: #3a84ff;
1839
+ }
1840
+ .bk-radio-button.is-disabled {
1841
+ z-index: 0;
1842
+ color: #dcdee5;
1843
+ cursor: not-allowed;
1844
+ }
1845
+ .bk-radio-button.is-disabled .bk-radio-button-text {
1846
+ cursor: not-allowed;
1847
+ background: #dcdee5;
1848
+ border-color: #dcdee5;
1849
+ }
1850
+ .bk-radio-button.is-focus .bk-radio-button-text {
1851
+ border-color: #3a84ff;
1852
+ }
1853
+ .bk-radio-button .bk-radio-button-input {
1854
+ position: absolute;
1855
+ z-index: -1;
1856
+ outline: none;
1857
+ opacity: 0;
1858
+ }
1859
+ .bk-radio-button .bk-radio-button-text {
1860
+ height: 32px;
1861
+ padding: 0 18px;
1862
+ font-size: 12px;
1863
+ font-style: normal;
1864
+ font-weight: normal;
1865
+ line-height: 32px;
1866
+ color: #63656e;
1867
+ text-align: center;
1868
+ vertical-align: middle;
1869
+ cursor: pointer;
1870
+ border: 1px solid #63656e;
1871
+ transition: all 0.3s;
1872
+ }
1873
+ .bk-radio-group {
1874
+ display: inline-block;
1875
+ font-size: 0;
1876
+ line-height: 0;
1877
+ letter-spacing: normal;
1878
+ }
1879
+ .bk-rate {
1880
+ position: relative;
1881
+ }
1882
+ .bk-rate .bk-score-real {
1883
+ position: absolute;
1884
+ top: 0;
1885
+ left: 0;
1886
+ display: flex;
1887
+ overflow: hidden;
1888
+ }
1889
+ .bk-rate-stars {
1890
+ padding: 0;
1891
+ margin: 0;
1892
+ }
1893
+ .bk-rate-stars .bk-is-edit {
1894
+ cursor: pointer;
1895
+ }
1896
+ .bk-rate-stars:after {
1897
+ display: table;
1898
+ clear: both;
1899
+ content: '';
1900
+ }
1901
+ .bk-rate-stars .bk-rate-star {
1902
+ float: left;
1903
+ margin-right: 3px;
1904
+ enable-background: new 0 0 64 64;
1905
+ fill: #c5c7d1;
1906
+ }
1907
+ .bk-rate-stars .bk-rate-star.bk-is-select {
1908
+ fill: #ffb848;
1909
+ }
1910
+ .bk-rate-stars .bk-rate-star:last-child {
1911
+ margin-right: 0;
1912
+ }
1913
+ .bk-select {
1914
+ display: inline-block;
1915
+ }
1916
+ .bk-select ul {
1917
+ padding: 0;
1918
+ margin: 0;
1919
+ font-weight: normal;
1920
+ list-style: none;
1921
+ }
1922
+ .bk-select .bk-popover-content {
1923
+ padding: 0;
1924
+ }
1925
+ .bk-select.is-focus .bk-select-trigger .bk-select-input {
1926
+ border-color: #3a84ff;
1927
+ box-shadow: 0px 0px 3px 0px #a3c5fd;
1928
+ }
1929
+ .bk-select.is-disabled .bk-select-trigger .bk-select-input {
1930
+ cursor: not-allowed;
1931
+ background: #fafbfd;
1932
+ border-color: #dcdee5;
1933
+ box-shadow: unset;
1934
+ }
1935
+ .bk-select.popover-show .bk-select-trigger .angle-up {
1936
+ transform: rotate(0);
1937
+ }
1938
+ .bk-select .bk-select-trigger {
1939
+ position: relative;
1940
+ cursor: pointer;
1941
+ }
1942
+ .bk-select .bk-select-trigger .bk-select-input {
1943
+ height: 32px;
1944
+ padding: 0 28px 0 10px;
1945
+ font-size: 12px;
1946
+ line-height: normal;
1947
+ color: #63656e;
1948
+ text-align: left;
1949
+ vertical-align: middle;
1950
+ cursor: pointer;
1951
+ background-color: white;
1952
+ border: 1px solid #c4c6cc;
1953
+ border-radius: 2px;
1954
+ outline: none;
1955
+ box-sizing: border-box;
1956
+ transition: all 0.1s;
1957
+ resize: none;
1958
+ }
1959
+ .bk-select .bk-select-trigger .bk-select-input::placeholder {
1960
+ color: #c4c6cc;
1961
+ }
1962
+ .bk-select .bk-select-trigger .bk-select-prefix {
1963
+ position: absolute;
1964
+ top: 6px;
1965
+ left: 4px;
1966
+ }
1967
+ .bk-select .bk-select-trigger .angle-up {
1968
+ transform: rotate(180deg);
1969
+ transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
1970
+ display: flex;
1971
+ align-items: center;
1972
+ justify-content: center;
1973
+ width: 20px;
1974
+ height: 20px;
1975
+ font-size: 20px;
1976
+ color: #979ba5;
1977
+ position: absolute;
1978
+ top: 6px;
1979
+ right: 4px;
1980
+ }
1981
+ .bk-select .bk-select-trigger .clear-icon {
1982
+ transition: all 0.1s;
1983
+ display: flex;
1984
+ align-items: center;
1985
+ justify-content: center;
1986
+ width: 20px;
1987
+ height: 20px;
1988
+ font-size: 14px;
1989
+ color: #c4c6cc;
1990
+ position: absolute;
1991
+ top: 6px;
1992
+ right: 4px;
1993
+ }
1994
+ .bk-select .bk-select-trigger .clear-icon:hover {
1995
+ color: #979ba5;
1996
+ }
1997
+ .bk-select .bk-select-dropdown .bk-select-search {
1998
+ position: relative;
1999
+ padding: 0 5px;
2000
+ }
2001
+ .bk-select .bk-select-dropdown .bk-select-search-icon {
2002
+ position: absolute;
2003
+ top: 50%;
2004
+ left: 8px;
2005
+ font-size: 16px;
2006
+ color: #979ba5;
2007
+ transform: translateY(-50%);
2008
+ }
2009
+ .bk-select .bk-select-dropdown .bk-select-search-input {
2010
+ width: 100%;
2011
+ height: 32px;
2012
+ padding: 0 10px 0 26px;
2013
+ font-size: 12px;
2014
+ cursor: text;
2015
+ border: none;
2016
+ border-bottom: 1px solid #dcdee5;
2017
+ outline: 0;
2018
+ }
2019
+ .bk-select .bk-select-empty {
2020
+ height: 32px;
2021
+ font-size: 12px;
2022
+ line-height: 32px;
2023
+ color: #63656e;
2024
+ text-align: center;
2025
+ user-select: none;
2026
+ }
2027
+ .bk-select .bk-select-options {
2028
+ padding: 6px 0;
2029
+ }
2030
+ .bk-select .bk-select-option {
2031
+ height: 32px;
2032
+ padding: 0 10px;
2033
+ line-height: 32px;
2034
+ color: #63656e;
2035
+ text-align: left;
2036
+ cursor: pointer;
2037
+ user-select: none;
2038
+ overflow: hidden;
2039
+ text-overflow: ellipsis;
2040
+ white-space: nowrap;
2041
+ }
2042
+ .bk-select .bk-select-option:hover {
2043
+ color: #3a84ff;
2044
+ background-color: #eaf3ff;
2045
+ }
2046
+ .bk-select .bk-select-option.is-selected {
2047
+ color: #3a84ff;
2048
+ background-color: #f4f6fa;
2049
+ }
2050
+ .bk-select .bk-select-option.is-selected.is-multiple::after {
2051
+ position: absolute;
2052
+ right: 20px;
2053
+ font-size: 12px;
2054
+ font-weight: 700;
2055
+ content: '\2713';
2056
+ }
2057
+ .bk-select .bk-select-option.is-disabled {
2058
+ color: #c4c6cc;
2059
+ cursor: not-allowed;
2060
+ background-color: transparent;
2061
+ }
2062
+ .bk-select .bk-option-group-label {
2063
+ height: 32px;
2064
+ margin: 0 10px;
2065
+ line-height: 32px;
2066
+ color: #979ba5;
2067
+ text-align: left;
2068
+ border-bottom: 1px solid #dcdee5;
2069
+ }
2070
+ .bk-modal-wrapper.bk-sideslider-wrapper {
2071
+ position: fixed;
2072
+ top: 0;
2073
+ bottom: 0;
2074
+ left: auto;
2075
+ background: #fff;
2076
+ transform: initial;
2077
+ box-shadow: -5px 0 8px -5px rgba(0, 0, 0, 0.2);
2078
+ }
2079
+ .bk-modal-wrapper.bk-sideslider-wrapper.scroll-able .bk-modal-content {
2080
+ overflow: auto;
2081
+ }
2082
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header {
2083
+ width: 100%;
2084
+ height: 60px;
2085
+ background: #fff;
2086
+ border-bottom: 1px solid #dcdee5;
2087
+ }
2088
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-close {
2089
+ position: absolute;
2090
+ top: 0;
2091
+ width: 30px;
2092
+ height: 60px;
2093
+ font-size: 24px;
2094
+ line-height: 60px;
2095
+ color: #fff;
2096
+ text-align: center;
2097
+ cursor: pointer;
2098
+ background-color: #3a84ff;
2099
+ }
2100
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-close.right {
2101
+ left: 0;
2102
+ }
2103
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-close.right::before {
2104
+ top: 50%;
2105
+ left: 50%;
2106
+ display: inline-block;
2107
+ width: 8px;
2108
+ height: 8px;
2109
+ border-top: solid 2px #fff;
2110
+ border-right: solid 2px #fff;
2111
+ content: '';
2112
+ transform: translate(-50%, -50%) rotate(45deg);
2113
+ }
2114
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-close.left {
2115
+ right: 0;
2116
+ }
2117
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-close.left::before {
2118
+ top: 50%;
2119
+ left: 50%;
2120
+ display: inline-block;
2121
+ width: 8px;
2122
+ height: 8px;
2123
+ border-top: solid 2px #fff;
2124
+ border-left: solid 2px #fff;
2125
+ content: '';
2126
+ transform: translate(50%, -50%) rotate(-45deg);
2127
+ }
2128
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-title {
2129
+ height: 60px;
2130
+ padding-left: 30px;
2131
+ font-size: 16px;
2132
+ font-weight: 700;
2133
+ line-height: 60px;
2134
+ color: #666;
2135
+ }
2136
+ .bk-modal-wrapper.bk-sideslider-wrapper .bk-sideslider-header .bk-sideslider-title.right {
2137
+ padding: 0px 0px 0px 50px;
2138
+ }
2139
+ @keyframes loading-scale-animate {
2140
+ 0% {
2141
+ transform: scale(1);
2142
+ }
2143
+ 100% {
2144
+ transform: scale(0.6);
2145
+ }
2146
+ }
2147
+ @keyframes fade {
2148
+ 100% {
2149
+ background-color: transparent;
2150
+ }
2151
+ }
2152
+ .bk-fade-transtion .bk-fade-enter-active,
2153
+ .bk-fade-transtion .bk-fade-leave-active {
2154
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
2155
+ }
2156
+ .bk-fade-transtion .bk-fade-enter,
2157
+ .bk-fade-transtion .bk-fade-leave-to {
2158
+ opacity: 0;
2159
+ }
2160
+ .bk-switcher {
2161
+ position: relative;
2162
+ display: inline-block;
2163
+ /* 默认尺寸 */
2164
+ width: 36px;
2165
+ height: 20px;
2166
+ line-height: 20px;
2167
+ text-align: left;
2168
+ vertical-align: middle;
2169
+ background-color: #c4c6cc;
2170
+ border-radius: 50px;
2171
+ transition: all 0.4s ease;
2172
+ /* 显示文本时固定尺寸 */
2173
+ }
2174
+ .bk-switcher:focus {
2175
+ box-shadow: 0px 0px 6px #c4c6cc;
2176
+ }
2177
+ .bk-switcher:after {
2178
+ position: absolute;
2179
+ top: 2px;
2180
+ left: 2px;
2181
+ display: block;
2182
+ width: 24px;
2183
+ height: 24px;
2184
+ cursor: pointer;
2185
+ background: #fff;
2186
+ border-radius: 100px;
2187
+ content: '';
2188
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
2189
+ transition: all 0.3s ease;
2190
+ }
2191
+ .bk-switcher:not(.show-label):after {
2192
+ width: 16px;
2193
+ height: 16px;
2194
+ }
2195
+ .bk-switcher:not(.show-label).is-checked:after {
2196
+ margin-left: -18px;
2197
+ }
2198
+ .bk-switcher.is-loading {
2199
+ cursor: defalt;
2200
+ }
2201
+ .bk-switcher.is-loading input[type=checkbox] {
2202
+ cursor: default;
2203
+ }
2204
+ .bk-switcher .bk-switcher-loading {
2205
+ position: absolute;
2206
+ top: 50%;
2207
+ left: 1px;
2208
+ z-index: 10;
2209
+ display: flex;
2210
+ width: 18px;
2211
+ height: 18px;
2212
+ transform: translateY(-50%);
2213
+ }
2214
+ .bk-switcher .bk-switcher-loading svg {
2215
+ color: #3a84ff;
2216
+ }
2217
+ .bk-switcher .switcher-label {
2218
+ display: none;
2219
+ width: 30px;
2220
+ height: 28px;
2221
+ margin: 0 0 0 26px;
2222
+ font-size: 12px;
2223
+ font-weight: normal;
2224
+ color: #fff;
2225
+ text-align: center;
2226
+ vertical-align: top;
2227
+ transition: all ease 0.3s;
2228
+ }
2229
+ .bk-switcher .switcher-label .on-text {
2230
+ display: none;
2231
+ }
2232
+ .bk-switcher .switcher-label .off-text {
2233
+ display: inline-block;
2234
+ }
2235
+ .bk-switcher.show-label {
2236
+ width: 60px;
2237
+ height: 28px;
2238
+ line-height: 28px;
2239
+ }
2240
+ .bk-switcher.show-label .switcher-label {
2241
+ display: inline-block;
2242
+ }
2243
+ .bk-switcher.show-label .bk-switcher-loading {
2244
+ width: 26px;
2245
+ height: 26px;
2246
+ align-items: center;
2247
+ justify-content: center;
2248
+ }
2249
+ .bk-switcher.show-label .bk-switcher-loading svg {
2250
+ font-size: 24px;
2251
+ }
2252
+ .bk-switcher.is-disabled {
2253
+ cursor: default;
2254
+ /* background-color: #eee !important; */
2255
+ opacity: 0.3;
2256
+ }
2257
+ .bk-switcher.is-disabled input[type=checkbox] {
2258
+ cursor: not-allowed;
2259
+ }
2260
+ .bk-switcher.is-checked {
2261
+ background: #2dcb56;
2262
+ }
2263
+ .bk-switcher.is-checked:focus {
2264
+ box-shadow: 0px 0px 6px #2dcb56;
2265
+ }
2266
+ .bk-switcher.is-checked.primary {
2267
+ background: #3a84ff;
2268
+ }
2269
+ .bk-switcher.is-checked.primary:focus {
2270
+ box-shadow: 0px 0px 6px #3a84ff;
2271
+ }
2272
+ .bk-switcher.is-checked:after {
2273
+ top: 2px;
2274
+ left: 100%;
2275
+ margin-left: -26px;
2276
+ }
2277
+ .bk-switcher.is-checked .switcher-label {
2278
+ margin-left: 4px;
2279
+ }
2280
+ .bk-switcher.is-checked .switcher-label .on-text {
2281
+ display: inline-block;
2282
+ }
2283
+ .bk-switcher.is-checked .switcher-label .off-text {
2284
+ display: none;
2285
+ }
2286
+ .bk-switcher.is-checked .bk-switcher-loading {
2287
+ right: 1px;
2288
+ left: auto;
2289
+ }
2290
+ .bk-switcher.bk-switcher-outline {
2291
+ background: #fff;
2292
+ border: 1px solid #c4c6cc;
2293
+ }
2294
+ .bk-switcher.bk-switcher-outline:after {
2295
+ width: 22px;
2296
+ height: 22px;
2297
+ background-color: #c4c6cc;
2298
+ box-shadow: none;
2299
+ }
2300
+ .bk-switcher.bk-switcher-outline .switcher-label {
2301
+ height: 26px;
2302
+ margin-left: 24px;
2303
+ color: #c4c6cc;
2304
+ }
2305
+ .bk-switcher.bk-switcher-outline .bk-switcher-loading {
2306
+ width: 22px;
2307
+ height: 22px;
2308
+ align-items: center;
2309
+ justify-content: center;
2310
+ }
2311
+ .bk-switcher.bk-switcher-outline.is-checked {
2312
+ border: 1px solid #2dcb56;
2313
+ }
2314
+ .bk-switcher.bk-switcher-outline.is-checked:after {
2315
+ margin-left: -24px;
2316
+ background-color: #2dcb56;
2317
+ }
2318
+ .bk-switcher.bk-switcher-outline.is-checked .switcher-label {
2319
+ margin-left: 4px;
2320
+ color: #2dcb56;
2321
+ }
2322
+ .bk-switcher.bk-switcher-outline.is-disabled {
2323
+ background-color: #fff;
2324
+ border-color: #eee;
2325
+ }
2326
+ .bk-switcher.bk-switcher-outline.is-disabled .switcher-label {
2327
+ color: #eee;
2328
+ }
2329
+ .bk-switcher.bk-switcher-outline.is-disabled:after {
2330
+ background-color: #eee;
2331
+ }
2332
+ .bk-switcher.bk-switcher-outline.bk-switcher-large:after {
2333
+ width: 18px;
2334
+ height: 18px;
2335
+ }
2336
+ .bk-switcher.bk-switcher-outline.bk-switcher-large.is-checked:after {
2337
+ margin-left: -20px;
2338
+ }
2339
+ .bk-switcher.bk-switcher-square {
2340
+ border-radius: 2px;
2341
+ }
2342
+ .bk-switcher.bk-switcher-square:after {
2343
+ border-radius: 2px;
2344
+ }
2345
+ .bk-switcher.bk-switcher-square .switcher-label {
2346
+ width: 35px;
2347
+ }
2348
+ .bk-switcher.bk-switcher-large {
2349
+ width: 42px;
2350
+ height: 24px;
2351
+ line-height: 22px;
2352
+ border-radius: 12px;
2353
+ }
2354
+ .bk-switcher.bk-switcher-large:after {
2355
+ width: 20px;
2356
+ height: 20px;
2357
+ }
2358
+ .bk-switcher.bk-switcher-large.is-checked:after {
2359
+ top: 2px;
2360
+ left: 100%;
2361
+ margin-left: -22px;
2362
+ }
2363
+ .bk-switcher.bk-switcher-large .bk-switcher-loading {
2364
+ width: 22px;
2365
+ height: 22px;
2366
+ }
2367
+ .bk-switcher.bk-switcher-small {
2368
+ width: 26px;
2369
+ height: 16px;
2370
+ line-height: 22px;
2371
+ }
2372
+ .bk-switcher.bk-switcher-small:after {
2373
+ width: 12px;
2374
+ height: 12px;
2375
+ }
2376
+ .bk-switcher.bk-switcher-small.is-checked:after {
2377
+ top: 2px;
2378
+ left: 100%;
2379
+ margin-left: -14px;
2380
+ }
2381
+ .bk-switcher.bk-switcher-small .bk-switcher-loading {
2382
+ width: 14px;
2383
+ height: 14px;
2384
+ }
2385
+ .bk-switcher input[type=checkbox],
2386
+ .bk-switcher input[type=radio] {
2387
+ position: absolute;
2388
+ top: 0;
2389
+ left: 0;
2390
+ z-index: 1;
2391
+ width: 100%;
2392
+ height: 100%;
2393
+ margin: 0;
2394
+ cursor: pointer;
2395
+ opacity: 0;
2396
+ }
2397
+ .bk-table .bk-table-body {
2398
+ height: 500px;
2399
+ overflow: auto;
2400
+ background: white;
2401
+ }
2402
+ .bk-table .bk-table-body table {
2403
+ width: 100%;
2404
+ border-collapse: collapse;
2405
+ }
2406
+ .bk-table .bk-table-body table .cell {
2407
+ height: 40px;
2408
+ padding: 0 15px;
2409
+ overflow: hidden;
2410
+ line-height: 40px;
2411
+ text-overflow: ellipsis;
2412
+ white-space: nowrap;
2413
+ }
2414
+ .bk-table .bk-table-body table th,
2415
+ .bk-table .bk-table-body table td {
2416
+ min-width: 80px;
2417
+ border-bottom: 1px solid #dfe0e5;
2418
+ }
2419
+ .bk-table .bk-table-body table thead th {
2420
+ position: sticky;
2421
+ top: 0;
2422
+ z-index: 1;
2423
+ background-color: #fff;
2424
+ }
2425
+ .bk-table .bk-table-body table thead th.active {
2426
+ background: #f0f1f5;
2427
+ }
2428
+ .bk-table .bk-table-body table tbody tr:hover td {
2429
+ background: #f5f7fa;
2430
+ }
2431
+ .bk-table .bk-table-fixed {
2432
+ width: 100%;
2433
+ }
2434
+ .bk-table colgroup col {
2435
+ background: #fff;
2436
+ }
2437
+ .bk-table colgroup col.active {
2438
+ position: relative;
2439
+ background: #f0f1f5;
2440
+ }
2441
+ .bk-form {
2442
+ text-align: left;
2443
+ }
2444
+ .bk-form .bk-form-item {
2445
+ display: flex;
2446
+ margin-bottom: 24px;
2447
+ }
2448
+ .bk-form .bk-form-label {
2449
+ width: 150px;
2450
+ padding-right: 24px;
2451
+ font-size: 14px;
2452
+ font-weight: normal;
2453
+ line-height: 32px;
2454
+ color: #63656e;
2455
+ text-align: right;
2456
+ }
2457
+ .bk-form .bk-form-content {
2458
+ position: relative;
2459
+ line-height: 32px;
2460
+ }
2461
+ .bk-form .bk-form-error {
2462
+ position: absolute;
2463
+ left: 0;
2464
+ padding-top: 4px;
2465
+ font-size: 12px;
2466
+ line-height: 1;
2467
+ color: #ea3636;
2468
+ text-align: left;
2469
+ }
2470
+ .bk-form--vertical .bk-form-item {
2471
+ flex-direction: column;
2472
+ }
2473
+ .bk-form--vertical .bk-form-label {
2474
+ width: auto;
2475
+ text-align: left;
2476
+ }
2477
+ .bk-form--vertical .bk-form-content {
2478
+ text-align: left;
2479
+ }
2480
+ * {
2481
+ box-sizing: border-box;
2482
+ }
2483
+ @keyframes loadingCircle {
2484
+ 100% {
2485
+ transform: rotate(360deg);
2486
+ }
2487
+ }
2488
+ .bk-steps {
2489
+ display: flex;
2490
+ width: 100%;
2491
+ font-size: 0;
2492
+ }
2493
+ .bk-steps .icon-circle-4-1 {
2494
+ width: 12px;
2495
+ height: 12px;
2496
+ border: 2px solid #fff;
2497
+ border-right: 0;
2498
+ border-bottom: 0;
2499
+ border-left: 0;
2500
+ border-radius: 7px;
2501
+ }
2502
+ .bk-steps .bk-icon {
2503
+ font-size: 24px;
2504
+ line-height: 24px;
2505
+ }
2506
+ .bk-steps .bk-icon.icon-loading {
2507
+ display: inline-block;
2508
+ font-size: 14px;
2509
+ animation: loadingCircle 1s infinite linear;
2510
+ }
2511
+ .bk-steps .bk-step {
2512
+ position: relative;
2513
+ margin-right: 8px;
2514
+ overflow: hidden;
2515
+ text-align: left;
2516
+ white-space: nowrap;
2517
+ flex: 1;
2518
+ }
2519
+ .bk-steps .bk-step .bk-step-indicator {
2520
+ z-index: 1;
2521
+ display: inline-flex;
2522
+ width: 24px;
2523
+ height: 24px;
2524
+ padding: 0;
2525
+ margin-right: 8px;
2526
+ line-height: 24px;
2527
+ color: #979ba5;
2528
+ text-align: center;
2529
+ vertical-align: top;
2530
+ background-color: #fff;
2531
+ border: 1px solid #979ba5;
2532
+ border-radius: 50%;
2533
+ box-sizing: border-box;
2534
+ align-items: center;
2535
+ justify-content: center;
2536
+ }
2537
+ .bk-steps .bk-step .bk-step-number {
2538
+ font-family: arial;
2539
+ font-size: 14px;
2540
+ }
2541
+ .bk-steps .bk-step .bk-step-content {
2542
+ display: inline-block;
2543
+ vertical-align: top;
2544
+ }
2545
+ .bk-steps .bk-step .bk-step-title {
2546
+ position: relative;
2547
+ display: inline-block;
2548
+ padding-right: 8px;
2549
+ font-size: 14px;
2550
+ line-height: 24px;
2551
+ color: #63656e;
2552
+ word-break: break-all;
2553
+ }
2554
+ .bk-steps .bk-step .bk-step-title::after {
2555
+ position: absolute;
2556
+ top: 12px;
2557
+ left: 100%;
2558
+ width: 99999px;
2559
+ height: 1px;
2560
+ background-color: transparent;
2561
+ content: '';
2562
+ }
2563
+ .bk-steps .bk-step .bk-step-description {
2564
+ max-width: 140px;
2565
+ font-size: 12px;
2566
+ color: #979ba5;
2567
+ white-space: normal;
2568
+ }
2569
+ .bk-steps .bk-step.bk-step-no-content .bk-step-indicator {
2570
+ margin-right: 0;
2571
+ }
2572
+ .bk-steps .bk-step.bk-step-no-content .bk-step-indicator::after {
2573
+ position: absolute;
2574
+ top: 12px;
2575
+ left: 100%;
2576
+ width: 99999px;
2577
+ height: 1px;
2578
+ background-color: transparent;
2579
+ content: '';
2580
+ }
2581
+ .bk-steps .bk-step.bk-step-no-content .bk-step-indicator::after {
2582
+ top: 10px;
2583
+ left: 32px;
2584
+ }
2585
+ .bk-steps .bk-step:last-child {
2586
+ margin-right: 0;
2587
+ flex: none;
2588
+ }
2589
+ .bk-steps .bk-step:last-child .bk-step-title {
2590
+ padding-right: 0;
2591
+ }
2592
+ .bk-steps .bk-step:last-child .bk-step-title::after {
2593
+ display: none;
2594
+ }
2595
+ .bk-steps .bk-step.done .bk-step-title,
2596
+ .bk-steps .bk-step.done .bk-step-description {
2597
+ color: #63656e;
2598
+ }
2599
+ .bk-steps .bk-step.current .bk-step-number,
2600
+ .bk-steps .bk-step.current .bk-step-icon,
2601
+ .bk-steps .bk-step.current .bk-step-text {
2602
+ border-width: 2px;
2603
+ }
2604
+ .bk-steps .bk-step.current .bk-step-title,
2605
+ .bk-steps .bk-step.current .bk-step-description {
2606
+ color: #63656e;
2607
+ }
2608
+ .bk-steps .bk-step.current.bk-step-error .bk-step-indicator {
2609
+ background-color: #ea3636;
2610
+ border-color: #ea3636;
2611
+ }
2612
+ .bk-steps .bk-step.current.bk-step-error .bk-step-title,
2613
+ .bk-steps .bk-step.current.bk-step-error .bk-step-description {
2614
+ color: #ea3636;
2615
+ }
2616
+ .bk-steps-primary .bk-step.done .bk-step-number,
2617
+ .bk-steps-primary .bk-step.done .bk-step-icon,
2618
+ .bk-steps-primary .bk-step.done .bk-step-text {
2619
+ color: #3a84ff;
2620
+ border-color: #3a84ff;
2621
+ }
2622
+ .bk-steps-primary .bk-step.done .bk-step-title::after,
2623
+ .bk-steps-primary .bk-step.done .bk-step-indicator::after {
2624
+ background-image: linear-gradient(to right, #3a84ff 50%, transparent 0%);
2625
+ }
2626
+ .bk-steps-primary .bk-step.done::after {
2627
+ background-image: linear-gradient(#3a84ff 50%, transparent 0%);
2628
+ }
2629
+ .bk-steps-primary .bk-step.current .bk-step-number,
2630
+ .bk-steps-primary .bk-step.current .bk-step-icon,
2631
+ .bk-steps-primary .bk-step.current .bk-step-text {
2632
+ color: #fff;
2633
+ background-color: #3a84ff;
2634
+ border-color: #3a84ff;
2635
+ }
2636
+ .bk-steps-warning .bk-step.done .bk-step-number,
2637
+ .bk-steps-warning .bk-step.done .bk-step-icon,
2638
+ .bk-steps-warning .bk-step.done .bk-step-text {
2639
+ color: #ff9c01;
2640
+ border-color: #ff9c01;
2641
+ }
2642
+ .bk-steps-warning .bk-step.done .bk-step-title::after,
2643
+ .bk-steps-warning .bk-step.done .bk-step-indicator::after {
2644
+ background-image: linear-gradient(to right, #ff9c01 50%, transparent 0%);
2645
+ }
2646
+ .bk-steps-warning .bk-step.done::after {
2647
+ background-image: linear-gradient(#ff9c01 50%, transparent 0%);
2648
+ }
2649
+ .bk-steps-warning .bk-step.current .bk-step-number,
2650
+ .bk-steps-warning .bk-step.current .bk-step-icon,
2651
+ .bk-steps-warning .bk-step.current .bk-step-text {
2652
+ color: #fff;
2653
+ background-color: #ff9c01;
2654
+ border-color: #ff9c01;
2655
+ }
2656
+ .bk-steps-success .bk-step.done .bk-step-number,
2657
+ .bk-steps-success .bk-step.done .bk-step-icon,
2658
+ .bk-steps-success .bk-step.done .bk-step-text {
2659
+ color: #2dcb56;
2660
+ border-color: #2dcb56;
2661
+ }
2662
+ .bk-steps-success .bk-step.done .bk-step-title::after,
2663
+ .bk-steps-success .bk-step.done .bk-step-indicator::after {
2664
+ background-image: linear-gradient(to right, #2dcb56 50%, transparent 0%);
2665
+ }
2666
+ .bk-steps-success .bk-step.done::after {
2667
+ background-image: linear-gradient(#2dcb56 50%, transparent 0%);
2668
+ }
2669
+ .bk-steps-success .bk-step.current .bk-step-number,
2670
+ .bk-steps-success .bk-step.current .bk-step-icon,
2671
+ .bk-steps-success .bk-step.current .bk-step-text {
2672
+ color: #fff;
2673
+ background-color: #2dcb56;
2674
+ border-color: #2dcb56;
2675
+ }
2676
+ .bk-steps-danger .bk-step.done .bk-step-number,
2677
+ .bk-steps-danger .bk-step.done .bk-step-icon,
2678
+ .bk-steps-danger .bk-step.done .bk-step-text {
2679
+ color: #ea3636;
2680
+ border-color: #ea3636;
2681
+ }
2682
+ .bk-steps-danger .bk-step.done .bk-step-title::after,
2683
+ .bk-steps-danger .bk-step.done .bk-step-indicator::after {
2684
+ background-image: linear-gradient(to right, #ea3636 50%, transparent 0%);
2685
+ }
2686
+ .bk-steps-danger .bk-step.done::after {
2687
+ background-image: linear-gradient(#ea3636 50%, transparent 0%);
2688
+ }
2689
+ .bk-steps-danger .bk-step.current .bk-step-number,
2690
+ .bk-steps-danger .bk-step.current .bk-step-icon,
2691
+ .bk-steps-danger .bk-step.current .bk-step-text {
2692
+ color: #fff;
2693
+ background-color: #ea3636;
2694
+ border-color: #ea3636;
2695
+ }
2696
+ .bk-steps-dashed .bk-step .bk-step-title::after,
2697
+ .bk-steps-dashed .bk-step .bk-step-indicator::after {
2698
+ background-image: linear-gradient(to right, #c4c6cc 50%, transparent 0%);
2699
+ background-position: bottom;
2700
+ background-repeat: repeat-x;
2701
+ background-size: 6px 1px;
2702
+ }
2703
+ .bk-steps-solid .bk-step .bk-step-title::after,
2704
+ .bk-steps-solid .bk-step .bk-step-indicator::after {
2705
+ background-color: #c4c6cc;
2706
+ }
2707
+ .bk-steps-vertical {
2708
+ flex-direction: column;
2709
+ height: 100%;
2710
+ }
2711
+ .bk-steps-vertical .bk-step {
2712
+ margin-right: 0;
2713
+ margin-bottom: 8px;
2714
+ }
2715
+ .bk-steps-vertical .bk-step .bk-step-title::after,
2716
+ .bk-steps-vertical .bk-step .bk-step-indicator::after {
2717
+ display: none;
2718
+ }
2719
+ .bk-steps-vertical .bk-step::after {
2720
+ position: absolute;
2721
+ top: 32px;
2722
+ left: 12px;
2723
+ width: 1px;
2724
+ height: 100%;
2725
+ background-image: linear-gradient(#c4c6cc 50%, transparent 0%);
2726
+ background-position: right;
2727
+ background-repeat: repeat-y;
2728
+ background-size: 1px 6px;
2729
+ content: '';
2730
+ }
2731
+ .bk-steps-vertical .bk-step .bk-step-title {
2732
+ display: flex;
2733
+ height: 100%;
2734
+ margin-top: 0;
2735
+ text-align: left;
2736
+ align-items: center;
2737
+ }
2738
+ .bk-steps-small .bk-step .bk-step-indicator {
2739
+ width: 20px;
2740
+ height: 20px;
2741
+ line-height: 20px;
2742
+ }
2743
+ .bk-steps-small .bk-step .bk-step-title {
2744
+ font-size: 12px;
2745
+ line-height: 20px;
2746
+ }
2747
+ .bk-steps-small .bk-step .bk-step-number {
2748
+ font-size: 12px;
2749
+ }
2750
+ .bk-steps-small .bk-step .bk-icon {
2751
+ font-size: 20px;
2752
+ line-height: 24px;
2753
+ }
2754
+ .bk-steps-small .bk-step::after {
2755
+ top: 28px;
2756
+ left: 10px;
2757
+ }
2758
+ .bk-steps-small .bk-step .bk-step-title::after {
2759
+ top: 10px;
2760
+ }
2761
+ .bk-steps-small .bk-step.bk-step-no-content .bk-step-indicator::after {
2762
+ top: 8px;
2763
+ left: 28px;
2764
+ }
2765
+ .bk-message {
2766
+ position: fixed;
2767
+ top: 20px;
2768
+ left: 50%;
2769
+ display: flex;
2770
+ min-width: 300px;
2771
+ padding: 10px 15px;
2772
+ font-size: 14px;
2773
+ color: #63656e;
2774
+ background: #f0f8ff;
2775
+ border: 1px solid #e1ecff;
2776
+ border-radius: 2px;
2777
+ transform: translateX(-50%);
2778
+ box-shadow: 0px 2px 4px 0px rgba(16, 37, 74, 0.1);
2779
+ justify-content: space-between;
2780
+ }
2781
+ .bk-message .bk-message-close {
2782
+ padding-left: 20px;
2783
+ margin-right: 0;
2784
+ font-size: 18px;
2785
+ cursor: pointer;
2786
+ }
2787
+ .bk-message-icon {
2788
+ display: inline-block;
2789
+ margin-right: 10px;
2790
+ font-size: 18px;
2791
+ color: #3a84ff;
2792
+ }
2793
+ .bk-message-primary {
2794
+ background: #f0f8ff;
2795
+ border: 1px solid #e1ecff;
2796
+ }
2797
+ .bk-message-warning {
2798
+ background: #fff4e2;
2799
+ border: 1px solid #ffe8c3;
2800
+ }
2801
+ .bk-message-warning .bk-message-icon {
2802
+ color: #ff9c01;
2803
+ }
2804
+ .bk-message-success {
2805
+ background: #f2fff4;
2806
+ border: 1px solid #dcffe2;
2807
+ }
2808
+ .bk-message-success .bk-message-icon {
2809
+ color: #2dcb56;
2810
+ }
2811
+ .bk-message-danger {
2812
+ background: #ffeded;
2813
+ border: 1px solid #ffdddd;
2814
+ }
2815
+ .bk-message-danger .bk-message-icon {
2816
+ color: #ea3636;
2817
+ }
2818
+ .bk-notify {
2819
+ position: fixed;
2820
+ display: flex;
2821
+ width: 360px;
2822
+ padding: 24px;
2823
+ font-size: 14px;
2824
+ line-height: 20px;
2825
+ color: #63656e;
2826
+ background: #fff;
2827
+ border: 1px solid #f0f1f5;
2828
+ border-radius: 2px;
2829
+ box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
2830
+ }
2831
+ .bk-notify .bk-notify-icon {
2832
+ position: absolute;
2833
+ top: 22px;
2834
+ margin-right: 5px;
2835
+ font-size: 18px;
2836
+ color: #3a84ff;
2837
+ }
2838
+ .bk-notify.bk-notify-warning .bk-notify-icon {
2839
+ color: #ff9c01;
2840
+ }
2841
+ .bk-notify.bk-notify-success .bk-notify-icon {
2842
+ color: #2dcb56;
2843
+ }
2844
+ .bk-notify.bk-notify-danger .bk-notify-icon {
2845
+ color: #ea3636;
2846
+ }
2847
+ .bk-notify .bk-notify-icon.bk-notify-close {
2848
+ top: 8px;
2849
+ right: 12px;
2850
+ margin-right: 0;
2851
+ font-size: 18px;
2852
+ color: #979ba5;
2853
+ cursor: pointer;
2854
+ }
2855
+ .bk-notify .bk-notify-content-header {
2856
+ display: inline-block;
2857
+ padding-left: 23px;
2858
+ margin-top: 0;
2859
+ margin-bottom: 4px;
2860
+ font-size: 14px;
3
2861
  font-weight: 700;
4
- border: 0;
5
- border-radius: 3em;
2862
+ }
2863
+ .bk-notify .bk-notify-content-text {
2864
+ display: inline-block;
2865
+ padding-left: 23px;
2866
+ }
2867
+ .bk-tree .bk-tree-node {
2868
+ position: relative;
2869
+ height: var(--lineHeight);
2870
+ padding-left: 0;
2871
+ line-height: var(--lineHeight);
2872
+ cursor: pointer;
2873
+ }
2874
+ .bk-tree .bk-tree-node.is-open::after {
2875
+ position: absolute;
2876
+ top: calc(var(--lineHeight) / 2);
2877
+ left: 0;
2878
+ z-index: 1;
2879
+ width: 0;
2880
+ height: calc(var(--lines) * var(--lineHeight));
2881
+ pointer-events: none;
2882
+ border-left: var(--level-line);
2883
+ content: '';
2884
+ }
2885
+ .bk-tree .bk-tree-node:not(.is-root) {
2886
+ margin-left: calc(var(--depth)*var(--indent));
2887
+ }
2888
+ .bk-tree .bk-tree-node:not(.is-root)::before {
2889
+ position: absolute;
2890
+ top: 50%;
2891
+ left: calc(0px - var(--indent));
2892
+ z-index: 1;
2893
+ width: var(--indent);
2894
+ height: 0;
2895
+ pointer-events: none;
2896
+ border-bottom: var(--level-line);
2897
+ content: '';
2898
+ }
2899
+ .bk-tree .bk-tree-node .bk-tree-icon {
2900
+ margin: 0 6px 0 4px;
2901
+ }
2902
+ .bk-slider {
2903
+ display: flex;
2904
+ flex-direction: row;
2905
+ align-items: center;
2906
+ }
2907
+ .bk-slider .bk-slider-runway {
2908
+ position: relative;
2909
+ width: 100%;
2910
+ height: 4px;
2911
+ vertical-align: middle;
2912
+ cursor: pointer;
2913
+ background: #dcdee5;
2914
+ border-radius: 2px;
2915
+ opacity: 1;
2916
+ }
2917
+ .bk-slider .bk-slider-runway .bk-slider-bar {
2918
+ position: absolute;
2919
+ height: 4px;
2920
+ background: #3a84ff;
2921
+ border-bottom-left-radius: 3px;
2922
+ border-top-left-radius: 3px;
2923
+ }
2924
+ .bk-slider .bk-slider-runway .bk-slider-bar.vertical {
2925
+ width: 4px;
2926
+ }
2927
+ .bk-slider .bk-slider-runway .bk-slider-bar.horizontal {
2928
+ height: 4px;
2929
+ }
2930
+ .bk-slider .bk-slider-runway .disable {
2931
+ background: #979ba5;
2932
+ }
2933
+ .bk-slider .bk-slider-runway .bk-slider-labels {
2934
+ position: relative;
2935
+ }
2936
+ .bk-slider .bk-slider-runway .bk-slider-labels.vertical {
2937
+ left: 18px;
2938
+ display: flex;
2939
+ width: 10px;
2940
+ height: 100%;
2941
+ flex-direction: column;
2942
+ justify-content: space-between;
2943
+ }
2944
+ .bk-slider .bk-slider-runway .bk-slider-labels.horizontal {
2945
+ top: 10px;
2946
+ display: flex;
2947
+ width: 100%;
2948
+ height: 10px;
2949
+ flex-direction: row;
2950
+ justify-content: space-between;
2951
+ }
2952
+ .bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label {
2953
+ position: absolute;
2954
+ display: flex;
2955
+ width: 10px;
2956
+ height: 10px;
2957
+ text-align: center;
2958
+ white-space: nowrap;
2959
+ align-items: center;
2960
+ justify-content: center;
2961
+ }
2962
+ .bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label.vertical {
2963
+ left: 10px;
2964
+ transform: translateY(50%);
2965
+ }
2966
+ .bk-slider .bk-slider-runway .bk-slider-labels .bk-slider-label.horizontal {
2967
+ top: 10px;
2968
+ transform: translateX(-50%);
2969
+ }
2970
+ .bk-slider .bk-slider-interval {
2971
+ position: absolute;
2972
+ width: 4px;
2973
+ height: 4px;
2974
+ background-color: #fff;
2975
+ border-radius: 100%;
2976
+ transform: translateX(-50%);
2977
+ }
2978
+ .bk-slider .bk-slider-interval.vertical {
2979
+ left: 2px;
2980
+ }
2981
+ .bk-slider-input {
2982
+ display: flex;
2983
+ margin: 0 0 0 28px;
2984
+ flex-direction: row;
2985
+ align-items: center;
2986
+ }
2987
+ .bk-slider-input .input-item {
2988
+ width: 92px;
2989
+ }
2990
+ .bk-slider-input .input-center {
2991
+ margin: 0 7px;
2992
+ }
2993
+ .bk-slider-button {
2994
+ position: absolute;
2995
+ z-index: 1001;
2996
+ display: flex;
2997
+ width: 24px;
2998
+ height: 24px;
2999
+ line-height: normal;
3000
+ text-align: center;
3001
+ background-color: transparent;
3002
+ user-select: none;
3003
+ justify-content: center;
3004
+ align-items: center;
3005
+ }
3006
+ .bk-slider-button:hover {
3007
+ cursor: grab;
3008
+ }
3009
+ .bk-slider-button.grabbing {
3010
+ cursor: grabbing;
3011
+ }
3012
+ .bk-slider-button.vertical {
3013
+ left: -10px;
3014
+ transform: translateY(50%);
3015
+ }
3016
+ .bk-slider-button.horizontal {
3017
+ top: -10px;
3018
+ transform: translateX(-50%);
3019
+ }
3020
+ .bk-slider-button .slider-button {
3021
+ width: 12px;
3022
+ height: 12px;
3023
+ background-color: #fff;
3024
+ border: 2px solid #3a84ff;
3025
+ border-radius: 50%;
3026
+ transition: 0.2s;
3027
+ user-select: none;
3028
+ }
3029
+ .bk-slider-button .slider-button-disable {
3030
+ border: 2px solid #979ba5;
3031
+ }
3032
+ .bk-slider-button .slider-button:hover {
3033
+ box-shadow: 0px 0px 0px 4px rgba(58, 132, 255, 0.3);
3034
+ }
3035
+ .bk-slider-button .slider-button:focus {
3036
+ box-shadow: 0px 0px 10px 0px rgba(58, 132, 255, 0.9);
3037
+ }
3038
+ .bk-slider-button .slider-button-label {
3039
+ position: absolute;
3040
+ display: flex;
3041
+ text-align: center;
3042
+ align-items: center;
3043
+ justify-content: center;
3044
+ }
3045
+ .bk-slider-button .slider-button-label.vertical {
3046
+ left: 28px;
3047
+ }
3048
+ .bk-slider-button .slider-button-label.horizontal {
3049
+ top: 20px;
3050
+ }
3051
+ @keyframes loading-scale-animate {
3052
+ 0% {
3053
+ transform: scale(1);
3054
+ }
3055
+ 100% {
3056
+ transform: scale(0.6);
3057
+ }
3058
+ }
3059
+ @keyframes fade {
3060
+ 100% {
3061
+ background-color: transparent;
3062
+ }
3063
+ }
3064
+ .bk-fade-transtion .bk-fade-enter-active,
3065
+ .bk-fade-transtion .bk-fade-leave-active {
3066
+ transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
3067
+ }
3068
+ .bk-fade-transtion .bk-fade-enter,
3069
+ .bk-fade-transtion .bk-fade-leave-to {
3070
+ opacity: 0;
3071
+ }
3072
+ .collapse {
3073
+ width: 60px;
3074
+ }
3075
+ .open {
3076
+ background: #151d2c;
3077
+ }
3078
+ .bk-menu {
3079
+ display: flex;
3080
+ width: 260px;
3081
+ background-color: #182132;
3082
+ flex-direction: column;
3083
+ transition: width 0.3s ease-out;
3084
+ }
3085
+ .bk-menu.is-collapse {
3086
+ width: 60px;
3087
+ }
3088
+ .bk-menu-submenu {
3089
+ display: flex;
3090
+ flex-direction: column;
3091
+ overflow: hidden;
3092
+ text-overflow: clip;
3093
+ white-space: nowrap;
3094
+ align-items: center;
3095
+ transition: width 0.3s ease-out;
3096
+ }
3097
+ .bk-menu-submenu.is-opened {
3098
+ background: #151d2c;
3099
+ }
3100
+ .bk-menu-submenu:hover {
3101
+ color: white;
3102
+ cursor: pointer;
3103
+ }
3104
+ .bk-menu-submenu .submenu-header {
3105
+ display: flex;
3106
+ width: 100%;
3107
+ height: 40px;
3108
+ align-items: center;
3109
+ }
3110
+ .bk-menu-submenu .submenu-header.is-collapse {
3111
+ color: white;
3112
+ background: linear-gradient(90deg, #3f87ff 0%, #3a84ff 100%);
3113
+ }
3114
+ .bk-menu-submenu .submenu-header-icon {
3115
+ display: flex;
3116
+ height: 100%;
3117
+ font-size: 18px;
3118
+ flex: 0 0 60px;
3119
+ align-items: center;
3120
+ justify-content: center;
3121
+ }
3122
+ .bk-menu-submenu .submenu-header-icon .menu-icon {
3123
+ display: flex;
3124
+ width: 16px;
3125
+ height: 16px;
3126
+ font-size: 16px;
3127
+ align-items: center;
3128
+ justify-content: center;
3129
+ color: #b0bdd5;
3130
+ }
3131
+ .bk-menu-submenu .submenu-header-content {
3132
+ display: flex;
3133
+ height: 100%;
3134
+ align-items: center;
3135
+ flex: 1;
3136
+ color: #acb9d1;
3137
+ }
3138
+ .bk-menu-submenu .submenu-header-collapse {
3139
+ display: flex;
3140
+ width: 16px;
3141
+ height: 16px;
3142
+ font-size: 16px;
3143
+ align-items: center;
3144
+ justify-content: center;
3145
+ margin-right: 16px;
3146
+ color: #acb9d1;
3147
+ transform: rotate(-90deg);
3148
+ transition: transform 0.3s ease-out;
3149
+ }
3150
+ .bk-menu-submenu .submenu-header-collapse.is-collapse {
3151
+ transform: rotate(0deg);
3152
+ }
3153
+ .bk-menu-submenu .submenu-list {
3154
+ display: flex;
3155
+ width: 100%;
3156
+ padding: 0;
3157
+ margin: 0;
3158
+ flex-direction: column;
3159
+ flex: 1;
3160
+ /* stylelint-disable-next-line declaration-no-important */
3161
+ transition-property: all !important;
3162
+ }
3163
+ .bk-menu-item {
3164
+ display: flex;
3165
+ width: 100%;
3166
+ height: 40px;
3167
+ min-height: 40px;
3168
+ margin: 2px 0;
3169
+ overflow: hidden;
3170
+ font-size: 14px;
3171
+ color: #96a2b9;
3172
+ text-overflow: clip;
3173
+ white-space: nowrap;
3174
+ align-items: center;
3175
+ transition: width 0.3s ease-in-out;
3176
+ }
3177
+ .bk-menu-item:hover {
3178
+ color: white;
3179
+ cursor: pointer;
3180
+ }
3181
+ .bk-menu-item.is-active {
3182
+ color: white;
3183
+ background: linear-gradient(90deg, #3f87ff 0%, #3a84ff 100%);
3184
+ }
3185
+ .bk-menu-item .item-icon {
3186
+ display: flex;
3187
+ height: 100%;
3188
+ font-size: 18px;
3189
+ flex: 0 0 60px;
3190
+ align-items: center;
3191
+ justify-content: center;
3192
+ }
3193
+ .bk-menu-item .item-icon .default-icon {
3194
+ display: inline-block;
3195
+ width: 3px;
3196
+ height: 3px;
3197
+ background: #63656e;
3198
+ background-color: white;
3199
+ border-radius: 50%;
3200
+ }
3201
+ .bk-menu-item .item-content {
3202
+ display: flex;
3203
+ height: 100%;
3204
+ align-items: center;
3205
+ flex: 1;
3206
+ }
3207
+ .bk-menu-group {
3208
+ display: flex;
3209
+ flex-direction: column;
3210
+ }
3211
+ .bk-menu-group .group-name {
3212
+ display: flex;
3213
+ height: 40px;
3214
+ margin: 0 18px;
3215
+ overflow: hidden;
3216
+ font-size: 12px;
3217
+ line-height: 16px;
3218
+ color: #63656e;
3219
+ text-overflow: clip;
3220
+ white-space: nowrap;
3221
+ flex-wrap: nowrap;
3222
+ align-items: center;
3223
+ }
3224
+ .bk-menu-group .group-wrap {
3225
+ display: flex;
3226
+ flex-direction: column;
3227
+ padding: 0;
3228
+ margin: 0;
3229
+ }
3230
+ .bk-menu .collapse-transition {
3231
+ transition: all 0.3s ease-in-out;
3232
+ }
3233
+ .bk-navigation {
3234
+ display: flex;
3235
+ flex-direction: column;
3236
+ width: 100%;
3237
+ height: 100%;
3238
+ }
3239
+ .bk-navigation-title {
3240
+ display: flex;
3241
+ height: 100%;
3242
+ padding: 0 16px;
3243
+ overflow: hidden;
3244
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
3245
+ align-items: center;
3246
+ justify-content: flex-start;
3247
+ flex: 0 0 260px;
3248
+ }
3249
+ .bk-navigation-title .title-icon {
3250
+ display: flex;
3251
+ font-size: 28px;
3252
+ color: #768197;
3253
+ flex: 0 0 28px;
3254
+ align-items: center;
3255
+ justify-content: center;
3256
+ }
3257
+ .bk-navigation-title .title-desc {
3258
+ display: inline-block;
3259
+ margin-left: 16px;
3260
+ overflow: hidden;
3261
+ font-size: 16px;
3262
+ font-weight: bold;
3263
+ line-height: 24px;
3264
+ color: #96a2b9;
3265
+ white-space: nowrap;
3266
+ }
3267
+ .bk-navigation-header {
3268
+ flex: 0 0 52px;
3269
+ display: flex;
3270
+ align-items: center;
3271
+ padding-right: 24px;
3272
+ overflow: hidden;
3273
+ background: #182132;
3274
+ }
3275
+ .bk-navigation-header .header-right {
3276
+ display: flex;
3277
+ height: 100%;
3278
+ flex: 1;
3279
+ align-items: center;
3280
+ }
3281
+ .bk-navigation-wrapper {
3282
+ position: relative;
3283
+ display: flex;
3284
+ flex-direction: row;
3285
+ flex: 1;
3286
+ }
3287
+ .bk-navigation-wrapper .navigation-nav {
3288
+ position: relative;
3289
+ z-index: 101;
3290
+ display: flex;
3291
+ width: 60px;
3292
+ min-width: 0;
3293
+ min-height: 0;
3294
+ overflow: visible;
3295
+ transition: width cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
3296
+ flex: 0 1 auto;
3297
+ flex-direction: column;
3298
+ }
3299
+ .bk-navigation-wrapper .navigation-nav:hover {
6
3300
  cursor: pointer;
7
- display: inline-block;
8
- line-height: 1;
9
3301
  }
10
- .bk-button .test {
11
- color: red;
3302
+ .bk-navigation-wrapper .navigation-nav .nav-slider {
3303
+ display: flex;
3304
+ width: 60px;
3305
+ height: 100%;
3306
+ background-color: #182132;
3307
+ transition: width cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
3308
+ flex: 1;
3309
+ flex-direction: column;
3310
+ }
3311
+ .bk-navigation-wrapper .navigation-nav .nav-slider-list {
3312
+ max-height: calc(100vh - 100px);
3313
+ padding: 12px 0 4px 0;
3314
+ margin: 0;
3315
+ overflow: auto;
3316
+ flex: 1 1 auto;
12
3317
  }
13
- .bk-button-primary {
14
- color: white;
15
- background-color: #1ea7fd;
3318
+ .bk-navigation-wrapper .navigation-nav .nav-slider-list::-webkit-scrollbar {
3319
+ display: none;
3320
+ width: 6px;
3321
+ height: 5px;
16
3322
  }
17
- .bk-button-secondary {
18
- color: #333;
19
- background-color: transparent;
20
- box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset;
3323
+ .bk-navigation-wrapper .navigation-nav .nav-slider-list::-webkit-scrollbar:hover {
3324
+ transform: none;
3325
+ transition: opacity 340ms ease-out;
21
3326
  }
22
- .bk-button-small {
23
- font-size: 12px;
24
- padding: 10px 16px;
3327
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer {
3328
+ display: flex;
3329
+ padding-left: 14px;
3330
+ flex: 0 0 56px;
3331
+ align-items: center;
3332
+ justify-content: flex-start;
25
3333
  }
26
- .bk-button-normal {
3334
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon {
3335
+ display: flex;
3336
+ width: 32px;
3337
+ height: 32px;
27
3338
  font-size: 14px;
28
- padding: 11px 20px;
3339
+ color: #63656e;
3340
+ border-radius: 100%;
3341
+ align-items: center;
3342
+ justify-content: center;
3343
+ transform-origin: center center;
29
3344
  }
30
- .bk-button-large {
3345
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon-svg {
3346
+ display: flex;
3347
+ width: 16px;
3348
+ height: 16px;
31
3349
  font-size: 16px;
32
- padding: 12px 24px;
3350
+ transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
3351
+ align-items: center;
3352
+ justify-content: center;
3353
+ transform-origin: center center;
33
3354
  }
34
- :root {
35
- --primary-color: #3a84ff;
36
- --success-color: #2dcb56;
37
- --warning-color: #ff9c01;
38
- --danger-color: #ea3636;
39
- --default-color: #63656e;
40
- --font-size-base: 12px;
41
- --font-size-medium: 14px;
42
- --font-size-large: 16px;
43
- --line-height-base: 16px;
44
- --line-height-medium: 16px;
45
- --line-height-large: 18px;
46
- --component-size-small: 26px;
47
- --component-size-base: 32px;
48
- --component-size-large: 38px;
49
- --border-color-base: #dcdee5;
50
- --border-color-disable: #dcdee5;
51
- --border-width-base: 1px;
52
- --border-style-base: solid;
53
- --border-radius-base: 2px;
54
- --input-disabled-bg: #fafbfd;
55
- --input-disabled-border: #dcdee5;
56
- --input-height-base: var(--component-size-base);
57
- --input-color: var(--default-color);
58
- --input-bg: white;
59
- --input-border-color: var(--border-color-base);
60
- }
61
- /* 存放常用变量 */
62
- /********************** 字体 **********************/
63
- /********************** 主题色 **********************/
64
- /* 重点表示、强调、链接以及带有明确指示性 */
65
- /* 描边使用 */
66
- /* 背景色 */
67
- /********************** 辅助色 **********************/
68
- /* 退出、删除、错误、严重警告等否定类标识 */
69
- /* 描边使用 */
70
- /* 背景色 */
71
- /* 警示灯引起注意类标识 */
72
- /* 描边使用 */
73
- /* 背景色 */
74
- /* 成功、完成、进行等肯定类标识 */
75
- /* 描边使用 */
76
- /* 背景色 */
77
- /********************** 中性色 **********************/
78
- /* 重要级文字信息、内容标题信息 */
79
- /* 次级标题、内容文字 主要文字使用颜色 */
80
- /* 三级文字标题、内容文字 */
81
- /* 边框内说明文字 */
82
- /* 按钮、表单边框颜色、禁用时文本颜色 */
83
- /* 表格线颜色区别表单,大描边颜色、线性色 */
84
- /* 表格头部背景色、禁用底色 */
85
- /* 大面积背景色 */
86
- /********************** 基础颜色 **********************/
87
- /* 默认 */
88
- /* 主要 */
89
- /* 信息 */
90
- /* 成功 */
91
- /* 警告 */
92
- /* 危险 */
93
- /********************** 基础颜色-鼠标移上 **********************/
94
- /* 默认 */
95
- /* 主要 */
96
- /* 信息 */
97
- /* 成功 */
98
- /* 警告 */
99
- /* 危险 */
100
- /********************** 基础颜色-激活 **********************/
101
- /* 默认 */
102
- /* 主要 */
103
- /* 信息 */
104
- /* 成功 */
105
- /* 警告 */
106
- /* 危险 */
107
- /********************** 基础颜色-相应谈色 **********************/
108
- /* 默认 */
109
- /* 主要 */
110
- /* 信息 */
111
- /* 成功 */
112
- /* 警告 */
113
- /* 危险 */
114
- /********************** 图标大小 **********************/
115
- /* 最小尺寸图标 */
116
- /* 更小尺寸图标 */
117
- /* 小尺寸图标 */
118
- /* 正常尺寸图标 */
119
- /* 大尺寸图标 */
120
- /* 最大尺寸图标 */
121
- /********************** 文案 **********************/
122
- /* 字体 */
123
- /* 正常尺寸 */
124
- /* 小尺寸 */
125
- /* 大尺寸 */
126
- /* 主要颜色 */
127
- /* 次要颜色 用于 plaeholder 等 */
128
- /********************** 边框 **********************/
129
- /* 边框色 */
130
- /* 表单输入框色 */
131
- /* 表单输入框激活色 */
132
- /********************** 其它 **********************/
133
- /* 滚动条背景色 */
134
- /********************** 层级管理 **********************/
135
- /* 下拉菜单层 */
136
- /* @dropdownMenuZIndex: 50; */
137
- /* 下拉选框层 */
138
- /* @selectorZIndex: 100; */
139
- /* 日期选框层 */
140
- /* @dateZIndex: 200; */
141
- /* 文字提示层 */
142
- /* @tooltipZIndex: 500; */
143
- /* 确认提示层 */
144
- /* @toolboxZIndex: 700; */
145
- /* 加载层 */
146
- /* @loadingZIndex: 1000; */
147
- /* 消息提示层 */
148
- /* @messageZIndex: 2000; */
149
- /* 侧弹层 */
150
- /* @sideSliderZIndex: 1500; */
151
- /* 对话框层 */
152
- /* @dialogZIndex: 2000; */
153
- .bk-input {
3355
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon.is-left {
3356
+ color: #96a2b9;
3357
+ }
3358
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon.is-left:hover {
3359
+ color: #d3d9e4;
3360
+ cursor: pointer;
3361
+ background: linear-gradient(270deg, #253047 0%, #263247 100%);
3362
+ }
3363
+ .bk-navigation-wrapper .navigation-nav .nav-slider-footer .footer-icon:hover {
3364
+ color: #3a3c42;
3365
+ cursor: pointer;
3366
+ background: linear-gradient(270deg, #dee0ea 0%, #eaecf2 100%);
3367
+ }
3368
+ .bk-navigation-wrapper .navigation-container {
3369
+ position: relative;
3370
+ display: flex;
3371
+ max-width: calc(100vw - 60px);
3372
+ min-width: 0;
3373
+ min-height: 0;
3374
+ flex: 1 1 1px;
3375
+ flex-direction: column;
3376
+ }
3377
+ .bk-navigation-wrapper .navigation-container .container-header {
3378
+ z-index: 100;
154
3379
  display: flex;
3380
+ width: 100%;
3381
+ height: 60px;
3382
+ padding: 0 24px;
3383
+ background: #fff;
3384
+ border-bottom: 1px solid #dcdee5;
3385
+ box-shadow: 0px 3px 4px 0px rgba(64, 112, 203, 0.06);
3386
+ flex-basis: 60px;
3387
+ flex-direction: row;
155
3388
  align-items: center;
156
- font-size: 12px;
3389
+ justify-content: flex-end;
157
3390
  }
158
- .bk-input-text {
159
- line-height: normal;
160
- outline: none;
161
- resize: none;
162
- box-sizing: border-box;
163
- position: relative;
3391
+ .bk-navigation-wrapper .navigation-container .container-header-title {
3392
+ height: 21px;
3393
+ font-size: 16px;
3394
+ line-height: 21px;
3395
+ color: #313238;
3396
+ }
3397
+ .bk-navigation-wrapper .navigation-container .container-header-sets {
164
3398
  display: flex;
3399
+ flex: 1 1 auto;
165
3400
  align-items: center;
3401
+ justify-content: flex-end;
3402
+ }
3403
+ .bk-navigation-wrapper .navigation-container .container-content {
3404
+ max-height: calc(100vh - 60px);
3405
+ padding: 20px 24px 0;
3406
+ overflow: auto;
3407
+ background: #f5f7fa;
166
3408
  flex: 1;
3409
+ }
3410
+ .bk-navigation-wrapper .navigation-container .container-footer {
3411
+ display: flex;
3412
+ flex: 0 0 auto;
3413
+ flex-direction: row;
3414
+ align-items: center;
3415
+ justify-content: center;
3416
+ }
3417
+ .bk-date-picker {
3418
+ display: inline-block;
3419
+ width: 261px;
3420
+ line-height: normal;
3421
+ }
3422
+ .bk-date-picker.long {
3423
+ width: 342px;
3424
+ }
3425
+ .bk-date-picker.medium-width {
3426
+ width: 362px;
3427
+ }
3428
+ .bk-date-picker.large-width {
3429
+ width: 402px;
3430
+ }
3431
+ .bk-date-picker-rel {
3432
+ position: relative;
3433
+ }
3434
+ .bk-date-picker-rel .bk-date-picker-editor {
3435
+ display: block;
3436
+ width: 100%;
167
3437
  height: 32px;
168
- padding: 0 10px;
169
- color: #63656e;
3438
+ padding: 0 10px 0 30px;
170
3439
  font-size: 12px;
171
- line-height: 16px;
172
- background-color: white;
173
- background-image: none;
174
- border: 1px solid #dcdee5;
3440
+ line-height: 32px;
3441
+ color: #63656e;
3442
+ cursor: pointer;
3443
+ border: 1px solid #c4c6cc;
175
3444
  border-radius: 2px;
176
- transition: all 0.3s;
3445
+ outline: none;
177
3446
  }
178
- .bk-input-text:focus {
179
- border-color: var(--primary-color);
180
- outline: 0;
3447
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border {
3448
+ border-color: transparent transparent #c4c6cc transparent;
3449
+ }
3450
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border:focus {
3451
+ border-color: transparent transparent #3a84ff transparent;
3452
+ box-shadow: none;
3453
+ }
3454
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border[disabled],
3455
+ .bk-date-picker-rel .bk-date-picker-editor.only-bottom-border.readonly {
3456
+ border-color: transparent transparent #dcdee5 transparent;
3457
+ }
3458
+ .bk-date-picker-rel .bk-date-picker-editor:focus {
3459
+ border: 1px solid #3a84ff;
3460
+ }
3461
+ .bk-date-picker-rel .bk-date-picker-editor::placeholder {
3462
+ color: #c4c6cc;
181
3463
  }
182
- .bk-input-text-disabled {
3464
+ .bk-date-picker-rel .bk-date-picker-editor[disabled] {
3465
+ color: #c4c6cc;
3466
+ cursor: not-allowed;
3467
+ background-color: #fafbfd;
3468
+ border-color: #c4c6cc;
3469
+ }
3470
+ .bk-date-picker-rel .bk-date-picker-editor.readonly {
183
3471
  background-color: #fafbfd;
3472
+ border-color: #c4c6cc;
3473
+ }
3474
+ .bk-date-picker-rel .bk-date-picker-editor.medium-font {
3475
+ font-size: 14px;
3476
+ }
3477
+ .bk-date-picker-rel .bk-date-picker-editor.large-font {
3478
+ font-size: 16px;
3479
+ }
3480
+ .bk-date-picker-rel .clear-action {
3481
+ position: absolute;
3482
+ top: 50%;
3483
+ right: 10px;
3484
+ font-size: 14px;
3485
+ color: #c4c6cc;
3486
+ cursor: pointer;
3487
+ transform: translateY(-50%);
3488
+ }
3489
+ .bk-date-picker-rel .clear-action:hover {
3490
+ color: #979ba5;
3491
+ }
3492
+ .bk-date-picker-rel .icon-wrapper {
3493
+ position: absolute;
3494
+ top: 0;
3495
+ left: 0;
3496
+ display: inline-block;
3497
+ width: 32px;
3498
+ height: 32px;
3499
+ color: #c4c6cc;
3500
+ cursor: pointer;
3501
+ background-color: transparent;
3502
+ }
3503
+ .bk-date-picker-rel .icon-wrapper.disabled {
184
3504
  cursor: not-allowed;
185
- opacity: 1;
186
3505
  }
187
- .bk-input-text[disabled] {
3506
+ .bk-date-picker-rel .icon-wrapper i.icon-clock {
3507
+ position: absolute;
3508
+ top: 50%;
3509
+ left: 50%;
3510
+ transform: translate(-50%, -50%);
3511
+ }
3512
+ .bk-date-picker-rel .icon-wrapper .picker-icon {
3513
+ position: absolute;
3514
+ top: 50%;
3515
+ left: 50%;
3516
+ width: 18px;
3517
+ height: 18px;
3518
+ transform: translate(-50%, -50%);
3519
+ }
3520
+ .bk-date-picker-dropdown {
3521
+ position: absolute;
3522
+ z-index: 900;
3523
+ padding: 5px 0 0 0;
3524
+ overflow: auto;
3525
+ background-color: #fff;
3526
+ border: 1px solid #dcdee5;
3527
+ border-radius: 2px;
3528
+ box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
3529
+ box-sizing: border-box;
3530
+ }
3531
+ .bk-date-picker .bk-select-dropdown {
3532
+ max-height: none;
3533
+ padding: 0;
3534
+ overflow: visible;
3535
+ }
3536
+ .bk-date-picker-footer-wrapper {
3537
+ clear: both;
3538
+ font-size: 14px;
3539
+ color: #979ba5;
3540
+ background-color: #fafbfd;
3541
+ border-top: 1px solid #dcdee5;
3542
+ }
3543
+ .bk-date-picker-top-wrapper {
3544
+ margin-top: -5px;
3545
+ clear: both;
3546
+ font-size: 14px;
3547
+ color: #979ba5;
3548
+ }
3549
+ .bk-picker-panel-body-wrapper.bk-picker-panel-with-sidebar {
3550
+ padding-right: 140px;
3551
+ }
3552
+ .bk-picker-panel-sidebar {
3553
+ position: absolute;
3554
+ top: 0;
3555
+ right: 0;
3556
+ bottom: 0;
3557
+ width: 140px;
3558
+ padding: 12px 0;
3559
+ overflow: auto;
3560
+ font-size: 14px;
3561
+ color: #3a84ff;
3562
+ background-color: #fafbfd;
3563
+ border-left: 1px solid #dcdee5;
3564
+ }
3565
+ .bk-picker-panel-sidebar .bk-picker-panel-shortcut {
3566
+ /* &:nth-of-type(1) {
3567
+ padding-top: 18px;
3568
+ }
3569
+ &:last-child {
3570
+ padding-bottom: 18px;
3571
+ } */
3572
+ padding: 6px 21px;
3573
+ overflow: hidden;
3574
+ text-overflow: ellipsis;
3575
+ white-space: nowrap;
3576
+ cursor: pointer;
3577
+ }
3578
+ .bk-picker-panel-sidebar .bk-picker-panel-shortcut:hover {
3579
+ background-color: #e1ecff;
3580
+ }
3581
+ .bk-picker-panel-body {
3582
+ float: left;
3583
+ }
3584
+ .bk-picker-confirm {
3585
+ height: 42px;
3586
+ padding: 0 20px;
3587
+ clear: both;
3588
+ font-size: 14px;
3589
+ line-height: 41px;
3590
+ text-align: right;
188
3591
  background-color: #fafbfd;
3592
+ border-top: 1px solid #dcdee5;
3593
+ }
3594
+ .bk-picker-confirm a {
3595
+ color: #979ba5;
3596
+ }
3597
+ .bk-picker-confirm a.confirm {
3598
+ margin-left: 10px;
3599
+ color: #3a84ff;
3600
+ }
3601
+ .bk-picker-confirm a[disabled] {
3602
+ color: #c4c6cc;
189
3603
  cursor: not-allowed;
190
- opacity: 1;
191
3604
  }
192
- .bk-input-text-lg {
193
- font-size: 16px;
194
- height: 38px;
3605
+ .bk-picker-confirm .bk-picker-confirm-time {
3606
+ float: left;
3607
+ }
3608
+ .bk-date-picker-header {
3609
+ height: 46px;
3610
+ font-size: 14px;
3611
+ font-weight: 700;
3612
+ line-height: 46px;
3613
+ color: #63656e;
3614
+ text-align: center;
3615
+ border-bottom: 1px solid #dcdee5;
3616
+ }
3617
+ .bk-date-picker-header .bk-date-picker-header-label {
3618
+ cursor: pointer;
3619
+ }
3620
+ .bk-date-picker-header .bk-date-picker-header-label:hover {
3621
+ color: #3a84ff;
3622
+ }
3623
+ .bk-date-picker-header .up-to-now {
3624
+ margin-left: 3px;
3625
+ font-weight: 400;
3626
+ cursor: pointer;
3627
+ }
3628
+ .bk-date-picker-header .up-to-now.disabled {
3629
+ color: #c4c6cc;
3630
+ cursor: not-allowed;
195
3631
  }
196
- .bk-input-text-sm {
3632
+ .bk-date-picker-cells {
3633
+ margin: 9px;
197
3634
  font-size: 12px;
3635
+ color: #63656e;
3636
+ white-space: normal;
3637
+ }
3638
+ .bk-date-picker-cells span {
3639
+ display: inline-block;
3640
+ width: 34px;
3641
+ height: 32px;
3642
+ line-height: 32px;
3643
+ text-align: center;
3644
+ }
3645
+ .bk-date-picker-cells span em {
3646
+ display: inline-block;
3647
+ width: 34px;
3648
+ height: 32px;
3649
+ font-style: normal;
3650
+ line-height: 32px;
3651
+ cursor: pointer;
3652
+ }
3653
+ .bk-date-picker-cells .bk-date-picker-cells-header {
3654
+ text-align: center;
3655
+ }
3656
+ .bk-date-picker-cells .bk-date-picker-cells-header span {
3657
+ width: 28px;
198
3658
  height: 26px;
3659
+ margin: 3px;
3660
+ line-height: 26px;
3661
+ color: #63656e;
3662
+ text-align: center;
3663
+ cursor: default;
199
3664
  }
200
- :root {
201
- --primary-color: #3a84ff;
202
- --success-color: #2dcb56;
203
- --warning-color: #ff9c01;
204
- --danger-color: #ea3636;
205
- --default-color: #63656e;
206
- --font-size-base: 12px;
207
- --font-size-medium: 14px;
208
- --font-size-large: 16px;
209
- --line-height-base: 16px;
210
- --line-height-medium: 16px;
211
- --line-height-large: 18px;
212
- --component-size-small: 26px;
213
- --component-size-base: 32px;
214
- --component-size-large: 38px;
215
- --border-color-base: #dcdee5;
216
- --border-color-disable: #dcdee5;
217
- --border-width-base: 1px;
218
- --border-style-base: solid;
219
- --border-radius-base: 2px;
220
- --input-disabled-bg: #fafbfd;
221
- --input-disabled-border: #dcdee5;
222
- --input-height-base: var(--component-size-base);
223
- --input-color: var(--default-color);
224
- --input-bg: white;
225
- --input-border-color: var(--border-color-base);
226
- }
227
- /* 存放常用变量 */
228
- /********************** 字体 **********************/
229
- /********************** 主题色 **********************/
230
- /* 重点表示、强调、链接以及带有明确指示性 */
231
- /* 描边使用 */
232
- /* 背景色 */
233
- /********************** 辅助色 **********************/
234
- /* 退出、删除、错误、严重警告等否定类标识 */
235
- /* 描边使用 */
236
- /* 背景色 */
237
- /* 警示灯引起注意类标识 */
238
- /* 描边使用 */
239
- /* 背景色 */
240
- /* 成功、完成、进行等肯定类标识 */
241
- /* 描边使用 */
242
- /* 背景色 */
243
- /********************** 中性色 **********************/
244
- /* 重要级文字信息、内容标题信息 */
245
- /* 次级标题、内容文字 主要文字使用颜色 */
246
- /* 三级文字标题、内容文字 */
247
- /* 边框内说明文字 */
248
- /* 按钮、表单边框颜色、禁用时文本颜色 */
249
- /* 表格线颜色区别表单,大描边颜色、线性色 */
250
- /* 表格头部背景色、禁用底色 */
251
- /* 大面积背景色 */
252
- /********************** 基础颜色 **********************/
253
- /* 默认 */
254
- /* 主要 */
255
- /* 信息 */
256
- /* 成功 */
257
- /* 警告 */
258
- /* 危险 */
259
- /********************** 基础颜色-鼠标移上 **********************/
260
- /* 默认 */
261
- /* 主要 */
262
- /* 信息 */
263
- /* 成功 */
264
- /* 警告 */
265
- /* 危险 */
266
- /********************** 基础颜色-激活 **********************/
267
- /* 默认 */
268
- /* 主要 */
269
- /* 信息 */
270
- /* 成功 */
271
- /* 警告 */
272
- /* 危险 */
273
- /********************** 基础颜色-相应谈色 **********************/
274
- /* 默认 */
275
- /* 主要 */
276
- /* 信息 */
277
- /* 成功 */
278
- /* 警告 */
279
- /* 危险 */
280
- /********************** 图标大小 **********************/
281
- /* 最小尺寸图标 */
282
- /* 更小尺寸图标 */
283
- /* 小尺寸图标 */
284
- /* 正常尺寸图标 */
285
- /* 大尺寸图标 */
286
- /* 最大尺寸图标 */
287
- /********************** 文案 **********************/
288
- /* 字体 */
289
- /* 正常尺寸 */
290
- /* 小尺寸 */
291
- /* 大尺寸 */
292
- /* 主要颜色 */
293
- /* 次要颜色 用于 plaeholder 等 */
294
- /********************** 边框 **********************/
295
- /* 边框色 */
296
- /* 表单输入框色 */
297
- /* 表单输入框激活色 */
298
- /********************** 其它 **********************/
299
- /* 滚动条背景色 */
300
- /********************** 层级管理 **********************/
301
- /* 下拉菜单层 */
302
- /* @dropdownMenuZIndex: 50; */
303
- /* 下拉选框层 */
304
- /* @selectorZIndex: 100; */
305
- /* 日期选框层 */
306
- /* @dateZIndex: 200; */
307
- /* 文字提示层 */
308
- /* @tooltipZIndex: 500; */
309
- /* 确认提示层 */
310
- /* @toolboxZIndex: 700; */
311
- /* 加载层 */
312
- /* @loadingZIndex: 1000; */
313
- /* 消息提示层 */
314
- /* @messageZIndex: 2000; */
315
- /* 侧弹层 */
316
- /* @sideSliderZIndex: 1500; */
317
- /* 对话框层 */
318
- /* @dialogZIndex: 2000; */
319
- .bk-radio {
320
- margin-right: 30px;
3665
+ .bk-date-picker-cells-cell:hover em {
3666
+ /* background-color: #e1ecff; */
3667
+ background-color: #f0f1f5;
3668
+ }
3669
+ .bk-date-picker-cells-focused em {
3670
+ color: #3a84ff;
3671
+ box-shadow: 0 0 0 1px #a3c5fd inset;
3672
+ }
3673
+ .bk-date-picker-cells-cell-prev-month em,
3674
+ .bk-date-picker-cells-cell-next-month em {
3675
+ color: #c4c6cc;
3676
+ }
3677
+ .bk-date-picker-cells-cell-prev-month:hover em,
3678
+ .bk-date-picker-cells-cell-next-month:hover em {
3679
+ background: transparent;
3680
+ }
3681
+ span.bk-date-picker-cells-cell-week-label,
3682
+ span.bk-date-picker-cells-cell-week-label:hover,
3683
+ span.bk-date-picker-cells-cell-disabled,
3684
+ span.bk-date-picker-cells-cell-disabled:hover {
3685
+ color: #c4c6cc;
3686
+ cursor: not-allowed;
3687
+ }
3688
+ span.bk-date-picker-cells-cell-week-label em,
3689
+ span.bk-date-picker-cells-cell-week-label:hover em,
3690
+ span.bk-date-picker-cells-cell-disabled em,
3691
+ span.bk-date-picker-cells-cell-disabled:hover em {
3692
+ color: inherit;
3693
+ cursor: not-allowed;
3694
+ background: inherit;
3695
+ }
3696
+ span.bk-date-picker-cells-cell-disabled,
3697
+ span.bk-date-picker-cells-cell-disabled:hover {
3698
+ background-color: #f0f1f5;
3699
+ }
3700
+ .bk-date-picker-cells-cell-today em {
3701
+ position: relative;
3702
+ color: #3a84ff;
3703
+ box-shadow: 0 0 0 1px #a3c5fd inset;
321
3704
  }
322
- .bk-radio-input {
3705
+ .bk-date-picker-cells-cell-range {
323
3706
  position: relative;
3707
+ }
3708
+ .bk-date-picker-cells-cell-range:before {
3709
+ position: absolute;
3710
+ top: 0;
3711
+ right: 0;
3712
+ bottom: 0;
3713
+ left: 0;
3714
+ display: block;
3715
+ background: #e1ecff;
3716
+ border: 0;
3717
+ border-radius: 0;
3718
+ content: '';
3719
+ }
3720
+ .bk-date-picker-cells-cell-range em {
3721
+ position: relative;
3722
+ z-index: 1;
3723
+ }
3724
+ .bk-date-picker-cells-cell-selected em,
3725
+ .bk-date-picker-cells-cell-selected:hover em {
3726
+ color: #fff;
3727
+ background-color: #3a84ff;
3728
+ box-shadow: 0 0 0 1px #3a84ff inset;
3729
+ }
3730
+ span.bk-date-picker-cells-cell-disabled.bk-date-picker-cells-cell-selected em {
3731
+ color: #f7f7f7;
3732
+ background: #c4c6cc;
3733
+ }
3734
+ .bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em:after {
3735
+ background: #fff;
3736
+ }
3737
+ .bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em,
3738
+ .bk-date-picker-cells-cell-today.bk-date-picker-cells-cell-selected em:hover {
3739
+ box-shadow: 0 0 0 1px #3a84ff inset;
3740
+ }
3741
+ .bk-date-picker-cells-year,
3742
+ .bk-date-picker-cells-month {
3743
+ margin-top: 7px;
3744
+ }
3745
+ .bk-date-picker-cells-year span,
3746
+ .bk-date-picker-cells-month span {
3747
+ width: 36px;
3748
+ height: 32px;
3749
+ margin: 10px 12px;
3750
+ line-height: 32px;
3751
+ text-align: center;
3752
+ border-radius: 3px;
3753
+ }
3754
+ .bk-date-picker-cells-year span em,
3755
+ .bk-date-picker-cells-month span em {
3756
+ width: 36px;
3757
+ height: 32px;
3758
+ line-height: 32px;
3759
+ text-align: center;
3760
+ }
3761
+ .bk-picker-panel-icon-btn {
324
3762
  display: inline-block;
325
- width: 16px;
326
- height: 16px;
327
- border-radius: 50%;
328
- border: 1px solid #979ba5;
329
- background-color: #fff;
330
- bottom: -2px;
331
- }
332
- .bk-radio-text {
333
- padding-left: 5px;
334
- }
335
- :root {
336
- --primary-color: #3a84ff;
337
- --success-color: #2dcb56;
338
- --warning-color: #ff9c01;
339
- --danger-color: #ea3636;
340
- --default-color: #63656e;
341
- --font-size-base: 12px;
342
- --font-size-medium: 14px;
343
- --font-size-large: 16px;
344
- --line-height-base: 16px;
345
- --line-height-medium: 16px;
346
- --line-height-large: 18px;
347
- --component-size-small: 26px;
348
- --component-size-base: 32px;
349
- --component-size-large: 38px;
350
- --border-color-base: #dcdee5;
351
- --border-color-disable: #dcdee5;
352
- --border-width-base: 1px;
353
- --border-style-base: solid;
354
- --border-radius-base: 2px;
355
- --input-disabled-bg: #fafbfd;
356
- --input-disabled-border: #dcdee5;
357
- --input-height-base: var(--component-size-base);
358
- --input-color: var(--default-color);
359
- --input-bg: white;
360
- --input-border-color: var(--border-color-base);
361
- }
362
- /* 存放常用变量 */
363
- /********************** 字体 **********************/
364
- /********************** 主题色 **********************/
365
- /* 重点表示、强调、链接以及带有明确指示性 */
366
- /* 描边使用 */
367
- /* 背景色 */
368
- /********************** 辅助色 **********************/
369
- /* 退出、删除、错误、严重警告等否定类标识 */
370
- /* 描边使用 */
371
- /* 背景色 */
372
- /* 警示灯引起注意类标识 */
373
- /* 描边使用 */
374
- /* 背景色 */
375
- /* 成功、完成、进行等肯定类标识 */
376
- /* 描边使用 */
377
- /* 背景色 */
378
- /********************** 中性色 **********************/
379
- /* 重要级文字信息、内容标题信息 */
380
- /* 次级标题、内容文字 主要文字使用颜色 */
381
- /* 三级文字标题、内容文字 */
382
- /* 边框内说明文字 */
383
- /* 按钮、表单边框颜色、禁用时文本颜色 */
384
- /* 表格线颜色区别表单,大描边颜色、线性色 */
385
- /* 表格头部背景色、禁用底色 */
386
- /* 大面积背景色 */
387
- /********************** 基础颜色 **********************/
388
- /* 默认 */
389
- /* 主要 */
390
- /* 信息 */
391
- /* 成功 */
392
- /* 警告 */
393
- /* 危险 */
394
- /********************** 基础颜色-鼠标移上 **********************/
395
- /* 默认 */
396
- /* 主要 */
397
- /* 信息 */
398
- /* 成功 */
399
- /* 警告 */
400
- /* 危险 */
401
- /********************** 基础颜色-激活 **********************/
402
- /* 默认 */
403
- /* 主要 */
404
- /* 信息 */
405
- /* 成功 */
406
- /* 警告 */
407
- /* 危险 */
408
- /********************** 基础颜色-相应谈色 **********************/
409
- /* 默认 */
410
- /* 主要 */
411
- /* 信息 */
412
- /* 成功 */
413
- /* 警告 */
414
- /* 危险 */
415
- /********************** 图标大小 **********************/
416
- /* 最小尺寸图标 */
417
- /* 更小尺寸图标 */
418
- /* 小尺寸图标 */
419
- /* 正常尺寸图标 */
420
- /* 大尺寸图标 */
421
- /* 最大尺寸图标 */
422
- /********************** 文案 **********************/
423
- /* 字体 */
424
- /* 正常尺寸 */
425
- /* 小尺寸 */
426
- /* 大尺寸 */
427
- /* 主要颜色 */
428
- /* 次要颜色 用于 plaeholder 等 */
429
- /********************** 边框 **********************/
430
- /* 边框色 */
431
- /* 表单输入框色 */
432
- /* 表单输入框激活色 */
433
- /********************** 其它 **********************/
434
- /* 滚动条背景色 */
435
- /********************** 层级管理 **********************/
436
- /* 下拉菜单层 */
437
- /* @dropdownMenuZIndex: 50; */
438
- /* 下拉选框层 */
439
- /* @selectorZIndex: 100; */
440
- /* 日期选框层 */
441
- /* @dateZIndex: 200; */
442
- /* 文字提示层 */
443
- /* @tooltipZIndex: 500; */
444
- /* 确认提示层 */
445
- /* @toolboxZIndex: 700; */
446
- /* 加载层 */
447
- /* @loadingZIndex: 1000; */
448
- /* 消息提示层 */
449
- /* @messageZIndex: 2000; */
450
- /* 侧弹层 */
451
- /* @sideSliderZIndex: 1500; */
452
- /* 对话框层 */
453
- /* @dialogZIndex: 2000; */
454
- .bk-checkbox {
455
- margin-right: 30px;
3763
+ width: 20px;
3764
+ height: 46px;
3765
+ line-height: 44px;
3766
+ color: #979ba5;
3767
+ text-align: center;
3768
+ cursor: pointer;
3769
+ transition: color 0.2s ease-in-out;
3770
+ }
3771
+ .bk-picker-panel-icon-btn:hover {
3772
+ color: #2d8cf0;
3773
+ }
3774
+ .bk-picker-panel-icon-btn i {
3775
+ font-size: 20px;
3776
+ }
3777
+ .bk-date-picker-prev-btn {
3778
+ float: left;
3779
+ }
3780
+ .bk-date-picker-prev-btn-arrow-double {
3781
+ margin-left: 10px;
3782
+ }
3783
+ .bk-date-picker-prev-btn-arrow-double i:after {
3784
+ margin-left: -8px;
3785
+ }
3786
+ .bk-date-picker-next-btn {
3787
+ float: right;
3788
+ }
3789
+ .bk-date-picker-next-btn-arrow-double {
3790
+ margin-right: 10px;
3791
+ }
3792
+ .bk-date-picker-next-btn-arrow-double i:after {
3793
+ margin-left: -8px;
3794
+ }
3795
+ .bk-date-picker-with-range .bk-picker-panel-body {
3796
+ min-width: 532px;
3797
+ }
3798
+ .bk-date-picker-with-range .bk-picker-panel-content {
3799
+ float: left;
456
3800
  }
457
- .bk-checkbox-input {
3801
+ .bk-date-picker-with-range .bk-picker-cells-show-week-numbers {
3802
+ min-width: 492px;
3803
+ }
3804
+ .bk-date-picker-transfer {
3805
+ z-index: 1060;
3806
+ max-height: none;
3807
+ }
3808
+ .bk-fade-down-transition-enter-from,
3809
+ .bk-fade-down-transition-leave-to {
3810
+ opacity: 0;
3811
+ transform: translateY(-20px);
3812
+ }
3813
+ .bk-fade-down-transition-enter-to,
3814
+ .bk-fade-down-transition-leave-from {
3815
+ opacity: 1;
3816
+ transform: translateY(0);
3817
+ }
3818
+ .bk-fade-down-transition-enter-active {
3819
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
3820
+ }
3821
+ .bk-fade-down-transition-leave-active {
3822
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
3823
+ }
3824
+ .bk-divider {
458
3825
  position: relative;
3826
+ background: #c4c6cc;
3827
+ }
3828
+ .bk-divider-horizontal {
3829
+ width: 100%;
3830
+ height: 1px;
3831
+ margin: 1em 0;
3832
+ }
3833
+ .bk-divider-info {
3834
+ position: absolute;
3835
+ top: 50%;
3836
+ padding: 0 1.4em;
3837
+ color: #63656e;
3838
+ background-color: white;
3839
+ transform: translateY(-50%);
3840
+ }
3841
+ .bk-divider-info-center {
3842
+ left: 50%;
3843
+ transform: translateX(-50%) translateY(-50%);
3844
+ }
3845
+ .bk-divider-info .bk-divider-horizontal-left {
3846
+ left: 2em;
3847
+ }
3848
+ .bk-divider-info .bk-divider-horizontal-right {
3849
+ right: 2em;
3850
+ }
3851
+ .bk-divider-vertical .bk-divider-info {
3852
+ padding: 20px 0;
3853
+ }
3854
+ .bk-divider-vertical {
459
3855
  display: inline-block;
460
- width: 16px;
461
- height: 16px;
462
- border-radius: 50%;
463
- border: 1px solid #979ba5;
464
- background-color: #fff;
465
- bottom: -2px;
3856
+ width: 1px;
3857
+ height: 100%;
3858
+ min-height: 1em;
3859
+ margin: 0 8px;
3860
+ vertical-align: middle;
3861
+ }
3862
+ .bk-tab {
3863
+ position: relative;
3864
+ display: flex;
3865
+ width: 100%;
3866
+ }
3867
+ .bk-tab--top {
3868
+ flex-direction: column;
3869
+ }
3870
+ .bk-tab--right {
3871
+ flex-direction: row-reverse;
3872
+ }
3873
+ .bk-tab-header {
3874
+ display: flex;
3875
+ color: #63656e;
3876
+ }
3877
+ .bk-tab-header > div {
3878
+ display: flex;
3879
+ margin-bottom: -1px;
3880
+ flex-wrap: nowrap;
3881
+ }
3882
+ .bk-tab--card .bk-tab-header > div,
3883
+ .bk-tab--border-card .bk-tab-header > div {
3884
+ border-right: 1px solid #dcdee5;
3885
+ }
3886
+ .bk-tab--top .bk-tab-header-nav {
3887
+ overflow-x: auto;
3888
+ overflow-y: visible;
3889
+ }
3890
+ .bk-tab--left .bk-tab-header-nav,
3891
+ .bk-tab--right .bk-tab-header-nav {
3892
+ overflow-x: visible;
3893
+ overflow-y: auto;
3894
+ }
3895
+ .bk-tab--card .bk-tab-header-nav,
3896
+ .bk-tab--border-card .bk-tab-header-nav {
3897
+ border-left: 1px solid #dcdee5;
3898
+ }
3899
+ .bk-tab-header-nav::-webkit-scrollbar {
3900
+ display: none;
3901
+ width: 0;
3902
+ height: 0;
3903
+ }
3904
+ .bk-tab-header-operation .bk-tab-header-item {
3905
+ padding: 0 12px;
3906
+ }
3907
+ .bk-tab--left .bk-tab-header {
3908
+ border-right: 1px solid #dcdee5;
3909
+ }
3910
+ .bk-tab--right .bk-tab-header {
3911
+ border-left: 1px solid #dcdee5;
3912
+ }
3913
+ .bk-tab--left .bk-tab-header,
3914
+ .bk-tab--right .bk-tab-header {
3915
+ flex-direction: column;
3916
+ }
3917
+ .bk-tab--left .bk-tab-header > div,
3918
+ .bk-tab--right .bk-tab-header > div {
3919
+ flex-direction: column;
3920
+ }
3921
+ .bk-tab--card .bk-tab-header {
3922
+ border-bottom: 1px solid #dcdee5;
3923
+ }
3924
+ .bk-tab--border-card .bk-tab-header {
3925
+ background: #FAFBFD;
3926
+ border: solid #dcdee5;
3927
+ border-width: 1px 1px 1px 0;
3928
+ }
3929
+ .bk-tab--unborder-card .bk-tab-header {
3930
+ border-bottom: 1px solid #dcdee5;
3931
+ }
3932
+ .bk-tab-header-item {
3933
+ display: flex;
3934
+ white-space: nowrap;
3935
+ cursor: pointer;
3936
+ justify-content: center;
3937
+ align-items: center;
3938
+ }
3939
+ .bk-tab-header-item:hover {
3940
+ color: #3a84ff;
3941
+ }
3942
+ .bk-tab-header-item:hover .bk-tab-header-item-close {
3943
+ display: block;
3944
+ margin-left: 10px;
3945
+ color: #ea3636;
3946
+ }
3947
+ .bk-tab--top .bk-tab-header-item {
3948
+ padding: 0 20px;
3949
+ }
3950
+ .bk-tab--left .bk-tab-header-item,
3951
+ .bk-tab--right .bk-tab-header-item {
3952
+ padding: 0 12px;
3953
+ }
3954
+ .bk-tab--left .bk-tab-header-item {
3955
+ text-align: right;
3956
+ }
3957
+ .bk-tab--card .bk-tab-header-item {
3958
+ border-top: 1px solid #dcdee5;
3959
+ }
3960
+ .bk-tab--card .bk-tab-header-item,
3961
+ .bk-tab--border-card .bk-tab-header-item {
3962
+ border-right: 1px solid #dcdee5;
3963
+ border-bottom: 1px solid #dcdee5;
3964
+ }
3965
+ .bk-tab--card .bk-tab-header-item:last-of-type,
3966
+ .bk-tab--border-card .bk-tab-header-item:last-of-type {
3967
+ border-right: none;
3968
+ }
3969
+ .bk-tab-header-operation .bk-tab-header-item {
3970
+ padding-right: 12px;
3971
+ padding-left: 12px;
3972
+ }
3973
+ .bk-tab-header-item-close {
3974
+ display: none;
3975
+ color: #c4c6cc;
3976
+ }
3977
+ .bk-tab-header--active {
3978
+ color: #3a84ff;
3979
+ }
3980
+ .bk-tab--card .bk-tab-header--active,
3981
+ .bk-tab--border-card .bk-tab-header--active {
3982
+ border-bottom-color: white;
3983
+ }
3984
+ .bk-tab--unborder-card .bk-tab-header--active {
3985
+ border-bottom: 2px solid #3a84ff;
3986
+ }
3987
+ .bk-tab--left .bk-tab-header--active {
3988
+ border-right: 2px solid #3a84ff;
3989
+ }
3990
+ .bk-tab--right .bk-tab-header--active {
3991
+ border-left: 2px solid #3a84ff;
3992
+ }
3993
+ .bk-tab-header--disabled {
3994
+ color: #aaa;
3995
+ pointer-events: none;
3996
+ cursor: not-allowed;
3997
+ }
3998
+ .bk-tab-content {
3999
+ flex: 1;
4000
+ padding: 10px;
4001
+ }
4002
+ .bk-tab--border-card .bk-tab-content {
4003
+ border: solid #dcdee5;
4004
+ border-width: 0 1px 1px;
4005
+ }
4006
+ .bk-tab-panel {
4007
+ height: 100%;
4008
+ }
4009
+ .bk-popper {
4010
+ display: none;
4011
+ padding: 7px 14px;
4012
+ font-size: 12px;
4013
+ color: #fff;
4014
+ background: #333;
4015
+ border-radius: 4px;
4016
+ }
4017
+ .bk-popper.light {
4018
+ color: #63656e;
4019
+ background: #fff;
4020
+ box-shadow: #dcdee5 0px 0px 6px 0px;
4021
+ }
4022
+ .bk-popper .bk-popper-arrow,
4023
+ .bk-popper .bk-popper-arrow::before {
4024
+ position: absolute;
4025
+ width: 8px;
4026
+ height: 8px;
4027
+ background: inherit;
4028
+ }
4029
+ .bk-popper .bk-popper-arrow {
4030
+ visibility: hidden;
4031
+ }
4032
+ .bk-popper .bk-popper-arrow::before {
4033
+ content: '';
4034
+ visibility: visible;
4035
+ transform: rotate(45deg);
4036
+ }
4037
+ .bk-popper[data-show] {
4038
+ display: block;
4039
+ }
4040
+ .bk-popper[data-popper-placement^='top'] > .bk-popper-arrow {
4041
+ bottom: -4px;
4042
+ }
4043
+ .bk-popper[data-popper-placement^='bottom'] > .bk-popper-arrow {
4044
+ top: -4px;
4045
+ }
4046
+ .bk-popper[data-popper-placement^='left'] > .bk-popper-arrow {
4047
+ right: -4px;
466
4048
  }
467
- .bk-checkbox-text {
468
- padding-left: 5px;
4049
+ .bk-popper[data-popper-placement^='right'] > .bk-popper-arrow {
4050
+ left: -4px;
469
4051
  }