@cloudtower/eagle 0.26.8 → 0.26.10
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 +726 -615
- package/dist/esm/index.js +1300 -1001
- package/dist/esm/stats1.html +1 -1
- package/dist/spec/base.d.ts +17 -4
- package/dist/style.css +1127 -1016
- package/dist/umd/index.js +1300 -1001
- 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/style.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 {
|
|
@@ -1636,30 +1649,6 @@ html body {
|
|
|
1636
1649
|
font-family: "Inter var", "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
|
|
1637
1650
|
}
|
|
1638
1651
|
}
|
|
1639
|
-
.obf05yr {
|
|
1640
|
-
display: inline-block;
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
|
-
.hsms1n6 {
|
|
1644
|
-
visibility: hidden;
|
|
1645
|
-
position: absolute;
|
|
1646
|
-
}
|
|
1647
|
-
|
|
1648
|
-
.fde5mpd {
|
|
1649
|
-
width: 100%;
|
|
1650
|
-
height: 100%;
|
|
1651
|
-
min-height: 124px;
|
|
1652
|
-
display: flex;
|
|
1653
|
-
flex-direction: column;
|
|
1654
|
-
justify-content: center;
|
|
1655
|
-
align-items: center;
|
|
1656
|
-
}
|
|
1657
|
-
.fde5mpd .error-text {
|
|
1658
|
-
color: rgba(10, 37, 85, 0.6);
|
|
1659
|
-
margin-bottom: 16px;
|
|
1660
|
-
font-size: 18px;
|
|
1661
|
-
}
|
|
1662
|
-
|
|
1663
1652
|
.iap75of {
|
|
1664
1653
|
height: 18px;
|
|
1665
1654
|
line-height: 18px;
|
|
@@ -1921,35 +1910,6 @@ html body {
|
|
|
1921
1910
|
padding: 0;
|
|
1922
1911
|
}
|
|
1923
1912
|
|
|
1924
|
-
.bpq0js6 {
|
|
1925
|
-
padding: 4px 11px;
|
|
1926
|
-
}
|
|
1927
|
-
|
|
1928
|
-
.b15sn34c {
|
|
1929
|
-
white-space: nowrap;
|
|
1930
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
1931
|
-
}
|
|
1932
|
-
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
1933
|
-
--color: #0080ff;
|
|
1934
|
-
}
|
|
1935
|
-
.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] {
|
|
1936
|
-
--color: #0080ff;
|
|
1937
|
-
}
|
|
1938
|
-
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
1939
|
-
margin-left: 1px;
|
|
1940
|
-
}
|
|
1941
|
-
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
1942
|
-
border-top-right-radius: 0;
|
|
1943
|
-
border-bottom-right-radius: 0;
|
|
1944
|
-
}
|
|
1945
|
-
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
1946
|
-
border-top-left-radius: 0;
|
|
1947
|
-
border-bottom-left-radius: 0;
|
|
1948
|
-
}
|
|
1949
|
-
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
1950
|
-
border-radius: unset;
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1953
1913
|
.i1mrf09m {
|
|
1954
1914
|
display: inline-flex;
|
|
1955
1915
|
align-items: center;
|
|
@@ -1968,285 +1928,655 @@ html body {
|
|
|
1968
1928
|
animation: rotate 680ms linear infinite;
|
|
1969
1929
|
}
|
|
1970
1930
|
|
|
1971
|
-
.
|
|
1972
|
-
|
|
1973
|
-
|
|
1931
|
+
.d6j0lbj {
|
|
1932
|
+
font-family: Inter;
|
|
1933
|
+
font-style: normal;
|
|
1934
|
+
font-weight: bold;
|
|
1935
|
+
font-size: 32px;
|
|
1936
|
+
line-height: 40px;
|
|
1974
1937
|
}
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1938
|
+
|
|
1939
|
+
.d1xhvvxe {
|
|
1940
|
+
font-family: Inter;
|
|
1941
|
+
font-style: normal;
|
|
1942
|
+
font-weight: bold;
|
|
1943
|
+
font-size: 24px;
|
|
1944
|
+
line-height: 32px;
|
|
1980
1945
|
}
|
|
1981
|
-
|
|
1982
|
-
|
|
1946
|
+
|
|
1947
|
+
.dk10mxq {
|
|
1948
|
+
font-family: Inter;
|
|
1949
|
+
font-style: normal;
|
|
1950
|
+
font-weight: normal;
|
|
1951
|
+
font-size: 32px;
|
|
1952
|
+
line-height: 40px;
|
|
1983
1953
|
}
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1954
|
+
|
|
1955
|
+
.dxsait {
|
|
1956
|
+
font-family: Inter;
|
|
1957
|
+
font-style: normal;
|
|
1958
|
+
font-weight: bold;
|
|
1959
|
+
font-size: 20px;
|
|
1960
|
+
line-height: 24px;
|
|
1987
1961
|
}
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
text-align: center;
|
|
1993
|
-
padding: 0;
|
|
1994
|
-
font-size: 12px;
|
|
1962
|
+
|
|
1963
|
+
.dokn0h3 {
|
|
1964
|
+
font-family: Inter;
|
|
1965
|
+
font-style: normal;
|
|
1995
1966
|
font-weight: normal;
|
|
1967
|
+
font-size: 20px;
|
|
1968
|
+
line-height: 24px;
|
|
1996
1969
|
}
|
|
1997
|
-
|
|
1998
|
-
|
|
1970
|
+
|
|
1971
|
+
.dobau4p {
|
|
1972
|
+
font-family: Inter;
|
|
1973
|
+
font-style: normal;
|
|
1974
|
+
font-weight: bold;
|
|
1975
|
+
font-size: 18px;
|
|
1976
|
+
line-height: 22px;
|
|
1999
1977
|
}
|
|
2000
|
-
|
|
2001
|
-
|
|
1978
|
+
|
|
1979
|
+
.dvolwok {
|
|
1980
|
+
font-family: Inter;
|
|
1981
|
+
font-style: normal;
|
|
1982
|
+
font-weight: normal;
|
|
1983
|
+
font-size: 18px;
|
|
1984
|
+
line-height: 22px;
|
|
2002
1985
|
}
|
|
2003
|
-
|
|
2004
|
-
|
|
1986
|
+
|
|
1987
|
+
.h181qhg4 {
|
|
1988
|
+
font-family: Inter;
|
|
1989
|
+
font-style: normal;
|
|
1990
|
+
font-weight: bold;
|
|
1991
|
+
font-size: 16px;
|
|
1992
|
+
line-height: 22px;
|
|
2005
1993
|
}
|
|
2006
|
-
|
|
2007
|
-
|
|
1994
|
+
|
|
1995
|
+
.h1phgmcq {
|
|
1996
|
+
font-family: Inter;
|
|
1997
|
+
font-style: normal;
|
|
1998
|
+
font-weight: normal;
|
|
1999
|
+
font-size: 16px;
|
|
2000
|
+
line-height: 22px;
|
|
2008
2001
|
}
|
|
2009
|
-
|
|
2010
|
-
|
|
2002
|
+
|
|
2003
|
+
.h173xnl1 {
|
|
2004
|
+
font-family: Inter;
|
|
2005
|
+
font-style: normal;
|
|
2006
|
+
font-weight: bold;
|
|
2007
|
+
font-size: 14px;
|
|
2008
|
+
line-height: 20px;
|
|
2011
2009
|
}
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2020
|
-
right: -21px;
|
|
2021
|
-
z-index: 2;
|
|
2010
|
+
|
|
2011
|
+
.hedm4pz {
|
|
2012
|
+
font-family: Inter;
|
|
2013
|
+
font-style: normal;
|
|
2014
|
+
font-weight: normal;
|
|
2015
|
+
font-size: 14px;
|
|
2016
|
+
line-height: 20px;
|
|
2022
2017
|
}
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
border-left: 8px solid #fff;
|
|
2031
|
-
left: 0;
|
|
2018
|
+
|
|
2019
|
+
.h1kd8xld {
|
|
2020
|
+
font-family: Inter;
|
|
2021
|
+
font-style: normal;
|
|
2022
|
+
font-weight: bold;
|
|
2023
|
+
font-size: 12px;
|
|
2024
|
+
line-height: 18px;
|
|
2032
2025
|
}
|
|
2033
|
-
|
|
2034
|
-
|
|
2026
|
+
|
|
2027
|
+
.hp14fr {
|
|
2028
|
+
font-family: Inter;
|
|
2029
|
+
font-style: normal;
|
|
2030
|
+
font-weight: normal;
|
|
2031
|
+
font-size: 12px;
|
|
2032
|
+
line-height: 18px;
|
|
2035
2033
|
}
|
|
2036
|
-
|
|
2037
|
-
|
|
2034
|
+
|
|
2035
|
+
.hgrg7mn {
|
|
2036
|
+
font-family: Inter;
|
|
2037
|
+
font-style: normal;
|
|
2038
|
+
font-weight: bold;
|
|
2039
|
+
text-transform: uppercase;
|
|
2040
|
+
font-feature-settings: "cpsp" on;
|
|
2041
|
+
font-size: 12px;
|
|
2042
|
+
line-height: 18px;
|
|
2038
2043
|
}
|
|
2039
|
-
|
|
2040
|
-
|
|
2044
|
+
|
|
2045
|
+
.h6zme9x {
|
|
2046
|
+
font-family: Inter;
|
|
2047
|
+
font-style: normal;
|
|
2048
|
+
font-weight: normal;
|
|
2049
|
+
text-transform: uppercase;
|
|
2050
|
+
font-feature-settings: "cpsp" on;
|
|
2051
|
+
font-size: 12px;
|
|
2052
|
+
line-height: 18px;
|
|
2041
2053
|
}
|
|
2042
|
-
|
|
2043
|
-
.
|
|
2044
|
-
|
|
2054
|
+
|
|
2055
|
+
.locjvsv {
|
|
2056
|
+
font-family: Inter;
|
|
2057
|
+
font-style: normal;
|
|
2058
|
+
font-weight: normal;
|
|
2059
|
+
font-size: 16px;
|
|
2060
|
+
line-height: 24px;
|
|
2045
2061
|
}
|
|
2046
|
-
|
|
2047
|
-
.
|
|
2048
|
-
|
|
2062
|
+
|
|
2063
|
+
.l13gi131 {
|
|
2064
|
+
font-family: Inter;
|
|
2065
|
+
font-style: normal;
|
|
2066
|
+
font-weight: bold;
|
|
2067
|
+
font-size: 16px;
|
|
2068
|
+
line-height: 24px;
|
|
2049
2069
|
}
|
|
2050
|
-
|
|
2051
|
-
|
|
2070
|
+
|
|
2071
|
+
.l1ynemsu {
|
|
2072
|
+
font-family: Inter;
|
|
2073
|
+
font-style: normal;
|
|
2074
|
+
font-weight: normal;
|
|
2075
|
+
font-size: 16px;
|
|
2076
|
+
line-height: 24px;
|
|
2052
2077
|
}
|
|
2053
2078
|
|
|
2054
|
-
.
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2060
|
-
font-size: 12px;
|
|
2079
|
+
.l1cft1cx {
|
|
2080
|
+
font-family: Inter;
|
|
2081
|
+
font-style: normal;
|
|
2082
|
+
font-weight: bold;
|
|
2083
|
+
font-size: 16px;
|
|
2061
2084
|
line-height: 24px;
|
|
2062
2085
|
}
|
|
2063
|
-
|
|
2064
|
-
|
|
2086
|
+
|
|
2087
|
+
.l17tqc8p {
|
|
2088
|
+
font-family: Inter;
|
|
2089
|
+
font-style: normal;
|
|
2090
|
+
font-weight: normal;
|
|
2091
|
+
text-transform: uppercase;
|
|
2092
|
+
font-feature-settings: "cpsp" on;
|
|
2093
|
+
font-size: 16px;
|
|
2094
|
+
line-height: 24px;
|
|
2065
2095
|
}
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2096
|
+
|
|
2097
|
+
.l1j1e5w7 {
|
|
2098
|
+
font-family: Inter;
|
|
2099
|
+
font-style: normal;
|
|
2100
|
+
font-weight: bold;
|
|
2101
|
+
text-transform: uppercase;
|
|
2102
|
+
font-feature-settings: "cpsp" on;
|
|
2103
|
+
font-size: 16px;
|
|
2104
|
+
line-height: 24px;
|
|
2072
2105
|
}
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2106
|
+
|
|
2107
|
+
.l1gf91jb {
|
|
2108
|
+
font-family: Inter;
|
|
2109
|
+
font-style: normal;
|
|
2110
|
+
font-weight: normal;
|
|
2111
|
+
font-size: 14px;
|
|
2112
|
+
line-height: 22px;
|
|
2076
2113
|
}
|
|
2077
|
-
|
|
2078
|
-
|
|
2114
|
+
|
|
2115
|
+
.lu7hlr6 {
|
|
2116
|
+
font-family: Inter;
|
|
2117
|
+
font-style: normal;
|
|
2118
|
+
font-weight: 500;
|
|
2119
|
+
font-size: 14px;
|
|
2120
|
+
line-height: 22px;
|
|
2079
2121
|
}
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2122
|
+
|
|
2123
|
+
.l3l3jf0 {
|
|
2124
|
+
font-family: Inter;
|
|
2125
|
+
font-style: normal;
|
|
2084
2126
|
font-weight: bold;
|
|
2127
|
+
font-size: 14px;
|
|
2128
|
+
line-height: 22px;
|
|
2085
2129
|
}
|
|
2086
|
-
|
|
2087
|
-
|
|
2130
|
+
|
|
2131
|
+
.l12j5nqp {
|
|
2132
|
+
font-family: Inter;
|
|
2133
|
+
font-style: normal;
|
|
2134
|
+
font-weight: normal;
|
|
2135
|
+
font-size: 14px;
|
|
2136
|
+
line-height: 22px;
|
|
2088
2137
|
}
|
|
2089
|
-
|
|
2090
|
-
.
|
|
2091
|
-
|
|
2138
|
+
|
|
2139
|
+
.l1tecqht {
|
|
2140
|
+
font-family: Inter;
|
|
2141
|
+
font-style: normal;
|
|
2142
|
+
font-weight: bold;
|
|
2143
|
+
font-size: 14px;
|
|
2144
|
+
line-height: 22px;
|
|
2092
2145
|
}
|
|
2093
|
-
|
|
2094
|
-
.
|
|
2095
|
-
|
|
2146
|
+
|
|
2147
|
+
.l6sa990 {
|
|
2148
|
+
font-family: Inter;
|
|
2149
|
+
font-style: normal;
|
|
2150
|
+
font-weight: normal;
|
|
2151
|
+
text-transform: uppercase;
|
|
2152
|
+
font-feature-settings: "cpsp" on;
|
|
2153
|
+
font-size: 14px;
|
|
2154
|
+
line-height: 22px;
|
|
2096
2155
|
}
|
|
2097
|
-
|
|
2098
|
-
|
|
2156
|
+
|
|
2157
|
+
.lckqe8j {
|
|
2158
|
+
font-family: Inter;
|
|
2159
|
+
font-style: normal;
|
|
2160
|
+
font-weight: bold;
|
|
2161
|
+
text-transform: uppercase;
|
|
2162
|
+
font-feature-settings: "cpsp" on;
|
|
2163
|
+
font-size: 14px;
|
|
2164
|
+
line-height: 22px;
|
|
2099
2165
|
}
|
|
2100
2166
|
|
|
2101
|
-
.
|
|
2102
|
-
|
|
2103
|
-
|
|
2167
|
+
.l1kuminb {
|
|
2168
|
+
font-family: Inter;
|
|
2169
|
+
font-style: normal;
|
|
2170
|
+
font-weight: normal;
|
|
2171
|
+
font-size: 13px;
|
|
2172
|
+
line-height: 20px;
|
|
2104
2173
|
}
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
font-
|
|
2108
|
-
|
|
2174
|
+
|
|
2175
|
+
.l1pbuf5j {
|
|
2176
|
+
font-family: Inter;
|
|
2177
|
+
font-style: normal;
|
|
2178
|
+
font-weight: 600;
|
|
2179
|
+
font-size: 13px;
|
|
2180
|
+
line-height: 20px;
|
|
2109
2181
|
}
|
|
2110
2182
|
|
|
2111
|
-
.
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2183
|
+
.l1r4ztu {
|
|
2184
|
+
font-family: Inter;
|
|
2185
|
+
font-style: normal;
|
|
2186
|
+
font-weight: bold;
|
|
2187
|
+
font-size: 13px;
|
|
2188
|
+
line-height: 20px;
|
|
2115
2189
|
}
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2190
|
+
|
|
2191
|
+
.ly8vzok {
|
|
2192
|
+
font-family: Inter;
|
|
2193
|
+
font-style: normal;
|
|
2194
|
+
font-weight: normal;
|
|
2195
|
+
font-size: 13px;
|
|
2196
|
+
line-height: 20px;
|
|
2119
2197
|
}
|
|
2120
|
-
|
|
2121
|
-
|
|
2198
|
+
|
|
2199
|
+
.lumfmf {
|
|
2200
|
+
font-family: Inter;
|
|
2201
|
+
font-style: normal;
|
|
2202
|
+
font-weight: 600;
|
|
2203
|
+
font-size: 13px;
|
|
2204
|
+
line-height: 20px;
|
|
2122
2205
|
}
|
|
2123
|
-
|
|
2124
|
-
|
|
2206
|
+
|
|
2207
|
+
.l16ujwmv {
|
|
2208
|
+
font-family: Inter;
|
|
2209
|
+
font-style: normal;
|
|
2210
|
+
font-weight: bold;
|
|
2211
|
+
font-size: 13px;
|
|
2212
|
+
line-height: 20px;
|
|
2125
2213
|
}
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2214
|
+
|
|
2215
|
+
.l17o1ffr {
|
|
2216
|
+
font-family: Inter;
|
|
2217
|
+
font-style: normal;
|
|
2218
|
+
font-weight: normal;
|
|
2219
|
+
text-transform: uppercase;
|
|
2220
|
+
font-feature-settings: "cpsp" on;
|
|
2221
|
+
font-size: 13px;
|
|
2222
|
+
line-height: 20px;
|
|
2129
2223
|
}
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2224
|
+
|
|
2225
|
+
.lngllvn {
|
|
2226
|
+
font-family: Inter;
|
|
2227
|
+
font-style: normal;
|
|
2228
|
+
font-weight: bold;
|
|
2229
|
+
text-transform: uppercase;
|
|
2230
|
+
font-feature-settings: "cpsp" on;
|
|
2231
|
+
font-size: 13px;
|
|
2232
|
+
line-height: 20px;
|
|
2136
2233
|
}
|
|
2137
|
-
|
|
2138
|
-
|
|
2234
|
+
|
|
2235
|
+
.l2i7fo9 {
|
|
2236
|
+
font-family: Inter;
|
|
2237
|
+
font-style: normal;
|
|
2238
|
+
font-weight: normal;
|
|
2239
|
+
font-size: 12px;
|
|
2240
|
+
line-height: 18px;
|
|
2139
2241
|
}
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2242
|
+
|
|
2243
|
+
.l1x7hscx {
|
|
2244
|
+
font-family: Inter;
|
|
2245
|
+
font-style: normal;
|
|
2246
|
+
font-weight: 500;
|
|
2247
|
+
font-size: 12px;
|
|
2248
|
+
line-height: 18px;
|
|
2143
2249
|
}
|
|
2144
|
-
|
|
2145
|
-
|
|
2250
|
+
|
|
2251
|
+
.le1jwan {
|
|
2252
|
+
font-family: Inter;
|
|
2253
|
+
font-style: normal;
|
|
2254
|
+
font-weight: bold;
|
|
2255
|
+
font-size: 12px;
|
|
2256
|
+
line-height: 18px;
|
|
2146
2257
|
}
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2258
|
+
|
|
2259
|
+
.lyxynfj {
|
|
2260
|
+
font-family: Inter;
|
|
2261
|
+
font-style: normal;
|
|
2262
|
+
font-weight: normal;
|
|
2263
|
+
font-size: 12px;
|
|
2264
|
+
line-height: 18px;
|
|
2150
2265
|
}
|
|
2151
|
-
|
|
2152
|
-
|
|
2266
|
+
|
|
2267
|
+
.lpb2nxv {
|
|
2268
|
+
font-family: Inter;
|
|
2269
|
+
font-style: normal;
|
|
2270
|
+
font-weight: 500;
|
|
2271
|
+
font-size: 12px;
|
|
2272
|
+
line-height: 18px;
|
|
2153
2273
|
}
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2274
|
+
|
|
2275
|
+
.l1r8o3vv {
|
|
2276
|
+
font-family: Inter;
|
|
2277
|
+
font-style: normal;
|
|
2278
|
+
font-weight: bold;
|
|
2279
|
+
font-size: 12px;
|
|
2280
|
+
line-height: 18px;
|
|
2158
2281
|
}
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2282
|
+
|
|
2283
|
+
.lemnjy2 {
|
|
2284
|
+
font-family: Inter;
|
|
2285
|
+
font-style: normal;
|
|
2286
|
+
font-weight: normal;
|
|
2287
|
+
text-transform: uppercase;
|
|
2288
|
+
font-feature-settings: "cpsp" on;
|
|
2289
|
+
font-size: 12px;
|
|
2290
|
+
line-height: 18px;
|
|
2163
2291
|
}
|
|
2164
|
-
|
|
2165
|
-
|
|
2292
|
+
|
|
2293
|
+
.lrc42gb {
|
|
2294
|
+
font-family: Inter;
|
|
2295
|
+
font-style: normal;
|
|
2296
|
+
font-weight: bold;
|
|
2297
|
+
text-transform: uppercase;
|
|
2298
|
+
font-feature-settings: "cpsp" on;
|
|
2299
|
+
font-size: 12px;
|
|
2300
|
+
line-height: 18px;
|
|
2166
2301
|
}
|
|
2167
2302
|
|
|
2168
|
-
.
|
|
2169
|
-
|
|
2303
|
+
.fqaz4mb {
|
|
2304
|
+
font-family: Inter;
|
|
2305
|
+
font-style: normal;
|
|
2306
|
+
font-weight: normal;
|
|
2307
|
+
font-size: 13px;
|
|
2308
|
+
line-height: 20px;
|
|
2170
2309
|
}
|
|
2171
|
-
|
|
2172
|
-
|
|
2310
|
+
|
|
2311
|
+
.f13we5o {
|
|
2312
|
+
font-family: Inter;
|
|
2313
|
+
font-style: normal;
|
|
2314
|
+
font-weight: normal;
|
|
2315
|
+
font-size: 13px;
|
|
2316
|
+
line-height: 20px;
|
|
2173
2317
|
}
|
|
2174
2318
|
|
|
2175
|
-
.
|
|
2176
|
-
|
|
2177
|
-
|
|
2319
|
+
.ffmjua2 {
|
|
2320
|
+
font-family: Inter;
|
|
2321
|
+
font-style: normal;
|
|
2322
|
+
font-weight: normal;
|
|
2323
|
+
font-size: 12px;
|
|
2324
|
+
line-height: 18px;
|
|
2178
2325
|
}
|
|
2179
|
-
|
|
2180
|
-
|
|
2326
|
+
|
|
2327
|
+
.fz2mxw0 {
|
|
2328
|
+
font-family: Inter;
|
|
2329
|
+
font-style: normal;
|
|
2330
|
+
font-weight: normal;
|
|
2331
|
+
font-size: 12px;
|
|
2332
|
+
line-height: 18px;
|
|
2181
2333
|
}
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2334
|
+
|
|
2335
|
+
.t1ertzoh {
|
|
2336
|
+
font-family: Inter;
|
|
2337
|
+
font-style: normal;
|
|
2338
|
+
font-weight: normal;
|
|
2339
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
2340
|
+
font-size: 13px;
|
|
2341
|
+
line-height: 20px;
|
|
2186
2342
|
}
|
|
2187
|
-
|
|
2188
|
-
|
|
2343
|
+
|
|
2344
|
+
.t19bge8r {
|
|
2345
|
+
font-family: Inter;
|
|
2346
|
+
font-style: normal;
|
|
2347
|
+
font-weight: normal;
|
|
2348
|
+
font-feature-settings: "zero" on;
|
|
2349
|
+
font-size: 13px;
|
|
2350
|
+
line-height: 20px;
|
|
2189
2351
|
}
|
|
2190
|
-
|
|
2191
|
-
|
|
2352
|
+
|
|
2353
|
+
.tjrzfyl {
|
|
2354
|
+
font-family: Inter;
|
|
2355
|
+
font-style: normal;
|
|
2356
|
+
font-weight: normal;
|
|
2357
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
2358
|
+
font-size: 12px;
|
|
2359
|
+
line-height: 18px;
|
|
2192
2360
|
}
|
|
2193
|
-
|
|
2194
|
-
|
|
2361
|
+
|
|
2362
|
+
.tm6s7bo {
|
|
2363
|
+
font-family: Inter;
|
|
2364
|
+
font-style: normal;
|
|
2365
|
+
font-weight: 500;
|
|
2366
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
2367
|
+
font-size: 12px;
|
|
2368
|
+
line-height: 18px;
|
|
2195
2369
|
}
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2370
|
+
|
|
2371
|
+
.t19zq6ic {
|
|
2372
|
+
font-family: Inter;
|
|
2373
|
+
font-style: normal;
|
|
2374
|
+
font-weight: normal;
|
|
2375
|
+
font-feature-settings: "zero" on;
|
|
2376
|
+
font-size: 12px;
|
|
2377
|
+
line-height: 18px;
|
|
2199
2378
|
}
|
|
2200
|
-
|
|
2201
|
-
|
|
2379
|
+
|
|
2380
|
+
.t1gduru8 {
|
|
2381
|
+
font-family: Inter;
|
|
2382
|
+
font-style: normal;
|
|
2383
|
+
font-weight: 500;
|
|
2384
|
+
font-feature-settings: "zero" on;
|
|
2385
|
+
font-size: 12px;
|
|
2386
|
+
line-height: 18px;
|
|
2202
2387
|
}
|
|
2203
|
-
|
|
2204
|
-
|
|
2388
|
+
|
|
2389
|
+
.t55raab {
|
|
2390
|
+
font-family: Inter;
|
|
2391
|
+
font-style: normal;
|
|
2392
|
+
font-weight: bold;
|
|
2393
|
+
font-feature-settings: "zero" on;
|
|
2394
|
+
font-size: 16px;
|
|
2395
|
+
line-height: 24px;
|
|
2205
2396
|
}
|
|
2206
|
-
|
|
2207
|
-
|
|
2397
|
+
|
|
2398
|
+
.u1w9abfe {
|
|
2399
|
+
font-family: Inter;
|
|
2400
|
+
font-style: normal;
|
|
2401
|
+
font-weight: normal;
|
|
2402
|
+
font-size: 10px;
|
|
2403
|
+
line-height: 12px;
|
|
2208
2404
|
}
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
opacity: 0.5;
|
|
2405
|
+
|
|
2406
|
+
.bpq0js6 {
|
|
2407
|
+
padding: 4px 11px;
|
|
2213
2408
|
}
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2409
|
+
|
|
2410
|
+
.b15sn34c {
|
|
2411
|
+
white-space: nowrap;
|
|
2412
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
2217
2413
|
}
|
|
2218
|
-
.
|
|
2219
|
-
color: #
|
|
2220
|
-
border-color: #ccd4e3;
|
|
2221
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2414
|
+
.b15sn34c > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
2415
|
+
--color: #0080ff;
|
|
2222
2416
|
}
|
|
2223
|
-
.
|
|
2224
|
-
|
|
2225
|
-
display: inline;
|
|
2226
|
-
border: none;
|
|
2227
|
-
padding: 0;
|
|
2228
|
-
width: 36px;
|
|
2229
|
-
background: transparent;
|
|
2417
|
+
.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] {
|
|
2418
|
+
--color: #0080ff;
|
|
2230
2419
|
}
|
|
2231
|
-
.
|
|
2232
|
-
|
|
2420
|
+
.b15sn34c > .ant-btn:not(:only-child) + .ant-btn {
|
|
2421
|
+
margin-left: 1px;
|
|
2233
2422
|
}
|
|
2234
|
-
.
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
box-shadow: none;
|
|
2423
|
+
.b15sn34c > .ant-btn:not(:only-child):first-child {
|
|
2424
|
+
border-top-right-radius: 0;
|
|
2425
|
+
border-bottom-right-radius: 0;
|
|
2238
2426
|
}
|
|
2239
|
-
.
|
|
2240
|
-
|
|
2427
|
+
.b15sn34c > .ant-btn:not(:only-child):last-child {
|
|
2428
|
+
border-top-left-radius: 0;
|
|
2429
|
+
border-bottom-left-radius: 0;
|
|
2241
2430
|
}
|
|
2242
|
-
.
|
|
2243
|
-
|
|
2431
|
+
.b15sn34c > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
2432
|
+
border-radius: unset;
|
|
2244
2433
|
}
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2434
|
+
|
|
2435
|
+
.obf05yr {
|
|
2436
|
+
display: inline-block;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
.hsms1n6 {
|
|
2440
|
+
visibility: hidden;
|
|
2441
|
+
position: absolute;
|
|
2442
|
+
}
|
|
2443
|
+
|
|
2444
|
+
.p12gwtiw {
|
|
2445
|
+
display: flex;
|
|
2446
|
+
justify-content: space-between;
|
|
2447
|
+
align-items: center;
|
|
2448
|
+
padding: 10px 0;
|
|
2449
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2450
|
+
font-size: 12px;
|
|
2451
|
+
line-height: 24px;
|
|
2452
|
+
}
|
|
2453
|
+
.p12gwtiw .pagination-left {
|
|
2454
|
+
padding: 2px 8px;
|
|
2455
|
+
}
|
|
2456
|
+
.p12gwtiw .dropdown-trigger {
|
|
2457
|
+
display: flex;
|
|
2458
|
+
align-items: center;
|
|
2459
|
+
border-radius: 6px;
|
|
2460
|
+
cursor: pointer;
|
|
2461
|
+
transition: all 0.3s ease;
|
|
2462
|
+
}
|
|
2463
|
+
.p12gwtiw .dropdown-trigger:hover {
|
|
2464
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2465
|
+
color: #0080ff;
|
|
2466
|
+
}
|
|
2467
|
+
.p12gwtiw .dropdown-trigger .icon-inner {
|
|
2468
|
+
margin-left: 4px;
|
|
2469
|
+
}
|
|
2470
|
+
.p12gwtiw .pagination-right {
|
|
2471
|
+
display: flex;
|
|
2472
|
+
align-items: center;
|
|
2473
|
+
color: #0080ff;
|
|
2474
|
+
font-weight: bold;
|
|
2475
|
+
}
|
|
2476
|
+
.p12gwtiw .pagination-right .icon-inner {
|
|
2477
|
+
margin-left: 4px;
|
|
2478
|
+
}
|
|
2479
|
+
.p12gwtiw .pagination-right .prev-btn,
|
|
2480
|
+
.p12gwtiw .pagination-right .next-btn {
|
|
2481
|
+
padding: 0 8px;
|
|
2482
|
+
}
|
|
2483
|
+
.p12gwtiw .pagination-right .prev-btn > span,
|
|
2484
|
+
.p12gwtiw .pagination-right .next-btn > span {
|
|
2485
|
+
color: #0080ff;
|
|
2486
|
+
}
|
|
2487
|
+
.p12gwtiw .pagination-right .next-btn .icon-inner {
|
|
2488
|
+
transform: rotate(180deg);
|
|
2489
|
+
}
|
|
2490
|
+
|
|
2491
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu {
|
|
2492
|
+
max-height: calc(100vh - 128px);
|
|
2493
|
+
overflow-y: auto;
|
|
2494
|
+
}
|
|
2495
|
+
.d1bnu0in.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
2496
|
+
padding: 4px 20px;
|
|
2497
|
+
font-size: 12px;
|
|
2498
|
+
line-height: 18px;
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
.s1fc623g {
|
|
2502
|
+
width: 430px !important;
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
.da3mx0o .ant-select-item-group {
|
|
2506
|
+
padding: 8px 16px;
|
|
2507
|
+
line-height: 18px;
|
|
2508
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
2509
|
+
height: 34px;
|
|
2510
|
+
min-height: 34px;
|
|
2511
|
+
box-sizing: border-box;
|
|
2512
|
+
margin-top: 8px;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
.onr9gzt {
|
|
2516
|
+
display: flex;
|
|
2517
|
+
flex-direction: column;
|
|
2518
|
+
margin: 1px 8px;
|
|
2519
|
+
padding: 8px;
|
|
2520
|
+
border-radius: 4px;
|
|
2521
|
+
}
|
|
2522
|
+
.onr9gzt .selected-icon {
|
|
2523
|
+
display: none;
|
|
2524
|
+
}
|
|
2525
|
+
.onr9gzt.ant-select-item-option-grouped {
|
|
2526
|
+
padding-left: 8px;
|
|
2527
|
+
}
|
|
2528
|
+
.onr9gzt.ant-select-item-option-selected {
|
|
2529
|
+
background-color: white;
|
|
2530
|
+
}
|
|
2531
|
+
.onr9gzt.ant-select-item-option-selected .timezone-title {
|
|
2532
|
+
color: #0080ff;
|
|
2533
|
+
}
|
|
2534
|
+
.onr9gzt.ant-select-item-option-selected .selected-icon {
|
|
2535
|
+
display: block;
|
|
2536
|
+
}
|
|
2537
|
+
.onr9gzt.ant-select-item-option-active {
|
|
2538
|
+
background: rgba(0, 136, 255, 0.16);
|
|
2539
|
+
}
|
|
2540
|
+
.onr9gzt.ant-select-item-option-active .timezone-title {
|
|
2541
|
+
color: #0080ff;
|
|
2542
|
+
}
|
|
2543
|
+
.onr9gzt.ant-select-item-option-active .timezone-tag {
|
|
2544
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2545
|
+
color: #0080ff;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.oiy0apc {
|
|
2549
|
+
display: flex;
|
|
2550
|
+
justify-content: space-between;
|
|
2551
|
+
height: 20px;
|
|
2552
|
+
line-height: 20px;
|
|
2553
|
+
}
|
|
2554
|
+
.oiy0apc .timezone-title {
|
|
2555
|
+
color: #2d3a56;
|
|
2556
|
+
overflow: hidden;
|
|
2557
|
+
text-overflow: ellipsis;
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2560
|
+
.of4y382 {
|
|
2561
|
+
display: flex;
|
|
2562
|
+
justify-content: space-between;
|
|
2563
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2564
|
+
height: 18px;
|
|
2565
|
+
line-height: 18px;
|
|
2566
|
+
margin-top: 2px;
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
.t19903l9 {
|
|
2570
|
+
border: none;
|
|
2571
|
+
margin-right: 0;
|
|
2572
|
+
background: rgba(225, 230, 241, 0.6);
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
.ohwbvxu {
|
|
2576
|
+
pointer-events: none;
|
|
2577
|
+
height: 32px;
|
|
2578
|
+
width: 100%;
|
|
2579
|
+
opacity: 0;
|
|
2250
2580
|
}
|
|
2251
2581
|
|
|
2252
2582
|
.cz04yix {
|
|
@@ -2914,66 +3244,168 @@ input.rrg1fkn.ant-input {
|
|
|
2914
3244
|
border-bottom-left-radius: 0;
|
|
2915
3245
|
}
|
|
2916
3246
|
|
|
2917
|
-
.
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
background: rgba(172, 186, 211, 0.6);
|
|
2921
|
-
overflow: hidden;
|
|
3247
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
3248
|
+
flex-direction: row;
|
|
3249
|
+
justify-content: stretch;
|
|
2922
3250
|
}
|
|
2923
|
-
.
|
|
2924
|
-
|
|
3251
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
3252
|
+
padding: 0;
|
|
3253
|
+
margin-right: 4px;
|
|
3254
|
+
flex: 1;
|
|
3255
|
+
overflow: visible;
|
|
2925
3256
|
}
|
|
2926
|
-
.
|
|
2927
|
-
|
|
2928
|
-
height: 16px;
|
|
3257
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
3258
|
+
display: none;
|
|
2929
3259
|
}
|
|
2930
|
-
.
|
|
2931
|
-
|
|
2932
|
-
height:
|
|
3260
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
3261
|
+
width: 100%;
|
|
3262
|
+
min-height: unset;
|
|
2933
3263
|
}
|
|
2934
|
-
.
|
|
2935
|
-
height:
|
|
2936
|
-
|
|
3264
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
3265
|
+
height: 26px;
|
|
3266
|
+
line-height: 26px;
|
|
3267
|
+
width: 100%;
|
|
3268
|
+
text-align: center;
|
|
3269
|
+
padding: 0;
|
|
3270
|
+
font-size: 12px;
|
|
3271
|
+
font-weight: normal;
|
|
2937
3272
|
}
|
|
2938
|
-
.
|
|
2939
|
-
|
|
2940
|
-
transition-delay: 120ms;
|
|
3273
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
3274
|
+
margin-right: 10px;
|
|
2941
3275
|
}
|
|
2942
|
-
.
|
|
2943
|
-
|
|
2944
|
-
width: 14px;
|
|
2945
|
-
top: 1px;
|
|
2946
|
-
left: 1px;
|
|
3276
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
3277
|
+
display: none;
|
|
2947
3278
|
}
|
|
2948
|
-
.
|
|
2949
|
-
|
|
2950
|
-
width: 28px;
|
|
3279
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
3280
|
+
border-radius: 4px 0 0 4px;
|
|
2951
3281
|
}
|
|
2952
|
-
.
|
|
2953
|
-
|
|
3282
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
3283
|
+
margin-right: 0;
|
|
2954
3284
|
}
|
|
2955
|
-
.
|
|
2956
|
-
|
|
3285
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
3286
|
+
border-radius: 0 4px 4px 0;
|
|
2957
3287
|
}
|
|
2958
|
-
.
|
|
2959
|
-
|
|
3288
|
+
.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 {
|
|
3289
|
+
content: "";
|
|
3290
|
+
width: 0;
|
|
3291
|
+
height: 0;
|
|
3292
|
+
border: 13px solid transparent;
|
|
3293
|
+
position: absolute;
|
|
3294
|
+
top: 0;
|
|
3295
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
3296
|
+
right: -21px;
|
|
3297
|
+
z-index: 2;
|
|
2960
3298
|
}
|
|
2961
|
-
.
|
|
2962
|
-
|
|
3299
|
+
.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 {
|
|
3300
|
+
content: "";
|
|
3301
|
+
width: 0;
|
|
3302
|
+
height: 0;
|
|
3303
|
+
border: 13px solid transparent;
|
|
3304
|
+
position: absolute;
|
|
3305
|
+
top: 0;
|
|
3306
|
+
border-left: 8px solid #fff;
|
|
3307
|
+
left: 0;
|
|
2963
3308
|
}
|
|
2964
|
-
.
|
|
2965
|
-
|
|
3309
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
3310
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2966
3311
|
}
|
|
2967
|
-
|
|
2968
|
-
.
|
|
2969
|
-
margin-left: 5px;
|
|
3312
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
3313
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2970
3314
|
}
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
height: 100%;
|
|
3315
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
3316
|
+
color: #005ed1;
|
|
2974
3317
|
}
|
|
2975
|
-
|
|
2976
|
-
.
|
|
3318
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
3319
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
3320
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
3321
|
+
}
|
|
3322
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
3323
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
3324
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3325
|
+
}
|
|
3326
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
3327
|
+
padding: 0;
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3330
|
+
.i1e4sgug {
|
|
3331
|
+
display: inline-block;
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
.fde5mpd {
|
|
3335
|
+
width: 100%;
|
|
3336
|
+
height: 100%;
|
|
3337
|
+
min-height: 124px;
|
|
3338
|
+
display: flex;
|
|
3339
|
+
flex-direction: column;
|
|
3340
|
+
justify-content: center;
|
|
3341
|
+
align-items: center;
|
|
3342
|
+
}
|
|
3343
|
+
.fde5mpd .error-text {
|
|
3344
|
+
color: rgba(10, 37, 85, 0.6);
|
|
3345
|
+
margin-bottom: 16px;
|
|
3346
|
+
font-size: 18px;
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
.s34f1qb.ant-switch {
|
|
3350
|
+
min-width: 40px;
|
|
3351
|
+
height: 24px;
|
|
3352
|
+
background: rgba(172, 186, 211, 0.6);
|
|
3353
|
+
overflow: hidden;
|
|
3354
|
+
}
|
|
3355
|
+
.s34f1qb.ant-switch:focus {
|
|
3356
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
3357
|
+
}
|
|
3358
|
+
.s34f1qb.ant-switch-small {
|
|
3359
|
+
min-width: 26px;
|
|
3360
|
+
height: 16px;
|
|
3361
|
+
}
|
|
3362
|
+
.s34f1qb.ant-switch-large {
|
|
3363
|
+
min-width: 52px;
|
|
3364
|
+
height: 32px;
|
|
3365
|
+
}
|
|
3366
|
+
.s34f1qb.ant-switch .ant-switch-handle {
|
|
3367
|
+
height: 20px;
|
|
3368
|
+
width: 20px;
|
|
3369
|
+
}
|
|
3370
|
+
.s34f1qb.ant-switch .ant-switch-handle::before {
|
|
3371
|
+
border-radius: 10px;
|
|
3372
|
+
transition-delay: 120ms;
|
|
3373
|
+
}
|
|
3374
|
+
.s34f1qb.ant-switch-small .ant-switch-handle {
|
|
3375
|
+
height: 14px;
|
|
3376
|
+
width: 14px;
|
|
3377
|
+
top: 1px;
|
|
3378
|
+
left: 1px;
|
|
3379
|
+
}
|
|
3380
|
+
.s34f1qb.ant-switch-large .ant-switch-handle {
|
|
3381
|
+
height: 28px;
|
|
3382
|
+
width: 28px;
|
|
3383
|
+
}
|
|
3384
|
+
.s34f1qb.ant-switch-large .ant-switch-handle::before {
|
|
3385
|
+
border-radius: 14px;
|
|
3386
|
+
}
|
|
3387
|
+
.s34f1qb.ant-switch-checked {
|
|
3388
|
+
background-color: #00ba5d;
|
|
3389
|
+
}
|
|
3390
|
+
.s34f1qb.ant-switch-checked .ant-switch-handle {
|
|
3391
|
+
left: calc(100% - 20px - 2px);
|
|
3392
|
+
}
|
|
3393
|
+
.s34f1qb.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
3394
|
+
left: calc(100% - 14px - 1px);
|
|
3395
|
+
}
|
|
3396
|
+
.s34f1qb.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
3397
|
+
left: calc(100% - 28px - 2px);
|
|
3398
|
+
}
|
|
3399
|
+
|
|
3400
|
+
.c1to9vb9 {
|
|
3401
|
+
margin-left: 5px;
|
|
3402
|
+
}
|
|
3403
|
+
|
|
3404
|
+
.t1upn1sz {
|
|
3405
|
+
height: 100%;
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
.tta5kd2 {
|
|
2977
3409
|
height: 100%;
|
|
2978
3410
|
}
|
|
2979
3411
|
.tta5kd2.empty-table .ant-table-content {
|
|
@@ -3332,564 +3764,163 @@ input.rrg1fkn.ant-input {
|
|
|
3332
3764
|
background: #fff;
|
|
3333
3765
|
}
|
|
3334
3766
|
|
|
3335
|
-
.
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
.da3mx0o .ant-select-item-group {
|
|
3340
|
-
padding: 8px 16px;
|
|
3341
|
-
line-height: 18px;
|
|
3342
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
3343
|
-
height: 34px;
|
|
3344
|
-
min-height: 34px;
|
|
3345
|
-
box-sizing: border-box;
|
|
3346
|
-
margin-top: 8px;
|
|
3767
|
+
.rxbeqvl.ant-radio-wrapper {
|
|
3768
|
+
display: inline-flex;
|
|
3769
|
+
align-items: baseline;
|
|
3770
|
+
white-space: pre-wrap;
|
|
3347
3771
|
}
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
flex-direction: column;
|
|
3352
|
-
margin: 1px 8px;
|
|
3353
|
-
padding: 8px;
|
|
3354
|
-
border-radius: 4px;
|
|
3772
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio {
|
|
3773
|
+
position: relative;
|
|
3774
|
+
top: 3px;
|
|
3355
3775
|
}
|
|
3356
|
-
.
|
|
3357
|
-
|
|
3776
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
3777
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
3358
3778
|
}
|
|
3359
|
-
.
|
|
3360
|
-
|
|
3779
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
3780
|
+
border-color: #0080ff;
|
|
3361
3781
|
}
|
|
3362
|
-
.
|
|
3363
|
-
|
|
3782
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
3783
|
+
border-color: #0080ff;
|
|
3784
|
+
background: #0080ff;
|
|
3364
3785
|
}
|
|
3365
|
-
.
|
|
3366
|
-
|
|
3786
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
3787
|
+
top: 4px;
|
|
3788
|
+
left: 4px;
|
|
3789
|
+
width: 6px;
|
|
3790
|
+
height: 6px;
|
|
3791
|
+
background: #fff;
|
|
3367
3792
|
}
|
|
3368
|
-
.
|
|
3369
|
-
|
|
3793
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
3794
|
+
opacity: 0.5;
|
|
3370
3795
|
}
|
|
3371
|
-
.
|
|
3372
|
-
|
|
3796
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
3797
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
3798
|
+
background: rgba(211, 218, 235, 0.6);
|
|
3373
3799
|
}
|
|
3374
|
-
.
|
|
3375
|
-
|
|
3800
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
3801
|
+
background: #00122e;
|
|
3376
3802
|
}
|
|
3377
|
-
.
|
|
3378
|
-
|
|
3379
|
-
|
|
3803
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
3804
|
+
color: #00122e;
|
|
3805
|
+
opacity: 0.5;
|
|
3380
3806
|
}
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
display: flex;
|
|
3384
|
-
justify-content: space-between;
|
|
3385
|
-
height: 20px;
|
|
3386
|
-
line-height: 20px;
|
|
3807
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
3808
|
+
color: #00122e;
|
|
3387
3809
|
}
|
|
3388
|
-
.
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3810
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio + span {
|
|
3811
|
+
display: inline-block;
|
|
3812
|
+
padding: 0;
|
|
3813
|
+
padding-left: 12px;
|
|
3392
3814
|
}
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
justify-content: space-between;
|
|
3815
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
3816
|
+
margin-bottom: 0;
|
|
3817
|
+
white-space: pre-wrap;
|
|
3397
3818
|
color: rgba(44, 56, 82, 0.6);
|
|
3398
|
-
height: 18px;
|
|
3399
|
-
line-height: 18px;
|
|
3400
|
-
margin-top: 2px;
|
|
3401
3819
|
}
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
border: none;
|
|
3405
|
-
margin-right: 0;
|
|
3406
|
-
background: rgba(225, 230, 241, 0.6);
|
|
3820
|
+
.rxbeqvl.ant-radio-wrapper.compact .ant-radio + span {
|
|
3821
|
+
padding-left: 8px;
|
|
3407
3822
|
}
|
|
3408
3823
|
|
|
3409
|
-
.
|
|
3410
|
-
|
|
3411
|
-
height: 32px;
|
|
3412
|
-
width: 100%;
|
|
3413
|
-
opacity: 0;
|
|
3824
|
+
.r5ie79y .ant-radio-button-wrapper:first-child {
|
|
3825
|
+
border-radius: 5px 0 0 5px;
|
|
3414
3826
|
}
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
display: inline-block;
|
|
3827
|
+
.r5ie79y .ant-radio-button-wrapper:last-child {
|
|
3828
|
+
border-radius: 0 5px 5px 0;
|
|
3418
3829
|
}
|
|
3419
3830
|
|
|
3420
|
-
.
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
font-weight: bold;
|
|
3424
|
-
font-size: 32px;
|
|
3425
|
-
line-height: 40px;
|
|
3831
|
+
.r1f0aqcc {
|
|
3832
|
+
color: #00122e;
|
|
3833
|
+
border-color: #ccd4e3;
|
|
3426
3834
|
}
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
font-size: 24px;
|
|
3835
|
+
.r1f0aqcc:first-child {
|
|
3836
|
+
border-color: #a3b4cc;
|
|
3837
|
+
}
|
|
3838
|
+
.r1f0aqcc.ant-radio-button-wrapper {
|
|
3839
|
+
padding: 0 12px;
|
|
3433
3840
|
line-height: 32px;
|
|
3841
|
+
height: 32px;
|
|
3434
3842
|
}
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
font-family: Inter;
|
|
3438
|
-
font-style: normal;
|
|
3439
|
-
font-weight: normal;
|
|
3440
|
-
font-size: 32px;
|
|
3441
|
-
line-height: 40px;
|
|
3843
|
+
.r1f0aqcc.ant-radio-button-wrapper > span + span {
|
|
3844
|
+
white-space: nowrap;
|
|
3442
3845
|
}
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
font-weight: bold;
|
|
3448
|
-
font-size: 20px;
|
|
3449
|
-
line-height: 24px;
|
|
3846
|
+
.ant-radio-group-small .r1f0aqcc.ant-radio-button-wrapper {
|
|
3847
|
+
height: 22px;
|
|
3848
|
+
padding: 0 7px;
|
|
3849
|
+
line-height: 20px;
|
|
3450
3850
|
}
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
font-family: Inter;
|
|
3454
|
-
font-style: normal;
|
|
3455
|
-
font-weight: normal;
|
|
3456
|
-
font-size: 20px;
|
|
3457
|
-
line-height: 24px;
|
|
3851
|
+
.r1f0aqcc.ant-radio-button-wrapper:not(:first-child)::before {
|
|
3852
|
+
background: #ccd4e3;
|
|
3458
3853
|
}
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
font-family: Inter;
|
|
3462
|
-
font-style: normal;
|
|
3463
|
-
font-weight: bold;
|
|
3464
|
-
font-size: 18px;
|
|
3465
|
-
line-height: 22px;
|
|
3466
|
-
}
|
|
3467
|
-
|
|
3468
|
-
.dvolwok {
|
|
3469
|
-
font-family: Inter;
|
|
3470
|
-
font-style: normal;
|
|
3471
|
-
font-weight: normal;
|
|
3472
|
-
font-size: 18px;
|
|
3473
|
-
line-height: 22px;
|
|
3474
|
-
}
|
|
3475
|
-
|
|
3476
|
-
.h181qhg4 {
|
|
3477
|
-
font-family: Inter;
|
|
3478
|
-
font-style: normal;
|
|
3479
|
-
font-weight: bold;
|
|
3480
|
-
font-size: 16px;
|
|
3481
|
-
line-height: 22px;
|
|
3482
|
-
}
|
|
3483
|
-
|
|
3484
|
-
.h1phgmcq {
|
|
3485
|
-
font-family: Inter;
|
|
3486
|
-
font-style: normal;
|
|
3487
|
-
font-weight: normal;
|
|
3488
|
-
font-size: 16px;
|
|
3489
|
-
line-height: 22px;
|
|
3490
|
-
}
|
|
3491
|
-
|
|
3492
|
-
.h173xnl1 {
|
|
3493
|
-
font-family: Inter;
|
|
3494
|
-
font-style: normal;
|
|
3495
|
-
font-weight: bold;
|
|
3496
|
-
font-size: 14px;
|
|
3497
|
-
line-height: 20px;
|
|
3498
|
-
}
|
|
3499
|
-
|
|
3500
|
-
.hedm4pz {
|
|
3501
|
-
font-family: Inter;
|
|
3502
|
-
font-style: normal;
|
|
3503
|
-
font-weight: normal;
|
|
3504
|
-
font-size: 14px;
|
|
3505
|
-
line-height: 20px;
|
|
3506
|
-
}
|
|
3507
|
-
|
|
3508
|
-
.h1kd8xld {
|
|
3509
|
-
font-family: Inter;
|
|
3510
|
-
font-style: normal;
|
|
3511
|
-
font-weight: bold;
|
|
3512
|
-
font-size: 12px;
|
|
3513
|
-
line-height: 18px;
|
|
3514
|
-
}
|
|
3515
|
-
|
|
3516
|
-
.hp14fr {
|
|
3517
|
-
font-family: Inter;
|
|
3518
|
-
font-style: normal;
|
|
3519
|
-
font-weight: normal;
|
|
3520
|
-
font-size: 12px;
|
|
3521
|
-
line-height: 18px;
|
|
3522
|
-
}
|
|
3523
|
-
|
|
3524
|
-
.hgrg7mn {
|
|
3525
|
-
font-family: Inter;
|
|
3526
|
-
font-style: normal;
|
|
3527
|
-
font-weight: bold;
|
|
3528
|
-
text-transform: uppercase;
|
|
3529
|
-
font-feature-settings: "cpsp" on;
|
|
3530
|
-
font-size: 12px;
|
|
3531
|
-
line-height: 18px;
|
|
3532
|
-
}
|
|
3533
|
-
|
|
3534
|
-
.h6zme9x {
|
|
3535
|
-
font-family: Inter;
|
|
3536
|
-
font-style: normal;
|
|
3537
|
-
font-weight: normal;
|
|
3538
|
-
text-transform: uppercase;
|
|
3539
|
-
font-feature-settings: "cpsp" on;
|
|
3540
|
-
font-size: 12px;
|
|
3541
|
-
line-height: 18px;
|
|
3542
|
-
}
|
|
3543
|
-
|
|
3544
|
-
.locjvsv {
|
|
3545
|
-
font-family: Inter;
|
|
3546
|
-
font-style: normal;
|
|
3547
|
-
font-weight: normal;
|
|
3548
|
-
font-size: 16px;
|
|
3549
|
-
line-height: 24px;
|
|
3550
|
-
}
|
|
3551
|
-
|
|
3552
|
-
.l13gi131 {
|
|
3553
|
-
font-family: Inter;
|
|
3554
|
-
font-style: normal;
|
|
3555
|
-
font-weight: bold;
|
|
3556
|
-
font-size: 16px;
|
|
3557
|
-
line-height: 24px;
|
|
3558
|
-
}
|
|
3559
|
-
|
|
3560
|
-
.l1ynemsu {
|
|
3561
|
-
font-family: Inter;
|
|
3562
|
-
font-style: normal;
|
|
3563
|
-
font-weight: normal;
|
|
3564
|
-
font-size: 16px;
|
|
3565
|
-
line-height: 24px;
|
|
3566
|
-
}
|
|
3567
|
-
|
|
3568
|
-
.l1cft1cx {
|
|
3569
|
-
font-family: Inter;
|
|
3570
|
-
font-style: normal;
|
|
3571
|
-
font-weight: bold;
|
|
3572
|
-
font-size: 16px;
|
|
3573
|
-
line-height: 24px;
|
|
3574
|
-
}
|
|
3575
|
-
|
|
3576
|
-
.l17tqc8p {
|
|
3577
|
-
font-family: Inter;
|
|
3578
|
-
font-style: normal;
|
|
3579
|
-
font-weight: normal;
|
|
3580
|
-
text-transform: uppercase;
|
|
3581
|
-
font-feature-settings: "cpsp" on;
|
|
3582
|
-
font-size: 16px;
|
|
3583
|
-
line-height: 24px;
|
|
3584
|
-
}
|
|
3585
|
-
|
|
3586
|
-
.l1j1e5w7 {
|
|
3587
|
-
font-family: Inter;
|
|
3588
|
-
font-style: normal;
|
|
3589
|
-
font-weight: bold;
|
|
3590
|
-
text-transform: uppercase;
|
|
3591
|
-
font-feature-settings: "cpsp" on;
|
|
3592
|
-
font-size: 16px;
|
|
3593
|
-
line-height: 24px;
|
|
3594
|
-
}
|
|
3595
|
-
|
|
3596
|
-
.l1gf91jb {
|
|
3597
|
-
font-family: Inter;
|
|
3598
|
-
font-style: normal;
|
|
3599
|
-
font-weight: normal;
|
|
3600
|
-
font-size: 14px;
|
|
3601
|
-
line-height: 22px;
|
|
3602
|
-
}
|
|
3603
|
-
|
|
3604
|
-
.lu7hlr6 {
|
|
3605
|
-
font-family: Inter;
|
|
3606
|
-
font-style: normal;
|
|
3607
|
-
font-weight: 500;
|
|
3608
|
-
font-size: 14px;
|
|
3609
|
-
line-height: 22px;
|
|
3610
|
-
}
|
|
3611
|
-
|
|
3612
|
-
.l3l3jf0 {
|
|
3613
|
-
font-family: Inter;
|
|
3614
|
-
font-style: normal;
|
|
3615
|
-
font-weight: bold;
|
|
3616
|
-
font-size: 14px;
|
|
3617
|
-
line-height: 22px;
|
|
3618
|
-
}
|
|
3619
|
-
|
|
3620
|
-
.l12j5nqp {
|
|
3621
|
-
font-family: Inter;
|
|
3622
|
-
font-style: normal;
|
|
3623
|
-
font-weight: normal;
|
|
3624
|
-
font-size: 14px;
|
|
3625
|
-
line-height: 22px;
|
|
3626
|
-
}
|
|
3627
|
-
|
|
3628
|
-
.l1tecqht {
|
|
3629
|
-
font-family: Inter;
|
|
3630
|
-
font-style: normal;
|
|
3631
|
-
font-weight: bold;
|
|
3632
|
-
font-size: 14px;
|
|
3633
|
-
line-height: 22px;
|
|
3634
|
-
}
|
|
3635
|
-
|
|
3636
|
-
.l6sa990 {
|
|
3637
|
-
font-family: Inter;
|
|
3638
|
-
font-style: normal;
|
|
3639
|
-
font-weight: normal;
|
|
3640
|
-
text-transform: uppercase;
|
|
3641
|
-
font-feature-settings: "cpsp" on;
|
|
3642
|
-
font-size: 14px;
|
|
3643
|
-
line-height: 22px;
|
|
3644
|
-
}
|
|
3645
|
-
|
|
3646
|
-
.lckqe8j {
|
|
3647
|
-
font-family: Inter;
|
|
3648
|
-
font-style: normal;
|
|
3649
|
-
font-weight: bold;
|
|
3650
|
-
text-transform: uppercase;
|
|
3651
|
-
font-feature-settings: "cpsp" on;
|
|
3652
|
-
font-size: 14px;
|
|
3653
|
-
line-height: 22px;
|
|
3654
|
-
}
|
|
3655
|
-
|
|
3656
|
-
.l1kuminb {
|
|
3657
|
-
font-family: Inter;
|
|
3658
|
-
font-style: normal;
|
|
3659
|
-
font-weight: normal;
|
|
3660
|
-
font-size: 13px;
|
|
3661
|
-
line-height: 20px;
|
|
3662
|
-
}
|
|
3663
|
-
|
|
3664
|
-
.l1pbuf5j {
|
|
3665
|
-
font-family: Inter;
|
|
3666
|
-
font-style: normal;
|
|
3667
|
-
font-weight: 600;
|
|
3668
|
-
font-size: 13px;
|
|
3669
|
-
line-height: 20px;
|
|
3670
|
-
}
|
|
3671
|
-
|
|
3672
|
-
.l1r4ztu {
|
|
3673
|
-
font-family: Inter;
|
|
3674
|
-
font-style: normal;
|
|
3675
|
-
font-weight: bold;
|
|
3676
|
-
font-size: 13px;
|
|
3677
|
-
line-height: 20px;
|
|
3678
|
-
}
|
|
3679
|
-
|
|
3680
|
-
.ly8vzok {
|
|
3681
|
-
font-family: Inter;
|
|
3682
|
-
font-style: normal;
|
|
3683
|
-
font-weight: normal;
|
|
3684
|
-
font-size: 13px;
|
|
3685
|
-
line-height: 20px;
|
|
3686
|
-
}
|
|
3687
|
-
|
|
3688
|
-
.lumfmf {
|
|
3689
|
-
font-family: Inter;
|
|
3690
|
-
font-style: normal;
|
|
3691
|
-
font-weight: 600;
|
|
3692
|
-
font-size: 13px;
|
|
3693
|
-
line-height: 20px;
|
|
3694
|
-
}
|
|
3695
|
-
|
|
3696
|
-
.l16ujwmv {
|
|
3697
|
-
font-family: Inter;
|
|
3698
|
-
font-style: normal;
|
|
3699
|
-
font-weight: bold;
|
|
3700
|
-
font-size: 13px;
|
|
3701
|
-
line-height: 20px;
|
|
3702
|
-
}
|
|
3703
|
-
|
|
3704
|
-
.l17o1ffr {
|
|
3705
|
-
font-family: Inter;
|
|
3706
|
-
font-style: normal;
|
|
3707
|
-
font-weight: normal;
|
|
3708
|
-
text-transform: uppercase;
|
|
3709
|
-
font-feature-settings: "cpsp" on;
|
|
3710
|
-
font-size: 13px;
|
|
3711
|
-
line-height: 20px;
|
|
3712
|
-
}
|
|
3713
|
-
|
|
3714
|
-
.lngllvn {
|
|
3715
|
-
font-family: Inter;
|
|
3716
|
-
font-style: normal;
|
|
3717
|
-
font-weight: bold;
|
|
3718
|
-
text-transform: uppercase;
|
|
3719
|
-
font-feature-settings: "cpsp" on;
|
|
3720
|
-
font-size: 13px;
|
|
3721
|
-
line-height: 20px;
|
|
3722
|
-
}
|
|
3723
|
-
|
|
3724
|
-
.l2i7fo9 {
|
|
3725
|
-
font-family: Inter;
|
|
3726
|
-
font-style: normal;
|
|
3727
|
-
font-weight: normal;
|
|
3728
|
-
font-size: 12px;
|
|
3729
|
-
line-height: 18px;
|
|
3730
|
-
}
|
|
3731
|
-
|
|
3732
|
-
.l1x7hscx {
|
|
3733
|
-
font-family: Inter;
|
|
3734
|
-
font-style: normal;
|
|
3735
|
-
font-weight: 500;
|
|
3736
|
-
font-size: 12px;
|
|
3737
|
-
line-height: 18px;
|
|
3738
|
-
}
|
|
3739
|
-
|
|
3740
|
-
.le1jwan {
|
|
3741
|
-
font-family: Inter;
|
|
3742
|
-
font-style: normal;
|
|
3743
|
-
font-weight: bold;
|
|
3744
|
-
font-size: 12px;
|
|
3745
|
-
line-height: 18px;
|
|
3746
|
-
}
|
|
3747
|
-
|
|
3748
|
-
.lyxynfj {
|
|
3749
|
-
font-family: Inter;
|
|
3750
|
-
font-style: normal;
|
|
3751
|
-
font-weight: normal;
|
|
3752
|
-
font-size: 12px;
|
|
3753
|
-
line-height: 18px;
|
|
3754
|
-
}
|
|
3755
|
-
|
|
3756
|
-
.lpb2nxv {
|
|
3757
|
-
font-family: Inter;
|
|
3758
|
-
font-style: normal;
|
|
3759
|
-
font-weight: 500;
|
|
3760
|
-
font-size: 12px;
|
|
3761
|
-
line-height: 18px;
|
|
3854
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
3855
|
+
background: #0080ff;
|
|
3762
3856
|
}
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
font-style: normal;
|
|
3767
|
-
font-weight: bold;
|
|
3768
|
-
font-size: 12px;
|
|
3769
|
-
line-height: 18px;
|
|
3857
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
3858
|
+
background: #ccd4e3;
|
|
3859
|
+
opacity: 0.5;
|
|
3770
3860
|
}
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
font-family: Inter;
|
|
3774
|
-
font-style: normal;
|
|
3775
|
-
font-weight: normal;
|
|
3776
|
-
text-transform: uppercase;
|
|
3777
|
-
font-feature-settings: "cpsp" on;
|
|
3778
|
-
font-size: 12px;
|
|
3779
|
-
line-height: 18px;
|
|
3861
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
3862
|
+
border-right-color: #0080ff;
|
|
3780
3863
|
}
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
font-family: Inter;
|
|
3784
|
-
font-style: normal;
|
|
3785
|
-
font-weight: bold;
|
|
3786
|
-
text-transform: uppercase;
|
|
3787
|
-
font-feature-settings: "cpsp" on;
|
|
3788
|
-
font-size: 12px;
|
|
3789
|
-
line-height: 18px;
|
|
3864
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
3865
|
+
border-color: #0080ff;
|
|
3790
3866
|
}
|
|
3791
|
-
|
|
3792
|
-
.
|
|
3793
|
-
font-family: Inter;
|
|
3794
|
-
font-style: normal;
|
|
3795
|
-
font-weight: normal;
|
|
3796
|
-
font-size: 13px;
|
|
3797
|
-
line-height: 20px;
|
|
3867
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked {
|
|
3868
|
+
background: rgba(0, 136, 255, 0.1);
|
|
3798
3869
|
}
|
|
3799
|
-
|
|
3800
|
-
.
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
font-weight: normal;
|
|
3804
|
-
font-size: 13px;
|
|
3805
|
-
line-height: 20px;
|
|
3870
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled {
|
|
3871
|
+
background: rgba(211, 218, 235, 0.6);
|
|
3872
|
+
border-color: #ccd4e3;
|
|
3873
|
+
opacity: 0.5;
|
|
3806
3874
|
}
|
|
3807
|
-
|
|
3808
|
-
|
|
3809
|
-
|
|
3810
|
-
font-style: normal;
|
|
3811
|
-
font-weight: normal;
|
|
3812
|
-
font-size: 12px;
|
|
3813
|
-
line-height: 18px;
|
|
3875
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled:hover {
|
|
3876
|
+
color: #00122e;
|
|
3877
|
+
border-color: #ccd4e3;
|
|
3814
3878
|
}
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
font-weight: normal;
|
|
3820
|
-
font-size: 12px;
|
|
3821
|
-
line-height: 18px;
|
|
3879
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
3880
|
+
color: #00122e;
|
|
3881
|
+
border-color: #ccd4e3;
|
|
3882
|
+
background: rgba(172, 186, 211, 0.6);
|
|
3822
3883
|
}
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
line-height: 20px;
|
|
3884
|
+
.r1f0aqcc .ant-radio-button-input {
|
|
3885
|
+
margin-right: 8px;
|
|
3886
|
+
display: inline;
|
|
3887
|
+
border: none;
|
|
3888
|
+
padding: 0;
|
|
3889
|
+
width: 36px;
|
|
3890
|
+
background: transparent;
|
|
3831
3891
|
}
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
font-family: Inter;
|
|
3835
|
-
font-style: normal;
|
|
3836
|
-
font-weight: normal;
|
|
3837
|
-
font-feature-settings: "zero" on;
|
|
3838
|
-
font-size: 13px;
|
|
3839
|
-
line-height: 20px;
|
|
3892
|
+
.r1f0aqcc .ant-radio-button-input:focus {
|
|
3893
|
+
box-shadow: none;
|
|
3840
3894
|
}
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
font-weight: normal;
|
|
3846
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
3847
|
-
font-size: 12px;
|
|
3848
|
-
line-height: 18px;
|
|
3895
|
+
.r1f0aqcc .ant-radio-button-input.ant-input-number {
|
|
3896
|
+
margin-right: 0;
|
|
3897
|
+
width: initial;
|
|
3898
|
+
box-shadow: none;
|
|
3849
3899
|
}
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
font-family: Inter;
|
|
3853
|
-
font-style: normal;
|
|
3854
|
-
font-weight: 500;
|
|
3855
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
3856
|
-
font-size: 12px;
|
|
3857
|
-
line-height: 18px;
|
|
3900
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
3901
|
+
display: none;
|
|
3858
3902
|
}
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
font-family: Inter;
|
|
3862
|
-
font-style: normal;
|
|
3863
|
-
font-weight: normal;
|
|
3864
|
-
font-feature-settings: "zero" on;
|
|
3865
|
-
font-size: 12px;
|
|
3866
|
-
line-height: 18px;
|
|
3903
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap {
|
|
3904
|
+
display: inline;
|
|
3867
3905
|
}
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
font-feature-settings: "zero" on;
|
|
3874
|
-
font-size: 12px;
|
|
3875
|
-
line-height: 18px;
|
|
3906
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
3907
|
+
display: inline;
|
|
3908
|
+
margin-right: 8px;
|
|
3909
|
+
padding: 0;
|
|
3910
|
+
width: 36px;
|
|
3876
3911
|
}
|
|
3877
3912
|
|
|
3878
|
-
.
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3913
|
+
.m15dvk92 {
|
|
3914
|
+
display: flex;
|
|
3915
|
+
justify-content: space-between;
|
|
3916
|
+
width: 100%;
|
|
3917
|
+
}
|
|
3918
|
+
.m15dvk92 .action {
|
|
3919
|
+
margin-left: 16px;
|
|
3885
3920
|
}
|
|
3886
3921
|
|
|
3887
|
-
.
|
|
3888
|
-
|
|
3889
|
-
font-style: normal;
|
|
3890
|
-
font-weight: normal;
|
|
3891
|
-
font-size: 10px;
|
|
3892
|
-
line-height: 12px;
|
|
3922
|
+
.aql8iqz .ant-alert-message {
|
|
3923
|
+
width: 100%;
|
|
3893
3924
|
}
|
|
3894
3925
|
|
|
3895
3926
|
.c198s9j3 {
|
|
@@ -3967,27 +3998,19 @@ input.rrg1fkn.ant-input {
|
|
|
3967
3998
|
display: flex;
|
|
3968
3999
|
}
|
|
3969
4000
|
|
|
3970
|
-
.igz4le8 {
|
|
3971
|
-
height: 24px;
|
|
3972
|
-
width: 56px !important;
|
|
3973
|
-
margin-right: 4px;
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
.c1riexje {
|
|
3977
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3978
|
-
}
|
|
3979
|
-
|
|
3980
4001
|
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
3981
4002
|
border-radius: 6px;
|
|
3982
4003
|
}
|
|
3983
4004
|
.shq1k1g.ant-select.ant-select-single {
|
|
3984
4005
|
width: 100%;
|
|
3985
|
-
height: 30px;
|
|
3986
4006
|
color: #2d3a56;
|
|
3987
4007
|
border-color: rgba(211, 218, 235, 0.6);
|
|
3988
4008
|
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
3989
4009
|
font-size: 13px;
|
|
3990
4010
|
}
|
|
4011
|
+
.shq1k1g.ant-select.ant-select-single[data-size=middle] {
|
|
4012
|
+
height: 30px;
|
|
4013
|
+
}
|
|
3991
4014
|
.shq1k1g.ant-select.ant-select-single.ant-select-lg {
|
|
3992
4015
|
height: 38px;
|
|
3993
4016
|
font-size: 13px;
|
|
@@ -4193,6 +4216,16 @@ input.rrg1fkn.ant-input {
|
|
|
4193
4216
|
margin-left: 8px;
|
|
4194
4217
|
}
|
|
4195
4218
|
|
|
4219
|
+
.igz4le8 {
|
|
4220
|
+
height: 24px;
|
|
4221
|
+
width: 56px !important;
|
|
4222
|
+
margin-right: 4px;
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
.c1riexje {
|
|
4226
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4227
|
+
}
|
|
4228
|
+
|
|
4196
4229
|
.s1uupxds {
|
|
4197
4230
|
padding: 0 8px;
|
|
4198
4231
|
border-radius: 4px;
|
|
@@ -4296,6 +4329,90 @@ input.rrg1fkn.ant-input {
|
|
|
4296
4329
|
background: rgba(163, 180, 204, 0.18);
|
|
4297
4330
|
}
|
|
4298
4331
|
|
|
4332
|
+
.c1k4vanq {
|
|
4333
|
+
padding: 0 16px 14px 16px;
|
|
4334
|
+
}
|
|
4335
|
+
|
|
4336
|
+
.c1udgdh2 {
|
|
4337
|
+
color: #2d3a56;
|
|
4338
|
+
padding: 12px 16px 10px 16px;
|
|
4339
|
+
display: flex;
|
|
4340
|
+
justify-content: space-between;
|
|
4341
|
+
align-items: center;
|
|
4342
|
+
}
|
|
4343
|
+
.c1udgdh2.has-arrow {
|
|
4344
|
+
padding-left: 10px;
|
|
4345
|
+
}
|
|
4346
|
+
.c1udgdh2.has-arrow .title-wrapper {
|
|
4347
|
+
cursor: pointer;
|
|
4348
|
+
color: #00122e;
|
|
4349
|
+
}
|
|
4350
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open {
|
|
4351
|
+
color: #2d3a56;
|
|
4352
|
+
font-weight: 600;
|
|
4353
|
+
}
|
|
4354
|
+
.c1udgdh2.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
4355
|
+
transform: rotate(90deg);
|
|
4356
|
+
}
|
|
4357
|
+
.c1udgdh2 .sub-info {
|
|
4358
|
+
font-size: 12px;
|
|
4359
|
+
line-height: 18px;
|
|
4360
|
+
}
|
|
4361
|
+
.c1udgdh2 .title-wrapper {
|
|
4362
|
+
display: flex;
|
|
4363
|
+
align-items: center;
|
|
4364
|
+
user-select: none;
|
|
4365
|
+
flex-grow: 1;
|
|
4366
|
+
font-size: 12px;
|
|
4367
|
+
line-height: 18px;
|
|
4368
|
+
color: #2d3a56;
|
|
4369
|
+
font-weight: 700;
|
|
4370
|
+
}
|
|
4371
|
+
.c1udgdh2 .collapse-arrow {
|
|
4372
|
+
transition: all 50ms ease-out 0ms;
|
|
4373
|
+
margin-right: 2px;
|
|
4374
|
+
}
|
|
4375
|
+
|
|
4376
|
+
.bab9xum {
|
|
4377
|
+
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);
|
|
4378
|
+
}
|
|
4379
|
+
|
|
4380
|
+
.cav4gt6 {
|
|
4381
|
+
border-radius: 4px;
|
|
4382
|
+
background-color: white;
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4385
|
+
.f1p9ti6d {
|
|
4386
|
+
width: 100%;
|
|
4387
|
+
margin-bottom: 0 !important;
|
|
4388
|
+
flex-flow: nowrap !important;
|
|
4389
|
+
line-break: auto;
|
|
4390
|
+
}
|
|
4391
|
+
.f1p9ti6d > .ant-form-item-label {
|
|
4392
|
+
text-align: left !important;
|
|
4393
|
+
padding-bottom: 0 !important;
|
|
4394
|
+
}
|
|
4395
|
+
.f1p9ti6d > .ant-form-item-label > label {
|
|
4396
|
+
min-height: 32px;
|
|
4397
|
+
height: auto;
|
|
4398
|
+
font-size: 13px;
|
|
4399
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4400
|
+
white-space: normal;
|
|
4401
|
+
}
|
|
4402
|
+
.f1p9ti6d.ant-form-item-has-error .ant-input {
|
|
4403
|
+
border-color: #ff4d4f !important;
|
|
4404
|
+
}
|
|
4405
|
+
.f1p9ti6d .ant-form-item-explain {
|
|
4406
|
+
margin-top: 4px;
|
|
4407
|
+
font-size: 12px;
|
|
4408
|
+
min-height: 0px;
|
|
4409
|
+
}
|
|
4410
|
+
.f1p9ti6d .ant-form-item-extra {
|
|
4411
|
+
font-size: 12px;
|
|
4412
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4413
|
+
min-height: 0px;
|
|
4414
|
+
}
|
|
4415
|
+
|
|
4299
4416
|
.tc40oxa {
|
|
4300
4417
|
margin-bottom: 4px;
|
|
4301
4418
|
color: rgba(44, 56, 82, 0.6);
|
|
@@ -4449,9 +4566,6 @@ input.rrg1fkn.ant-input {
|
|
|
4449
4566
|
border-radius: 5px;
|
|
4450
4567
|
font-size: 12px;
|
|
4451
4568
|
}
|
|
4452
|
-
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input {
|
|
4453
|
-
padding: 2px 8px;
|
|
4454
|
-
}
|
|
4455
4569
|
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
4456
4570
|
font-size: inherit;
|
|
4457
4571
|
}
|
|
@@ -4492,35 +4606,32 @@ input.rrg1fkn.ant-input {
|
|
|
4492
4606
|
margin-right: 8px;
|
|
4493
4607
|
}
|
|
4494
4608
|
|
|
4495
|
-
.
|
|
4496
|
-
|
|
4497
|
-
|
|
4498
|
-
flex-flow: nowrap !important;
|
|
4499
|
-
line-break: auto;
|
|
4609
|
+
.sut42l0 {
|
|
4610
|
+
padding: 0 8px;
|
|
4611
|
+
height: 18px;
|
|
4500
4612
|
}
|
|
4501
|
-
|
|
4502
|
-
|
|
4503
|
-
padding
|
|
4613
|
+
|
|
4614
|
+
.mfsz1jz {
|
|
4615
|
+
padding: 2px 8px;
|
|
4616
|
+
height: 24px;
|
|
4504
4617
|
}
|
|
4505
|
-
|
|
4506
|
-
|
|
4507
|
-
|
|
4508
|
-
font-size: 13px;
|
|
4509
|
-
color: rgba(44, 56, 82, 0.6);
|
|
4510
|
-
white-space: normal;
|
|
4618
|
+
|
|
4619
|
+
.tnd6h4m {
|
|
4620
|
+
margin: 0;
|
|
4511
4621
|
}
|
|
4512
|
-
|
|
4513
|
-
|
|
4622
|
+
|
|
4623
|
+
.i1qw4clm {
|
|
4624
|
+
margin-right: 4px;
|
|
4625
|
+
height: 16px;
|
|
4514
4626
|
}
|
|
4515
|
-
|
|
4516
|
-
|
|
4517
|
-
|
|
4518
|
-
min-height: 0px;
|
|
4627
|
+
|
|
4628
|
+
.w1xcixj5.outside-tag {
|
|
4629
|
+
padding-left: 0;
|
|
4519
4630
|
}
|
|
4520
|
-
.
|
|
4521
|
-
|
|
4522
|
-
|
|
4523
|
-
|
|
4631
|
+
.w1xcixj5.outside-tag .inside-tag {
|
|
4632
|
+
border-radius: 4px 0 0 4px;
|
|
4633
|
+
padding-right: 4px;
|
|
4634
|
+
margin-right: 4px;
|
|
4524
4635
|
}
|
|
4525
4636
|
|
|
4526
4637
|
.at4ovwe .ant-input-number-handler-wrap {
|
|
@@ -4569,25 +4680,6 @@ input.rrg1fkn.ant-input {
|
|
|
4569
4680
|
font-size: inherit;
|
|
4570
4681
|
}
|
|
4571
4682
|
|
|
4572
|
-
.feau332.ant-form-item {
|
|
4573
|
-
margin-bottom: 0;
|
|
4574
|
-
}
|
|
4575
|
-
.feau332 .ant-form-item-explain {
|
|
4576
|
-
display: none;
|
|
4577
|
-
min-height: 18px;
|
|
4578
|
-
margin-top: 5px;
|
|
4579
|
-
font-family: "Inter";
|
|
4580
|
-
font-weight: 400;
|
|
4581
|
-
font-size: 12px;
|
|
4582
|
-
line-height: 18px;
|
|
4583
|
-
}
|
|
4584
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4585
|
-
white-space: pre-wrap;
|
|
4586
|
-
}
|
|
4587
|
-
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4588
|
-
display: block;
|
|
4589
|
-
}
|
|
4590
|
-
|
|
4591
4683
|
.a6dbbkm .ant-input-number-handler-wrap {
|
|
4592
4684
|
display: var(--a6dbbkm-0);
|
|
4593
4685
|
}
|
|
@@ -4617,4 +4709,23 @@ input.rrg1fkn.ant-input {
|
|
|
4617
4709
|
margin: 0;
|
|
4618
4710
|
height: auto;
|
|
4619
4711
|
font-size: inherit;
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4714
|
+
.feau332.ant-form-item {
|
|
4715
|
+
margin-bottom: 0;
|
|
4716
|
+
}
|
|
4717
|
+
.feau332 .ant-form-item-explain {
|
|
4718
|
+
display: none;
|
|
4719
|
+
min-height: 18px;
|
|
4720
|
+
margin-top: 5px;
|
|
4721
|
+
font-family: "Inter";
|
|
4722
|
+
font-weight: 400;
|
|
4723
|
+
font-size: 12px;
|
|
4724
|
+
line-height: 18px;
|
|
4725
|
+
}
|
|
4726
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4727
|
+
white-space: pre-wrap;
|
|
4728
|
+
}
|
|
4729
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4730
|
+
display: block;
|
|
4620
4731
|
}
|