@cloudtower/eagle 0.26.8 → 0.26.9
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.
- package/dist/components/Button/index.d.ts +3 -3
- package/dist/components/Card/CardBody.d.ts +5 -0
- package/dist/components/Card/CardTitle.d.ts +5 -0
- package/dist/components/Card/CardWrapper.d.ts +10 -0
- package/dist/components/Card/__test__/Card.spec.d.ts +1 -0
- package/dist/components/Card/index.d.ts +13 -0
- package/dist/components/Stack/index.d.ts +12 -0
- package/dist/components/TableForm/Columns/InputColumn.d.ts +1 -0
- package/dist/components/TableForm/Columns/index.d.ts +6 -3
- package/dist/components/TableForm/__test__/tableForm.test.d.ts +1 -0
- package/dist/components/TableForm/types.d.ts +36 -2
- package/dist/components/Tag/SplitTag.d.ts +3 -0
- package/dist/components/Tag/const.d.ts +1 -0
- package/dist/components/Tag/index.d.ts +6 -0
- package/dist/components/Tag/style.d.ts +4 -0
- package/dist/components.css +1202 -1098
- package/dist/esm/index.js +1298 -1000
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +16 -3
- package/dist/style.css +508 -404
- package/dist/umd/index.js +1298 -1000
- package/dist/umd/stats1.html +1 -1
- package/dist/utils/testSuit.d.ts +2 -0
- package/dist/variables.scss +3 -2
- package/package.json +5 -5
package/dist/components.css
CHANGED
|
@@ -98,168 +98,117 @@
|
|
|
98
98
|
/* box shadow */
|
|
99
99
|
/* fisheye */
|
|
100
100
|
.loading {
|
|
101
|
+
width: 64px;
|
|
102
|
+
height: 64px;
|
|
103
|
+
display: flex;
|
|
104
|
+
align-items: center;
|
|
105
|
+
justify-content: center;
|
|
101
106
|
position: relative;
|
|
102
|
-
display: inline-block;
|
|
103
|
-
opacity: 0;
|
|
104
|
-
animation-name: fadeIn;
|
|
105
|
-
/*
|
|
106
|
-
animation-delay: 0.4s; //FIXME: use a more accurate way to make this happen
|
|
107
|
-
*/
|
|
108
|
-
animation-fill-mode: forwards;
|
|
109
|
-
line-height: 23.49px;
|
|
110
|
-
width: 42.6214285714px;
|
|
111
107
|
}
|
|
112
108
|
|
|
113
|
-
.
|
|
114
|
-
display: inline-block;
|
|
115
|
-
position: relative;
|
|
116
|
-
vertical-align: middle;
|
|
117
|
-
}
|
|
118
|
-
.loading__sugar:before, .loading__sugar:after {
|
|
119
|
-
content: "";
|
|
120
|
-
display: inline-block;
|
|
121
|
-
width: 4.05px;
|
|
122
|
-
height: 4.05px;
|
|
123
|
-
border-radius: 50%;
|
|
109
|
+
.loading-indicator__line1 {
|
|
124
110
|
position: absolute;
|
|
111
|
+
width: 5px;
|
|
112
|
+
height: 48px;
|
|
113
|
+
left: 9.33px;
|
|
114
|
+
top: 40.5px;
|
|
115
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
116
|
+
border-radius: 5px;
|
|
117
|
+
transform: rotate(-128deg);
|
|
118
|
+
transform-origin: top left;
|
|
119
|
+
animation: loading-indicator1 1100ms ease-out infinite;
|
|
125
120
|
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
139
|
-
animation-delay: -1.869s;
|
|
140
|
-
background-color: #25c764;
|
|
141
|
-
}
|
|
142
|
-
.loading__sugar:nth-child(2) {
|
|
143
|
-
animation-delay: -3.738s;
|
|
144
|
-
}
|
|
145
|
-
.loading__sugar:nth-child(2):before {
|
|
146
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
147
|
-
animation-delay: -3.738s;
|
|
148
|
-
background-color: #0096ff;
|
|
149
|
-
}
|
|
150
|
-
.loading__sugar:nth-child(2):after {
|
|
151
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
152
|
-
animation-delay: -3.738s;
|
|
153
|
-
background-color: #25c764;
|
|
154
|
-
}
|
|
155
|
-
.loading__sugar:nth-child(3) {
|
|
156
|
-
animation-delay: -5.607s;
|
|
157
|
-
}
|
|
158
|
-
.loading__sugar:nth-child(3):before {
|
|
159
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
160
|
-
animation-delay: -5.607s;
|
|
161
|
-
background-color: #0096ff;
|
|
162
|
-
}
|
|
163
|
-
.loading__sugar:nth-child(3):after {
|
|
164
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
165
|
-
animation-delay: -5.607s;
|
|
166
|
-
background-color: #25c764;
|
|
167
|
-
}
|
|
168
|
-
.loading__sugar:nth-child(4) {
|
|
169
|
-
animation-delay: -7.476s;
|
|
170
|
-
}
|
|
171
|
-
.loading__sugar:nth-child(4):before {
|
|
172
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
173
|
-
animation-delay: -7.476s;
|
|
174
|
-
background-color: #0096ff;
|
|
175
|
-
}
|
|
176
|
-
.loading__sugar:nth-child(4):after {
|
|
177
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
178
|
-
animation-delay: -7.476s;
|
|
179
|
-
background-color: #25c764;
|
|
180
|
-
}
|
|
181
|
-
.loading__sugar:nth-child(5) {
|
|
182
|
-
animation-delay: -9.345s;
|
|
183
|
-
}
|
|
184
|
-
.loading__sugar:nth-child(5):before {
|
|
185
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
186
|
-
animation-delay: -9.345s;
|
|
187
|
-
background-color: #0096ff;
|
|
188
|
-
}
|
|
189
|
-
.loading__sugar:nth-child(5):after {
|
|
190
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
191
|
-
animation-delay: -9.345s;
|
|
192
|
-
background-color: #25c764;
|
|
193
|
-
}
|
|
194
|
-
.loading__sugar:nth-child(6) {
|
|
195
|
-
animation-delay: -11.214s;
|
|
196
|
-
}
|
|
197
|
-
.loading__sugar:nth-child(6):before {
|
|
198
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
199
|
-
animation-delay: -11.214s;
|
|
200
|
-
background-color: #0096ff;
|
|
201
|
-
}
|
|
202
|
-
.loading__sugar:nth-child(6):after {
|
|
203
|
-
animation: animAfter 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
204
|
-
animation-delay: -11.214s;
|
|
205
|
-
background-color: #25c764;
|
|
206
|
-
}
|
|
207
|
-
.loading__sugar:nth-child(7) {
|
|
208
|
-
animation-delay: -13.083s;
|
|
209
|
-
}
|
|
210
|
-
.loading__sugar:nth-child(7):before {
|
|
211
|
-
animation: animBefore 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite;
|
|
212
|
-
animation-delay: -13.083s;
|
|
213
|
-
background-color: #0096ff;
|
|
121
|
+
|
|
122
|
+
.loading-indicator__line2 {
|
|
123
|
+
position: absolute;
|
|
124
|
+
width: 5px;
|
|
125
|
+
height: 48px;
|
|
126
|
+
left: 40.8px;
|
|
127
|
+
top: 8.4px;
|
|
128
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
129
|
+
border-radius: 5px;
|
|
130
|
+
transform: rotate(-8deg);
|
|
131
|
+
transform-origin: top left;
|
|
132
|
+
animation: loading-indicator2 1100ms ease-out infinite;
|
|
214
133
|
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
134
|
+
|
|
135
|
+
.loading-indicator__line3 {
|
|
136
|
+
position: absolute;
|
|
137
|
+
width: 5px;
|
|
138
|
+
height: 48px;
|
|
139
|
+
left: 52.9px;
|
|
140
|
+
top: 51.8px;
|
|
141
|
+
background: linear-gradient(180deg, #0080FF 0%, rgba(0, 128, 255, 0.16) 100%);
|
|
142
|
+
border-radius: 5px;
|
|
143
|
+
transform: rotate(112deg);
|
|
144
|
+
transform-origin: top left;
|
|
145
|
+
animation: loading-indicator3 1100ms ease-out infinite;
|
|
219
146
|
}
|
|
220
147
|
|
|
221
|
-
@keyframes
|
|
148
|
+
@keyframes loading-indicator1 {
|
|
222
149
|
0% {
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
transform: scale(1.2), translateZ(1px);
|
|
150
|
+
height: 48px;
|
|
151
|
+
left: 9.33px;
|
|
152
|
+
top: 40.5px;
|
|
227
153
|
}
|
|
228
154
|
50% {
|
|
229
|
-
|
|
155
|
+
height: 5px;
|
|
156
|
+
left: 9.33px;
|
|
157
|
+
top: 40.5px;
|
|
230
158
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
159
|
+
51% {
|
|
160
|
+
height: 5px;
|
|
161
|
+
left: 43.2px;
|
|
162
|
+
top: 14.02px;
|
|
234
163
|
}
|
|
235
164
|
100% {
|
|
236
|
-
|
|
165
|
+
height: 48px;
|
|
166
|
+
left: 9.33px;
|
|
167
|
+
top: 40.5px;
|
|
237
168
|
}
|
|
238
169
|
}
|
|
239
|
-
@keyframes
|
|
170
|
+
@keyframes loading-indicator2 {
|
|
240
171
|
0% {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
background-color: #e9f9f0;
|
|
245
|
-
transform: scale(0.8), translateZ(-1px);
|
|
172
|
+
height: 48px;
|
|
173
|
+
left: 40.8px;
|
|
174
|
+
top: 8.4px;
|
|
246
175
|
}
|
|
247
176
|
50% {
|
|
248
|
-
|
|
177
|
+
height: 5px;
|
|
178
|
+
left: 40.8px;
|
|
179
|
+
top: 8.4px;
|
|
249
180
|
}
|
|
250
|
-
|
|
251
|
-
|
|
181
|
+
51% {
|
|
182
|
+
height: 5px;
|
|
183
|
+
left: 46.8px;
|
|
184
|
+
top: 51px;
|
|
252
185
|
}
|
|
253
186
|
100% {
|
|
254
|
-
|
|
187
|
+
height: 48px;
|
|
188
|
+
left: 40.8px;
|
|
189
|
+
top: 8.4px;
|
|
255
190
|
}
|
|
256
191
|
}
|
|
257
|
-
@keyframes
|
|
258
|
-
|
|
259
|
-
|
|
192
|
+
@keyframes loading-indicator3 {
|
|
193
|
+
0% {
|
|
194
|
+
height: 48px;
|
|
195
|
+
left: 52.9px;
|
|
196
|
+
top: 51.8px;
|
|
260
197
|
}
|
|
261
|
-
|
|
262
|
-
|
|
198
|
+
50% {
|
|
199
|
+
height: 5px;
|
|
200
|
+
left: 52.9px;
|
|
201
|
+
top: 51.8px;
|
|
202
|
+
}
|
|
203
|
+
51% {
|
|
204
|
+
height: 5px;
|
|
205
|
+
left: 13px;
|
|
206
|
+
top: 35.7px;
|
|
207
|
+
}
|
|
208
|
+
100% {
|
|
209
|
+
height: 48px;
|
|
210
|
+
left: 52.9px;
|
|
211
|
+
top: 51.8px;
|
|
263
212
|
}
|
|
264
213
|
}
|
|
265
214
|
/* // basic */
|
|
@@ -1063,7 +1012,7 @@ p {
|
|
|
1063
1012
|
.ant-alert .ant-alert-icon {
|
|
1064
1013
|
position: static;
|
|
1065
1014
|
height: 18px;
|
|
1066
|
-
margin-right:
|
|
1015
|
+
margin-right: 8px;
|
|
1067
1016
|
}
|
|
1068
1017
|
.ant-alert .ant-alert-close-icon {
|
|
1069
1018
|
position: initial;
|
|
@@ -1102,6 +1051,10 @@ p {
|
|
|
1102
1051
|
color: #005ed1;
|
|
1103
1052
|
}
|
|
1104
1053
|
|
|
1054
|
+
.ant-alert-info.action:not(.alert-normal) .ant-alert-message {
|
|
1055
|
+
color: #00122e;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1105
1058
|
.alert-normal {
|
|
1106
1059
|
background: rgba(225, 230, 241, 0.6);
|
|
1107
1060
|
}
|
|
@@ -1330,6 +1283,66 @@ td .ant-btn-link {
|
|
|
1330
1283
|
filter: drop-shadow(0px 0px 0px 4px rgba(255, 74, 74, 0.16));
|
|
1331
1284
|
}
|
|
1332
1285
|
|
|
1286
|
+
.ant-tag {
|
|
1287
|
+
border: none;
|
|
1288
|
+
border-radius: 4px;
|
|
1289
|
+
display: inline-flex;
|
|
1290
|
+
align-items: center;
|
|
1291
|
+
}
|
|
1292
|
+
.ant-tag:hover {
|
|
1293
|
+
opacity: unset;
|
|
1294
|
+
}
|
|
1295
|
+
.ant-tag.ant-tag-red {
|
|
1296
|
+
color: #f0483e;
|
|
1297
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
1298
|
+
}
|
|
1299
|
+
.ant-tag.ant-tag-red.tag-hover:hover, .ant-tag.ant-tag-red.__pseudo-states-hover {
|
|
1300
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
1301
|
+
}
|
|
1302
|
+
.ant-tag.ant-tag-red-ontint {
|
|
1303
|
+
color: #ff5252;
|
|
1304
|
+
background-color: rgba(255, 74, 74, 0.2);
|
|
1305
|
+
}
|
|
1306
|
+
.ant-tag.ant-tag-yellow {
|
|
1307
|
+
color: #e07f00;
|
|
1308
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
1309
|
+
}
|
|
1310
|
+
.ant-tag.ant-tag-yellow.tag-hover:hover, .ant-tag.ant-tag-yellow.__pseudo-states-hover {
|
|
1311
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
1312
|
+
}
|
|
1313
|
+
.ant-tag.ant-tag-green {
|
|
1314
|
+
color: #008f4c;
|
|
1315
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
1316
|
+
}
|
|
1317
|
+
.ant-tag.ant-tag-green.tag-hover:hover, .ant-tag.ant-tag-green.__pseudo-states-hover {
|
|
1318
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
1319
|
+
}
|
|
1320
|
+
.ant-tag.ant-tag-green-ontint {
|
|
1321
|
+
color: #23cf6d;
|
|
1322
|
+
background-color: rgba(30, 201, 127, 0.2);
|
|
1323
|
+
}
|
|
1324
|
+
.ant-tag.ant-tag-blue {
|
|
1325
|
+
color: #0080ff;
|
|
1326
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
1327
|
+
}
|
|
1328
|
+
.ant-tag.ant-tag-blue.tag-hover:hover, .ant-tag.ant-tag-blue.__pseudo-states-hover {
|
|
1329
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
1330
|
+
}
|
|
1331
|
+
.ant-tag.ant-tag-purple {
|
|
1332
|
+
color: rgb(126, 65, 255);
|
|
1333
|
+
background-color: rgba(126, 65, 255, 0.1);
|
|
1334
|
+
}
|
|
1335
|
+
.ant-tag.ant-tag-purple.tag-hover:hover, .ant-tag.ant-tag-purple.__pseudo-states-hover {
|
|
1336
|
+
background-color: rgba(126, 65, 255, 0.16);
|
|
1337
|
+
}
|
|
1338
|
+
.ant-tag.ant-tag-gray {
|
|
1339
|
+
color: #1d326c;
|
|
1340
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
1341
|
+
}
|
|
1342
|
+
.ant-tag.ant-tag-gray.tag-hover:hover, .ant-tag.ant-tag-gray.__pseudo-states-hover {
|
|
1343
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1333
1346
|
@media screen and (min-width: 1280px) {
|
|
1334
1347
|
.cluster-topo-wrapper .panel-content > .rack-topo-wrapper,
|
|
1335
1348
|
.cluster-topo-wrapper .panel-content > .brick-topo-wrapper {
|
|
@@ -1549,75 +1562,6 @@ html body {
|
|
|
1549
1562
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
1550
1563
|
}
|
|
1551
1564
|
}
|
|
1552
|
-
.obf05yr {
|
|
1553
|
-
display: inline-block;
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
.hsms1n6 {
|
|
1557
|
-
visibility: hidden;
|
|
1558
|
-
position: absolute;
|
|
1559
|
-
}
|
|
1560
|
-
|
|
1561
|
-
.i1mrf09m {
|
|
1562
|
-
display: inline-flex;
|
|
1563
|
-
align-items: center;
|
|
1564
|
-
}
|
|
1565
|
-
.i1mrf09m .icon-inner {
|
|
1566
|
-
display: inline-flex;
|
|
1567
|
-
align-items: center;
|
|
1568
|
-
justify-content: center;
|
|
1569
|
-
}
|
|
1570
|
-
.i1mrf09m .icon-inner + span,
|
|
1571
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
1572
|
-
margin-left: 4px;
|
|
1573
|
-
}
|
|
1574
|
-
.i1mrf09m.is-rotate img,
|
|
1575
|
-
.i1mrf09m.is-rotate svg {
|
|
1576
|
-
animation: rotate 680ms linear infinite;
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
|
-
.iap75of {
|
|
1580
|
-
height: 18px;
|
|
1581
|
-
line-height: 18px;
|
|
1582
|
-
padding: 0 4px;
|
|
1583
|
-
border-radius: 4px;
|
|
1584
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1585
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1586
|
-
display: flex;
|
|
1587
|
-
align-items: center;
|
|
1588
|
-
white-space: nowrap;
|
|
1589
|
-
margin-right: 4px;
|
|
1590
|
-
}
|
|
1591
|
-
|
|
1592
|
-
.bpq0js6 {
|
|
1593
|
-
padding: 4px 11px;
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
|
-
.b15sn34c {
|
|
1597
|
-
white-space: nowrap;
|
|
1598
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1599
|
-
}
|
|
1600
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1601
|
-
--color: #0080ff;
|
|
1602
|
-
}
|
|
1603
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1604
|
-
--color: #0080ff;
|
|
1605
|
-
}
|
|
1606
|
-
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1607
|
-
margin-left: 1px;
|
|
1608
|
-
}
|
|
1609
|
-
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1610
|
-
border-top-right-radius: 0;
|
|
1611
|
-
border-bottom-right-radius: 0;
|
|
1612
|
-
}
|
|
1613
|
-
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1614
|
-
border-top-left-radius: 0;
|
|
1615
|
-
border-bottom-left-radius: 0;
|
|
1616
|
-
}
|
|
1617
|
-
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1618
|
-
border-radius: unset;
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
1565
|
.buj61ew.ant-btn {
|
|
1622
1566
|
height: 32px;
|
|
1623
1567
|
border-radius: 6px;
|
|
@@ -1866,6 +1810,35 @@ html body {
|
|
|
1866
1810
|
padding: 0;
|
|
1867
1811
|
}
|
|
1868
1812
|
|
|
1813
|
+
.bpq0js6 {
|
|
1814
|
+
padding: 4px 11px;
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
.b15sn34c {
|
|
1818
|
+
white-space: nowrap;
|
|
1819
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1820
|
+
}
|
|
1821
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1822
|
+
--color: #0080ff;
|
|
1823
|
+
}
|
|
1824
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
1825
|
+
--color: #0080ff;
|
|
1826
|
+
}
|
|
1827
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1828
|
+
margin-left: 1px;
|
|
1829
|
+
}
|
|
1830
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1831
|
+
border-top-right-radius: 0;
|
|
1832
|
+
border-bottom-right-radius: 0;
|
|
1833
|
+
}
|
|
1834
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1835
|
+
border-top-left-radius: 0;
|
|
1836
|
+
border-bottom-left-radius: 0;
|
|
1837
|
+
}
|
|
1838
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1839
|
+
border-radius: unset;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1869
1842
|
.fde5mpd {
|
|
1870
1843
|
width: 100%;
|
|
1871
1844
|
height: 100%;
|
|
@@ -1881,950 +1854,990 @@ html body {
|
|
|
1881
1854
|
font-size: 18px;
|
|
1882
1855
|
}
|
|
1883
1856
|
|
|
1884
|
-
.
|
|
1857
|
+
.i1mrf09m {
|
|
1858
|
+
display: inline-flex;
|
|
1859
|
+
align-items: center;
|
|
1860
|
+
}
|
|
1861
|
+
.i1mrf09m .icon-inner {
|
|
1862
|
+
display: inline-flex;
|
|
1863
|
+
align-items: center;
|
|
1864
|
+
justify-content: center;
|
|
1865
|
+
}
|
|
1866
|
+
.i1mrf09m .icon-inner + span,
|
|
1867
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
1868
|
+
margin-left: 4px;
|
|
1869
|
+
}
|
|
1870
|
+
.i1mrf09m.is-rotate img,
|
|
1871
|
+
.i1mrf09m.is-rotate svg {
|
|
1872
|
+
animation: rotate 680ms linear infinite;
|
|
1873
|
+
}
|
|
1874
|
+
|
|
1875
|
+
.iap75of {
|
|
1876
|
+
height: 18px;
|
|
1877
|
+
line-height: 18px;
|
|
1878
|
+
padding: 0 4px;
|
|
1879
|
+
border-radius: 4px;
|
|
1880
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1881
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1885
1882
|
display: flex;
|
|
1886
|
-
|
|
1883
|
+
align-items: center;
|
|
1884
|
+
white-space: nowrap;
|
|
1885
|
+
margin-right: 4px;
|
|
1887
1886
|
}
|
|
1888
1887
|
|
|
1889
|
-
.
|
|
1890
|
-
|
|
1891
|
-
width: 100%;
|
|
1892
|
-
margin: 0 auto;
|
|
1893
|
-
height: 100%;
|
|
1888
|
+
.obf05yr {
|
|
1889
|
+
display: inline-block;
|
|
1894
1890
|
}
|
|
1895
1891
|
|
|
1896
|
-
.
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1892
|
+
.hsms1n6 {
|
|
1893
|
+
visibility: hidden;
|
|
1894
|
+
position: absolute;
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
.p12gwtiw {
|
|
1900
1898
|
display: flex;
|
|
1899
|
+
justify-content: space-between;
|
|
1900
|
+
align-items: center;
|
|
1901
|
+
padding: 10px 0;
|
|
1902
|
+
color: rgba(44, 56, 82, 0.6);
|
|
1903
|
+
font-size: 12px;
|
|
1904
|
+
line-height: 24px;
|
|
1901
1905
|
}
|
|
1902
|
-
.
|
|
1903
|
-
|
|
1904
|
-
flex-grow: 0;
|
|
1905
|
-
flex-shrink: 0;
|
|
1906
|
-
flex-basis: 21%;
|
|
1906
|
+
.p12gwtiw .pagination-left {
|
|
1907
|
+
padding: 2px 8px;
|
|
1907
1908
|
}
|
|
1908
|
-
.
|
|
1909
|
+
.p12gwtiw .dropdown-trigger {
|
|
1909
1910
|
display: flex;
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
padding-left: 44px;
|
|
1911
|
+
align-items: center;
|
|
1912
|
+
border-radius: 6px;
|
|
1913
|
+
cursor: pointer;
|
|
1914
|
+
transition: all 0.3s ease;
|
|
1915
1915
|
}
|
|
1916
|
-
.
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
flex-shrink: 0;
|
|
1920
|
-
flex-basis: 58%;
|
|
1916
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
1917
|
+
background: rgba(211, 218, 235, 0.6);
|
|
1918
|
+
color: #0080ff;
|
|
1921
1919
|
}
|
|
1922
|
-
.
|
|
1923
|
-
|
|
1920
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
1921
|
+
margin-left: 4px;
|
|
1924
1922
|
}
|
|
1925
|
-
.
|
|
1926
|
-
|
|
1923
|
+
.p12gwtiw .pagination-right {
|
|
1924
|
+
display: flex;
|
|
1925
|
+
align-items: center;
|
|
1926
|
+
color: #0080ff;
|
|
1927
|
+
font-weight: bold;
|
|
1927
1928
|
}
|
|
1928
|
-
.
|
|
1929
|
-
|
|
1929
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
1930
|
+
margin-left: 4px;
|
|
1930
1931
|
}
|
|
1931
|
-
.
|
|
1932
|
-
|
|
1932
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
1933
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
1934
|
+
padding: 0 8px;
|
|
1933
1935
|
}
|
|
1934
|
-
.
|
|
1935
|
-
.
|
|
1936
|
-
|
|
1936
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
1937
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
1938
|
+
color: #0080ff;
|
|
1937
1939
|
}
|
|
1938
|
-
.
|
|
1939
|
-
|
|
1940
|
-
border-radius: 4px;
|
|
1941
|
-
height: 32px;
|
|
1942
|
-
display: flex;
|
|
1943
|
-
align-items: center;
|
|
1940
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
1941
|
+
transform: rotate(180deg);
|
|
1944
1942
|
}
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1943
|
+
|
|
1944
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
1945
|
+
max-height: calc(100vh - 128px);
|
|
1946
|
+
overflow-y: auto;
|
|
1948
1947
|
}
|
|
1949
|
-
.
|
|
1950
|
-
padding
|
|
1948
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
1949
|
+
padding: 4px 20px;
|
|
1950
|
+
font-size: 12px;
|
|
1951
|
+
line-height: 18px;
|
|
1951
1952
|
}
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1953
|
+
|
|
1954
|
+
.rxbeqvl.ant-radio-wrapper {
|
|
1955
|
+
display: inline-flex;
|
|
1956
|
+
align-items: baseline;
|
|
1957
|
+
white-space: pre-wrap;
|
|
1955
1958
|
}
|
|
1956
|
-
.
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
width: 13px;
|
|
1960
|
-
margin-right: 12px;
|
|
1959
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio {
|
|
1960
|
+
position: relative;
|
|
1961
|
+
top: 3px;
|
|
1961
1962
|
}
|
|
1962
|
-
.
|
|
1963
|
-
|
|
1963
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
1964
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
1964
1965
|
}
|
|
1965
|
-
.
|
|
1966
|
-
color: #
|
|
1966
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
1967
|
+
border-color: #0080ff;
|
|
1967
1968
|
}
|
|
1968
|
-
.
|
|
1969
|
-
|
|
1969
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
1970
|
+
border-color: #0080ff;
|
|
1971
|
+
background: #0080ff;
|
|
1970
1972
|
}
|
|
1971
|
-
.
|
|
1972
|
-
|
|
1973
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
1974
|
+
top: 4px;
|
|
1975
|
+
left: 4px;
|
|
1976
|
+
width: 6px;
|
|
1977
|
+
height: 6px;
|
|
1978
|
+
background: #fff;
|
|
1973
1979
|
}
|
|
1974
|
-
.
|
|
1975
|
-
|
|
1980
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
1981
|
+
opacity: 0.5;
|
|
1976
1982
|
}
|
|
1977
|
-
.
|
|
1978
|
-
|
|
1983
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
1984
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
1985
|
+
background: rgba(211, 218, 235, 0.6);
|
|
1979
1986
|
}
|
|
1980
|
-
.
|
|
1981
|
-
|
|
1987
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
1988
|
+
background: #00122e;
|
|
1982
1989
|
}
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
width: 100%;
|
|
1987
|
-
max-width: 648px;
|
|
1990
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
1991
|
+
color: #00122e;
|
|
1992
|
+
opacity: 0.5;
|
|
1988
1993
|
}
|
|
1989
|
-
.
|
|
1990
|
-
|
|
1994
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
1995
|
+
color: #00122e;
|
|
1991
1996
|
}
|
|
1992
|
-
.
|
|
1993
|
-
|
|
1997
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio + span {
|
|
1998
|
+
display: inline-block;
|
|
1994
1999
|
padding: 0;
|
|
1995
|
-
|
|
1996
|
-
max-width: 648px;
|
|
1997
|
-
overflow: hidden;
|
|
2000
|
+
padding-left: 12px;
|
|
1998
2001
|
}
|
|
1999
|
-
.
|
|
2000
|
-
margin-bottom:
|
|
2002
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
2003
|
+
margin-bottom: 0;
|
|
2004
|
+
white-space: pre-wrap;
|
|
2005
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2001
2006
|
}
|
|
2002
|
-
.
|
|
2003
|
-
|
|
2004
|
-
overflow-y: auto;
|
|
2007
|
+
.rxbeqvl.ant-radio-wrapper.compact .ant-radio + span {
|
|
2008
|
+
padding-left: 8px;
|
|
2005
2009
|
}
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2010
|
+
|
|
2011
|
+
.r5ie79y .ant-radio-button-wrapper:first-child {
|
|
2012
|
+
border-radius: 5px 0 0 5px;
|
|
2013
|
+
}
|
|
2014
|
+
.r5ie79y .ant-radio-button-wrapper:last-child {
|
|
2015
|
+
border-radius: 0 5px 5px 0;
|
|
2009
2016
|
}
|
|
2010
2017
|
|
|
2011
|
-
.
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
max-width: 1024px;
|
|
2018
|
+
.r1f0aqcc {
|
|
2019
|
+
color: #00122e;
|
|
2020
|
+
border-color: #ccd4e3;
|
|
2015
2021
|
}
|
|
2016
|
-
.
|
|
2017
|
-
|
|
2022
|
+
.r1f0aqcc:first-child {
|
|
2023
|
+
border-color: #a3b4cc;
|
|
2018
2024
|
}
|
|
2019
|
-
.
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
max-width: 1024px;
|
|
2024
|
-
overflow: hidden;
|
|
2025
|
+
.r1f0aqcc.ant-radio-button-wrapper {
|
|
2026
|
+
padding: 0 12px;
|
|
2027
|
+
line-height: 32px;
|
|
2028
|
+
height: 32px;
|
|
2025
2029
|
}
|
|
2026
|
-
.
|
|
2027
|
-
|
|
2030
|
+
.r1f0aqcc.ant-radio-button-wrapper > span + span {
|
|
2031
|
+
white-space: nowrap;
|
|
2028
2032
|
}
|
|
2029
|
-
.
|
|
2030
|
-
|
|
2031
|
-
overflow-y: auto;
|
|
2033
|
+
.r1f0aqcc.ant-radio-button-wrapper:not(:first-child)::before {
|
|
2034
|
+
background: #ccd4e3;
|
|
2032
2035
|
}
|
|
2033
|
-
.
|
|
2034
|
-
|
|
2035
|
-
max-width: 1024px;
|
|
2036
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
2037
|
+
background: #0080ff;
|
|
2036
2038
|
}
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2039
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
2040
|
+
background: #ccd4e3;
|
|
2041
|
+
opacity: 0.5;
|
|
2040
2042
|
}
|
|
2041
|
-
.
|
|
2042
|
-
|
|
2043
|
-
line-height: 20px;
|
|
2044
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2043
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
2044
|
+
border-right-color: #0080ff;
|
|
2045
2045
|
}
|
|
2046
|
-
.
|
|
2047
|
-
|
|
2048
|
-
line-height: 20px;
|
|
2049
|
-
color: #2d3a56;
|
|
2050
|
-
margin-bottom: 12px;
|
|
2046
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
2047
|
+
border-color: #0080ff;
|
|
2051
2048
|
}
|
|
2052
|
-
.
|
|
2053
|
-
|
|
2049
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked {
|
|
2050
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2054
2051
|
}
|
|
2055
|
-
|
|
2056
|
-
.
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
margin-bottom: 16px;
|
|
2052
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled {
|
|
2053
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2054
|
+
border-color: #ccd4e3;
|
|
2055
|
+
opacity: 0.5;
|
|
2060
2056
|
}
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
align-items: center;
|
|
2065
|
-
margin-bottom: 8px;
|
|
2057
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled:hover {
|
|
2058
|
+
color: #00122e;
|
|
2059
|
+
border-color: #ccd4e3;
|
|
2066
2060
|
}
|
|
2067
|
-
.
|
|
2068
|
-
|
|
2061
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
2062
|
+
color: #00122e;
|
|
2063
|
+
border-color: #ccd4e3;
|
|
2064
|
+
background: rgba(172, 186, 211, 0.6);
|
|
2069
2065
|
}
|
|
2070
|
-
.
|
|
2071
|
-
|
|
2066
|
+
.r1f0aqcc .ant-radio-button-input {
|
|
2067
|
+
margin-right: 8px;
|
|
2068
|
+
display: inline;
|
|
2069
|
+
border: none;
|
|
2070
|
+
padding: 0;
|
|
2071
|
+
width: 36px;
|
|
2072
|
+
background: transparent;
|
|
2072
2073
|
}
|
|
2073
|
-
.
|
|
2074
|
-
|
|
2074
|
+
.r1f0aqcc .ant-radio-button-input:focus {
|
|
2075
|
+
box-shadow: none;
|
|
2075
2076
|
}
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2077
|
+
.r1f0aqcc .ant-radio-button-input.ant-input-number {
|
|
2078
|
+
margin-right: 0;
|
|
2079
|
+
width: initial;
|
|
2080
|
+
box-shadow: none;
|
|
2080
2081
|
}
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
width: 100%;
|
|
2084
|
-
height: 1px;
|
|
2085
|
-
background: rgba(213, 219, 227, 0.6);
|
|
2086
|
-
margin: 24px 0;
|
|
2082
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
2083
|
+
display: none;
|
|
2087
2084
|
}
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
display: flex;
|
|
2091
|
-
justify-content: center;
|
|
2092
|
-
align-items: center;
|
|
2093
|
-
height: 100%;
|
|
2085
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap {
|
|
2086
|
+
display: inline;
|
|
2094
2087
|
}
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
background: #8e9aa9;
|
|
2101
|
-
opacity: 0.4;
|
|
2102
|
-
border-radius: 50%;
|
|
2103
|
-
margin: 0 4px;
|
|
2088
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
2089
|
+
display: inline;
|
|
2090
|
+
margin-right: 8px;
|
|
2091
|
+
padding: 0;
|
|
2092
|
+
width: 36px;
|
|
2104
2093
|
}
|
|
2105
2094
|
|
|
2106
|
-
.
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
margin: 0 auto;
|
|
2110
|
-
}
|
|
2111
|
-
.m1jy87hk .ant-modal-header {
|
|
2112
|
-
padding: 35px 0 24px;
|
|
2113
|
-
border: none;
|
|
2095
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2096
|
+
flex-direction: row;
|
|
2097
|
+
justify-content: stretch;
|
|
2114
2098
|
}
|
|
2115
|
-
.
|
|
2116
|
-
|
|
2099
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2100
|
+
padding: 0;
|
|
2101
|
+
margin-right: 4px;
|
|
2102
|
+
flex: 1;
|
|
2103
|
+
overflow: visible;
|
|
2117
2104
|
}
|
|
2118
|
-
.
|
|
2119
|
-
|
|
2105
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2106
|
+
display: none;
|
|
2120
2107
|
}
|
|
2121
|
-
.
|
|
2122
|
-
|
|
2108
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2109
|
+
width: 100%;
|
|
2110
|
+
min-height: unset;
|
|
2123
2111
|
}
|
|
2124
|
-
|
|
2125
|
-
|
|
2112
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2113
|
+
height: 26px;
|
|
2114
|
+
line-height: 26px;
|
|
2115
|
+
width: 100%;
|
|
2116
|
+
text-align: center;
|
|
2117
|
+
padding: 0;
|
|
2126
2118
|
font-size: 12px;
|
|
2127
|
-
|
|
2128
|
-
font-weight: bold;
|
|
2129
|
-
color: #fff;
|
|
2130
|
-
padding: 0 4px;
|
|
2131
|
-
border-radius: 4px;
|
|
2132
|
-
display: inline-block;
|
|
2133
|
-
background: var(--ti7fpyu-0);
|
|
2119
|
+
font-weight: normal;
|
|
2134
2120
|
}
|
|
2135
|
-
.
|
|
2136
|
-
margin-
|
|
2121
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2122
|
+
margin-right: 10px;
|
|
2137
2123
|
}
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
width: 100%;
|
|
2141
|
-
height: 100%;
|
|
2142
|
-
display: flex;
|
|
2143
|
-
align-items: center;
|
|
2144
|
-
justify-content: center;
|
|
2124
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2125
|
+
display: none;
|
|
2145
2126
|
}
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
font-size: 90%;
|
|
2149
|
-
font-weight: bold;
|
|
2150
|
-
background-color: rgba(240, 243, 247, 0.6);
|
|
2151
|
-
padding: 1px 4px 1px;
|
|
2152
|
-
margin-left: 2px;
|
|
2153
|
-
margin-right: 2px;
|
|
2154
|
-
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
2155
|
-
border-radius: 4px;
|
|
2127
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2128
|
+
border-radius: 4px 0 0 4px;
|
|
2156
2129
|
}
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
width: 640px;
|
|
2130
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2131
|
+
margin-right: 0;
|
|
2160
2132
|
}
|
|
2161
|
-
.
|
|
2162
|
-
|
|
2133
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2134
|
+
border-radius: 0 4px 4px 0;
|
|
2163
2135
|
}
|
|
2164
|
-
.
|
|
2165
|
-
|
|
2136
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
2137
|
+
content: "";
|
|
2138
|
+
width: 0;
|
|
2139
|
+
height: 0;
|
|
2140
|
+
border: 13px solid transparent;
|
|
2141
|
+
position: absolute;
|
|
2142
|
+
top: 0;
|
|
2143
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2144
|
+
right: -21px;
|
|
2145
|
+
z-index: 2;
|
|
2166
2146
|
}
|
|
2167
|
-
.
|
|
2168
|
-
|
|
2147
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2148
|
+
content: "";
|
|
2149
|
+
width: 0;
|
|
2150
|
+
height: 0;
|
|
2151
|
+
border: 13px solid transparent;
|
|
2152
|
+
position: absolute;
|
|
2153
|
+
top: 0;
|
|
2154
|
+
border-left: 8px solid #fff;
|
|
2155
|
+
left: 0;
|
|
2169
2156
|
}
|
|
2170
|
-
.
|
|
2171
|
-
|
|
2157
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2158
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2172
2159
|
}
|
|
2173
|
-
.
|
|
2174
|
-
|
|
2175
|
-
display: flex;
|
|
2160
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2161
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2176
2162
|
}
|
|
2177
|
-
.
|
|
2178
|
-
|
|
2179
|
-
width: 100%;
|
|
2180
|
-
padding: 14px;
|
|
2181
|
-
background: #f2f4f6;
|
|
2182
|
-
font-size: 13px;
|
|
2183
|
-
line-height: 1.8;
|
|
2184
|
-
color: #8e9aa9;
|
|
2163
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2164
|
+
color: #005ed1;
|
|
2185
2165
|
}
|
|
2186
|
-
.
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2166
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2167
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2168
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2190
2169
|
}
|
|
2191
|
-
.
|
|
2192
|
-
|
|
2170
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2171
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2172
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2193
2173
|
}
|
|
2194
|
-
.
|
|
2195
|
-
|
|
2196
|
-
line-height: 32px;
|
|
2174
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2175
|
+
padding: 0;
|
|
2197
2176
|
}
|
|
2198
|
-
|
|
2199
|
-
|
|
2177
|
+
|
|
2178
|
+
.cz04yix {
|
|
2179
|
+
display: flex;
|
|
2180
|
+
flex-direction: column;
|
|
2200
2181
|
}
|
|
2201
|
-
|
|
2182
|
+
|
|
2183
|
+
.m1if5j39 {
|
|
2184
|
+
max-width: 1120px;
|
|
2202
2185
|
width: 100%;
|
|
2186
|
+
margin: 0 auto;
|
|
2187
|
+
height: 100%;
|
|
2203
2188
|
}
|
|
2204
|
-
|
|
2189
|
+
|
|
2190
|
+
.w1vvwdlp {
|
|
2191
|
+
max-width: 1120px;
|
|
2205
2192
|
width: 100%;
|
|
2193
|
+
margin: 0 auto;
|
|
2194
|
+
display: flex;
|
|
2206
2195
|
}
|
|
2207
|
-
.
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2196
|
+
.w1vvwdlp .left,
|
|
2197
|
+
.w1vvwdlp .right {
|
|
2198
|
+
flex-grow: 0;
|
|
2199
|
+
flex-shrink: 0;
|
|
2200
|
+
flex-basis: 21%;
|
|
2211
2201
|
}
|
|
2212
|
-
.
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2202
|
+
.w1vvwdlp .left {
|
|
2203
|
+
display: flex;
|
|
2204
|
+
justify-content: flex-end;
|
|
2205
|
+
padding-right: 44px;
|
|
2216
2206
|
}
|
|
2217
|
-
.
|
|
2218
|
-
|
|
2219
|
-
border: 1px solid #e75a3a;
|
|
2220
|
-
color: #e75a3a;
|
|
2207
|
+
.w1vvwdlp .right {
|
|
2208
|
+
padding-left: 44px;
|
|
2221
2209
|
}
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
2228
|
-
margin-bottom: 16px;
|
|
2210
|
+
.w1vvwdlp .middle {
|
|
2211
|
+
margin-bottom: 40px;
|
|
2212
|
+
flex-grow: 0;
|
|
2213
|
+
flex-shrink: 0;
|
|
2214
|
+
flex-basis: 58%;
|
|
2229
2215
|
}
|
|
2230
|
-
.
|
|
2231
|
-
|
|
2216
|
+
.w1vvwdlp .middle .form-base-field {
|
|
2217
|
+
width: 100%;
|
|
2232
2218
|
}
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2219
|
+
.w1vvwdlp .middle .form-base-field .form-base-field {
|
|
2220
|
+
width: auto;
|
|
2221
|
+
}
|
|
2222
|
+
.w1vvwdlp .ant-steps-vertical .ant-steps-item {
|
|
2223
|
+
flex: initial;
|
|
2224
|
+
}
|
|
2225
|
+
.w1vvwdlp .ant-steps-item + .ant-steps-item {
|
|
2226
|
+
margin-top: 4px;
|
|
2227
|
+
}
|
|
2228
|
+
.w1vvwdlp .ant-steps-item-icon,
|
|
2229
|
+
.w1vvwdlp .ant-steps-item-tail {
|
|
2230
|
+
display: none !important;
|
|
2231
|
+
}
|
|
2232
|
+
.w1vvwdlp .ant-steps-item-container {
|
|
2233
|
+
padding: 0 15px;
|
|
2234
|
+
border-radius: 4px;
|
|
2235
|
+
height: 32px;
|
|
2237
2236
|
display: flex;
|
|
2238
|
-
justify-content: center;
|
|
2239
2237
|
align-items: center;
|
|
2240
|
-
cursor: pointer;
|
|
2241
|
-
transition: all 200ms ease-out 40ms;
|
|
2242
2238
|
}
|
|
2243
|
-
.
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
height: 6px;
|
|
2247
|
-
border-radius: 1px;
|
|
2248
|
-
background: #ccd4e3;
|
|
2249
|
-
position: relative;
|
|
2250
|
-
right: 2px;
|
|
2251
|
-
transform: rotate(-45deg);
|
|
2239
|
+
.w1vvwdlp .ant-steps-item-container .ant-steps-item-content {
|
|
2240
|
+
min-height: auto;
|
|
2241
|
+
white-space: nowrap;
|
|
2252
2242
|
}
|
|
2253
|
-
.
|
|
2254
|
-
|
|
2255
|
-
left: 1px;
|
|
2243
|
+
.w1vvwdlp .ant-steps-item-description {
|
|
2244
|
+
padding-bottom: 0px;
|
|
2256
2245
|
}
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
background: rgba(255, 187, 0, 0.1);
|
|
2261
|
-
border-radius: 6px;
|
|
2246
|
+
.w1vvwdlp .ant-steps-item-title {
|
|
2247
|
+
font-size: 13px !important;
|
|
2248
|
+
line-height: 20px !important;
|
|
2262
2249
|
}
|
|
2263
|
-
.
|
|
2264
|
-
|
|
2265
|
-
|
|
2250
|
+
.w1vvwdlp .ant-steps-item-title .step-index {
|
|
2251
|
+
display: inline-block;
|
|
2252
|
+
text-align: center;
|
|
2253
|
+
width: 13px;
|
|
2254
|
+
margin-right: 12px;
|
|
2266
2255
|
}
|
|
2267
|
-
.
|
|
2268
|
-
|
|
2269
|
-
border-bottom-color: #e07f00;
|
|
2256
|
+
.w1vvwdlp .ant-steps-item-active .ant-steps-item-container {
|
|
2257
|
+
background: rgba(0, 128, 255, 0.1);
|
|
2270
2258
|
}
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
display: flex;
|
|
2274
|
-
flex-direction: row;
|
|
2275
|
-
padding: 7px 12px;
|
|
2276
|
-
background: rgba(255, 187, 0, 0.1);
|
|
2277
|
-
border-radius: 6px;
|
|
2278
|
-
color: #e07f00;
|
|
2279
|
-
font-size: 12px;
|
|
2280
|
-
line-height: 18px;
|
|
2259
|
+
.w1vvwdlp .ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
2260
|
+
color: #005ed1;
|
|
2281
2261
|
}
|
|
2282
|
-
.
|
|
2283
|
-
|
|
2284
|
-
height: 18px;
|
|
2262
|
+
.w1vvwdlp .ant-steps-item-finish .ant-steps-item-container {
|
|
2263
|
+
background: rgba(237, 241, 250, 0.6);
|
|
2285
2264
|
}
|
|
2286
|
-
|
|
2287
|
-
.
|
|
2288
|
-
display: flex;
|
|
2289
|
-
flex-direction: row;
|
|
2290
|
-
padding: 7px 12px;
|
|
2291
|
-
background: rgba(225, 230, 241, 0.6);
|
|
2292
|
-
border-radius: 6px;
|
|
2293
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2294
|
-
font-size: 12px;
|
|
2295
|
-
line-height: 18px;
|
|
2265
|
+
.w1vvwdlp .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
2266
|
+
color: rgba(10, 37, 85, 0.6) !important;
|
|
2296
2267
|
}
|
|
2297
|
-
.
|
|
2298
|
-
|
|
2299
|
-
height: 18px;
|
|
2268
|
+
.w1vvwdlp .ant-steps-item-disabled {
|
|
2269
|
+
cursor: not-allowed;
|
|
2300
2270
|
}
|
|
2301
|
-
|
|
2302
|
-
.
|
|
2303
|
-
display: flex;
|
|
2304
|
-
flex-direction: row;
|
|
2305
|
-
padding: 7px 12px;
|
|
2306
|
-
background: rgba(0, 136, 255, 0.1);
|
|
2307
|
-
border-radius: 6px;
|
|
2308
|
-
color: #005ed1;
|
|
2309
|
-
font-size: 12px;
|
|
2310
|
-
line-height: 18px;
|
|
2271
|
+
.w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container {
|
|
2272
|
+
background: rgba(237, 241, 250, 0.6);
|
|
2311
2273
|
}
|
|
2312
|
-
.
|
|
2313
|
-
|
|
2314
|
-
height: 18px;
|
|
2274
|
+
.w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
2275
|
+
color: #2d3a56;
|
|
2315
2276
|
}
|
|
2316
2277
|
|
|
2317
|
-
.
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
line-height: 18px;
|
|
2278
|
+
.h1cuopx7 .ant-modal-header {
|
|
2279
|
+
margin: 0 auto;
|
|
2280
|
+
width: 100%;
|
|
2281
|
+
max-width: 648px;
|
|
2322
2282
|
}
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
color: #f0483e;
|
|
2326
|
-
font-size: 12px;
|
|
2327
|
-
white-space: pre-wrap;
|
|
2283
|
+
.h1cuopx7 .ant-modal-header .ant-modal-title {
|
|
2284
|
+
margin-left: 0;
|
|
2328
2285
|
}
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2286
|
+
.h1cuopx7 .ant-modal-body {
|
|
2287
|
+
margin: 0 auto;
|
|
2288
|
+
padding: 0;
|
|
2289
|
+
width: 100%;
|
|
2290
|
+
max-width: 648px;
|
|
2291
|
+
overflow: hidden;
|
|
2334
2292
|
}
|
|
2335
|
-
.
|
|
2336
|
-
margin-
|
|
2293
|
+
.h1cuopx7 .ant-modal-body .horizontal-steps-wrapper {
|
|
2294
|
+
margin-bottom: 40px;
|
|
2337
2295
|
}
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2296
|
+
.h1cuopx7 .ant-modal-body .horizontal-content-wrapper {
|
|
2297
|
+
height: calc(100vh - 225px);
|
|
2298
|
+
overflow-y: auto;
|
|
2341
2299
|
}
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
line-height: 20px;
|
|
2346
|
-
color: #2d3a56;
|
|
2347
|
-
border-radius: 6px;
|
|
2348
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
2349
|
-
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
2300
|
+
.h1cuopx7 .ant-modal-footer .footer-content {
|
|
2301
|
+
margin: 0 auto;
|
|
2302
|
+
max-width: 648px;
|
|
2350
2303
|
}
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2304
|
+
|
|
2305
|
+
.h1p6d3y3 .ant-modal-header {
|
|
2306
|
+
margin: 0 auto;
|
|
2307
|
+
width: 100%;
|
|
2308
|
+
max-width: 1024px;
|
|
2354
2309
|
}
|
|
2355
|
-
.
|
|
2356
|
-
|
|
2357
|
-
line-height: 18px;
|
|
2310
|
+
.h1p6d3y3 .ant-modal-header .ant-modal-title {
|
|
2311
|
+
margin-left: 0;
|
|
2358
2312
|
}
|
|
2359
|
-
.
|
|
2360
|
-
|
|
2361
|
-
|
|
2313
|
+
.h1p6d3y3 .ant-modal-body {
|
|
2314
|
+
margin: 0 auto;
|
|
2315
|
+
padding: 0;
|
|
2316
|
+
width: 100%;
|
|
2317
|
+
max-width: 1024px;
|
|
2318
|
+
overflow: hidden;
|
|
2362
2319
|
}
|
|
2363
|
-
.
|
|
2364
|
-
|
|
2365
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
2320
|
+
.h1p6d3y3 .ant-modal-body .horizontal-steps-wrapper {
|
|
2321
|
+
margin-bottom: 40px;
|
|
2366
2322
|
}
|
|
2367
|
-
.
|
|
2368
|
-
|
|
2369
|
-
|
|
2323
|
+
.h1p6d3y3 .ant-modal-body .horizontal-content-wrapper {
|
|
2324
|
+
height: calc(100vh - 225px);
|
|
2325
|
+
overflow-y: auto;
|
|
2370
2326
|
}
|
|
2371
|
-
.
|
|
2372
|
-
|
|
2373
|
-
|
|
2327
|
+
.h1p6d3y3 .ant-modal-footer .footer-content {
|
|
2328
|
+
margin: 0 auto;
|
|
2329
|
+
max-width: 1024px;
|
|
2374
2330
|
}
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2331
|
+
|
|
2332
|
+
.fxgckuk {
|
|
2333
|
+
flex: 1;
|
|
2378
2334
|
}
|
|
2379
|
-
.
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2335
|
+
.fxgckuk label {
|
|
2336
|
+
font-size: 13px;
|
|
2337
|
+
line-height: 20px;
|
|
2338
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2383
2339
|
}
|
|
2384
|
-
.
|
|
2385
|
-
|
|
2386
|
-
border-radius: 6px;
|
|
2387
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
2340
|
+
.fxgckuk .title {
|
|
2341
|
+
font-size: 14px;
|
|
2388
2342
|
line-height: 20px;
|
|
2389
2343
|
color: #2d3a56;
|
|
2390
|
-
|
|
2344
|
+
margin-bottom: 12px;
|
|
2391
2345
|
}
|
|
2392
|
-
.
|
|
2393
|
-
|
|
2394
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2346
|
+
.fxgckuk.connect-cluster .title {
|
|
2347
|
+
padding-bottom: 26px;
|
|
2395
2348
|
}
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2349
|
+
|
|
2350
|
+
.f1d0vek1 {
|
|
2351
|
+
padding: 25px 0 15px 0;
|
|
2352
|
+
border-bottom: 1px solid #e1e5eb;
|
|
2353
|
+
margin-bottom: 16px;
|
|
2399
2354
|
}
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2355
|
+
|
|
2356
|
+
.f4u402y {
|
|
2357
|
+
display: flex;
|
|
2358
|
+
align-items: center;
|
|
2359
|
+
margin-bottom: 8px;
|
|
2403
2360
|
}
|
|
2404
|
-
.
|
|
2405
|
-
|
|
2406
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
2361
|
+
.f4u402y > label {
|
|
2362
|
+
width: 216px;
|
|
2407
2363
|
}
|
|
2408
|
-
.
|
|
2409
|
-
|
|
2410
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
2364
|
+
.f4u402y > label + * {
|
|
2365
|
+
width: 100%;
|
|
2411
2366
|
}
|
|
2412
|
-
.
|
|
2413
|
-
|
|
2367
|
+
.f4u402y .ant-select {
|
|
2368
|
+
width: 100%;
|
|
2414
2369
|
}
|
|
2415
|
-
|
|
2370
|
+
|
|
2371
|
+
.e1pldf6v {
|
|
2416
2372
|
color: #e75a3a;
|
|
2373
|
+
margin-right: 10px;
|
|
2417
2374
|
}
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2375
|
+
|
|
2376
|
+
.dq0gblh {
|
|
2377
|
+
width: 100%;
|
|
2378
|
+
height: 1px;
|
|
2379
|
+
background: rgba(213, 219, 227, 0.6);
|
|
2380
|
+
margin: 24px 0;
|
|
2421
2381
|
}
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2382
|
+
|
|
2383
|
+
.l1v7sr0n {
|
|
2384
|
+
display: flex;
|
|
2385
|
+
justify-content: center;
|
|
2386
|
+
align-items: center;
|
|
2387
|
+
height: 100%;
|
|
2425
2388
|
}
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2389
|
+
|
|
2390
|
+
.d1i4ou6o {
|
|
2391
|
+
display: inline-block;
|
|
2392
|
+
width: 4px;
|
|
2393
|
+
height: 4px;
|
|
2394
|
+
background: #8e9aa9;
|
|
2395
|
+
opacity: 0.4;
|
|
2396
|
+
border-radius: 50%;
|
|
2397
|
+
margin: 0 4px;
|
|
2430
2398
|
}
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2399
|
+
|
|
2400
|
+
.m1jy87hk .ant-modal-header,
|
|
2401
|
+
.m1jy87hk .ant-modal-footer .footer-content {
|
|
2402
|
+
width: 648px;
|
|
2403
|
+
margin: 0 auto;
|
|
2434
2404
|
}
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2405
|
+
.m1jy87hk .ant-modal-header {
|
|
2406
|
+
padding: 35px 0 24px;
|
|
2407
|
+
border: none;
|
|
2438
2408
|
}
|
|
2439
|
-
|
|
2440
|
-
|
|
2409
|
+
.m1jy87hk .ant-modal-header .ant-modal-title {
|
|
2410
|
+
font-size: 30px;
|
|
2441
2411
|
}
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2412
|
+
.m1jy87hk .ant-modal-body {
|
|
2413
|
+
padding: 4px 0 2px;
|
|
2414
|
+
}
|
|
2415
|
+
.m1jy87hk .ant-modal-footer {
|
|
2416
|
+
border: none;
|
|
2445
2417
|
}
|
|
2446
|
-
|
|
2447
|
-
|
|
2418
|
+
|
|
2419
|
+
.ti7fpyu {
|
|
2420
|
+
font-size: 12px;
|
|
2421
|
+
line-height: 18px;
|
|
2422
|
+
font-weight: bold;
|
|
2423
|
+
color: #fff;
|
|
2424
|
+
padding: 0 4px;
|
|
2425
|
+
border-radius: 4px;
|
|
2426
|
+
display: inline-block;
|
|
2427
|
+
background: var(--ti7fpyu-0);
|
|
2448
2428
|
}
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
height: 24px;
|
|
2429
|
+
.ti7fpyu:not(:first-child) {
|
|
2430
|
+
margin-left: 4px;
|
|
2452
2431
|
}
|
|
2453
|
-
|
|
2454
|
-
|
|
2432
|
+
|
|
2433
|
+
.f1rest1f {
|
|
2434
|
+
width: 100%;
|
|
2435
|
+
height: 100%;
|
|
2436
|
+
display: flex;
|
|
2437
|
+
align-items: center;
|
|
2438
|
+
justify-content: center;
|
|
2455
2439
|
}
|
|
2456
2440
|
|
|
2457
|
-
.
|
|
2441
|
+
.n1kbdoln {
|
|
2442
|
+
font-size: 90%;
|
|
2443
|
+
font-weight: bold;
|
|
2444
|
+
background-color: rgba(240, 243, 247, 0.6);
|
|
2445
|
+
padding: 1px 4px 1px;
|
|
2446
|
+
margin-left: 2px;
|
|
2447
|
+
margin-right: 2px;
|
|
2458
2448
|
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
2459
2449
|
border-radius: 4px;
|
|
2460
2450
|
}
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
height: 32px;
|
|
2465
|
-
cursor: pointer;
|
|
2466
|
-
transition: border 150ms;
|
|
2467
|
-
}
|
|
2468
|
-
.kypn5o5.input-tags:hover {
|
|
2469
|
-
border-color: #0080ff;
|
|
2470
|
-
box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
|
|
2451
|
+
|
|
2452
|
+
.f1y3gta0.form-item-general {
|
|
2453
|
+
width: 640px;
|
|
2471
2454
|
}
|
|
2472
|
-
.
|
|
2473
|
-
|
|
2455
|
+
.f1y3gta0.form-item-general.form-item + .f1y3gta0.form-item-general.form-item {
|
|
2456
|
+
margin-top: 16px;
|
|
2474
2457
|
}
|
|
2475
|
-
.
|
|
2476
|
-
|
|
2458
|
+
.f1y3gta0.form-item-compact {
|
|
2459
|
+
width: 412px;
|
|
2477
2460
|
}
|
|
2478
|
-
.
|
|
2479
|
-
|
|
2461
|
+
.f1y3gta0.form-item-compact.form-item + .f1y3gta0.form-item-compact.form-item {
|
|
2462
|
+
margin-top: 8px;
|
|
2480
2463
|
}
|
|
2481
|
-
.
|
|
2482
|
-
|
|
2483
|
-
right: 12px;
|
|
2484
|
-
top: 50%;
|
|
2485
|
-
transform: translateY(-50%);
|
|
2464
|
+
.f1y3gta0 .form-item {
|
|
2465
|
+
width: auto;
|
|
2486
2466
|
}
|
|
2487
|
-
.
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
cursor: pointer;
|
|
2467
|
+
.f1y3gta0 .form-item-main {
|
|
2468
|
+
position: relative;
|
|
2469
|
+
display: flex;
|
|
2491
2470
|
}
|
|
2492
|
-
.
|
|
2493
|
-
|
|
2471
|
+
.f1y3gta0 .form-item-extra {
|
|
2472
|
+
margin-top: 4px;
|
|
2473
|
+
width: 100%;
|
|
2474
|
+
padding: 14px;
|
|
2475
|
+
background: #f2f4f6;
|
|
2476
|
+
font-size: 13px;
|
|
2477
|
+
line-height: 1.8;
|
|
2478
|
+
color: #8e9aa9;
|
|
2494
2479
|
}
|
|
2495
|
-
.
|
|
2496
|
-
|
|
2497
|
-
|
|
2480
|
+
.f1y3gta0 .form-item-label {
|
|
2481
|
+
padding-right: 12px;
|
|
2482
|
+
font-size: 13px;
|
|
2483
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2498
2484
|
}
|
|
2499
|
-
.
|
|
2500
|
-
|
|
2501
|
-
top: 50%;
|
|
2502
|
-
transform: translateY(-50%);
|
|
2503
|
-
left: -16px;
|
|
2504
|
-
transition: left 150ms ease;
|
|
2505
|
-
opacity: 0;
|
|
2485
|
+
.f1y3gta0 .form-item-label.label-right {
|
|
2486
|
+
text-align: right;
|
|
2506
2487
|
}
|
|
2507
|
-
.
|
|
2508
|
-
|
|
2509
|
-
|
|
2488
|
+
.f1y3gta0 .form-item-label,
|
|
2489
|
+
.f1y3gta0 .form-item-control {
|
|
2490
|
+
line-height: 32px;
|
|
2510
2491
|
}
|
|
2511
|
-
.
|
|
2512
|
-
|
|
2513
|
-
margin-left: 0px;
|
|
2492
|
+
.f1y3gta0 .form-item-control .form-item-error {
|
|
2493
|
+
line-height: 18px;
|
|
2514
2494
|
}
|
|
2515
|
-
.
|
|
2516
|
-
|
|
2495
|
+
.f1y3gta0 .form-item-children {
|
|
2496
|
+
width: 100%;
|
|
2517
2497
|
}
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
border-top-right-radius: 0;
|
|
2521
|
-
border-bottom-right-radius: 0;
|
|
2498
|
+
.f1y3gta0 .form-item-children > *:only-child.ant-select, .f1y3gta0 .form-item-children > *:only-child.ant-radio-group, .f1y3gta0 .form-item-children > *:only-child.ant-checkbox-group {
|
|
2499
|
+
width: 100%;
|
|
2522
2500
|
}
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2501
|
+
.f1y3gta0 .form-item-error {
|
|
2502
|
+
color: #e75a3a;
|
|
2503
|
+
height: 0;
|
|
2504
|
+
overflow: hidden;
|
|
2527
2505
|
}
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2506
|
+
.f1y3gta0 .form-item-error-enter-done {
|
|
2507
|
+
margin-top: 4px;
|
|
2508
|
+
height: auto;
|
|
2509
|
+
overflow: auto;
|
|
2532
2510
|
}
|
|
2533
|
-
|
|
2534
|
-
.
|
|
2535
|
-
border
|
|
2536
|
-
|
|
2511
|
+
.f1y3gta0.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error > input:not(.ant-input),
|
|
2512
|
+
.f1y3gta0.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error :not(.ant-select) input {
|
|
2513
|
+
border: 1px solid #e75a3a;
|
|
2514
|
+
color: #e75a3a;
|
|
2537
2515
|
}
|
|
2538
2516
|
|
|
2539
|
-
.
|
|
2540
|
-
|
|
2541
|
-
|
|
2517
|
+
.fujbm7g {
|
|
2518
|
+
color: #2d3a56;
|
|
2519
|
+
font-weight: bold;
|
|
2520
|
+
padding-bottom: 6px;
|
|
2521
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
2522
|
+
margin-bottom: 16px;
|
|
2542
2523
|
}
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
border-top-left-radius: 0;
|
|
2546
|
-
border-bottom-left-radius: 0;
|
|
2524
|
+
.fujbm7g:not(:first-of-type) {
|
|
2525
|
+
margin-top: 16px;
|
|
2547
2526
|
}
|
|
2548
2527
|
|
|
2549
|
-
.
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2528
|
+
.e5fsw5s {
|
|
2529
|
+
width: 8px;
|
|
2530
|
+
height: 24px;
|
|
2531
|
+
display: flex;
|
|
2532
|
+
justify-content: center;
|
|
2533
|
+
align-items: center;
|
|
2534
|
+
cursor: pointer;
|
|
2535
|
+
transition: all 200ms ease-out 40ms;
|
|
2553
2536
|
}
|
|
2554
|
-
.
|
|
2537
|
+
.e5fsw5s:before, .e5fsw5s:after {
|
|
2538
|
+
content: "";
|
|
2539
|
+
width: 1px;
|
|
2540
|
+
height: 6px;
|
|
2541
|
+
border-radius: 1px;
|
|
2542
|
+
background: #ccd4e3;
|
|
2555
2543
|
position: relative;
|
|
2556
|
-
|
|
2544
|
+
right: 2px;
|
|
2545
|
+
transform: rotate(-45deg);
|
|
2557
2546
|
}
|
|
2558
|
-
.
|
|
2559
|
-
|
|
2547
|
+
.e5fsw5s:after {
|
|
2548
|
+
transform: rotate(45deg);
|
|
2549
|
+
left: 1px;
|
|
2560
2550
|
}
|
|
2561
|
-
|
|
2562
|
-
|
|
2551
|
+
|
|
2552
|
+
.w18knsg4.ant-alert-warning {
|
|
2553
|
+
border: 0;
|
|
2554
|
+
background: rgba(255, 187, 0, 0.1);
|
|
2555
|
+
border-radius: 6px;
|
|
2563
2556
|
}
|
|
2564
|
-
.
|
|
2565
|
-
|
|
2566
|
-
|
|
2557
|
+
.w18knsg4.ant-alert,
|
|
2558
|
+
.w18knsg4 .ant-alert-message {
|
|
2559
|
+
color: #e07f00;
|
|
2567
2560
|
}
|
|
2568
|
-
.
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
width: 6px;
|
|
2572
|
-
height: 6px;
|
|
2573
|
-
background: #fff;
|
|
2561
|
+
.w18knsg4.ant-alert .dashed-border-bottom,
|
|
2562
|
+
.w18knsg4 .ant-alert-message .dashed-border-bottom {
|
|
2563
|
+
border-bottom-color: #e07f00;
|
|
2574
2564
|
}
|
|
2575
|
-
|
|
2576
|
-
|
|
2565
|
+
|
|
2566
|
+
.ng31n2o {
|
|
2567
|
+
display: flex;
|
|
2568
|
+
flex-direction: row;
|
|
2569
|
+
padding: 7px 12px;
|
|
2570
|
+
background: rgba(255, 187, 0, 0.1);
|
|
2571
|
+
border-radius: 6px;
|
|
2572
|
+
color: #e07f00;
|
|
2573
|
+
font-size: 12px;
|
|
2574
|
+
line-height: 18px;
|
|
2577
2575
|
}
|
|
2578
|
-
.
|
|
2579
|
-
|
|
2580
|
-
|
|
2576
|
+
.ng31n2o .icon-wrapper {
|
|
2577
|
+
margin-right: 10px;
|
|
2578
|
+
height: 18px;
|
|
2581
2579
|
}
|
|
2582
|
-
|
|
2583
|
-
|
|
2580
|
+
|
|
2581
|
+
.n15x5f5y {
|
|
2582
|
+
display: flex;
|
|
2583
|
+
flex-direction: row;
|
|
2584
|
+
padding: 7px 12px;
|
|
2585
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2586
|
+
border-radius: 6px;
|
|
2587
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2588
|
+
font-size: 12px;
|
|
2589
|
+
line-height: 18px;
|
|
2584
2590
|
}
|
|
2585
|
-
.
|
|
2586
|
-
|
|
2587
|
-
|
|
2591
|
+
.n15x5f5y .icon-wrapper {
|
|
2592
|
+
margin-right: 10px;
|
|
2593
|
+
height: 18px;
|
|
2588
2594
|
}
|
|
2589
|
-
|
|
2590
|
-
|
|
2595
|
+
|
|
2596
|
+
.i16ozz3f {
|
|
2597
|
+
display: flex;
|
|
2598
|
+
flex-direction: row;
|
|
2599
|
+
padding: 7px 12px;
|
|
2600
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2601
|
+
border-radius: 6px;
|
|
2602
|
+
color: #005ed1;
|
|
2603
|
+
font-size: 12px;
|
|
2604
|
+
line-height: 18px;
|
|
2591
2605
|
}
|
|
2592
|
-
.
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
padding-left: 12px;
|
|
2606
|
+
.i16ozz3f .icon-wrapper {
|
|
2607
|
+
margin-right: 10px;
|
|
2608
|
+
height: 18px;
|
|
2596
2609
|
}
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
white-space: pre-wrap;
|
|
2610
|
+
|
|
2611
|
+
.dszu9qr {
|
|
2600
2612
|
color: rgba(44, 56, 82, 0.6);
|
|
2613
|
+
margin-top: 5px;
|
|
2614
|
+
font-size: 12px;
|
|
2615
|
+
line-height: 18px;
|
|
2601
2616
|
}
|
|
2602
|
-
|
|
2603
|
-
|
|
2617
|
+
|
|
2618
|
+
.snxzgx {
|
|
2619
|
+
color: #f0483e;
|
|
2620
|
+
font-size: 12px;
|
|
2621
|
+
white-space: pre-wrap;
|
|
2604
2622
|
}
|
|
2605
2623
|
|
|
2606
|
-
.
|
|
2607
|
-
|
|
2624
|
+
.o1i4orqw {
|
|
2625
|
+
display: flex;
|
|
2626
|
+
align-items: center;
|
|
2627
|
+
justify-content: flex-end;
|
|
2608
2628
|
}
|
|
2609
|
-
.
|
|
2610
|
-
|
|
2629
|
+
.o1i4orqw .icon-wrapper {
|
|
2630
|
+
margin-right: 16px;
|
|
2611
2631
|
}
|
|
2612
2632
|
|
|
2613
|
-
.
|
|
2614
|
-
color:
|
|
2615
|
-
border-color: #ccd4e3;
|
|
2616
|
-
}
|
|
2617
|
-
.r1f0aqcc:first-child {
|
|
2618
|
-
border-color: #a3b4cc;
|
|
2633
|
+
.t79k8o2 {
|
|
2634
|
+
color: rgba(0, 21, 64, 0.3);
|
|
2619
2635
|
}
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
height:
|
|
2636
|
+
|
|
2637
|
+
.ipd9bk.ant-input {
|
|
2638
|
+
padding: 5px 12px;
|
|
2639
|
+
line-height: 20px;
|
|
2640
|
+
color: #2d3a56;
|
|
2641
|
+
border-radius: 6px;
|
|
2642
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
2643
|
+
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
2624
2644
|
}
|
|
2625
|
-
.
|
|
2626
|
-
|
|
2645
|
+
.ipd9bk.ant-input.ant-input-lg {
|
|
2646
|
+
padding: 8px 16px;
|
|
2647
|
+
line-height: 22px;
|
|
2627
2648
|
}
|
|
2628
|
-
.
|
|
2629
|
-
|
|
2649
|
+
.ipd9bk.ant-input.ant-input-sm {
|
|
2650
|
+
padding: 2px 8px;
|
|
2651
|
+
line-height: 18px;
|
|
2630
2652
|
}
|
|
2631
|
-
.
|
|
2632
|
-
|
|
2653
|
+
.ipd9bk.ant-input:not([disabled]):hover, .ipd9bk.ant-input:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-input-number:not([disabled]):hover, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-hover {
|
|
2654
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
2655
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
2633
2656
|
}
|
|
2634
|
-
.
|
|
2635
|
-
|
|
2636
|
-
|
|
2657
|
+
.ipd9bk.ant-input:not([disabled]):active, .ipd9bk.ant-input:not([disabled]):focus, .ipd9bk.ant-input:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-input-number:not([disabled]):active, .ipd9bk.ant-input-number:not([disabled]):focus, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input-number:not([disabled]).__pseudo-states-focus {
|
|
2658
|
+
border-color: #0096ff;
|
|
2659
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
2637
2660
|
}
|
|
2638
|
-
.
|
|
2639
|
-
border-
|
|
2661
|
+
.ipd9bk.ant-input.error:not([disabled]), .ipd9bk.ant-picker.error:not([disabled]), .ipd9bk.ant-input-number.error:not([disabled]) {
|
|
2662
|
+
border-color: #e75a3a;
|
|
2663
|
+
color: #e75a3a;
|
|
2640
2664
|
}
|
|
2641
|
-
.
|
|
2642
|
-
border-color: #
|
|
2665
|
+
.ipd9bk.ant-input.error:not([disabled]):hover, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-picker.error:not([disabled]):hover, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-hover, .ipd9bk.ant-input-number.error:not([disabled]):hover, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-hover {
|
|
2666
|
+
border-color: #e75a3a;
|
|
2667
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
2643
2668
|
}
|
|
2644
|
-
.
|
|
2645
|
-
|
|
2669
|
+
.ipd9bk.ant-input.error:not([disabled]):active, .ipd9bk.ant-input.error:not([disabled]):focus, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input.error:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-picker.error:not([disabled]):active, .ipd9bk.ant-picker.error:not([disabled]):focus, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-picker.error:not([disabled]).__pseudo-states-focus, .ipd9bk.ant-input-number.error:not([disabled]):active, .ipd9bk.ant-input-number.error:not([disabled]):focus, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-active, .ipd9bk.ant-input-number.error:not([disabled]).__pseudo-states-focus {
|
|
2670
|
+
border-color: #e75a3a;
|
|
2671
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
2646
2672
|
}
|
|
2647
|
-
.
|
|
2673
|
+
.ipd9bk.ant-input[disabled], .ipd9bk.ant-input.ant-input-disabled, .ipd9bk.ant-input-number[disabled], .ipd9bk.ant-input-number.ant-input-number-disabled {
|
|
2648
2674
|
background: rgba(211, 218, 235, 0.6);
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
}
|
|
2652
|
-
.r1f0aqcc.ant-radio-button-wrapper-disabled:hover {
|
|
2653
|
-
color: #00122e;
|
|
2654
|
-
border-color: #ccd4e3;
|
|
2655
|
-
}
|
|
2656
|
-
.r1f0aqcc.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
2657
|
-
color: #00122e;
|
|
2658
|
-
border-color: #ccd4e3;
|
|
2659
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2660
|
-
}
|
|
2661
|
-
.r1f0aqcc .ant-radio-button-input {
|
|
2662
|
-
margin-right: 8px;
|
|
2663
|
-
display: inline;
|
|
2664
|
-
border: none;
|
|
2665
|
-
padding: 0;
|
|
2666
|
-
width: 36px;
|
|
2667
|
-
background: transparent;
|
|
2675
|
+
color: rgba(0, 21, 64, 0.3);
|
|
2676
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
2668
2677
|
}
|
|
2669
|
-
.
|
|
2670
|
-
|
|
2678
|
+
.ipd9bk.ant-input-affix-wrapper {
|
|
2679
|
+
padding: 5px 12px;
|
|
2680
|
+
border-radius: 6px;
|
|
2681
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
2682
|
+
line-height: 20px;
|
|
2683
|
+
color: #2d3a56;
|
|
2684
|
+
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
2671
2685
|
}
|
|
2672
|
-
.
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
box-shadow: none;
|
|
2686
|
+
.ipd9bk.ant-input-affix-wrapper .ant-input-suffix,
|
|
2687
|
+
.ipd9bk.ant-input-affix-wrapper .ant-input-prefix {
|
|
2688
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2676
2689
|
}
|
|
2677
|
-
.
|
|
2678
|
-
|
|
2690
|
+
.ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
|
|
2691
|
+
padding: 8px 16px;
|
|
2692
|
+
line-height: 22px;
|
|
2679
2693
|
}
|
|
2680
|
-
.
|
|
2681
|
-
|
|
2694
|
+
.ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
2695
|
+
padding: 2px 8px;
|
|
2696
|
+
line-height: 18px;
|
|
2682
2697
|
}
|
|
2683
|
-
.
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
padding: 0;
|
|
2687
|
-
width: 36px;
|
|
2698
|
+
.ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
2699
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
2700
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
2688
2701
|
}
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
justify-content: stretch;
|
|
2702
|
+
.ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .ipd9bk.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
2703
|
+
border-color: #0096ff;
|
|
2704
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
2693
2705
|
}
|
|
2694
|
-
.
|
|
2695
|
-
|
|
2696
|
-
margin-right: 4px;
|
|
2697
|
-
flex: 1;
|
|
2698
|
-
overflow: visible;
|
|
2706
|
+
.ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
|
|
2707
|
+
border-color: #e75a3a;
|
|
2699
2708
|
}
|
|
2700
|
-
.
|
|
2701
|
-
|
|
2709
|
+
.ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
|
|
2710
|
+
color: #e75a3a;
|
|
2702
2711
|
}
|
|
2703
|
-
.
|
|
2704
|
-
|
|
2705
|
-
|
|
2712
|
+
.ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
2713
|
+
border-color: #e75a3a;
|
|
2714
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
2706
2715
|
}
|
|
2707
|
-
.
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
width: 100%;
|
|
2711
|
-
text-align: center;
|
|
2712
|
-
padding: 0;
|
|
2713
|
-
font-size: 12px;
|
|
2714
|
-
font-weight: normal;
|
|
2716
|
+
.ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .ipd9bk.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
2717
|
+
border-color: #e75a3a;
|
|
2718
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
2715
2719
|
}
|
|
2716
|
-
.
|
|
2717
|
-
|
|
2720
|
+
.ipd9bk.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
|
|
2721
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2722
|
+
color: rgba(0, 21, 64, 0.3);
|
|
2723
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
2718
2724
|
}
|
|
2719
|
-
.
|
|
2720
|
-
|
|
2725
|
+
textarea.ipd9bk.ant-input {
|
|
2726
|
+
transition-property: height;
|
|
2727
|
+
transition-delay: 50ms;
|
|
2721
2728
|
}
|
|
2722
|
-
.
|
|
2723
|
-
|
|
2729
|
+
textarea.ipd9bk.ant-input.textarea-large {
|
|
2730
|
+
min-height: 40px;
|
|
2731
|
+
height: 40px;
|
|
2724
2732
|
}
|
|
2725
|
-
.
|
|
2726
|
-
|
|
2733
|
+
textarea.ipd9bk.ant-input.textarea-large:focus {
|
|
2734
|
+
height: 80px;
|
|
2727
2735
|
}
|
|
2728
|
-
.
|
|
2729
|
-
|
|
2736
|
+
textarea.ipd9bk.ant-input.textarea-middle {
|
|
2737
|
+
min-height: 32px;
|
|
2738
|
+
height: 32px;
|
|
2730
2739
|
}
|
|
2731
|
-
.
|
|
2732
|
-
|
|
2733
|
-
width: 0;
|
|
2734
|
-
height: 0;
|
|
2735
|
-
border: 13px solid transparent;
|
|
2736
|
-
position: absolute;
|
|
2737
|
-
top: 0;
|
|
2738
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2739
|
-
right: -21px;
|
|
2740
|
-
z-index: 2;
|
|
2740
|
+
textarea.ipd9bk.ant-input.textarea-middle:focus {
|
|
2741
|
+
height: 64px;
|
|
2741
2742
|
}
|
|
2742
|
-
.
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
height: 0;
|
|
2746
|
-
border: 13px solid transparent;
|
|
2747
|
-
position: absolute;
|
|
2748
|
-
top: 0;
|
|
2749
|
-
border-left: 8px solid #fff;
|
|
2750
|
-
left: 0;
|
|
2743
|
+
textarea.ipd9bk.ant-input.textarea-small {
|
|
2744
|
+
min-height: 24px;
|
|
2745
|
+
height: 24px;
|
|
2751
2746
|
}
|
|
2752
|
-
.
|
|
2753
|
-
|
|
2747
|
+
textarea.ipd9bk.ant-input.textarea-small:focus {
|
|
2748
|
+
height: 40px;
|
|
2754
2749
|
}
|
|
2755
|
-
|
|
2756
|
-
|
|
2750
|
+
|
|
2751
|
+
.kypn5o5 input, .kypn5o5.input-tags {
|
|
2752
|
+
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
2753
|
+
border-radius: 4px;
|
|
2757
2754
|
}
|
|
2758
|
-
.
|
|
2759
|
-
|
|
2755
|
+
.kypn5o5.input-tags {
|
|
2756
|
+
position: relative;
|
|
2757
|
+
padding: 6px;
|
|
2758
|
+
height: 32px;
|
|
2759
|
+
cursor: pointer;
|
|
2760
|
+
transition: border 150ms;
|
|
2760
2761
|
}
|
|
2761
|
-
.
|
|
2762
|
-
|
|
2763
|
-
|
|
2762
|
+
.kypn5o5.input-tags:hover {
|
|
2763
|
+
border-color: #0080ff;
|
|
2764
|
+
box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
|
|
2764
2765
|
}
|
|
2765
|
-
.
|
|
2766
|
-
|
|
2767
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2766
|
+
.kypn5o5.input-tags.kit-input-suffix-wrapper {
|
|
2767
|
+
padding-right: 30px;
|
|
2768
2768
|
}
|
|
2769
|
-
.
|
|
2770
|
-
|
|
2769
|
+
.kypn5o5.input-tags .input-tags-inner {
|
|
2770
|
+
display: flex;
|
|
2771
2771
|
}
|
|
2772
|
-
|
|
2773
|
-
.p12gwtiw {
|
|
2772
|
+
.kypn5o5.input-tags .input-tags-inner .tags-overflow-auto {
|
|
2774
2773
|
display: flex;
|
|
2775
|
-
justify-content: space-between;
|
|
2776
|
-
align-items: center;
|
|
2777
|
-
padding: 10px 0;
|
|
2778
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2779
|
-
font-size: 12px;
|
|
2780
|
-
line-height: 24px;
|
|
2781
2774
|
}
|
|
2782
|
-
.
|
|
2783
|
-
|
|
2775
|
+
.kypn5o5.input-tags .input-tag-suffix {
|
|
2776
|
+
position: absolute;
|
|
2777
|
+
right: 12px;
|
|
2778
|
+
top: 50%;
|
|
2779
|
+
transform: translateY(-50%);
|
|
2784
2780
|
}
|
|
2785
|
-
.
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
border-radius: 6px;
|
|
2781
|
+
.kypn5o5.input-tags .input-tag-suffix .anticon-close-circle {
|
|
2782
|
+
color: rgba(0, 0, 0, 0.25);
|
|
2783
|
+
font-size: 12px;
|
|
2789
2784
|
cursor: pointer;
|
|
2790
|
-
transition: all 0.3s ease;
|
|
2791
2785
|
}
|
|
2792
|
-
.
|
|
2793
|
-
|
|
2794
|
-
color: #0080ff;
|
|
2786
|
+
.kypn5o5.input-tags .input-tag-suffix .anticon-close-circle:hover {
|
|
2787
|
+
color: rgba(0, 0, 0, 0.45);
|
|
2795
2788
|
}
|
|
2796
|
-
.
|
|
2797
|
-
|
|
2789
|
+
.kypn5o5.has-focus-indicator {
|
|
2790
|
+
position: relative;
|
|
2791
|
+
overflow: hidden;
|
|
2798
2792
|
}
|
|
2799
|
-
.
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2793
|
+
.kypn5o5.has-focus-indicator .ant-input-prefix {
|
|
2794
|
+
position: absolute;
|
|
2795
|
+
top: 50%;
|
|
2796
|
+
transform: translateY(-50%);
|
|
2797
|
+
left: -16px;
|
|
2798
|
+
transition: left 150ms ease;
|
|
2799
|
+
opacity: 0;
|
|
2804
2800
|
}
|
|
2805
|
-
.
|
|
2806
|
-
|
|
2801
|
+
.kypn5o5.has-focus-indicator.ant-input-affix-wrapper-focused .ant-input-prefix {
|
|
2802
|
+
left: 8px;
|
|
2803
|
+
opacity: 1;
|
|
2807
2804
|
}
|
|
2808
|
-
.
|
|
2809
|
-
|
|
2810
|
-
|
|
2805
|
+
.kypn5o5.has-focus-indicator input {
|
|
2806
|
+
transition: margin-left 150ms ease;
|
|
2807
|
+
margin-left: 0px;
|
|
2811
2808
|
}
|
|
2812
|
-
.
|
|
2813
|
-
|
|
2814
|
-
color: #0080ff;
|
|
2809
|
+
.kypn5o5.has-focus-indicator input:focus {
|
|
2810
|
+
margin-left: 16px;
|
|
2815
2811
|
}
|
|
2816
|
-
|
|
2817
|
-
|
|
2812
|
+
|
|
2813
|
+
input.l1ki27se.ant-input {
|
|
2814
|
+
border-top-right-radius: 0;
|
|
2815
|
+
border-bottom-right-radius: 0;
|
|
2818
2816
|
}
|
|
2819
2817
|
|
|
2820
|
-
.
|
|
2821
|
-
|
|
2822
|
-
|
|
2818
|
+
.l1ki27se.ant-input-affix-wrapper {
|
|
2819
|
+
border-top-right-radius: 0;
|
|
2820
|
+
border-bottom-right-radius: 0;
|
|
2823
2821
|
}
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2822
|
+
|
|
2823
|
+
input.rrg1fkn.ant-input {
|
|
2824
|
+
border-top-left-radius: 0;
|
|
2825
|
+
border-bottom-left-radius: 0;
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
.rrg1fkn.ant-input-affix-wrapper {
|
|
2829
|
+
border-top-left-radius: 0;
|
|
2830
|
+
border-bottom-left-radius: 0;
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
.lgr9b02.ant-select, .lgr9b02.ant-select .ant-select-selector {
|
|
2834
|
+
border-top-right-radius: 0;
|
|
2835
|
+
border-bottom-right-radius: 0;
|
|
2836
|
+
}
|
|
2837
|
+
|
|
2838
|
+
.r1af6yu8.ant-select, .r1af6yu8.ant-select .ant-select-selector {
|
|
2839
|
+
border-top-left-radius: 0;
|
|
2840
|
+
border-bottom-left-radius: 0;
|
|
2828
2841
|
}
|
|
2829
2842
|
|
|
2830
2843
|
.s34f1qb.ant-switch {
|
|
@@ -3245,6 +3258,87 @@ input.rrg1fkn.ant-input {
|
|
|
3245
3258
|
background: #fff;
|
|
3246
3259
|
}
|
|
3247
3260
|
|
|
3261
|
+
.s1fc623g {
|
|
3262
|
+
width: 430px !important;
|
|
3263
|
+
}
|
|
3264
|
+
|
|
3265
|
+
.da3mx0o .ant-select-item-group {
|
|
3266
|
+
padding: 8px 16px;
|
|
3267
|
+
line-height: 18px;
|
|
3268
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3269
|
+
height: 34px;
|
|
3270
|
+
min-height: 34px;
|
|
3271
|
+
box-sizing: border-box;
|
|
3272
|
+
margin-top: 8px;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
.onr9gzt {
|
|
3276
|
+
display: flex;
|
|
3277
|
+
flex-direction: column;
|
|
3278
|
+
margin: 1px 8px;
|
|
3279
|
+
padding: 8px;
|
|
3280
|
+
border-radius: 4px;
|
|
3281
|
+
}
|
|
3282
|
+
.onr9gzt .selected-icon {
|
|
3283
|
+
display: none;
|
|
3284
|
+
}
|
|
3285
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
3286
|
+
padding-left: 8px;
|
|
3287
|
+
}
|
|
3288
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
3289
|
+
background-color: white;
|
|
3290
|
+
}
|
|
3291
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
3292
|
+
color: #0080ff;
|
|
3293
|
+
}
|
|
3294
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
3295
|
+
display: block;
|
|
3296
|
+
}
|
|
3297
|
+
.onr9gzt.ant-select-item-option-active {
|
|
3298
|
+
background: rgba(0, 136, 255, 0.16);
|
|
3299
|
+
}
|
|
3300
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
3301
|
+
color: #0080ff;
|
|
3302
|
+
}
|
|
3303
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
3304
|
+
background: rgba(0, 136, 255, 0.1);
|
|
3305
|
+
color: #0080ff;
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
.oiy0apc {
|
|
3309
|
+
display: flex;
|
|
3310
|
+
justify-content: space-between;
|
|
3311
|
+
height: 20px;
|
|
3312
|
+
line-height: 20px;
|
|
3313
|
+
}
|
|
3314
|
+
.oiy0apc .timezone-title {
|
|
3315
|
+
color: #2d3a56;
|
|
3316
|
+
overflow: hidden;
|
|
3317
|
+
text-overflow: ellipsis;
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
.of4y382 {
|
|
3321
|
+
display: flex;
|
|
3322
|
+
justify-content: space-between;
|
|
3323
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3324
|
+
height: 18px;
|
|
3325
|
+
line-height: 18px;
|
|
3326
|
+
margin-top: 2px;
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
.t19903l9 {
|
|
3330
|
+
border: none;
|
|
3331
|
+
margin-right: 0;
|
|
3332
|
+
background: rgba(225, 230, 241, 0.6);
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
.ohwbvxu {
|
|
3336
|
+
pointer-events: none;
|
|
3337
|
+
height: 32px;
|
|
3338
|
+
width: 100%;
|
|
3339
|
+
opacity: 0;
|
|
3340
|
+
}
|
|
3341
|
+
|
|
3248
3342
|
.i1e4sgug {
|
|
3249
3343
|
display: inline-block;
|
|
3250
3344
|
}
|
|
@@ -3693,116 +3787,48 @@ input.rrg1fkn.ant-input {
|
|
|
3693
3787
|
font-family: Inter;
|
|
3694
3788
|
font-style: normal;
|
|
3695
3789
|
font-weight: normal;
|
|
3696
|
-
font-feature-settings: "zero" on;
|
|
3697
|
-
font-size: 12px;
|
|
3698
|
-
line-height: 18px;
|
|
3699
|
-
}
|
|
3700
|
-
|
|
3701
|
-
.t1gduru8 {
|
|
3702
|
-
font-family: Inter;
|
|
3703
|
-
font-style: normal;
|
|
3704
|
-
font-weight: 500;
|
|
3705
|
-
font-feature-settings: "zero" on;
|
|
3706
|
-
font-size: 12px;
|
|
3707
|
-
line-height: 18px;
|
|
3708
|
-
}
|
|
3709
|
-
|
|
3710
|
-
.t55raab {
|
|
3711
|
-
font-family: Inter;
|
|
3712
|
-
font-style: normal;
|
|
3713
|
-
font-weight: bold;
|
|
3714
|
-
font-feature-settings: "zero" on;
|
|
3715
|
-
font-size: 16px;
|
|
3716
|
-
line-height: 24px;
|
|
3717
|
-
}
|
|
3718
|
-
|
|
3719
|
-
.u1w9abfe {
|
|
3720
|
-
font-family: Inter;
|
|
3721
|
-
font-style: normal;
|
|
3722
|
-
font-weight: normal;
|
|
3723
|
-
font-size: 10px;
|
|
3724
|
-
line-height: 12px;
|
|
3725
|
-
}
|
|
3726
|
-
|
|
3727
|
-
.s1fc623g {
|
|
3728
|
-
width: 430px !important;
|
|
3729
|
-
}
|
|
3730
|
-
|
|
3731
|
-
.da3mx0o .ant-select-item-group {
|
|
3732
|
-
padding: 8px 16px;
|
|
3733
|
-
line-height: 18px;
|
|
3734
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3735
|
-
height: 34px;
|
|
3736
|
-
min-height: 34px;
|
|
3737
|
-
box-sizing: border-box;
|
|
3738
|
-
margin-top: 8px;
|
|
3739
|
-
}
|
|
3740
|
-
|
|
3741
|
-
.onr9gzt {
|
|
3742
|
-
display: flex;
|
|
3743
|
-
flex-direction: column;
|
|
3744
|
-
margin: 1px 8px;
|
|
3745
|
-
padding: 8px;
|
|
3746
|
-
border-radius: 4px;
|
|
3747
|
-
}
|
|
3748
|
-
.onr9gzt .selected-icon {
|
|
3749
|
-
display: none;
|
|
3750
|
-
}
|
|
3751
|
-
.onr9gzt.ant-select-item-option-grouped {
|
|
3752
|
-
padding-left: 8px;
|
|
3753
|
-
}
|
|
3754
|
-
.onr9gzt.ant-select-item-option-selected {
|
|
3755
|
-
background-color: white;
|
|
3756
|
-
}
|
|
3757
|
-
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
3758
|
-
color: #0080ff;
|
|
3759
|
-
}
|
|
3760
|
-
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
3761
|
-
display: block;
|
|
3762
|
-
}
|
|
3763
|
-
.onr9gzt.ant-select-item-option-active {
|
|
3764
|
-
background: rgba(0, 136, 255, 0.16);
|
|
3765
|
-
}
|
|
3766
|
-
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
3767
|
-
color: #0080ff;
|
|
3790
|
+
font-feature-settings: "zero" on;
|
|
3791
|
+
font-size: 12px;
|
|
3792
|
+
line-height: 18px;
|
|
3768
3793
|
}
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3794
|
+
|
|
3795
|
+
.t1gduru8 {
|
|
3796
|
+
font-family: Inter;
|
|
3797
|
+
font-style: normal;
|
|
3798
|
+
font-weight: 500;
|
|
3799
|
+
font-feature-settings: "zero" on;
|
|
3800
|
+
font-size: 12px;
|
|
3801
|
+
line-height: 18px;
|
|
3772
3802
|
}
|
|
3773
3803
|
|
|
3774
|
-
.
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3804
|
+
.t55raab {
|
|
3805
|
+
font-family: Inter;
|
|
3806
|
+
font-style: normal;
|
|
3807
|
+
font-weight: bold;
|
|
3808
|
+
font-feature-settings: "zero" on;
|
|
3809
|
+
font-size: 16px;
|
|
3810
|
+
line-height: 24px;
|
|
3779
3811
|
}
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3812
|
+
|
|
3813
|
+
.u1w9abfe {
|
|
3814
|
+
font-family: Inter;
|
|
3815
|
+
font-style: normal;
|
|
3816
|
+
font-weight: normal;
|
|
3817
|
+
font-size: 10px;
|
|
3818
|
+
line-height: 12px;
|
|
3784
3819
|
}
|
|
3785
3820
|
|
|
3786
|
-
.
|
|
3821
|
+
.m15dvk92 {
|
|
3787
3822
|
display: flex;
|
|
3788
3823
|
justify-content: space-between;
|
|
3789
|
-
|
|
3790
|
-
height: 18px;
|
|
3791
|
-
line-height: 18px;
|
|
3792
|
-
margin-top: 2px;
|
|
3824
|
+
width: 100%;
|
|
3793
3825
|
}
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
border: none;
|
|
3797
|
-
margin-right: 0;
|
|
3798
|
-
background: rgba(225, 230, 241, 0.6);
|
|
3826
|
+
.m15dvk92 .action {
|
|
3827
|
+
margin-left: 16px;
|
|
3799
3828
|
}
|
|
3800
3829
|
|
|
3801
|
-
.
|
|
3802
|
-
pointer-events: none;
|
|
3803
|
-
height: 32px;
|
|
3830
|
+
.aql8iqz .ant-alert-message {
|
|
3804
3831
|
width: 100%;
|
|
3805
|
-
opacity: 0;
|
|
3806
3832
|
}
|
|
3807
3833
|
|
|
3808
3834
|
.c198s9j3 {
|
|
@@ -3945,6 +3971,79 @@ input.rrg1fkn.ant-input {
|
|
|
3945
3971
|
display: flex;
|
|
3946
3972
|
}
|
|
3947
3973
|
|
|
3974
|
+
.s1uupxds {
|
|
3975
|
+
padding: 0 8px;
|
|
3976
|
+
border-radius: 4px;
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3979
|
+
.m10sqwut {
|
|
3980
|
+
padding: 2px 8px;
|
|
3981
|
+
border-radius: 3px;
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
.l1d492wb {
|
|
3985
|
+
padding: 3px 8px;
|
|
3986
|
+
border-radius: 2px;
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
.t1lzavmu.ant-tag:hover {
|
|
3990
|
+
opacity: unset;
|
|
3991
|
+
}
|
|
3992
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
3993
|
+
margin: 0;
|
|
3994
|
+
display: inline-flex;
|
|
3995
|
+
align-items: center;
|
|
3996
|
+
border: none;
|
|
3997
|
+
}
|
|
3998
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
3999
|
+
width: 16px;
|
|
4000
|
+
height: 16px;
|
|
4001
|
+
color: inherit;
|
|
4002
|
+
margin-left: 4px;
|
|
4003
|
+
opacity: 0.6;
|
|
4004
|
+
}
|
|
4005
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
4006
|
+
opacity: 1;
|
|
4007
|
+
}
|
|
4008
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
4009
|
+
color: #0080ff;
|
|
4010
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
4011
|
+
}
|
|
4012
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
4013
|
+
color: #f0483e;
|
|
4014
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
4015
|
+
}
|
|
4016
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
4017
|
+
color: #fea008;
|
|
4018
|
+
background-color: rgba(255, 187, 0, 0.1);
|
|
4019
|
+
}
|
|
4020
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
4021
|
+
color: #00ba5d;
|
|
4022
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
4023
|
+
}
|
|
4024
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
4025
|
+
color: #1d326c;
|
|
4026
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
4027
|
+
}
|
|
4028
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
4029
|
+
color: #fff;
|
|
4030
|
+
}
|
|
4031
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
4032
|
+
background-color: #f0483e;
|
|
4033
|
+
}
|
|
4034
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
4035
|
+
background-color: #fea008;
|
|
4036
|
+
}
|
|
4037
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
4038
|
+
background-color: #00ba5d;
|
|
4039
|
+
}
|
|
4040
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
4041
|
+
background-color: #0080ff;
|
|
4042
|
+
}
|
|
4043
|
+
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
4044
|
+
background-color: #6b7d99;
|
|
4045
|
+
}
|
|
4046
|
+
|
|
3948
4047
|
.m1thnes4 {
|
|
3949
4048
|
color: rgba(44, 56, 82, 0.6);
|
|
3950
4049
|
text-align: center;
|
|
@@ -4106,79 +4205,6 @@ input.rrg1fkn.ant-input {
|
|
|
4106
4205
|
margin-left: 8px;
|
|
4107
4206
|
}
|
|
4108
4207
|
|
|
4109
|
-
.s1uupxds {
|
|
4110
|
-
padding: 0 8px;
|
|
4111
|
-
border-radius: 4px;
|
|
4112
|
-
}
|
|
4113
|
-
|
|
4114
|
-
.m10sqwut {
|
|
4115
|
-
padding: 2px 8px;
|
|
4116
|
-
border-radius: 3px;
|
|
4117
|
-
}
|
|
4118
|
-
|
|
4119
|
-
.l1d492wb {
|
|
4120
|
-
padding: 3px 8px;
|
|
4121
|
-
border-radius: 2px;
|
|
4122
|
-
}
|
|
4123
|
-
|
|
4124
|
-
.t1lzavmu.ant-tag:hover {
|
|
4125
|
-
opacity: unset;
|
|
4126
|
-
}
|
|
4127
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) {
|
|
4128
|
-
margin: 0;
|
|
4129
|
-
display: inline-flex;
|
|
4130
|
-
align-items: center;
|
|
4131
|
-
border: none;
|
|
4132
|
-
}
|
|
4133
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon {
|
|
4134
|
-
width: 16px;
|
|
4135
|
-
height: 16px;
|
|
4136
|
-
color: inherit;
|
|
4137
|
-
margin-left: 4px;
|
|
4138
|
-
opacity: 0.6;
|
|
4139
|
-
}
|
|
4140
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden) .ant-tag-close-icon:hover {
|
|
4141
|
-
opacity: 1;
|
|
4142
|
-
}
|
|
4143
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-blue {
|
|
4144
|
-
color: #0080ff;
|
|
4145
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
4146
|
-
}
|
|
4147
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-red {
|
|
4148
|
-
color: #f0483e;
|
|
4149
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
4150
|
-
}
|
|
4151
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-yellow {
|
|
4152
|
-
color: #fea008;
|
|
4153
|
-
background-color: rgba(255, 187, 0, 0.1);
|
|
4154
|
-
}
|
|
4155
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-green {
|
|
4156
|
-
color: #00ba5d;
|
|
4157
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
4158
|
-
}
|
|
4159
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ant-tag-gray {
|
|
4160
|
-
color: #1d326c;
|
|
4161
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
4162
|
-
}
|
|
4163
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked {
|
|
4164
|
-
color: #fff;
|
|
4165
|
-
}
|
|
4166
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-red {
|
|
4167
|
-
background-color: #f0483e;
|
|
4168
|
-
}
|
|
4169
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-yellow {
|
|
4170
|
-
background-color: #fea008;
|
|
4171
|
-
}
|
|
4172
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-green {
|
|
4173
|
-
background-color: #00ba5d;
|
|
4174
|
-
}
|
|
4175
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-blue {
|
|
4176
|
-
background-color: #0080ff;
|
|
4177
|
-
}
|
|
4178
|
-
.t1lzavmu.ant-tag.ui-kit-token:not(.ant-tag-hidden).ui-kit-token-checked.ant-tag-gray {
|
|
4179
|
-
background-color: #6b7d99;
|
|
4180
|
-
}
|
|
4181
|
-
|
|
4182
4208
|
.t1gz6wqf {
|
|
4183
4209
|
height: 100%;
|
|
4184
4210
|
}
|
|
@@ -4209,6 +4235,59 @@ input.rrg1fkn.ant-input {
|
|
|
4209
4235
|
background: rgba(163, 180, 204, 0.18);
|
|
4210
4236
|
}
|
|
4211
4237
|
|
|
4238
|
+
.c1k4vanq {
|
|
4239
|
+
padding: 0 16px 14px 16px;
|
|
4240
|
+
}
|
|
4241
|
+
|
|
4242
|
+
.c1udgdh2 {
|
|
4243
|
+
color: #2d3a56;
|
|
4244
|
+
padding: 12px 16px 10px 16px;
|
|
4245
|
+
display: flex;
|
|
4246
|
+
justify-content: space-between;
|
|
4247
|
+
align-items: center;
|
|
4248
|
+
}
|
|
4249
|
+
.c1udgdh2.has-arrow {
|
|
4250
|
+
padding-left: 10px;
|
|
4251
|
+
}
|
|
4252
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
4253
|
+
cursor: pointer;
|
|
4254
|
+
color: #00122e;
|
|
4255
|
+
}
|
|
4256
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
4257
|
+
color: #2d3a56;
|
|
4258
|
+
font-weight: 600;
|
|
4259
|
+
}
|
|
4260
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
4261
|
+
transform: rotate(90deg);
|
|
4262
|
+
}
|
|
4263
|
+
.c1udgdh2 .sub-info {
|
|
4264
|
+
font-size: 12px;
|
|
4265
|
+
line-height: 18px;
|
|
4266
|
+
}
|
|
4267
|
+
.c1udgdh2 .title-wrapper {
|
|
4268
|
+
display: flex;
|
|
4269
|
+
align-items: center;
|
|
4270
|
+
user-select: none;
|
|
4271
|
+
flex-grow: 1;
|
|
4272
|
+
font-size: 12px;
|
|
4273
|
+
line-height: 18px;
|
|
4274
|
+
color: #2d3a56;
|
|
4275
|
+
font-weight: 700;
|
|
4276
|
+
}
|
|
4277
|
+
.c1udgdh2 .collapse-arrow {
|
|
4278
|
+
transition: all 50ms ease-out 0ms;
|
|
4279
|
+
margin-right: 2px;
|
|
4280
|
+
}
|
|
4281
|
+
|
|
4282
|
+
.bab9xum {
|
|
4283
|
+
box-shadow: 0px 0.119595px 0.438513px rgba(129, 138, 153, 0.14), 0px 0.271728px 0.996336px rgba(129, 138, 153, 0.106447), 0px 0.472931px 1.73408px rgba(129, 138, 153, 0.0912224), 0px 0.751293px 2.75474px rgba(129, 138, 153, 0.0799253), 0px 1.15919px 4.25036px rgba(129, 138, 153, 0.07), 0px 1.80882px 6.63236px rgba(129, 138, 153, 0.0600747), 0px 3.00293px 11.0107px rgba(129, 138, 153, 0.0487776), 0px 6px 22px rgba(129, 138, 153, 0.0335534);
|
|
4284
|
+
}
|
|
4285
|
+
|
|
4286
|
+
.cav4gt6 {
|
|
4287
|
+
border-radius: 4px;
|
|
4288
|
+
background-color: white;
|
|
4289
|
+
}
|
|
4290
|
+
|
|
4212
4291
|
.f1p9ti6d {
|
|
4213
4292
|
width: 100%;
|
|
4214
4293
|
margin-bottom: 0 !important;
|
|
@@ -4393,9 +4472,6 @@ input.rrg1fkn.ant-input {
|
|
|
4393
4472
|
border-radius: 5px;
|
|
4394
4473
|
font-size: 12px;
|
|
4395
4474
|
}
|
|
4396
|
-
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input {
|
|
4397
|
-
padding: 2px 8px;
|
|
4398
|
-
}
|
|
4399
4475
|
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
4400
4476
|
font-size: inherit;
|
|
4401
4477
|
}
|
|
@@ -4482,6 +4558,34 @@ input.rrg1fkn.ant-input {
|
|
|
4482
4558
|
font-size: inherit;
|
|
4483
4559
|
}
|
|
4484
4560
|
|
|
4561
|
+
.w1xcixj5.outside-tag {
|
|
4562
|
+
padding-left: 0;
|
|
4563
|
+
}
|
|
4564
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
4565
|
+
border-radius: 4px 0 0 4px;
|
|
4566
|
+
padding-right: 4px;
|
|
4567
|
+
margin-right: 4px;
|
|
4568
|
+
}
|
|
4569
|
+
|
|
4570
|
+
.sut42l0 {
|
|
4571
|
+
padding: 0 8px;
|
|
4572
|
+
height: 18px;
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
.mfsz1jz {
|
|
4576
|
+
padding: 2px 8px;
|
|
4577
|
+
height: 24px;
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
.tnd6h4m {
|
|
4581
|
+
margin: 0;
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4584
|
+
.i1qw4clm {
|
|
4585
|
+
margin-right: 4px;
|
|
4586
|
+
height: 16px;
|
|
4587
|
+
}
|
|
4588
|
+
|
|
4485
4589
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
4486
4590
|
display: var(--a6dbbkm-0);
|
|
4487
4591
|
}
|