@tuya-sat/sdf-main-sdk 0.0.1-beta.1

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 (147) hide show
  1. package/.vscode/settings.json +5 -0
  2. package/README.md +1 -0
  3. package/antd.less.overwrite.js +56 -0
  4. package/color.js +140 -0
  5. package/dark-variable.less +1449 -0
  6. package/package.json +74 -0
  7. package/scripts/gen-localize-file.mjs +56 -0
  8. package/src/App.less +156 -0
  9. package/src/App.tsx +87 -0
  10. package/src/api/index.ts +52 -0
  11. package/src/api/req.ts +23 -0
  12. package/src/api/res.ts +29 -0
  13. package/src/api/urls.ts +30 -0
  14. package/src/api/utils.ts +41 -0
  15. package/src/assets/imgs/404.svg +194 -0
  16. package/src/assets/imgs/reLogin.png +0 -0
  17. package/src/components/404/index.tsx +44 -0
  18. package/src/components/500/index.tsx +49 -0
  19. package/src/components/BCustomNav/index.module.less +17 -0
  20. package/src/components/BCustomNav/index.tsx +108 -0
  21. package/src/components/BForgot/index.module.less +5 -0
  22. package/src/components/BForgot/index.tsx +96 -0
  23. package/src/components/BHeaderUser/account.png +0 -0
  24. package/src/components/BHeaderUser/app-scan-en.png +0 -0
  25. package/src/components/BHeaderUser/app-scan-zh.png +0 -0
  26. package/src/components/BHeaderUser/app-scan.png +0 -0
  27. package/src/components/BHeaderUser/components/BSwitchLang/index.module.less +6 -0
  28. package/src/components/BHeaderUser/components/BSwitchLang/index.tsx +56 -0
  29. package/src/components/BHeaderUser/components/Badge/components/Notice/Drawer/Content.tsx +199 -0
  30. package/src/components/BHeaderUser/components/Badge/components/Notice/Drawer/index.module.less +11 -0
  31. package/src/components/BHeaderUser/components/Badge/components/Notice/Drawer/index.tsx +27 -0
  32. package/src/components/BHeaderUser/components/Badge/components/Notice/hooks.ts +104 -0
  33. package/src/components/BHeaderUser/components/Badge/components/Notice/index.module.less +70 -0
  34. package/src/components/BHeaderUser/components/Badge/components/Notice/index.tsx +184 -0
  35. package/src/components/BHeaderUser/components/Badge/components/Notice/table/index.tsx +184 -0
  36. package/src/components/BHeaderUser/components/Badge/components/Notice/table/read.tsx +67 -0
  37. package/src/components/BHeaderUser/components/Badge/components/Notice/tools/index.tsx +116 -0
  38. package/src/components/BHeaderUser/components/Badge/index.module.less +99 -0
  39. package/src/components/BHeaderUser/components/Badge/index.tsx +179 -0
  40. package/src/components/BHeaderUser/index.module.less +105 -0
  41. package/src/components/BHeaderUser/index.tsx +261 -0
  42. package/src/components/BHeaderUser/logout.tsx +26 -0
  43. package/src/components/BLayout/components/Header/index.module.less +27 -0
  44. package/src/components/BLayout/components/Header/index.tsx +36 -0
  45. package/src/components/BLayout/components/Layout/empty.tsx +35 -0
  46. package/src/components/BLayout/components/Layout/emptyPage.png +0 -0
  47. package/src/components/BLayout/components/Layout/index.tsx +72 -0
  48. package/src/components/BLayout/components/Logo.tsx +6 -0
  49. package/src/components/BLayout/components/Menu/collapse.tsx +41 -0
  50. package/src/components/BLayout/components/Menu/image/close.tsx +26 -0
  51. package/src/components/BLayout/components/Menu/image/closedefault.tsx +26 -0
  52. package/src/components/BLayout/components/Menu/image/open.tsx +38 -0
  53. package/src/components/BLayout/components/Menu/image/opendefault.tsx +38 -0
  54. package/src/components/BLayout/components/Menu/index.module.less +125 -0
  55. package/src/components/BLayout/components/Menu/index.tsx +244 -0
  56. package/src/components/BLayout/components/MenuIcon.module.less +5 -0
  57. package/src/components/BLayout/components/MenuIcon.tsx +46 -0
  58. package/src/components/BLayout/components/MultiSider/index.module.less +104 -0
  59. package/src/components/BLayout/components/MultiSider/index.tsx +172 -0
  60. package/src/components/BLayout/components/Sider/index.less +64 -0
  61. package/src/components/BLayout/components/Sider/index.module.less +17 -0
  62. package/src/components/BLayout/components/Sider/index.tsx +34 -0
  63. package/src/components/BLayout/index.tsx +78 -0
  64. package/src/components/BLayoutLogin/index.module.less +65 -0
  65. package/src/components/BLayoutLogin/index.tsx +68 -0
  66. package/src/components/BLayoutLogin/login.jpg +0 -0
  67. package/src/components/BLogin/component/Clause/index.module.less +25 -0
  68. package/src/components/BLogin/component/Clause/index.tsx +58 -0
  69. package/src/components/BLogin/component/ForgotBtn/index.module.less +9 -0
  70. package/src/components/BLogin/component/ForgotBtn/index.tsx +18 -0
  71. package/src/components/BLogin/component/Password/index.tsx +39 -0
  72. package/src/components/BLogin/component/SubmitBtn/index.tsx +30 -0
  73. package/src/components/BLogin/component/TenanSpace/index.tsx +28 -0
  74. package/src/components/BLogin/component/Title/index.module.less +6 -0
  75. package/src/components/BLogin/component/Title/index.tsx +12 -0
  76. package/src/components/BLogin/component/UserName/index.tsx +48 -0
  77. package/src/components/BLogin/component/VerifyCode/index.module.less +11 -0
  78. package/src/components/BLogin/component/VerifyCode/index.tsx +165 -0
  79. package/src/components/BLogin/index.module.less +31 -0
  80. package/src/components/BLogin/index.tsx +210 -0
  81. package/src/components/BRegister/components/TenantName/index.tsx +26 -0
  82. package/src/components/BRegister/index.module.less +5 -0
  83. package/src/components/BRegister/index.tsx +71 -0
  84. package/src/components/Back/index.tsx +25 -0
  85. package/src/components/IconFont/font.js +66 -0
  86. package/src/components/IconFont/index.tsx +18 -0
  87. package/src/components/MicroComponent/Header/index.module.less +7 -0
  88. package/src/components/MicroComponent/Header/index.tsx +220 -0
  89. package/src/components/PForgot/index.tsx +10 -0
  90. package/src/components/PLogin/index.tsx +12 -0
  91. package/src/components/PRegister/index.tsx +10 -0
  92. package/src/components/PSetting/index.module.less +53 -0
  93. package/src/components/PSetting/index.tsx +420 -0
  94. package/src/constant/chargeStatus.ts +6 -0
  95. package/src/constant/imgs.ts +6 -0
  96. package/src/constant/index.ts +293 -0
  97. package/src/dark-variable.less +1449 -0
  98. package/src/global.d.ts +54 -0
  99. package/src/hooks/index.ts +133 -0
  100. package/src/index.css +1493 -0
  101. package/src/index.tsx +105 -0
  102. package/src/lang/en.json +266 -0
  103. package/src/lang/index.ts +44 -0
  104. package/src/lang/utils.ts +285 -0
  105. package/src/lang/zh.json +270 -0
  106. package/src/micro-script/theme/index.ts +29 -0
  107. package/src/micro-script/theme/theme-css/static.js +73 -0
  108. package/src/micro-script/theme/theme-css/subscriber.ts +201 -0
  109. package/src/micro-script/theme/util/index.ts +58 -0
  110. package/src/mqtt/index.ts +121 -0
  111. package/src/pages/403.tsx +18 -0
  112. package/src/pages/404.tsx +17 -0
  113. package/src/pages/expiration.tsx +23 -0
  114. package/src/pages/forgot.tsx +9 -0
  115. package/src/pages/home/index.tsx +172 -0
  116. package/src/pages/home/setting/index.tsx +7 -0
  117. package/src/pages/index.ts +50 -0
  118. package/src/pages/login.tsx +46 -0
  119. package/src/pages/register.tsx +9 -0
  120. package/src/pages/relogin/index.module.less +0 -0
  121. package/src/pages/relogin/index.tsx +54 -0
  122. package/src/plugins/index.ts +11 -0
  123. package/src/public-path.js +8 -0
  124. package/src/qiankun/globalState.ts +6 -0
  125. package/src/qiankun/index.ts +174 -0
  126. package/src/qiankun/utils/index.ts +69 -0
  127. package/src/qiankun/xhook/index.ts +193 -0
  128. package/src/reportWebVitals.ts +15 -0
  129. package/src/sentry/index.ts +33 -0
  130. package/src/sky/index.ts +57 -0
  131. package/src/theme/custom-dark.less +64 -0
  132. package/src/theme/custom-light.less +48 -0
  133. package/src/theme/index.less +327 -0
  134. package/src/theme/variable.less +13 -0
  135. package/src/utils/checkPass.ts +21 -0
  136. package/src/utils/common.ts +195 -0
  137. package/src/utils/eventBus.ts +112 -0
  138. package/src/utils/gt.js +293 -0
  139. package/src/utils/index.ts +89 -0
  140. package/src/utils/theme/base.ts +110 -0
  141. package/src/utils/theme/changeCssVariable.ts +157 -0
  142. package/src/utils/theme/changeMenuCssVariable.ts +176 -0
  143. package/src/utils/theme/index.ts +85 -0
  144. package/src/utils/theme/store.ts +37 -0
  145. package/tsconfig.json +28 -0
  146. package/typings.d.ts +10 -0
  147. package/webpack.config.js +103 -0
