@wangxinowo/vue-datepicker-next 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (571) hide show
  1. package/README.md +104 -0
  2. package/dist/vue-datepicker-next.min.css +3560 -0
  3. package/dist/vue-datepicker-next.min.js +11 -0
  4. package/package.json +84 -0
  5. package/src/components/_util/BaseMixin.js +40 -0
  6. package/src/components/_util/ContainerRender.jsx +98 -0
  7. package/src/components/_util/FormDecoratorDirective.js +10 -0
  8. package/src/components/_util/KeyCode.js +521 -0
  9. package/src/components/_util/Portal.js +51 -0
  10. package/src/components/_util/PortalWrapper.js +156 -0
  11. package/src/components/_util/StateMixin.js +10 -0
  12. package/src/components/_util/__tests__/easings.test.js +13 -0
  13. package/src/components/_util/__tests__/scrollTo.test.js +56 -0
  14. package/src/components/_util/antDirective.js +13 -0
  15. package/src/components/_util/antInputDirective.js +73 -0
  16. package/src/components/_util/callMoment.js +4 -0
  17. package/src/components/_util/colors.js +17 -0
  18. package/src/components/_util/createChainedFunction.js +22 -0
  19. package/src/components/_util/css-animation/Event.js +130 -0
  20. package/src/components/_util/css-animation/index.js +184 -0
  21. package/src/components/_util/easings.js +8 -0
  22. package/src/components/_util/env.js +14 -0
  23. package/src/components/_util/getLocale.js +30 -0
  24. package/src/components/_util/getRequestAnimationFrame.js +46 -0
  25. package/src/components/_util/getScroll.js +17 -0
  26. package/src/components/_util/getScrollBarSize.js +38 -0
  27. package/src/components/_util/getTransitionProps.js +34 -0
  28. package/src/components/_util/interopDefault.js +4 -0
  29. package/src/components/_util/isCssAnimationSupported.js +24 -0
  30. package/src/components/_util/isFlexSupported.js +12 -0
  31. package/src/components/_util/isNumeric.js +4 -0
  32. package/src/components/_util/isValid.js +4 -0
  33. package/src/components/_util/moment-util.js +75 -0
  34. package/src/components/_util/openAnimation.js +67 -0
  35. package/src/components/_util/portalDirective.js +24 -0
  36. package/src/components/_util/props-util.js +335 -0
  37. package/src/components/_util/proxyComponent.jsx +58 -0
  38. package/src/components/_util/raf.js +32 -0
  39. package/src/components/_util/requestAnimationTimeout.js +23 -0
  40. package/src/components/_util/responsiveObserve.js +94 -0
  41. package/src/components/_util/scrollTo.js +37 -0
  42. package/src/components/_util/setStyle.js +25 -0
  43. package/src/components/_util/store/PropTypes.js +7 -0
  44. package/src/components/_util/store/Provider.jsx +15 -0
  45. package/src/components/_util/store/connect.jsx +106 -0
  46. package/src/components/_util/store/create.js +30 -0
  47. package/src/components/_util/store/index.js +5 -0
  48. package/src/components/_util/styleChecker.js +13 -0
  49. package/src/components/_util/switchScrollingEffect.js +20 -0
  50. package/src/components/_util/throttleByAnimationFrame.js +45 -0
  51. package/src/components/_util/transButton.jsx +81 -0
  52. package/src/components/_util/triggerEvent.js +8 -0
  53. package/src/components/_util/type.js +4 -0
  54. package/src/components/_util/vnode.js +147 -0
  55. package/src/components/_util/vue-types/index.js +263 -0
  56. package/src/components/_util/vue-types/utils.js +200 -0
  57. package/src/components/_util/warning.js +7 -0
  58. package/src/components/_util/wave.jsx +169 -0
  59. package/src/components/base/index.js +9 -0
  60. package/src/components/base/style/index.js +2 -0
  61. package/src/components/button/__tests__/__snapshots__/demo.test.js.snap +103 -0
  62. package/src/components/button/__tests__/__snapshots__/index.test.js.snap +43 -0
  63. package/src/components/button/__tests__/demo.test.js +3 -0
  64. package/src/components/button/__tests__/index.test.js +239 -0
  65. package/src/components/button/button-group.jsx +52 -0
  66. package/src/components/button/button.jsx +186 -0
  67. package/src/components/button/buttonTypes.js +13 -0
  68. package/src/components/button/index.js +14 -0
  69. package/src/components/button/style/index.js +2 -0
  70. package/src/components/button/style/index.less +224 -0
  71. package/src/components/button/style/mixin.less +357 -0
  72. package/src/components/calendar/locale/en_US.js +2 -0
  73. package/src/components/config-provider/__tests__/index.test.js +44 -0
  74. package/src/components/config-provider/configConsumerProps.jsx +9 -0
  75. package/src/components/config-provider/index.jsx +91 -0
  76. package/src/components/config-provider/renderEmpty.jsx +42 -0
  77. package/src/components/config-provider/style/index.js +1 -0
  78. package/src/components/config-provider/style/index.less +2 -0
  79. package/src/components/date-picker/InputIcon.js +20 -0
  80. package/src/components/date-picker/PresetPanel.jsx +102 -0
  81. package/src/components/date-picker/RangePicker.jsx +1010 -0
  82. package/src/components/date-picker/WeekPicker.jsx +235 -0
  83. package/src/components/date-picker/__tests__/DatePicker.test.js +189 -0
  84. package/src/components/date-picker/__tests__/MonthPicker.test.js +29 -0
  85. package/src/components/date-picker/__tests__/RangePicker.test.js +417 -0
  86. package/src/components/date-picker/__tests__/WeekPicker.test.js +24 -0
  87. package/src/components/date-picker/__tests__/__snapshots__/DatePicker.test.js.snap +3 -0
  88. package/src/components/date-picker/__tests__/__snapshots__/RangePicker.test.js.snap +695 -0
  89. package/src/components/date-picker/__tests__/__snapshots__/WeekPicker.test.js.snap +3 -0
  90. package/src/components/date-picker/__tests__/__snapshots__/demo.test.js.snap +49 -0
  91. package/src/components/date-picker/__tests__/__snapshots__/other.test.js.snap +240 -0
  92. package/src/components/date-picker/__tests__/demo.test.js +3 -0
  93. package/src/components/date-picker/__tests__/mount.test.js +11 -0
  94. package/src/components/date-picker/__tests__/other.test.js +88 -0
  95. package/src/components/date-picker/__tests__/showTime.test.js +234 -0
  96. package/src/components/date-picker/__tests__/utils.js +34 -0
  97. package/src/components/date-picker/createPicker.js +273 -0
  98. package/src/components/date-picker/generate/dayjs.js +438 -0
  99. package/src/components/date-picker/generate/index.js +125 -0
  100. package/src/components/date-picker/generate/moment.js +357 -0
  101. package/src/components/date-picker/index.js +37 -0
  102. package/src/components/date-picker/interface.js +172 -0
  103. package/src/components/date-picker/locale/ar_EG.js +23 -0
  104. package/src/components/date-picker/locale/bg_BG.js +19 -0
  105. package/src/components/date-picker/locale/ca_ES.js +19 -0
  106. package/src/components/date-picker/locale/cs_CZ.js +19 -0
  107. package/src/components/date-picker/locale/da_DK.js +19 -0
  108. package/src/components/date-picker/locale/de_DE.js +19 -0
  109. package/src/components/date-picker/locale/el_GR.js +19 -0
  110. package/src/components/date-picker/locale/en_GB.js +19 -0
  111. package/src/components/date-picker/locale/en_US.js +19 -0
  112. package/src/components/date-picker/locale/es_ES.js +19 -0
  113. package/src/components/date-picker/locale/et_EE.js +19 -0
  114. package/src/components/date-picker/locale/example.json +39 -0
  115. package/src/components/date-picker/locale/fa_IR.js +19 -0
  116. package/src/components/date-picker/locale/fi_FI.js +19 -0
  117. package/src/components/date-picker/locale/fr_BE.js +19 -0
  118. package/src/components/date-picker/locale/fr_FR.js +19 -0
  119. package/src/components/date-picker/locale/ga_IE.js +19 -0
  120. package/src/components/date-picker/locale/he_IL.js +19 -0
  121. package/src/components/date-picker/locale/hi_IN.js +19 -0
  122. package/src/components/date-picker/locale/hr_HR.js +19 -0
  123. package/src/components/date-picker/locale/hu_HU.js +19 -0
  124. package/src/components/date-picker/locale/id_ID.js +19 -0
  125. package/src/components/date-picker/locale/is_IS.js +19 -0
  126. package/src/components/date-picker/locale/it_IT.js +19 -0
  127. package/src/components/date-picker/locale/ja_JP.js +18 -0
  128. package/src/components/date-picker/locale/kn_IN.js +19 -0
  129. package/src/components/date-picker/locale/ko_KR.js +19 -0
  130. package/src/components/date-picker/locale/ku_IQ.js +18 -0
  131. package/src/components/date-picker/locale/lv_LV.js +19 -0
  132. package/src/components/date-picker/locale/mk_MK.js +19 -0
  133. package/src/components/date-picker/locale/mn_MN.js +19 -0
  134. package/src/components/date-picker/locale/ms_MY.js +19 -0
  135. package/src/components/date-picker/locale/nb_NO.js +19 -0
  136. package/src/components/date-picker/locale/nl_BE.js +19 -0
  137. package/src/components/date-picker/locale/nl_NL.js +19 -0
  138. package/src/components/date-picker/locale/pl_PL.js +19 -0
  139. package/src/components/date-picker/locale/pt_BR.js +19 -0
  140. package/src/components/date-picker/locale/pt_PT.js +46 -0
  141. package/src/components/date-picker/locale/ro_RO.js +19 -0
  142. package/src/components/date-picker/locale/ru_RU.js +22 -0
  143. package/src/components/date-picker/locale/sk_SK.js +19 -0
  144. package/src/components/date-picker/locale/sl_SI.js +43 -0
  145. package/src/components/date-picker/locale/sr_RS.js +19 -0
  146. package/src/components/date-picker/locale/sv_SE.js +18 -0
  147. package/src/components/date-picker/locale/ta_IN.js +20 -0
  148. package/src/components/date-picker/locale/th_TH.js +19 -0
  149. package/src/components/date-picker/locale/tr_TR.js +19 -0
  150. package/src/components/date-picker/locale/uk_UA.js +18 -0
  151. package/src/components/date-picker/locale/vi_VN.js +19 -0
  152. package/src/components/date-picker/locale/zh_CN.js +21 -0
  153. package/src/components/date-picker/locale/zh_TW.js +20 -0
  154. package/src/components/date-picker/statusUtils.js +53 -0
  155. package/src/components/date-picker/style/Calendar.less +402 -0
  156. package/src/components/date-picker/style/DecadePanel.less +81 -0
  157. package/src/components/date-picker/style/MonthPanel.less +86 -0
  158. package/src/components/date-picker/style/MonthPicker.less +11 -0
  159. package/src/components/date-picker/style/Picker.less +113 -0
  160. package/src/components/date-picker/style/RangePicker.less +327 -0
  161. package/src/components/date-picker/style/TimePicker.less +151 -0
  162. package/src/components/date-picker/style/WeekPicker.less +21 -0
  163. package/src/components/date-picker/style/YearPanel.less +93 -0
  164. package/src/components/date-picker/style/index.js +8 -0
  165. package/src/components/date-picker/style/index.less +20 -0
  166. package/src/components/date-picker/style/presets.less +69 -0
  167. package/src/components/date-picker/style/status.less +94 -0
  168. package/src/components/date-picker/style/transitions.less +176 -0
  169. package/src/components/date-picker/utils.js +209 -0
  170. package/src/components/date-picker/wrapPicker.js +258 -0
  171. package/src/components/empty/__tests__/__snapshots__/demo.test.js.snap +195 -0
  172. package/src/components/empty/__tests__/demo.test.js +3 -0
  173. package/src/components/empty/__tests__/index.test.js +25 -0
  174. package/src/components/empty/empty.jsx +47 -0
  175. package/src/components/empty/index.jsx +78 -0
  176. package/src/components/empty/simple.jsx +20 -0
  177. package/src/components/empty/style/index.js +2 -0
  178. package/src/components/empty/style/index.less +52 -0
  179. package/src/components/icon/IconFont.jsx +52 -0
  180. package/src/components/icon/__tests__/__snapshots__/demo.test.js.snap +671 -0
  181. package/src/components/icon/__tests__/__snapshots__/index.test.js.snap +77 -0
  182. package/src/components/icon/__tests__/demo.test.js +3 -0
  183. package/src/components/icon/__tests__/index.test.js +236 -0
  184. package/src/components/icon/index.js +185 -0
  185. package/src/components/icon/style/index.js +2 -0
  186. package/src/components/icon/style/index.less +4 -0
  187. package/src/components/icon/twoTonePrimaryColor.js +12 -0
  188. package/src/components/icon/utils.js +77 -0
  189. package/src/components/input/ClearableLabeledInput.jsx +182 -0
  190. package/src/components/input/Group.jsx +41 -0
  191. package/src/components/input/Input.jsx +240 -0
  192. package/src/components/input/Password.jsx +117 -0
  193. package/src/components/input/ResizableTextArea.jsx +158 -0
  194. package/src/components/input/Search.jsx +185 -0
  195. package/src/components/input/TextArea.jsx +131 -0
  196. package/src/components/input/__tests__/Search.test.js +134 -0
  197. package/src/components/input/__tests__/__snapshots__/Search.test.js.snap +5 -0
  198. package/src/components/input/__tests__/__snapshots__/demo.test.js.snap +86 -0
  199. package/src/components/input/__tests__/__snapshots__/index.test.js.snap +9 -0
  200. package/src/components/input/__tests__/demo.test.js +3 -0
  201. package/src/components/input/__tests__/index.test.js +124 -0
  202. package/src/components/input/calculateNodeHeight.js +151 -0
  203. package/src/components/input/index.js +27 -0
  204. package/src/components/input/inputProps.js +36 -0
  205. package/src/components/input/style/index.js +5 -0
  206. package/src/components/input/style/index.less +52 -0
  207. package/src/components/input/style/mixin.less +453 -0
  208. package/src/components/input/style/search-input.less +34 -0
  209. package/src/components/locale/ar_EG.js +43 -0
  210. package/src/components/locale/bg_BG.js +43 -0
  211. package/src/components/locale/ca_ES.js +41 -0
  212. package/src/components/locale/cs_CZ.js +41 -0
  213. package/src/components/locale/da_DK.js +43 -0
  214. package/src/components/locale/de_DE.js +43 -0
  215. package/src/components/locale/default.js +62 -0
  216. package/src/components/locale/el_GR.js +43 -0
  217. package/src/components/locale/en_GB.js +43 -0
  218. package/src/components/locale/en_US.js +3 -0
  219. package/src/components/locale/es_ES.js +59 -0
  220. package/src/components/locale/et_EE.js +43 -0
  221. package/src/components/locale/fa_IR.js +43 -0
  222. package/src/components/locale/fi_FI.js +44 -0
  223. package/src/components/locale/fr_BE.js +47 -0
  224. package/src/components/locale/fr_FR.js +47 -0
  225. package/src/components/locale/ga_IE.js +43 -0
  226. package/src/components/locale/he_IL.js +43 -0
  227. package/src/components/locale/hi_IN.js +51 -0
  228. package/src/components/locale/hr_HR.js +57 -0
  229. package/src/components/locale/hu_HU.js +44 -0
  230. package/src/components/locale/hy_AM.js +109 -0
  231. package/src/components/locale/id_ID.js +45 -0
  232. package/src/components/locale/is_IS.js +43 -0
  233. package/src/components/locale/it_IT.js +56 -0
  234. package/src/components/locale/ja_JP.js +43 -0
  235. package/src/components/locale/kn_IN.js +51 -0
  236. package/src/components/locale/ko_KR.js +43 -0
  237. package/src/components/locale/ku_IQ.js +43 -0
  238. package/src/components/locale/lv_LV.js +43 -0
  239. package/src/components/locale/mk_MK.js +58 -0
  240. package/src/components/locale/mn_MN.js +43 -0
  241. package/src/components/locale/ms_MY.js +63 -0
  242. package/src/components/locale/nb_NO.js +43 -0
  243. package/src/components/locale/ne_NP.js +44 -0
  244. package/src/components/locale/nl_BE.js +43 -0
  245. package/src/components/locale/nl_NL.js +62 -0
  246. package/src/components/locale/pl_PL.js +43 -0
  247. package/src/components/locale/pt_BR.js +49 -0
  248. package/src/components/locale/pt_PT.js +44 -0
  249. package/src/components/locale/ro_RO.js +62 -0
  250. package/src/components/locale/ru_RU.js +53 -0
  251. package/src/components/locale/sk_SK.js +62 -0
  252. package/src/components/locale/sl_SI.js +43 -0
  253. package/src/components/locale/sr_RS.js +43 -0
  254. package/src/components/locale/sv_SE.js +47 -0
  255. package/src/components/locale/ta_IN.js +63 -0
  256. package/src/components/locale/th_TH.js +62 -0
  257. package/src/components/locale/tr_TR.js +57 -0
  258. package/src/components/locale/uk_UA.js +43 -0
  259. package/src/components/locale/vi_VN.js +43 -0
  260. package/src/components/locale/zh_CN.js +62 -0
  261. package/src/components/locale/zh_TW.js +49 -0
  262. package/src/components/locale-provider/LocaleReceiver.jsx +43 -0
  263. package/src/components/locale-provider/__tests__/__snapshots__/demo.test.js.snap +434 -0
  264. package/src/components/locale-provider/__tests__/__snapshots__/index.test.js.snap +22618 -0
  265. package/src/components/locale-provider/__tests__/demo.test.js +3 -0
  266. package/src/components/locale-provider/__tests__/index.test.js +271 -0
  267. package/src/components/locale-provider/ar_EG.js +3 -0
  268. package/src/components/locale-provider/bg_BG.js +3 -0
  269. package/src/components/locale-provider/ca_ES.js +3 -0
  270. package/src/components/locale-provider/cs_CZ.js +3 -0
  271. package/src/components/locale-provider/da_DK.js +3 -0
  272. package/src/components/locale-provider/de_DE.js +3 -0
  273. package/src/components/locale-provider/default.js +3 -0
  274. package/src/components/locale-provider/el_GR.js +3 -0
  275. package/src/components/locale-provider/en_GB.js +3 -0
  276. package/src/components/locale-provider/en_US.js +3 -0
  277. package/src/components/locale-provider/es_ES.js +3 -0
  278. package/src/components/locale-provider/et_EE.js +3 -0
  279. package/src/components/locale-provider/fa_IR.js +3 -0
  280. package/src/components/locale-provider/fi_FI.js +3 -0
  281. package/src/components/locale-provider/fr_BE.js +3 -0
  282. package/src/components/locale-provider/fr_FR.js +3 -0
  283. package/src/components/locale-provider/ga_IE.js +3 -0
  284. package/src/components/locale-provider/he_IL.js +3 -0
  285. package/src/components/locale-provider/hi_IN.js +3 -0
  286. package/src/components/locale-provider/hr_HR.js +3 -0
  287. package/src/components/locale-provider/hu_HU.js +3 -0
  288. package/src/components/locale-provider/hy_AM.js +3 -0
  289. package/src/components/locale-provider/id_ID.js +3 -0
  290. package/src/components/locale-provider/index.jsx +82 -0
  291. package/src/components/locale-provider/is_IS.js +3 -0
  292. package/src/components/locale-provider/it_IT.js +3 -0
  293. package/src/components/locale-provider/ja_JP.js +3 -0
  294. package/src/components/locale-provider/kn_IN.js +3 -0
  295. package/src/components/locale-provider/ko_KR.js +3 -0
  296. package/src/components/locale-provider/ku_IQ.js +3 -0
  297. package/src/components/locale-provider/lv_LV.js +3 -0
  298. package/src/components/locale-provider/mk_MK.js +3 -0
  299. package/src/components/locale-provider/mn_MN.js +3 -0
  300. package/src/components/locale-provider/ms_MY.js +3 -0
  301. package/src/components/locale-provider/nb_NO.js +3 -0
  302. package/src/components/locale-provider/ne-NP.js +3 -0
  303. package/src/components/locale-provider/ne_NP.js +3 -0
  304. package/src/components/locale-provider/nl_BE.js +3 -0
  305. package/src/components/locale-provider/nl_NL.js +3 -0
  306. package/src/components/locale-provider/pl_PL.js +3 -0
  307. package/src/components/locale-provider/pt_BR.js +3 -0
  308. package/src/components/locale-provider/pt_PT.js +3 -0
  309. package/src/components/locale-provider/ro_RO.js +3 -0
  310. package/src/components/locale-provider/ru_RU.js +3 -0
  311. package/src/components/locale-provider/sk_SK.js +3 -0
  312. package/src/components/locale-provider/sl_SI.js +3 -0
  313. package/src/components/locale-provider/sr_RS.js +3 -0
  314. package/src/components/locale-provider/style/index.js +1 -0
  315. package/src/components/locale-provider/style/index.less +2 -0
  316. package/src/components/locale-provider/sv_SE.js +3 -0
  317. package/src/components/locale-provider/ta_IN.js +62 -0
  318. package/src/components/locale-provider/th_TH.js +3 -0
  319. package/src/components/locale-provider/tr_TR.js +3 -0
  320. package/src/components/locale-provider/uk_UA.js +3 -0
  321. package/src/components/locale-provider/vi_VN.js +3 -0
  322. package/src/components/locale-provider/zh_CN.js +3 -0
  323. package/src/components/locale-provider/zh_TW.js +3 -0
  324. package/src/components/style/color/bezierEasing.less +110 -0
  325. package/src/components/style/color/colorPalette.less +75 -0
  326. package/src/components/style/color/colors.less +149 -0
  327. package/src/components/style/color/tinyColor.less +1184 -0
  328. package/src/components/style/core/base.less +510 -0
  329. package/src/components/style/core/iconfont.less +19 -0
  330. package/src/components/style/core/index.less +4 -0
  331. package/src/components/style/core/motion/fade.less +31 -0
  332. package/src/components/style/core/motion/move.less +120 -0
  333. package/src/components/style/core/motion/other.less +45 -0
  334. package/src/components/style/core/motion/slide.less +120 -0
  335. package/src/components/style/core/motion/swing.less +34 -0
  336. package/src/components/style/core/motion/zoom.less +162 -0
  337. package/src/components/style/core/motion.less +20 -0
  338. package/src/components/style/index.js +1 -0
  339. package/src/components/style/index.less +2 -0
  340. package/src/components/style/index.tsx +1 -0
  341. package/src/components/style/mixins/clearfix.less +13 -0
  342. package/src/components/style/mixins/compatibility.less +22 -0
  343. package/src/components/style/mixins/iconfont.less +43 -0
  344. package/src/components/style/mixins/index.less +10 -0
  345. package/src/components/style/mixins/motion.less +35 -0
  346. package/src/components/style/mixins/operation-unit.less +18 -0
  347. package/src/components/style/mixins/reset.less +13 -0
  348. package/src/components/style/mixins/size.less +10 -0
  349. package/src/components/style/mixins/typography.less +49 -0
  350. package/src/components/style/themes/default.less +701 -0
  351. package/src/components/style/themes/index.less +1 -0
  352. package/src/components/style/v2-compatible-reset.js +1 -0
  353. package/src/components/style/v2-compatible-reset.less +51 -0
  354. package/src/components/style/v2-compatible-reset.tsx +1 -0
  355. package/src/components/tag/CheckableTag.jsx +43 -0
  356. package/src/components/tag/Tag.jsx +145 -0
  357. package/src/components/tag/__tests__/__snapshots__/demo.test.js.snap +92 -0
  358. package/src/components/tag/__tests__/__snapshots__/index.test.js.snap +13 -0
  359. package/src/components/tag/__tests__/demo.test.js +3 -0
  360. package/src/components/tag/__tests__/index.test.js +82 -0
  361. package/src/components/tag/index.js +14 -0
  362. package/src/components/tag/style/index.js +2 -0
  363. package/src/components/tag/style/index.less +106 -0
  364. package/src/components/time-picker/__tests__/__snapshots__/demo.test.js.snap +39 -0
  365. package/src/components/time-picker/__tests__/__snapshots__/index.test.js.snap +5 -0
  366. package/src/components/time-picker/__tests__/demo.test.js +3 -0
  367. package/src/components/time-picker/__tests__/index.test.js +55 -0
  368. package/src/components/time-picker/index.jsx +267 -0
  369. package/src/components/time-picker/locale/ar_EG.js +5 -0
  370. package/src/components/time-picker/locale/bg_BG.js +5 -0
  371. package/src/components/time-picker/locale/ca_ES.js +5 -0
  372. package/src/components/time-picker/locale/cs_CZ.js +5 -0
  373. package/src/components/time-picker/locale/da_DK.js +5 -0
  374. package/src/components/time-picker/locale/de_DE.js +5 -0
  375. package/src/components/time-picker/locale/el_GR.js +5 -0
  376. package/src/components/time-picker/locale/en_GB.js +5 -0
  377. package/src/components/time-picker/locale/en_US.js +5 -0
  378. package/src/components/time-picker/locale/es_ES.js +5 -0
  379. package/src/components/time-picker/locale/et_EE.js +5 -0
  380. package/src/components/time-picker/locale/fa_IR.js +5 -0
  381. package/src/components/time-picker/locale/fi_FI.js +5 -0
  382. package/src/components/time-picker/locale/fr_BE.js +5 -0
  383. package/src/components/time-picker/locale/fr_FR.js +5 -0
  384. package/src/components/time-picker/locale/ga_IE.js +5 -0
  385. package/src/components/time-picker/locale/he_IL.js +5 -0
  386. package/src/components/time-picker/locale/hi_IN.js +5 -0
  387. package/src/components/time-picker/locale/hr_HR.js +5 -0
  388. package/src/components/time-picker/locale/hu_HU.js +5 -0
  389. package/src/components/time-picker/locale/id_ID.js +5 -0
  390. package/src/components/time-picker/locale/is_IS.js +5 -0
  391. package/src/components/time-picker/locale/it_IT.js +5 -0
  392. package/src/components/time-picker/locale/ja_JP.js +5 -0
  393. package/src/components/time-picker/locale/kn_IN.js +5 -0
  394. package/src/components/time-picker/locale/ko_KR.js +5 -0
  395. package/src/components/time-picker/locale/ku_IQ.js +5 -0
  396. package/src/components/time-picker/locale/lv_LV.js +5 -0
  397. package/src/components/time-picker/locale/mk_MK.js +5 -0
  398. package/src/components/time-picker/locale/mn_MN.js +5 -0
  399. package/src/components/time-picker/locale/ms_MY.js +5 -0
  400. package/src/components/time-picker/locale/nb_NO.js +5 -0
  401. package/src/components/time-picker/locale/nl_BE.js +5 -0
  402. package/src/components/time-picker/locale/nl_NL.js +5 -0
  403. package/src/components/time-picker/locale/pl_PL.js +5 -0
  404. package/src/components/time-picker/locale/pt_BR.js +5 -0
  405. package/src/components/time-picker/locale/pt_PT.js +5 -0
  406. package/src/components/time-picker/locale/ro_RO.js +5 -0
  407. package/src/components/time-picker/locale/ru_RU.js +8 -0
  408. package/src/components/time-picker/locale/sk_SK.js +5 -0
  409. package/src/components/time-picker/locale/sl_SI.js +5 -0
  410. package/src/components/time-picker/locale/sr_RS.js +5 -0
  411. package/src/components/time-picker/locale/sv_SE.js +5 -0
  412. package/src/components/time-picker/locale/ta_IN.js +5 -0
  413. package/src/components/time-picker/locale/th_TH.js +5 -0
  414. package/src/components/time-picker/locale/tr_TR.js +5 -0
  415. package/src/components/time-picker/locale/uk_UA.js +5 -0
  416. package/src/components/time-picker/locale/vi_VN.js +5 -0
  417. package/src/components/time-picker/locale/zh_CN.js +5 -0
  418. package/src/components/time-picker/locale/zh_TW.js +5 -0
  419. package/src/components/time-picker/style/index.js +2 -0
  420. package/src/components/time-picker/style/index.less +246 -0
  421. package/src/components/tooltip/Tooltip.jsx +219 -0
  422. package/src/components/tooltip/__tests__/__snapshots__/demo.test.js.snap +20 -0
  423. package/src/components/tooltip/__tests__/demo.test.js +3 -0
  424. package/src/components/tooltip/__tests__/tooltip.test.js +204 -0
  425. package/src/components/tooltip/abstractTooltipProps.js +34 -0
  426. package/src/components/tooltip/index.js +10 -0
  427. package/src/components/tooltip/placements.js +96 -0
  428. package/src/components/tooltip/style/index.js +2 -0
  429. package/src/components/tooltip/style/index.less +187 -0
  430. package/src/components/vc-align/Align.jsx +149 -0
  431. package/src/components/vc-align/index.js +3 -0
  432. package/src/components/vc-align/util.js +52 -0
  433. package/src/components/vc-calendar/assets/common/Calendar.less +106 -0
  434. package/src/components/vc-calendar/assets/common/FullCalendar.less +91 -0
  435. package/src/components/vc-calendar/assets/common/Picker.less +10 -0
  436. package/src/components/vc-calendar/assets/common/RangeCalendar.less +131 -0
  437. package/src/components/vc-calendar/assets/common/index.less +16 -0
  438. package/src/components/vc-calendar/assets/index/Calendar.less +301 -0
  439. package/src/components/vc-calendar/assets/index/DecadePanel.less +122 -0
  440. package/src/components/vc-calendar/assets/index/Input.less +23 -0
  441. package/src/components/vc-calendar/assets/index/MonthPanel.less +143 -0
  442. package/src/components/vc-calendar/assets/index/Picker.less +110 -0
  443. package/src/components/vc-calendar/assets/index/Time.less +6 -0
  444. package/src/components/vc-calendar/assets/index/TimePanel.less +72 -0
  445. package/src/components/vc-calendar/assets/index/YearPanel.less +136 -0
  446. package/src/components/vc-calendar/assets/index.less +10 -0
  447. package/src/components/vc-calendar/index.js +8 -0
  448. package/src/components/vc-calendar/src/Calendar.jsx +390 -0
  449. package/src/components/vc-calendar/src/FullCalendar.jsx +166 -0
  450. package/src/components/vc-calendar/src/MonthCalendar.jsx +125 -0
  451. package/src/components/vc-calendar/src/Picker.jsx +244 -0
  452. package/src/components/vc-calendar/src/RangeCalendar.jsx +1031 -0
  453. package/src/components/vc-calendar/src/calendar/CalendarFooter.jsx +86 -0
  454. package/src/components/vc-calendar/src/calendar/CalendarHeader.jsx +264 -0
  455. package/src/components/vc-calendar/src/calendar/OkButton.jsx +18 -0
  456. package/src/components/vc-calendar/src/calendar/TimePickerButton.jsx +22 -0
  457. package/src/components/vc-calendar/src/calendar/TodayButton.jsx +33 -0
  458. package/src/components/vc-calendar/src/date/DateConstants.js +4 -0
  459. package/src/components/vc-calendar/src/date/DateInput.jsx +226 -0
  460. package/src/components/vc-calendar/src/date/DateTBody.jsx +261 -0
  461. package/src/components/vc-calendar/src/date/DateTHead.jsx +49 -0
  462. package/src/components/vc-calendar/src/date/DateTable.jsx +20 -0
  463. package/src/components/vc-calendar/src/decade/DecadePanel.jsx +131 -0
  464. package/src/components/vc-calendar/src/full-calendar/CalendarHeader.jsx +134 -0
  465. package/src/components/vc-calendar/src/index.js +3 -0
  466. package/src/components/vc-calendar/src/locale/ar_EG.js +27 -0
  467. package/src/components/vc-calendar/src/locale/bg_BG.js +27 -0
  468. package/src/components/vc-calendar/src/locale/ca_ES.js +27 -0
  469. package/src/components/vc-calendar/src/locale/cs_CZ.js +27 -0
  470. package/src/components/vc-calendar/src/locale/da_DK.js +27 -0
  471. package/src/components/vc-calendar/src/locale/de_DE.js +27 -0
  472. package/src/components/vc-calendar/src/locale/el_GR.js +27 -0
  473. package/src/components/vc-calendar/src/locale/en_GB.js +27 -0
  474. package/src/components/vc-calendar/src/locale/en_US.js +28 -0
  475. package/src/components/vc-calendar/src/locale/es_ES.js +27 -0
  476. package/src/components/vc-calendar/src/locale/et_EE.js +27 -0
  477. package/src/components/vc-calendar/src/locale/fa_IR.js +27 -0
  478. package/src/components/vc-calendar/src/locale/fi_FI.js +27 -0
  479. package/src/components/vc-calendar/src/locale/fr_BE.js +27 -0
  480. package/src/components/vc-calendar/src/locale/fr_FR.js +27 -0
  481. package/src/components/vc-calendar/src/locale/ga_IE.js +28 -0
  482. package/src/components/vc-calendar/src/locale/he_IL.js +28 -0
  483. package/src/components/vc-calendar/src/locale/hi_IN.js +28 -0
  484. package/src/components/vc-calendar/src/locale/hr_HR.js +28 -0
  485. package/src/components/vc-calendar/src/locale/hu_HU.js +27 -0
  486. package/src/components/vc-calendar/src/locale/id_ID.js +28 -0
  487. package/src/components/vc-calendar/src/locale/is_IS.js +27 -0
  488. package/src/components/vc-calendar/src/locale/it_IT.js +27 -0
  489. package/src/components/vc-calendar/src/locale/ja_JP.js +26 -0
  490. package/src/components/vc-calendar/src/locale/kn_IN.js +28 -0
  491. package/src/components/vc-calendar/src/locale/ko_KR.js +27 -0
  492. package/src/components/vc-calendar/src/locale/ku_IQ.js +27 -0
  493. package/src/components/vc-calendar/src/locale/lv_LV.js +27 -0
  494. package/src/components/vc-calendar/src/locale/mk_MK.js +27 -0
  495. package/src/components/vc-calendar/src/locale/mm_MM.js +28 -0
  496. package/src/components/vc-calendar/src/locale/mn_MN.js +28 -0
  497. package/src/components/vc-calendar/src/locale/ms_MY.js +27 -0
  498. package/src/components/vc-calendar/src/locale/nb_NO.js +27 -0
  499. package/src/components/vc-calendar/src/locale/nl_BE.js +27 -0
  500. package/src/components/vc-calendar/src/locale/nl_NL.js +27 -0
  501. package/src/components/vc-calendar/src/locale/pl_PL.js +27 -0
  502. package/src/components/vc-calendar/src/locale/pt_BR.js +27 -0
  503. package/src/components/vc-calendar/src/locale/pt_PT.js +27 -0
  504. package/src/components/vc-calendar/src/locale/ro_RO.js +28 -0
  505. package/src/components/vc-calendar/src/locale/ru_RU.js +27 -0
  506. package/src/components/vc-calendar/src/locale/sk_SK.js +28 -0
  507. package/src/components/vc-calendar/src/locale/sl_SI.js +27 -0
  508. package/src/components/vc-calendar/src/locale/sr_RS.js +27 -0
  509. package/src/components/vc-calendar/src/locale/sv_SE.js +27 -0
  510. package/src/components/vc-calendar/src/locale/ta_IN.js +28 -0
  511. package/src/components/vc-calendar/src/locale/th_TH.js +27 -0
  512. package/src/components/vc-calendar/src/locale/tr_TR.js +27 -0
  513. package/src/components/vc-calendar/src/locale/ug_CN.js +26 -0
  514. package/src/components/vc-calendar/src/locale/uk_UA.js +27 -0
  515. package/src/components/vc-calendar/src/locale/vi_VN.js +28 -0
  516. package/src/components/vc-calendar/src/locale/zh_CN.js +27 -0
  517. package/src/components/vc-calendar/src/locale/zh_TW.js +26 -0
  518. package/src/components/vc-calendar/src/mixin/CalendarMixin.js +122 -0
  519. package/src/components/vc-calendar/src/mixin/CommonMixin.js +26 -0
  520. package/src/components/vc-calendar/src/month/MonthPanel.jsx +123 -0
  521. package/src/components/vc-calendar/src/month/MonthTable.jsx +138 -0
  522. package/src/components/vc-calendar/src/picker/placements.js +35 -0
  523. package/src/components/vc-calendar/src/range-calendar/CalendarPart.jsx +171 -0
  524. package/src/components/vc-calendar/src/util/index.js +113 -0
  525. package/src/components/vc-calendar/src/util/toTime.js +15 -0
  526. package/src/components/vc-calendar/src/year/YearPanel.jsx +167 -0
  527. package/src/components/vc-pagination/locale/en_US.js +15 -0
  528. package/src/components/vc-select/DropdownMenu.jsx +216 -0
  529. package/src/components/vc-select/OptGroup.jsx +8 -0
  530. package/src/components/vc-select/Option.jsx +11 -0
  531. package/src/components/vc-select/PropTypes.js +59 -0
  532. package/src/components/vc-select/Select.jsx +1716 -0
  533. package/src/components/vc-select/SelectTrigger.jsx +259 -0
  534. package/src/components/vc-select/assets/index.less +541 -0
  535. package/src/components/vc-select/index.js +11 -0
  536. package/src/components/vc-select/util.js +223 -0
  537. package/src/components/vc-time-picker/Combobox.jsx +214 -0
  538. package/src/components/vc-time-picker/Header.jsx +187 -0
  539. package/src/components/vc-time-picker/Panel.jsx +225 -0
  540. package/src/components/vc-time-picker/Select.jsx +140 -0
  541. package/src/components/vc-time-picker/TimePicker.jsx +386 -0
  542. package/src/components/vc-time-picker/assets/index/Header.less +22 -0
  543. package/src/components/vc-time-picker/assets/index/Panel.less +29 -0
  544. package/src/components/vc-time-picker/assets/index/Picker.less +25 -0
  545. package/src/components/vc-time-picker/assets/index/Select.less +62 -0
  546. package/src/components/vc-time-picker/assets/index.less +44 -0
  547. package/src/components/vc-time-picker/index.js +2 -0
  548. package/src/components/vc-time-picker/placements.js +35 -0
  549. package/src/components/vc-tooltip/Content.jsx +23 -0
  550. package/src/components/vc-tooltip/Tooltip.jsx +106 -0
  551. package/src/components/vc-tooltip/assets/boostrap/anim.less +61 -0
  552. package/src/components/vc-tooltip/assets/bootstrap.less +171 -0
  553. package/src/components/vc-tooltip/assets/bootstrap_white.less +190 -0
  554. package/src/components/vc-tooltip/index.js +4 -0
  555. package/src/components/vc-tooltip/placements.js +83 -0
  556. package/src/components/vc-trigger/LazyRenderBox.jsx +22 -0
  557. package/src/components/vc-trigger/Popup.jsx +336 -0
  558. package/src/components/vc-trigger/PopupInner.jsx +25 -0
  559. package/src/components/vc-trigger/Trigger.jsx +663 -0
  560. package/src/components/vc-trigger/assets/index.less +72 -0
  561. package/src/components/vc-trigger/assets/mask.less +65 -0
  562. package/src/components/vc-trigger/index.js +3 -0
  563. package/src/components/vc-trigger/index.md +160 -0
  564. package/src/components/vc-trigger/t.js +665 -0
  565. package/src/components/vc-trigger/utils.js +27 -0
  566. package/src/components/vc-util/Dom/addEventListener.js +5 -0
  567. package/src/components/vc-util/Dom/class.js +28 -0
  568. package/src/components/vc-util/Dom/contains.js +11 -0
  569. package/src/components/vc-util/warning.js +38 -0
  570. package/src/index.js +44 -0
  571. package/types/index.d.ts +112 -0
