@zat-design/sisyphus-react 3.0.13

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