@cloudtower/eagle 0.27.60 → 0.27.62
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/cjs/UIKitProvider/index.js +77 -0
- package/dist/cjs/core/AccordionCard/index.js +59 -0
- package/dist/cjs/core/Alert/index.js +80 -0
- package/dist/cjs/core/Arch/index.js +17 -0
- package/dist/cjs/core/Badge/index.js +51 -0
- package/dist/cjs/core/BaseIcon/index.js +76 -0
- package/dist/cjs/core/Bit/index.js +40 -0
- package/dist/cjs/core/BitPerSecond/index.js +40 -0
- package/dist/cjs/core/Bps/index.js +40 -0
- package/dist/cjs/core/Breadcrumb/index.js +58 -0
- package/dist/cjs/core/Button/HoverableElement.js +14 -0
- package/dist/cjs/core/Button/index.js +89 -0
- package/dist/cjs/core/ButtonGroup/index.js +110 -0
- package/dist/cjs/core/Byte/index.js +49 -0
- package/dist/cjs/core/Calendar/index.js +25 -0
- package/dist/cjs/core/Card/CardBody.js +12 -0
- package/dist/cjs/core/Card/CardTitle.js +12 -0
- package/dist/cjs/core/Card/CardWrapper.js +55 -0
- package/dist/cjs/core/Card/index.js +94 -0
- package/dist/cjs/core/Cascader/cascader.style.js +23 -0
- package/dist/cjs/core/Cascader/cascader.widget.js +86 -0
- package/dist/cjs/core/Cascader/index.js +74 -0
- package/dist/cjs/core/Checkbox/checkbox.style.js +5 -0
- package/dist/cjs/core/Checkbox/index.js +53 -0
- package/dist/cjs/core/DetailCard/index.js +23 -0
- package/dist/cjs/core/DonutChart/index.js +167 -0
- package/dist/cjs/core/DropdownMenu/index.js +66 -0
- package/dist/cjs/core/Empty/index.js +11 -0
- package/dist/cjs/core/ExpandableList/ExpandIcon.js +17 -0
- package/dist/cjs/core/ExpandableList/ExpandableContainer.js +17 -0
- package/dist/cjs/core/ExpandableList/ExpandableItem.js +48 -0
- package/dist/cjs/core/ExpandableList/RoundOrder.js +22 -0
- package/dist/cjs/core/FailedLoad/index.js +32 -0
- package/dist/cjs/core/Fields/FieldsBoolean/index.js +47 -0
- package/dist/cjs/core/Fields/FieldsDateTime/index.js +24 -0
- package/dist/cjs/core/Fields/FieldsDateTimeRange/index.js +50 -0
- package/dist/cjs/core/Fields/FieldsEnum/index.js +60 -0
- package/dist/cjs/core/Fields/FieldsFloat/index.js +60 -0
- package/dist/cjs/core/Fields/FieldsInt/index.js +78 -0
- package/dist/cjs/core/Fields/FieldsInteger/index.js +57 -0
- package/dist/cjs/core/Fields/FieldsString/index.js +116 -0
- package/dist/cjs/core/Fields/FieldsTextArea/index.js +64 -0
- package/dist/cjs/core/Fields/FieldsTimePicker/index.js +54 -0
- package/dist/cjs/core/Fields/index.js +28 -0
- package/dist/cjs/core/Form/index.js +10 -0
- package/dist/cjs/core/FormItem/index.js +38 -0
- package/dist/cjs/core/Frequency/index.js +40 -0
- package/dist/cjs/core/Icon/index.js +117 -0
- package/dist/cjs/core/Input/index.js +66 -0
- package/dist/cjs/core/InputGroup/index.js +14 -0
- package/dist/cjs/core/InputInteger/formatterInteger.js +15 -0
- package/dist/cjs/core/InputInteger/index.js +97 -0
- package/dist/cjs/core/InputNumber/index.js +90 -0
- package/dist/cjs/core/InputTagItem/index.js +12 -0
- package/dist/cjs/core/KitStoreProvider/index.js +23 -0
- package/dist/cjs/core/Link/index.js +57 -0
- package/dist/cjs/core/Loading/index.js +33 -0
- package/dist/cjs/core/Loading/style.js +11 -0
- package/dist/cjs/core/Metric/metric.js +21 -0
- package/dist/cjs/core/Modal/index.js +214 -0
- package/dist/cjs/core/ModalStack/index.js +47 -0
- package/dist/cjs/core/Overflow/index.js +117 -0
- package/dist/cjs/core/Pagination/index.js +120 -0
- package/dist/cjs/core/ParrotTrans/index.js +28 -0
- package/dist/cjs/core/Percent/index.js +41 -0
- package/dist/cjs/core/Progress/index.js +25 -0
- package/dist/cjs/core/Radio/index.js +142 -0
- package/dist/cjs/core/SearchInput/index.js +50 -0
- package/dist/cjs/core/Second/index.js +43 -0
- package/dist/cjs/core/SegmentControl/index.js +43 -0
- package/dist/cjs/core/Select/index.js +140 -0
- package/dist/cjs/core/SimplePagination/index.js +90 -0
- package/dist/cjs/core/Speed/index.js +40 -0
- package/dist/cjs/core/StatusCapsule/index.js +100 -0
- package/dist/cjs/core/StepProgress/index.js +44 -0
- package/dist/cjs/core/Steps/index.js +126 -0
- package/dist/cjs/core/Steps/style.js +13 -0
- package/dist/cjs/core/Styled/index.js +57 -0
- package/dist/cjs/core/Switch/index.js +61 -0
- package/dist/cjs/core/Table/TableWidget.js +47 -0
- package/dist/cjs/core/Table/common.js +46 -0
- package/dist/cjs/core/Table/index.js +112 -0
- package/dist/cjs/core/TableForm/AddRowButton.js +108 -0
- package/dist/cjs/core/TableForm/Columns/AffixColumn.js +48 -0
- package/dist/cjs/core/TableForm/Columns/CheckboxColumn.js +35 -0
- package/dist/cjs/core/TableForm/Columns/FormItem.js +20 -0
- package/dist/cjs/core/TableForm/Columns/InputColumn.js +117 -0
- package/dist/cjs/core/TableForm/Columns/TextColumn.js +44 -0
- package/dist/cjs/core/TableForm/Columns/index.js +24 -0
- package/dist/cjs/core/TableForm/TableFormBodyCell.js +165 -0
- package/dist/cjs/core/TableForm/TableFormBodyRows.js +215 -0
- package/dist/cjs/core/TableForm/TableFormHeaderCell.js +93 -0
- package/dist/cjs/core/TableForm/index.js +187 -0
- package/dist/cjs/core/TableForm/style.js +35 -0
- package/dist/cjs/core/TableForm/types.js +10 -0
- package/dist/cjs/core/TableForm/utils.js +36 -0
- package/dist/cjs/core/Tag/SplitTag.js +64 -0
- package/dist/cjs/core/Tag/const.js +12 -0
- package/dist/cjs/core/Tag/index.js +96 -0
- package/dist/cjs/core/Tag/style.js +14 -0
- package/dist/cjs/core/TextArea/index.js +72 -0
- package/dist/cjs/core/Time/index.js +31 -0
- package/dist/cjs/core/TimePicker/index.js +66 -0
- package/dist/cjs/core/TimeZoneSelect/index.js +165 -0
- package/dist/cjs/core/Token/index.js +86 -0
- package/dist/cjs/core/Token/style.js +5 -0
- package/dist/cjs/core/Tooltip/index.js +89 -0
- package/dist/cjs/core/Truncate/index.js +49 -0
- package/dist/cjs/core/Typo/index.js +130 -0
- package/dist/cjs/core/antd.js +208 -0
- package/dist/cjs/core/message/index.js +203 -0
- package/dist/cjs/core/message-group/index.js +147 -0
- package/dist/cjs/coreX/BarChart/index.js +39 -0
- package/dist/cjs/coreX/BatchOperation/index.js +149 -0
- package/dist/cjs/coreX/ChartWithTooltip/index.js +154 -0
- package/dist/cjs/coreX/Counting/index.js +22 -0
- package/dist/cjs/coreX/CronCalendar/index.js +105 -0
- package/dist/cjs/coreX/CronPlan/index.js +462 -0
- package/dist/cjs/coreX/DateRangePicker/AbsoluteDate.js +179 -0
- package/dist/cjs/coreX/DateRangePicker/Calendar.js +286 -0
- package/dist/cjs/coreX/DateRangePicker/DateRangePicker.style.js +84 -0
- package/dist/cjs/coreX/DateRangePicker/InputTime.js +151 -0
- package/dist/cjs/coreX/DateRangePicker/RelativeTime.js +53 -0
- package/dist/cjs/coreX/DateRangePicker/common.js +195 -0
- package/dist/cjs/coreX/DateRangePicker/index.js +331 -0
- package/dist/cjs/coreX/DeprecatedDonutChart/index.js +39 -0
- package/dist/cjs/coreX/DropdownTransition/index.js +73 -0
- package/dist/cjs/coreX/GoBackButton/index.js +45 -0
- package/dist/cjs/coreX/I18nNameTag/index.js +37 -0
- package/dist/cjs/coreX/NamesTooltip/index.js +34 -0
- package/dist/cjs/coreX/OverflowTooltip/index.js +92 -0
- package/dist/cjs/coreX/SidebarSubtitle/index.js +13 -0
- package/dist/cjs/coreX/SortableList/index.js +33 -0
- package/dist/cjs/coreX/SummaryTable/index.js +113 -0
- package/dist/cjs/coreX/SwitchWithText/index.js +59 -0
- package/dist/cjs/coreX/TabMenu/index.js +152 -0
- package/dist/cjs/coreX/TruncatedTextWithTooltip/index.js +69 -0
- package/dist/cjs/coreX/UnitWithChart/index.js +118 -0
- package/dist/cjs/coreX/common/getCalendarTitle.js +26 -0
- package/dist/cjs/hooks/useElementIntersectionRatio.js +30 -0
- package/dist/cjs/hooks/useElementResize.js +69 -0
- package/dist/cjs/hooks/useElementsSize.js +58 -0
- package/dist/cjs/hooks/useMemoCompare.js +17 -0
- package/dist/cjs/hooks/useParrotTranslation.js +13 -0
- package/dist/cjs/index.js +104 -10319
- package/dist/cjs/spec/type.js +9 -0
- package/dist/cjs/stats1.html +1 -1
- package/dist/cjs/store/chart.js +65 -0
- package/dist/cjs/store/index.js +48 -0
- package/dist/cjs/store/modal.js +67 -0
- package/dist/cjs/styles/token/color.js +273 -0
- package/dist/cjs/styles/token/zIndices.js +7 -0
- package/dist/cjs/utils/constants.js +8 -0
- package/dist/cjs/utils/cron-time.js +450 -0
- package/dist/cjs/utils/dom.js +16 -0
- package/dist/cjs/utils/icon.js +22 -0
- package/dist/cjs/utils/isEmpty.js +12 -0
- package/dist/cjs/utils/time.js +86 -0
- package/dist/cjs/utils/tower.js +188 -0
- package/dist/components.css +3580 -2683
- package/dist/esm/UIKitProvider/index.js +71 -0
- package/dist/esm/core/AccordionCard/index.js +57 -0
- package/dist/esm/core/Alert/index.js +78 -0
- package/dist/esm/core/Arch/index.js +15 -0
- package/dist/esm/core/Badge/index.js +49 -0
- package/dist/esm/core/BaseIcon/index.js +74 -0
- package/dist/esm/core/Bit/index.js +38 -0
- package/dist/esm/core/BitPerSecond/index.js +38 -0
- package/dist/esm/core/Bps/index.js +38 -0
- package/dist/esm/core/Breadcrumb/index.js +53 -0
- package/dist/esm/core/Button/HoverableElement.js +12 -0
- package/dist/esm/core/Button/index.js +87 -0
- package/dist/esm/core/ButtonGroup/index.js +105 -0
- package/dist/esm/core/Byte/index.js +47 -0
- package/dist/esm/core/Calendar/index.js +23 -0
- package/dist/esm/core/Card/CardBody.js +10 -0
- package/dist/esm/core/Card/CardTitle.js +10 -0
- package/dist/esm/core/Card/CardWrapper.js +53 -0
- package/dist/esm/core/Card/index.js +92 -0
- package/dist/esm/core/Cascader/cascader.style.js +12 -0
- package/dist/esm/core/Cascader/cascader.widget.js +79 -0
- package/dist/esm/core/Cascader/index.js +72 -0
- package/dist/esm/core/Checkbox/checkbox.style.js +3 -0
- package/dist/esm/core/Checkbox/index.js +51 -0
- package/dist/esm/core/DetailCard/index.js +21 -0
- package/dist/esm/core/DonutChart/index.js +161 -0
- package/dist/esm/core/DropdownMenu/index.js +61 -0
- package/dist/esm/core/Empty/index.js +9 -0
- package/dist/esm/core/ExpandableList/ExpandIcon.js +15 -0
- package/dist/esm/core/ExpandableList/ExpandableContainer.js +15 -0
- package/dist/esm/core/ExpandableList/ExpandableItem.js +46 -0
- package/dist/esm/core/ExpandableList/RoundOrder.js +20 -0
- package/dist/esm/core/FailedLoad/index.js +30 -0
- package/dist/esm/core/Fields/FieldsBoolean/index.js +45 -0
- package/dist/esm/core/Fields/FieldsDateTime/index.js +22 -0
- package/dist/esm/core/Fields/FieldsDateTimeRange/index.js +48 -0
- package/dist/esm/core/Fields/FieldsEnum/index.js +58 -0
- package/dist/esm/core/Fields/FieldsFloat/index.js +58 -0
- package/dist/esm/core/Fields/FieldsInt/index.js +76 -0
- package/dist/esm/core/Fields/FieldsInteger/index.js +55 -0
- package/dist/esm/core/Fields/FieldsString/index.js +114 -0
- package/dist/esm/core/Fields/FieldsTextArea/index.js +62 -0
- package/dist/esm/core/Fields/FieldsTimePicker/index.js +52 -0
- package/dist/esm/core/Fields/index.js +26 -0
- package/dist/esm/core/Form/index.js +8 -0
- package/dist/esm/core/FormItem/index.js +36 -0
- package/dist/esm/core/Frequency/index.js +38 -0
- package/dist/esm/core/Icon/index.js +115 -0
- package/dist/esm/core/Input/index.js +64 -0
- package/dist/esm/core/InputGroup/index.js +12 -0
- package/dist/esm/core/InputInteger/formatterInteger.js +13 -0
- package/dist/esm/core/InputInteger/index.js +92 -0
- package/dist/esm/core/InputNumber/index.js +85 -0
- package/dist/esm/core/InputTagItem/index.js +10 -0
- package/dist/esm/core/KitStoreProvider/index.js +17 -0
- package/dist/esm/core/Link/index.js +55 -0
- package/dist/esm/core/Loading/index.js +31 -0
- package/dist/esm/core/Loading/style.js +6 -0
- package/dist/esm/core/Metric/metric.js +19 -0
- package/dist/esm/core/Modal/index.js +212 -0
- package/dist/esm/core/ModalStack/index.js +45 -0
- package/dist/esm/core/Overflow/index.js +112 -0
- package/dist/esm/core/Pagination/index.js +115 -0
- package/dist/esm/core/ParrotTrans/index.js +26 -0
- package/dist/esm/core/Percent/index.js +39 -0
- package/dist/esm/core/Progress/index.js +23 -0
- package/dist/esm/core/Radio/index.js +136 -0
- package/dist/esm/core/SearchInput/index.js +48 -0
- package/dist/esm/core/Second/index.js +41 -0
- package/dist/esm/core/SegmentControl/index.js +41 -0
- package/dist/esm/core/Select/index.js +138 -0
- package/dist/esm/core/SimplePagination/index.js +88 -0
- package/dist/esm/core/Speed/index.js +38 -0
- package/dist/esm/core/StatusCapsule/index.js +94 -0
- package/dist/esm/core/StepProgress/index.js +42 -0
- package/dist/esm/core/Steps/index.js +124 -0
- package/dist/esm/core/Steps/style.js +7 -0
- package/dist/esm/core/Styled/index.js +45 -0
- package/dist/esm/core/Switch/index.js +59 -0
- package/dist/esm/core/Table/TableWidget.js +44 -0
- package/dist/esm/core/Table/common.js +44 -0
- package/dist/esm/core/Table/index.js +104 -0
- package/dist/esm/core/TableForm/AddRowButton.js +106 -0
- package/dist/esm/core/TableForm/Columns/AffixColumn.js +46 -0
- package/dist/esm/core/TableForm/Columns/CheckboxColumn.js +32 -0
- package/dist/esm/core/TableForm/Columns/FormItem.js +18 -0
- package/dist/esm/core/TableForm/Columns/InputColumn.js +114 -0
- package/dist/esm/core/TableForm/Columns/TextColumn.js +41 -0
- package/dist/esm/core/TableForm/Columns/index.js +21 -0
- package/dist/esm/core/TableForm/TableFormBodyCell.js +163 -0
- package/dist/esm/core/TableForm/TableFormBodyRows.js +213 -0
- package/dist/esm/core/TableForm/TableFormHeaderCell.js +91 -0
- package/dist/esm/core/TableForm/index.js +185 -0
- package/dist/esm/core/TableForm/style.js +27 -0
- package/dist/esm/core/TableForm/types.js +8 -0
- package/dist/esm/core/TableForm/utils.js +32 -0
- package/dist/esm/core/Tag/SplitTag.js +62 -0
- package/dist/esm/core/Tag/const.js +10 -0
- package/dist/esm/core/Tag/index.js +91 -0
- package/dist/esm/core/Tag/style.js +9 -0
- package/dist/esm/core/TextArea/index.js +70 -0
- package/dist/esm/core/Time/index.js +29 -0
- package/dist/esm/core/TimePicker/index.js +64 -0
- package/dist/esm/core/TimeZoneSelect/index.js +163 -0
- package/dist/esm/core/Token/index.js +81 -0
- package/dist/esm/core/Token/style.js +3 -0
- package/dist/esm/core/Tooltip/index.js +87 -0
- package/dist/esm/core/Truncate/index.js +47 -0
- package/dist/esm/core/Typo/index.js +128 -0
- package/dist/esm/core/antd.js +205 -0
- package/dist/esm/core/message/index.js +179 -0
- package/dist/esm/core/message-group/index.js +143 -0
- package/dist/esm/coreX/BarChart/index.js +34 -0
- package/dist/esm/coreX/BatchOperation/index.js +144 -0
- package/dist/esm/coreX/ChartWithTooltip/index.js +149 -0
- package/dist/esm/coreX/Counting/index.js +20 -0
- package/dist/esm/coreX/CronCalendar/index.js +103 -0
- package/dist/esm/coreX/CronPlan/index.js +457 -0
- package/dist/esm/coreX/DateRangePicker/AbsoluteDate.js +177 -0
- package/dist/esm/coreX/DateRangePicker/Calendar.js +284 -0
- package/dist/esm/coreX/DateRangePicker/DateRangePicker.style.js +77 -0
- package/dist/esm/coreX/DateRangePicker/InputTime.js +149 -0
- package/dist/esm/coreX/DateRangePicker/RelativeTime.js +51 -0
- package/dist/esm/coreX/DateRangePicker/common.js +183 -0
- package/dist/esm/coreX/DateRangePicker/index.js +325 -0
- package/dist/esm/coreX/DeprecatedDonutChart/index.js +37 -0
- package/dist/esm/coreX/DropdownTransition/index.js +71 -0
- package/dist/esm/coreX/GoBackButton/index.js +43 -0
- package/dist/esm/coreX/I18nNameTag/index.js +35 -0
- package/dist/esm/coreX/NamesTooltip/index.js +32 -0
- package/dist/esm/coreX/OverflowTooltip/index.js +90 -0
- package/dist/esm/coreX/SidebarSubtitle/index.js +11 -0
- package/dist/esm/coreX/SortableList/index.js +31 -0
- package/dist/esm/coreX/SummaryTable/index.js +108 -0
- package/dist/esm/coreX/SwitchWithText/index.js +57 -0
- package/dist/esm/coreX/TabMenu/index.js +150 -0
- package/dist/esm/coreX/TruncatedTextWithTooltip/index.js +67 -0
- package/dist/esm/coreX/UnitWithChart/index.js +113 -0
- package/dist/esm/coreX/common/getCalendarTitle.js +24 -0
- package/dist/esm/hooks/useElementIntersectionRatio.js +28 -0
- package/dist/esm/hooks/useElementResize.js +67 -0
- package/dist/esm/hooks/useElementsSize.js +56 -0
- package/dist/esm/hooks/useMemoCompare.js +15 -0
- package/dist/esm/hooks/useParrotTranslation.js +11 -0
- package/dist/esm/index.js +35 -10238
- package/dist/esm/spec/type.js +7 -0
- package/dist/esm/stats1.html +1 -1
- package/dist/esm/store/chart.js +62 -0
- package/dist/esm/store/index.js +37 -0
- package/dist/esm/store/modal.js +63 -0
- package/dist/esm/styles/token/color.js +271 -0
- package/dist/esm/styles/token/zIndices.js +5 -0
- package/dist/esm/utils/constants.js +5 -0
- package/dist/esm/utils/cron-time.js +448 -0
- package/dist/esm/utils/dom.js +14 -0
- package/dist/esm/utils/icon.js +20 -0
- package/dist/esm/utils/isEmpty.js +10 -0
- package/dist/esm/utils/time.js +76 -0
- package/dist/esm/utils/tower.js +173 -0
- package/dist/src/index.d.ts +0 -1
- package/dist/style.css +1685 -1685
- package/dist/token.css +209 -415
- package/package.json +7 -5
- package/dist/src/styles/token/token.d.ts +0 -1
package/dist/style.css
CHANGED
|
@@ -29779,6 +29779,81 @@ html body {
|
|
|
29779
29779
|
font-size: 14px;
|
|
29780
29780
|
}
|
|
29781
29781
|
|
|
29782
|
+
.E_i1inqkme {
|
|
29783
|
+
height: 18px;
|
|
29784
|
+
line-height: 18px;
|
|
29785
|
+
padding: 0 4px;
|
|
29786
|
+
border-radius: 4px;
|
|
29787
|
+
background: rgba(235, 239, 245, 0.6);
|
|
29788
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
29789
|
+
display: flex;
|
|
29790
|
+
align-items: center;
|
|
29791
|
+
white-space: nowrap;
|
|
29792
|
+
margin-right: 4px;
|
|
29793
|
+
}
|
|
29794
|
+
|
|
29795
|
+
.E_fzh9mnb {
|
|
29796
|
+
width: 100%;
|
|
29797
|
+
height: 100%;
|
|
29798
|
+
min-height: 124px;
|
|
29799
|
+
display: flex;
|
|
29800
|
+
flex-direction: column;
|
|
29801
|
+
justify-content: center;
|
|
29802
|
+
align-items: center;
|
|
29803
|
+
}
|
|
29804
|
+
.E_fzh9mnb .error-text {
|
|
29805
|
+
color: rgba(10, 37, 85, 0.6);
|
|
29806
|
+
margin-bottom: 16px;
|
|
29807
|
+
font-size: 18px;
|
|
29808
|
+
}
|
|
29809
|
+
|
|
29810
|
+
.E_iouxfgt {
|
|
29811
|
+
display: inline-flex;
|
|
29812
|
+
align-items: center;
|
|
29813
|
+
}
|
|
29814
|
+
.E_iouxfgt .icon-inner {
|
|
29815
|
+
display: inline-flex;
|
|
29816
|
+
align-items: center;
|
|
29817
|
+
justify-content: center;
|
|
29818
|
+
}
|
|
29819
|
+
.E_iouxfgt .icon-inner + span,
|
|
29820
|
+
.E_iouxfgt span + .icon-inner.suffix {
|
|
29821
|
+
margin-left: 4px;
|
|
29822
|
+
}
|
|
29823
|
+
.E_iouxfgt.is-rotate img,
|
|
29824
|
+
.E_iouxfgt.is-rotate svg {
|
|
29825
|
+
animation: rotate 680ms linear infinite;
|
|
29826
|
+
}
|
|
29827
|
+
|
|
29828
|
+
.E_b1nip9bk {
|
|
29829
|
+
padding: 4px 11px;
|
|
29830
|
+
}
|
|
29831
|
+
|
|
29832
|
+
.E_bqamoqe {
|
|
29833
|
+
white-space: nowrap;
|
|
29834
|
+
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
29835
|
+
}
|
|
29836
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
29837
|
+
--color: #0080ff;
|
|
29838
|
+
}
|
|
29839
|
+
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
29840
|
+
--color: #0080ff;
|
|
29841
|
+
}
|
|
29842
|
+
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
29843
|
+
margin-left: 1px;
|
|
29844
|
+
}
|
|
29845
|
+
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
29846
|
+
border-top-right-radius: 0;
|
|
29847
|
+
border-bottom-right-radius: 0;
|
|
29848
|
+
}
|
|
29849
|
+
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
29850
|
+
border-top-left-radius: 0;
|
|
29851
|
+
border-bottom-left-radius: 0;
|
|
29852
|
+
}
|
|
29853
|
+
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
29854
|
+
border-radius: unset;
|
|
29855
|
+
}
|
|
29856
|
+
|
|
29782
29857
|
.E_b1wx3t3t.ant-btn-icon-only {
|
|
29783
29858
|
justify-content: center;
|
|
29784
29859
|
}
|
|
@@ -30029,856 +30104,964 @@ html body {
|
|
|
30029
30104
|
padding: 0;
|
|
30030
30105
|
}
|
|
30031
30106
|
|
|
30032
|
-
.
|
|
30033
|
-
height:
|
|
30034
|
-
|
|
30035
|
-
|
|
30036
|
-
|
|
30037
|
-
background: rgba(235, 239, 245, 0.6);
|
|
30038
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
30107
|
+
.E_skwah65 {
|
|
30108
|
+
height: 8px;
|
|
30109
|
+
box-sizing: border-box;
|
|
30110
|
+
border-radius: 2px;
|
|
30111
|
+
background: #f5f7fa;
|
|
30039
30112
|
display: flex;
|
|
30040
|
-
align-items: center;
|
|
30041
|
-
white-space: nowrap;
|
|
30042
|
-
margin-right: 4px;
|
|
30043
|
-
}
|
|
30044
|
-
|
|
30045
|
-
.E_fzh9mnb {
|
|
30046
30113
|
width: 100%;
|
|
30047
|
-
|
|
30048
|
-
min-height: 124px;
|
|
30049
|
-
display: flex;
|
|
30050
|
-
flex-direction: column;
|
|
30051
|
-
justify-content: center;
|
|
30052
|
-
align-items: center;
|
|
30114
|
+
overflow: hidden;
|
|
30053
30115
|
}
|
|
30054
|
-
.
|
|
30055
|
-
|
|
30056
|
-
margin-bottom: 16px;
|
|
30057
|
-
font-size: 18px;
|
|
30116
|
+
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
30117
|
+
margin-left: 1px;
|
|
30058
30118
|
}
|
|
30059
30119
|
|
|
30060
|
-
.
|
|
30061
|
-
|
|
30120
|
+
.E_iq1gosr {
|
|
30121
|
+
display: inline-block;
|
|
30062
30122
|
}
|
|
30063
30123
|
|
|
30064
|
-
.
|
|
30065
|
-
|
|
30066
|
-
filter: drop-shadow(0px 2px 8px rgba(0, 136, 255, 0.1));
|
|
30067
|
-
}
|
|
30068
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous) {
|
|
30069
|
-
--color: #0080ff;
|
|
30070
|
-
}
|
|
30071
|
-
.E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous)[disabled], .E_bqamoqe > .ant-btn.ant-btn-ordinary-onTint:not(.ant-btn-dangerous):hover[disabled] {
|
|
30072
|
-
--color: #0080ff;
|
|
30073
|
-
}
|
|
30074
|
-
.E_bqamoqe > .ant-btn:not(:only-child) + .ant-btn {
|
|
30075
|
-
margin-left: 1px;
|
|
30076
|
-
}
|
|
30077
|
-
.E_bqamoqe > .ant-btn:not(:only-child):first-child {
|
|
30078
|
-
border-top-right-radius: 0;
|
|
30079
|
-
border-bottom-right-radius: 0;
|
|
30080
|
-
}
|
|
30081
|
-
.E_bqamoqe > .ant-btn:not(:only-child):last-child {
|
|
30082
|
-
border-top-left-radius: 0;
|
|
30083
|
-
border-bottom-left-radius: 0;
|
|
30084
|
-
}
|
|
30085
|
-
.E_bqamoqe > .ant-btn:not(:only-child):not(:first-child, :last-child) {
|
|
30086
|
-
border-radius: unset;
|
|
30124
|
+
.E_owd0kml {
|
|
30125
|
+
display: inline-block;
|
|
30087
30126
|
}
|
|
30088
30127
|
|
|
30089
|
-
.
|
|
30090
|
-
|
|
30091
|
-
|
|
30092
|
-
}
|
|
30093
|
-
.E_iouxfgt .icon-inner {
|
|
30094
|
-
display: inline-flex;
|
|
30095
|
-
align-items: center;
|
|
30096
|
-
justify-content: center;
|
|
30128
|
+
.E_h1jsgezc {
|
|
30129
|
+
visibility: hidden;
|
|
30130
|
+
position: absolute;
|
|
30097
30131
|
}
|
|
30098
|
-
|
|
30099
|
-
.
|
|
30100
|
-
|
|
30132
|
+
|
|
30133
|
+
.E_s1dni7lo {
|
|
30134
|
+
width: 430px !important;
|
|
30101
30135
|
}
|
|
30102
|
-
|
|
30103
|
-
.
|
|
30104
|
-
|
|
30136
|
+
|
|
30137
|
+
.E_d1wwmmm5 .ant-select-item-group {
|
|
30138
|
+
padding: 8px 16px;
|
|
30139
|
+
line-height: 18px;
|
|
30140
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30141
|
+
height: 34px;
|
|
30142
|
+
min-height: 34px;
|
|
30143
|
+
box-sizing: border-box;
|
|
30144
|
+
margin-top: 8px;
|
|
30105
30145
|
}
|
|
30106
30146
|
|
|
30107
|
-
.
|
|
30147
|
+
.E_o1ugr09p {
|
|
30108
30148
|
display: flex;
|
|
30109
|
-
|
|
30110
|
-
|
|
30111
|
-
padding:
|
|
30112
|
-
|
|
30113
|
-
font-size: 12px;
|
|
30114
|
-
line-height: 24px;
|
|
30115
|
-
}
|
|
30116
|
-
.E_phljevk .pagination-left {
|
|
30117
|
-
padding: 2px 8px;
|
|
30149
|
+
flex-direction: column;
|
|
30150
|
+
margin: 1px 8px;
|
|
30151
|
+
padding: 8px;
|
|
30152
|
+
border-radius: 4px;
|
|
30118
30153
|
}
|
|
30119
|
-
.
|
|
30120
|
-
display:
|
|
30121
|
-
align-items: center;
|
|
30122
|
-
border-radius: 6px;
|
|
30123
|
-
cursor: pointer;
|
|
30124
|
-
transition: all 0.3s ease;
|
|
30154
|
+
.E_o1ugr09p .selected-icon {
|
|
30155
|
+
display: none;
|
|
30125
30156
|
}
|
|
30126
|
-
.
|
|
30127
|
-
|
|
30128
|
-
color: #0080ff;
|
|
30157
|
+
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
30158
|
+
padding-left: 8px;
|
|
30129
30159
|
}
|
|
30130
|
-
.
|
|
30131
|
-
|
|
30160
|
+
.E_o1ugr09p.ant-select-item-option-selected {
|
|
30161
|
+
background-color: white;
|
|
30132
30162
|
}
|
|
30133
|
-
.
|
|
30134
|
-
display: flex;
|
|
30135
|
-
align-items: center;
|
|
30163
|
+
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
30136
30164
|
color: #0080ff;
|
|
30137
|
-
font-weight: bold;
|
|
30138
30165
|
}
|
|
30139
|
-
.
|
|
30140
|
-
|
|
30166
|
+
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
30167
|
+
display: block;
|
|
30141
30168
|
}
|
|
30142
|
-
.
|
|
30143
|
-
|
|
30144
|
-
padding: 0 8px;
|
|
30169
|
+
.E_o1ugr09p.ant-select-item-option-active {
|
|
30170
|
+
background: rgba(0, 136, 255, 0.16);
|
|
30145
30171
|
}
|
|
30146
|
-
.
|
|
30147
|
-
.E_phljevk .pagination-right .next-btn > span {
|
|
30172
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
30148
30173
|
color: #0080ff;
|
|
30149
30174
|
}
|
|
30150
|
-
.
|
|
30151
|
-
|
|
30175
|
+
.E_o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
30176
|
+
background: rgba(0, 136, 255, 0.1);
|
|
30177
|
+
color: #0080ff;
|
|
30152
30178
|
}
|
|
30153
30179
|
|
|
30154
|
-
.
|
|
30155
|
-
|
|
30156
|
-
|
|
30180
|
+
.E_o1ifxsq4 {
|
|
30181
|
+
display: flex;
|
|
30182
|
+
justify-content: space-between;
|
|
30183
|
+
height: 20px;
|
|
30184
|
+
line-height: 20px;
|
|
30157
30185
|
}
|
|
30158
|
-
.
|
|
30159
|
-
|
|
30160
|
-
|
|
30186
|
+
.E_o1ifxsq4 .timezone-title {
|
|
30187
|
+
color: #2d3a56;
|
|
30188
|
+
overflow: hidden;
|
|
30189
|
+
text-overflow: ellipsis;
|
|
30190
|
+
}
|
|
30191
|
+
|
|
30192
|
+
.E_o1zue7 {
|
|
30193
|
+
display: flex;
|
|
30194
|
+
justify-content: space-between;
|
|
30195
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30196
|
+
height: 18px;
|
|
30161
30197
|
line-height: 18px;
|
|
30198
|
+
margin-top: 2px;
|
|
30162
30199
|
}
|
|
30163
30200
|
|
|
30164
|
-
.
|
|
30165
|
-
|
|
30201
|
+
.E_tyfmlxg {
|
|
30202
|
+
border: none;
|
|
30203
|
+
margin-right: 0;
|
|
30204
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30166
30205
|
}
|
|
30167
30206
|
|
|
30168
|
-
.
|
|
30169
|
-
|
|
30170
|
-
|
|
30207
|
+
.E_o18uybox {
|
|
30208
|
+
pointer-events: none;
|
|
30209
|
+
height: 32px;
|
|
30210
|
+
width: 100%;
|
|
30211
|
+
opacity: 0;
|
|
30171
30212
|
}
|
|
30172
30213
|
|
|
30173
|
-
.
|
|
30174
|
-
height: 8px;
|
|
30175
|
-
box-sizing: border-box;
|
|
30176
|
-
border-radius: 2px;
|
|
30177
|
-
background: #f5f7fa;
|
|
30214
|
+
.E_cnujxq2 {
|
|
30178
30215
|
display: flex;
|
|
30179
|
-
|
|
30180
|
-
overflow: hidden;
|
|
30181
|
-
}
|
|
30182
|
-
.E_skwah65 .stack-bar-item + .stack-bar-item {
|
|
30183
|
-
margin-left: 1px;
|
|
30216
|
+
flex-direction: column;
|
|
30184
30217
|
}
|
|
30185
30218
|
|
|
30186
|
-
.
|
|
30187
|
-
|
|
30188
|
-
|
|
30189
|
-
|
|
30190
|
-
|
|
30191
|
-
line-height: 40px;
|
|
30219
|
+
.E_m7s48ia {
|
|
30220
|
+
max-width: 1120px;
|
|
30221
|
+
width: 100%;
|
|
30222
|
+
margin: 0 auto;
|
|
30223
|
+
height: 100%;
|
|
30192
30224
|
}
|
|
30193
30225
|
|
|
30194
|
-
.
|
|
30195
|
-
|
|
30196
|
-
|
|
30197
|
-
|
|
30198
|
-
|
|
30199
|
-
line-height: 32px;
|
|
30226
|
+
.E_wt5zbg6 {
|
|
30227
|
+
max-width: 1120px;
|
|
30228
|
+
width: 100%;
|
|
30229
|
+
margin: 0 auto;
|
|
30230
|
+
display: flex;
|
|
30200
30231
|
}
|
|
30201
|
-
|
|
30202
|
-
.
|
|
30203
|
-
|
|
30204
|
-
|
|
30205
|
-
|
|
30206
|
-
font-size: 32px;
|
|
30207
|
-
line-height: 40px;
|
|
30232
|
+
.E_wt5zbg6 .left,
|
|
30233
|
+
.E_wt5zbg6 .right {
|
|
30234
|
+
flex-grow: 0;
|
|
30235
|
+
flex-shrink: 0;
|
|
30236
|
+
flex-basis: 21%;
|
|
30208
30237
|
}
|
|
30209
|
-
|
|
30210
|
-
|
|
30211
|
-
|
|
30212
|
-
|
|
30213
|
-
font-weight: bold;
|
|
30214
|
-
font-size: 20px;
|
|
30215
|
-
line-height: 24px;
|
|
30238
|
+
.E_wt5zbg6 .left {
|
|
30239
|
+
display: flex;
|
|
30240
|
+
justify-content: flex-end;
|
|
30241
|
+
padding-right: 44px;
|
|
30216
30242
|
}
|
|
30217
|
-
|
|
30218
|
-
|
|
30219
|
-
font-family: Inter;
|
|
30220
|
-
font-style: normal;
|
|
30221
|
-
font-weight: normal;
|
|
30222
|
-
font-size: 20px;
|
|
30223
|
-
line-height: 24px;
|
|
30243
|
+
.E_wt5zbg6 .right {
|
|
30244
|
+
padding-left: 44px;
|
|
30224
30245
|
}
|
|
30225
|
-
|
|
30226
|
-
|
|
30227
|
-
|
|
30228
|
-
|
|
30229
|
-
|
|
30230
|
-
font-size: 18px;
|
|
30231
|
-
line-height: 22px;
|
|
30246
|
+
.E_wt5zbg6 .middle {
|
|
30247
|
+
margin-bottom: 40px;
|
|
30248
|
+
flex-grow: 0;
|
|
30249
|
+
flex-shrink: 0;
|
|
30250
|
+
flex-basis: 58%;
|
|
30232
30251
|
}
|
|
30233
|
-
|
|
30234
|
-
|
|
30235
|
-
|
|
30236
|
-
|
|
30237
|
-
|
|
30238
|
-
font-size: 18px;
|
|
30239
|
-
line-height: 22px;
|
|
30252
|
+
.E_wt5zbg6 .middle .form-base-field {
|
|
30253
|
+
width: 100%;
|
|
30254
|
+
}
|
|
30255
|
+
.E_wt5zbg6 .middle .form-base-field .form-base-field {
|
|
30256
|
+
width: auto;
|
|
30240
30257
|
}
|
|
30241
30258
|
|
|
30242
|
-
.
|
|
30243
|
-
|
|
30244
|
-
|
|
30245
|
-
|
|
30246
|
-
|
|
30247
|
-
|
|
30259
|
+
.E_h18jprzg .ant-modal-header {
|
|
30260
|
+
margin: 0 auto;
|
|
30261
|
+
width: 100%;
|
|
30262
|
+
max-width: 648px;
|
|
30263
|
+
}
|
|
30264
|
+
.E_h18jprzg .ant-modal-header .ant-modal-title {
|
|
30265
|
+
margin-left: 0;
|
|
30266
|
+
}
|
|
30267
|
+
.E_h18jprzg .ant-modal-body {
|
|
30268
|
+
margin: 0 auto;
|
|
30269
|
+
padding: 0;
|
|
30270
|
+
width: 100%;
|
|
30271
|
+
max-width: 648px;
|
|
30272
|
+
overflow: hidden;
|
|
30273
|
+
}
|
|
30274
|
+
.E_h18jprzg .ant-modal-body .horizontal-steps-wrapper {
|
|
30275
|
+
margin-bottom: 40px;
|
|
30276
|
+
}
|
|
30277
|
+
.E_h18jprzg .ant-modal-body .horizontal-content-wrapper {
|
|
30278
|
+
height: calc(100vh - 225px);
|
|
30279
|
+
overflow-y: auto;
|
|
30280
|
+
}
|
|
30281
|
+
.E_h18jprzg .ant-modal-footer .footer-content {
|
|
30282
|
+
margin: 0 auto;
|
|
30283
|
+
max-width: 648px;
|
|
30248
30284
|
}
|
|
30249
30285
|
|
|
30250
|
-
.
|
|
30251
|
-
|
|
30252
|
-
|
|
30253
|
-
|
|
30254
|
-
|
|
30255
|
-
|
|
30286
|
+
.E_h16z9xgz .ant-modal-header {
|
|
30287
|
+
margin: 0 auto;
|
|
30288
|
+
width: 100%;
|
|
30289
|
+
max-width: 1024px;
|
|
30290
|
+
}
|
|
30291
|
+
.E_h16z9xgz .ant-modal-header .ant-modal-title {
|
|
30292
|
+
margin-left: 0;
|
|
30293
|
+
}
|
|
30294
|
+
.E_h16z9xgz .ant-modal-body {
|
|
30295
|
+
margin: 0 auto;
|
|
30296
|
+
padding: 0;
|
|
30297
|
+
width: 100%;
|
|
30298
|
+
max-width: 1024px;
|
|
30299
|
+
overflow: hidden;
|
|
30300
|
+
}
|
|
30301
|
+
.E_h16z9xgz .ant-modal-body .horizontal-steps-wrapper {
|
|
30302
|
+
margin-bottom: 40px;
|
|
30303
|
+
}
|
|
30304
|
+
.E_h16z9xgz .ant-modal-body .horizontal-content-wrapper {
|
|
30305
|
+
height: calc(100vh - 225px);
|
|
30306
|
+
overflow-y: auto;
|
|
30307
|
+
}
|
|
30308
|
+
.E_h16z9xgz .ant-modal-footer .footer-content {
|
|
30309
|
+
margin: 0 auto;
|
|
30310
|
+
max-width: 1024px;
|
|
30256
30311
|
}
|
|
30257
30312
|
|
|
30258
|
-
.
|
|
30259
|
-
|
|
30260
|
-
|
|
30261
|
-
|
|
30262
|
-
font-size:
|
|
30313
|
+
.E_f1lrhghm {
|
|
30314
|
+
flex: 1;
|
|
30315
|
+
}
|
|
30316
|
+
.E_f1lrhghm label {
|
|
30317
|
+
font-size: 13px;
|
|
30263
30318
|
line-height: 20px;
|
|
30319
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30264
30320
|
}
|
|
30265
|
-
|
|
30266
|
-
.E_h13bondg {
|
|
30267
|
-
font-family: Inter;
|
|
30268
|
-
font-style: normal;
|
|
30269
|
-
font-weight: normal;
|
|
30321
|
+
.E_f1lrhghm .title {
|
|
30270
30322
|
font-size: 14px;
|
|
30271
30323
|
line-height: 20px;
|
|
30324
|
+
color: #2d3a56;
|
|
30325
|
+
margin-bottom: 12px;
|
|
30272
30326
|
}
|
|
30273
|
-
|
|
30274
|
-
|
|
30275
|
-
font-family: Inter;
|
|
30276
|
-
font-style: normal;
|
|
30277
|
-
font-weight: bold;
|
|
30278
|
-
font-size: 12px;
|
|
30279
|
-
line-height: 18px;
|
|
30327
|
+
.E_f1lrhghm.connect-cluster .title {
|
|
30328
|
+
padding-bottom: 26px;
|
|
30280
30329
|
}
|
|
30281
30330
|
|
|
30282
|
-
.
|
|
30283
|
-
|
|
30284
|
-
|
|
30285
|
-
|
|
30286
|
-
font-size: 12px;
|
|
30287
|
-
line-height: 18px;
|
|
30331
|
+
.E_f18ot8em {
|
|
30332
|
+
padding: 25px 0 15px 0;
|
|
30333
|
+
border-bottom: 1px solid #e1e5eb;
|
|
30334
|
+
margin-bottom: 16px;
|
|
30288
30335
|
}
|
|
30289
30336
|
|
|
30290
|
-
.
|
|
30291
|
-
|
|
30292
|
-
|
|
30293
|
-
|
|
30294
|
-
text-transform: uppercase;
|
|
30295
|
-
font-feature-settings: "cpsp" on;
|
|
30296
|
-
font-size: 12px;
|
|
30297
|
-
line-height: 18px;
|
|
30337
|
+
.E_f1l1g2k0 {
|
|
30338
|
+
display: flex;
|
|
30339
|
+
align-items: center;
|
|
30340
|
+
margin-bottom: 8px;
|
|
30298
30341
|
}
|
|
30299
|
-
|
|
30300
|
-
|
|
30301
|
-
font-family: Inter;
|
|
30302
|
-
font-style: normal;
|
|
30303
|
-
font-weight: normal;
|
|
30304
|
-
text-transform: uppercase;
|
|
30305
|
-
font-feature-settings: "cpsp" on;
|
|
30306
|
-
font-size: 12px;
|
|
30307
|
-
line-height: 18px;
|
|
30342
|
+
.E_f1l1g2k0 > label {
|
|
30343
|
+
width: 216px;
|
|
30308
30344
|
}
|
|
30309
|
-
|
|
30310
|
-
|
|
30311
|
-
|
|
30312
|
-
|
|
30313
|
-
|
|
30314
|
-
font-size: 16px;
|
|
30315
|
-
line-height: 24px;
|
|
30345
|
+
.E_f1l1g2k0 > label + * {
|
|
30346
|
+
width: 100%;
|
|
30347
|
+
}
|
|
30348
|
+
.E_f1l1g2k0 .ant-select {
|
|
30349
|
+
width: 100%;
|
|
30316
30350
|
}
|
|
30317
30351
|
|
|
30318
|
-
.
|
|
30319
|
-
|
|
30320
|
-
|
|
30321
|
-
font-weight: bold;
|
|
30322
|
-
font-size: 16px;
|
|
30323
|
-
line-height: 24px;
|
|
30352
|
+
.E_e1k89cwg {
|
|
30353
|
+
color: #e75a3a;
|
|
30354
|
+
margin-right: 10px;
|
|
30324
30355
|
}
|
|
30325
30356
|
|
|
30326
|
-
.
|
|
30327
|
-
|
|
30328
|
-
|
|
30329
|
-
|
|
30330
|
-
|
|
30331
|
-
line-height: 24px;
|
|
30357
|
+
.E_d1oui1gf {
|
|
30358
|
+
width: 100%;
|
|
30359
|
+
height: 1px;
|
|
30360
|
+
background: rgba(213, 219, 227, 0.6);
|
|
30361
|
+
margin: 24px 0;
|
|
30332
30362
|
}
|
|
30333
30363
|
|
|
30334
|
-
.
|
|
30335
|
-
|
|
30336
|
-
|
|
30337
|
-
|
|
30338
|
-
|
|
30339
|
-
line-height: 24px;
|
|
30364
|
+
.E_l15itdbb {
|
|
30365
|
+
display: flex;
|
|
30366
|
+
justify-content: center;
|
|
30367
|
+
align-items: center;
|
|
30368
|
+
height: 100%;
|
|
30340
30369
|
}
|
|
30341
30370
|
|
|
30342
|
-
.
|
|
30343
|
-
|
|
30344
|
-
|
|
30345
|
-
|
|
30346
|
-
|
|
30347
|
-
|
|
30348
|
-
|
|
30349
|
-
|
|
30371
|
+
.E_d1y3z4w {
|
|
30372
|
+
display: inline-block;
|
|
30373
|
+
width: 4px;
|
|
30374
|
+
height: 4px;
|
|
30375
|
+
background: #8e9aa9;
|
|
30376
|
+
opacity: 0.4;
|
|
30377
|
+
border-radius: 50%;
|
|
30378
|
+
margin: 0 4px;
|
|
30350
30379
|
}
|
|
30351
30380
|
|
|
30352
|
-
.
|
|
30353
|
-
|
|
30354
|
-
|
|
30355
|
-
|
|
30356
|
-
text-transform: uppercase;
|
|
30357
|
-
font-feature-settings: "cpsp" on;
|
|
30358
|
-
font-size: 16px;
|
|
30359
|
-
line-height: 24px;
|
|
30381
|
+
.E_m177r7a3 .ant-modal-header,
|
|
30382
|
+
.E_m177r7a3 .ant-modal-footer .footer-content {
|
|
30383
|
+
width: 648px;
|
|
30384
|
+
margin: 0 auto;
|
|
30360
30385
|
}
|
|
30361
|
-
|
|
30362
|
-
|
|
30363
|
-
|
|
30364
|
-
font-style: normal;
|
|
30365
|
-
font-weight: normal;
|
|
30366
|
-
font-size: 14px;
|
|
30367
|
-
line-height: 22px;
|
|
30386
|
+
.E_m177r7a3 .ant-modal-header {
|
|
30387
|
+
padding: 35px 0 24px;
|
|
30388
|
+
border: none;
|
|
30368
30389
|
}
|
|
30369
|
-
|
|
30370
|
-
|
|
30371
|
-
font-family: Inter;
|
|
30372
|
-
font-style: normal;
|
|
30373
|
-
font-weight: 500;
|
|
30374
|
-
font-size: 14px;
|
|
30375
|
-
line-height: 22px;
|
|
30390
|
+
.E_m177r7a3 .ant-modal-header .ant-modal-title {
|
|
30391
|
+
font-size: 30px;
|
|
30376
30392
|
}
|
|
30377
|
-
|
|
30378
|
-
|
|
30379
|
-
font-family: Inter;
|
|
30380
|
-
font-style: normal;
|
|
30381
|
-
font-weight: bold;
|
|
30382
|
-
font-size: 14px;
|
|
30383
|
-
line-height: 22px;
|
|
30393
|
+
.E_m177r7a3 .ant-modal-body {
|
|
30394
|
+
padding: 4px 0 2px;
|
|
30384
30395
|
}
|
|
30385
|
-
|
|
30386
|
-
|
|
30387
|
-
font-family: Inter;
|
|
30388
|
-
font-style: normal;
|
|
30389
|
-
font-weight: normal;
|
|
30390
|
-
font-size: 14px;
|
|
30391
|
-
line-height: 22px;
|
|
30396
|
+
.E_m177r7a3 .ant-modal-footer {
|
|
30397
|
+
border: none;
|
|
30392
30398
|
}
|
|
30393
30399
|
|
|
30394
|
-
.
|
|
30395
|
-
font-
|
|
30396
|
-
|
|
30400
|
+
.E_t1wwio3v {
|
|
30401
|
+
font-size: 12px;
|
|
30402
|
+
line-height: 18px;
|
|
30397
30403
|
font-weight: bold;
|
|
30398
|
-
|
|
30399
|
-
|
|
30404
|
+
color: #fff;
|
|
30405
|
+
padding: 0 4px;
|
|
30406
|
+
border-radius: 4px;
|
|
30407
|
+
display: inline-block;
|
|
30408
|
+
background: var(--t1wwio3v-0);
|
|
30409
|
+
}
|
|
30410
|
+
.E_t1wwio3v:not(:first-child) {
|
|
30411
|
+
margin-left: 4px;
|
|
30400
30412
|
}
|
|
30401
30413
|
|
|
30402
|
-
.
|
|
30403
|
-
|
|
30404
|
-
|
|
30405
|
-
|
|
30406
|
-
|
|
30407
|
-
|
|
30408
|
-
font-size: 14px;
|
|
30409
|
-
line-height: 22px;
|
|
30414
|
+
.E_f17jvtfk {
|
|
30415
|
+
width: 100%;
|
|
30416
|
+
height: 100%;
|
|
30417
|
+
display: flex;
|
|
30418
|
+
align-items: center;
|
|
30419
|
+
justify-content: center;
|
|
30410
30420
|
}
|
|
30411
30421
|
|
|
30412
|
-
.
|
|
30413
|
-
font-
|
|
30414
|
-
font-style: normal;
|
|
30422
|
+
.E_nzppkea {
|
|
30423
|
+
font-size: 90%;
|
|
30415
30424
|
font-weight: bold;
|
|
30416
|
-
|
|
30417
|
-
|
|
30418
|
-
|
|
30419
|
-
|
|
30425
|
+
background-color: rgba(240, 243, 247, 0.6);
|
|
30426
|
+
padding: 1px 4px 1px;
|
|
30427
|
+
margin-left: 2px;
|
|
30428
|
+
margin-right: 2px;
|
|
30429
|
+
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
30430
|
+
border-radius: 4px;
|
|
30420
30431
|
}
|
|
30421
30432
|
|
|
30422
|
-
.
|
|
30423
|
-
|
|
30424
|
-
font-style: normal;
|
|
30425
|
-
font-weight: normal;
|
|
30426
|
-
font-size: 13px;
|
|
30427
|
-
line-height: 20px;
|
|
30433
|
+
.E_f4mi9eq.form-item-general {
|
|
30434
|
+
width: 640px;
|
|
30428
30435
|
}
|
|
30429
|
-
|
|
30430
|
-
|
|
30431
|
-
font-family: Inter;
|
|
30432
|
-
font-style: normal;
|
|
30433
|
-
font-weight: 600;
|
|
30434
|
-
font-size: 13px;
|
|
30435
|
-
line-height: 20px;
|
|
30436
|
+
.E_f4mi9eq.form-item-general.form-item + .E_f4mi9eq.form-item-general.form-item {
|
|
30437
|
+
margin-top: 16px;
|
|
30436
30438
|
}
|
|
30437
|
-
|
|
30438
|
-
|
|
30439
|
-
font-family: Inter;
|
|
30440
|
-
font-style: normal;
|
|
30441
|
-
font-weight: bold;
|
|
30442
|
-
font-size: 13px;
|
|
30443
|
-
line-height: 20px;
|
|
30439
|
+
.E_f4mi9eq.form-item-compact {
|
|
30440
|
+
width: 412px;
|
|
30444
30441
|
}
|
|
30445
|
-
|
|
30446
|
-
|
|
30447
|
-
font-family: Inter;
|
|
30448
|
-
font-style: normal;
|
|
30449
|
-
font-weight: normal;
|
|
30450
|
-
font-size: 13px;
|
|
30451
|
-
line-height: 20px;
|
|
30442
|
+
.E_f4mi9eq.form-item-compact.form-item + .E_f4mi9eq.form-item-compact.form-item {
|
|
30443
|
+
margin-top: 8px;
|
|
30452
30444
|
}
|
|
30453
|
-
|
|
30454
|
-
|
|
30455
|
-
font-family: Inter;
|
|
30456
|
-
font-style: normal;
|
|
30457
|
-
font-weight: 600;
|
|
30458
|
-
font-size: 13px;
|
|
30459
|
-
line-height: 20px;
|
|
30445
|
+
.E_f4mi9eq .form-item {
|
|
30446
|
+
width: auto;
|
|
30460
30447
|
}
|
|
30461
|
-
|
|
30462
|
-
|
|
30463
|
-
|
|
30464
|
-
font-style: normal;
|
|
30465
|
-
font-weight: bold;
|
|
30466
|
-
font-size: 13px;
|
|
30467
|
-
line-height: 20px;
|
|
30448
|
+
.E_f4mi9eq .form-item-main {
|
|
30449
|
+
position: relative;
|
|
30450
|
+
display: flex;
|
|
30468
30451
|
}
|
|
30469
|
-
|
|
30470
|
-
|
|
30471
|
-
|
|
30472
|
-
|
|
30473
|
-
|
|
30474
|
-
text-transform: uppercase;
|
|
30475
|
-
font-feature-settings: "cpsp" on;
|
|
30452
|
+
.E_f4mi9eq .form-item-extra {
|
|
30453
|
+
margin-top: 4px;
|
|
30454
|
+
width: 100%;
|
|
30455
|
+
padding: 14px;
|
|
30456
|
+
background: #f2f4f6;
|
|
30476
30457
|
font-size: 13px;
|
|
30477
|
-
line-height:
|
|
30458
|
+
line-height: 1.8;
|
|
30459
|
+
color: #8e9aa9;
|
|
30478
30460
|
}
|
|
30479
|
-
|
|
30480
|
-
|
|
30481
|
-
font-family: Inter;
|
|
30482
|
-
font-style: normal;
|
|
30483
|
-
font-weight: bold;
|
|
30484
|
-
text-transform: uppercase;
|
|
30485
|
-
font-feature-settings: "cpsp" on;
|
|
30461
|
+
.E_f4mi9eq .form-item-label {
|
|
30462
|
+
padding-right: 12px;
|
|
30486
30463
|
font-size: 13px;
|
|
30487
|
-
|
|
30464
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30488
30465
|
}
|
|
30489
|
-
|
|
30490
|
-
|
|
30491
|
-
font-family: Inter;
|
|
30492
|
-
font-style: normal;
|
|
30493
|
-
font-weight: normal;
|
|
30494
|
-
font-size: 12px;
|
|
30495
|
-
line-height: 18px;
|
|
30466
|
+
.E_f4mi9eq .form-item-label.label-right {
|
|
30467
|
+
text-align: right;
|
|
30496
30468
|
}
|
|
30497
|
-
|
|
30498
|
-
.
|
|
30499
|
-
|
|
30500
|
-
font-style: normal;
|
|
30501
|
-
font-weight: 500;
|
|
30502
|
-
font-size: 12px;
|
|
30503
|
-
line-height: 18px;
|
|
30469
|
+
.E_f4mi9eq .form-item-label,
|
|
30470
|
+
.E_f4mi9eq .form-item-control {
|
|
30471
|
+
line-height: 32px;
|
|
30504
30472
|
}
|
|
30505
|
-
|
|
30506
|
-
.E_l1j81vli {
|
|
30507
|
-
font-family: Inter;
|
|
30508
|
-
font-style: normal;
|
|
30509
|
-
font-weight: bold;
|
|
30510
|
-
font-size: 12px;
|
|
30473
|
+
.E_f4mi9eq .form-item-control .form-item-error {
|
|
30511
30474
|
line-height: 18px;
|
|
30512
30475
|
}
|
|
30513
|
-
|
|
30514
|
-
|
|
30515
|
-
font-family: Inter;
|
|
30516
|
-
font-style: normal;
|
|
30517
|
-
font-weight: normal;
|
|
30518
|
-
font-size: 12px;
|
|
30519
|
-
line-height: 18px;
|
|
30476
|
+
.E_f4mi9eq .form-item-children {
|
|
30477
|
+
width: 100%;
|
|
30520
30478
|
}
|
|
30521
|
-
|
|
30522
|
-
|
|
30523
|
-
font-family: Inter;
|
|
30524
|
-
font-style: normal;
|
|
30525
|
-
font-weight: 500;
|
|
30526
|
-
font-size: 12px;
|
|
30527
|
-
line-height: 18px;
|
|
30479
|
+
.E_f4mi9eq .form-item-children > *:only-child.ant-select, .E_f4mi9eq .form-item-children > *:only-child.ant-radio-group, .E_f4mi9eq .form-item-children > *:only-child.ant-checkbox-group {
|
|
30480
|
+
width: 100%;
|
|
30528
30481
|
}
|
|
30529
|
-
|
|
30530
|
-
|
|
30531
|
-
|
|
30532
|
-
|
|
30533
|
-
|
|
30534
|
-
|
|
30535
|
-
|
|
30482
|
+
.E_f4mi9eq .form-item-error {
|
|
30483
|
+
color: #e75a3a;
|
|
30484
|
+
height: 0;
|
|
30485
|
+
overflow: hidden;
|
|
30486
|
+
}
|
|
30487
|
+
.E_f4mi9eq .form-item-error-enter-done {
|
|
30488
|
+
margin-top: 4px;
|
|
30489
|
+
height: auto;
|
|
30490
|
+
overflow: auto;
|
|
30491
|
+
}
|
|
30492
|
+
.E_f4mi9eq.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error > input:not(.ant-input),
|
|
30493
|
+
.E_f4mi9eq.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error :not(.ant-select) input {
|
|
30494
|
+
border: 1px solid #e75a3a;
|
|
30495
|
+
color: #e75a3a;
|
|
30536
30496
|
}
|
|
30537
30497
|
|
|
30538
|
-
.
|
|
30539
|
-
|
|
30540
|
-
font-style: normal;
|
|
30541
|
-
font-weight: normal;
|
|
30542
|
-
text-transform: uppercase;
|
|
30543
|
-
font-feature-settings: "cpsp" on;
|
|
30544
|
-
font-size: 12px;
|
|
30545
|
-
line-height: 18px;
|
|
30546
|
-
}
|
|
30547
|
-
|
|
30548
|
-
.E_l1lln87h {
|
|
30549
|
-
font-family: Inter;
|
|
30550
|
-
font-style: normal;
|
|
30498
|
+
.E_fh0ewl8 {
|
|
30499
|
+
color: #2d3a56;
|
|
30551
30500
|
font-weight: bold;
|
|
30552
|
-
|
|
30553
|
-
|
|
30554
|
-
|
|
30555
|
-
line-height: 18px;
|
|
30501
|
+
padding-bottom: 6px;
|
|
30502
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
30503
|
+
margin-bottom: 16px;
|
|
30556
30504
|
}
|
|
30557
|
-
|
|
30558
|
-
|
|
30559
|
-
font-family: Inter;
|
|
30560
|
-
font-style: normal;
|
|
30561
|
-
font-weight: normal;
|
|
30562
|
-
font-size: 13px;
|
|
30563
|
-
line-height: 20px;
|
|
30505
|
+
.E_fh0ewl8:not(:first-of-type) {
|
|
30506
|
+
margin-top: 16px;
|
|
30564
30507
|
}
|
|
30565
30508
|
|
|
30566
|
-
.
|
|
30567
|
-
|
|
30568
|
-
|
|
30569
|
-
|
|
30570
|
-
|
|
30571
|
-
|
|
30509
|
+
.E_e1qrlvot {
|
|
30510
|
+
width: 8px;
|
|
30511
|
+
height: 24px;
|
|
30512
|
+
display: flex;
|
|
30513
|
+
justify-content: center;
|
|
30514
|
+
align-items: center;
|
|
30515
|
+
cursor: pointer;
|
|
30516
|
+
transition: all 200ms ease-out 40ms;
|
|
30517
|
+
}
|
|
30518
|
+
.E_e1qrlvot:before, .E_e1qrlvot:after {
|
|
30519
|
+
content: "";
|
|
30520
|
+
width: 1px;
|
|
30521
|
+
height: 6px;
|
|
30522
|
+
border-radius: 1px;
|
|
30523
|
+
background: #ccd4e3;
|
|
30524
|
+
position: relative;
|
|
30525
|
+
right: 2px;
|
|
30526
|
+
transform: rotate(-45deg);
|
|
30527
|
+
}
|
|
30528
|
+
.E_e1qrlvot:after {
|
|
30529
|
+
transform: rotate(45deg);
|
|
30530
|
+
left: 1px;
|
|
30572
30531
|
}
|
|
30573
30532
|
|
|
30574
|
-
.
|
|
30575
|
-
|
|
30576
|
-
|
|
30577
|
-
|
|
30578
|
-
|
|
30579
|
-
|
|
30533
|
+
.E_w9ic984.ant-alert-warning {
|
|
30534
|
+
border: 0;
|
|
30535
|
+
background: rgba(255, 187, 0, 0.1);
|
|
30536
|
+
border-radius: 6px;
|
|
30537
|
+
}
|
|
30538
|
+
.E_w9ic984.ant-alert,
|
|
30539
|
+
.E_w9ic984 .ant-alert-message {
|
|
30540
|
+
color: #e07f00;
|
|
30541
|
+
}
|
|
30542
|
+
.E_w9ic984.ant-alert .dashed-border-bottom,
|
|
30543
|
+
.E_w9ic984 .ant-alert-message .dashed-border-bottom {
|
|
30544
|
+
border-bottom-color: #e07f00;
|
|
30580
30545
|
}
|
|
30581
30546
|
|
|
30582
|
-
.
|
|
30583
|
-
|
|
30584
|
-
|
|
30585
|
-
|
|
30547
|
+
.E_n1k9qi4r {
|
|
30548
|
+
display: flex;
|
|
30549
|
+
flex-direction: row;
|
|
30550
|
+
padding: 7px 12px;
|
|
30551
|
+
background: rgba(255, 187, 0, 0.1);
|
|
30552
|
+
border-radius: 6px;
|
|
30553
|
+
color: #e07f00;
|
|
30586
30554
|
font-size: 12px;
|
|
30587
30555
|
line-height: 18px;
|
|
30588
30556
|
}
|
|
30589
|
-
|
|
30590
|
-
|
|
30591
|
-
|
|
30592
|
-
font-style: normal;
|
|
30593
|
-
font-weight: normal;
|
|
30594
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
30595
|
-
font-size: 13px;
|
|
30596
|
-
line-height: 20px;
|
|
30597
|
-
}
|
|
30598
|
-
|
|
30599
|
-
.E_t17uajlu {
|
|
30600
|
-
font-family: Inter;
|
|
30601
|
-
font-style: normal;
|
|
30602
|
-
font-weight: normal;
|
|
30603
|
-
font-feature-settings: "zero" on;
|
|
30604
|
-
font-size: 13px;
|
|
30605
|
-
line-height: 20px;
|
|
30557
|
+
.E_n1k9qi4r .icon-wrapper {
|
|
30558
|
+
margin-right: 10px;
|
|
30559
|
+
height: 18px;
|
|
30606
30560
|
}
|
|
30607
30561
|
|
|
30608
|
-
.
|
|
30609
|
-
|
|
30610
|
-
|
|
30611
|
-
|
|
30612
|
-
|
|
30562
|
+
.E_n16fsg9x {
|
|
30563
|
+
display: flex;
|
|
30564
|
+
flex-direction: row;
|
|
30565
|
+
padding: 7px 12px;
|
|
30566
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30567
|
+
border-radius: 6px;
|
|
30568
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30613
30569
|
font-size: 12px;
|
|
30614
30570
|
line-height: 18px;
|
|
30615
30571
|
}
|
|
30572
|
+
.E_n16fsg9x .icon-wrapper {
|
|
30573
|
+
margin-right: 10px;
|
|
30574
|
+
height: 18px;
|
|
30575
|
+
}
|
|
30616
30576
|
|
|
30617
|
-
.
|
|
30618
|
-
|
|
30619
|
-
|
|
30620
|
-
|
|
30621
|
-
|
|
30577
|
+
.E_i173wxzw {
|
|
30578
|
+
display: flex;
|
|
30579
|
+
flex-direction: row;
|
|
30580
|
+
padding: 7px 12px;
|
|
30581
|
+
background: rgba(0, 136, 255, 0.1);
|
|
30582
|
+
border-radius: 6px;
|
|
30583
|
+
color: #005ed1;
|
|
30622
30584
|
font-size: 12px;
|
|
30623
30585
|
line-height: 18px;
|
|
30624
30586
|
}
|
|
30587
|
+
.E_i173wxzw .icon-wrapper {
|
|
30588
|
+
margin-right: 10px;
|
|
30589
|
+
height: 18px;
|
|
30590
|
+
}
|
|
30625
30591
|
|
|
30626
|
-
.
|
|
30627
|
-
|
|
30628
|
-
|
|
30629
|
-
font-weight: normal;
|
|
30630
|
-
font-feature-settings: "zero" on;
|
|
30592
|
+
.E_dld369h {
|
|
30593
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30594
|
+
margin-top: 5px;
|
|
30631
30595
|
font-size: 12px;
|
|
30632
30596
|
line-height: 18px;
|
|
30633
30597
|
}
|
|
30634
30598
|
|
|
30635
|
-
.
|
|
30636
|
-
|
|
30637
|
-
font-style: normal;
|
|
30638
|
-
font-weight: 500;
|
|
30639
|
-
font-feature-settings: "zero" on;
|
|
30599
|
+
.E_s1epv22q {
|
|
30600
|
+
color: #f0483e;
|
|
30640
30601
|
font-size: 12px;
|
|
30641
|
-
|
|
30602
|
+
white-space: pre-wrap;
|
|
30642
30603
|
}
|
|
30643
30604
|
|
|
30644
|
-
.
|
|
30645
|
-
|
|
30646
|
-
|
|
30647
|
-
|
|
30648
|
-
|
|
30649
|
-
|
|
30650
|
-
|
|
30605
|
+
.E_okus5hk {
|
|
30606
|
+
display: flex;
|
|
30607
|
+
align-items: center;
|
|
30608
|
+
justify-content: flex-end;
|
|
30609
|
+
}
|
|
30610
|
+
.E_okus5hk .icon-wrapper {
|
|
30611
|
+
margin-right: 16px;
|
|
30651
30612
|
}
|
|
30652
30613
|
|
|
30653
|
-
.
|
|
30654
|
-
|
|
30655
|
-
font-style: normal;
|
|
30656
|
-
font-weight: normal;
|
|
30657
|
-
font-size: 10px;
|
|
30658
|
-
line-height: 12px;
|
|
30614
|
+
.E_t1auuzri {
|
|
30615
|
+
color: rgba(0, 21, 64, 0.3);
|
|
30659
30616
|
}
|
|
30660
30617
|
|
|
30661
|
-
.
|
|
30662
|
-
|
|
30663
|
-
height:
|
|
30664
|
-
|
|
30665
|
-
|
|
30618
|
+
.E_i74cfyt.ant-input {
|
|
30619
|
+
padding: 5px 12px;
|
|
30620
|
+
line-height: 20px;
|
|
30621
|
+
color: #2d3a56;
|
|
30622
|
+
border-radius: 6px;
|
|
30623
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
30624
|
+
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
30666
30625
|
}
|
|
30667
|
-
.
|
|
30668
|
-
|
|
30626
|
+
.E_i74cfyt.ant-input.ant-input-lg {
|
|
30627
|
+
padding: 8px 16px;
|
|
30628
|
+
line-height: 22px;
|
|
30669
30629
|
}
|
|
30670
|
-
.
|
|
30671
|
-
|
|
30672
|
-
height:
|
|
30630
|
+
.E_i74cfyt.ant-input.ant-input-sm {
|
|
30631
|
+
padding: 2px 8px;
|
|
30632
|
+
line-height: 18px;
|
|
30673
30633
|
}
|
|
30674
|
-
.
|
|
30675
|
-
|
|
30676
|
-
|
|
30634
|
+
.E_i74cfyt.ant-input:not([disabled]):hover, .E_i74cfyt.ant-input:not([disabled]).__pseudo-states-hover, .E_i74cfyt.ant-input-number:not([disabled]):hover, .E_i74cfyt.ant-input-number:not([disabled]).__pseudo-states-hover {
|
|
30635
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
30636
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
30637
|
+
z-index: 1;
|
|
30677
30638
|
}
|
|
30678
|
-
.
|
|
30679
|
-
|
|
30680
|
-
|
|
30639
|
+
.E_i74cfyt.ant-input:not([disabled]):active, .E_i74cfyt.ant-input:not([disabled]):focus, .E_i74cfyt.ant-input:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input:not([disabled]).__pseudo-states-focus, .E_i74cfyt.ant-input-number:not([disabled]):active, .E_i74cfyt.ant-input-number:not([disabled]):focus, .E_i74cfyt.ant-input-number:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input-number:not([disabled]).__pseudo-states-focus {
|
|
30640
|
+
border-color: #0096ff;
|
|
30641
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
30642
|
+
z-index: 1;
|
|
30681
30643
|
}
|
|
30682
|
-
.
|
|
30683
|
-
border-
|
|
30684
|
-
|
|
30644
|
+
.E_i74cfyt.ant-input.error:not([disabled]), .E_i74cfyt.ant-picker.error:not([disabled]), .E_i74cfyt.ant-input-number.error:not([disabled]) {
|
|
30645
|
+
border-color: #e75a3a;
|
|
30646
|
+
color: #e75a3a;
|
|
30685
30647
|
}
|
|
30686
|
-
.
|
|
30687
|
-
|
|
30688
|
-
|
|
30689
|
-
top: 1px;
|
|
30690
|
-
left: 1px;
|
|
30648
|
+
.E_i74cfyt.ant-input.error:not([disabled]):hover, .E_i74cfyt.ant-input.error:not([disabled]).__pseudo-states-hover, .E_i74cfyt.ant-picker.error:not([disabled]):hover, .E_i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-hover, .E_i74cfyt.ant-input-number.error:not([disabled]):hover, .E_i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-hover {
|
|
30649
|
+
border-color: #e75a3a;
|
|
30650
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
30691
30651
|
}
|
|
30692
|
-
.
|
|
30693
|
-
|
|
30694
|
-
|
|
30652
|
+
.E_i74cfyt.ant-input.error:not([disabled]):active, .E_i74cfyt.ant-input.error:not([disabled]):focus, .E_i74cfyt.ant-input.error:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input.error:not([disabled]).__pseudo-states-focus, .E_i74cfyt.ant-picker.error:not([disabled]):active, .E_i74cfyt.ant-picker.error:not([disabled]):focus, .E_i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-focus, .E_i74cfyt.ant-input-number.error:not([disabled]):active, .E_i74cfyt.ant-input-number.error:not([disabled]):focus, .E_i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-focus {
|
|
30653
|
+
border-color: #e75a3a;
|
|
30654
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
30695
30655
|
}
|
|
30696
|
-
.
|
|
30697
|
-
|
|
30656
|
+
.E_i74cfyt.ant-input[disabled], .E_i74cfyt.ant-input.ant-input-disabled, .E_i74cfyt.ant-input-number[disabled], .E_i74cfyt.ant-input-number.ant-input-number-disabled {
|
|
30657
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30658
|
+
color: rgba(0, 21, 64, 0.3);
|
|
30659
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
30698
30660
|
}
|
|
30699
|
-
.
|
|
30700
|
-
|
|
30661
|
+
.E_i74cfyt.ant-input-affix-wrapper {
|
|
30662
|
+
padding: 5px 12px;
|
|
30663
|
+
border-radius: 6px;
|
|
30664
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
30665
|
+
line-height: 20px;
|
|
30666
|
+
color: #2d3a56;
|
|
30667
|
+
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
30701
30668
|
}
|
|
30702
|
-
.
|
|
30703
|
-
|
|
30669
|
+
.E_i74cfyt.ant-input-affix-wrapper .ant-input-suffix,
|
|
30670
|
+
.E_i74cfyt.ant-input-affix-wrapper .ant-input-prefix {
|
|
30671
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30704
30672
|
}
|
|
30705
|
-
.
|
|
30706
|
-
|
|
30707
|
-
|
|
30708
|
-
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
30709
|
-
left: calc(100% - 28px - 2px);
|
|
30673
|
+
.E_i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
|
|
30674
|
+
padding: 8px 16px;
|
|
30675
|
+
line-height: 22px;
|
|
30710
30676
|
}
|
|
30711
|
-
|
|
30712
|
-
|
|
30713
|
-
|
|
30677
|
+
.E_i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
30678
|
+
padding: 2px 8px;
|
|
30679
|
+
line-height: 18px;
|
|
30714
30680
|
}
|
|
30715
|
-
|
|
30716
|
-
.
|
|
30717
|
-
|
|
30681
|
+
.E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
30682
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
30683
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
30718
30684
|
}
|
|
30719
|
-
|
|
30720
|
-
|
|
30721
|
-
|
|
30722
|
-
align-items: center;
|
|
30723
|
-
justify-content: space-between;
|
|
30724
|
-
background: #edf0f7;
|
|
30725
|
-
padding: 8px 12px;
|
|
30726
|
-
position: sticky;
|
|
30727
|
-
top: 0;
|
|
30728
|
-
z-index: 1;
|
|
30729
|
-
margin-bottom: -52px;
|
|
30685
|
+
.E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
30686
|
+
border-color: #0096ff;
|
|
30687
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
30730
30688
|
}
|
|
30731
|
-
.
|
|
30732
|
-
|
|
30733
|
-
align-items: center;
|
|
30734
|
-
font-weight: 700;
|
|
30735
|
-
flex-shrink: 0;
|
|
30689
|
+
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
|
|
30690
|
+
border-color: #e75a3a;
|
|
30736
30691
|
}
|
|
30737
|
-
.
|
|
30738
|
-
|
|
30739
|
-
margin-left: 8px;
|
|
30740
|
-
width: 32px;
|
|
30741
|
-
height: 32px;
|
|
30742
|
-
border-radius: 50%;
|
|
30743
|
-
justify-content: center;
|
|
30692
|
+
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
|
|
30693
|
+
color: #e75a3a;
|
|
30744
30694
|
}
|
|
30745
|
-
.
|
|
30746
|
-
|
|
30695
|
+
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
30696
|
+
border-color: #e75a3a;
|
|
30697
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
30747
30698
|
}
|
|
30748
|
-
.
|
|
30749
|
-
|
|
30750
|
-
|
|
30751
|
-
white-space: nowrap;
|
|
30752
|
-
text-align: right;
|
|
30753
|
-
position: relative;
|
|
30754
|
-
padding: 4px 0;
|
|
30755
|
-
margin-top: -4px;
|
|
30756
|
-
overflow: hidden;
|
|
30699
|
+
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
30700
|
+
border-color: #e75a3a;
|
|
30701
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
30757
30702
|
}
|
|
30758
|
-
.
|
|
30759
|
-
|
|
30703
|
+
.E_i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
|
|
30704
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30705
|
+
color: rgba(0, 21, 64, 0.3);
|
|
30706
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
30760
30707
|
}
|
|
30761
|
-
.
|
|
30762
|
-
|
|
30708
|
+
textarea.E_i74cfyt.ant-input {
|
|
30709
|
+
transition-property: height;
|
|
30710
|
+
transition-delay: 50ms;
|
|
30763
30711
|
}
|
|
30764
|
-
.
|
|
30765
|
-
|
|
30712
|
+
textarea.E_i74cfyt.ant-input.textarea-large {
|
|
30713
|
+
min-height: 40px;
|
|
30714
|
+
height: 40px;
|
|
30766
30715
|
}
|
|
30767
|
-
.
|
|
30768
|
-
|
|
30716
|
+
textarea.E_i74cfyt.ant-input.textarea-large:focus {
|
|
30717
|
+
height: 80px;
|
|
30769
30718
|
}
|
|
30770
|
-
.
|
|
30771
|
-
|
|
30772
|
-
width: 32px;
|
|
30719
|
+
textarea.E_i74cfyt.ant-input.textarea-middle {
|
|
30720
|
+
min-height: 32px;
|
|
30773
30721
|
height: 32px;
|
|
30774
|
-
justify-content: center;
|
|
30775
|
-
border-radius: 50%;
|
|
30776
30722
|
}
|
|
30777
|
-
.
|
|
30778
|
-
|
|
30723
|
+
textarea.E_i74cfyt.ant-input.textarea-middle:focus {
|
|
30724
|
+
height: 64px;
|
|
30725
|
+
}
|
|
30726
|
+
textarea.E_i74cfyt.ant-input.textarea-small {
|
|
30727
|
+
min-height: 24px;
|
|
30728
|
+
height: 24px;
|
|
30729
|
+
}
|
|
30730
|
+
textarea.E_i74cfyt.ant-input.textarea-small:focus {
|
|
30731
|
+
height: 40px;
|
|
30779
30732
|
}
|
|
30780
30733
|
|
|
30781
|
-
.
|
|
30782
|
-
|
|
30783
|
-
|
|
30784
|
-
white-space: pre-wrap;
|
|
30734
|
+
.E_k1ci6977 input, .E_k1ci6977.input-tags {
|
|
30735
|
+
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
30736
|
+
border-radius: 4px;
|
|
30785
30737
|
}
|
|
30786
|
-
.
|
|
30738
|
+
.E_k1ci6977.input-tags {
|
|
30787
30739
|
position: relative;
|
|
30788
|
-
|
|
30789
|
-
|
|
30790
|
-
|
|
30791
|
-
|
|
30740
|
+
padding: 6px;
|
|
30741
|
+
height: 32px;
|
|
30742
|
+
cursor: pointer;
|
|
30743
|
+
transition: border 150ms;
|
|
30792
30744
|
}
|
|
30793
|
-
.
|
|
30745
|
+
.E_k1ci6977.input-tags:hover {
|
|
30794
30746
|
border-color: #0080ff;
|
|
30747
|
+
box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
|
|
30795
30748
|
}
|
|
30796
|
-
.
|
|
30797
|
-
|
|
30798
|
-
background: #0080ff;
|
|
30749
|
+
.E_k1ci6977.input-tags.kit-input-suffix-wrapper {
|
|
30750
|
+
padding-right: 30px;
|
|
30799
30751
|
}
|
|
30800
|
-
.
|
|
30801
|
-
|
|
30802
|
-
left: 4px;
|
|
30803
|
-
width: 6px;
|
|
30804
|
-
height: 6px;
|
|
30805
|
-
background: #fff;
|
|
30752
|
+
.E_k1ci6977.input-tags .input-tags-inner {
|
|
30753
|
+
display: flex;
|
|
30806
30754
|
}
|
|
30807
|
-
.
|
|
30808
|
-
|
|
30755
|
+
.E_k1ci6977.input-tags .input-tags-inner .tags-overflow-auto {
|
|
30756
|
+
display: flex;
|
|
30809
30757
|
}
|
|
30810
|
-
.
|
|
30811
|
-
|
|
30812
|
-
|
|
30758
|
+
.E_k1ci6977.input-tags .input-tag-suffix {
|
|
30759
|
+
position: absolute;
|
|
30760
|
+
right: 12px;
|
|
30761
|
+
top: 50%;
|
|
30762
|
+
transform: translateY(-50%);
|
|
30813
30763
|
}
|
|
30814
|
-
.
|
|
30815
|
-
|
|
30764
|
+
.E_k1ci6977.input-tags .input-tag-suffix .anticon-close-circle {
|
|
30765
|
+
color: rgba(0, 0, 0, 0.25);
|
|
30766
|
+
font-size: 12px;
|
|
30767
|
+
cursor: pointer;
|
|
30816
30768
|
}
|
|
30817
|
-
.
|
|
30818
|
-
color:
|
|
30819
|
-
opacity: 0.5;
|
|
30769
|
+
.E_k1ci6977.input-tags .input-tag-suffix .anticon-close-circle:hover {
|
|
30770
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30820
30771
|
}
|
|
30821
|
-
.
|
|
30822
|
-
|
|
30772
|
+
.E_k1ci6977.has-focus-indicator {
|
|
30773
|
+
position: relative;
|
|
30774
|
+
overflow: hidden;
|
|
30823
30775
|
}
|
|
30824
|
-
.
|
|
30825
|
-
|
|
30826
|
-
|
|
30827
|
-
|
|
30776
|
+
.E_k1ci6977.has-focus-indicator .ant-input-prefix {
|
|
30777
|
+
position: absolute;
|
|
30778
|
+
top: 50%;
|
|
30779
|
+
transform: translateY(-50%);
|
|
30780
|
+
left: -16px;
|
|
30781
|
+
transition: left 150ms ease;
|
|
30782
|
+
opacity: 0;
|
|
30828
30783
|
}
|
|
30829
|
-
.
|
|
30830
|
-
|
|
30831
|
-
|
|
30832
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30784
|
+
.E_k1ci6977.has-focus-indicator.ant-input-affix-wrapper-focused .ant-input-prefix {
|
|
30785
|
+
left: 8px;
|
|
30786
|
+
opacity: 1;
|
|
30833
30787
|
}
|
|
30834
|
-
.
|
|
30835
|
-
|
|
30788
|
+
.E_k1ci6977.has-focus-indicator input {
|
|
30789
|
+
transition: margin-left 150ms ease;
|
|
30790
|
+
margin-left: 0px;
|
|
30836
30791
|
}
|
|
30837
|
-
|
|
30838
|
-
|
|
30839
|
-
border-radius: 5px 0 0 5px;
|
|
30792
|
+
.E_k1ci6977.has-focus-indicator input:focus {
|
|
30793
|
+
margin-left: 16px;
|
|
30840
30794
|
}
|
|
30841
|
-
|
|
30842
|
-
|
|
30795
|
+
|
|
30796
|
+
input.E_l1f7td1d.ant-input {
|
|
30797
|
+
border-top-right-radius: 0;
|
|
30798
|
+
border-bottom-right-radius: 0;
|
|
30843
30799
|
}
|
|
30844
30800
|
|
|
30845
|
-
.
|
|
30846
|
-
|
|
30847
|
-
border-
|
|
30801
|
+
.E_l1f7td1d.ant-input-affix-wrapper {
|
|
30802
|
+
border-top-right-radius: 0;
|
|
30803
|
+
border-bottom-right-radius: 0;
|
|
30848
30804
|
}
|
|
30849
|
-
|
|
30850
|
-
|
|
30805
|
+
|
|
30806
|
+
input.E_rf8rlle.ant-input {
|
|
30807
|
+
border-top-left-radius: 0;
|
|
30808
|
+
border-bottom-left-radius: 0;
|
|
30851
30809
|
}
|
|
30852
|
-
|
|
30853
|
-
|
|
30854
|
-
|
|
30855
|
-
|
|
30810
|
+
|
|
30811
|
+
.E_rf8rlle.ant-input-affix-wrapper {
|
|
30812
|
+
border-top-left-radius: 0;
|
|
30813
|
+
border-bottom-left-radius: 0;
|
|
30856
30814
|
}
|
|
30857
|
-
|
|
30858
|
-
|
|
30815
|
+
|
|
30816
|
+
.E_llt2k48.ant-select, .E_llt2k48.ant-select .ant-select-selector {
|
|
30817
|
+
border-top-right-radius: 0;
|
|
30818
|
+
border-bottom-right-radius: 0;
|
|
30859
30819
|
}
|
|
30860
|
-
|
|
30861
|
-
|
|
30862
|
-
|
|
30863
|
-
|
|
30820
|
+
|
|
30821
|
+
.E_rdwz7eh.ant-select, .E_rdwz7eh.ant-select .ant-select-selector {
|
|
30822
|
+
border-top-left-radius: 0;
|
|
30823
|
+
border-bottom-left-radius: 0;
|
|
30864
30824
|
}
|
|
30865
|
-
|
|
30866
|
-
|
|
30825
|
+
|
|
30826
|
+
.E_c3ni091 {
|
|
30827
|
+
display: flex;
|
|
30828
|
+
flex-direction: column;
|
|
30867
30829
|
}
|
|
30868
|
-
.
|
|
30869
|
-
|
|
30830
|
+
.E_c3ni091 .select-wrapper {
|
|
30831
|
+
margin-top: 12px;
|
|
30870
30832
|
}
|
|
30871
|
-
.
|
|
30872
|
-
|
|
30873
|
-
opacity: 0.5;
|
|
30833
|
+
.E_c3ni091 .select-wrapper .select {
|
|
30834
|
+
width: 100%;
|
|
30874
30835
|
}
|
|
30875
|
-
.
|
|
30876
|
-
|
|
30836
|
+
.E_c3ni091 .radio-wrapper {
|
|
30837
|
+
margin-top: 24px;
|
|
30877
30838
|
}
|
|
30878
|
-
.
|
|
30879
|
-
|
|
30839
|
+
.E_c3ni091 div.form-item {
|
|
30840
|
+
width: 100%;
|
|
30880
30841
|
}
|
|
30881
|
-
|
|
30842
|
+
|
|
30843
|
+
.E_d105ju2d {
|
|
30844
|
+
font-size: 14px;
|
|
30845
|
+
font-weight: 500;
|
|
30846
|
+
color: #3e4652;
|
|
30847
|
+
line-height: 18px;
|
|
30848
|
+
}
|
|
30849
|
+
.E_d105ju2d + .E_d105ju2d {
|
|
30850
|
+
margin-top: 16px;
|
|
30851
|
+
}
|
|
30852
|
+
.E_d105ju2d + * {
|
|
30853
|
+
margin-top: 16px;
|
|
30854
|
+
}
|
|
30855
|
+
|
|
30856
|
+
.E_lh0l62z.E_d105ju2d {
|
|
30857
|
+
font-size: 12px;
|
|
30858
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30859
|
+
margin-top: 12px;
|
|
30860
|
+
}
|
|
30861
|
+
|
|
30862
|
+
.E_r1o4v2oc.E_lh0l62z.E_d105ju2d {
|
|
30863
|
+
line-height: 18px;
|
|
30864
|
+
font-weight: 500;
|
|
30865
|
+
margin-top: 0;
|
|
30866
|
+
white-space: initial;
|
|
30867
|
+
}
|
|
30868
|
+
|
|
30869
|
+
.E_r1skkc3l {
|
|
30870
|
+
display: block;
|
|
30871
|
+
}
|
|
30872
|
+
.E_r1skkc3l span {
|
|
30873
|
+
font-size: 14px;
|
|
30874
|
+
font-weight: 500;
|
|
30875
|
+
line-height: 32px;
|
|
30876
|
+
color: #3e4652;
|
|
30877
|
+
}
|
|
30878
|
+
|
|
30879
|
+
.E_c3cobmo {
|
|
30880
|
+
margin-top: 16px;
|
|
30881
|
+
padding: 8px;
|
|
30882
|
+
border-radius: 6px;
|
|
30883
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30884
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30885
|
+
font-size: 12px;
|
|
30886
|
+
}
|
|
30887
|
+
.E_c3cobmo div {
|
|
30888
|
+
line-height: 20px;
|
|
30889
|
+
display: flex;
|
|
30890
|
+
align-items: center;
|
|
30891
|
+
word-break: break-all;
|
|
30892
|
+
}
|
|
30893
|
+
.E_c3cobmo .title {
|
|
30894
|
+
font-weight: 700;
|
|
30895
|
+
line-height: 18px;
|
|
30896
|
+
margin: 4px 0;
|
|
30897
|
+
}
|
|
30898
|
+
|
|
30899
|
+
.E_t1m2x205 .ant-tooltip-arrow {
|
|
30900
|
+
display: none;
|
|
30901
|
+
}
|
|
30902
|
+
.E_t1m2x205 .ant-tooltip-inner {
|
|
30903
|
+
background: rgba(23, 38, 64, 0.8);
|
|
30904
|
+
border-radius: 4px;
|
|
30905
|
+
}
|
|
30906
|
+
|
|
30907
|
+
.E_phljevk {
|
|
30908
|
+
display: flex;
|
|
30909
|
+
justify-content: space-between;
|
|
30910
|
+
align-items: center;
|
|
30911
|
+
padding: 10px 0;
|
|
30912
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30913
|
+
font-size: 12px;
|
|
30914
|
+
line-height: 24px;
|
|
30915
|
+
}
|
|
30916
|
+
.E_phljevk .pagination-left {
|
|
30917
|
+
padding: 2px 8px;
|
|
30918
|
+
}
|
|
30919
|
+
.E_phljevk .dropdown-trigger {
|
|
30920
|
+
display: flex;
|
|
30921
|
+
align-items: center;
|
|
30922
|
+
border-radius: 6px;
|
|
30923
|
+
cursor: pointer;
|
|
30924
|
+
transition: all 0.3s ease;
|
|
30925
|
+
}
|
|
30926
|
+
.E_phljevk .dropdown-trigger:hover {
|
|
30927
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30928
|
+
color: #0080ff;
|
|
30929
|
+
}
|
|
30930
|
+
.E_phljevk .dropdown-trigger .icon-inner {
|
|
30931
|
+
margin-left: 4px;
|
|
30932
|
+
}
|
|
30933
|
+
.E_phljevk .pagination-right {
|
|
30934
|
+
display: flex;
|
|
30935
|
+
align-items: center;
|
|
30936
|
+
color: #0080ff;
|
|
30937
|
+
font-weight: bold;
|
|
30938
|
+
}
|
|
30939
|
+
.E_phljevk .pagination-right .icon-inner {
|
|
30940
|
+
margin-left: 4px;
|
|
30941
|
+
}
|
|
30942
|
+
.E_phljevk .pagination-right .prev-btn,
|
|
30943
|
+
.E_phljevk .pagination-right .next-btn {
|
|
30944
|
+
padding: 0 8px;
|
|
30945
|
+
}
|
|
30946
|
+
.E_phljevk .pagination-right .prev-btn > span,
|
|
30947
|
+
.E_phljevk .pagination-right .next-btn > span {
|
|
30948
|
+
color: #0080ff;
|
|
30949
|
+
}
|
|
30950
|
+
.E_phljevk .pagination-right .next-btn .icon-inner {
|
|
30951
|
+
transform: rotate(180deg);
|
|
30952
|
+
}
|
|
30953
|
+
|
|
30954
|
+
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu {
|
|
30955
|
+
max-height: calc(100vh - 128px);
|
|
30956
|
+
overflow-y: auto;
|
|
30957
|
+
}
|
|
30958
|
+
.E_d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
30959
|
+
padding: 4px 20px;
|
|
30960
|
+
font-size: 12px;
|
|
30961
|
+
line-height: 18px;
|
|
30962
|
+
}
|
|
30963
|
+
|
|
30964
|
+
.E_rapgekc.ant-radio-wrapper {
|
|
30965
|
+
display: inline-flex;
|
|
30966
|
+
align-items: baseline;
|
|
30967
|
+
white-space: pre-wrap;
|
|
30968
|
+
}
|
|
30969
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio {
|
|
30970
|
+
position: relative;
|
|
30971
|
+
top: 3px;
|
|
30972
|
+
}
|
|
30973
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
30974
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
30975
|
+
}
|
|
30976
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
30977
|
+
border-color: #0080ff;
|
|
30978
|
+
}
|
|
30979
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
30980
|
+
border-color: #0080ff;
|
|
30981
|
+
background: #0080ff;
|
|
30982
|
+
}
|
|
30983
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
30984
|
+
top: 4px;
|
|
30985
|
+
left: 4px;
|
|
30986
|
+
width: 6px;
|
|
30987
|
+
height: 6px;
|
|
30988
|
+
background: #fff;
|
|
30989
|
+
}
|
|
30990
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
30991
|
+
opacity: 0.5;
|
|
30992
|
+
}
|
|
30993
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
30994
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
30995
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30996
|
+
}
|
|
30997
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
30998
|
+
background: #00122e;
|
|
30999
|
+
}
|
|
31000
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
31001
|
+
color: #00122e;
|
|
31002
|
+
opacity: 0.5;
|
|
31003
|
+
}
|
|
31004
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
31005
|
+
color: #00122e;
|
|
31006
|
+
}
|
|
31007
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
31008
|
+
display: inline-block;
|
|
31009
|
+
padding: 0;
|
|
31010
|
+
padding-left: 12px;
|
|
31011
|
+
}
|
|
31012
|
+
.E_rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
31013
|
+
margin-bottom: 0;
|
|
31014
|
+
white-space: pre-wrap;
|
|
31015
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31016
|
+
}
|
|
31017
|
+
.E_rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
31018
|
+
padding-left: 8px;
|
|
31019
|
+
}
|
|
31020
|
+
|
|
31021
|
+
.E_rp906go .ant-radio-button-wrapper:first-child {
|
|
31022
|
+
border-radius: 5px 0 0 5px;
|
|
31023
|
+
}
|
|
31024
|
+
.E_rp906go .ant-radio-button-wrapper:last-child {
|
|
31025
|
+
border-radius: 0 5px 5px 0;
|
|
31026
|
+
}
|
|
31027
|
+
|
|
31028
|
+
.E_rcc63c8 {
|
|
31029
|
+
color: #00122e;
|
|
31030
|
+
border-color: #ccd4e3;
|
|
31031
|
+
}
|
|
31032
|
+
.E_rcc63c8:first-child {
|
|
31033
|
+
border-color: #a3b4cc;
|
|
31034
|
+
}
|
|
31035
|
+
.E_rcc63c8.ant-radio-button-wrapper {
|
|
31036
|
+
padding: 0 12px;
|
|
31037
|
+
line-height: 32px;
|
|
31038
|
+
height: 32px;
|
|
31039
|
+
}
|
|
31040
|
+
.E_rcc63c8.ant-radio-button-wrapper > span + span {
|
|
31041
|
+
white-space: nowrap;
|
|
31042
|
+
}
|
|
31043
|
+
.ant-radio-group-small .E_rcc63c8.ant-radio-button-wrapper {
|
|
31044
|
+
height: 22px;
|
|
31045
|
+
padding: 0 7px;
|
|
31046
|
+
line-height: 20px;
|
|
31047
|
+
}
|
|
31048
|
+
.E_rcc63c8.ant-radio-button-wrapper:not(:first-child)::before {
|
|
31049
|
+
background: #ccd4e3;
|
|
31050
|
+
}
|
|
31051
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
31052
|
+
background: #0080ff;
|
|
31053
|
+
}
|
|
31054
|
+
.E_rcc63c8.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
31055
|
+
background: #ccd4e3;
|
|
31056
|
+
opacity: 0.5;
|
|
31057
|
+
}
|
|
31058
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
31059
|
+
border-right-color: #0080ff;
|
|
31060
|
+
}
|
|
31061
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
31062
|
+
border-color: #0080ff;
|
|
31063
|
+
}
|
|
31064
|
+
.E_rcc63c8.ant-radio-button-wrapper-checked {
|
|
30882
31065
|
background: rgba(0, 136, 255, 0.1);
|
|
30883
31066
|
}
|
|
30884
31067
|
.E_rcc63c8.ant-radio-button-wrapper-disabled {
|
|
@@ -30924,778 +31107,595 @@ html body {
|
|
|
30924
31107
|
width: 36px;
|
|
30925
31108
|
}
|
|
30926
31109
|
|
|
30927
|
-
.
|
|
30928
|
-
|
|
30929
|
-
|
|
31110
|
+
.E_s1dizucg.ant-switch {
|
|
31111
|
+
min-width: 40px;
|
|
31112
|
+
height: 24px;
|
|
31113
|
+
background: rgba(172, 186, 211, 0.6);
|
|
31114
|
+
overflow: hidden;
|
|
30930
31115
|
}
|
|
30931
|
-
|
|
30932
|
-
.
|
|
30933
|
-
max-width: 1120px;
|
|
30934
|
-
width: 100%;
|
|
30935
|
-
margin: 0 auto;
|
|
30936
|
-
height: 100%;
|
|
31116
|
+
.E_s1dizucg.ant-switch:focus {
|
|
31117
|
+
box-shadow: 0 0 0 2px rgba(225, 230, 241, 0.6);
|
|
30937
31118
|
}
|
|
30938
|
-
|
|
30939
|
-
|
|
30940
|
-
|
|
30941
|
-
width: 100%;
|
|
30942
|
-
margin: 0 auto;
|
|
30943
|
-
display: flex;
|
|
31119
|
+
.E_s1dizucg.ant-switch-small {
|
|
31120
|
+
min-width: 26px;
|
|
31121
|
+
height: 16px;
|
|
30944
31122
|
}
|
|
30945
|
-
.
|
|
30946
|
-
|
|
30947
|
-
|
|
30948
|
-
flex-shrink: 0;
|
|
30949
|
-
flex-basis: 21%;
|
|
31123
|
+
.E_s1dizucg.ant-switch-large {
|
|
31124
|
+
min-width: 52px;
|
|
31125
|
+
height: 32px;
|
|
30950
31126
|
}
|
|
30951
|
-
.
|
|
30952
|
-
|
|
30953
|
-
|
|
30954
|
-
padding-right: 44px;
|
|
30955
|
-
}
|
|
30956
|
-
.E_wt5zbg6 .right {
|
|
30957
|
-
padding-left: 44px;
|
|
31127
|
+
.E_s1dizucg.ant-switch .ant-switch-handle {
|
|
31128
|
+
height: 20px;
|
|
31129
|
+
width: 20px;
|
|
30958
31130
|
}
|
|
30959
|
-
.
|
|
30960
|
-
|
|
30961
|
-
|
|
30962
|
-
flex-shrink: 0;
|
|
30963
|
-
flex-basis: 58%;
|
|
31131
|
+
.E_s1dizucg.ant-switch .ant-switch-handle::before {
|
|
31132
|
+
border-radius: 10px;
|
|
31133
|
+
transition-delay: 120ms;
|
|
30964
31134
|
}
|
|
30965
|
-
.
|
|
30966
|
-
|
|
31135
|
+
.E_s1dizucg.ant-switch-small .ant-switch-handle {
|
|
31136
|
+
height: 14px;
|
|
31137
|
+
width: 14px;
|
|
31138
|
+
top: 1px;
|
|
31139
|
+
left: 1px;
|
|
30967
31140
|
}
|
|
30968
|
-
.
|
|
30969
|
-
|
|
31141
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle {
|
|
31142
|
+
height: 28px;
|
|
31143
|
+
width: 28px;
|
|
30970
31144
|
}
|
|
30971
|
-
|
|
30972
|
-
|
|
30973
|
-
margin: 0 auto;
|
|
30974
|
-
width: 100%;
|
|
30975
|
-
max-width: 648px;
|
|
31145
|
+
.E_s1dizucg.ant-switch-large .ant-switch-handle::before {
|
|
31146
|
+
border-radius: 14px;
|
|
30976
31147
|
}
|
|
30977
|
-
.
|
|
30978
|
-
|
|
31148
|
+
.E_s1dizucg.ant-switch-checked {
|
|
31149
|
+
background-color: #00ba5d;
|
|
30979
31150
|
}
|
|
30980
|
-
.
|
|
30981
|
-
|
|
30982
|
-
padding: 0;
|
|
30983
|
-
width: 100%;
|
|
30984
|
-
max-width: 648px;
|
|
30985
|
-
overflow: hidden;
|
|
31151
|
+
.E_s1dizucg.ant-switch-checked .ant-switch-handle {
|
|
31152
|
+
left: calc(100% - 20px - 2px);
|
|
30986
31153
|
}
|
|
30987
|
-
.
|
|
30988
|
-
|
|
31154
|
+
.E_s1dizucg.ant-switch-small.ant-switch-checked .ant-switch-handle {
|
|
31155
|
+
left: calc(100% - 14px - 1px);
|
|
30989
31156
|
}
|
|
30990
|
-
.
|
|
30991
|
-
|
|
30992
|
-
overflow-y: auto;
|
|
31157
|
+
.E_s1dizucg.ant-switch-large.ant-switch-checked .ant-switch-handle {
|
|
31158
|
+
left: calc(100% - 28px - 2px);
|
|
30993
31159
|
}
|
|
30994
|
-
|
|
30995
|
-
|
|
30996
|
-
|
|
31160
|
+
|
|
31161
|
+
.E_c1up6e3y {
|
|
31162
|
+
margin-left: 5px;
|
|
30997
31163
|
}
|
|
30998
31164
|
|
|
30999
|
-
.
|
|
31000
|
-
|
|
31001
|
-
|
|
31002
|
-
|
|
31165
|
+
.E_s1ebs0ra {
|
|
31166
|
+
display: flex;
|
|
31167
|
+
align-items: center;
|
|
31168
|
+
justify-content: space-between;
|
|
31169
|
+
background: #edf0f7;
|
|
31170
|
+
padding: 8px 12px;
|
|
31171
|
+
position: sticky;
|
|
31172
|
+
top: 0;
|
|
31173
|
+
z-index: 1;
|
|
31174
|
+
margin-bottom: -52px;
|
|
31003
31175
|
}
|
|
31004
|
-
.
|
|
31005
|
-
|
|
31176
|
+
.E_s1ebs0ra .select-total {
|
|
31177
|
+
display: flex;
|
|
31178
|
+
align-items: center;
|
|
31179
|
+
font-weight: 700;
|
|
31180
|
+
flex-shrink: 0;
|
|
31006
31181
|
}
|
|
31007
|
-
.
|
|
31008
|
-
|
|
31009
|
-
|
|
31010
|
-
width:
|
|
31011
|
-
|
|
31182
|
+
.E_s1ebs0ra .select-total .icon-wrapper {
|
|
31183
|
+
cursor: pointer;
|
|
31184
|
+
margin-left: 8px;
|
|
31185
|
+
width: 32px;
|
|
31186
|
+
height: 32px;
|
|
31187
|
+
border-radius: 50%;
|
|
31188
|
+
justify-content: center;
|
|
31189
|
+
}
|
|
31190
|
+
.E_s1ebs0ra .select-total .icon-wrapper:hover {
|
|
31191
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31192
|
+
}
|
|
31193
|
+
.E_s1ebs0ra .action-group {
|
|
31194
|
+
flex: 1;
|
|
31195
|
+
margin-left: 88px;
|
|
31196
|
+
white-space: nowrap;
|
|
31197
|
+
text-align: right;
|
|
31198
|
+
position: relative;
|
|
31199
|
+
padding: 4px 0;
|
|
31200
|
+
margin-top: -4px;
|
|
31012
31201
|
overflow: hidden;
|
|
31013
31202
|
}
|
|
31014
|
-
.
|
|
31015
|
-
|
|
31203
|
+
.E_s1ebs0ra .action-group .sub-menu-delete {
|
|
31204
|
+
transform: translateY(-4px);
|
|
31016
31205
|
}
|
|
31017
|
-
.
|
|
31018
|
-
|
|
31019
|
-
overflow-y: auto;
|
|
31206
|
+
.E_s1ebs0ra .action-group button {
|
|
31207
|
+
border: none;
|
|
31020
31208
|
}
|
|
31021
|
-
.
|
|
31022
|
-
margin:
|
|
31023
|
-
max-width: 1024px;
|
|
31209
|
+
.E_s1ebs0ra .action-group > *:not(:last-child) {
|
|
31210
|
+
margin-right: 8px;
|
|
31024
31211
|
}
|
|
31025
|
-
|
|
31026
|
-
|
|
31027
|
-
flex: 1;
|
|
31212
|
+
.E_s1ebs0ra .action-group > button:last-child {
|
|
31213
|
+
margin-right: 4px;
|
|
31028
31214
|
}
|
|
31029
|
-
.
|
|
31030
|
-
|
|
31031
|
-
|
|
31032
|
-
|
|
31215
|
+
.E_s1ebs0ra .action-group .more-btn {
|
|
31216
|
+
cursor: pointer;
|
|
31217
|
+
width: 32px;
|
|
31218
|
+
height: 32px;
|
|
31219
|
+
justify-content: center;
|
|
31220
|
+
border-radius: 50%;
|
|
31033
31221
|
}
|
|
31034
|
-
.
|
|
31035
|
-
|
|
31036
|
-
line-height: 20px;
|
|
31037
|
-
color: #2d3a56;
|
|
31038
|
-
margin-bottom: 12px;
|
|
31222
|
+
.E_s1ebs0ra .action-group .more-btn:hover {
|
|
31223
|
+
background: #fff;
|
|
31039
31224
|
}
|
|
31040
|
-
|
|
31041
|
-
|
|
31225
|
+
|
|
31226
|
+
.E_dsnbhzf {
|
|
31227
|
+
font-family: Inter;
|
|
31228
|
+
font-style: normal;
|
|
31229
|
+
font-weight: bold;
|
|
31230
|
+
font-size: 32px;
|
|
31231
|
+
line-height: 40px;
|
|
31042
31232
|
}
|
|
31043
31233
|
|
|
31044
|
-
.
|
|
31045
|
-
|
|
31046
|
-
|
|
31047
|
-
|
|
31234
|
+
.E_d1mvo22k {
|
|
31235
|
+
font-family: Inter;
|
|
31236
|
+
font-style: normal;
|
|
31237
|
+
font-weight: bold;
|
|
31238
|
+
font-size: 24px;
|
|
31239
|
+
line-height: 32px;
|
|
31048
31240
|
}
|
|
31049
31241
|
|
|
31050
|
-
.
|
|
31051
|
-
|
|
31052
|
-
|
|
31053
|
-
|
|
31242
|
+
.E_d1b444tr {
|
|
31243
|
+
font-family: Inter;
|
|
31244
|
+
font-style: normal;
|
|
31245
|
+
font-weight: normal;
|
|
31246
|
+
font-size: 32px;
|
|
31247
|
+
line-height: 40px;
|
|
31054
31248
|
}
|
|
31055
|
-
|
|
31056
|
-
|
|
31249
|
+
|
|
31250
|
+
.E_dvs0kue {
|
|
31251
|
+
font-family: Inter;
|
|
31252
|
+
font-style: normal;
|
|
31253
|
+
font-weight: bold;
|
|
31254
|
+
font-size: 20px;
|
|
31255
|
+
line-height: 24px;
|
|
31057
31256
|
}
|
|
31058
|
-
|
|
31059
|
-
|
|
31257
|
+
|
|
31258
|
+
.E_d1hcbfcq {
|
|
31259
|
+
font-family: Inter;
|
|
31260
|
+
font-style: normal;
|
|
31261
|
+
font-weight: normal;
|
|
31262
|
+
font-size: 20px;
|
|
31263
|
+
line-height: 24px;
|
|
31060
31264
|
}
|
|
31061
|
-
|
|
31062
|
-
|
|
31265
|
+
|
|
31266
|
+
.E_d1cz922v {
|
|
31267
|
+
font-family: Inter;
|
|
31268
|
+
font-style: normal;
|
|
31269
|
+
font-weight: bold;
|
|
31270
|
+
font-size: 18px;
|
|
31271
|
+
line-height: 22px;
|
|
31063
31272
|
}
|
|
31064
31273
|
|
|
31065
|
-
.
|
|
31066
|
-
|
|
31067
|
-
|
|
31274
|
+
.E_d3nzbrm {
|
|
31275
|
+
font-family: Inter;
|
|
31276
|
+
font-style: normal;
|
|
31277
|
+
font-weight: normal;
|
|
31278
|
+
font-size: 18px;
|
|
31279
|
+
line-height: 22px;
|
|
31068
31280
|
}
|
|
31069
31281
|
|
|
31070
|
-
.
|
|
31071
|
-
|
|
31072
|
-
|
|
31073
|
-
|
|
31074
|
-
|
|
31282
|
+
.E_h1g0p5ob {
|
|
31283
|
+
font-family: Inter;
|
|
31284
|
+
font-style: normal;
|
|
31285
|
+
font-weight: bold;
|
|
31286
|
+
font-size: 16px;
|
|
31287
|
+
line-height: 22px;
|
|
31075
31288
|
}
|
|
31076
31289
|
|
|
31077
|
-
.
|
|
31078
|
-
|
|
31079
|
-
|
|
31080
|
-
|
|
31081
|
-
|
|
31290
|
+
.E_hydo2ej {
|
|
31291
|
+
font-family: Inter;
|
|
31292
|
+
font-style: normal;
|
|
31293
|
+
font-weight: normal;
|
|
31294
|
+
font-size: 16px;
|
|
31295
|
+
line-height: 22px;
|
|
31082
31296
|
}
|
|
31083
31297
|
|
|
31084
|
-
.
|
|
31085
|
-
|
|
31086
|
-
|
|
31087
|
-
|
|
31088
|
-
|
|
31089
|
-
|
|
31090
|
-
border-radius: 50%;
|
|
31091
|
-
margin: 0 4px;
|
|
31298
|
+
.E_h1hbuq0r {
|
|
31299
|
+
font-family: Inter;
|
|
31300
|
+
font-style: normal;
|
|
31301
|
+
font-weight: bold;
|
|
31302
|
+
font-size: 14px;
|
|
31303
|
+
line-height: 20px;
|
|
31092
31304
|
}
|
|
31093
31305
|
|
|
31094
|
-
.
|
|
31095
|
-
|
|
31096
|
-
|
|
31097
|
-
|
|
31098
|
-
|
|
31099
|
-
|
|
31100
|
-
padding: 35px 0 24px;
|
|
31101
|
-
border: none;
|
|
31102
|
-
}
|
|
31103
|
-
.E_m177r7a3 .ant-modal-header .ant-modal-title {
|
|
31104
|
-
font-size: 30px;
|
|
31105
|
-
}
|
|
31106
|
-
.E_m177r7a3 .ant-modal-body {
|
|
31107
|
-
padding: 4px 0 2px;
|
|
31108
|
-
}
|
|
31109
|
-
.E_m177r7a3 .ant-modal-footer {
|
|
31110
|
-
border: none;
|
|
31306
|
+
.E_h13bondg {
|
|
31307
|
+
font-family: Inter;
|
|
31308
|
+
font-style: normal;
|
|
31309
|
+
font-weight: normal;
|
|
31310
|
+
font-size: 14px;
|
|
31311
|
+
line-height: 20px;
|
|
31111
31312
|
}
|
|
31112
31313
|
|
|
31113
|
-
.
|
|
31314
|
+
.E_h1mhvdlx {
|
|
31315
|
+
font-family: Inter;
|
|
31316
|
+
font-style: normal;
|
|
31317
|
+
font-weight: bold;
|
|
31114
31318
|
font-size: 12px;
|
|
31115
31319
|
line-height: 18px;
|
|
31116
|
-
font-weight: bold;
|
|
31117
|
-
color: #fff;
|
|
31118
|
-
padding: 0 4px;
|
|
31119
|
-
border-radius: 4px;
|
|
31120
|
-
display: inline-block;
|
|
31121
|
-
background: var(--t1wwio3v-0);
|
|
31122
|
-
}
|
|
31123
|
-
.E_t1wwio3v:not(:first-child) {
|
|
31124
|
-
margin-left: 4px;
|
|
31125
31320
|
}
|
|
31126
31321
|
|
|
31127
|
-
.
|
|
31128
|
-
|
|
31129
|
-
|
|
31130
|
-
|
|
31131
|
-
|
|
31132
|
-
|
|
31322
|
+
.E_h1inmfq6 {
|
|
31323
|
+
font-family: Inter;
|
|
31324
|
+
font-style: normal;
|
|
31325
|
+
font-weight: normal;
|
|
31326
|
+
font-size: 12px;
|
|
31327
|
+
line-height: 18px;
|
|
31133
31328
|
}
|
|
31134
31329
|
|
|
31135
|
-
.
|
|
31136
|
-
font-
|
|
31330
|
+
.E_h1kfc0la {
|
|
31331
|
+
font-family: Inter;
|
|
31332
|
+
font-style: normal;
|
|
31137
31333
|
font-weight: bold;
|
|
31138
|
-
|
|
31139
|
-
|
|
31140
|
-
|
|
31141
|
-
|
|
31142
|
-
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
31143
|
-
border-radius: 4px;
|
|
31334
|
+
text-transform: uppercase;
|
|
31335
|
+
font-feature-settings: "cpsp" on;
|
|
31336
|
+
font-size: 12px;
|
|
31337
|
+
line-height: 18px;
|
|
31144
31338
|
}
|
|
31145
31339
|
|
|
31146
|
-
.
|
|
31147
|
-
|
|
31340
|
+
.E_h10xnyuu {
|
|
31341
|
+
font-family: Inter;
|
|
31342
|
+
font-style: normal;
|
|
31343
|
+
font-weight: normal;
|
|
31344
|
+
text-transform: uppercase;
|
|
31345
|
+
font-feature-settings: "cpsp" on;
|
|
31346
|
+
font-size: 12px;
|
|
31347
|
+
line-height: 18px;
|
|
31148
31348
|
}
|
|
31149
|
-
|
|
31150
|
-
|
|
31349
|
+
|
|
31350
|
+
.E_lrcmi0v {
|
|
31351
|
+
font-family: Inter;
|
|
31352
|
+
font-style: normal;
|
|
31353
|
+
font-weight: normal;
|
|
31354
|
+
font-size: 16px;
|
|
31355
|
+
line-height: 24px;
|
|
31151
31356
|
}
|
|
31152
|
-
|
|
31153
|
-
|
|
31357
|
+
|
|
31358
|
+
.E_lzt43lp {
|
|
31359
|
+
font-family: Inter;
|
|
31360
|
+
font-style: normal;
|
|
31361
|
+
font-weight: bold;
|
|
31362
|
+
font-size: 16px;
|
|
31363
|
+
line-height: 24px;
|
|
31154
31364
|
}
|
|
31155
|
-
|
|
31156
|
-
|
|
31365
|
+
|
|
31366
|
+
.E_l5yc9nt {
|
|
31367
|
+
font-family: Inter;
|
|
31368
|
+
font-style: normal;
|
|
31369
|
+
font-weight: normal;
|
|
31370
|
+
font-size: 16px;
|
|
31371
|
+
line-height: 24px;
|
|
31157
31372
|
}
|
|
31158
|
-
|
|
31159
|
-
|
|
31373
|
+
|
|
31374
|
+
.E_l1fbkbzo {
|
|
31375
|
+
font-family: Inter;
|
|
31376
|
+
font-style: normal;
|
|
31377
|
+
font-weight: bold;
|
|
31378
|
+
font-size: 16px;
|
|
31379
|
+
line-height: 24px;
|
|
31160
31380
|
}
|
|
31161
|
-
|
|
31162
|
-
|
|
31163
|
-
|
|
31381
|
+
|
|
31382
|
+
.E_lahvcax {
|
|
31383
|
+
font-family: Inter;
|
|
31384
|
+
font-style: normal;
|
|
31385
|
+
font-weight: normal;
|
|
31386
|
+
text-transform: uppercase;
|
|
31387
|
+
font-feature-settings: "cpsp" on;
|
|
31388
|
+
font-size: 16px;
|
|
31389
|
+
line-height: 24px;
|
|
31164
31390
|
}
|
|
31165
|
-
|
|
31166
|
-
|
|
31167
|
-
|
|
31168
|
-
|
|
31169
|
-
|
|
31170
|
-
|
|
31171
|
-
|
|
31172
|
-
|
|
31391
|
+
|
|
31392
|
+
.E_l11q3pxd {
|
|
31393
|
+
font-family: Inter;
|
|
31394
|
+
font-style: normal;
|
|
31395
|
+
font-weight: bold;
|
|
31396
|
+
text-transform: uppercase;
|
|
31397
|
+
font-feature-settings: "cpsp" on;
|
|
31398
|
+
font-size: 16px;
|
|
31399
|
+
line-height: 24px;
|
|
31173
31400
|
}
|
|
31174
|
-
|
|
31175
|
-
|
|
31176
|
-
font-
|
|
31177
|
-
|
|
31401
|
+
|
|
31402
|
+
.E_lfuc2qu {
|
|
31403
|
+
font-family: Inter;
|
|
31404
|
+
font-style: normal;
|
|
31405
|
+
font-weight: normal;
|
|
31406
|
+
font-size: 14px;
|
|
31407
|
+
line-height: 22px;
|
|
31178
31408
|
}
|
|
31179
|
-
|
|
31180
|
-
|
|
31409
|
+
|
|
31410
|
+
.E_l1jmp8r0 {
|
|
31411
|
+
font-family: Inter;
|
|
31412
|
+
font-style: normal;
|
|
31413
|
+
font-weight: 500;
|
|
31414
|
+
font-size: 14px;
|
|
31415
|
+
line-height: 22px;
|
|
31181
31416
|
}
|
|
31182
|
-
|
|
31183
|
-
.
|
|
31184
|
-
|
|
31417
|
+
|
|
31418
|
+
.E_lcnm221 {
|
|
31419
|
+
font-family: Inter;
|
|
31420
|
+
font-style: normal;
|
|
31421
|
+
font-weight: bold;
|
|
31422
|
+
font-size: 14px;
|
|
31423
|
+
line-height: 22px;
|
|
31185
31424
|
}
|
|
31186
|
-
|
|
31187
|
-
|
|
31425
|
+
|
|
31426
|
+
.E_lu1z2n5 {
|
|
31427
|
+
font-family: Inter;
|
|
31428
|
+
font-style: normal;
|
|
31429
|
+
font-weight: normal;
|
|
31430
|
+
font-size: 14px;
|
|
31431
|
+
line-height: 22px;
|
|
31188
31432
|
}
|
|
31189
|
-
|
|
31190
|
-
|
|
31433
|
+
|
|
31434
|
+
.E_l1r59djn {
|
|
31435
|
+
font-family: Inter;
|
|
31436
|
+
font-style: normal;
|
|
31437
|
+
font-weight: bold;
|
|
31438
|
+
font-size: 14px;
|
|
31439
|
+
line-height: 22px;
|
|
31191
31440
|
}
|
|
31192
|
-
|
|
31193
|
-
|
|
31441
|
+
|
|
31442
|
+
.E_ljm2911 {
|
|
31443
|
+
font-family: Inter;
|
|
31444
|
+
font-style: normal;
|
|
31445
|
+
font-weight: normal;
|
|
31446
|
+
text-transform: uppercase;
|
|
31447
|
+
font-feature-settings: "cpsp" on;
|
|
31448
|
+
font-size: 14px;
|
|
31449
|
+
line-height: 22px;
|
|
31194
31450
|
}
|
|
31195
|
-
|
|
31196
|
-
|
|
31197
|
-
|
|
31198
|
-
|
|
31451
|
+
|
|
31452
|
+
.E_l124mzmr {
|
|
31453
|
+
font-family: Inter;
|
|
31454
|
+
font-style: normal;
|
|
31455
|
+
font-weight: bold;
|
|
31456
|
+
text-transform: uppercase;
|
|
31457
|
+
font-feature-settings: "cpsp" on;
|
|
31458
|
+
font-size: 14px;
|
|
31459
|
+
line-height: 22px;
|
|
31199
31460
|
}
|
|
31200
|
-
|
|
31201
|
-
|
|
31202
|
-
|
|
31203
|
-
|
|
31461
|
+
|
|
31462
|
+
.E_lb3chel {
|
|
31463
|
+
font-family: Inter;
|
|
31464
|
+
font-style: normal;
|
|
31465
|
+
font-weight: normal;
|
|
31466
|
+
font-size: 13px;
|
|
31467
|
+
line-height: 20px;
|
|
31204
31468
|
}
|
|
31205
|
-
|
|
31206
|
-
.
|
|
31207
|
-
|
|
31208
|
-
|
|
31469
|
+
|
|
31470
|
+
.E_lv9jstu {
|
|
31471
|
+
font-family: Inter;
|
|
31472
|
+
font-style: normal;
|
|
31473
|
+
font-weight: 600;
|
|
31474
|
+
font-size: 13px;
|
|
31475
|
+
line-height: 20px;
|
|
31209
31476
|
}
|
|
31210
31477
|
|
|
31211
|
-
.
|
|
31212
|
-
|
|
31478
|
+
.E_lwqlh3x {
|
|
31479
|
+
font-family: Inter;
|
|
31480
|
+
font-style: normal;
|
|
31213
31481
|
font-weight: bold;
|
|
31214
|
-
|
|
31215
|
-
|
|
31216
|
-
margin-bottom: 16px;
|
|
31217
|
-
}
|
|
31218
|
-
.E_fh0ewl8:not(:first-of-type) {
|
|
31219
|
-
margin-top: 16px;
|
|
31482
|
+
font-size: 13px;
|
|
31483
|
+
line-height: 20px;
|
|
31220
31484
|
}
|
|
31221
31485
|
|
|
31222
|
-
.
|
|
31223
|
-
|
|
31224
|
-
|
|
31225
|
-
|
|
31226
|
-
|
|
31227
|
-
|
|
31228
|
-
cursor: pointer;
|
|
31229
|
-
transition: all 200ms ease-out 40ms;
|
|
31230
|
-
}
|
|
31231
|
-
.E_e1qrlvot:before, .E_e1qrlvot:after {
|
|
31232
|
-
content: "";
|
|
31233
|
-
width: 1px;
|
|
31234
|
-
height: 6px;
|
|
31235
|
-
border-radius: 1px;
|
|
31236
|
-
background: #ccd4e3;
|
|
31237
|
-
position: relative;
|
|
31238
|
-
right: 2px;
|
|
31239
|
-
transform: rotate(-45deg);
|
|
31240
|
-
}
|
|
31241
|
-
.E_e1qrlvot:after {
|
|
31242
|
-
transform: rotate(45deg);
|
|
31243
|
-
left: 1px;
|
|
31244
|
-
}
|
|
31245
|
-
|
|
31246
|
-
.E_w9ic984.ant-alert-warning {
|
|
31247
|
-
border: 0;
|
|
31248
|
-
background: rgba(255, 187, 0, 0.1);
|
|
31249
|
-
border-radius: 6px;
|
|
31250
|
-
}
|
|
31251
|
-
.E_w9ic984.ant-alert,
|
|
31252
|
-
.E_w9ic984 .ant-alert-message {
|
|
31253
|
-
color: #e07f00;
|
|
31254
|
-
}
|
|
31255
|
-
.E_w9ic984.ant-alert .dashed-border-bottom,
|
|
31256
|
-
.E_w9ic984 .ant-alert-message .dashed-border-bottom {
|
|
31257
|
-
border-bottom-color: #e07f00;
|
|
31258
|
-
}
|
|
31259
|
-
|
|
31260
|
-
.E_n1k9qi4r {
|
|
31261
|
-
display: flex;
|
|
31262
|
-
flex-direction: row;
|
|
31263
|
-
padding: 7px 12px;
|
|
31264
|
-
background: rgba(255, 187, 0, 0.1);
|
|
31265
|
-
border-radius: 6px;
|
|
31266
|
-
color: #e07f00;
|
|
31267
|
-
font-size: 12px;
|
|
31268
|
-
line-height: 18px;
|
|
31269
|
-
}
|
|
31270
|
-
.E_n1k9qi4r .icon-wrapper {
|
|
31271
|
-
margin-right: 10px;
|
|
31272
|
-
height: 18px;
|
|
31273
|
-
}
|
|
31274
|
-
|
|
31275
|
-
.E_n16fsg9x {
|
|
31276
|
-
display: flex;
|
|
31277
|
-
flex-direction: row;
|
|
31278
|
-
padding: 7px 12px;
|
|
31279
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31280
|
-
border-radius: 6px;
|
|
31281
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31282
|
-
font-size: 12px;
|
|
31283
|
-
line-height: 18px;
|
|
31284
|
-
}
|
|
31285
|
-
.E_n16fsg9x .icon-wrapper {
|
|
31286
|
-
margin-right: 10px;
|
|
31287
|
-
height: 18px;
|
|
31288
|
-
}
|
|
31289
|
-
|
|
31290
|
-
.E_i173wxzw {
|
|
31291
|
-
display: flex;
|
|
31292
|
-
flex-direction: row;
|
|
31293
|
-
padding: 7px 12px;
|
|
31294
|
-
background: rgba(0, 136, 255, 0.1);
|
|
31295
|
-
border-radius: 6px;
|
|
31296
|
-
color: #005ed1;
|
|
31297
|
-
font-size: 12px;
|
|
31298
|
-
line-height: 18px;
|
|
31299
|
-
}
|
|
31300
|
-
.E_i173wxzw .icon-wrapper {
|
|
31301
|
-
margin-right: 10px;
|
|
31302
|
-
height: 18px;
|
|
31303
|
-
}
|
|
31304
|
-
|
|
31305
|
-
.E_dld369h {
|
|
31306
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31307
|
-
margin-top: 5px;
|
|
31308
|
-
font-size: 12px;
|
|
31309
|
-
line-height: 18px;
|
|
31310
|
-
}
|
|
31311
|
-
|
|
31312
|
-
.E_s1epv22q {
|
|
31313
|
-
color: #f0483e;
|
|
31314
|
-
font-size: 12px;
|
|
31315
|
-
white-space: pre-wrap;
|
|
31316
|
-
}
|
|
31317
|
-
|
|
31318
|
-
.E_okus5hk {
|
|
31319
|
-
display: flex;
|
|
31320
|
-
align-items: center;
|
|
31321
|
-
justify-content: flex-end;
|
|
31322
|
-
}
|
|
31323
|
-
.E_okus5hk .icon-wrapper {
|
|
31324
|
-
margin-right: 16px;
|
|
31325
|
-
}
|
|
31326
|
-
|
|
31327
|
-
.E_t1auuzri {
|
|
31328
|
-
color: rgba(0, 21, 64, 0.3);
|
|
31329
|
-
}
|
|
31330
|
-
|
|
31331
|
-
.E_i74cfyt.ant-input {
|
|
31332
|
-
padding: 5px 12px;
|
|
31333
|
-
line-height: 20px;
|
|
31334
|
-
color: #2d3a56;
|
|
31335
|
-
border-radius: 6px;
|
|
31336
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31337
|
-
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
31338
|
-
}
|
|
31339
|
-
.E_i74cfyt.ant-input.ant-input-lg {
|
|
31340
|
-
padding: 8px 16px;
|
|
31341
|
-
line-height: 22px;
|
|
31342
|
-
}
|
|
31343
|
-
.E_i74cfyt.ant-input.ant-input-sm {
|
|
31344
|
-
padding: 2px 8px;
|
|
31345
|
-
line-height: 18px;
|
|
31346
|
-
}
|
|
31347
|
-
.E_i74cfyt.ant-input:not([disabled]):hover, .E_i74cfyt.ant-input:not([disabled]).__pseudo-states-hover, .E_i74cfyt.ant-input-number:not([disabled]):hover, .E_i74cfyt.ant-input-number:not([disabled]).__pseudo-states-hover {
|
|
31348
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
31349
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31350
|
-
z-index: 1;
|
|
31351
|
-
}
|
|
31352
|
-
.E_i74cfyt.ant-input:not([disabled]):active, .E_i74cfyt.ant-input:not([disabled]):focus, .E_i74cfyt.ant-input:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input:not([disabled]).__pseudo-states-focus, .E_i74cfyt.ant-input-number:not([disabled]):active, .E_i74cfyt.ant-input-number:not([disabled]):focus, .E_i74cfyt.ant-input-number:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input-number:not([disabled]).__pseudo-states-focus {
|
|
31353
|
-
border-color: #0096ff;
|
|
31354
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31355
|
-
z-index: 1;
|
|
31356
|
-
}
|
|
31357
|
-
.E_i74cfyt.ant-input.error:not([disabled]), .E_i74cfyt.ant-picker.error:not([disabled]), .E_i74cfyt.ant-input-number.error:not([disabled]) {
|
|
31358
|
-
border-color: #e75a3a;
|
|
31359
|
-
color: #e75a3a;
|
|
31360
|
-
}
|
|
31361
|
-
.E_i74cfyt.ant-input.error:not([disabled]):hover, .E_i74cfyt.ant-input.error:not([disabled]).__pseudo-states-hover, .E_i74cfyt.ant-picker.error:not([disabled]):hover, .E_i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-hover, .E_i74cfyt.ant-input-number.error:not([disabled]):hover, .E_i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-hover {
|
|
31362
|
-
border-color: #e75a3a;
|
|
31363
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31364
|
-
}
|
|
31365
|
-
.E_i74cfyt.ant-input.error:not([disabled]):active, .E_i74cfyt.ant-input.error:not([disabled]):focus, .E_i74cfyt.ant-input.error:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input.error:not([disabled]).__pseudo-states-focus, .E_i74cfyt.ant-picker.error:not([disabled]):active, .E_i74cfyt.ant-picker.error:not([disabled]):focus, .E_i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-focus, .E_i74cfyt.ant-input-number.error:not([disabled]):active, .E_i74cfyt.ant-input-number.error:not([disabled]):focus, .E_i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-active, .E_i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-focus {
|
|
31366
|
-
border-color: #e75a3a;
|
|
31367
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31368
|
-
}
|
|
31369
|
-
.E_i74cfyt.ant-input[disabled], .E_i74cfyt.ant-input.ant-input-disabled, .E_i74cfyt.ant-input-number[disabled], .E_i74cfyt.ant-input-number.ant-input-number-disabled {
|
|
31370
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31371
|
-
color: rgba(0, 21, 64, 0.3);
|
|
31372
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31373
|
-
}
|
|
31374
|
-
.E_i74cfyt.ant-input-affix-wrapper {
|
|
31375
|
-
padding: 5px 12px;
|
|
31376
|
-
border-radius: 6px;
|
|
31377
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31378
|
-
line-height: 20px;
|
|
31379
|
-
color: #2d3a56;
|
|
31380
|
-
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
31381
|
-
}
|
|
31382
|
-
.E_i74cfyt.ant-input-affix-wrapper .ant-input-suffix,
|
|
31383
|
-
.E_i74cfyt.ant-input-affix-wrapper .ant-input-prefix {
|
|
31384
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31385
|
-
}
|
|
31386
|
-
.E_i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
|
|
31387
|
-
padding: 8px 16px;
|
|
31388
|
-
line-height: 22px;
|
|
31389
|
-
}
|
|
31390
|
-
.E_i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31391
|
-
padding: 2px 8px;
|
|
31392
|
-
line-height: 18px;
|
|
31393
|
-
}
|
|
31394
|
-
.E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
31395
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
31396
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31397
|
-
}
|
|
31398
|
-
.E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .E_i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
31399
|
-
border-color: #0096ff;
|
|
31400
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31401
|
-
}
|
|
31402
|
-
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
|
|
31403
|
-
border-color: #e75a3a;
|
|
31404
|
-
}
|
|
31405
|
-
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
|
|
31406
|
-
color: #e75a3a;
|
|
31407
|
-
}
|
|
31408
|
-
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
31409
|
-
border-color: #e75a3a;
|
|
31410
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31411
|
-
}
|
|
31412
|
-
.E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .E_i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
31413
|
-
border-color: #e75a3a;
|
|
31414
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31415
|
-
}
|
|
31416
|
-
.E_i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
|
|
31417
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31418
|
-
color: rgba(0, 21, 64, 0.3);
|
|
31419
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31420
|
-
}
|
|
31421
|
-
textarea.E_i74cfyt.ant-input {
|
|
31422
|
-
transition-property: height;
|
|
31423
|
-
transition-delay: 50ms;
|
|
31424
|
-
}
|
|
31425
|
-
textarea.E_i74cfyt.ant-input.textarea-large {
|
|
31426
|
-
min-height: 40px;
|
|
31427
|
-
height: 40px;
|
|
31428
|
-
}
|
|
31429
|
-
textarea.E_i74cfyt.ant-input.textarea-large:focus {
|
|
31430
|
-
height: 80px;
|
|
31431
|
-
}
|
|
31432
|
-
textarea.E_i74cfyt.ant-input.textarea-middle {
|
|
31433
|
-
min-height: 32px;
|
|
31434
|
-
height: 32px;
|
|
31435
|
-
}
|
|
31436
|
-
textarea.E_i74cfyt.ant-input.textarea-middle:focus {
|
|
31437
|
-
height: 64px;
|
|
31438
|
-
}
|
|
31439
|
-
textarea.E_i74cfyt.ant-input.textarea-small {
|
|
31440
|
-
min-height: 24px;
|
|
31441
|
-
height: 24px;
|
|
31442
|
-
}
|
|
31443
|
-
textarea.E_i74cfyt.ant-input.textarea-small:focus {
|
|
31444
|
-
height: 40px;
|
|
31486
|
+
.E_lalum9y {
|
|
31487
|
+
font-family: Inter;
|
|
31488
|
+
font-style: normal;
|
|
31489
|
+
font-weight: normal;
|
|
31490
|
+
font-size: 13px;
|
|
31491
|
+
line-height: 20px;
|
|
31445
31492
|
}
|
|
31446
31493
|
|
|
31447
|
-
.
|
|
31448
|
-
|
|
31449
|
-
|
|
31450
|
-
|
|
31451
|
-
|
|
31452
|
-
|
|
31453
|
-
padding: 6px;
|
|
31454
|
-
height: 32px;
|
|
31455
|
-
cursor: pointer;
|
|
31456
|
-
transition: border 150ms;
|
|
31457
|
-
}
|
|
31458
|
-
.E_k1ci6977.input-tags:hover {
|
|
31459
|
-
border-color: #0080ff;
|
|
31460
|
-
box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
|
|
31461
|
-
}
|
|
31462
|
-
.E_k1ci6977.input-tags.kit-input-suffix-wrapper {
|
|
31463
|
-
padding-right: 30px;
|
|
31464
|
-
}
|
|
31465
|
-
.E_k1ci6977.input-tags .input-tags-inner {
|
|
31466
|
-
display: flex;
|
|
31467
|
-
}
|
|
31468
|
-
.E_k1ci6977.input-tags .input-tags-inner .tags-overflow-auto {
|
|
31469
|
-
display: flex;
|
|
31470
|
-
}
|
|
31471
|
-
.E_k1ci6977.input-tags .input-tag-suffix {
|
|
31472
|
-
position: absolute;
|
|
31473
|
-
right: 12px;
|
|
31474
|
-
top: 50%;
|
|
31475
|
-
transform: translateY(-50%);
|
|
31476
|
-
}
|
|
31477
|
-
.E_k1ci6977.input-tags .input-tag-suffix .anticon-close-circle {
|
|
31478
|
-
color: rgba(0, 0, 0, 0.25);
|
|
31479
|
-
font-size: 12px;
|
|
31480
|
-
cursor: pointer;
|
|
31481
|
-
}
|
|
31482
|
-
.E_k1ci6977.input-tags .input-tag-suffix .anticon-close-circle:hover {
|
|
31483
|
-
color: rgba(0, 0, 0, 0.45);
|
|
31484
|
-
}
|
|
31485
|
-
.E_k1ci6977.has-focus-indicator {
|
|
31486
|
-
position: relative;
|
|
31487
|
-
overflow: hidden;
|
|
31488
|
-
}
|
|
31489
|
-
.E_k1ci6977.has-focus-indicator .ant-input-prefix {
|
|
31490
|
-
position: absolute;
|
|
31491
|
-
top: 50%;
|
|
31492
|
-
transform: translateY(-50%);
|
|
31493
|
-
left: -16px;
|
|
31494
|
-
transition: left 150ms ease;
|
|
31495
|
-
opacity: 0;
|
|
31496
|
-
}
|
|
31497
|
-
.E_k1ci6977.has-focus-indicator.ant-input-affix-wrapper-focused .ant-input-prefix {
|
|
31498
|
-
left: 8px;
|
|
31499
|
-
opacity: 1;
|
|
31500
|
-
}
|
|
31501
|
-
.E_k1ci6977.has-focus-indicator input {
|
|
31502
|
-
transition: margin-left 150ms ease;
|
|
31503
|
-
margin-left: 0px;
|
|
31504
|
-
}
|
|
31505
|
-
.E_k1ci6977.has-focus-indicator input:focus {
|
|
31506
|
-
margin-left: 16px;
|
|
31507
|
-
}
|
|
31508
|
-
|
|
31509
|
-
input.E_l1f7td1d.ant-input {
|
|
31510
|
-
border-top-right-radius: 0;
|
|
31511
|
-
border-bottom-right-radius: 0;
|
|
31512
|
-
}
|
|
31513
|
-
|
|
31514
|
-
.E_l1f7td1d.ant-input-affix-wrapper {
|
|
31515
|
-
border-top-right-radius: 0;
|
|
31516
|
-
border-bottom-right-radius: 0;
|
|
31517
|
-
}
|
|
31518
|
-
|
|
31519
|
-
input.E_rf8rlle.ant-input {
|
|
31520
|
-
border-top-left-radius: 0;
|
|
31521
|
-
border-bottom-left-radius: 0;
|
|
31522
|
-
}
|
|
31523
|
-
|
|
31524
|
-
.E_rf8rlle.ant-input-affix-wrapper {
|
|
31525
|
-
border-top-left-radius: 0;
|
|
31526
|
-
border-bottom-left-radius: 0;
|
|
31527
|
-
}
|
|
31528
|
-
|
|
31529
|
-
.E_llt2k48.ant-select, .E_llt2k48.ant-select .ant-select-selector {
|
|
31530
|
-
border-top-right-radius: 0;
|
|
31531
|
-
border-bottom-right-radius: 0;
|
|
31494
|
+
.E_l1t6dj5o {
|
|
31495
|
+
font-family: Inter;
|
|
31496
|
+
font-style: normal;
|
|
31497
|
+
font-weight: 600;
|
|
31498
|
+
font-size: 13px;
|
|
31499
|
+
line-height: 20px;
|
|
31532
31500
|
}
|
|
31533
31501
|
|
|
31534
|
-
.
|
|
31535
|
-
|
|
31536
|
-
|
|
31502
|
+
.E_l12f6ic {
|
|
31503
|
+
font-family: Inter;
|
|
31504
|
+
font-style: normal;
|
|
31505
|
+
font-weight: bold;
|
|
31506
|
+
font-size: 13px;
|
|
31507
|
+
line-height: 20px;
|
|
31537
31508
|
}
|
|
31538
31509
|
|
|
31539
|
-
.
|
|
31540
|
-
|
|
31541
|
-
|
|
31542
|
-
|
|
31543
|
-
|
|
31544
|
-
|
|
31545
|
-
|
|
31546
|
-
|
|
31547
|
-
width: 100%;
|
|
31510
|
+
.E_l7gmukq {
|
|
31511
|
+
font-family: Inter;
|
|
31512
|
+
font-style: normal;
|
|
31513
|
+
font-weight: normal;
|
|
31514
|
+
text-transform: uppercase;
|
|
31515
|
+
font-feature-settings: "cpsp" on;
|
|
31516
|
+
font-size: 13px;
|
|
31517
|
+
line-height: 20px;
|
|
31548
31518
|
}
|
|
31549
|
-
|
|
31550
|
-
|
|
31519
|
+
|
|
31520
|
+
.E_lkwl0yp {
|
|
31521
|
+
font-family: Inter;
|
|
31522
|
+
font-style: normal;
|
|
31523
|
+
font-weight: bold;
|
|
31524
|
+
text-transform: uppercase;
|
|
31525
|
+
font-feature-settings: "cpsp" on;
|
|
31526
|
+
font-size: 13px;
|
|
31527
|
+
line-height: 20px;
|
|
31551
31528
|
}
|
|
31552
|
-
|
|
31553
|
-
|
|
31529
|
+
|
|
31530
|
+
.E_l10knv48 {
|
|
31531
|
+
font-family: Inter;
|
|
31532
|
+
font-style: normal;
|
|
31533
|
+
font-weight: normal;
|
|
31534
|
+
font-size: 12px;
|
|
31535
|
+
line-height: 18px;
|
|
31554
31536
|
}
|
|
31555
31537
|
|
|
31556
|
-
.
|
|
31557
|
-
font-
|
|
31538
|
+
.E_l6526ld {
|
|
31539
|
+
font-family: Inter;
|
|
31540
|
+
font-style: normal;
|
|
31558
31541
|
font-weight: 500;
|
|
31559
|
-
|
|
31542
|
+
font-size: 12px;
|
|
31560
31543
|
line-height: 18px;
|
|
31561
31544
|
}
|
|
31562
|
-
.E_d105ju2d + .E_d105ju2d {
|
|
31563
|
-
margin-top: 16px;
|
|
31564
|
-
}
|
|
31565
|
-
.E_d105ju2d + * {
|
|
31566
|
-
margin-top: 16px;
|
|
31567
|
-
}
|
|
31568
31545
|
|
|
31569
|
-
.
|
|
31546
|
+
.E_l1j81vli {
|
|
31547
|
+
font-family: Inter;
|
|
31548
|
+
font-style: normal;
|
|
31549
|
+
font-weight: bold;
|
|
31570
31550
|
font-size: 12px;
|
|
31571
|
-
|
|
31572
|
-
margin-top: 12px;
|
|
31551
|
+
line-height: 18px;
|
|
31573
31552
|
}
|
|
31574
31553
|
|
|
31575
|
-
.
|
|
31554
|
+
.E_l1x7n1mk {
|
|
31555
|
+
font-family: Inter;
|
|
31556
|
+
font-style: normal;
|
|
31557
|
+
font-weight: normal;
|
|
31558
|
+
font-size: 12px;
|
|
31576
31559
|
line-height: 18px;
|
|
31577
|
-
font-weight: 500;
|
|
31578
|
-
margin-top: 0;
|
|
31579
|
-
white-space: initial;
|
|
31580
31560
|
}
|
|
31581
31561
|
|
|
31582
|
-
.
|
|
31583
|
-
|
|
31584
|
-
|
|
31585
|
-
.E_r1skkc3l span {
|
|
31586
|
-
font-size: 14px;
|
|
31562
|
+
.E_l9fqufz {
|
|
31563
|
+
font-family: Inter;
|
|
31564
|
+
font-style: normal;
|
|
31587
31565
|
font-weight: 500;
|
|
31588
|
-
|
|
31589
|
-
|
|
31566
|
+
font-size: 12px;
|
|
31567
|
+
line-height: 18px;
|
|
31590
31568
|
}
|
|
31591
31569
|
|
|
31592
|
-
.
|
|
31593
|
-
|
|
31594
|
-
|
|
31595
|
-
|
|
31596
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31597
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31570
|
+
.E_l1iwnybd {
|
|
31571
|
+
font-family: Inter;
|
|
31572
|
+
font-style: normal;
|
|
31573
|
+
font-weight: bold;
|
|
31598
31574
|
font-size: 12px;
|
|
31575
|
+
line-height: 18px;
|
|
31599
31576
|
}
|
|
31600
|
-
|
|
31601
|
-
|
|
31602
|
-
|
|
31603
|
-
|
|
31604
|
-
|
|
31605
|
-
|
|
31606
|
-
|
|
31607
|
-
font-
|
|
31577
|
+
|
|
31578
|
+
.E_lprtm1e {
|
|
31579
|
+
font-family: Inter;
|
|
31580
|
+
font-style: normal;
|
|
31581
|
+
font-weight: normal;
|
|
31582
|
+
text-transform: uppercase;
|
|
31583
|
+
font-feature-settings: "cpsp" on;
|
|
31584
|
+
font-size: 12px;
|
|
31608
31585
|
line-height: 18px;
|
|
31609
|
-
margin: 4px 0;
|
|
31610
31586
|
}
|
|
31611
31587
|
|
|
31612
|
-
.
|
|
31613
|
-
|
|
31588
|
+
.E_l1lln87h {
|
|
31589
|
+
font-family: Inter;
|
|
31590
|
+
font-style: normal;
|
|
31591
|
+
font-weight: bold;
|
|
31592
|
+
text-transform: uppercase;
|
|
31593
|
+
font-feature-settings: "cpsp" on;
|
|
31594
|
+
font-size: 12px;
|
|
31595
|
+
line-height: 18px;
|
|
31614
31596
|
}
|
|
31615
|
-
|
|
31616
|
-
|
|
31617
|
-
|
|
31597
|
+
|
|
31598
|
+
.E_f2pb48l {
|
|
31599
|
+
font-family: Inter;
|
|
31600
|
+
font-style: normal;
|
|
31601
|
+
font-weight: normal;
|
|
31602
|
+
font-size: 13px;
|
|
31603
|
+
line-height: 20px;
|
|
31618
31604
|
}
|
|
31619
31605
|
|
|
31620
|
-
.
|
|
31621
|
-
|
|
31606
|
+
.E_fi9emkw {
|
|
31607
|
+
font-family: Inter;
|
|
31608
|
+
font-style: normal;
|
|
31609
|
+
font-weight: normal;
|
|
31610
|
+
font-size: 13px;
|
|
31611
|
+
line-height: 20px;
|
|
31622
31612
|
}
|
|
31623
31613
|
|
|
31624
|
-
.
|
|
31625
|
-
|
|
31614
|
+
.E_f1nrg7da {
|
|
31615
|
+
font-family: Inter;
|
|
31616
|
+
font-style: normal;
|
|
31617
|
+
font-weight: normal;
|
|
31618
|
+
font-size: 12px;
|
|
31626
31619
|
line-height: 18px;
|
|
31627
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31628
|
-
height: 34px;
|
|
31629
|
-
min-height: 34px;
|
|
31630
|
-
box-sizing: border-box;
|
|
31631
|
-
margin-top: 8px;
|
|
31632
31620
|
}
|
|
31633
31621
|
|
|
31634
|
-
.
|
|
31635
|
-
|
|
31636
|
-
|
|
31637
|
-
|
|
31638
|
-
|
|
31639
|
-
|
|
31640
|
-
}
|
|
31641
|
-
.E_o1ugr09p .selected-icon {
|
|
31642
|
-
display: none;
|
|
31643
|
-
}
|
|
31644
|
-
.E_o1ugr09p.ant-select-item-option-grouped {
|
|
31645
|
-
padding-left: 8px;
|
|
31646
|
-
}
|
|
31647
|
-
.E_o1ugr09p.ant-select-item-option-selected {
|
|
31648
|
-
background-color: white;
|
|
31649
|
-
}
|
|
31650
|
-
.E_o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
31651
|
-
color: #0080ff;
|
|
31652
|
-
}
|
|
31653
|
-
.E_o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
31654
|
-
display: block;
|
|
31655
|
-
}
|
|
31656
|
-
.E_o1ugr09p.ant-select-item-option-active {
|
|
31657
|
-
background: rgba(0, 136, 255, 0.16);
|
|
31658
|
-
}
|
|
31659
|
-
.E_o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
31660
|
-
color: #0080ff;
|
|
31622
|
+
.E_f17k1i3n {
|
|
31623
|
+
font-family: Inter;
|
|
31624
|
+
font-style: normal;
|
|
31625
|
+
font-weight: normal;
|
|
31626
|
+
font-size: 12px;
|
|
31627
|
+
line-height: 18px;
|
|
31661
31628
|
}
|
|
31662
|
-
|
|
31663
|
-
|
|
31664
|
-
|
|
31629
|
+
|
|
31630
|
+
.E_t1tvuj2e {
|
|
31631
|
+
font-family: Inter;
|
|
31632
|
+
font-style: normal;
|
|
31633
|
+
font-weight: normal;
|
|
31634
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31635
|
+
font-size: 13px;
|
|
31636
|
+
line-height: 20px;
|
|
31665
31637
|
}
|
|
31666
31638
|
|
|
31667
|
-
.
|
|
31668
|
-
|
|
31669
|
-
|
|
31670
|
-
|
|
31639
|
+
.E_t17uajlu {
|
|
31640
|
+
font-family: Inter;
|
|
31641
|
+
font-style: normal;
|
|
31642
|
+
font-weight: normal;
|
|
31643
|
+
font-feature-settings: "zero" on;
|
|
31644
|
+
font-size: 13px;
|
|
31671
31645
|
line-height: 20px;
|
|
31672
31646
|
}
|
|
31673
|
-
|
|
31674
|
-
|
|
31675
|
-
|
|
31676
|
-
|
|
31647
|
+
|
|
31648
|
+
.E_t114zbyz {
|
|
31649
|
+
font-family: Inter;
|
|
31650
|
+
font-style: normal;
|
|
31651
|
+
font-weight: normal;
|
|
31652
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31653
|
+
font-size: 12px;
|
|
31654
|
+
line-height: 18px;
|
|
31677
31655
|
}
|
|
31678
31656
|
|
|
31679
|
-
.
|
|
31680
|
-
|
|
31681
|
-
|
|
31682
|
-
|
|
31683
|
-
|
|
31657
|
+
.E_t1il0kvi {
|
|
31658
|
+
font-family: Inter;
|
|
31659
|
+
font-style: normal;
|
|
31660
|
+
font-weight: 500;
|
|
31661
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31662
|
+
font-size: 12px;
|
|
31684
31663
|
line-height: 18px;
|
|
31685
|
-
margin-top: 2px;
|
|
31686
31664
|
}
|
|
31687
31665
|
|
|
31688
|
-
.
|
|
31689
|
-
|
|
31690
|
-
|
|
31691
|
-
|
|
31666
|
+
.E_t10dv8p1 {
|
|
31667
|
+
font-family: Inter;
|
|
31668
|
+
font-style: normal;
|
|
31669
|
+
font-weight: normal;
|
|
31670
|
+
font-feature-settings: "zero" on;
|
|
31671
|
+
font-size: 12px;
|
|
31672
|
+
line-height: 18px;
|
|
31673
|
+
}
|
|
31674
|
+
|
|
31675
|
+
.E_tc2oqpq {
|
|
31676
|
+
font-family: Inter;
|
|
31677
|
+
font-style: normal;
|
|
31678
|
+
font-weight: 500;
|
|
31679
|
+
font-feature-settings: "zero" on;
|
|
31680
|
+
font-size: 12px;
|
|
31681
|
+
line-height: 18px;
|
|
31692
31682
|
}
|
|
31693
31683
|
|
|
31694
|
-
.
|
|
31695
|
-
|
|
31696
|
-
|
|
31697
|
-
|
|
31698
|
-
|
|
31684
|
+
.E_tzvddmc {
|
|
31685
|
+
font-family: Inter;
|
|
31686
|
+
font-style: normal;
|
|
31687
|
+
font-weight: bold;
|
|
31688
|
+
font-feature-settings: "zero" on;
|
|
31689
|
+
font-size: 16px;
|
|
31690
|
+
line-height: 24px;
|
|
31691
|
+
}
|
|
31692
|
+
|
|
31693
|
+
.E_u18llj45 {
|
|
31694
|
+
font-family: Inter;
|
|
31695
|
+
font-style: normal;
|
|
31696
|
+
font-weight: normal;
|
|
31697
|
+
font-size: 10px;
|
|
31698
|
+
line-height: 12px;
|
|
31699
31699
|
}
|
|
31700
31700
|
|
|
31701
31701
|
.E_c1up1pdz {
|
|
@@ -31838,6 +31838,26 @@ input.E_rf8rlle.ant-input {
|
|
|
31838
31838
|
color: #fff;
|
|
31839
31839
|
}
|
|
31840
31840
|
|
|
31841
|
+
.E_c18gxmrl {
|
|
31842
|
+
border: 1px solid #d8deeb;
|
|
31843
|
+
border-radius: 4px;
|
|
31844
|
+
}
|
|
31845
|
+
.E_c18gxmrl + .E_c18gxmrl {
|
|
31846
|
+
margin-top: 8px;
|
|
31847
|
+
}
|
|
31848
|
+
.E_c18gxmrl:hover {
|
|
31849
|
+
border-color: #0080ff;
|
|
31850
|
+
}
|
|
31851
|
+
.E_c18gxmrl:hover > header {
|
|
31852
|
+
background: rgba(0, 128, 255, 0.1);
|
|
31853
|
+
}
|
|
31854
|
+
.E_c18gxmrl.active header {
|
|
31855
|
+
border-bottom: 1px solid #d8deeb;
|
|
31856
|
+
}
|
|
31857
|
+
.E_c18gxmrl > header {
|
|
31858
|
+
padding: 8px 12px;
|
|
31859
|
+
}
|
|
31860
|
+
|
|
31841
31861
|
.E_berrcjl {
|
|
31842
31862
|
color: rgba(10, 37, 85, 0.6);
|
|
31843
31863
|
margin-bottom: 4px;
|
|
@@ -31854,48 +31874,26 @@ input.E_rf8rlle.ant-input {
|
|
|
31854
31874
|
color: #005ed1;
|
|
31855
31875
|
}
|
|
31856
31876
|
|
|
31857
|
-
.
|
|
31858
|
-
|
|
31859
|
-
}
|
|
31860
|
-
.E_gmyahx3 .link-text {
|
|
31861
|
-
color: rgba(0, 21, 64, 0.3);
|
|
31862
|
-
}
|
|
31863
|
-
.E_gmyahx3:hover .link-text {
|
|
31864
|
-
color: #0080ff;
|
|
31865
|
-
}
|
|
31866
|
-
|
|
31867
|
-
.E_s11wux3h .ant-segmented-item:not(:last-child) {
|
|
31868
|
-
margin-right: 2px;
|
|
31869
|
-
}
|
|
31870
|
-
|
|
31871
|
-
.E_s1t2an3z.ant-segmented-sm .ant-segmented-item-label {
|
|
31872
|
-
padding-left: 8px;
|
|
31873
|
-
padding-right: 8px;
|
|
31874
|
-
}
|
|
31875
|
-
.E_s1t2an3z.ant-segmented-sm .ant-segmented-item-selected {
|
|
31876
|
-
border-radius: 4px;
|
|
31877
|
-
}
|
|
31878
|
-
.E_s1t2an3z.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
31879
|
-
border-radius: 4px;
|
|
31880
|
-
}
|
|
31881
|
-
|
|
31882
|
-
.E_ma64lna .ant-segmented-item-label {
|
|
31883
|
-
padding-left: 12px;
|
|
31884
|
-
padding-right: 12px;
|
|
31885
|
-
}
|
|
31886
|
-
|
|
31887
|
-
.E_ckld275 {
|
|
31888
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
31877
|
+
.E_c1uzzomf {
|
|
31878
|
+
margin-bottom: 16px;
|
|
31889
31879
|
}
|
|
31890
|
-
.
|
|
31891
|
-
|
|
31892
|
-
color: rgba(44, 56, 82, 0.
|
|
31880
|
+
.E_c1uzzomf .card-title {
|
|
31881
|
+
font-size: 16px;
|
|
31882
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31883
|
+
font-weight: 700;
|
|
31884
|
+
line-height: 32px;
|
|
31893
31885
|
}
|
|
31894
|
-
.
|
|
31895
|
-
|
|
31886
|
+
.E_c1uzzomf .card-body {
|
|
31887
|
+
padding: 24px;
|
|
31888
|
+
border-radius: 8px;
|
|
31889
|
+
background: #fff;
|
|
31896
31890
|
}
|
|
31897
|
-
.
|
|
31898
|
-
|
|
31891
|
+
.E_c1uzzomf .empty {
|
|
31892
|
+
font-weight: 700;
|
|
31893
|
+
font-size: 14px;
|
|
31894
|
+
line-height: 22px;
|
|
31895
|
+
color: rgba(0, 21, 64, 0.3);
|
|
31896
|
+
text-align: center;
|
|
31899
31897
|
}
|
|
31900
31898
|
|
|
31901
31899
|
.E_d1bw7c5z {
|
|
@@ -31979,24 +31977,174 @@ input.E_rf8rlle.ant-input {
|
|
|
31979
31977
|
width: 102px;
|
|
31980
31978
|
}
|
|
31981
31979
|
|
|
31982
|
-
.
|
|
31983
|
-
|
|
31980
|
+
.E_c1bus5hc {
|
|
31981
|
+
--color: white;
|
|
31982
|
+
height: 14px;
|
|
31983
|
+
width: 14px;
|
|
31984
|
+
border-radius: 50%;
|
|
31985
|
+
flex-shrink: 0;
|
|
31986
|
+
display: flex;
|
|
31987
|
+
align-items: center;
|
|
31988
|
+
justify-content: center;
|
|
31989
|
+
border: 1px solid var(--color);
|
|
31990
|
+
}
|
|
31991
|
+
.E_c1bus5hc .circle-inner {
|
|
31992
|
+
position: relative;
|
|
31993
|
+
height: 10px;
|
|
31994
|
+
width: 10px;
|
|
31995
|
+
border-radius: 50%;
|
|
31996
|
+
overflow: hidden;
|
|
31997
|
+
}
|
|
31998
|
+
.E_c1bus5hc .circle-content {
|
|
31999
|
+
position: absolute;
|
|
32000
|
+
height: 100%;
|
|
32001
|
+
width: 100%;
|
|
32002
|
+
left: 0;
|
|
32003
|
+
top: 0;
|
|
32004
|
+
border-radius: 50%;
|
|
32005
|
+
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
32006
|
+
transform: rotate(180deg);
|
|
32007
|
+
}
|
|
32008
|
+
.E_c1bus5hc .circle-child {
|
|
32009
|
+
position: absolute;
|
|
32010
|
+
height: 100%;
|
|
32011
|
+
width: 100%;
|
|
32012
|
+
left: 0;
|
|
32013
|
+
top: 0;
|
|
32014
|
+
margin-left: 50%;
|
|
32015
|
+
transform-origin: left;
|
|
32016
|
+
background: white;
|
|
32017
|
+
transform: rotate(0deg);
|
|
32018
|
+
}
|
|
32019
|
+
|
|
32020
|
+
.E_tqjc4ui {
|
|
32021
|
+
margin: 0 2px;
|
|
32022
|
+
}
|
|
32023
|
+
|
|
32024
|
+
.E_n12mqh7z {
|
|
32025
|
+
display: flex;
|
|
32026
|
+
align-items: center;
|
|
32027
|
+
font-size: 12px;
|
|
32028
|
+
line-height: 18px;
|
|
32029
|
+
}
|
|
32030
|
+
.E_n12mqh7z:not(:last-child) {
|
|
32031
|
+
margin-bottom: 4px;
|
|
32032
|
+
}
|
|
32033
|
+
|
|
32034
|
+
.E_tf5bynu {
|
|
32035
|
+
margin: 0 3px;
|
|
32036
|
+
}
|
|
32037
|
+
|
|
32038
|
+
.E_tcckoz1 {
|
|
32039
|
+
max-height: 400px;
|
|
32040
|
+
overflow: "auto";
|
|
32041
|
+
}
|
|
32042
|
+
|
|
32043
|
+
.E_c18bcrac {
|
|
32044
|
+
display: inline-block;
|
|
32045
|
+
width: 100%;
|
|
32046
|
+
}
|
|
32047
|
+
.E_c18bcrac .recharts-wrapper {
|
|
32048
|
+
margin-left: 4px;
|
|
32049
|
+
}
|
|
32050
|
+
|
|
32051
|
+
.E_cro7kg2 {
|
|
32052
|
+
padding: 4px;
|
|
32053
|
+
}
|
|
32054
|
+
|
|
32055
|
+
.E_c14wcxf0 {
|
|
32056
|
+
display: flex;
|
|
32057
|
+
justify-content: space-between;
|
|
32058
|
+
align-items: center;
|
|
32059
|
+
font-size: 13px;
|
|
32060
|
+
line-height: 24px;
|
|
32061
|
+
color: #cccccc;
|
|
32062
|
+
white-space: nowrap;
|
|
32063
|
+
}
|
|
32064
|
+
.E_c14wcxf0 label {
|
|
32065
|
+
margin-right: 32px;
|
|
32066
|
+
}
|
|
32067
|
+
|
|
32068
|
+
.E_coy29mj.E_c14wcxf0 {
|
|
32069
|
+
font-weight: bold;
|
|
32070
|
+
color: white;
|
|
32071
|
+
}
|
|
32072
|
+
|
|
32073
|
+
.E_s11212zy {
|
|
32074
|
+
width: 8px;
|
|
32075
|
+
height: 8px;
|
|
32076
|
+
border-radius: 2px;
|
|
32077
|
+
display: inline-block;
|
|
32078
|
+
background: var(--s11212zy-0);
|
|
32079
|
+
border: 1px solid #fff;
|
|
32080
|
+
box-sizing: content-box;
|
|
32081
|
+
margin-right: 6px;
|
|
32082
|
+
}
|
|
32083
|
+
|
|
32084
|
+
.E_p1lyky6c > :first-child {
|
|
32085
|
+
font-weight: bold;
|
|
32086
|
+
color: white;
|
|
32087
|
+
margin-right: 4px;
|
|
32088
|
+
}
|
|
32089
|
+
|
|
32090
|
+
.E_s11wux3h .ant-segmented-item:not(:last-child) {
|
|
32091
|
+
margin-right: 2px;
|
|
32092
|
+
}
|
|
32093
|
+
|
|
32094
|
+
.E_s1t2an3z.ant-segmented-sm .ant-segmented-item-label {
|
|
32095
|
+
padding-left: 8px;
|
|
32096
|
+
padding-right: 8px;
|
|
32097
|
+
}
|
|
32098
|
+
.E_s1t2an3z.ant-segmented-sm .ant-segmented-item-selected {
|
|
31984
32099
|
border-radius: 4px;
|
|
31985
32100
|
}
|
|
31986
|
-
.
|
|
31987
|
-
|
|
32101
|
+
.E_s1t2an3z.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
32102
|
+
border-radius: 4px;
|
|
31988
32103
|
}
|
|
31989
|
-
|
|
31990
|
-
|
|
32104
|
+
|
|
32105
|
+
.E_ma64lna .ant-segmented-item-label {
|
|
32106
|
+
padding-left: 12px;
|
|
32107
|
+
padding-right: 12px;
|
|
32108
|
+
}
|
|
32109
|
+
|
|
32110
|
+
.E_ckld275 {
|
|
32111
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32112
|
+
}
|
|
32113
|
+
.E_ckld275.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
32114
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
32115
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32116
|
+
}
|
|
32117
|
+
.E_ckld275.ant-segmented .ant-segmented-thumb ~ .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
32118
|
+
background-color: transparent;
|
|
32119
|
+
}
|
|
32120
|
+
.E_ckld275.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled)::after {
|
|
32121
|
+
background-color: transparent;
|
|
32122
|
+
}
|
|
32123
|
+
|
|
32124
|
+
.E_ou7iq30 {
|
|
32125
|
+
overflow: hidden;
|
|
32126
|
+
text-overflow: ellipsis;
|
|
32127
|
+
}
|
|
32128
|
+
|
|
32129
|
+
.E_s1tui002 {
|
|
32130
|
+
white-space: nowrap;
|
|
32131
|
+
}
|
|
32132
|
+
|
|
32133
|
+
.E_mxrc2zg {
|
|
32134
|
+
display: -webkit-box;
|
|
32135
|
+
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
32136
|
+
-webkit-box-orient: vertical;
|
|
32137
|
+
word-break: break-all;
|
|
31991
32138
|
}
|
|
31992
|
-
|
|
31993
|
-
|
|
32139
|
+
|
|
32140
|
+
.E_gmyahx3 {
|
|
32141
|
+
cursor: pointer;
|
|
31994
32142
|
}
|
|
31995
|
-
.
|
|
31996
|
-
|
|
32143
|
+
.E_gmyahx3 .link-text {
|
|
32144
|
+
color: rgba(0, 21, 64, 0.3);
|
|
31997
32145
|
}
|
|
31998
|
-
.
|
|
31999
|
-
|
|
32146
|
+
.E_gmyahx3:hover .link-text {
|
|
32147
|
+
color: #0080ff;
|
|
32000
32148
|
}
|
|
32001
32149
|
|
|
32002
32150
|
.E_clm1wy1 {
|
|
@@ -32092,152 +32240,12 @@ input.E_rf8rlle.ant-input {
|
|
|
32092
32240
|
border-radius: 2px;
|
|
32093
32241
|
}
|
|
32094
32242
|
|
|
32095
|
-
.
|
|
32096
|
-
display: inline-block;
|
|
32097
|
-
width: 100%;
|
|
32098
|
-
}
|
|
32099
|
-
.E_c18bcrac .recharts-wrapper {
|
|
32100
|
-
margin-left: 4px;
|
|
32101
|
-
}
|
|
32102
|
-
|
|
32103
|
-
.E_cro7kg2 {
|
|
32104
|
-
padding: 4px;
|
|
32105
|
-
}
|
|
32106
|
-
|
|
32107
|
-
.E_c14wcxf0 {
|
|
32108
|
-
display: flex;
|
|
32109
|
-
justify-content: space-between;
|
|
32110
|
-
align-items: center;
|
|
32111
|
-
font-size: 13px;
|
|
32112
|
-
line-height: 24px;
|
|
32113
|
-
color: #cccccc;
|
|
32114
|
-
white-space: nowrap;
|
|
32115
|
-
}
|
|
32116
|
-
.E_c14wcxf0 label {
|
|
32117
|
-
margin-right: 32px;
|
|
32118
|
-
}
|
|
32119
|
-
|
|
32120
|
-
.E_coy29mj.E_c14wcxf0 {
|
|
32121
|
-
font-weight: bold;
|
|
32122
|
-
color: white;
|
|
32123
|
-
}
|
|
32124
|
-
|
|
32125
|
-
.E_s11212zy {
|
|
32126
|
-
width: 8px;
|
|
32127
|
-
height: 8px;
|
|
32128
|
-
border-radius: 2px;
|
|
32129
|
-
display: inline-block;
|
|
32130
|
-
background: var(--s11212zy-0);
|
|
32131
|
-
border: 1px solid #fff;
|
|
32132
|
-
box-sizing: content-box;
|
|
32133
|
-
margin-right: 6px;
|
|
32134
|
-
}
|
|
32135
|
-
|
|
32136
|
-
.E_p1lyky6c > :first-child {
|
|
32137
|
-
font-weight: bold;
|
|
32138
|
-
color: white;
|
|
32139
|
-
margin-right: 4px;
|
|
32140
|
-
}
|
|
32141
|
-
|
|
32142
|
-
.E_c1bus5hc {
|
|
32143
|
-
--color: white;
|
|
32144
|
-
height: 14px;
|
|
32145
|
-
width: 14px;
|
|
32146
|
-
border-radius: 50%;
|
|
32147
|
-
flex-shrink: 0;
|
|
32148
|
-
display: flex;
|
|
32149
|
-
align-items: center;
|
|
32150
|
-
justify-content: center;
|
|
32151
|
-
border: 1px solid var(--color);
|
|
32152
|
-
}
|
|
32153
|
-
.E_c1bus5hc .circle-inner {
|
|
32154
|
-
position: relative;
|
|
32155
|
-
height: 10px;
|
|
32156
|
-
width: 10px;
|
|
32157
|
-
border-radius: 50%;
|
|
32158
|
-
overflow: hidden;
|
|
32159
|
-
}
|
|
32160
|
-
.E_c1bus5hc .circle-content {
|
|
32161
|
-
position: absolute;
|
|
32162
|
-
height: 100%;
|
|
32163
|
-
width: 100%;
|
|
32164
|
-
left: 0;
|
|
32165
|
-
top: 0;
|
|
32166
|
-
border-radius: 50%;
|
|
32167
|
-
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
32168
|
-
transform: rotate(180deg);
|
|
32169
|
-
}
|
|
32170
|
-
.E_c1bus5hc .circle-child {
|
|
32171
|
-
position: absolute;
|
|
32172
|
-
height: 100%;
|
|
32173
|
-
width: 100%;
|
|
32174
|
-
left: 0;
|
|
32175
|
-
top: 0;
|
|
32176
|
-
margin-left: 50%;
|
|
32177
|
-
transform-origin: left;
|
|
32178
|
-
background: white;
|
|
32179
|
-
transform: rotate(0deg);
|
|
32180
|
-
}
|
|
32181
|
-
|
|
32182
|
-
.E_n12mqh7z {
|
|
32243
|
+
.E_s1iv0tp1 .enabled-switch {
|
|
32183
32244
|
display: flex;
|
|
32184
32245
|
align-items: center;
|
|
32185
|
-
font-size: 12px;
|
|
32186
|
-
line-height: 18px;
|
|
32187
|
-
}
|
|
32188
|
-
.E_n12mqh7z:not(:last-child) {
|
|
32189
|
-
margin-bottom: 4px;
|
|
32190
|
-
}
|
|
32191
|
-
|
|
32192
|
-
.E_tf5bynu {
|
|
32193
|
-
margin: 0 3px;
|
|
32194
|
-
}
|
|
32195
|
-
|
|
32196
|
-
.E_tcckoz1 {
|
|
32197
|
-
max-height: 400px;
|
|
32198
|
-
overflow: "auto";
|
|
32199
|
-
}
|
|
32200
|
-
|
|
32201
|
-
.E_tqjc4ui {
|
|
32202
|
-
margin: 0 2px;
|
|
32203
|
-
}
|
|
32204
|
-
|
|
32205
|
-
.E_c1uzzomf {
|
|
32206
|
-
margin-bottom: 16px;
|
|
32207
|
-
}
|
|
32208
|
-
.E_c1uzzomf .card-title {
|
|
32209
|
-
font-size: 16px;
|
|
32210
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32211
|
-
font-weight: 700;
|
|
32212
|
-
line-height: 32px;
|
|
32213
|
-
}
|
|
32214
|
-
.E_c1uzzomf .card-body {
|
|
32215
|
-
padding: 24px;
|
|
32216
|
-
border-radius: 8px;
|
|
32217
|
-
background: #fff;
|
|
32218
|
-
}
|
|
32219
|
-
.E_c1uzzomf .empty {
|
|
32220
|
-
font-weight: 700;
|
|
32221
|
-
font-size: 14px;
|
|
32222
|
-
line-height: 22px;
|
|
32223
|
-
color: rgba(0, 21, 64, 0.3);
|
|
32224
|
-
text-align: center;
|
|
32225
|
-
}
|
|
32226
|
-
|
|
32227
|
-
.E_ou7iq30 {
|
|
32228
|
-
overflow: hidden;
|
|
32229
|
-
text-overflow: ellipsis;
|
|
32230
|
-
}
|
|
32231
|
-
|
|
32232
|
-
.E_s1tui002 {
|
|
32233
|
-
white-space: nowrap;
|
|
32234
32246
|
}
|
|
32235
|
-
|
|
32236
|
-
|
|
32237
|
-
display: -webkit-box;
|
|
32238
|
-
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
32239
|
-
-webkit-box-orient: vertical;
|
|
32240
|
-
word-break: break-all;
|
|
32247
|
+
.E_s1iv0tp1 .enabled-text {
|
|
32248
|
+
margin-right: 8px;
|
|
32241
32249
|
}
|
|
32242
32250
|
|
|
32243
32251
|
.E_m74vjol {
|
|
@@ -32253,13 +32261,6 @@ input.E_rf8rlle.ant-input {
|
|
|
32253
32261
|
width: 100%;
|
|
32254
32262
|
}
|
|
32255
32263
|
|
|
32256
|
-
.E_c1yyuluq {
|
|
32257
|
-
border-radius: 8px;
|
|
32258
|
-
}
|
|
32259
|
-
.E_c1yyuluq .ant-card-body {
|
|
32260
|
-
padding: 20px 24px 24px 24px;
|
|
32261
|
-
}
|
|
32262
|
-
|
|
32263
32264
|
.E_wg1tsps {
|
|
32264
32265
|
display: flex;
|
|
32265
32266
|
align-items: center;
|
|
@@ -32283,6 +32284,13 @@ input.E_rf8rlle.ant-input {
|
|
|
32283
32284
|
color: #00122e !important;
|
|
32284
32285
|
}
|
|
32285
32286
|
|
|
32287
|
+
.E_tje3huy {
|
|
32288
|
+
width: 100%;
|
|
32289
|
+
overflow: inherit;
|
|
32290
|
+
white-space: inherit;
|
|
32291
|
+
text-overflow: ellipsis;
|
|
32292
|
+
}
|
|
32293
|
+
|
|
32286
32294
|
.E_t1sqg15u {
|
|
32287
32295
|
background: white;
|
|
32288
32296
|
}
|
|
@@ -32373,19 +32381,15 @@ input.E_rf8rlle.ant-input {
|
|
|
32373
32381
|
padding-right: 12px;
|
|
32374
32382
|
}
|
|
32375
32383
|
|
|
32376
|
-
.
|
|
32377
|
-
|
|
32378
|
-
|
|
32379
|
-
|
|
32380
|
-
|
|
32384
|
+
.E_c1yyuluq {
|
|
32385
|
+
border-radius: 8px;
|
|
32386
|
+
}
|
|
32387
|
+
.E_c1yyuluq .ant-card-body {
|
|
32388
|
+
padding: 20px 24px 24px 24px;
|
|
32381
32389
|
}
|
|
32382
32390
|
|
|
32383
|
-
.
|
|
32391
|
+
.E_itxley7.ant-input-group.ant-input-group-compact {
|
|
32384
32392
|
display: flex;
|
|
32385
|
-
align-items: center;
|
|
32386
|
-
}
|
|
32387
|
-
.E_s1iv0tp1 .enabled-text {
|
|
32388
|
-
margin-right: 8px;
|
|
32389
32393
|
}
|
|
32390
32394
|
|
|
32391
32395
|
.E_ccrbeuz .ant-collapse-item {
|
|
@@ -32401,21 +32405,87 @@ input.E_rf8rlle.ant-input {
|
|
|
32401
32405
|
.E_ccrbeuz .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
|
|
32402
32406
|
right: 0px;
|
|
32403
32407
|
}
|
|
32404
|
-
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
32405
|
-
padding: 0px;
|
|
32408
|
+
.E_ccrbeuz .ant-collapse-item .ant-collapse-content .ant-collapse-content-box {
|
|
32409
|
+
padding: 0px;
|
|
32410
|
+
}
|
|
32411
|
+
|
|
32412
|
+
.E_c1fljvag .ant-collapse-item .ant-collapse-header {
|
|
32413
|
+
padding-right: 0px;
|
|
32414
|
+
cursor: default;
|
|
32415
|
+
}
|
|
32416
|
+
|
|
32417
|
+
.E_sddwhm6 {
|
|
32418
|
+
margin: 0;
|
|
32419
|
+
border-radius: 20px;
|
|
32420
|
+
padding: 2px 10px;
|
|
32421
|
+
height: 22px;
|
|
32422
|
+
}
|
|
32423
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
32424
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
32425
|
+
}
|
|
32426
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
32427
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
32428
|
+
}
|
|
32429
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
32430
|
+
color: #00122e;
|
|
32431
|
+
}
|
|
32432
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
32433
|
+
margin-right: 6px;
|
|
32434
|
+
}
|
|
32435
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
32436
|
+
margin-left: 4px;
|
|
32437
|
+
}
|
|
32438
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
32439
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
32440
|
+
}
|
|
32441
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
32442
|
+
background-color: #0080ff;
|
|
32443
|
+
}
|
|
32444
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
32445
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
32446
|
+
}
|
|
32447
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
32448
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
32449
|
+
}
|
|
32450
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
32451
|
+
background-color: #f0483e;
|
|
32452
|
+
}
|
|
32453
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
32454
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
32455
|
+
}
|
|
32456
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
32457
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
32458
|
+
}
|
|
32459
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
32460
|
+
background-color: #fea008;
|
|
32461
|
+
}
|
|
32462
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
32463
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
32464
|
+
}
|
|
32465
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
32466
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
32467
|
+
}
|
|
32468
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
32469
|
+
background-color: #00ba5d;
|
|
32470
|
+
}
|
|
32471
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.__pseudo-states-hover {
|
|
32472
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
32473
|
+
}
|
|
32474
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
32475
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32406
32476
|
}
|
|
32407
|
-
|
|
32408
|
-
|
|
32409
|
-
padding-right: 0px;
|
|
32410
|
-
cursor: default;
|
|
32477
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
32478
|
+
background-color: #6b7d99;
|
|
32411
32479
|
}
|
|
32412
|
-
|
|
32413
|
-
|
|
32414
|
-
display: flex;
|
|
32480
|
+
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.__pseudo-states-hover {
|
|
32481
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
32415
32482
|
}
|
|
32416
32483
|
|
|
32417
|
-
.
|
|
32418
|
-
|
|
32484
|
+
.E_satwmqm {
|
|
32485
|
+
width: 8px;
|
|
32486
|
+
height: 8px;
|
|
32487
|
+
border-radius: 50%;
|
|
32488
|
+
display: inline-block;
|
|
32419
32489
|
}
|
|
32420
32490
|
|
|
32421
32491
|
.E_s177mls5.ant-select, .E_s177mls5.ant-select .ant-select-selector {
|
|
@@ -32475,16 +32545,10 @@ input.E_rf8rlle.ant-input {
|
|
|
32475
32545
|
transform: rotate(180deg);
|
|
32476
32546
|
}
|
|
32477
32547
|
|
|
32478
|
-
.
|
|
32479
|
-
height: 24px;
|
|
32480
|
-
width: 56px !important;
|
|
32548
|
+
.E_tju3gfj .date {
|
|
32481
32549
|
margin-right: 4px;
|
|
32482
32550
|
}
|
|
32483
32551
|
|
|
32484
|
-
.E_c1wk4q29 {
|
|
32485
|
-
color: rgba(44, 56, 82, 0.6);
|
|
32486
|
-
}
|
|
32487
|
-
|
|
32488
32552
|
.E_s1sck0th {
|
|
32489
32553
|
padding: 0 8px;
|
|
32490
32554
|
border-radius: 4px;
|
|
@@ -32567,78 +32631,14 @@ input.E_rf8rlle.ant-input {
|
|
|
32567
32631
|
background-color: #7E41FF;
|
|
32568
32632
|
}
|
|
32569
32633
|
|
|
32570
|
-
.
|
|
32571
|
-
|
|
32572
|
-
|
|
32573
|
-
|
|
32574
|
-
height: 22px;
|
|
32575
|
-
}
|
|
32576
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
32577
|
-
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
32578
|
-
}
|
|
32579
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
32580
|
-
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
32581
|
-
}
|
|
32582
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
32583
|
-
color: #00122e;
|
|
32584
|
-
}
|
|
32585
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
32586
|
-
margin-right: 6px;
|
|
32587
|
-
}
|
|
32588
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
32589
|
-
margin-left: 4px;
|
|
32590
|
-
}
|
|
32591
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
32592
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
32593
|
-
}
|
|
32594
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
32595
|
-
background-color: #0080ff;
|
|
32596
|
-
}
|
|
32597
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
32598
|
-
background-color: rgba(0, 136, 255, 0.16);
|
|
32599
|
-
}
|
|
32600
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
32601
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
32602
|
-
}
|
|
32603
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
32604
|
-
background-color: #f0483e;
|
|
32605
|
-
}
|
|
32606
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
32607
|
-
background-color: rgba(255, 74, 74, 0.16);
|
|
32608
|
-
}
|
|
32609
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
32610
|
-
background-color: rgba(254, 160, 8, 0.1);
|
|
32611
|
-
}
|
|
32612
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
32613
|
-
background-color: #fea008;
|
|
32614
|
-
}
|
|
32615
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
32616
|
-
background-color: rgba(255, 187, 0, 0.16);
|
|
32617
|
-
}
|
|
32618
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
32619
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
32620
|
-
}
|
|
32621
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
32622
|
-
background-color: #00ba5d;
|
|
32623
|
-
}
|
|
32624
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.__pseudo-states-hover {
|
|
32625
|
-
background-color: rgba(30, 201, 127, 0.16);
|
|
32626
|
-
}
|
|
32627
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
32628
|
-
background-color: rgba(225, 230, 241, 0.6);
|
|
32629
|
-
}
|
|
32630
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
32631
|
-
background-color: #6b7d99;
|
|
32632
|
-
}
|
|
32633
|
-
.E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.tag-hover:hover, .E_sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.__pseudo-states-hover {
|
|
32634
|
-
background-color: rgba(211, 218, 235, 0.6);
|
|
32634
|
+
.E_ivqqkzv {
|
|
32635
|
+
height: 24px;
|
|
32636
|
+
width: 56px !important;
|
|
32637
|
+
margin-right: 4px;
|
|
32635
32638
|
}
|
|
32636
32639
|
|
|
32637
|
-
.
|
|
32638
|
-
|
|
32639
|
-
height: 8px;
|
|
32640
|
-
border-radius: 50%;
|
|
32641
|
-
display: inline-block;
|
|
32640
|
+
.E_c1wk4q29 {
|
|
32641
|
+
color: rgba(44, 56, 82, 0.6);
|
|
32642
32642
|
}
|
|
32643
32643
|
|
|
32644
32644
|
.E_h1ol2wl7 {
|
|
@@ -33947,35 +33947,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
33947
33947
|
color: rgba(44, 56, 82, 0.7490196078);
|
|
33948
33948
|
}
|
|
33949
33949
|
|
|
33950
|
-
.E_suhck3k {
|
|
33951
|
-
height: 24px;
|
|
33952
|
-
width: 24px;
|
|
33953
|
-
border-radius: 6px;
|
|
33954
|
-
padding: 4px;
|
|
33955
|
-
}
|
|
33956
|
-
.E_suhck3k:hover {
|
|
33957
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
33958
|
-
}
|
|
33959
|
-
.E_suhck3k:hover svg path {
|
|
33960
|
-
fill: blue;
|
|
33961
|
-
}
|
|
33962
|
-
|
|
33963
|
-
.E_ryby9ds {
|
|
33964
|
-
display: flex;
|
|
33965
|
-
align-items: center;
|
|
33966
|
-
}
|
|
33967
|
-
.E_ryby9ds .order {
|
|
33968
|
-
height: 24px;
|
|
33969
|
-
width: 24px;
|
|
33970
|
-
border-radius: 20px;
|
|
33971
|
-
color: #0080ff;
|
|
33972
|
-
background: rgba(0, 136, 255, 0.1);
|
|
33973
|
-
display: flex;
|
|
33974
|
-
align-items: center;
|
|
33975
|
-
justify-content: center;
|
|
33976
|
-
margin-right: 6px;
|
|
33977
|
-
}
|
|
33978
|
-
|
|
33979
33950
|
.E_c1kghdax {
|
|
33980
33951
|
color: #2d3a56;
|
|
33981
33952
|
padding: 7px 12px;
|
|
@@ -34016,6 +33987,39 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34016
33987
|
margin-right: 2px;
|
|
34017
33988
|
}
|
|
34018
33989
|
|
|
33990
|
+
.E_c1yd35n {
|
|
33991
|
+
padding: 0 12px 14px 12px;
|
|
33992
|
+
}
|
|
33993
|
+
|
|
33994
|
+
.E_suhck3k {
|
|
33995
|
+
height: 24px;
|
|
33996
|
+
width: 24px;
|
|
33997
|
+
border-radius: 6px;
|
|
33998
|
+
padding: 4px;
|
|
33999
|
+
}
|
|
34000
|
+
.E_suhck3k:hover {
|
|
34001
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
34002
|
+
}
|
|
34003
|
+
.E_suhck3k:hover svg path {
|
|
34004
|
+
fill: blue;
|
|
34005
|
+
}
|
|
34006
|
+
|
|
34007
|
+
.E_ryby9ds {
|
|
34008
|
+
display: flex;
|
|
34009
|
+
align-items: center;
|
|
34010
|
+
}
|
|
34011
|
+
.E_ryby9ds .order {
|
|
34012
|
+
height: 24px;
|
|
34013
|
+
width: 24px;
|
|
34014
|
+
border-radius: 20px;
|
|
34015
|
+
color: #0080ff;
|
|
34016
|
+
background: rgba(0, 136, 255, 0.1);
|
|
34017
|
+
display: flex;
|
|
34018
|
+
align-items: center;
|
|
34019
|
+
justify-content: center;
|
|
34020
|
+
margin-right: 6px;
|
|
34021
|
+
}
|
|
34022
|
+
|
|
34019
34023
|
.E_b14q2gmw {
|
|
34020
34024
|
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);
|
|
34021
34025
|
}
|
|
@@ -34033,8 +34037,43 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34033
34037
|
transform: translateY(-4px);
|
|
34034
34038
|
}
|
|
34035
34039
|
|
|
34036
|
-
.
|
|
34037
|
-
|
|
34040
|
+
.E_t13ef470 {
|
|
34041
|
+
height: 100%;
|
|
34042
|
+
}
|
|
34043
|
+
.E_t13ef470 .table-loading-item {
|
|
34044
|
+
padding: 12px 4px;
|
|
34045
|
+
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
34046
|
+
display: flex;
|
|
34047
|
+
}
|
|
34048
|
+
.E_t13ef470 .table-loading-item > * {
|
|
34049
|
+
height: 16px;
|
|
34050
|
+
margin: 4px;
|
|
34051
|
+
background: rgba(204, 212, 227, 0.18);
|
|
34052
|
+
border-radius: 2px;
|
|
34053
|
+
}
|
|
34054
|
+
.E_t13ef470 .table-loading-item .checkbox-loading {
|
|
34055
|
+
width: 16px;
|
|
34056
|
+
}
|
|
34057
|
+
.E_t13ef470 .table-loading-item .td-loading {
|
|
34058
|
+
flex: 1;
|
|
34059
|
+
}
|
|
34060
|
+
.E_t13ef470 :nth-child(1) {
|
|
34061
|
+
padding: 8px 4px;
|
|
34062
|
+
}
|
|
34063
|
+
.E_t13ef470 :nth-child(1) > * {
|
|
34064
|
+
background: rgba(107, 125, 153, 0.18);
|
|
34065
|
+
}
|
|
34066
|
+
.E_t13ef470 :nth-child(1) > * {
|
|
34067
|
+
background: rgba(163, 180, 204, 0.18);
|
|
34068
|
+
}
|
|
34069
|
+
|
|
34070
|
+
.E_w7ob4th.outside-tag {
|
|
34071
|
+
padding-left: 0;
|
|
34072
|
+
}
|
|
34073
|
+
.E_w7ob4th.outside-tag .inside-tag {
|
|
34074
|
+
border-radius: 4px 0 0 4px;
|
|
34075
|
+
padding-right: 4px;
|
|
34076
|
+
margin-right: 4px;
|
|
34038
34077
|
}
|
|
34039
34078
|
|
|
34040
34079
|
.E_ckui4s7 {
|
|
@@ -34101,45 +34140,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34101
34140
|
margin-left: 24px;
|
|
34102
34141
|
}
|
|
34103
34142
|
|
|
34104
|
-
.E_w7ob4th.outside-tag {
|
|
34105
|
-
padding-left: 0;
|
|
34106
|
-
}
|
|
34107
|
-
.E_w7ob4th.outside-tag .inside-tag {
|
|
34108
|
-
border-radius: 4px 0 0 4px;
|
|
34109
|
-
padding-right: 4px;
|
|
34110
|
-
margin-right: 4px;
|
|
34111
|
-
}
|
|
34112
|
-
|
|
34113
|
-
.E_t13ef470 {
|
|
34114
|
-
height: 100%;
|
|
34115
|
-
}
|
|
34116
|
-
.E_t13ef470 .table-loading-item {
|
|
34117
|
-
padding: 12px 4px;
|
|
34118
|
-
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
34119
|
-
display: flex;
|
|
34120
|
-
}
|
|
34121
|
-
.E_t13ef470 .table-loading-item > * {
|
|
34122
|
-
height: 16px;
|
|
34123
|
-
margin: 4px;
|
|
34124
|
-
background: rgba(204, 212, 227, 0.18);
|
|
34125
|
-
border-radius: 2px;
|
|
34126
|
-
}
|
|
34127
|
-
.E_t13ef470 .table-loading-item .checkbox-loading {
|
|
34128
|
-
width: 16px;
|
|
34129
|
-
}
|
|
34130
|
-
.E_t13ef470 .table-loading-item .td-loading {
|
|
34131
|
-
flex: 1;
|
|
34132
|
-
}
|
|
34133
|
-
.E_t13ef470 :nth-child(1) {
|
|
34134
|
-
padding: 8px 4px;
|
|
34135
|
-
}
|
|
34136
|
-
.E_t13ef470 :nth-child(1) > * {
|
|
34137
|
-
background: rgba(107, 125, 153, 0.18);
|
|
34138
|
-
}
|
|
34139
|
-
.E_t13ef470 :nth-child(1) > * {
|
|
34140
|
-
background: rgba(163, 180, 204, 0.18);
|
|
34141
|
-
}
|
|
34142
|
-
|
|
34143
34143
|
.E_t160l1cm {
|
|
34144
34144
|
display: flex;
|
|
34145
34145
|
flex-direction: column;
|
|
@@ -34343,11 +34343,6 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34343
34343
|
background: transparent;
|
|
34344
34344
|
}
|
|
34345
34345
|
|
|
34346
|
-
.E_i1g85yz3 {
|
|
34347
|
-
margin-right: 4px;
|
|
34348
|
-
height: 16px;
|
|
34349
|
-
}
|
|
34350
|
-
|
|
34351
34346
|
.E_slr2ynn {
|
|
34352
34347
|
padding: 0 8px;
|
|
34353
34348
|
height: 18px;
|
|
@@ -34377,6 +34372,11 @@ button.E_l48ei06.ui-kit-link-secondary.ui-kit-link-disabled {
|
|
|
34377
34372
|
white-space: normal;
|
|
34378
34373
|
}
|
|
34379
34374
|
|
|
34375
|
+
.E_i1g85yz3 {
|
|
34376
|
+
margin-right: 4px;
|
|
34377
|
+
height: 16px;
|
|
34378
|
+
}
|
|
34379
|
+
|
|
34380
34380
|
.E_t1dtlqs1 {
|
|
34381
34381
|
margin-bottom: 4px;
|
|
34382
34382
|
color: rgba(44, 56, 82, 0.6);
|