@@ -0,0 +1,3560 @@
1
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
2
+ /* stylelint-disable no-duplicate-selectors */
3
+ /* stylelint-disable */
4
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
5
+ /* stylelint-disable at-rule-no-unknown */
6
+ html,
7
+ body {
8
+ width: 100%;
9
+ height: 100%;
10
+ }
11
+ input::-ms-clear,
12
+ input::-ms-reveal {
13
+ display: none;
14
+ }
15
+ *,
16
+ *::before,
17
+ *::after {
18
+ box-sizing: border-box;
19
+ }
20
+ html {
21
+ font-family: sans-serif;
22
+ line-height: 1.15;
23
+ -webkit-text-size-adjust: 100%;
24
+ -ms-text-size-adjust: 100%;
25
+ -ms-overflow-style: scrollbar;
26
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
27
+ }
28
+ @-ms-viewport {
29
+ width: device-width;
30
+ }
31
+ article,
32
+ aside,
33
+ dialog,
34
+ figcaption,
35
+ figure,
36
+ footer,
37
+ header,
38
+ hgroup,
39
+ main,
40
+ nav,
41
+ section {
42
+ display: block;
43
+ }
44
+ body {
45
+ margin: 0;
46
+ color: rgba(0, 0, 0, 0.65);
47
+ font-size: 14px;
48
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
49
+ font-variant: tabular-nums;
50
+ line-height: 1.5;
51
+ background-color: #fff;
52
+ font-feature-settings: 'tnum';
53
+ }
54
+ [tabindex='-1']:focus {
55
+ outline: none !important;
56
+ }
57
+ hr {
58
+ box-sizing: content-box;
59
+ height: 0;
60
+ overflow: visible;
61
+ }
62
+ h1,
63
+ h2,
64
+ h3,
65
+ h4,
66
+ h5,
67
+ h6 {
68
+ margin-top: 0;
69
+ margin-bottom: 0.5em;
70
+ color: rgba(0, 0, 0, 0.85);
71
+ font-weight: 500;
72
+ }
73
+ p {
74
+ margin-top: 0;
75
+ margin-bottom: 1em;
76
+ }
77
+ abbr[title],
78
+ abbr[data-original-title] {
79
+ text-decoration: underline;
80
+ text-decoration: underline dotted;
81
+ border-bottom: 0;
82
+ cursor: help;
83
+ }
84
+ address {
85
+ margin-bottom: 1em;
86
+ font-style: normal;
87
+ line-height: inherit;
88
+ }
89
+ input[type='text'],
90
+ input[type='password'],
91
+ input[type='number'],
92
+ textarea {
93
+ -webkit-appearance: none;
94
+ }
95
+ ol,
96
+ ul,
97
+ dl {
98
+ margin-top: 0;
99
+ margin-bottom: 1em;
100
+ }
101
+ ol ol,
102
+ ul ul,
103
+ ol ul,
104
+ ul ol {
105
+ margin-bottom: 0;
106
+ }
107
+ dt {
108
+ font-weight: 500;
109
+ }
110
+ dd {
111
+ margin-bottom: 0.5em;
112
+ margin-left: 0;
113
+ }
114
+ blockquote {
115
+ margin: 0 0 1em;
116
+ }
117
+ dfn {
118
+ font-style: italic;
119
+ }
120
+ b,
121
+ strong {
122
+ font-weight: bolder;
123
+ }
124
+ small {
125
+ font-size: 80%;
126
+ }
127
+ sub,
128
+ sup {
129
+ position: relative;
130
+ font-size: 75%;
131
+ line-height: 0;
132
+ vertical-align: baseline;
133
+ }
134
+ sub {
135
+ bottom: -0.25em;
136
+ }
137
+ sup {
138
+ top: -0.5em;
139
+ }
140
+ a {
141
+ color: #1890ff;
142
+ text-decoration: none;
143
+ background-color: transparent;
144
+ outline: none;
145
+ cursor: pointer;
146
+ transition: color 0.3s;
147
+ -webkit-text-decoration-skip: objects;
148
+ }
149
+ a:hover {
150
+ color: #40a9ff;
151
+ }
152
+ a:active {
153
+ color: #096dd9;
154
+ }
155
+ a:active,
156
+ a:hover {
157
+ text-decoration: none;
158
+ outline: 0;
159
+ }
160
+ a[disabled] {
161
+ color: rgba(0, 0, 0, 0.25);
162
+ cursor: not-allowed;
163
+ pointer-events: none;
164
+ }
165
+ pre,
166
+ code,
167
+ kbd,
168
+ samp {
169
+ font-size: 1em;
170
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
171
+ }
172
+ pre {
173
+ margin-top: 0;
174
+ margin-bottom: 1em;
175
+ overflow: auto;
176
+ }
177
+ figure {
178
+ margin: 0 0 1em;
179
+ }
180
+ img {
181
+ vertical-align: middle;
182
+ border-style: none;
183
+ }
184
+ svg:not(:root) {
185
+ overflow: hidden;
186
+ }
187
+ a,
188
+ area,
189
+ button,
190
+ [role='button'],
191
+ input:not([type='range']),
192
+ label,
193
+ select,
194
+ summary,
195
+ textarea {
196
+ touch-action: manipulation;
197
+ }
198
+ table {
199
+ border-collapse: collapse;
200
+ }
201
+ caption {
202
+ padding-top: 0.75em;
203
+ padding-bottom: 0.3em;
204
+ color: rgba(0, 0, 0, 0.45);
205
+ text-align: left;
206
+ caption-side: bottom;
207
+ }
208
+ th {
209
+ text-align: inherit;
210
+ }
211
+ input,
212
+ button,
213
+ select,
214
+ optgroup,
215
+ textarea {
216
+ margin: 0;
217
+ color: inherit;
218
+ font-size: inherit;
219
+ font-family: inherit;
220
+ line-height: inherit;
221
+ }
222
+ button,
223
+ input {
224
+ overflow: visible;
225
+ }
226
+ button,
227
+ select {
228
+ text-transform: none;
229
+ }
230
+ button,
231
+ html [type="button"],
232
+ [type="reset"],
233
+ [type="submit"] {
234
+ -webkit-appearance: button;
235
+ }
236
+ button::-moz-focus-inner,
237
+ [type='button']::-moz-focus-inner,
238
+ [type='reset']::-moz-focus-inner,
239
+ [type='submit']::-moz-focus-inner {
240
+ padding: 0;
241
+ border-style: none;
242
+ }
243
+ input[type='radio'],
244
+ input[type='checkbox'] {
245
+ box-sizing: border-box;
246
+ padding: 0;
247
+ }
248
+ input[type='date'],
249
+ input[type='time'],
250
+ input[type='datetime-local'],
251
+ input[type='month'] {
252
+ -webkit-appearance: listbox;
253
+ }
254
+ textarea {
255
+ overflow: auto;
256
+ resize: vertical;
257
+ }
258
+ fieldset {
259
+ min-width: 0;
260
+ margin: 0;
261
+ padding: 0;
262
+ border: 0;
263
+ }
264
+ legend {
265
+ display: block;
266
+ width: 100%;
267
+ max-width: 100%;
268
+ margin-bottom: 0.5em;
269
+ padding: 0;
270
+ color: inherit;
271
+ font-size: 1.5em;
272
+ line-height: inherit;
273
+ white-space: normal;
274
+ }
275
+ progress {
276
+ vertical-align: baseline;
277
+ }
278
+ [type='number']::-webkit-inner-spin-button,
279
+ [type='number']::-webkit-outer-spin-button {
280
+ height: auto;
281
+ }
282
+ [type='search'] {
283
+ outline-offset: -2px;
284
+ -webkit-appearance: none;
285
+ }
286
+ [type='search']::-webkit-search-cancel-button,
287
+ [type='search']::-webkit-search-decoration {
288
+ -webkit-appearance: none;
289
+ }
290
+ ::-webkit-file-upload-button {
291
+ font: inherit;
292
+ -webkit-appearance: button;
293
+ }
294
+ output {
295
+ display: inline-block;
296
+ }
297
+ summary {
298
+ display: list-item;
299
+ }
300
+ template {
301
+ display: none;
302
+ }
303
+ [hidden] {
304
+ display: none !important;
305
+ }
306
+ mark {
307
+ padding: 0.2em;
308
+ background-color: #feffe6;
309
+ }
310
+ ::selection {
311
+ color: #fff;
312
+ background: #1890ff;
313
+ }
314
+ .clearfix {
315
+ zoom: 1;
316
+ }
317
+ .clearfix::before,
318
+ .clearfix::after {
319
+ display: table;
320
+ content: '';
321
+ }
322
+ .clearfix::after {
323
+ clear: both;
324
+ }
325
+ .anticon {
326
+ display: inline-block;
327
+ color: inherit;
328
+ font-style: normal;
329
+ line-height: 0;
330
+ text-align: center;
331
+ text-transform: none;
332
+ vertical-align: -0.125em;
333
+ text-rendering: optimizeLegibility;
334
+ -webkit-font-smoothing: antialiased;
335
+ -moz-osx-font-smoothing: grayscale;
336
+ }
337
+ .anticon > * {
338
+ line-height: 1;
339
+ }
340
+ .anticon svg {
341
+ display: inline-block;
342
+ }
343
+ .anticon::before {
344
+ display: none;
345
+ }
346
+ .anticon .anticon-icon {
347
+ display: block;
348
+ }
349
+ .anticon[tabindex] {
350
+ cursor: pointer;
351
+ }
352
+ .anticon-spin::before {
353
+ display: inline-block;
354
+ animation: loadingCircle 1s infinite linear;
355
+ }
356
+ .anticon-spin {
357
+ display: inline-block;
358
+ animation: loadingCircle 1s infinite linear;
359
+ }
360
+ .fade-enter,
361
+ .fade-appear {
362
+ animation-duration: 0.2s;
363
+ animation-fill-mode: both;
364
+ animation-play-state: paused;
365
+ }
366
+ .fade-leave {
367
+ animation-duration: 0.2s;
368
+ animation-fill-mode: both;
369
+ animation-play-state: paused;
370
+ }
371
+ .fade-enter.fade-enter-active,
372
+ .fade-appear.fade-appear-active {
373
+ animation-name: antFadeIn;
374
+ animation-play-state: running;
375
+ }
376
+ .fade-leave.fade-leave-active {
377
+ animation-name: antFadeOut;
378
+ animation-play-state: running;
379
+ pointer-events: none;
380
+ }
381
+ .fade-enter,
382
+ .fade-appear {
383
+ opacity: 0;
384
+ animation-timing-function: linear;
385
+ }
386
+ .fade-leave {
387
+ animation-timing-function: linear;
388
+ }
389
+ @keyframes antFadeIn {
390
+ 0% {
391
+ opacity: 0;
392
+ }
393
+ 100% {
394
+ opacity: 1;
395
+ }
396
+ }
397
+ @keyframes antFadeOut {
398
+ 0% {
399
+ opacity: 1;
400
+ }
401
+ 100% {
402
+ opacity: 0;
403
+ }
404
+ }
405
+ .move-up-enter,
406
+ .move-up-appear {
407
+ animation-duration: 0.2s;
408
+ animation-fill-mode: both;
409
+ animation-play-state: paused;
410
+ }
411
+ .move-up-leave {
412
+ animation-duration: 0.2s;
413
+ animation-fill-mode: both;
414
+ animation-play-state: paused;
415
+ }
416
+ .move-up-enter.move-up-enter-active,
417
+ .move-up-appear.move-up-appear-active {
418
+ animation-name: antMoveUpIn;
419
+ animation-play-state: running;
420
+ }
421
+ .move-up-leave.move-up-leave-active {
422
+ animation-name: antMoveUpOut;
423
+ animation-play-state: running;
424
+ pointer-events: none;
425
+ }
426
+ .move-up-enter,
427
+ .move-up-appear {
428
+ opacity: 0;
429
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
430
+ }
431
+ .move-up-leave {
432
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
433
+ }
434
+ .move-down-enter,
435
+ .move-down-appear {
436
+ animation-duration: 0.2s;
437
+ animation-fill-mode: both;
438
+ animation-play-state: paused;
439
+ }
440
+ .move-down-leave {
441
+ animation-duration: 0.2s;
442
+ animation-fill-mode: both;
443
+ animation-play-state: paused;
444
+ }
445
+ .move-down-enter.move-down-enter-active,
446
+ .move-down-appear.move-down-appear-active {
447
+ animation-name: antMoveDownIn;
448
+ animation-play-state: running;
449
+ }
450
+ .move-down-leave.move-down-leave-active {
451
+ animation-name: antMoveDownOut;
452
+ animation-play-state: running;
453
+ pointer-events: none;
454
+ }
455
+ .move-down-enter,
456
+ .move-down-appear {
457
+ opacity: 0;
458
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
459
+ }
460
+ .move-down-leave {
461
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
462
+ }
463
+ .move-left-enter,
464
+ .move-left-appear {
465
+ animation-duration: 0.2s;
466
+ animation-fill-mode: both;
467
+ animation-play-state: paused;
468
+ }
469
+ .move-left-leave {
470
+ animation-duration: 0.2s;
471
+ animation-fill-mode: both;
472
+ animation-play-state: paused;
473
+ }
474
+ .move-left-enter.move-left-enter-active,
475
+ .move-left-appear.move-left-appear-active {
476
+ animation-name: antMoveLeftIn;
477
+ animation-play-state: running;
478
+ }
479
+ .move-left-leave.move-left-leave-active {
480
+ animation-name: antMoveLeftOut;
481
+ animation-play-state: running;
482
+ pointer-events: none;
483
+ }
484
+ .move-left-enter,
485
+ .move-left-appear {
486
+ opacity: 0;
487
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
488
+ }
489
+ .move-left-leave {
490
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
491
+ }
492
+ .move-right-enter,
493
+ .move-right-appear {
494
+ animation-duration: 0.2s;
495
+ animation-fill-mode: both;
496
+ animation-play-state: paused;
497
+ }
498
+ .move-right-leave {
499
+ animation-duration: 0.2s;
500
+ animation-fill-mode: both;
501
+ animation-play-state: paused;
502
+ }
503
+ .move-right-enter.move-right-enter-active,
504
+ .move-right-appear.move-right-appear-active {
505
+ animation-name: antMoveRightIn;
506
+ animation-play-state: running;
507
+ }
508
+ .move-right-leave.move-right-leave-active {
509
+ animation-name: antMoveRightOut;
510
+ animation-play-state: running;
511
+ pointer-events: none;
512
+ }
513
+ .move-right-enter,
514
+ .move-right-appear {
515
+ opacity: 0;
516
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
517
+ }
518
+ .move-right-leave {
519
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
520
+ }
521
+ @keyframes antMoveDownIn {
522
+ 0% {
523
+ transform: translateY(100%);
524
+ transform-origin: 0 0;
525
+ opacity: 0;
526
+ }
527
+ 100% {
528
+ transform: translateY(0%);
529
+ transform-origin: 0 0;
530
+ opacity: 1;
531
+ }
532
+ }
533
+ @keyframes antMoveDownOut {
534
+ 0% {
535
+ transform: translateY(0%);
536
+ transform-origin: 0 0;
537
+ opacity: 1;
538
+ }
539
+ 100% {
540
+ transform: translateY(100%);
541
+ transform-origin: 0 0;
542
+ opacity: 0;
543
+ }
544
+ }
545
+ @keyframes antMoveLeftIn {
546
+ 0% {
547
+ transform: translateX(-100%);
548
+ transform-origin: 0 0;
549
+ opacity: 0;
550
+ }
551
+ 100% {
552
+ transform: translateX(0%);
553
+ transform-origin: 0 0;
554
+ opacity: 1;
555
+ }
556
+ }
557
+ @keyframes antMoveLeftOut {
558
+ 0% {
559
+ transform: translateX(0%);
560
+ transform-origin: 0 0;
561
+ opacity: 1;
562
+ }
563
+ 100% {
564
+ transform: translateX(-100%);
565
+ transform-origin: 0 0;
566
+ opacity: 0;
567
+ }
568
+ }
569
+ @keyframes antMoveRightIn {
570
+ 0% {
571
+ transform: translateX(100%);
572
+ transform-origin: 0 0;
573
+ opacity: 0;
574
+ }
575
+ 100% {
576
+ transform: translateX(0%);
577
+ transform-origin: 0 0;
578
+ opacity: 1;
579
+ }
580
+ }
581
+ @keyframes antMoveRightOut {
582
+ 0% {
583
+ transform: translateX(0%);
584
+ transform-origin: 0 0;
585
+ opacity: 1;
586
+ }
587
+ 100% {
588
+ transform: translateX(100%);
589
+ transform-origin: 0 0;
590
+ opacity: 0;
591
+ }
592
+ }
593
+ @keyframes antMoveUpIn {
594
+ 0% {
595
+ transform: translateY(-100%);
596
+ transform-origin: 0 0;
597
+ opacity: 0;
598
+ }
599
+ 100% {
600
+ transform: translateY(0%);
601
+ transform-origin: 0 0;
602
+ opacity: 1;
603
+ }
604
+ }
605
+ @keyframes antMoveUpOut {
606
+ 0% {
607
+ transform: translateY(0%);
608
+ transform-origin: 0 0;
609
+ opacity: 1;
610
+ }
611
+ 100% {
612
+ transform: translateY(-100%);
613
+ transform-origin: 0 0;
614
+ opacity: 0;
615
+ }
616
+ }
617
+ @keyframes loadingCircle {
618
+ 100% {
619
+ transform: rotate(360deg);
620
+ }
621
+ }
622
+ [ant-click-animating='true'],
623
+ [ant-click-animating-without-extra-node='true'] {
624
+ position: relative;
625
+ }
626
+ html {
627
+ --antd-wave-shadow-color: #1890ff;
628
+ }
629
+ [ant-click-animating-without-extra-node='true']::after,
630
+ .ant-click-animating-node {
631
+ position: absolute;
632
+ top: 0;
633
+ right: 0;
634
+ bottom: 0;
635
+ left: 0;
636
+ display: block;
637
+ border-radius: inherit;
638
+ box-shadow: 0 0 0 0 #1890ff;
639
+ box-shadow: 0 0 0 0 var(--antd-wave-shadow-color);
640
+ opacity: 0.2;
641
+ animation: fadeEffect 2s cubic-bezier(0.08, 0.82, 0.17, 1), waveEffect 0.4s cubic-bezier(0.08, 0.82, 0.17, 1);
642
+ animation-fill-mode: forwards;
643
+ content: '';
644
+ pointer-events: none;
645
+ }
646
+ @keyframes waveEffect {
647
+ 100% {
648
+ box-shadow: 0 0 0 #1890ff;
649
+ box-shadow: 0 0 0 6px var(--antd-wave-shadow-color);
650
+ }
651
+ }
652
+ @keyframes fadeEffect {
653
+ 100% {
654
+ opacity: 0;
655
+ }
656
+ }
657
+ .slide-up-enter,
658
+ .slide-up-appear {
659
+ animation-duration: 0.2s;
660
+ animation-fill-mode: both;
661
+ animation-play-state: paused;
662
+ }
663
+ .slide-up-leave {
664
+ animation-duration: 0.2s;
665
+ animation-fill-mode: both;
666
+ animation-play-state: paused;
667
+ }
668
+ .slide-up-enter.slide-up-enter-active,
669
+ .slide-up-appear.slide-up-appear-active {
670
+ animation-name: antSlideUpIn;
671
+ animation-play-state: running;
672
+ }
673
+ .slide-up-leave.slide-up-leave-active {
674
+ animation-name: antSlideUpOut;
675
+ animation-play-state: running;
676
+ pointer-events: none;
677
+ }
678
+ .slide-up-enter,
679
+ .slide-up-appear {
680
+ opacity: 0;
681
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
682
+ }
683
+ .slide-up-leave {
684
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
685
+ }
686
+ .slide-down-enter,
687
+ .slide-down-appear {
688
+ animation-duration: 0.2s;
689
+ animation-fill-mode: both;
690
+ animation-play-state: paused;
691
+ }
692
+ .slide-down-leave {
693
+ animation-duration: 0.2s;
694
+ animation-fill-mode: both;
695
+ animation-play-state: paused;
696
+ }
697
+ .slide-down-enter.slide-down-enter-active,
698
+ .slide-down-appear.slide-down-appear-active {
699
+ animation-name: antSlideDownIn;
700
+ animation-play-state: running;
701
+ }
702
+ .slide-down-leave.slide-down-leave-active {
703
+ animation-name: antSlideDownOut;
704
+ animation-play-state: running;
705
+ pointer-events: none;
706
+ }
707
+ .slide-down-enter,
708
+ .slide-down-appear {
709
+ opacity: 0;
710
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
711
+ }
712
+ .slide-down-leave {
713
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
714
+ }
715
+ .slide-left-enter,
716
+ .slide-left-appear {
717
+ animation-duration: 0.2s;
718
+ animation-fill-mode: both;
719
+ animation-play-state: paused;
720
+ }
721
+ .slide-left-leave {
722
+ animation-duration: 0.2s;
723
+ animation-fill-mode: both;
724
+ animation-play-state: paused;
725
+ }
726
+ .slide-left-enter.slide-left-enter-active,
727
+ .slide-left-appear.slide-left-appear-active {
728
+ animation-name: antSlideLeftIn;
729
+ animation-play-state: running;
730
+ }
731
+ .slide-left-leave.slide-left-leave-active {
732
+ animation-name: antSlideLeftOut;
733
+ animation-play-state: running;
734
+ pointer-events: none;
735
+ }
736
+ .slide-left-enter,
737
+ .slide-left-appear {
738
+ opacity: 0;
739
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
740
+ }
741
+ .slide-left-leave {
742
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
743
+ }
744
+ .slide-right-enter,
745
+ .slide-right-appear {
746
+ animation-duration: 0.2s;
747
+ animation-fill-mode: both;
748
+ animation-play-state: paused;
749
+ }
750
+ .slide-right-leave {
751
+ animation-duration: 0.2s;
752
+ animation-fill-mode: both;
753
+ animation-play-state: paused;
754
+ }
755
+ .slide-right-enter.slide-right-enter-active,
756
+ .slide-right-appear.slide-right-appear-active {
757
+ animation-name: antSlideRightIn;
758
+ animation-play-state: running;
759
+ }
760
+ .slide-right-leave.slide-right-leave-active {
761
+ animation-name: antSlideRightOut;
762
+ animation-play-state: running;
763
+ pointer-events: none;
764
+ }
765
+ .slide-right-enter,
766
+ .slide-right-appear {
767
+ opacity: 0;
768
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
769
+ }
770
+ .slide-right-leave {
771
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
772
+ }
773
+ @keyframes antSlideUpIn {
774
+ 0% {
775
+ transform: scaleY(0.8);
776
+ transform-origin: 0% 0%;
777
+ opacity: 0;
778
+ }
779
+ 100% {
780
+ transform: scaleY(1);
781
+ transform-origin: 0% 0%;
782
+ opacity: 1;
783
+ }
784
+ }
785
+ @keyframes antSlideUpOut {
786
+ 0% {
787
+ transform: scaleY(1);
788
+ transform-origin: 0% 0%;
789
+ opacity: 1;
790
+ }
791
+ 100% {
792
+ transform: scaleY(0.8);
793
+ transform-origin: 0% 0%;
794
+ opacity: 0;
795
+ }
796
+ }
797
+ @keyframes antSlideDownIn {
798
+ 0% {
799
+ transform: scaleY(0.8);
800
+ transform-origin: 100% 100%;
801
+ opacity: 0;
802
+ }
803
+ 100% {
804
+ transform: scaleY(1);
805
+ transform-origin: 100% 100%;
806
+ opacity: 1;
807
+ }
808
+ }
809
+ @keyframes antSlideDownOut {
810
+ 0% {
811
+ transform: scaleY(1);
812
+ transform-origin: 100% 100%;
813
+ opacity: 1;
814
+ }
815
+ 100% {
816
+ transform: scaleY(0.8);
817
+ transform-origin: 100% 100%;
818
+ opacity: 0;
819
+ }
820
+ }
821
+ @keyframes antSlideLeftIn {
822
+ 0% {
823
+ transform: scaleX(0.8);
824
+ transform-origin: 0% 0%;
825
+ opacity: 0;
826
+ }
827
+ 100% {
828
+ transform: scaleX(1);
829
+ transform-origin: 0% 0%;
830
+ opacity: 1;
831
+ }
832
+ }
833
+ @keyframes antSlideLeftOut {
834
+ 0% {
835
+ transform: scaleX(1);
836
+ transform-origin: 0% 0%;
837
+ opacity: 1;
838
+ }
839
+ 100% {
840
+ transform: scaleX(0.8);
841
+ transform-origin: 0% 0%;
842
+ opacity: 0;
843
+ }
844
+ }
845
+ @keyframes antSlideRightIn {
846
+ 0% {
847
+ transform: scaleX(0.8);
848
+ transform-origin: 100% 0%;
849
+ opacity: 0;
850
+ }
851
+ 100% {
852
+ transform: scaleX(1);
853
+ transform-origin: 100% 0%;
854
+ opacity: 1;
855
+ }
856
+ }
857
+ @keyframes antSlideRightOut {
858
+ 0% {
859
+ transform: scaleX(1);
860
+ transform-origin: 100% 0%;
861
+ opacity: 1;
862
+ }
863
+ 100% {
864
+ transform: scaleX(0.8);
865
+ transform-origin: 100% 0%;
866
+ opacity: 0;
867
+ }
868
+ }
869
+ .swing-enter,
870
+ .swing-appear {
871
+ animation-duration: 0.2s;
872
+ animation-fill-mode: both;
873
+ animation-play-state: paused;
874
+ }
875
+ .swing-enter.swing-enter-active,
876
+ .swing-appear.swing-appear-active {
877
+ animation-name: antSwingIn;
878
+ animation-play-state: running;
879
+ }
880
+ @keyframes antSwingIn {
881
+ 0%,
882
+ 100% {
883
+ transform: translateX(0);
884
+ }
885
+ 20% {
886
+ transform: translateX(-10px);
887
+ }
888
+ 40% {
889
+ transform: translateX(10px);
890
+ }
891
+ 60% {
892
+ transform: translateX(-5px);
893
+ }
894
+ 80% {
895
+ transform: translateX(5px);
896
+ }
897
+ }
898
+ .zoom-enter,
899
+ .zoom-appear {
900
+ animation-duration: 0.2s;
901
+ animation-fill-mode: both;
902
+ animation-play-state: paused;
903
+ }
904
+ .zoom-leave {
905
+ animation-duration: 0.2s;
906
+ animation-fill-mode: both;
907
+ animation-play-state: paused;
908
+ }
909
+ .zoom-enter.zoom-enter-active,
910
+ .zoom-appear.zoom-appear-active {
911
+ animation-name: antZoomIn;
912
+ animation-play-state: running;
913
+ }
914
+ .zoom-leave.zoom-leave-active {
915
+ animation-name: antZoomOut;
916
+ animation-play-state: running;
917
+ pointer-events: none;
918
+ }
919
+ .zoom-enter,
920
+ .zoom-appear {
921
+ transform: scale(0);
922
+ opacity: 0;
923
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
924
+ }
925
+ .zoom-leave {
926
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
927
+ }
928
+ .zoom-big-enter,
929
+ .zoom-big-appear {
930
+ animation-duration: 0.2s;
931
+ animation-fill-mode: both;
932
+ animation-play-state: paused;
933
+ }
934
+ .zoom-big-leave {
935
+ animation-duration: 0.2s;
936
+ animation-fill-mode: both;
937
+ animation-play-state: paused;
938
+ }
939
+ .zoom-big-enter.zoom-big-enter-active,
940
+ .zoom-big-appear.zoom-big-appear-active {
941
+ animation-name: antZoomBigIn;
942
+ animation-play-state: running;
943
+ }
944
+ .zoom-big-leave.zoom-big-leave-active {
945
+ animation-name: antZoomBigOut;
946
+ animation-play-state: running;
947
+ pointer-events: none;
948
+ }
949
+ .zoom-big-enter,
950
+ .zoom-big-appear {
951
+ transform: scale(0);
952
+ opacity: 0;
953
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
954
+ }
955
+ .zoom-big-leave {
956
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
957
+ }
958
+ .zoom-big-fast-enter,
959
+ .zoom-big-fast-appear {
960
+ animation-duration: 0.1s;
961
+ animation-fill-mode: both;
962
+ animation-play-state: paused;
963
+ }
964
+ .zoom-big-fast-leave {
965
+ animation-duration: 0.1s;
966
+ animation-fill-mode: both;
967
+ animation-play-state: paused;
968
+ }
969
+ .zoom-big-fast-enter.zoom-big-fast-enter-active,
970
+ .zoom-big-fast-appear.zoom-big-fast-appear-active {
971
+ animation-name: antZoomBigIn;
972
+ animation-play-state: running;
973
+ }
974
+ .zoom-big-fast-leave.zoom-big-fast-leave-active {
975
+ animation-name: antZoomBigOut;
976
+ animation-play-state: running;
977
+ pointer-events: none;
978
+ }
979
+ .zoom-big-fast-enter,
980
+ .zoom-big-fast-appear {
981
+ transform: scale(0);
982
+ opacity: 0;
983
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
984
+ }
985
+ .zoom-big-fast-leave {
986
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
987
+ }
988
+ .zoom-up-enter,
989
+ .zoom-up-appear {
990
+ animation-duration: 0.2s;
991
+ animation-fill-mode: both;
992
+ animation-play-state: paused;
993
+ }
994
+ .zoom-up-leave {
995
+ animation-duration: 0.2s;
996
+ animation-fill-mode: both;
997
+ animation-play-state: paused;
998
+ }
999
+ .zoom-up-enter.zoom-up-enter-active,
1000
+ .zoom-up-appear.zoom-up-appear-active {
1001
+ animation-name: antZoomUpIn;
1002
+ animation-play-state: running;
1003
+ }
1004
+ .zoom-up-leave.zoom-up-leave-active {
1005
+ animation-name: antZoomUpOut;
1006
+ animation-play-state: running;
1007
+ pointer-events: none;
1008
+ }
1009
+ .zoom-up-enter,
1010
+ .zoom-up-appear {
1011
+ transform: scale(0);
1012
+ opacity: 0;
1013
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1014
+ }
1015
+ .zoom-up-leave {
1016
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1017
+ }
1018
+ .zoom-down-enter,
1019
+ .zoom-down-appear {
1020
+ animation-duration: 0.2s;
1021
+ animation-fill-mode: both;
1022
+ animation-play-state: paused;
1023
+ }
1024
+ .zoom-down-leave {
1025
+ animation-duration: 0.2s;
1026
+ animation-fill-mode: both;
1027
+ animation-play-state: paused;
1028
+ }
1029
+ .zoom-down-enter.zoom-down-enter-active,
1030
+ .zoom-down-appear.zoom-down-appear-active {
1031
+ animation-name: antZoomDownIn;
1032
+ animation-play-state: running;
1033
+ }
1034
+ .zoom-down-leave.zoom-down-leave-active {
1035
+ animation-name: antZoomDownOut;
1036
+ animation-play-state: running;
1037
+ pointer-events: none;
1038
+ }
1039
+ .zoom-down-enter,
1040
+ .zoom-down-appear {
1041
+ transform: scale(0);
1042
+ opacity: 0;
1043
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1044
+ }
1045
+ .zoom-down-leave {
1046
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1047
+ }
1048
+ .zoom-left-enter,
1049
+ .zoom-left-appear {
1050
+ animation-duration: 0.2s;
1051
+ animation-fill-mode: both;
1052
+ animation-play-state: paused;
1053
+ }
1054
+ .zoom-left-leave {
1055
+ animation-duration: 0.2s;
1056
+ animation-fill-mode: both;
1057
+ animation-play-state: paused;
1058
+ }
1059
+ .zoom-left-enter.zoom-left-enter-active,
1060
+ .zoom-left-appear.zoom-left-appear-active {
1061
+ animation-name: antZoomLeftIn;
1062
+ animation-play-state: running;
1063
+ }
1064
+ .zoom-left-leave.zoom-left-leave-active {
1065
+ animation-name: antZoomLeftOut;
1066
+ animation-play-state: running;
1067
+ pointer-events: none;
1068
+ }
1069
+ .zoom-left-enter,
1070
+ .zoom-left-appear {
1071
+ transform: scale(0);
1072
+ opacity: 0;
1073
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1074
+ }
1075
+ .zoom-left-leave {
1076
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1077
+ }
1078
+ .zoom-right-enter,
1079
+ .zoom-right-appear {
1080
+ animation-duration: 0.2s;
1081
+ animation-fill-mode: both;
1082
+ animation-play-state: paused;
1083
+ }
1084
+ .zoom-right-leave {
1085
+ animation-duration: 0.2s;
1086
+ animation-fill-mode: both;
1087
+ animation-play-state: paused;
1088
+ }
1089
+ .zoom-right-enter.zoom-right-enter-active,
1090
+ .zoom-right-appear.zoom-right-appear-active {
1091
+ animation-name: antZoomRightIn;
1092
+ animation-play-state: running;
1093
+ }
1094
+ .zoom-right-leave.zoom-right-leave-active {
1095
+ animation-name: antZoomRightOut;
1096
+ animation-play-state: running;
1097
+ pointer-events: none;
1098
+ }
1099
+ .zoom-right-enter,
1100
+ .zoom-right-appear {
1101
+ transform: scale(0);
1102
+ opacity: 0;
1103
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1104
+ }
1105
+ .zoom-right-leave {
1106
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1107
+ }
1108
+ @keyframes antZoomIn {
1109
+ 0% {
1110
+ transform: scale(0.2);
1111
+ opacity: 0;
1112
+ }
1113
+ 100% {
1114
+ transform: scale(1);
1115
+ opacity: 1;
1116
+ }
1117
+ }
1118
+ @keyframes antZoomOut {
1119
+ 0% {
1120
+ transform: scale(1);
1121
+ }
1122
+ 100% {
1123
+ transform: scale(0.2);
1124
+ opacity: 0;
1125
+ }
1126
+ }
1127
+ @keyframes antZoomBigIn {
1128
+ 0% {
1129
+ transform: scale(0.8);
1130
+ opacity: 0;
1131
+ }
1132
+ 100% {
1133
+ transform: scale(1);
1134
+ opacity: 1;
1135
+ }
1136
+ }
1137
+ @keyframes antZoomBigOut {
1138
+ 0% {
1139
+ transform: scale(1);
1140
+ }
1141
+ 100% {
1142
+ transform: scale(0.8);
1143
+ opacity: 0;
1144
+ }
1145
+ }
1146
+ @keyframes antZoomUpIn {
1147
+ 0% {
1148
+ transform: scale(0.8);
1149
+ transform-origin: 50% 0%;
1150
+ opacity: 0;
1151
+ }
1152
+ 100% {
1153
+ transform: scale(1);
1154
+ transform-origin: 50% 0%;
1155
+ }
1156
+ }
1157
+ @keyframes antZoomUpOut {
1158
+ 0% {
1159
+ transform: scale(1);
1160
+ transform-origin: 50% 0%;
1161
+ }
1162
+ 100% {
1163
+ transform: scale(0.8);
1164
+ transform-origin: 50% 0%;
1165
+ opacity: 0;
1166
+ }
1167
+ }
1168
+ @keyframes antZoomLeftIn {
1169
+ 0% {
1170
+ transform: scale(0.8);
1171
+ transform-origin: 0% 50%;
1172
+ opacity: 0;
1173
+ }
1174
+ 100% {
1175
+ transform: scale(1);
1176
+ transform-origin: 0% 50%;
1177
+ }
1178
+ }
1179
+ @keyframes antZoomLeftOut {
1180
+ 0% {
1181
+ transform: scale(1);
1182
+ transform-origin: 0% 50%;
1183
+ }
1184
+ 100% {
1185
+ transform: scale(0.8);
1186
+ transform-origin: 0% 50%;
1187
+ opacity: 0;
1188
+ }
1189
+ }
1190
+ @keyframes antZoomRightIn {
1191
+ 0% {
1192
+ transform: scale(0.8);
1193
+ transform-origin: 100% 50%;
1194
+ opacity: 0;
1195
+ }
1196
+ 100% {
1197
+ transform: scale(1);
1198
+ transform-origin: 100% 50%;
1199
+ }
1200
+ }
1201
+ @keyframes antZoomRightOut {
1202
+ 0% {
1203
+ transform: scale(1);
1204
+ transform-origin: 100% 50%;
1205
+ }
1206
+ 100% {
1207
+ transform: scale(0.8);
1208
+ transform-origin: 100% 50%;
1209
+ opacity: 0;
1210
+ }
1211
+ }
1212
+ @keyframes antZoomDownIn {
1213
+ 0% {
1214
+ transform: scale(0.8);
1215
+ transform-origin: 50% 100%;
1216
+ opacity: 0;
1217
+ }
1218
+ 100% {
1219
+ transform: scale(1);
1220
+ transform-origin: 50% 100%;
1221
+ }
1222
+ }
1223
+ @keyframes antZoomDownOut {
1224
+ 0% {
1225
+ transform: scale(1);
1226
+ transform-origin: 50% 100%;
1227
+ }
1228
+ 100% {
1229
+ transform: scale(0.8);
1230
+ transform-origin: 50% 100%;
1231
+ opacity: 0;
1232
+ }
1233
+ }
1234
+ .ant-motion-collapse-legacy {
1235
+ overflow: hidden;
1236
+ }
1237
+ .ant-motion-collapse-legacy-active {
1238
+ transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1239
+ }
1240
+ .ant-motion-collapse {
1241
+ overflow: hidden;
1242
+ transition: height 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1) !important;
1243
+ }
1244
+
1245
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
1246
+ /* stylelint-disable no-duplicate-selectors */
1247
+ /* stylelint-disable */
1248
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
1249
+ .ant-calendar-picker-container {
1250
+ box-sizing: border-box;
1251
+ margin: 0;
1252
+ padding: 0;
1253
+ color: rgba(0, 0, 0, 0.65);
1254
+ font-size: 14px;
1255
+ font-variant: tabular-nums;
1256
+ line-height: 1.5;
1257
+ list-style: none;
1258
+ font-feature-settings: 'tnum';
1259
+ position: absolute;
1260
+ z-index: 1050;
1261
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
1262
+ }
1263
+ .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,
1264
+ .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight,
1265
+ .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,
1266
+ .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight {
1267
+ animation-name: antSlideDownIn;
1268
+ }
1269
+ .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,
1270
+ .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight,
1271
+ .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,
1272
+ .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight {
1273
+ animation-name: antSlideUpIn;
1274
+ }
1275
+ .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,
1276
+ .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight {
1277
+ animation-name: antSlideDownOut;
1278
+ }
1279
+ .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,
1280
+ .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight {
1281
+ animation-name: antSlideUpOut;
1282
+ }
1283
+ .ant-calendar-picker {
1284
+ box-sizing: border-box;
1285
+ margin: 0;
1286
+ padding: 0;
1287
+ color: rgba(0, 0, 0, 0.65);
1288
+ font-size: 14px;
1289
+ font-variant: tabular-nums;
1290
+ line-height: 1.5;
1291
+ list-style: none;
1292
+ font-feature-settings: 'tnum';
1293
+ position: relative;
1294
+ display: inline-block;
1295
+ outline: none;
1296
+ cursor: text;
1297
+ transition: opacity 0.3s;
1298
+ }
1299
+ .ant-calendar-picker-input {
1300
+ outline: none;
1301
+ }
1302
+ .ant-calendar-picker-input.ant-input {
1303
+ line-height: 1.5;
1304
+ }
1305
+ .ant-calendar-picker-input.ant-input-sm {
1306
+ padding-top: 0;
1307
+ padding-bottom: 0;
1308
+ }
1309
+ .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
1310
+ border-color: #40a9ff;
1311
+ }
1312
+ .ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) {
1313
+ border-color: #40a9ff;
1314
+ border-right-width: 1px !important;
1315
+ outline: 0;
1316
+ box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
1317
+ }
1318
+ .ant-calendar-picker-clear,
1319
+ .ant-calendar-picker-icon {
1320
+ position: absolute;
1321
+ top: 50%;
1322
+ right: 12px;
1323
+ z-index: 1;
1324
+ width: 14px;
1325
+ height: 14px;
1326
+ margin-top: -7px;
1327
+ font-size: 12px;
1328
+ line-height: 14px;
1329
+ transition: all 0.3s;
1330
+ user-select: none;
1331
+ }
1332
+ .ant-calendar-picker-clear {
1333
+ z-index: 2;
1334
+ color: rgba(0, 0, 0, 0.25);
1335
+ font-size: 14px;
1336
+ background: #fff;
1337
+ cursor: pointer;
1338
+ opacity: 0;
1339
+ pointer-events: none;
1340
+ }
1341
+ .ant-calendar-picker-clear:hover {
1342
+ color: rgba(0, 0, 0, 0.45);
1343
+ }
1344
+ .ant-calendar-picker:hover .ant-calendar-picker-clear {
1345
+ opacity: 1;
1346
+ pointer-events: auto;
1347
+ }
1348
+ .ant-calendar-picker-icon {
1349
+ display: inline-block;
1350
+ color: rgba(0, 0, 0, 0.25);
1351
+ font-size: 14px;
1352
+ line-height: 1;
1353
+ }
1354
+ .ant-input-disabled + .ant-calendar-picker-icon {
1355
+ cursor: not-allowed;
1356
+ }
1357
+ .ant-calendar-picker-small .ant-calendar-picker-clear,
1358
+ .ant-calendar-picker-small .ant-calendar-picker-icon {
1359
+ right: 8px;
1360
+ }
1361
+ .ant-calendar {
1362
+ position: relative;
1363
+ width: 280px;
1364
+ font-size: 14px;
1365
+ line-height: 1.5;
1366
+ text-align: left;
1367
+ list-style: none;
1368
+ background-color: #fff;
1369
+ background-clip: padding-box;
1370
+ border: 1px solid #fff;
1371
+ border-radius: 4px;
1372
+ outline: none;
1373
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
1374
+ }
1375
+ .ant-calendar-input-wrap {
1376
+ height: 34px;
1377
+ padding: 6px 10px;
1378
+ border-bottom: 1px solid #e8e8e8;
1379
+ }
1380
+ .ant-calendar-input {
1381
+ width: 100%;
1382
+ height: 22px;
1383
+ color: rgba(0, 0, 0, 0.65);
1384
+ background: #fff;
1385
+ border: 0;
1386
+ outline: 0;
1387
+ cursor: auto;
1388
+ }
1389
+ .ant-calendar-input::-moz-placeholder {
1390
+ color: #bfbfbf;
1391
+ opacity: 1;
1392
+ }
1393
+ .ant-calendar-input:-ms-input-placeholder {
1394
+ color: #bfbfbf;
1395
+ }
1396
+ .ant-calendar-input::-webkit-input-placeholder {
1397
+ color: #bfbfbf;
1398
+ }
1399
+ .ant-calendar-input:placeholder-shown {
1400
+ text-overflow: ellipsis;
1401
+ }
1402
+ .ant-calendar-week-number {
1403
+ width: 286px;
1404
+ }
1405
+ .ant-calendar-week-number-cell {
1406
+ text-align: center;
1407
+ }
1408
+ .ant-calendar-header {
1409
+ height: 40px;
1410
+ line-height: 40px;
1411
+ text-align: center;
1412
+ border-bottom: 1px solid #e8e8e8;
1413
+ user-select: none;
1414
+ }
1415
+ .ant-calendar-header a:hover {
1416
+ color: #40a9ff;
1417
+ }
1418
+ .ant-calendar-header .ant-calendar-century-select,
1419
+ .ant-calendar-header .ant-calendar-decade-select,
1420
+ .ant-calendar-header .ant-calendar-year-select,
1421
+ .ant-calendar-header .ant-calendar-month-select {
1422
+ display: inline-block;
1423
+ padding: 0 2px;
1424
+ color: rgba(0, 0, 0, 0.85);
1425
+ font-weight: 500;
1426
+ line-height: 40px;
1427
+ }
1428
+ .ant-calendar-header .ant-calendar-century-select-arrow,
1429
+ .ant-calendar-header .ant-calendar-decade-select-arrow,
1430
+ .ant-calendar-header .ant-calendar-year-select-arrow,
1431
+ .ant-calendar-header .ant-calendar-month-select-arrow {
1432
+ display: none;
1433
+ }
1434
+ .ant-calendar-header .ant-calendar-prev-century-btn,
1435
+ .ant-calendar-header .ant-calendar-next-century-btn,
1436
+ .ant-calendar-header .ant-calendar-prev-decade-btn,
1437
+ .ant-calendar-header .ant-calendar-next-decade-btn,
1438
+ .ant-calendar-header .ant-calendar-prev-month-btn,
1439
+ .ant-calendar-header .ant-calendar-next-month-btn,
1440
+ .ant-calendar-header .ant-calendar-prev-year-btn,
1441
+ .ant-calendar-header .ant-calendar-next-year-btn {
1442
+ position: absolute;
1443
+ top: 0;
1444
+ display: inline-block;
1445
+ padding: 0 5px;
1446
+ color: rgba(0, 0, 0, 0.45);
1447
+ font-size: 16px;
1448
+ font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
1449
+ line-height: 40px;
1450
+ }
1451
+ .ant-calendar-header .ant-calendar-prev-century-btn,
1452
+ .ant-calendar-header .ant-calendar-prev-decade-btn,
1453
+ .ant-calendar-header .ant-calendar-prev-year-btn {
1454
+ left: 7px;
1455
+ height: 100%;
1456
+ }
1457
+ .ant-calendar-header .ant-calendar-prev-century-btn::before,
1458
+ .ant-calendar-header .ant-calendar-prev-decade-btn::before,
1459
+ .ant-calendar-header .ant-calendar-prev-year-btn::before,
1460
+ .ant-calendar-header .ant-calendar-prev-century-btn::after,
1461
+ .ant-calendar-header .ant-calendar-prev-decade-btn::after,
1462
+ .ant-calendar-header .ant-calendar-prev-year-btn::after {
1463
+ position: relative;
1464
+ top: -1px;
1465
+ display: inline-block;
1466
+ width: 8px;
1467
+ height: 8px;
1468
+ vertical-align: middle;
1469
+ border: 0 solid #aaa;
1470
+ border-width: 1.5px 0 0 1.5px;
1471
+ border-radius: 1px;
1472
+ transform: rotate(-45deg) scale(0.8);
1473
+ transition: all 0.3s;
1474
+ content: '';
1475
+ }
1476
+ .ant-calendar-header .ant-calendar-prev-century-btn:hover::before,
1477
+ .ant-calendar-header .ant-calendar-prev-decade-btn:hover::before,
1478
+ .ant-calendar-header .ant-calendar-prev-year-btn:hover::before,
1479
+ .ant-calendar-header .ant-calendar-prev-century-btn:hover::after,
1480
+ .ant-calendar-header .ant-calendar-prev-decade-btn:hover::after,
1481
+ .ant-calendar-header .ant-calendar-prev-year-btn:hover::after {
1482
+ border-color: rgba(0, 0, 0, 0.65);
1483
+ }
1484
+ .ant-calendar-header .ant-calendar-prev-century-btn::after,
1485
+ .ant-calendar-header .ant-calendar-prev-decade-btn::after,
1486
+ .ant-calendar-header .ant-calendar-prev-year-btn::after {
1487
+ display: none;
1488
+ }
1489
+ .ant-calendar-header .ant-calendar-prev-century-btn::after,
1490
+ .ant-calendar-header .ant-calendar-prev-decade-btn::after,
1491
+ .ant-calendar-header .ant-calendar-prev-year-btn::after {
1492
+ position: relative;
1493
+ left: -3px;
1494
+ display: inline-block;
1495
+ }
1496
+ .ant-calendar-header .ant-calendar-next-century-btn,
1497
+ .ant-calendar-header .ant-calendar-next-decade-btn,
1498
+ .ant-calendar-header .ant-calendar-next-year-btn {
1499
+ right: 7px;
1500
+ height: 100%;
1501
+ }
1502
+ .ant-calendar-header .ant-calendar-next-century-btn::before,
1503
+ .ant-calendar-header .ant-calendar-next-decade-btn::before,
1504
+ .ant-calendar-header .ant-calendar-next-year-btn::before,
1505
+ .ant-calendar-header .ant-calendar-next-century-btn::after,
1506
+ .ant-calendar-header .ant-calendar-next-decade-btn::after,
1507
+ .ant-calendar-header .ant-calendar-next-year-btn::after {
1508
+ position: relative;
1509
+ top: -1px;
1510
+ display: inline-block;
1511
+ width: 8px;
1512
+ height: 8px;
1513
+ vertical-align: middle;
1514
+ border: 0 solid #aaa;
1515
+ border-width: 1.5px 0 0 1.5px;
1516
+ border-radius: 1px;
1517
+ transform: rotate(-45deg) scale(0.8);
1518
+ transition: all 0.3s;
1519
+ content: '';
1520
+ }
1521
+ .ant-calendar-header .ant-calendar-next-century-btn:hover::before,
1522
+ .ant-calendar-header .ant-calendar-next-decade-btn:hover::before,
1523
+ .ant-calendar-header .ant-calendar-next-year-btn:hover::before,
1524
+ .ant-calendar-header .ant-calendar-next-century-btn:hover::after,
1525
+ .ant-calendar-header .ant-calendar-next-decade-btn:hover::after,
1526
+ .ant-calendar-header .ant-calendar-next-year-btn:hover::after {
1527
+ border-color: rgba(0, 0, 0, 0.65);
1528
+ }
1529
+ .ant-calendar-header .ant-calendar-next-century-btn::after,
1530
+ .ant-calendar-header .ant-calendar-next-decade-btn::after,
1531
+ .ant-calendar-header .ant-calendar-next-year-btn::after {
1532
+ display: none;
1533
+ }
1534
+ .ant-calendar-header .ant-calendar-next-century-btn::before,
1535
+ .ant-calendar-header .ant-calendar-next-decade-btn::before,
1536
+ .ant-calendar-header .ant-calendar-next-year-btn::before,
1537
+ .ant-calendar-header .ant-calendar-next-century-btn::after,
1538
+ .ant-calendar-header .ant-calendar-next-decade-btn::after,
1539
+ .ant-calendar-header .ant-calendar-next-year-btn::after {
1540
+ transform: rotate(135deg) scale(0.8);
1541
+ }
1542
+ .ant-calendar-header .ant-calendar-next-century-btn::before,
1543
+ .ant-calendar-header .ant-calendar-next-decade-btn::before,
1544
+ .ant-calendar-header .ant-calendar-next-year-btn::before {
1545
+ position: relative;
1546
+ left: 3px;
1547
+ }
1548
+ .ant-calendar-header .ant-calendar-next-century-btn::after,
1549
+ .ant-calendar-header .ant-calendar-next-decade-btn::after,
1550
+ .ant-calendar-header .ant-calendar-next-year-btn::after {
1551
+ display: inline-block;
1552
+ }
1553
+ .ant-calendar-header .ant-calendar-prev-month-btn {
1554
+ left: 29px;
1555
+ height: 100%;
1556
+ }
1557
+ .ant-calendar-header .ant-calendar-prev-month-btn::before,
1558
+ .ant-calendar-header .ant-calendar-prev-month-btn::after {
1559
+ position: relative;
1560
+ top: -1px;
1561
+ display: inline-block;
1562
+ width: 8px;
1563
+ height: 8px;
1564
+ vertical-align: middle;
1565
+ border: 0 solid #aaa;
1566
+ border-width: 1.5px 0 0 1.5px;
1567
+ border-radius: 1px;
1568
+ transform: rotate(-45deg) scale(0.8);
1569
+ transition: all 0.3s;
1570
+ content: '';
1571
+ }
1572
+ .ant-calendar-header .ant-calendar-prev-month-btn:hover::before,
1573
+ .ant-calendar-header .ant-calendar-prev-month-btn:hover::after {
1574
+ border-color: rgba(0, 0, 0, 0.65);
1575
+ }
1576
+ .ant-calendar-header .ant-calendar-prev-month-btn::after {
1577
+ display: none;
1578
+ }
1579
+ .ant-calendar-header .ant-calendar-next-month-btn {
1580
+ right: 29px;
1581
+ height: 100%;
1582
+ }
1583
+ .ant-calendar-header .ant-calendar-next-month-btn::before,
1584
+ .ant-calendar-header .ant-calendar-next-month-btn::after {
1585
+ position: relative;
1586
+ top: -1px;
1587
+ display: inline-block;
1588
+ width: 8px;
1589
+ height: 8px;
1590
+ vertical-align: middle;
1591
+ border: 0 solid #aaa;
1592
+ border-width: 1.5px 0 0 1.5px;
1593
+ border-radius: 1px;
1594
+ transform: rotate(-45deg) scale(0.8);
1595
+ transition: all 0.3s;
1596
+ content: '';
1597
+ }
1598
+ .ant-calendar-header .ant-calendar-next-month-btn:hover::before,
1599
+ .ant-calendar-header .ant-calendar-next-month-btn:hover::after {
1600
+ border-color: rgba(0, 0, 0, 0.65);
1601
+ }
1602
+ .ant-calendar-header .ant-calendar-next-month-btn::after {
1603
+ display: none;
1604
+ }
1605
+ .ant-calendar-header .ant-calendar-next-month-btn::before,
1606
+ .ant-calendar-header .ant-calendar-next-month-btn::after {
1607
+ transform: rotate(135deg) scale(0.8);
1608
+ }
1609
+ .ant-calendar-body {
1610
+ padding: 8px 12px;
1611
+ }
1612
+ .ant-calendar table {
1613
+ width: 100%;
1614
+ max-width: 100%;
1615
+ background-color: transparent;
1616
+ border-collapse: collapse;
1617
+ }
1618
+ .ant-calendar table,
1619
+ .ant-calendar th,
1620
+ .ant-calendar td {
1621
+ text-align: center;
1622
+ border: 0;
1623
+ }
1624
+ .ant-calendar-calendar-table {
1625
+ margin-bottom: 0;
1626
+ border-spacing: 0;
1627
+ }
1628
+ .ant-calendar-column-header {
1629
+ width: 33px;
1630
+ padding: 6px 0;
1631
+ line-height: 18px;
1632
+ text-align: center;
1633
+ }
1634
+ .ant-calendar-column-header .ant-calendar-column-header-inner {
1635
+ display: block;
1636
+ font-weight: normal;
1637
+ }
1638
+ .ant-calendar-week-number-header .ant-calendar-column-header-inner {
1639
+ display: none;
1640
+ }
1641
+ .ant-calendar-cell {
1642
+ height: 30px;
1643
+ padding: 3px 0;
1644
+ }
1645
+ .ant-calendar-date {
1646
+ display: block;
1647
+ width: 24px;
1648
+ height: 24px;
1649
+ margin: 0 auto;
1650
+ padding: 0;
1651
+ color: rgba(0, 0, 0, 0.65);
1652
+ line-height: 22px;
1653
+ text-align: center;
1654
+ background: transparent;
1655
+ border: 1px solid transparent;
1656
+ border-radius: 2px;
1657
+ transition: background 0.3s ease;
1658
+ }
1659
+ .ant-calendar-date-panel {
1660
+ position: relative;
1661
+ outline: none;
1662
+ }
1663
+ .ant-calendar-date:hover {
1664
+ background: #e6f7ff;
1665
+ cursor: pointer;
1666
+ }
1667
+ .ant-calendar-date:active {
1668
+ color: #fff;
1669
+ background: #40a9ff;
1670
+ }
1671
+ .ant-calendar-today .ant-calendar-date {
1672
+ color: #1890ff;
1673
+ font-weight: bold;
1674
+ border-color: #1890ff;
1675
+ }
1676
+ .ant-calendar-selected-day .ant-calendar-date {
1677
+ background: #bae7ff;
1678
+ }
1679
+ .ant-calendar-last-month-cell .ant-calendar-date,
1680
+ .ant-calendar-next-month-btn-day .ant-calendar-date,
1681
+ .ant-calendar-last-month-cell .ant-calendar-date:hover,
1682
+ .ant-calendar-next-month-btn-day .ant-calendar-date:hover {
1683
+ color: rgba(0, 0, 0, 0.25);
1684
+ background: transparent;
1685
+ border-color: transparent;
1686
+ }
1687
+ .ant-calendar-disabled-cell .ant-calendar-date {
1688
+ position: relative;
1689
+ width: auto;
1690
+ color: rgba(0, 0, 0, 0.25);
1691
+ background: #f5f5f5;
1692
+ border: 1px solid transparent;
1693
+ border-radius: 0;
1694
+ cursor: not-allowed;
1695
+ }
1696
+ .ant-calendar-disabled-cell .ant-calendar-date:hover {
1697
+ background: #f5f5f5;
1698
+ }
1699
+ .ant-calendar-disabled-cell.ant-calendar-selected-day .ant-calendar-date::before {
1700
+ position: absolute;
1701
+ top: -1px;
1702
+ left: 5px;
1703
+ width: 24px;
1704
+ height: 24px;
1705
+ background: rgba(0, 0, 0, 0.1);
1706
+ border-radius: 2px;
1707
+ content: '';
1708
+ }
1709
+ .ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date {
1710
+ position: relative;
1711
+ padding-right: 5px;
1712
+ padding-left: 5px;
1713
+ }
1714
+ .ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date::before {
1715
+ position: absolute;
1716
+ top: -1px;
1717
+ left: 5px;
1718
+ width: 24px;
1719
+ height: 24px;
1720
+ border: 1px solid rgba(0, 0, 0, 0.25);
1721
+ border-radius: 2px;
1722
+ content: ' ';
1723
+ }
1724
+ .ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
1725
+ border-top-left-radius: 4px;
1726
+ border-bottom-left-radius: 4px;
1727
+ }
1728
+ .ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
1729
+ border-top-right-radius: 4px;
1730
+ border-bottom-right-radius: 4px;
1731
+ }
1732
+ .ant-calendar-footer {
1733
+ padding: 0 12px;
1734
+ line-height: 38px;
1735
+ border-top: 1px solid #e8e8e8;
1736
+ }
1737
+ .ant-calendar-footer:empty {
1738
+ border-top: 0;
1739
+ }
1740
+ .ant-calendar-footer-btn {
1741
+ display: block;
1742
+ text-align: center;
1743
+ }
1744
+ .ant-calendar-footer-extra {
1745
+ text-align: left;
1746
+ }
1747
+ .ant-calendar .ant-calendar-today-btn,
1748
+ .ant-calendar .ant-calendar-clear-btn {
1749
+ display: inline-block;
1750
+ margin: 0 0 0 8px;
1751
+ text-align: center;
1752
+ }
1753
+ .ant-calendar .ant-calendar-today-btn-disabled,
1754
+ .ant-calendar .ant-calendar-clear-btn-disabled {
1755
+ color: rgba(0, 0, 0, 0.25);
1756
+ cursor: not-allowed;
1757
+ }
1758
+ .ant-calendar .ant-calendar-today-btn:only-child,
1759
+ .ant-calendar .ant-calendar-clear-btn:only-child {
1760
+ margin: 0;
1761
+ }
1762
+ .ant-calendar .ant-calendar-clear-btn {
1763
+ position: absolute;
1764
+ top: 7px;
1765
+ right: 5px;
1766
+ display: none;
1767
+ width: 20px;
1768
+ height: 20px;
1769
+ margin: 0;
1770
+ overflow: hidden;
1771
+ line-height: 20px;
1772
+ text-align: center;
1773
+ text-indent: -76px;
1774
+ }
1775
+ .ant-calendar .ant-calendar-clear-btn::after {
1776
+ display: inline-block;
1777
+ width: 20px;
1778
+ color: rgba(0, 0, 0, 0.25);
1779
+ font-size: 14px;
1780
+ line-height: 1;
1781
+ text-indent: 43px;
1782
+ transition: color 0.3s ease;
1783
+ }
1784
+ .ant-calendar .ant-calendar-clear-btn:hover::after {
1785
+ color: rgba(0, 0, 0, 0.45);
1786
+ }
1787
+ .ant-calendar .ant-calendar-ok-btn {
1788
+ position: relative;
1789
+ display: inline-block;
1790
+ font-weight: 400;
1791
+ white-space: nowrap;
1792
+ text-align: center;
1793
+ background-image: none;
1794
+ border: 1px solid transparent;
1795
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
1796
+ cursor: pointer;
1797
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
1798
+ user-select: none;
1799
+ touch-action: manipulation;
1800
+ height: 32px;
1801
+ padding: 0 15px;
1802
+ color: #fff;
1803
+ background-color: #1890ff;
1804
+ border-color: #1890ff;
1805
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
1806
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
1807
+ height: 24px;
1808
+ padding: 0 7px;
1809
+ font-size: 14px;
1810
+ border-radius: 4px;
1811
+ line-height: 22px;
1812
+ }
1813
+ .ant-calendar .ant-calendar-ok-btn > .anticon {
1814
+ line-height: 1;
1815
+ }
1816
+ .ant-calendar .ant-calendar-ok-btn,
1817
+ .ant-calendar .ant-calendar-ok-btn:active,
1818
+ .ant-calendar .ant-calendar-ok-btn:focus {
1819
+ outline: 0;
1820
+ }
1821
+ .ant-calendar .ant-calendar-ok-btn:not([disabled]):hover {
1822
+ text-decoration: none;
1823
+ }
1824
+ .ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
1825
+ outline: 0;
1826
+ box-shadow: none;
1827
+ }
1828
+ .ant-calendar .ant-calendar-ok-btn.disabled,
1829
+ .ant-calendar .ant-calendar-ok-btn[disabled] {
1830
+ cursor: not-allowed;
1831
+ }
1832
+ .ant-calendar .ant-calendar-ok-btn.disabled > *,
1833
+ .ant-calendar .ant-calendar-ok-btn[disabled] > * {
1834
+ pointer-events: none;
1835
+ }
1836
+ .ant-calendar .ant-calendar-ok-btn-lg {
1837
+ height: 40px;
1838
+ padding: 0 15px;
1839
+ font-size: 16px;
1840
+ border-radius: 4px;
1841
+ }
1842
+ .ant-calendar .ant-calendar-ok-btn-sm {
1843
+ height: 24px;
1844
+ padding: 0 7px;
1845
+ font-size: 14px;
1846
+ border-radius: 4px;
1847
+ }
1848
+ .ant-calendar .ant-calendar-ok-btn > a:only-child {
1849
+ color: currentColor;
1850
+ }
1851
+ .ant-calendar .ant-calendar-ok-btn > a:only-child::after {
1852
+ position: absolute;
1853
+ top: 0;
1854
+ right: 0;
1855
+ bottom: 0;
1856
+ left: 0;
1857
+ background: transparent;
1858
+ content: '';
1859
+ }
1860
+ .ant-calendar .ant-calendar-ok-btn:hover,
1861
+ .ant-calendar .ant-calendar-ok-btn:focus {
1862
+ color: #fff;
1863
+ background-color: #40a9ff;
1864
+ border-color: #40a9ff;
1865
+ }
1866
+ .ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
1867
+ .ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
1868
+ color: currentColor;
1869
+ }
1870
+ .ant-calendar .ant-calendar-ok-btn:hover > a:only-child::after,
1871
+ .ant-calendar .ant-calendar-ok-btn:focus > a:only-child::after {
1872
+ position: absolute;
1873
+ top: 0;
1874
+ right: 0;
1875
+ bottom: 0;
1876
+ left: 0;
1877
+ background: transparent;
1878
+ content: '';
1879
+ }
1880
+ .ant-calendar .ant-calendar-ok-btn:active,
1881
+ .ant-calendar .ant-calendar-ok-btn.active {
1882
+ color: #fff;
1883
+ background-color: #096dd9;
1884
+ border-color: #096dd9;
1885
+ }
1886
+ .ant-calendar .ant-calendar-ok-btn:active > a:only-child,
1887
+ .ant-calendar .ant-calendar-ok-btn.active > a:only-child {
1888
+ color: currentColor;
1889
+ }
1890
+ .ant-calendar .ant-calendar-ok-btn:active > a:only-child::after,
1891
+ .ant-calendar .ant-calendar-ok-btn.active > a:only-child::after {
1892
+ position: absolute;
1893
+ top: 0;
1894
+ right: 0;
1895
+ bottom: 0;
1896
+ left: 0;
1897
+ background: transparent;
1898
+ content: '';
1899
+ }
1900
+ .ant-calendar .ant-calendar-ok-btn-disabled,
1901
+ .ant-calendar .ant-calendar-ok-btn.disabled,
1902
+ .ant-calendar .ant-calendar-ok-btn[disabled],
1903
+ .ant-calendar .ant-calendar-ok-btn-disabled:hover,
1904
+ .ant-calendar .ant-calendar-ok-btn.disabled:hover,
1905
+ .ant-calendar .ant-calendar-ok-btn[disabled]:hover,
1906
+ .ant-calendar .ant-calendar-ok-btn-disabled:focus,
1907
+ .ant-calendar .ant-calendar-ok-btn.disabled:focus,
1908
+ .ant-calendar .ant-calendar-ok-btn[disabled]:focus,
1909
+ .ant-calendar .ant-calendar-ok-btn-disabled:active,
1910
+ .ant-calendar .ant-calendar-ok-btn.disabled:active,
1911
+ .ant-calendar .ant-calendar-ok-btn[disabled]:active,
1912
+ .ant-calendar .ant-calendar-ok-btn-disabled.active,
1913
+ .ant-calendar .ant-calendar-ok-btn.disabled.active,
1914
+ .ant-calendar .ant-calendar-ok-btn[disabled].active {
1915
+ color: rgba(0, 0, 0, 0.25);
1916
+ background-color: #f5f5f5;
1917
+ border-color: #d9d9d9;
1918
+ text-shadow: none;
1919
+ box-shadow: none;
1920
+ }
1921
+ .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child,
1922
+ .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
1923
+ .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
1924
+ .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child,
1925
+ .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
1926
+ .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
1927
+ .ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child,
1928
+ .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
1929
+ .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
1930
+ .ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child,
1931
+ .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
1932
+ .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
1933
+ .ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child,
1934
+ .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
1935
+ .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
1936
+ color: currentColor;
1937
+ }
1938
+ .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after,
1939
+ .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after,
1940
+ .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after,
1941
+ .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after,
1942
+ .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after,
1943
+ .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after,
1944
+ .ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after,
1945
+ .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after,
1946
+ .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after,
1947
+ .ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after,
1948
+ .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after,
1949
+ .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after,
1950
+ .ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after,
1951
+ .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after,
1952
+ .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after {
1953
+ position: absolute;
1954
+ top: 0;
1955
+ right: 0;
1956
+ bottom: 0;
1957
+ left: 0;
1958
+ background: transparent;
1959
+ content: '';
1960
+ }
1961
+ .ant-calendar .ant-calendar-ok-btn-disabled,
1962
+ .ant-calendar .ant-calendar-ok-btn.disabled,
1963
+ .ant-calendar .ant-calendar-ok-btn[disabled],
1964
+ .ant-calendar .ant-calendar-ok-btn-disabled:hover,
1965
+ .ant-calendar .ant-calendar-ok-btn.disabled:hover,
1966
+ .ant-calendar .ant-calendar-ok-btn[disabled]:hover,
1967
+ .ant-calendar .ant-calendar-ok-btn-disabled:focus,
1968
+ .ant-calendar .ant-calendar-ok-btn.disabled:focus,
1969
+ .ant-calendar .ant-calendar-ok-btn[disabled]:focus,
1970
+ .ant-calendar .ant-calendar-ok-btn-disabled:active,
1971
+ .ant-calendar .ant-calendar-ok-btn.disabled:active,
1972
+ .ant-calendar .ant-calendar-ok-btn[disabled]:active,
1973
+ .ant-calendar .ant-calendar-ok-btn-disabled.active,
1974
+ .ant-calendar .ant-calendar-ok-btn.disabled.active,
1975
+ .ant-calendar .ant-calendar-ok-btn[disabled].active {
1976
+ color: rgba(0, 0, 0, 0.25);
1977
+ background-color: #f5f5f5;
1978
+ border-color: #d9d9d9;
1979
+ text-shadow: none;
1980
+ box-shadow: none;
1981
+ }
1982
+ .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child,
1983
+ .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
1984
+ .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
1985
+ .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child,
1986
+ .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
1987
+ .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
1988
+ .ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child,
1989
+ .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
1990
+ .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
1991
+ .ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child,
1992
+ .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
1993
+ .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
1994
+ .ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child,
1995
+ .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
1996
+ .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
1997
+ color: currentColor;
1998
+ }
1999
+ .ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after,
2000
+ .ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after,
2001
+ .ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after,
2002
+ .ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after,
2003
+ .ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after,
2004
+ .ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after,
2005
+ .ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after,
2006
+ .ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after,
2007
+ .ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after,
2008
+ .ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after,
2009
+ .ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after,
2010
+ .ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after,
2011
+ .ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after,
2012
+ .ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after,
2013
+ .ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after {
2014
+ position: absolute;
2015
+ top: 0;
2016
+ right: 0;
2017
+ bottom: 0;
2018
+ left: 0;
2019
+ background: transparent;
2020
+ content: '';
2021
+ }
2022
+ .ant-calendar-range-picker-input-wrapper {
2023
+ position: relative;
2024
+ display: inline-flex;
2025
+ align-items: center;
2026
+ width: 100%;
2027
+ }
2028
+ .ant-calendar-range-picker-input {
2029
+ width: 44%;
2030
+ height: 99%;
2031
+ text-align: center;
2032
+ background-color: transparent;
2033
+ border: 0;
2034
+ outline: 0;
2035
+ cursor: pointer;
2036
+ transition: color 0.3s;
2037
+ }
2038
+ .ant-calendar-range-picker-input::-moz-placeholder {
2039
+ color: #bfbfbf;
2040
+ opacity: 1;
2041
+ }
2042
+ .ant-calendar-range-picker-input:-ms-input-placeholder {
2043
+ color: #bfbfbf;
2044
+ }
2045
+ .ant-calendar-range-picker-input::-webkit-input-placeholder {
2046
+ color: #bfbfbf;
2047
+ }
2048
+ .ant-calendar-range-picker-input:placeholder-shown {
2049
+ text-overflow: ellipsis;
2050
+ }
2051
+ .ant-calendar-range-picker-input[disabled] {
2052
+ cursor: not-allowed;
2053
+ }
2054
+ .ant-calendar-range-picker-input-active {
2055
+ color: #1890ff;
2056
+ }
2057
+ .ant-calendar-range-picker-active-bar {
2058
+ position: absolute;
2059
+ bottom: 0;
2060
+ left: 0;
2061
+ height: 2px;
2062
+ background: #1890ff;
2063
+ pointer-events: none;
2064
+ transition: left 0.3s ease-out, width 0.3s ease-out;
2065
+ opacity: 0;
2066
+ }
2067
+ .ant-calendar-picker:focus-within .ant-calendar-range-picker-active-bar,
2068
+ .ant-calendar-picker-focused .ant-calendar-range-picker-active-bar {
2069
+ opacity: 1;
2070
+ }
2071
+ .ant-calendar-range-picker-separator {
2072
+ display: inline-block;
2073
+ min-width: 10px;
2074
+ height: 100%;
2075
+ color: rgba(0, 0, 0, 0.45);
2076
+ white-space: nowrap;
2077
+ text-align: center;
2078
+ vertical-align: top;
2079
+ pointer-events: none;
2080
+ }
2081
+ .ant-input-disabled .ant-calendar-range-picker-separator {
2082
+ color: rgba(0, 0, 0, 0.25);
2083
+ }
2084
+ .ant-calendar-range {
2085
+ width: 552px;
2086
+ overflow: hidden;
2087
+ }
2088
+ .ant-calendar-range .ant-calendar-date-panel::after {
2089
+ display: block;
2090
+ clear: both;
2091
+ height: 0;
2092
+ visibility: hidden;
2093
+ content: '.';
2094
+ }
2095
+ .ant-calendar-range-part {
2096
+ position: relative;
2097
+ width: 50%;
2098
+ }
2099
+ .ant-calendar-range-left {
2100
+ float: left;
2101
+ }
2102
+ .ant-calendar-range-left .ant-calendar-time-picker-inner {
2103
+ border-right: 1px solid #e8e8e8;
2104
+ }
2105
+ .ant-calendar-range-right {
2106
+ float: right;
2107
+ }
2108
+ .ant-calendar-range-right .ant-calendar-time-picker-inner {
2109
+ border-left: 1px solid #e8e8e8;
2110
+ }
2111
+ .ant-calendar-range .ant-calendar-today :not(.ant-calendar-disabled-cell) :not(.ant-calendar-last-month-cell) :not(.ant-calendar-next-month-btn-day) .ant-calendar-date {
2112
+ color: #1890ff;
2113
+ background: #bae7ff;
2114
+ border-color: #1890ff;
2115
+ }
2116
+ .ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date,
2117
+ .ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date {
2118
+ color: #fff;
2119
+ background: #1890ff;
2120
+ border: 1px solid transparent;
2121
+ }
2122
+ .ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover,
2123
+ .ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover {
2124
+ background: #1890ff;
2125
+ }
2126
+ .ant-calendar-range .ant-calendar-input-wrap {
2127
+ display: none;
2128
+ }
2129
+ .ant-calendar-range .ant-calendar-date-input-wrap {
2130
+ display: none;
2131
+ }
2132
+ .ant-calendar-range-middle {
2133
+ display: none;
2134
+ }
2135
+ .ant-calendar-range .ant-calendar-input,
2136
+ .ant-calendar-range .ant-calendar-time-picker-input {
2137
+ position: relative;
2138
+ display: inline-block;
2139
+ width: 100%;
2140
+ height: 32px;
2141
+ padding: 4px 11px;
2142
+ color: rgba(0, 0, 0, 0.65);
2143
+ font-size: 14px;
2144
+ line-height: 1.5;
2145
+ background-color: #fff;
2146
+ background-image: none;
2147
+ border: 1px solid #d9d9d9;
2148
+ border-radius: 4px;
2149
+ transition: all 0.3s;
2150
+ height: 24px;
2151
+ padding-right: 0;
2152
+ padding-left: 0;
2153
+ line-height: 24px;
2154
+ border: 0;
2155
+ box-shadow: none;
2156
+ }
2157
+ .ant-calendar-range .ant-calendar-input::-moz-placeholder,
2158
+ .ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
2159
+ color: #bfbfbf;
2160
+ opacity: 1;
2161
+ }
2162
+ .ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
2163
+ .ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
2164
+ color: #bfbfbf;
2165
+ }
2166
+ .ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
2167
+ .ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
2168
+ color: #bfbfbf;
2169
+ }
2170
+ .ant-calendar-range .ant-calendar-input:placeholder-shown,
2171
+ .ant-calendar-range .ant-calendar-time-picker-input:placeholder-shown {
2172
+ text-overflow: ellipsis;
2173
+ }
2174
+ .ant-calendar-range .ant-calendar-input:hover,
2175
+ .ant-calendar-range .ant-calendar-time-picker-input:hover {
2176
+ border-color: #40a9ff;
2177
+ border-right-width: 1px !important;
2178
+ }
2179
+ .ant-calendar-range .ant-calendar-input:focus,
2180
+ .ant-calendar-range .ant-calendar-time-picker-input:focus {
2181
+ border-color: #40a9ff;
2182
+ border-right-width: 1px !important;
2183
+ outline: 0;
2184
+ box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
2185
+ }
2186
+ .ant-calendar-range .ant-calendar-input-disabled,
2187
+ .ant-calendar-range .ant-calendar-time-picker-input-disabled {
2188
+ color: rgba(0, 0, 0, 0.25);
2189
+ background-color: #f5f5f5;
2190
+ cursor: not-allowed;
2191
+ opacity: 1;
2192
+ }
2193
+ .ant-calendar-range .ant-calendar-input-disabled:hover,
2194
+ .ant-calendar-range .ant-calendar-time-picker-input-disabled:hover {
2195
+ border-color: #d9d9d9;
2196
+ border-right-width: 1px !important;
2197
+ }
2198
+ .ant-calendar-range .ant-calendar-input[disabled],
2199
+ .ant-calendar-range .ant-calendar-time-picker-input[disabled] {
2200
+ color: rgba(0, 0, 0, 0.25);
2201
+ background-color: #f5f5f5;
2202
+ cursor: not-allowed;
2203
+ opacity: 1;
2204
+ }
2205
+ .ant-calendar-range .ant-calendar-input[disabled]:hover,
2206
+ .ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover {
2207
+ border-color: #d9d9d9;
2208
+ border-right-width: 1px !important;
2209
+ }
2210
+ textarea.ant-calendar-range .ant-calendar-input,
2211
+ textarea.ant-calendar-range .ant-calendar-time-picker-input {
2212
+ max-width: 100%;
2213
+ height: auto;
2214
+ min-height: 32px;
2215
+ line-height: 1.5;
2216
+ vertical-align: bottom;
2217
+ transition: all 0.3s, height 0s;
2218
+ }
2219
+ .ant-calendar-range .ant-calendar-input-lg,
2220
+ .ant-calendar-range .ant-calendar-time-picker-input-lg {
2221
+ height: 40px;
2222
+ padding: 6px 11px;
2223
+ font-size: 16px;
2224
+ }
2225
+ .ant-calendar-range .ant-calendar-input-sm,
2226
+ .ant-calendar-range .ant-calendar-time-picker-input-sm {
2227
+ height: 24px;
2228
+ padding: 1px 7px;
2229
+ }
2230
+ .ant-calendar-range .ant-calendar-input:focus,
2231
+ .ant-calendar-range .ant-calendar-time-picker-input:focus {
2232
+ box-shadow: none;
2233
+ }
2234
+ .ant-calendar-range .ant-calendar-time-picker-icon {
2235
+ display: none;
2236
+ }
2237
+ .ant-calendar-range.ant-calendar-week-number {
2238
+ width: 574px;
2239
+ }
2240
+ .ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part {
2241
+ width: 286px;
2242
+ }
2243
+ .ant-calendar-range .ant-calendar-year-panel,
2244
+ .ant-calendar-range .ant-calendar-month-panel,
2245
+ .ant-calendar-range .ant-calendar-decade-panel {
2246
+ top: 34px;
2247
+ }
2248
+ .ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel {
2249
+ top: 0;
2250
+ }
2251
+ .ant-calendar-range .ant-calendar-decade-panel-table,
2252
+ .ant-calendar-range .ant-calendar-year-panel-table,
2253
+ .ant-calendar-range .ant-calendar-month-panel-table {
2254
+ height: 208px;
2255
+ }
2256
+ .ant-calendar-range .ant-calendar-in-range-cell {
2257
+ position: relative;
2258
+ border-radius: 0;
2259
+ }
2260
+ .ant-calendar-range .ant-calendar-in-range-cell > div {
2261
+ position: relative;
2262
+ z-index: 1;
2263
+ }
2264
+ .ant-calendar-range .ant-calendar-in-range-cell::before {
2265
+ position: absolute;
2266
+ top: 4px;
2267
+ right: 0;
2268
+ bottom: 4px;
2269
+ left: 0;
2270
+ display: block;
2271
+ background: #e6f7ff;
2272
+ border: 0;
2273
+ border-radius: 0;
2274
+ content: '';
2275
+ }
2276
+ .ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date,
2277
+ .ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date {
2278
+ color: #fff;
2279
+ background: #1890ff;
2280
+ border-radius: 2px;
2281
+ }
2282
+ .ant-calendar-range .ant-calendar-in-range-cell.ant-calendar-in-range-hover-cell::before {
2283
+ background: #bae7ff;
2284
+ }
2285
+ .ant-calendar-range .ant-calendar-in-range-cell:first-child::before,
2286
+ .ant-calendar-range .ant-calendar-selected-start-date + .ant-calendar-in-range-cell::before {
2287
+ border-top-left-radius: 2px;
2288
+ border-bottom-left-radius: 2px;
2289
+ }
2290
+ .ant-calendar-range .ant-calendar-in-range-cell:last-child::before,
2291
+ .ant-calendar-range .ant-calendar-in-range-cell + .ant-calendar-selected-end-date::before {
2292
+ border-top-right-radius: 2px;
2293
+ border-bottom-right-radius: 2px;
2294
+ }
2295
+ .ant-calendar-range .ant-calendar-cell {
2296
+ transition: background 0.3s;
2297
+ }
2298
+ .ant-calendar-range .ant-calendar-cell:hover:not(.ant-calendar-disabled-cell) .ant-calendar-date {
2299
+ background: #e6f7ff;
2300
+ }
2301
+ .ant-calendar-range .ant-calendar-selected-start-date:hover .ant-calendar-date,
2302
+ .ant-calendar-range .ant-calendar-selected-end-date:hover .ant-calendar-date {
2303
+ background: #40a9ff !important;
2304
+ }
2305
+ .ant-calendar-range .ant-calendar-footer-extra {
2306
+ float: left;
2307
+ }
2308
+ div.ant-calendar-range-quick-selector {
2309
+ text-align: left;
2310
+ }
2311
+ div.ant-calendar-range-quick-selector > a {
2312
+ margin-right: 8px;
2313
+ }
2314
+ .ant-calendar-range .ant-calendar-header,
2315
+ .ant-calendar-range .ant-calendar-month-panel-header,
2316
+ .ant-calendar-range .ant-calendar-year-panel-header,
2317
+ .ant-calendar-range .ant-calendar-decade-panel-header {
2318
+ border-bottom: 0;
2319
+ }
2320
+ .ant-calendar-range .ant-calendar-body,
2321
+ .ant-calendar-range .ant-calendar-month-panel-body,
2322
+ .ant-calendar-range .ant-calendar-year-panel-body,
2323
+ .ant-calendar-range .ant-calendar-decade-panel-body {
2324
+ border-top: 1px solid #e8e8e8;
2325
+ }
2326
+ .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker {
2327
+ top: 68px;
2328
+ z-index: 2;
2329
+ width: 100%;
2330
+ height: 207px;
2331
+ }
2332
+ .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel {
2333
+ height: 267px;
2334
+ margin-top: -34px;
2335
+ }
2336
+ .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
2337
+ height: 100%;
2338
+ padding-top: 40px;
2339
+ background: none;
2340
+ }
2341
+ .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
2342
+ display: inline-block;
2343
+ height: 100%;
2344
+ background-color: #fff;
2345
+ border-top: 1px solid #e8e8e8;
2346
+ }
2347
+ .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select {
2348
+ height: 100%;
2349
+ }
2350
+ .ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul {
2351
+ max-height: 100%;
2352
+ }
2353
+ .ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
2354
+ margin-right: 8px;
2355
+ }
2356
+ .ant-calendar-range.ant-calendar-time .ant-calendar-today-btn {
2357
+ height: 22px;
2358
+ margin: 8px 12px;
2359
+ line-height: 22px;
2360
+ }
2361
+ .ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker {
2362
+ height: 233px;
2363
+ }
2364
+ .ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
2365
+ border-top-color: transparent;
2366
+ }
2367
+ .ant-calendar-time-picker {
2368
+ position: absolute;
2369
+ top: 40px;
2370
+ width: 100%;
2371
+ background-color: #fff;
2372
+ }
2373
+ .ant-calendar-time-picker-panel {
2374
+ position: absolute;
2375
+ z-index: 1050;
2376
+ width: 100%;
2377
+ }
2378
+ .ant-calendar-time-picker-inner {
2379
+ position: relative;
2380
+ display: inline-block;
2381
+ width: 100%;
2382
+ overflow: hidden;
2383
+ font-size: 14px;
2384
+ line-height: 1.5;
2385
+ text-align: left;
2386
+ list-style: none;
2387
+ background-color: #fff;
2388
+ background-clip: padding-box;
2389
+ outline: none;
2390
+ }
2391
+ .ant-calendar-time-picker-combobox {
2392
+ width: 100%;
2393
+ }
2394
+ .ant-calendar-time-picker-column-1,
2395
+ .ant-calendar-time-picker-column-1 .ant-calendar-time-picker-select {
2396
+ width: 100%;
2397
+ }
2398
+ .ant-calendar-time-picker-column-2 .ant-calendar-time-picker-select {
2399
+ width: 50%;
2400
+ }
2401
+ .ant-calendar-time-picker-column-3 .ant-calendar-time-picker-select {
2402
+ width: 33.33%;
2403
+ }
2404
+ .ant-calendar-time-picker-column-4 .ant-calendar-time-picker-select {
2405
+ width: 25%;
2406
+ }
2407
+ .ant-calendar-time-picker-input-wrap {
2408
+ display: none;
2409
+ }
2410
+ .ant-calendar-time-picker-select {
2411
+ position: relative;
2412
+ float: left;
2413
+ height: 226px;
2414
+ overflow: hidden;
2415
+ font-size: 14px;
2416
+ border-right: 1px solid #e8e8e8;
2417
+ }
2418
+ .ant-calendar-time-picker-select:hover {
2419
+ overflow-y: auto;
2420
+ }
2421
+ .ant-calendar-time-picker-select:first-child {
2422
+ margin-left: 0;
2423
+ border-left: 0;
2424
+ }
2425
+ .ant-calendar-time-picker-select:last-child {
2426
+ border-right: 0;
2427
+ }
2428
+ .ant-calendar-time-picker-select ul {
2429
+ width: 100%;
2430
+ max-height: 206px;
2431
+ margin: 0;
2432
+ padding: 0;
2433
+ list-style: none;
2434
+ }
2435
+ .ant-calendar-time-picker-select li {
2436
+ width: 100%;
2437
+ height: 24px;
2438
+ margin: 0;
2439
+ line-height: 24px;
2440
+ text-align: center;
2441
+ list-style: none;
2442
+ cursor: pointer;
2443
+ transition: all 0.3s;
2444
+ user-select: none;
2445
+ }
2446
+ .ant-calendar-time-picker-select li:last-child::after {
2447
+ display: block;
2448
+ height: 202px;
2449
+ content: '';
2450
+ }
2451
+ .ant-calendar-time-picker-select li:hover {
2452
+ background: #e6f7ff;
2453
+ }
2454
+ .ant-calendar-time-picker-select li:focus {
2455
+ color: #1890ff;
2456
+ font-weight: 600;
2457
+ outline: none;
2458
+ }
2459
+ li.ant-calendar-time-picker-select-option-selected {
2460
+ font-weight: 600;
2461
+ background: #f5f5f5;
2462
+ }
2463
+ li.ant-calendar-time-picker-select-option-disabled {
2464
+ color: rgba(0, 0, 0, 0.25);
2465
+ }
2466
+ li.ant-calendar-time-picker-select-option-disabled:hover {
2467
+ background: transparent;
2468
+ cursor: not-allowed;
2469
+ }
2470
+ .ant-calendar-time .ant-calendar-day-select {
2471
+ display: inline-block;
2472
+ padding: 0 2px;
2473
+ color: rgba(0, 0, 0, 0.85);
2474
+ font-weight: 500;
2475
+ line-height: 34px;
2476
+ }
2477
+ .ant-calendar-time .ant-calendar-footer {
2478
+ position: relative;
2479
+ height: auto;
2480
+ }
2481
+ .ant-calendar-time .ant-calendar-footer-btn {
2482
+ text-align: right;
2483
+ }
2484
+ .ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn {
2485
+ float: left;
2486
+ margin: 0;
2487
+ }
2488
+ .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
2489
+ display: inline-block;
2490
+ margin-right: 8px;
2491
+ }
2492
+ .ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
2493
+ color: rgba(0, 0, 0, 0.25);
2494
+ }
2495
+ .ant-calendar-month-panel {
2496
+ position: absolute;
2497
+ top: 0;
2498
+ right: 0;
2499
+ bottom: 0;
2500
+ left: 0;
2501
+ z-index: 10;
2502
+ background: #fff;
2503
+ border-radius: 4px;
2504
+ outline: none;
2505
+ }
2506
+ .ant-calendar-month-panel > div {
2507
+ display: flex;
2508
+ flex-direction: column;
2509
+ height: 100%;
2510
+ }
2511
+ .ant-calendar-month-panel-hidden {
2512
+ display: none;
2513
+ }
2514
+ .ant-calendar-month-panel-header {
2515
+ height: 40px;
2516
+ line-height: 40px;
2517
+ text-align: center;
2518
+ border-bottom: 1px solid #e8e8e8;
2519
+ user-select: none;
2520
+ position: relative;
2521
+ }
2522
+ .ant-calendar-month-panel-header a:hover {
2523
+ color: #40a9ff;
2524
+ }
2525
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
2526
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
2527
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
2528
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
2529
+ display: inline-block;
2530
+ padding: 0 2px;
2531
+ color: rgba(0, 0, 0, 0.85);
2532
+ font-weight: 500;
2533
+ line-height: 40px;
2534
+ }
2535
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,
2536
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,
2537
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow,
2538
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow {
2539
+ display: none;
2540
+ }
2541
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
2542
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
2543
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
2544
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
2545
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
2546
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
2547
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
2548
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
2549
+ position: absolute;
2550
+ top: 0;
2551
+ display: inline-block;
2552
+ padding: 0 5px;
2553
+ color: rgba(0, 0, 0, 0.45);
2554
+ font-size: 16px;
2555
+ font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
2556
+ line-height: 40px;
2557
+ }
2558
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
2559
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
2560
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn {
2561
+ left: 7px;
2562
+ height: 100%;
2563
+ }
2564
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::before,
2565
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::before,
2566
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::before,
2567
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
2568
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
2569
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
2570
+ position: relative;
2571
+ top: -1px;
2572
+ display: inline-block;
2573
+ width: 8px;
2574
+ height: 8px;
2575
+ vertical-align: middle;
2576
+ border: 0 solid #aaa;
2577
+ border-width: 1.5px 0 0 1.5px;
2578
+ border-radius: 1px;
2579
+ transform: rotate(-45deg) scale(0.8);
2580
+ transition: all 0.3s;
2581
+ content: '';
2582
+ }
2583
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::before,
2584
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::before,
2585
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::before,
2586
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::after,
2587
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::after,
2588
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::after {
2589
+ border-color: rgba(0, 0, 0, 0.65);
2590
+ }
2591
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
2592
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
2593
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
2594
+ display: none;
2595
+ }
2596
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
2597
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
2598
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
2599
+ position: relative;
2600
+ left: -3px;
2601
+ display: inline-block;
2602
+ }
2603
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
2604
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
2605
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
2606
+ right: 7px;
2607
+ height: 100%;
2608
+ }
2609
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
2610
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
2611
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before,
2612
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
2613
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
2614
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
2615
+ position: relative;
2616
+ top: -1px;
2617
+ display: inline-block;
2618
+ width: 8px;
2619
+ height: 8px;
2620
+ vertical-align: middle;
2621
+ border: 0 solid #aaa;
2622
+ border-width: 1.5px 0 0 1.5px;
2623
+ border-radius: 1px;
2624
+ transform: rotate(-45deg) scale(0.8);
2625
+ transition: all 0.3s;
2626
+ content: '';
2627
+ }
2628
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::before,
2629
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::before,
2630
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::before,
2631
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::after,
2632
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::after,
2633
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::after {
2634
+ border-color: rgba(0, 0, 0, 0.65);
2635
+ }
2636
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
2637
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
2638
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
2639
+ display: none;
2640
+ }
2641
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
2642
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
2643
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before,
2644
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
2645
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
2646
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
2647
+ transform: rotate(135deg) scale(0.8);
2648
+ }
2649
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
2650
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
2651
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before {
2652
+ position: relative;
2653
+ left: 3px;
2654
+ }
2655
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
2656
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
2657
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
2658
+ display: inline-block;
2659
+ }
2660
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn {
2661
+ left: 29px;
2662
+ height: 100%;
2663
+ }
2664
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::before,
2665
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after {
2666
+ position: relative;
2667
+ top: -1px;
2668
+ display: inline-block;
2669
+ width: 8px;
2670
+ height: 8px;
2671
+ vertical-align: middle;
2672
+ border: 0 solid #aaa;
2673
+ border-width: 1.5px 0 0 1.5px;
2674
+ border-radius: 1px;
2675
+ transform: rotate(-45deg) scale(0.8);
2676
+ transition: all 0.3s;
2677
+ content: '';
2678
+ }
2679
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::before,
2680
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::after {
2681
+ border-color: rgba(0, 0, 0, 0.65);
2682
+ }
2683
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after {
2684
+ display: none;
2685
+ }
2686
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn {
2687
+ right: 29px;
2688
+ height: 100%;
2689
+ }
2690
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before,
2691
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
2692
+ position: relative;
2693
+ top: -1px;
2694
+ display: inline-block;
2695
+ width: 8px;
2696
+ height: 8px;
2697
+ vertical-align: middle;
2698
+ border: 0 solid #aaa;
2699
+ border-width: 1.5px 0 0 1.5px;
2700
+ border-radius: 1px;
2701
+ transform: rotate(-45deg) scale(0.8);
2702
+ transition: all 0.3s;
2703
+ content: '';
2704
+ }
2705
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::before,
2706
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::after {
2707
+ border-color: rgba(0, 0, 0, 0.65);
2708
+ }
2709
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
2710
+ display: none;
2711
+ }
2712
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before,
2713
+ .ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
2714
+ transform: rotate(135deg) scale(0.8);
2715
+ }
2716
+ .ant-calendar-month-panel-body {
2717
+ flex: 1;
2718
+ }
2719
+ .ant-calendar-month-panel-footer {
2720
+ border-top: 1px solid #e8e8e8;
2721
+ }
2722
+ .ant-calendar-month-panel-footer .ant-calendar-footer-extra {
2723
+ padding: 0 12px;
2724
+ }
2725
+ .ant-calendar-month-panel-table {
2726
+ width: 100%;
2727
+ height: 100%;
2728
+ table-layout: fixed;
2729
+ border-collapse: separate;
2730
+ }
2731
+ .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
2732
+ color: #fff;
2733
+ background: #1890ff;
2734
+ }
2735
+ .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
2736
+ color: #fff;
2737
+ background: #1890ff;
2738
+ }
2739
+ .ant-calendar-month-panel-cell {
2740
+ text-align: center;
2741
+ }
2742
+ .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
2743
+ .ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
2744
+ color: rgba(0, 0, 0, 0.25);
2745
+ background: #f5f5f5;
2746
+ cursor: not-allowed;
2747
+ }
2748
+ .ant-calendar-month-panel-month {
2749
+ display: inline-block;
2750
+ height: 24px;
2751
+ margin: 0 auto;
2752
+ padding: 0 8px;
2753
+ color: rgba(0, 0, 0, 0.65);
2754
+ line-height: 24px;
2755
+ text-align: center;
2756
+ background: transparent;
2757
+ border-radius: 2px;
2758
+ transition: background 0.3s ease;
2759
+ }
2760
+ .ant-calendar-month-panel-month:hover {
2761
+ background: #e6f7ff;
2762
+ cursor: pointer;
2763
+ }
2764
+ .ant-calendar-year-panel {
2765
+ position: absolute;
2766
+ top: 0;
2767
+ right: 0;
2768
+ bottom: 0;
2769
+ left: 0;
2770
+ z-index: 10;
2771
+ background: #fff;
2772
+ border-radius: 4px;
2773
+ outline: none;
2774
+ }
2775
+ .ant-calendar-year-panel > div {
2776
+ display: flex;
2777
+ flex-direction: column;
2778
+ height: 100%;
2779
+ }
2780
+ .ant-calendar-year-panel-hidden {
2781
+ display: none;
2782
+ }
2783
+ .ant-calendar-year-panel-header {
2784
+ height: 40px;
2785
+ line-height: 40px;
2786
+ text-align: center;
2787
+ border-bottom: 1px solid #e8e8e8;
2788
+ user-select: none;
2789
+ position: relative;
2790
+ }
2791
+ .ant-calendar-year-panel-header a:hover {
2792
+ color: #40a9ff;
2793
+ }
2794
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
2795
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
2796
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
2797
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
2798
+ display: inline-block;
2799
+ padding: 0 2px;
2800
+ color: rgba(0, 0, 0, 0.85);
2801
+ font-weight: 500;
2802
+ line-height: 40px;
2803
+ }
2804
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,
2805
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,
2806
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow,
2807
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow {
2808
+ display: none;
2809
+ }
2810
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
2811
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
2812
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
2813
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
2814
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
2815
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
2816
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
2817
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
2818
+ position: absolute;
2819
+ top: 0;
2820
+ display: inline-block;
2821
+ padding: 0 5px;
2822
+ color: rgba(0, 0, 0, 0.45);
2823
+ font-size: 16px;
2824
+ font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
2825
+ line-height: 40px;
2826
+ }
2827
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
2828
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
2829
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn {
2830
+ left: 7px;
2831
+ height: 100%;
2832
+ }
2833
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::before,
2834
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::before,
2835
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::before,
2836
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
2837
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
2838
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
2839
+ position: relative;
2840
+ top: -1px;
2841
+ display: inline-block;
2842
+ width: 8px;
2843
+ height: 8px;
2844
+ vertical-align: middle;
2845
+ border: 0 solid #aaa;
2846
+ border-width: 1.5px 0 0 1.5px;
2847
+ border-radius: 1px;
2848
+ transform: rotate(-45deg) scale(0.8);
2849
+ transition: all 0.3s;
2850
+ content: '';
2851
+ }
2852
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::before,
2853
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::before,
2854
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::before,
2855
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::after,
2856
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::after,
2857
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::after {
2858
+ border-color: rgba(0, 0, 0, 0.65);
2859
+ }
2860
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
2861
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
2862
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
2863
+ display: none;
2864
+ }
2865
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
2866
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
2867
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
2868
+ position: relative;
2869
+ left: -3px;
2870
+ display: inline-block;
2871
+ }
2872
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
2873
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
2874
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
2875
+ right: 7px;
2876
+ height: 100%;
2877
+ }
2878
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
2879
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
2880
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before,
2881
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
2882
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
2883
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
2884
+ position: relative;
2885
+ top: -1px;
2886
+ display: inline-block;
2887
+ width: 8px;
2888
+ height: 8px;
2889
+ vertical-align: middle;
2890
+ border: 0 solid #aaa;
2891
+ border-width: 1.5px 0 0 1.5px;
2892
+ border-radius: 1px;
2893
+ transform: rotate(-45deg) scale(0.8);
2894
+ transition: all 0.3s;
2895
+ content: '';
2896
+ }
2897
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::before,
2898
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::before,
2899
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::before,
2900
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::after,
2901
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::after,
2902
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::after {
2903
+ border-color: rgba(0, 0, 0, 0.65);
2904
+ }
2905
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
2906
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
2907
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
2908
+ display: none;
2909
+ }
2910
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
2911
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
2912
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before,
2913
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
2914
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
2915
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
2916
+ transform: rotate(135deg) scale(0.8);
2917
+ }
2918
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
2919
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
2920
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before {
2921
+ position: relative;
2922
+ left: 3px;
2923
+ }
2924
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
2925
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
2926
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
2927
+ display: inline-block;
2928
+ }
2929
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn {
2930
+ left: 29px;
2931
+ height: 100%;
2932
+ }
2933
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::before,
2934
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after {
2935
+ position: relative;
2936
+ top: -1px;
2937
+ display: inline-block;
2938
+ width: 8px;
2939
+ height: 8px;
2940
+ vertical-align: middle;
2941
+ border: 0 solid #aaa;
2942
+ border-width: 1.5px 0 0 1.5px;
2943
+ border-radius: 1px;
2944
+ transform: rotate(-45deg) scale(0.8);
2945
+ transition: all 0.3s;
2946
+ content: '';
2947
+ }
2948
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::before,
2949
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::after {
2950
+ border-color: rgba(0, 0, 0, 0.65);
2951
+ }
2952
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after {
2953
+ display: none;
2954
+ }
2955
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn {
2956
+ right: 29px;
2957
+ height: 100%;
2958
+ }
2959
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before,
2960
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
2961
+ position: relative;
2962
+ top: -1px;
2963
+ display: inline-block;
2964
+ width: 8px;
2965
+ height: 8px;
2966
+ vertical-align: middle;
2967
+ border: 0 solid #aaa;
2968
+ border-width: 1.5px 0 0 1.5px;
2969
+ border-radius: 1px;
2970
+ transform: rotate(-45deg) scale(0.8);
2971
+ transition: all 0.3s;
2972
+ content: '';
2973
+ }
2974
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::before,
2975
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::after {
2976
+ border-color: rgba(0, 0, 0, 0.65);
2977
+ }
2978
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
2979
+ display: none;
2980
+ }
2981
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before,
2982
+ .ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
2983
+ transform: rotate(135deg) scale(0.8);
2984
+ }
2985
+ .ant-calendar-year-panel-body {
2986
+ flex: 1;
2987
+ }
2988
+ .ant-calendar-year-panel-footer {
2989
+ border-top: 1px solid #e8e8e8;
2990
+ }
2991
+ .ant-calendar-year-panel-footer .ant-calendar-footer-extra {
2992
+ padding: 0 12px;
2993
+ }
2994
+ .ant-calendar-year-panel-table {
2995
+ width: 100%;
2996
+ height: 100%;
2997
+ table-layout: fixed;
2998
+ border-collapse: separate;
2999
+ }
3000
+ .ant-calendar-year-panel-cell {
3001
+ text-align: center;
3002
+ }
3003
+ .ant-calendar-year-panel-cell-disabled .ant-calendar-year-panel-year,
3004
+ .ant-calendar-year-panel-cell-disabled .ant-calendar-year-panel-year:hover {
3005
+ color: rgba(0, 0, 0, 0.25);
3006
+ background: #f5f5f5;
3007
+ cursor: not-allowed;
3008
+ }
3009
+ .ant-calendar-year-panel-year {
3010
+ display: inline-block;
3011
+ height: 24px;
3012
+ margin: 0 auto;
3013
+ padding: 0 8px;
3014
+ color: rgba(0, 0, 0, 0.65);
3015
+ line-height: 24px;
3016
+ text-align: center;
3017
+ background: transparent;
3018
+ border-radius: 2px;
3019
+ transition: background 0.3s ease;
3020
+ }
3021
+ .ant-calendar-year-panel-year:hover {
3022
+ background: #e6f7ff;
3023
+ cursor: pointer;
3024
+ }
3025
+ .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
3026
+ color: #fff;
3027
+ background: #1890ff;
3028
+ }
3029
+ .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
3030
+ color: #fff;
3031
+ background: #1890ff;
3032
+ }
3033
+ .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
3034
+ .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
3035
+ color: rgba(0, 0, 0, 0.25);
3036
+ user-select: none;
3037
+ }
3038
+ .ant-calendar-decade-panel {
3039
+ position: absolute;
3040
+ top: 0;
3041
+ right: 0;
3042
+ bottom: 0;
3043
+ left: 0;
3044
+ z-index: 10;
3045
+ display: flex;
3046
+ flex-direction: column;
3047
+ background: #fff;
3048
+ border-radius: 4px;
3049
+ outline: none;
3050
+ }
3051
+ .ant-calendar-decade-panel-hidden {
3052
+ display: none;
3053
+ }
3054
+ .ant-calendar-decade-panel-header {
3055
+ height: 40px;
3056
+ line-height: 40px;
3057
+ text-align: center;
3058
+ border-bottom: 1px solid #e8e8e8;
3059
+ user-select: none;
3060
+ position: relative;
3061
+ }
3062
+ .ant-calendar-decade-panel-header a:hover {
3063
+ color: #40a9ff;
3064
+ }
3065
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
3066
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
3067
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
3068
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
3069
+ display: inline-block;
3070
+ padding: 0 2px;
3071
+ color: rgba(0, 0, 0, 0.85);
3072
+ font-weight: 500;
3073
+ line-height: 40px;
3074
+ }
3075
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,
3076
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,
3077
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow,
3078
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow {
3079
+ display: none;
3080
+ }
3081
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
3082
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
3083
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
3084
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
3085
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
3086
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
3087
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
3088
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
3089
+ position: absolute;
3090
+ top: 0;
3091
+ display: inline-block;
3092
+ padding: 0 5px;
3093
+ color: rgba(0, 0, 0, 0.45);
3094
+ font-size: 16px;
3095
+ font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
3096
+ line-height: 40px;
3097
+ }
3098
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
3099
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
3100
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn {
3101
+ left: 7px;
3102
+ height: 100%;
3103
+ }
3104
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::before,
3105
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::before,
3106
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::before,
3107
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
3108
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
3109
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
3110
+ position: relative;
3111
+ top: -1px;
3112
+ display: inline-block;
3113
+ width: 8px;
3114
+ height: 8px;
3115
+ vertical-align: middle;
3116
+ border: 0 solid #aaa;
3117
+ border-width: 1.5px 0 0 1.5px;
3118
+ border-radius: 1px;
3119
+ transform: rotate(-45deg) scale(0.8);
3120
+ transition: all 0.3s;
3121
+ content: '';
3122
+ }
3123
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::before,
3124
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::before,
3125
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::before,
3126
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::after,
3127
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::after,
3128
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::after {
3129
+ border-color: rgba(0, 0, 0, 0.65);
3130
+ }
3131
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
3132
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
3133
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
3134
+ display: none;
3135
+ }
3136
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
3137
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
3138
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
3139
+ position: relative;
3140
+ left: -3px;
3141
+ display: inline-block;
3142
+ }
3143
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
3144
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
3145
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
3146
+ right: 7px;
3147
+ height: 100%;
3148
+ }
3149
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
3150
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
3151
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before,
3152
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
3153
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
3154
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
3155
+ position: relative;
3156
+ top: -1px;
3157
+ display: inline-block;
3158
+ width: 8px;
3159
+ height: 8px;
3160
+ vertical-align: middle;
3161
+ border: 0 solid #aaa;
3162
+ border-width: 1.5px 0 0 1.5px;
3163
+ border-radius: 1px;
3164
+ transform: rotate(-45deg) scale(0.8);
3165
+ transition: all 0.3s;
3166
+ content: '';
3167
+ }
3168
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::before,
3169
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::before,
3170
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::before,
3171
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::after,
3172
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::after,
3173
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::after {
3174
+ border-color: rgba(0, 0, 0, 0.65);
3175
+ }
3176
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
3177
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
3178
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
3179
+ display: none;
3180
+ }
3181
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
3182
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
3183
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before,
3184
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
3185
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
3186
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
3187
+ transform: rotate(135deg) scale(0.8);
3188
+ }
3189
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
3190
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
3191
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before {
3192
+ position: relative;
3193
+ left: 3px;
3194
+ }
3195
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
3196
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
3197
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
3198
+ display: inline-block;
3199
+ }
3200
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn {
3201
+ left: 29px;
3202
+ height: 100%;
3203
+ }
3204
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::before,
3205
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after {
3206
+ position: relative;
3207
+ top: -1px;
3208
+ display: inline-block;
3209
+ width: 8px;
3210
+ height: 8px;
3211
+ vertical-align: middle;
3212
+ border: 0 solid #aaa;
3213
+ border-width: 1.5px 0 0 1.5px;
3214
+ border-radius: 1px;
3215
+ transform: rotate(-45deg) scale(0.8);
3216
+ transition: all 0.3s;
3217
+ content: '';
3218
+ }
3219
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::before,
3220
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::after {
3221
+ border-color: rgba(0, 0, 0, 0.65);
3222
+ }
3223
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after {
3224
+ display: none;
3225
+ }
3226
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn {
3227
+ right: 29px;
3228
+ height: 100%;
3229
+ }
3230
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before,
3231
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
3232
+ position: relative;
3233
+ top: -1px;
3234
+ display: inline-block;
3235
+ width: 8px;
3236
+ height: 8px;
3237
+ vertical-align: middle;
3238
+ border: 0 solid #aaa;
3239
+ border-width: 1.5px 0 0 1.5px;
3240
+ border-radius: 1px;
3241
+ transform: rotate(-45deg) scale(0.8);
3242
+ transition: all 0.3s;
3243
+ content: '';
3244
+ }
3245
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::before,
3246
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::after {
3247
+ border-color: rgba(0, 0, 0, 0.65);
3248
+ }
3249
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
3250
+ display: none;
3251
+ }
3252
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before,
3253
+ .ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
3254
+ transform: rotate(135deg) scale(0.8);
3255
+ }
3256
+ .ant-calendar-decade-panel-body {
3257
+ flex: 1;
3258
+ }
3259
+ .ant-calendar-decade-panel-footer {
3260
+ border-top: 1px solid #e8e8e8;
3261
+ }
3262
+ .ant-calendar-decade-panel-footer .ant-calendar-footer-extra {
3263
+ padding: 0 12px;
3264
+ }
3265
+ .ant-calendar-decade-panel-table {
3266
+ width: 100%;
3267
+ height: 100%;
3268
+ table-layout: fixed;
3269
+ border-collapse: separate;
3270
+ }
3271
+ .ant-calendar-decade-panel-cell {
3272
+ white-space: nowrap;
3273
+ text-align: center;
3274
+ }
3275
+ .ant-calendar-decade-panel-decade {
3276
+ display: inline-block;
3277
+ height: 24px;
3278
+ margin: 0 auto;
3279
+ padding: 0 6px;
3280
+ color: rgba(0, 0, 0, 0.65);
3281
+ line-height: 24px;
3282
+ text-align: center;
3283
+ background: transparent;
3284
+ border-radius: 2px;
3285
+ transition: background 0.3s ease;
3286
+ }
3287
+ .ant-calendar-decade-panel-decade:hover {
3288
+ background: #e6f7ff;
3289
+ cursor: pointer;
3290
+ }
3291
+ .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
3292
+ color: #fff;
3293
+ background: #1890ff;
3294
+ }
3295
+ .ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
3296
+ color: #fff;
3297
+ background: #1890ff;
3298
+ }
3299
+ .ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
3300
+ .ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
3301
+ color: rgba(0, 0, 0, 0.25);
3302
+ user-select: none;
3303
+ }
3304
+ .ant-calendar-month .ant-calendar-month-header-wrap {
3305
+ position: relative;
3306
+ height: 288px;
3307
+ }
3308
+ .ant-calendar-month .ant-calendar-month-panel,
3309
+ .ant-calendar-month .ant-calendar-year-panel {
3310
+ top: 0;
3311
+ height: 100%;
3312
+ }
3313
+ .ant-calendar-week-number-cell {
3314
+ opacity: 0.5;
3315
+ }
3316
+ .ant-calendar-week-number .ant-calendar-body tr {
3317
+ cursor: pointer;
3318
+ transition: all 0.3s;
3319
+ }
3320
+ .ant-calendar-week-number .ant-calendar-body tr:hover {
3321
+ background: #e6f7ff;
3322
+ }
3323
+ .ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week {
3324
+ font-weight: bold;
3325
+ background: #bae7ff;
3326
+ }
3327
+ .ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date,
3328
+ .ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date {
3329
+ color: rgba(0, 0, 0, 0.65);
3330
+ background: transparent;
3331
+ }
3332
+ .ant-calendar-presets {
3333
+ display: flex;
3334
+ flex-direction: column;
3335
+ min-width: 120px;
3336
+ max-height: 240px;
3337
+ overflow-y: auto;
3338
+ padding: 8px 0;
3339
+ border-right: 1px solid #e8e8e8;
3340
+ background: #fff;
3341
+ }
3342
+ .ant-calendar-presets-list {
3343
+ margin: 0;
3344
+ padding: 0;
3345
+ list-style: none;
3346
+ }
3347
+ .ant-calendar-presets-item {
3348
+ padding: 8px 12px;
3349
+ color: rgba(0, 0, 0, 0.65);
3350
+ cursor: pointer;
3351
+ transition: all 0.3s;
3352
+ }
3353
+ .ant-calendar-presets-item:hover {
3354
+ color: #1890ff;
3355
+ background: #e6f7ff;
3356
+ }
3357
+ .ant-calendar-presets-item-selected {
3358
+ color: #1890ff;
3359
+ font-weight: 500;
3360
+ background: #e6f7ff;
3361
+ }
3362
+ .ant-calendar-range-with-presets .ant-calendar-range-part {
3363
+ display: flex;
3364
+ }
3365
+ .ant-calendar-picker-container .ant-calendar-range-with-presets {
3366
+ display: flex;
3367
+ align-items: stretch;
3368
+ }
3369
+ .ant-calendar-range-quick-selector {
3370
+ display: flex;
3371
+ flex-wrap: wrap;
3372
+ gap: 8px;
3373
+ padding: 8px 12px;
3374
+ border-top: 1px solid #e8e8e8;
3375
+ }
3376
+ .ant-calendar-range-quick-selector a,
3377
+ .ant-calendar-range-quick-selector .ant-tag {
3378
+ cursor: pointer;
3379
+ }
3380
+ .ant-calendar-picker-status-error .ant-calendar-picker-input {
3381
+ border-color: #f5222d;
3382
+ }
3383
+ .ant-calendar-picker-status-error .ant-calendar-picker-input:hover {
3384
+ border-color: #f5222d;
3385
+ }
3386
+ .ant-calendar-picker-status-error .ant-calendar-picker-input:focus,
3387
+ .ant-calendar-picker-status-error .ant-calendar-picker-input.ant-calendar-picker-focused {
3388
+ border-color: #f5222d;
3389
+ box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
3390
+ outline: 0;
3391
+ }
3392
+ .ant-calendar-picker-status-warning .ant-calendar-picker-input {
3393
+ border-color: #faad14;
3394
+ }
3395
+ .ant-calendar-picker-status-warning .ant-calendar-picker-input:hover {
3396
+ border-color: #faad14;
3397
+ }
3398
+ .ant-calendar-picker-status-warning .ant-calendar-picker-input:focus,
3399
+ .ant-calendar-picker-status-warning .ant-calendar-picker-input.ant-calendar-picker-focused {
3400
+ border-color: #faad14;
3401
+ box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
3402
+ outline: 0;
3403
+ }
3404
+ .ant-calendar-picker-status-success .ant-calendar-picker-input {
3405
+ border-color: #52c41a;
3406
+ }
3407
+ .ant-calendar-picker-status-success .ant-calendar-picker-input:hover {
3408
+ border-color: #52c41a;
3409
+ }
3410
+ .ant-calendar-picker-status-success .ant-calendar-picker-input:focus,
3411
+ .ant-calendar-picker-status-success .ant-calendar-picker-input.ant-calendar-picker-focused {
3412
+ border-color: #52c41a;
3413
+ box-shadow: 0 0 0 2px rgba(82, 196, 26, 0.2);
3414
+ outline: 0;
3415
+ }
3416
+ .ant-calendar-picker-status-validating .ant-calendar-picker-input {
3417
+ border-color: #1890ff;
3418
+ }
3419
+ .ant-calendar-picker-status-validating .ant-calendar-picker-input:hover {
3420
+ border-color: #1890ff;
3421
+ }
3422
+ .ant-calendar-picker-status-validating .ant-calendar-picker-input:focus,
3423
+ .ant-calendar-picker-status-validating .ant-calendar-picker-input.ant-calendar-picker-focused {
3424
+ border-color: #1890ff;
3425
+ box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
3426
+ outline: 0;
3427
+ }
3428
+ .ant-calendar-picker-has-feedback .ant-calendar-picker-input {
3429
+ padding-right: 30px;
3430
+ }
3431
+ .ant-calendar-picker-borderless .ant-calendar-picker-input {
3432
+ border-color: transparent !important;
3433
+ background-color: transparent !important;
3434
+ box-shadow: none !important;
3435
+ }
3436
+ .ant-calendar-range-picker.ant-calendar-picker-status-error {
3437
+ background-color: transparent;
3438
+ }
3439
+ .ant-calendar-range-picker.ant-calendar-picker-status-error .ant-calendar-range-picker-input {
3440
+ border-color: #f5222d;
3441
+ }
3442
+ .ant-calendar-range-picker.ant-calendar-picker-status-error .ant-calendar-range-picker-input:focus {
3443
+ border-color: #f5222d;
3444
+ box-shadow: 0 0 0 2px rgba(245, 34, 45, 0.2);
3445
+ }
3446
+ .ant-calendar-range-picker.ant-calendar-picker-status-warning {
3447
+ background-color: transparent;
3448
+ }
3449
+ .ant-calendar-range-picker.ant-calendar-picker-status-warning .ant-calendar-range-picker-input {
3450
+ border-color: #faad14;
3451
+ }
3452
+ .ant-calendar-range-picker.ant-calendar-picker-status-warning .ant-calendar-range-picker-input:focus {
3453
+ border-color: #faad14;
3454
+ box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.2);
3455
+ }
3456
+ .ant-calendar-picker-input {
3457
+ transition: border-color 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
3458
+ }
3459
+ .ant-calendar-picker-clear {
3460
+ transition: color 0.3s, opacity 0.3s;
3461
+ }
3462
+ .ant-calendar-picker-icon {
3463
+ transition: color 0.3s;
3464
+ }
3465
+ .ant-calendar-date {
3466
+ transition: background 0.2s cubic-bezier(0.23, 1, 0.32, 1), color 0.2s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.2s cubic-bezier(0.23, 1, 0.32, 1);
3467
+ }
3468
+ .ant-calendar-cell {
3469
+ transition: background 0.2s;
3470
+ }
3471
+ .ant-calendar-in-range-cell::before {
3472
+ transition: background 0.2s cubic-bezier(0.23, 1, 0.32, 1);
3473
+ }
3474
+ .ant-calendar-header a {
3475
+ transition: color 0.3s;
3476
+ }
3477
+ .ant-calendar-body {
3478
+ transition: opacity 0.3s;
3479
+ }
3480
+ .ant-calendar-range-part {
3481
+ transition: opacity 0.3s;
3482
+ }
3483
+ .ant-calendar-range .ant-calendar-time-picker {
3484
+ transition: opacity 0.3s, visibility 0.3s;
3485
+ }
3486
+ .ant-calendar-range-picker-active-bar {
3487
+ transition: left 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), width 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.2s;
3488
+ }
3489
+ .ant-calendar-range-picker-input {
3490
+ transition: color 0.3s, background-color 0.3s;
3491
+ }
3492
+ .ant-calendar-range-picker-input-active {
3493
+ animation: rangePickerInputPulse 0.3s cubic-bezier(0.23, 1, 0.32, 1);
3494
+ }
3495
+ .ant-calendar-presets-item {
3496
+ transition: color 0.2s, background-color 0.2s;
3497
+ }
3498
+ .ant-calendar-picker-status-error .ant-calendar-picker-input,
3499
+ .ant-calendar-picker-status-warning .ant-calendar-picker-input,
3500
+ .ant-calendar-picker-status-success .ant-calendar-picker-input {
3501
+ transition: border-color 0.3s, box-shadow 0.3s;
3502
+ }
3503
+ .ant-calendar-picker-container.slide-up-enter,
3504
+ .ant-calendar-picker-container.slide-up-appear {
3505
+ animation-duration: 0.3s;
3506
+ animation-fill-mode: both;
3507
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
3508
+ opacity: 0;
3509
+ animation-play-state: paused;
3510
+ }
3511
+ .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active,
3512
+ .ant-calendar-picker-container.slide-up-appear.slide-up-appear-active {
3513
+ animation-play-state: running;
3514
+ }
3515
+ .ant-calendar-picker-container.slide-up-leave {
3516
+ animation-duration: 0.2s;
3517
+ animation-fill-mode: both;
3518
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
3519
+ animation-play-state: paused;
3520
+ }
3521
+ .ant-calendar-picker-container.slide-up-leave.slide-up-leave-active {
3522
+ animation-play-state: running;
3523
+ }
3524
+ @keyframes rangePickerInputPulse {
3525
+ 0% {
3526
+ transform: scale(1);
3527
+ }
3528
+ 50% {
3529
+ transform: scale(1.02);
3530
+ }
3531
+ 100% {
3532
+ transform: scale(1);
3533
+ }
3534
+ }
3535
+ @keyframes calendarFadeIn {
3536
+ from {
3537
+ opacity: 0;
3538
+ transform: translateY(-8px);
3539
+ }
3540
+ to {
3541
+ opacity: 1;
3542
+ transform: translateY(0);
3543
+ }
3544
+ }
3545
+ @keyframes selectedDatePulse {
3546
+ 0% {
3547
+ box-shadow: 0 0 0 0 rgba(24, 144, 255, 0.4);
3548
+ }
3549
+ 70% {
3550
+ box-shadow: 0 0 0 6px rgba(24, 144, 255, 0);
3551
+ }
3552
+ 100% {
3553
+ box-shadow: 0 0 0 0 rgba(24, 144, 255, 0);
3554
+ }
3555
+ }
3556
+ .ant-calendar-selected-start-date .ant-calendar-date,
3557
+ .ant-calendar-selected-end-date .ant-calendar-date {
3558
+ animation: selectedDatePulse 0.4s cubic-bezier(0.23, 1, 0.32, 1);
3559
+ }
3560
+