package/src/index.css ADDED
@@ -0,0 +1,1493 @@
1
+ body {
2
+ min-width: 1200px;
3
+ margin: 0;
4
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
5
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
6
+ sans-serif;
7
+ -webkit-font-smoothing: antialiased;
8
+ -moz-osx-font-smoothing: grayscale;
9
+ }
10
+ body.dark .main-app-menu-group-title {
11
+ height: 47px;
12
+ }
13
+ body.light .main-app-menu-group-title {
14
+ height: 48px;
15
+ }
16
+
17
+ code {
18
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
19
+ monospace;
20
+ }
21
+ :root {
22
+ color-scheme: light dark;
23
+ }
24
+
25
+ .ant-message {
26
+ box-sizing: border-box;
27
+ margin: 0;
28
+ padding: 0;
29
+ color: rgba(0, 0, 0, 0.85);
30
+ font-size: 14px;
31
+ font-variant: tabular-nums;
32
+ line-height: 1.5715;
33
+ list-style: none;
34
+ font-feature-settings: 'tnum';
35
+ position: fixed;
36
+ top: 8px;
37
+ left: 0;
38
+ z-index: 1010;
39
+ width: 100%;
40
+ pointer-events: none;
41
+ }
42
+ .ant-message-notice {
43
+ padding: 8px;
44
+ text-align: center;
45
+ }
46
+ .ant-message-notice-content {
47
+ display: inline-block;
48
+ padding: 10px 16px;
49
+ background: #fff;
50
+ border-radius: 2px;
51
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
52
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
53
+ pointer-events: all;
54
+ }
55
+ .ant-message-success .anticon {
56
+ color: #52c41a;
57
+ }
58
+ .ant-message-error .anticon {
59
+ color: #ff4d4f;
60
+ }
61
+ .ant-message-warning .anticon {
62
+ color: #faad14;
63
+ }
64
+ .ant-message-info .anticon,
65
+ .ant-message-loading .anticon {
66
+ color: #1890ff;
67
+ }
68
+ .ant-message .anticon {
69
+ position: relative;
70
+ top: 1px;
71
+ margin-right: 8px;
72
+ font-size: 16px;
73
+ }
74
+ .ant-message-notice.move-up-leave.move-up-leave-active {
75
+ -webkit-animation-name: MessageMoveOut;
76
+ animation-name: MessageMoveOut;
77
+ -webkit-animation-duration: 0.3s;
78
+ animation-duration: 0.3s;
79
+ }
80
+ @-webkit-keyframes MessageMoveOut {
81
+ 0% {
82
+ max-height: 150px;
83
+ padding: 8px;
84
+ opacity: 1;
85
+ }
86
+ 100% {
87
+ max-height: 0;
88
+ padding: 0;
89
+ opacity: 0;
90
+ }
91
+ }
92
+ @keyframes MessageMoveOut {
93
+ 0% {
94
+ max-height: 150px;
95
+ padding: 8px;
96
+ opacity: 1;
97
+ }
98
+ 100% {
99
+ max-height: 0;
100
+ padding: 0;
101
+ opacity: 0;
102
+ }
103
+ }
104
+ .ant-message-rtl {
105
+ direction: rtl;
106
+ }
107
+ .ant-message-rtl span {
108
+ direction: rtl;
109
+ }
110
+ .ant-message-rtl .anticon {
111
+ margin-right: 0;
112
+ margin-left: 8px;
113
+ }
114
+
115
+ .ant-notification {
116
+ box-sizing: border-box;
117
+ margin: 0;
118
+ padding: 0;
119
+ color: rgba(0, 0, 0, 0.85);
120
+ font-size: 14px;
121
+ font-variant: tabular-nums;
122
+ line-height: 1.5715;
123
+ list-style: none;
124
+ font-feature-settings: 'tnum';
125
+ position: fixed;
126
+ z-index: 1010;
127
+ margin-right: 24px;
128
+ }
129
+ .ant-notification-topLeft,
130
+ .ant-notification-bottomLeft {
131
+ margin-right: 0;
132
+ margin-left: 24px;
133
+ }
134
+ .ant-notification-topLeft
135
+ .ant-notification-fade-enter.ant-notification-fade-enter-active,
136
+ .ant-notification-bottomLeft
137
+ .ant-notification-fade-enter.ant-notification-fade-enter-active,
138
+ .ant-notification-topLeft
139
+ .ant-notification-fade-appear.ant-notification-fade-appear-active,
140
+ .ant-notification-bottomLeft
141
+ .ant-notification-fade-appear.ant-notification-fade-appear-active {
142
+ -webkit-animation-name: NotificationLeftFadeIn;
143
+ animation-name: NotificationLeftFadeIn;
144
+ }
145
+ .ant-notification-close-icon {
146
+ font-size: 14px;
147
+ cursor: pointer;
148
+ }
149
+ .ant-notification-hook-holder,
150
+ .ant-notification-notice {
151
+ position: relative;
152
+ width: 384px;
153
+ max-width: calc(100vw - 24px * 2);
154
+ margin-bottom: 16px;
155
+ margin-left: auto;
156
+ overflow: hidden;
157
+ word-wrap: break-word;
158
+ background: #fff;
159
+ border-radius: 2px;
160
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
161
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
162
+ }
163
+ .ant-notification-topLeft .ant-notification-hook-holder,
164
+ .ant-notification-topLeft .ant-notification-notice,
165
+ .ant-notification-bottomLeft .ant-notification-hook-holder,
166
+ .ant-notification-bottomLeft .ant-notification-notice {
167
+ margin-right: auto;
168
+ margin-left: 0;
169
+ }
170
+ .ant-notification-hook-holder > .ant-notification-notice {
171
+ margin-bottom: 0;
172
+ box-shadow: none;
173
+ }
174
+ .ant-notification-notice {
175
+ padding: 16px 24px;
176
+ line-height: 1.5715;
177
+ }
178
+ .ant-notification-notice-message {
179
+ margin-bottom: 8px;
180
+ color: rgba(0, 0, 0, 0.85);
181
+ font-size: 16px;
182
+ line-height: 24px;
183
+ }
184
+ .ant-notification-notice-message-single-line-auto-margin {
185
+ display: block;
186
+ width: calc(384px - 24px * 2 - 24px - 48px - 100%);
187
+ max-width: 4px;
188
+ background-color: transparent;
189
+ pointer-events: none;
190
+ }
191
+ .ant-notification-notice-message-single-line-auto-margin::before {
192
+ display: block;
193
+ content: '';
194
+ }
195
+ .ant-notification-notice-description {
196
+ font-size: 14px;
197
+ }
198
+ .ant-notification-notice-closable .ant-notification-notice-message {
199
+ padding-right: 24px;
200
+ }
201
+ .ant-notification-notice-with-icon .ant-notification-notice-message {
202
+ margin-bottom: 4px;
203
+ margin-left: 48px;
204
+ font-size: 16px;
205
+ }
206
+ .ant-notification-notice-with-icon .ant-notification-notice-description {
207
+ margin-left: 48px;
208
+ font-size: 14px;
209
+ }
210
+ .ant-notification-notice-icon {
211
+ position: absolute;
212
+ margin-left: 4px;
213
+ font-size: 24px;
214
+ line-height: 24px;
215
+ }
216
+ .anticon.ant-notification-notice-icon-success {
217
+ color: #52c41a;
218
+ }
219
+ .anticon.ant-notification-notice-icon-info {
220
+ color: #1890ff;
221
+ }
222
+ .anticon.ant-notification-notice-icon-warning {
223
+ color: #faad14;
224
+ }
225
+ .anticon.ant-notification-notice-icon-error {
226
+ color: #ff4d4f;
227
+ }
228
+ .ant-notification-notice-close {
229
+ position: absolute;
230
+ top: 16px;
231
+ right: 22px;
232
+ color: rgba(0, 0, 0, 0.45);
233
+ outline: none;
234
+ }
235
+ .ant-notification-notice-close:hover {
236
+ color: rgba(0, 0, 0, 0.67);
237
+ }
238
+ .ant-notification-notice-btn {
239
+ float: right;
240
+ margin-top: 16px;
241
+ }
242
+ .ant-notification .notification-fade-effect {
243
+ -webkit-animation-duration: 0.24s;
244
+ animation-duration: 0.24s;
245
+ -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
246
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
247
+ -webkit-animation-fill-mode: both;
248
+ animation-fill-mode: both;
249
+ }
250
+ .ant-notification-fade-enter,
251
+ .ant-notification-fade-appear {
252
+ -webkit-animation-duration: 0.24s;
253
+ animation-duration: 0.24s;
254
+ -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
255
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
256
+ -webkit-animation-fill-mode: both;
257
+ animation-fill-mode: both;
258
+ opacity: 0;
259
+ -webkit-animation-play-state: paused;
260
+ animation-play-state: paused;
261
+ }
262
+ .ant-notification-fade-leave {
263
+ -webkit-animation-duration: 0.24s;
264
+ animation-duration: 0.24s;
265
+ -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
266
+ animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
267
+ -webkit-animation-fill-mode: both;
268
+ animation-fill-mode: both;
269
+ -webkit-animation-duration: 0.2s;
270
+ animation-duration: 0.2s;
271
+ -webkit-animation-play-state: paused;
272
+ animation-play-state: paused;
273
+ }
274
+ .ant-notification-fade-enter.ant-notification-fade-enter-active,
275
+ .ant-notification-fade-appear.ant-notification-fade-appear-active {
276
+ -webkit-animation-name: NotificationFadeIn;
277
+ animation-name: NotificationFadeIn;
278
+ -webkit-animation-play-state: running;
279
+ animation-play-state: running;
280
+ }
281
+ .ant-notification-fade-leave.ant-notification-fade-leave-active {
282
+ -webkit-animation-name: NotificationFadeOut;
283
+ animation-name: NotificationFadeOut;
284
+ -webkit-animation-play-state: running;
285
+ animation-play-state: running;
286
+ }
287
+ @-webkit-keyframes NotificationFadeIn {
288
+ 0% {
289
+ left: 384px;
290
+ opacity: 0;
291
+ }
292
+ 100% {
293
+ left: 0;
294
+ opacity: 1;
295
+ }
296
+ }
297
+ @keyframes NotificationFadeIn {
298
+ 0% {
299
+ left: 384px;
300
+ opacity: 0;
301
+ }
302
+ 100% {
303
+ left: 0;
304
+ opacity: 1;
305
+ }
306
+ }
307
+ @-webkit-keyframes NotificationLeftFadeIn {
308
+ 0% {
309
+ right: 384px;
310
+ opacity: 0;
311
+ }
312
+ 100% {
313
+ right: 0;
314
+ opacity: 1;
315
+ }
316
+ }
317
+ @keyframes NotificationLeftFadeIn {
318
+ 0% {
319
+ right: 384px;
320
+ opacity: 0;
321
+ }
322
+ 100% {
323
+ right: 0;
324
+ opacity: 1;
325
+ }
326
+ }
327
+ @-webkit-keyframes NotificationFadeOut {
328
+ 0% {
329
+ max-height: 150px;
330
+ margin-bottom: 16px;
331
+ opacity: 1;
332
+ }
333
+ 100% {
334
+ max-height: 0;
335
+ margin-bottom: 0;
336
+ padding-top: 0;
337
+ padding-bottom: 0;
338
+ opacity: 0;
339
+ }
340
+ }
341
+ @keyframes NotificationFadeOut {
342
+ 0% {
343
+ max-height: 150px;
344
+ margin-bottom: 16px;
345
+ opacity: 1;
346
+ }
347
+ 100% {
348
+ max-height: 0;
349
+ margin-bottom: 0;
350
+ padding-top: 0;
351
+ padding-bottom: 0;
352
+ opacity: 0;
353
+ }
354
+ }
355
+ .ant-notification-rtl {
356
+ direction: rtl;
357
+ }
358
+ .ant-notification-rtl
359
+ .ant-notification-notice-closable
360
+ .ant-notification-notice-message {
361
+ padding-right: 0;
362
+ padding-left: 24px;
363
+ }
364
+ .ant-notification-rtl
365
+ .ant-notification-notice-with-icon
366
+ .ant-notification-notice-message {
367
+ margin-right: 48px;
368
+ margin-left: 0;
369
+ }
370
+ .ant-notification-rtl
371
+ .ant-notification-notice-with-icon
372
+ .ant-notification-notice-description {
373
+ margin-right: 48px;
374
+ margin-left: 0;
375
+ }
376
+ .ant-notification-rtl .ant-notification-notice-icon {
377
+ margin-right: 4px;
378
+ margin-left: 0;
379
+ }
380
+ .ant-notification-rtl .ant-notification-notice-close {
381
+ right: auto;
382
+ left: 22px;
383
+ }
384
+ .ant-notification-rtl .ant-notification-notice-btn {
385
+ float: left;
386
+ }
387
+
388
+ .ant-move-up-enter,
389
+ .ant-move-up-appear {
390
+ -webkit-animation-duration: 0.2s;
391
+ animation-duration: 0.2s;
392
+ -webkit-animation-fill-mode: both;
393
+ animation-fill-mode: both;
394
+ -webkit-animation-play-state: paused;
395
+ animation-play-state: paused;
396
+ }
397
+ .ant-move-up-leave {
398
+ -webkit-animation-duration: 0.2s;
399
+ animation-duration: 0.2s;
400
+ -webkit-animation-fill-mode: both;
401
+ animation-fill-mode: both;
402
+ -webkit-animation-play-state: paused;
403
+ animation-play-state: paused;
404
+ }
405
+ .ant-move-up-enter.ant-move-up-enter-active,
406
+ .ant-move-up-appear.ant-move-up-appear-active {
407
+ -webkit-animation-name: antMoveUpIn;
408
+ animation-name: antMoveUpIn;
409
+ -webkit-animation-play-state: running;
410
+ animation-play-state: running;
411
+ }
412
+ .ant-move-up-leave.ant-move-up-leave-active {
413
+ -webkit-animation-name: antMoveUpOut;
414
+ animation-name: antMoveUpOut;
415
+ -webkit-animation-play-state: running;
416
+ animation-play-state: running;
417
+ pointer-events: none;
418
+ }
419
+ .ant-move-up-enter,
420
+ .ant-move-up-appear {
421
+ opacity: 0;
422
+ -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
423
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
424
+ }
425
+ .ant-move-up-leave {
426
+ -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
427
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
428
+ }
429
+ .ant-move-down-enter,
430
+ .ant-move-down-appear {
431
+ -webkit-animation-duration: 0.2s;
432
+ animation-duration: 0.2s;
433
+ -webkit-animation-fill-mode: both;
434
+ animation-fill-mode: both;
435
+ -webkit-animation-play-state: paused;
436
+ animation-play-state: paused;
437
+ }
438
+ .ant-move-down-leave {
439
+ -webkit-animation-duration: 0.2s;
440
+ animation-duration: 0.2s;
441
+ -webkit-animation-fill-mode: both;
442
+ animation-fill-mode: both;
443
+ -webkit-animation-play-state: paused;
444
+ animation-play-state: paused;
445
+ }
446
+ .ant-move-down-enter.ant-move-down-enter-active,
447
+ .ant-move-down-appear.ant-move-down-appear-active {
448
+ -webkit-animation-name: antMoveDownIn;
449
+ animation-name: antMoveDownIn;
450
+ -webkit-animation-play-state: running;
451
+ animation-play-state: running;
452
+ }
453
+ .ant-move-down-leave.ant-move-down-leave-active {
454
+ -webkit-animation-name: antMoveDownOut;
455
+ animation-name: antMoveDownOut;
456
+ -webkit-animation-play-state: running;
457
+ animation-play-state: running;
458
+ pointer-events: none;
459
+ }
460
+ .ant-move-down-enter,
461
+ .ant-move-down-appear {
462
+ opacity: 0;
463
+ -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
464
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
465
+ }
466
+ .ant-move-down-leave {
467
+ -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
468
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
469
+ }
470
+ .ant-move-left-enter,
471
+ .ant-move-left-appear {
472
+ -webkit-animation-duration: 0.2s;
473
+ animation-duration: 0.2s;
474
+ -webkit-animation-fill-mode: both;
475
+ animation-fill-mode: both;
476
+ -webkit-animation-play-state: paused;
477
+ animation-play-state: paused;
478
+ }
479
+ .ant-move-left-leave {
480
+ -webkit-animation-duration: 0.2s;
481
+ animation-duration: 0.2s;
482
+ -webkit-animation-fill-mode: both;
483
+ animation-fill-mode: both;
484
+ -webkit-animation-play-state: paused;
485
+ animation-play-state: paused;
486
+ }
487
+ .ant-move-left-enter.ant-move-left-enter-active,
488
+ .ant-move-left-appear.ant-move-left-appear-active {
489
+ -webkit-animation-name: antMoveLeftIn;
490
+ animation-name: antMoveLeftIn;
491
+ -webkit-animation-play-state: running;
492
+ animation-play-state: running;
493
+ }
494
+ .ant-move-left-leave.ant-move-left-leave-active {
495
+ -webkit-animation-name: antMoveLeftOut;
496
+ animation-name: antMoveLeftOut;
497
+ -webkit-animation-play-state: running;
498
+ animation-play-state: running;
499
+ pointer-events: none;
500
+ }
501
+ .ant-move-left-enter,
502
+ .ant-move-left-appear {
503
+ opacity: 0;
504
+ -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
505
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
506
+ }
507
+ .ant-move-left-leave {
508
+ -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
509
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
510
+ }
511
+ .ant-move-right-enter,
512
+ .ant-move-right-appear {
513
+ -webkit-animation-duration: 0.2s;
514
+ animation-duration: 0.2s;
515
+ -webkit-animation-fill-mode: both;
516
+ animation-fill-mode: both;
517
+ -webkit-animation-play-state: paused;
518
+ animation-play-state: paused;
519
+ }
520
+ .ant-move-right-leave {
521
+ -webkit-animation-duration: 0.2s;
522
+ animation-duration: 0.2s;
523
+ -webkit-animation-fill-mode: both;
524
+ animation-fill-mode: both;
525
+ -webkit-animation-play-state: paused;
526
+ animation-play-state: paused;
527
+ }
528
+ .ant-move-right-enter.ant-move-right-enter-active,
529
+ .ant-move-right-appear.ant-move-right-appear-active {
530
+ -webkit-animation-name: antMoveRightIn;
531
+ animation-name: antMoveRightIn;
532
+ -webkit-animation-play-state: running;
533
+ animation-play-state: running;
534
+ }
535
+ .ant-move-right-leave.ant-move-right-leave-active {
536
+ -webkit-animation-name: antMoveRightOut;
537
+ animation-name: antMoveRightOut;
538
+ -webkit-animation-play-state: running;
539
+ animation-play-state: running;
540
+ pointer-events: none;
541
+ }
542
+ .ant-move-right-enter,
543
+ .ant-move-right-appear {
544
+ opacity: 0;
545
+ -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
546
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
547
+ }
548
+ .ant-move-right-leave {
549
+ -webkit-animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
550
+ animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
551
+ }
552
+ @-webkit-keyframes antMoveDownIn {
553
+ 0% {
554
+ transform: translateY(100%);
555
+ transform-origin: 0 0;
556
+ opacity: 0;
557
+ }
558
+ 100% {
559
+ transform: translateY(0%);
560
+ transform-origin: 0 0;
561
+ opacity: 1;
562
+ }
563
+ }
564
+ @keyframes antMoveDownIn {
565
+ 0% {
566
+ transform: translateY(100%);
567
+ transform-origin: 0 0;
568
+ opacity: 0;
569
+ }
570
+ 100% {
571
+ transform: translateY(0%);
572
+ transform-origin: 0 0;
573
+ opacity: 1;
574
+ }
575
+ }
576
+ @-webkit-keyframes antMoveDownOut {
577
+ 0% {
578
+ transform: translateY(0%);
579
+ transform-origin: 0 0;
580
+ opacity: 1;
581
+ }
582
+ 100% {
583
+ transform: translateY(100%);
584
+ transform-origin: 0 0;
585
+ opacity: 0;
586
+ }
587
+ }
588
+ @keyframes antMoveDownOut {
589
+ 0% {
590
+ transform: translateY(0%);
591
+ transform-origin: 0 0;
592
+ opacity: 1;
593
+ }
594
+ 100% {
595
+ transform: translateY(100%);
596
+ transform-origin: 0 0;
597
+ opacity: 0;
598
+ }
599
+ }
600
+ @-webkit-keyframes antMoveLeftIn {
601
+ 0% {
602
+ transform: translateX(-100%);
603
+ transform-origin: 0 0;
604
+ opacity: 0;
605
+ }
606
+ 100% {
607
+ transform: translateX(0%);
608
+ transform-origin: 0 0;
609
+ opacity: 1;
610
+ }
611
+ }
612
+ @keyframes antMoveLeftIn {
613
+ 0% {
614
+ transform: translateX(-100%);
615
+ transform-origin: 0 0;
616
+ opacity: 0;
617
+ }
618
+ 100% {
619
+ transform: translateX(0%);
620
+ transform-origin: 0 0;
621
+ opacity: 1;
622
+ }
623
+ }
624
+ @-webkit-keyframes antMoveLeftOut {
625
+ 0% {
626
+ transform: translateX(0%);
627
+ transform-origin: 0 0;
628
+ opacity: 1;
629
+ }
630
+ 100% {
631
+ transform: translateX(-100%);
632
+ transform-origin: 0 0;
633
+ opacity: 0;
634
+ }
635
+ }
636
+ @keyframes antMoveLeftOut {
637
+ 0% {
638
+ transform: translateX(0%);
639
+ transform-origin: 0 0;
640
+ opacity: 1;
641
+ }
642
+ 100% {
643
+ transform: translateX(-100%);
644
+ transform-origin: 0 0;
645
+ opacity: 0;
646
+ }
647
+ }
648
+ @-webkit-keyframes antMoveRightIn {
649
+ 0% {
650
+ transform: translateX(100%);
651
+ transform-origin: 0 0;
652
+ opacity: 0;
653
+ }
654
+ 100% {
655
+ transform: translateX(0%);
656
+ transform-origin: 0 0;
657
+ opacity: 1;
658
+ }
659
+ }
660
+ @keyframes antMoveRightIn {
661
+ 0% {
662
+ transform: translateX(100%);
663
+ transform-origin: 0 0;
664
+ opacity: 0;
665
+ }
666
+ 100% {
667
+ transform: translateX(0%);
668
+ transform-origin: 0 0;
669
+ opacity: 1;
670
+ }
671
+ }
672
+ @-webkit-keyframes antMoveRightOut {
673
+ 0% {
674
+ transform: translateX(0%);
675
+ transform-origin: 0 0;
676
+ opacity: 1;
677
+ }
678
+ 100% {
679
+ transform: translateX(100%);
680
+ transform-origin: 0 0;
681
+ opacity: 0;
682
+ }
683
+ }
684
+ @keyframes antMoveRightOut {
685
+ 0% {
686
+ transform: translateX(0%);
687
+ transform-origin: 0 0;
688
+ opacity: 1;
689
+ }
690
+ 100% {
691
+ transform: translateX(100%);
692
+ transform-origin: 0 0;
693
+ opacity: 0;
694
+ }
695
+ }
696
+ @-webkit-keyframes antMoveUpIn {
697
+ 0% {
698
+ transform: translateY(-100%);
699
+ transform-origin: 0 0;
700
+ opacity: 0;
701
+ }
702
+ 100% {
703
+ transform: translateY(0%);
704
+ transform-origin: 0 0;
705
+ opacity: 1;
706
+ }
707
+ }
708
+ @keyframes antMoveUpIn {
709
+ 0% {
710
+ transform: translateY(-100%);
711
+ transform-origin: 0 0;
712
+ opacity: 0;
713
+ }
714
+ 100% {
715
+ transform: translateY(0%);
716
+ transform-origin: 0 0;
717
+ opacity: 1;
718
+ }
719
+ }
720
+ @-webkit-keyframes antMoveUpOut {
721
+ 0% {
722
+ transform: translateY(0%);
723
+ transform-origin: 0 0;
724
+ opacity: 1;
725
+ }
726
+ 100% {
727
+ transform: translateY(-100%);
728
+ transform-origin: 0 0;
729
+ opacity: 0;
730
+ }
731
+ }
732
+ @keyframes antMoveUpOut {
733
+ 0% {
734
+ transform: translateY(0%);
735
+ transform-origin: 0 0;
736
+ opacity: 1;
737
+ }
738
+ 100% {
739
+ transform: translateY(-100%);
740
+ transform-origin: 0 0;
741
+ opacity: 0;
742
+ }
743
+ }
744
+
745
+ .ant-modal {
746
+ box-sizing: border-box;
747
+ margin: 0;
748
+ padding: 0;
749
+ color: rgba(0, 0, 0, 0.85);
750
+ font-size: 14px;
751
+ font-variant: tabular-nums;
752
+ line-height: 1.5715;
753
+ list-style: none;
754
+ font-feature-settings: 'tnum';
755
+ pointer-events: none;
756
+ position: relative;
757
+ top: 100px;
758
+ width: auto;
759
+ max-width: calc(100vw - 32px);
760
+ margin: 0 auto;
761
+ padding-bottom: 24px;
762
+ }
763
+ .ant-modal.ant-zoom-enter,
764
+ .ant-modal.antzoom-appear {
765
+ transform: none;
766
+ opacity: 0;
767
+ -webkit-animation-duration: 0.3s;
768
+ animation-duration: 0.3s;
769
+ -webkit-user-select: none;
770
+ -moz-user-select: none;
771
+ -ms-user-select: none;
772
+ user-select: none;
773
+ }
774
+ .ant-modal-mask {
775
+ position: fixed;
776
+ top: 0;
777
+ right: 0;
778
+ bottom: 0;
779
+ left: 0;
780
+ z-index: 1000;
781
+ height: 100%;
782
+ background-color: rgba(0, 0, 0, 0.45);
783
+ }
784
+ .ant-modal-mask-hidden {
785
+ display: none;
786
+ }
787
+ .ant-modal-wrap {
788
+ position: fixed;
789
+ top: 0;
790
+ right: 0;
791
+ bottom: 0;
792
+ left: 0;
793
+ overflow: auto;
794
+ outline: 0;
795
+ -webkit-overflow-scrolling: touch;
796
+ }
797
+ .ant-modal-wrap {
798
+ z-index: 1000;
799
+ }
800
+ .ant-modal-title {
801
+ margin: 0;
802
+ color: rgba(0, 0, 0, 0.85);
803
+ font-weight: 500;
804
+ font-size: 16px;
805
+ line-height: 22px;
806
+ word-wrap: break-word;
807
+ }
808
+ .ant-modal-content {
809
+ position: relative;
810
+ background-color: #fff;
811
+ background-clip: padding-box;
812
+ border: 0;
813
+ border-radius: 2px;
814
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
815
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
816
+ pointer-events: auto;
817
+ }
818
+ .ant-modal-close {
819
+ position: absolute;
820
+ top: 0;
821
+ right: 0;
822
+ z-index: 10;
823
+ padding: 0;
824
+ color: rgba(0, 0, 0, 0.45);
825
+ font-weight: 700;
826
+ line-height: 1;
827
+ text-decoration: none;
828
+ background: transparent;
829
+ border: 0;
830
+ outline: 0;
831
+ cursor: pointer;
832
+ transition: color 0.3s;
833
+ }
834
+ .ant-modal-close-x {
835
+ display: block;
836
+ width: 56px;
837
+ height: 56px;
838
+ font-size: 16px;
839
+ font-style: normal;
840
+ line-height: 56px;
841
+ text-align: center;
842
+ text-transform: none;
843
+ text-rendering: auto;
844
+ }
845
+ .ant-modal-close:focus,
846
+ .ant-modal-close:hover {
847
+ color: rgba(0, 0, 0, 0.75);
848
+ text-decoration: none;
849
+ }
850
+ .ant-modal-header {
851
+ padding: 16px 24px;
852
+ color: rgba(0, 0, 0, 0.85);
853
+ background: #fff;
854
+ border-bottom: 1px solid #f0f0f0;
855
+ border-radius: 2px 2px 0 0;
856
+ }
857
+ .ant-modal-body {
858
+ padding: 24px;
859
+ font-size: 14px;
860
+ line-height: 1.5715;
861
+ word-wrap: break-word;
862
+ }
863
+ .ant-modal-footer {
864
+ padding: 10px 16px;
865
+ text-align: right;
866
+ background: transparent;
867
+ border-top: 1px solid #f0f0f0;
868
+ border-radius: 0 0 2px 2px;
869
+ }
870
+ .ant-modal-footer .ant-btn + .ant-btn:not(.ant-dropdown-trigger) {
871
+ margin-bottom: 0;
872
+ margin-left: 8px;
873
+ }
874
+ .ant-modal-open {
875
+ overflow: hidden;
876
+ }
877
+ .ant-modal-centered {
878
+ text-align: center;
879
+ }
880
+ .ant-modal-centered::before {
881
+ display: inline-block;
882
+ width: 0;
883
+ height: 100%;
884
+ vertical-align: middle;
885
+ content: '';
886
+ }
887
+ .ant-modal-centered .ant-modal {
888
+ top: 0;
889
+ display: inline-block;
890
+ text-align: left;
891
+ vertical-align: middle;
892
+ }
893
+ @media (max-width: 767px) {
894
+ .ant-modal {
895
+ max-width: calc(100vw - 16px);
896
+ margin: 8px auto;
897
+ }
898
+ .ant-modal-centered .ant-modal {
899
+ flex: 1;
900
+ }
901
+ }
902
+ .ant-modal-confirm .ant-modal-header {
903
+ display: none;
904
+ }
905
+ .ant-modal-confirm .ant-modal-body {
906
+ padding: 32px 32px 24px;
907
+ }
908
+ .ant-modal-confirm-body-wrapper::before {
909
+ display: table;
910
+ content: '';
911
+ }
912
+ .ant-modal-confirm-body-wrapper::after {
913
+ display: table;
914
+ clear: both;
915
+ content: '';
916
+ }
917
+ .ant-modal-confirm-body .ant-modal-confirm-title {
918
+ display: block;
919
+ overflow: hidden;
920
+ color: rgba(0, 0, 0, 0.85);
921
+ font-weight: 500;
922
+ font-size: 16px;
923
+ line-height: 1.4;
924
+ }
925
+ .ant-modal-confirm-body .ant-modal-confirm-content {
926
+ margin-top: 8px;
927
+ color: rgba(0, 0, 0, 0.85);
928
+ font-size: 14px;
929
+ }
930
+ .ant-modal-confirm-body > .anticon {
931
+ float: left;
932
+ margin-right: 16px;
933
+ font-size: 22px;
934
+ }
935
+ .ant-modal-confirm-body
936
+ > .anticon
937
+ + .ant-modal-confirm-title
938
+ + .ant-modal-confirm-content {
939
+ margin-left: 38px;
940
+ }
941
+ .ant-modal-confirm .ant-modal-confirm-btns {
942
+ float: right;
943
+ margin-top: 24px;
944
+ }
945
+ .ant-modal-confirm .ant-modal-confirm-btns .ant-btn + .ant-btn {
946
+ margin-bottom: 0;
947
+ margin-left: 8px;
948
+ }
949
+ .ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
950
+ color: #ff4d4f;
951
+ }
952
+ .ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
953
+ .ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
954
+ color: #faad14;
955
+ }
956
+ .ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
957
+ color: #1890ff;
958
+ }
959
+ .ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
960
+ color: #52c41a;
961
+ }
962
+ .ant-modal-wrap-rtl {
963
+ direction: rtl;
964
+ }
965
+ .ant-modal-wrap-rtl .ant-modal-close {
966
+ right: initial;
967
+ left: 0;
968
+ }
969
+ .ant-modal-wrap-rtl .ant-modal-footer {
970
+ text-align: left;
971
+ }
972
+ .ant-modal-wrap-rtl .ant-modal-footer .ant-btn + .ant-btn {
973
+ margin-right: 8px;
974
+ margin-left: 0;
975
+ }
976
+ .ant-modal-wrap-rtl .ant-modal-confirm-body {
977
+ direction: rtl;
978
+ }
979
+ .ant-modal-wrap-rtl .ant-modal-confirm-body > .anticon {
980
+ float: right;
981
+ margin-right: 0;
982
+ margin-left: 16px;
983
+ }
984
+ .ant-modal-wrap-rtl
985
+ .ant-modal-confirm-body
986
+ > .anticon
987
+ + .ant-modal-confirm-title
988
+ + .ant-modal-confirm-content {
989
+ margin-right: 38px;
990
+ margin-left: 0;
991
+ }
992
+ .ant-modal-wrap-rtl .ant-modal-confirm-btns {
993
+ float: left;
994
+ }
995
+ .ant-modal-wrap-rtl .ant-modal-confirm-btns .ant-btn + .ant-btn {
996
+ margin-right: 8px;
997
+ margin-left: 0;
998
+ }
999
+ .ant-modal-wrap-rtl.ant-modal-centered .ant-modal {
1000
+ text-align: right;
1001
+ }
1002
+
1003
+ .ant-btn {
1004
+ line-height: 1.5715;
1005
+ position: relative;
1006
+ display: inline-block;
1007
+ font-weight: 400;
1008
+ white-space: nowrap;
1009
+ text-align: center;
1010
+ background-image: none;
1011
+ border: 1px solid transparent;
1012
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
1013
+ cursor: pointer;
1014
+ transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
1015
+ -webkit-user-select: none;
1016
+ -moz-user-select: none;
1017
+ -ms-user-select: none;
1018
+ user-select: none;
1019
+ touch-action: manipulation;
1020
+ height: 32px;
1021
+ padding: 4px 15px;
1022
+ font-size: 14px;
1023
+ border-radius: 2px;
1024
+ color: rgba(0, 0, 0, 0.85);
1025
+ border-color: #d9d9d9;
1026
+ background: #fff;
1027
+ }
1028
+ .ant-btn > .anticon {
1029
+ line-height: 1;
1030
+ }
1031
+ .ant-btn,
1032
+ .ant-btn:active,
1033
+ .ant-btn:focus {
1034
+ outline: 0;
1035
+ }
1036
+ .ant-btn:not([disabled]):hover {
1037
+ text-decoration: none;
1038
+ }
1039
+ .ant-btn:not([disabled]):active {
1040
+ outline: 0;
1041
+ box-shadow: none;
1042
+ }
1043
+ .ant-btn[disabled] {
1044
+ cursor: not-allowed;
1045
+ }
1046
+ .ant-btn[disabled] > * {
1047
+ pointer-events: none;
1048
+ }
1049
+
1050
+ .ant-btn > a:only-child {
1051
+ color: currentColor;
1052
+ }
1053
+ .ant-btn > a:only-child::after {
1054
+ position: absolute;
1055
+ top: 0;
1056
+ right: 0;
1057
+ bottom: 0;
1058
+ left: 0;
1059
+ background: transparent;
1060
+ content: '';
1061
+ }
1062
+ .ant-btn:hover,
1063
+ .ant-btn:focus {
1064
+ color: #40a9ff;
1065
+ border-color: #40a9ff;
1066
+ background: #fff;
1067
+ }
1068
+ .ant-btn:hover > a:only-child,
1069
+ .ant-btn:focus > a:only-child {
1070
+ color: currentColor;
1071
+ }
1072
+ .ant-btn:hover > a:only-child::after,
1073
+ .ant-btn:focus > a:only-child::after {
1074
+ position: absolute;
1075
+ top: 0;
1076
+ right: 0;
1077
+ bottom: 0;
1078
+ left: 0;
1079
+ background: transparent;
1080
+ content: '';
1081
+ }
1082
+ .ant-btn:active {
1083
+ color: #096dd9;
1084
+ border-color: #096dd9;
1085
+ background: #fff;
1086
+ }
1087
+ .ant-btn:active > a:only-child {
1088
+ color: currentColor;
1089
+ }
1090
+ .ant-btn:active > a:only-child::after {
1091
+ position: absolute;
1092
+ top: 0;
1093
+ right: 0;
1094
+ bottom: 0;
1095
+ left: 0;
1096
+ background: transparent;
1097
+ content: '';
1098
+ }
1099
+
1100
+ .ant-btn:hover,
1101
+ .ant-btn:focus,
1102
+ .ant-btn:active {
1103
+ text-decoration: none;
1104
+ background: #fff;
1105
+ }
1106
+ .ant-btn > span {
1107
+ display: inline-block;
1108
+ }
1109
+ .ant-btn-primary {
1110
+ color: #fff;
1111
+ border-color: #1890ff;
1112
+ background: #1890ff;
1113
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
1114
+ box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
1115
+ }
1116
+ .ant-btn-primary > a:only-child {
1117
+ color: currentColor;
1118
+ }
1119
+ .ant-btn-primary > a:only-child::after {
1120
+ position: absolute;
1121
+ top: 0;
1122
+ right: 0;
1123
+ bottom: 0;
1124
+ left: 0;
1125
+ background: transparent;
1126
+ content: '';
1127
+ }
1128
+ .ant-btn-primary:hover,
1129
+ .ant-btn-primary:focus {
1130
+ color: #fff;
1131
+ border-color: #40a9ff;
1132
+ background: #40a9ff;
1133
+ }
1134
+ .ant-btn-primary:hover > a:only-child,
1135
+ .ant-btn-primary:focus > a:only-child {
1136
+ color: currentColor;
1137
+ }
1138
+ .ant-btn-primary:hover > a:only-child::after,
1139
+ .ant-btn-primary:focus > a:only-child::after {
1140
+ position: absolute;
1141
+ top: 0;
1142
+ right: 0;
1143
+ bottom: 0;
1144
+ left: 0;
1145
+ background: transparent;
1146
+ content: '';
1147
+ }
1148
+ .ant-btn-primary:active {
1149
+ color: #fff;
1150
+ border-color: #096dd9;
1151
+ background: #096dd9;
1152
+ }
1153
+ .ant-btn-primary:active > a:only-child {
1154
+ color: currentColor;
1155
+ }
1156
+ .ant-btn-primary:active > a:only-child::after {
1157
+ position: absolute;
1158
+ top: 0;
1159
+ right: 0;
1160
+ bottom: 0;
1161
+ left: 0;
1162
+ background: transparent;
1163
+ content: '';
1164
+ }
1165
+
1166
+ .ant-fade-enter,
1167
+ .ant-fade-appear {
1168
+ -webkit-animation-duration: 0.2s;
1169
+ animation-duration: 0.2s;
1170
+ -webkit-animation-fill-mode: both;
1171
+ animation-fill-mode: both;
1172
+ -webkit-animation-play-state: paused;
1173
+ animation-play-state: paused;
1174
+ }
1175
+ .ant-fade-leave {
1176
+ -webkit-animation-duration: 0.2s;
1177
+ animation-duration: 0.2s;
1178
+ -webkit-animation-fill-mode: both;
1179
+ animation-fill-mode: both;
1180
+ -webkit-animation-play-state: paused;
1181
+ animation-play-state: paused;
1182
+ }
1183
+ .ant-fade-enter.ant-fade-enter-active,
1184
+ .ant-fade-appear.ant-fade-appear-active {
1185
+ -webkit-animation-name: antFadeIn;
1186
+ animation-name: antFadeIn;
1187
+ -webkit-animation-play-state: running;
1188
+ animation-play-state: running;
1189
+ }
1190
+ .ant-fade-leave.ant-fade-leave-active {
1191
+ -webkit-animation-name: antFadeOut;
1192
+ animation-name: antFadeOut;
1193
+ -webkit-animation-play-state: running;
1194
+ animation-play-state: running;
1195
+ pointer-events: none;
1196
+ }
1197
+ .ant-fade-enter,
1198
+ .ant-fade-appear {
1199
+ opacity: 0;
1200
+ -webkit-animation-timing-function: linear;
1201
+ animation-timing-function: linear;
1202
+ }
1203
+ .ant-fade-leave {
1204
+ -webkit-animation-timing-function: linear;
1205
+ animation-timing-function: linear;
1206
+ }
1207
+ @-webkit-keyframes antFadeIn {
1208
+ 0% {
1209
+ opacity: 0;
1210
+ }
1211
+ 100% {
1212
+ opacity: 1;
1213
+ }
1214
+ }
1215
+ @keyframes antFadeIn {
1216
+ 0% {
1217
+ opacity: 0;
1218
+ }
1219
+ 100% {
1220
+ opacity: 1;
1221
+ }
1222
+ }
1223
+ @-webkit-keyframes antFadeOut {
1224
+ 0% {
1225
+ opacity: 1;
1226
+ }
1227
+ 100% {
1228
+ opacity: 0;
1229
+ }
1230
+ }
1231
+ @keyframes antFadeOut {
1232
+ 0% {
1233
+ opacity: 1;
1234
+ }
1235
+ 100% {
1236
+ opacity: 0;
1237
+ }
1238
+ }
1239
+
1240
+ .ant-zoom-leave {
1241
+ -webkit-animation-duration: 0.2s;
1242
+ animation-duration: 0.2s;
1243
+ -webkit-animation-fill-mode: both;
1244
+ animation-fill-mode: both;
1245
+ -webkit-animation-play-state: paused;
1246
+ animation-play-state: paused;
1247
+ }
1248
+ .ant-zoom-enter.ant-zoom-enter-active,
1249
+ .ant-zoom-appear.ant-zoom-appear-active {
1250
+ -webkit-animation-name: antZoomIn;
1251
+ animation-name: antZoomIn;
1252
+ -webkit-animation-play-state: running;
1253
+ animation-play-state: running;
1254
+ }
1255
+ .ant-zoom-leave.ant-zoom-leave-active {
1256
+ -webkit-animation-name: antZoomOut;
1257
+ animation-name: antZoomOut;
1258
+ -webkit-animation-play-state: running;
1259
+ animation-play-state: running;
1260
+ pointer-events: none;
1261
+ }
1262
+ .ant-zoom-enter,
1263
+ .ant-zoom-appear {
1264
+ transform: scale(0);
1265
+ opacity: 0;
1266
+ -webkit-animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1267
+ animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
1268
+ }
1269
+ .ant-zoom-enter-prepare,
1270
+ .ant-zoom-appear-prepare {
1271
+ transform: none;
1272
+ }
1273
+ .ant-zoom-leave {
1274
+ -webkit-animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1275
+ animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
1276
+ }
1277
+
1278
+ .ant-tabs-dropdown {
1279
+ box-sizing: border-box;
1280
+ margin: 0;
1281
+ padding: 0;
1282
+ color: rgba(0, 0, 0, 0.85);
1283
+ font-size: 14px;
1284
+ font-variant: tabular-nums;
1285
+ line-height: 1.5715;
1286
+ list-style: none;
1287
+ font-feature-settings: 'tnum';
1288
+ position: absolute;
1289
+ top: -9999px;
1290
+ left: -9999px;
1291
+ z-index: 1050;
1292
+ display: block;
1293
+ min-width: 0 !important;
1294
+ }
1295
+ .ant-tabs-dropdown-hidden {
1296
+ display: none;
1297
+ }
1298
+ .ant-tabs-dropdown-menu {
1299
+ max-height: 200px;
1300
+ margin: 0;
1301
+ padding: 4px 0;
1302
+ overflow-x: hidden;
1303
+ overflow-y: auto;
1304
+ text-align: left;
1305
+ list-style-type: none;
1306
+ background-color: #fff;
1307
+ background-clip: padding-box;
1308
+ border-radius: 2px;
1309
+ outline: none;
1310
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
1311
+ 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
1312
+ }
1313
+ .ant-tabs-dropdown-menu-item {
1314
+ display: flex;
1315
+ align-items: center;
1316
+ min-width: 120px;
1317
+ margin: 0;
1318
+ padding: 5px 12px;
1319
+ overflow: hidden;
1320
+ color: rgba(0, 0, 0, 0.85);
1321
+ font-weight: normal;
1322
+ font-size: 14px;
1323
+ line-height: 22px;
1324
+ white-space: nowrap;
1325
+ text-overflow: ellipsis;
1326
+ cursor: pointer;
1327
+ transition: all 0.3s;
1328
+ }
1329
+ .ant-tabs-dropdown-menu-item > span {
1330
+ flex: 1;
1331
+ white-space: nowrap;
1332
+ }
1333
+ .ant-tabs-dropdown-menu-item-remove {
1334
+ flex: none;
1335
+ margin-left: 12px;
1336
+ color: rgba(0, 0, 0, 0.45);
1337
+ font-size: 12px;
1338
+ background: transparent;
1339
+ border: 0;
1340
+ cursor: pointer;
1341
+ }
1342
+ .ant-tabs-dropdown-menu-item-remove:hover {
1343
+ color: #40a9ff;
1344
+ }
1345
+ .ant-tabs-dropdown-menu-item:hover {
1346
+ background: #f5f5f5;
1347
+ }
1348
+ .ant-tabs-dropdown-menu-item-disabled,
1349
+ .ant-tabs-dropdown-menu-item-disabled:hover {
1350
+ color: rgba(0, 0, 0, 0.25);
1351
+ background: transparent;
1352
+ cursor: not-allowed;
1353
+ }
1354
+
1355
+ .ant-slide-up-leave {
1356
+ -webkit-animation-duration: 0.2s;
1357
+ animation-duration: 0.2s;
1358
+ -webkit-animation-fill-mode: both;
1359
+ animation-fill-mode: both;
1360
+ -webkit-animation-play-state: paused;
1361
+ animation-play-state: paused;
1362
+ }
1363
+ .ant-slide-up-enter.ant-slide-up-enter-active,
1364
+ .ant-slide-up-appear.ant-slide-up-appear-active {
1365
+ -webkit-animation-name: antSlideUpIn;
1366
+ animation-name: antSlideUpIn;
1367
+ -webkit-animation-play-state: running;
1368
+ animation-play-state: running;
1369
+ }
1370
+ .ant-slide-up-leave.ant-slide-up-leave-active {
1371
+ -webkit-animation-name: antSlideUpOut;
1372
+ animation-name: antSlideUpOut;
1373
+ -webkit-animation-play-state: running;
1374
+ animation-play-state: running;
1375
+ pointer-events: none;
1376
+ }
1377
+ .ant-slide-up-enter,
1378
+ .ant-slide-up-appear {
1379
+ opacity: 0;
1380
+ -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1381
+ animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
1382
+ }
1383
+ .ant-slide-up-leave {
1384
+ -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1385
+ animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
1386
+ }
1387
+
1388
+ @-webkit-keyframes antSlideUpIn {
1389
+ 0% {
1390
+ transform: scaleY(0.8);
1391
+ transform-origin: 0% 0%;
1392
+ opacity: 0;
1393
+ }
1394
+ 100% {
1395
+ transform: scaleY(1);
1396
+ transform-origin: 0% 0%;
1397
+ opacity: 1;
1398
+ }
1399
+ }
1400
+ @keyframes antSlideUpIn {
1401
+ 0% {
1402
+ transform: scaleY(0.8);
1403
+ transform-origin: 0% 0%;
1404
+ opacity: 0;
1405
+ }
1406
+ 100% {
1407
+ transform: scaleY(1);
1408
+ transform-origin: 0% 0%;
1409
+ opacity: 1;
1410
+ }
1411
+ }
1412
+ @-webkit-keyframes antSlideUpOut {
1413
+ 0% {
1414
+ transform: scaleY(1);
1415
+ transform-origin: 0% 0%;
1416
+ opacity: 1;
1417
+ }
1418
+ 100% {
1419
+ transform: scaleY(0.8);
1420
+ transform-origin: 0% 0%;
1421
+ opacity: 0;
1422
+ }
1423
+ }
1424
+ @keyframes antSlideUpOut {
1425
+ 0% {
1426
+ transform: scaleY(1);
1427
+ transform-origin: 0% 0%;
1428
+ opacity: 1;
1429
+ }
1430
+ 100% {
1431
+ transform: scaleY(0.8);
1432
+ transform-origin: 0% 0%;
1433
+ opacity: 0;
1434
+ }
1435
+ }
1436
+
1437
+ .main-empty-image {
1438
+ height: 100%;
1439
+ }
1440
+
1441
+ .main-empty-image
1442
+ .main-empty-image-paint-linear-colorful
1443
+ .main-empty-image-linear-color-1 {
1444
+ stop-color: var(--main-primary-color) !important;
1445
+ }
1446
+
1447
+ .main-empty-image
1448
+ .main-empty-image-paint-linear-colorful
1449
+ .main-empty-image-linear-color-2 {
1450
+ stop-color: var(--main-primary-color) !important;
1451
+ }
1452
+
1453
+ .main-empty-image-no-search-data {
1454
+ height: 100%;
1455
+ margin: auto;
1456
+ }
1457
+
1458
+ .main-empty-image-no-search-data-circle {
1459
+ fill: #fff !important;
1460
+ }
1461
+
1462
+ .main-empty-image-colorful .main-empty-image-no-search-data-circle {
1463
+ fill: #f0f7ff !important;
1464
+ }
1465
+
1466
+ .main-empty-image-colorful .main-empty-image-no-search-data-path {
1467
+ fill: var(--main-primary-color) !important;
1468
+ }
1469
+
1470
+ .main-empty-image-404
1471
+ .main-empty-image-paint2-linear-colorful
1472
+ .main-empty-image-linear-color-1 {
1473
+ stop-color: var(--main-primary-color) !important;
1474
+ }
1475
+
1476
+ .main-empty-image-404
1477
+ .main-empty-image-paint2-linear-colorful
1478
+ .main-empty-image-linear-color-2 {
1479
+ stop-color: var(--main-primary-color) !important;
1480
+ }
1481
+
1482
+ .monaco-aria-container {
1483
+ position: absolute!important;
1484
+ top: 0;
1485
+ height: 1px;
1486
+ width: 1px;
1487
+ margin: -1px;
1488
+ overflow: hidden;
1489
+ padding: 0;
1490
+ clip: rect(1px,1px,1px,1px);
1491
+ clip-path: inset(50%);
1492
+ left: -999em;
1493
+ }