@cloudtower/eagle 0.27.53 → 0.27.55
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 +56 -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 +120 -0
- package/dist/cjs/spec/type.js +9 -0
- package/dist/{umd → 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/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 +3101 -2209
- 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 +54 -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 +34 -10233
- 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/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 +2011 -2011
- package/dist/token.css +209 -415
- package/package.json +8 -6
- package/dist/src/styles/token/token.d.ts +0 -1
- package/dist/umd/index.js +0 -10322
package/dist/style.css
CHANGED
|
@@ -29780,19 +29780,35 @@ html body {
|
|
|
29780
29780
|
font-size: 14px;
|
|
29781
29781
|
}
|
|
29782
29782
|
|
|
29783
|
-
.
|
|
29784
|
-
|
|
29785
|
-
height:
|
|
29786
|
-
|
|
29783
|
+
.i1inqkme {
|
|
29784
|
+
height: 18px;
|
|
29785
|
+
line-height: 18px;
|
|
29786
|
+
padding: 0 4px;
|
|
29787
|
+
border-radius: 4px;
|
|
29788
|
+
background: rgba(235, 239, 245, 0.6);
|
|
29789
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
29787
29790
|
display: flex;
|
|
29788
|
-
flex-direction: column;
|
|
29789
|
-
justify-content: center;
|
|
29790
29791
|
align-items: center;
|
|
29792
|
+
white-space: nowrap;
|
|
29793
|
+
margin-right: 4px;
|
|
29791
29794
|
}
|
|
29792
|
-
|
|
29793
|
-
|
|
29794
|
-
|
|
29795
|
-
|
|
29795
|
+
|
|
29796
|
+
.iouxfgt {
|
|
29797
|
+
display: inline-flex;
|
|
29798
|
+
align-items: center;
|
|
29799
|
+
}
|
|
29800
|
+
.iouxfgt .icon-inner {
|
|
29801
|
+
display: inline-flex;
|
|
29802
|
+
align-items: center;
|
|
29803
|
+
justify-content: center;
|
|
29804
|
+
}
|
|
29805
|
+
.iouxfgt .icon-inner + span,
|
|
29806
|
+
.iouxfgt span + .icon-inner.suffix {
|
|
29807
|
+
margin-left: 4px;
|
|
29808
|
+
}
|
|
29809
|
+
.iouxfgt.is-rotate img,
|
|
29810
|
+
.iouxfgt.is-rotate svg {
|
|
29811
|
+
animation: rotate 680ms linear infinite;
|
|
29796
29812
|
}
|
|
29797
29813
|
|
|
29798
29814
|
.b1nip9bk {
|
|
@@ -29824,17 +29840,19 @@ html body {
|
|
|
29824
29840
|
border-radius: unset;
|
|
29825
29841
|
}
|
|
29826
29842
|
|
|
29827
|
-
.
|
|
29828
|
-
|
|
29829
|
-
|
|
29830
|
-
|
|
29831
|
-
border-radius: 4px;
|
|
29832
|
-
background: rgba(235, 239, 245, 0.6);
|
|
29833
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
29843
|
+
.fzh9mnb {
|
|
29844
|
+
width: 100%;
|
|
29845
|
+
height: 100%;
|
|
29846
|
+
min-height: 124px;
|
|
29834
29847
|
display: flex;
|
|
29848
|
+
flex-direction: column;
|
|
29849
|
+
justify-content: center;
|
|
29835
29850
|
align-items: center;
|
|
29836
|
-
|
|
29837
|
-
|
|
29851
|
+
}
|
|
29852
|
+
.fzh9mnb .error-text {
|
|
29853
|
+
color: rgba(10, 37, 85, 0.6);
|
|
29854
|
+
margin-bottom: 16px;
|
|
29855
|
+
font-size: 18px;
|
|
29838
29856
|
}
|
|
29839
29857
|
|
|
29840
29858
|
.b1wx3t3t.ant-btn-icon-only {
|
|
@@ -30087,88 +30105,17 @@ html body {
|
|
|
30087
30105
|
padding: 0;
|
|
30088
30106
|
}
|
|
30089
30107
|
|
|
30090
|
-
.
|
|
30091
|
-
|
|
30092
|
-
|
|
30093
|
-
|
|
30094
|
-
|
|
30095
|
-
display: inline-flex;
|
|
30096
|
-
align-items: center;
|
|
30097
|
-
justify-content: center;
|
|
30098
|
-
}
|
|
30099
|
-
.iouxfgt .icon-inner + span,
|
|
30100
|
-
.iouxfgt span + .icon-inner.suffix {
|
|
30101
|
-
margin-left: 4px;
|
|
30102
|
-
}
|
|
30103
|
-
.iouxfgt.is-rotate img,
|
|
30104
|
-
.iouxfgt.is-rotate svg {
|
|
30105
|
-
animation: rotate 680ms linear infinite;
|
|
30106
|
-
}
|
|
30107
|
-
|
|
30108
|
-
.owd0kml {
|
|
30109
|
-
display: inline-block;
|
|
30110
|
-
}
|
|
30111
|
-
|
|
30112
|
-
.h1jsgezc {
|
|
30113
|
-
visibility: hidden;
|
|
30114
|
-
position: absolute;
|
|
30115
|
-
}
|
|
30116
|
-
|
|
30117
|
-
.phljevk {
|
|
30118
|
-
display: flex;
|
|
30119
|
-
justify-content: space-between;
|
|
30120
|
-
align-items: center;
|
|
30121
|
-
padding: 10px 0;
|
|
30122
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30123
|
-
font-size: 12px;
|
|
30124
|
-
line-height: 24px;
|
|
30125
|
-
}
|
|
30126
|
-
.phljevk .pagination-left {
|
|
30127
|
-
padding: 2px 8px;
|
|
30128
|
-
}
|
|
30129
|
-
.phljevk .dropdown-trigger {
|
|
30130
|
-
display: flex;
|
|
30131
|
-
align-items: center;
|
|
30132
|
-
border-radius: 6px;
|
|
30133
|
-
cursor: pointer;
|
|
30134
|
-
transition: all 0.3s ease;
|
|
30135
|
-
}
|
|
30136
|
-
.phljevk .dropdown-trigger:hover {
|
|
30137
|
-
background: rgba(211, 218, 235, 0.6);
|
|
30138
|
-
color: #0080ff;
|
|
30139
|
-
}
|
|
30140
|
-
.phljevk .dropdown-trigger .icon-inner {
|
|
30141
|
-
margin-left: 4px;
|
|
30142
|
-
}
|
|
30143
|
-
.phljevk .pagination-right {
|
|
30108
|
+
.skwah65 {
|
|
30109
|
+
height: 8px;
|
|
30110
|
+
box-sizing: border-box;
|
|
30111
|
+
border-radius: 2px;
|
|
30112
|
+
background: #f5f7fa;
|
|
30144
30113
|
display: flex;
|
|
30145
|
-
|
|
30146
|
-
|
|
30147
|
-
font-weight: bold;
|
|
30148
|
-
}
|
|
30149
|
-
.phljevk .pagination-right .icon-inner {
|
|
30150
|
-
margin-left: 4px;
|
|
30151
|
-
}
|
|
30152
|
-
.phljevk .pagination-right .prev-btn,
|
|
30153
|
-
.phljevk .pagination-right .next-btn {
|
|
30154
|
-
padding: 0 8px;
|
|
30155
|
-
}
|
|
30156
|
-
.phljevk .pagination-right .prev-btn > span,
|
|
30157
|
-
.phljevk .pagination-right .next-btn > span {
|
|
30158
|
-
color: #0080ff;
|
|
30159
|
-
}
|
|
30160
|
-
.phljevk .pagination-right .next-btn .icon-inner {
|
|
30161
|
-
transform: rotate(180deg);
|
|
30162
|
-
}
|
|
30163
|
-
|
|
30164
|
-
.d12rtyeg.ant-dropdown .ant-dropdown-menu {
|
|
30165
|
-
max-height: calc(100vh - 128px);
|
|
30166
|
-
overflow-y: auto;
|
|
30114
|
+
width: 100%;
|
|
30115
|
+
overflow: hidden;
|
|
30167
30116
|
}
|
|
30168
|
-
.
|
|
30169
|
-
|
|
30170
|
-
font-size: 12px;
|
|
30171
|
-
line-height: 18px;
|
|
30117
|
+
.skwah65 .stack-bar-item + .stack-bar-item {
|
|
30118
|
+
margin-left: 1px;
|
|
30172
30119
|
}
|
|
30173
30120
|
|
|
30174
30121
|
.s1dizucg.ant-switch {
|
|
@@ -30226,215 +30173,74 @@ html body {
|
|
|
30226
30173
|
margin-left: 5px;
|
|
30227
30174
|
}
|
|
30228
30175
|
|
|
30229
|
-
.
|
|
30230
|
-
|
|
30176
|
+
.owd0kml {
|
|
30177
|
+
display: inline-block;
|
|
30231
30178
|
}
|
|
30232
30179
|
|
|
30233
|
-
.
|
|
30234
|
-
|
|
30235
|
-
|
|
30236
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30237
|
-
height: 34px;
|
|
30238
|
-
min-height: 34px;
|
|
30239
|
-
box-sizing: border-box;
|
|
30240
|
-
margin-top: 8px;
|
|
30180
|
+
.h1jsgezc {
|
|
30181
|
+
visibility: hidden;
|
|
30182
|
+
position: absolute;
|
|
30241
30183
|
}
|
|
30242
30184
|
|
|
30243
|
-
.
|
|
30244
|
-
display: flex;
|
|
30245
|
-
|
|
30246
|
-
|
|
30247
|
-
padding: 8px;
|
|
30248
|
-
border-radius: 4px;
|
|
30185
|
+
.rapgekc.ant-radio-wrapper {
|
|
30186
|
+
display: inline-flex;
|
|
30187
|
+
align-items: baseline;
|
|
30188
|
+
white-space: pre-wrap;
|
|
30249
30189
|
}
|
|
30250
|
-
.
|
|
30251
|
-
|
|
30190
|
+
.rapgekc.ant-radio-wrapper .ant-radio {
|
|
30191
|
+
position: relative;
|
|
30192
|
+
top: 3px;
|
|
30252
30193
|
}
|
|
30253
|
-
.
|
|
30254
|
-
|
|
30194
|
+
.rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
30195
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
30255
30196
|
}
|
|
30256
|
-
.
|
|
30257
|
-
|
|
30197
|
+
.rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
30198
|
+
border-color: #0080ff;
|
|
30258
30199
|
}
|
|
30259
|
-
.
|
|
30260
|
-
color: #0080ff;
|
|
30200
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
30201
|
+
border-color: #0080ff;
|
|
30202
|
+
background: #0080ff;
|
|
30261
30203
|
}
|
|
30262
|
-
.
|
|
30263
|
-
|
|
30204
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
30205
|
+
top: 4px;
|
|
30206
|
+
left: 4px;
|
|
30207
|
+
width: 6px;
|
|
30208
|
+
height: 6px;
|
|
30209
|
+
background: #fff;
|
|
30264
30210
|
}
|
|
30265
|
-
.
|
|
30266
|
-
|
|
30211
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
30212
|
+
opacity: 0.5;
|
|
30267
30213
|
}
|
|
30268
|
-
.
|
|
30269
|
-
color:
|
|
30214
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
30215
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
30216
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30270
30217
|
}
|
|
30271
|
-
.
|
|
30272
|
-
background:
|
|
30273
|
-
color: #0080ff;
|
|
30218
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
30219
|
+
background: #00122e;
|
|
30274
30220
|
}
|
|
30275
|
-
|
|
30276
|
-
|
|
30277
|
-
|
|
30278
|
-
justify-content: space-between;
|
|
30279
|
-
height: 20px;
|
|
30280
|
-
line-height: 20px;
|
|
30221
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
30222
|
+
color: #00122e;
|
|
30223
|
+
opacity: 0.5;
|
|
30281
30224
|
}
|
|
30282
|
-
.
|
|
30283
|
-
color: #
|
|
30284
|
-
overflow: hidden;
|
|
30285
|
-
text-overflow: ellipsis;
|
|
30225
|
+
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
30226
|
+
color: #00122e;
|
|
30286
30227
|
}
|
|
30287
|
-
|
|
30288
|
-
|
|
30289
|
-
|
|
30290
|
-
|
|
30228
|
+
.rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
30229
|
+
display: inline-block;
|
|
30230
|
+
padding: 0;
|
|
30231
|
+
padding-left: 12px;
|
|
30232
|
+
}
|
|
30233
|
+
.rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
30234
|
+
margin-bottom: 0;
|
|
30235
|
+
white-space: pre-wrap;
|
|
30291
30236
|
color: rgba(44, 56, 82, 0.6);
|
|
30292
|
-
height: 18px;
|
|
30293
|
-
line-height: 18px;
|
|
30294
|
-
margin-top: 2px;
|
|
30295
30237
|
}
|
|
30296
|
-
|
|
30297
|
-
|
|
30298
|
-
border: none;
|
|
30299
|
-
margin-right: 0;
|
|
30300
|
-
background: rgba(225, 230, 241, 0.6);
|
|
30238
|
+
.rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
30239
|
+
padding-left: 8px;
|
|
30301
30240
|
}
|
|
30302
30241
|
|
|
30303
|
-
.
|
|
30304
|
-
|
|
30305
|
-
height: 32px;
|
|
30306
|
-
width: 100%;
|
|
30307
|
-
opacity: 0;
|
|
30308
|
-
}
|
|
30309
|
-
|
|
30310
|
-
.t1m2x205 .ant-tooltip-arrow {
|
|
30311
|
-
display: none;
|
|
30312
|
-
}
|
|
30313
|
-
.t1m2x205 .ant-tooltip-inner {
|
|
30314
|
-
background: rgba(23, 38, 64, 0.8);
|
|
30315
|
-
border-radius: 4px;
|
|
30316
|
-
}
|
|
30317
|
-
|
|
30318
|
-
.s1ebs0ra {
|
|
30319
|
-
display: flex;
|
|
30320
|
-
align-items: center;
|
|
30321
|
-
justify-content: space-between;
|
|
30322
|
-
background: #edf0f7;
|
|
30323
|
-
padding: 8px 12px;
|
|
30324
|
-
position: sticky;
|
|
30325
|
-
top: 0;
|
|
30326
|
-
z-index: 1;
|
|
30327
|
-
margin-bottom: -52px;
|
|
30328
|
-
}
|
|
30329
|
-
.s1ebs0ra .select-total {
|
|
30330
|
-
display: flex;
|
|
30331
|
-
align-items: center;
|
|
30332
|
-
font-weight: 700;
|
|
30333
|
-
flex-shrink: 0;
|
|
30334
|
-
}
|
|
30335
|
-
.s1ebs0ra .select-total .icon-wrapper {
|
|
30336
|
-
cursor: pointer;
|
|
30337
|
-
margin-left: 8px;
|
|
30338
|
-
width: 32px;
|
|
30339
|
-
height: 32px;
|
|
30340
|
-
border-radius: 50%;
|
|
30341
|
-
justify-content: center;
|
|
30342
|
-
}
|
|
30343
|
-
.s1ebs0ra .select-total .icon-wrapper:hover {
|
|
30344
|
-
background: rgba(225, 230, 241, 0.6);
|
|
30345
|
-
}
|
|
30346
|
-
.s1ebs0ra .action-group {
|
|
30347
|
-
flex: 1;
|
|
30348
|
-
margin-left: 88px;
|
|
30349
|
-
white-space: nowrap;
|
|
30350
|
-
text-align: right;
|
|
30351
|
-
position: relative;
|
|
30352
|
-
padding: 4px 0;
|
|
30353
|
-
margin-top: -4px;
|
|
30354
|
-
overflow: hidden;
|
|
30355
|
-
}
|
|
30356
|
-
.s1ebs0ra .action-group .sub-menu-delete {
|
|
30357
|
-
transform: translateY(-4px);
|
|
30358
|
-
}
|
|
30359
|
-
.s1ebs0ra .action-group button {
|
|
30360
|
-
border: none;
|
|
30361
|
-
}
|
|
30362
|
-
.s1ebs0ra .action-group > *:not(:last-child) {
|
|
30363
|
-
margin-right: 8px;
|
|
30364
|
-
}
|
|
30365
|
-
.s1ebs0ra .action-group > button:last-child {
|
|
30366
|
-
margin-right: 4px;
|
|
30367
|
-
}
|
|
30368
|
-
.s1ebs0ra .action-group .more-btn {
|
|
30369
|
-
cursor: pointer;
|
|
30370
|
-
width: 32px;
|
|
30371
|
-
height: 32px;
|
|
30372
|
-
justify-content: center;
|
|
30373
|
-
border-radius: 50%;
|
|
30374
|
-
}
|
|
30375
|
-
.s1ebs0ra .action-group .more-btn:hover {
|
|
30376
|
-
background: #fff;
|
|
30377
|
-
}
|
|
30378
|
-
|
|
30379
|
-
.rapgekc.ant-radio-wrapper {
|
|
30380
|
-
display: inline-flex;
|
|
30381
|
-
align-items: baseline;
|
|
30382
|
-
white-space: pre-wrap;
|
|
30383
|
-
}
|
|
30384
|
-
.rapgekc.ant-radio-wrapper .ant-radio {
|
|
30385
|
-
position: relative;
|
|
30386
|
-
top: 3px;
|
|
30387
|
-
}
|
|
30388
|
-
.rapgekc.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
30389
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
30390
|
-
}
|
|
30391
|
-
.rapgekc.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
30392
|
-
border-color: #0080ff;
|
|
30393
|
-
}
|
|
30394
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
30395
|
-
border-color: #0080ff;
|
|
30396
|
-
background: #0080ff;
|
|
30397
|
-
}
|
|
30398
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
30399
|
-
top: 4px;
|
|
30400
|
-
left: 4px;
|
|
30401
|
-
width: 6px;
|
|
30402
|
-
height: 6px;
|
|
30403
|
-
background: #fff;
|
|
30404
|
-
}
|
|
30405
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
30406
|
-
opacity: 0.5;
|
|
30407
|
-
}
|
|
30408
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
30409
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
30410
|
-
background: rgba(211, 218, 235, 0.6);
|
|
30411
|
-
}
|
|
30412
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
30413
|
-
background: #00122e;
|
|
30414
|
-
}
|
|
30415
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
30416
|
-
color: #00122e;
|
|
30417
|
-
opacity: 0.5;
|
|
30418
|
-
}
|
|
30419
|
-
.rapgekc.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
30420
|
-
color: #00122e;
|
|
30421
|
-
}
|
|
30422
|
-
.rapgekc.ant-radio-wrapper .ant-radio + span {
|
|
30423
|
-
display: inline-block;
|
|
30424
|
-
padding: 0;
|
|
30425
|
-
padding-left: 12px;
|
|
30426
|
-
}
|
|
30427
|
-
.rapgekc.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
30428
|
-
margin-bottom: 0;
|
|
30429
|
-
white-space: pre-wrap;
|
|
30430
|
-
color: rgba(44, 56, 82, 0.6);
|
|
30431
|
-
}
|
|
30432
|
-
.rapgekc.ant-radio-wrapper.compact .ant-radio + span {
|
|
30433
|
-
padding-left: 8px;
|
|
30434
|
-
}
|
|
30435
|
-
|
|
30436
|
-
.rp906go .ant-radio-button-wrapper:first-child {
|
|
30437
|
-
border-radius: 5px 0 0 5px;
|
|
30242
|
+
.rp906go .ant-radio-button-wrapper:first-child {
|
|
30243
|
+
border-radius: 5px 0 0 5px;
|
|
30438
30244
|
}
|
|
30439
30245
|
.rp906go .ant-radio-button-wrapper:last-child {
|
|
30440
30246
|
border-radius: 0 5px 5px 0;
|
|
@@ -30522,1181 +30328,1739 @@ html body {
|
|
|
30522
30328
|
width: 36px;
|
|
30523
30329
|
}
|
|
30524
30330
|
|
|
30525
|
-
.
|
|
30526
|
-
|
|
30527
|
-
font-style: normal;
|
|
30528
|
-
font-weight: bold;
|
|
30529
|
-
font-size: 32px;
|
|
30530
|
-
line-height: 40px;
|
|
30331
|
+
.iq1gosr {
|
|
30332
|
+
display: inline-block;
|
|
30531
30333
|
}
|
|
30532
30334
|
|
|
30533
|
-
.
|
|
30534
|
-
|
|
30535
|
-
font-style: normal;
|
|
30536
|
-
font-weight: bold;
|
|
30537
|
-
font-size: 24px;
|
|
30538
|
-
line-height: 32px;
|
|
30335
|
+
.t1m2x205 .ant-tooltip-arrow {
|
|
30336
|
+
display: none;
|
|
30539
30337
|
}
|
|
30540
|
-
|
|
30541
|
-
.
|
|
30542
|
-
|
|
30543
|
-
font-style: normal;
|
|
30544
|
-
font-weight: normal;
|
|
30545
|
-
font-size: 32px;
|
|
30546
|
-
line-height: 40px;
|
|
30338
|
+
.t1m2x205 .ant-tooltip-inner {
|
|
30339
|
+
background: rgba(23, 38, 64, 0.8);
|
|
30340
|
+
border-radius: 4px;
|
|
30547
30341
|
}
|
|
30548
30342
|
|
|
30549
|
-
.
|
|
30550
|
-
|
|
30551
|
-
font-style: normal;
|
|
30552
|
-
font-weight: bold;
|
|
30553
|
-
font-size: 20px;
|
|
30554
|
-
line-height: 24px;
|
|
30343
|
+
.tc97u5y {
|
|
30344
|
+
height: 100%;
|
|
30555
30345
|
}
|
|
30556
30346
|
|
|
30557
|
-
.
|
|
30558
|
-
|
|
30559
|
-
font-style: normal;
|
|
30560
|
-
font-weight: normal;
|
|
30561
|
-
font-size: 20px;
|
|
30562
|
-
line-height: 24px;
|
|
30347
|
+
.tfzf37v {
|
|
30348
|
+
height: 100%;
|
|
30563
30349
|
}
|
|
30564
|
-
|
|
30565
|
-
|
|
30566
|
-
|
|
30567
|
-
font-style: normal;
|
|
30568
|
-
font-weight: bold;
|
|
30569
|
-
font-size: 18px;
|
|
30570
|
-
line-height: 22px;
|
|
30350
|
+
.tfzf37v.empty-table .ant-table-content {
|
|
30351
|
+
overflow: visible !important;
|
|
30352
|
+
height: 100%;
|
|
30571
30353
|
}
|
|
30572
|
-
|
|
30573
|
-
|
|
30574
|
-
font-family: Inter;
|
|
30575
|
-
font-style: normal;
|
|
30576
|
-
font-weight: normal;
|
|
30577
|
-
font-size: 18px;
|
|
30578
|
-
line-height: 22px;
|
|
30354
|
+
.tfzf37v.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
30355
|
+
height: 100%;
|
|
30579
30356
|
}
|
|
30580
|
-
|
|
30581
|
-
|
|
30582
|
-
|
|
30583
|
-
font-style: normal;
|
|
30584
|
-
font-weight: bold;
|
|
30585
|
-
font-size: 16px;
|
|
30586
|
-
line-height: 22px;
|
|
30357
|
+
.tfzf37v.empty-table .ant-table-content table {
|
|
30358
|
+
width: 100% !important;
|
|
30359
|
+
height: 100%;
|
|
30587
30360
|
}
|
|
30588
|
-
|
|
30589
|
-
|
|
30590
|
-
font-family: Inter;
|
|
30591
|
-
font-style: normal;
|
|
30592
|
-
font-weight: normal;
|
|
30593
|
-
font-size: 16px;
|
|
30594
|
-
line-height: 22px;
|
|
30361
|
+
.tfzf37v.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
30362
|
+
padding: 15px 0;
|
|
30595
30363
|
}
|
|
30596
|
-
|
|
30597
|
-
|
|
30598
|
-
font-family: Inter;
|
|
30599
|
-
font-style: normal;
|
|
30600
|
-
font-weight: bold;
|
|
30601
|
-
font-size: 14px;
|
|
30602
|
-
line-height: 20px;
|
|
30364
|
+
.tfzf37v.empty-table .ant-table-content table thead.ant-table-thead {
|
|
30365
|
+
display: none;
|
|
30603
30366
|
}
|
|
30604
|
-
|
|
30605
|
-
|
|
30606
|
-
font-family: Inter;
|
|
30607
|
-
font-style: normal;
|
|
30608
|
-
font-weight: normal;
|
|
30609
|
-
font-size: 14px;
|
|
30610
|
-
line-height: 20px;
|
|
30367
|
+
.tfzf37v .active-row td:nth-child(1) {
|
|
30368
|
+
font-weight: 700;
|
|
30611
30369
|
}
|
|
30612
|
-
|
|
30613
|
-
|
|
30614
|
-
font-family: Inter;
|
|
30615
|
-
font-style: normal;
|
|
30616
|
-
font-weight: bold;
|
|
30617
|
-
font-size: 12px;
|
|
30618
|
-
line-height: 18px;
|
|
30370
|
+
.tfzf37v.has-selection .active-row td:nth-child(2) {
|
|
30371
|
+
font-weight: 700;
|
|
30619
30372
|
}
|
|
30620
|
-
|
|
30621
|
-
|
|
30622
|
-
font-family: Inter;
|
|
30623
|
-
font-style: normal;
|
|
30624
|
-
font-weight: normal;
|
|
30625
|
-
font-size: 12px;
|
|
30626
|
-
line-height: 18px;
|
|
30373
|
+
.tfzf37v .ant-spin-nested-loading {
|
|
30374
|
+
height: 100%;
|
|
30627
30375
|
}
|
|
30628
|
-
|
|
30629
|
-
|
|
30630
|
-
|
|
30631
|
-
|
|
30632
|
-
|
|
30633
|
-
|
|
30634
|
-
|
|
30635
|
-
|
|
30636
|
-
|
|
30376
|
+
.tfzf37v .ant-spin-nested-loading .ant-spin-container {
|
|
30377
|
+
height: 100%;
|
|
30378
|
+
overflow: visible;
|
|
30379
|
+
}
|
|
30380
|
+
.tfzf37v .ant-spin-nested-loading .ant-spin {
|
|
30381
|
+
max-height: none;
|
|
30382
|
+
}
|
|
30383
|
+
.tfzf37v.table-init-loading .ant-spin-blur thead,
|
|
30384
|
+
.tfzf37v.table-init-loading .ant-spin-blur tbody {
|
|
30385
|
+
display: none;
|
|
30386
|
+
}
|
|
30387
|
+
.tfzf37v td.ant-table-column-sort {
|
|
30388
|
+
background: transparent;
|
|
30389
|
+
}
|
|
30390
|
+
.tfzf37v td.ant-table-cell-fix-left,
|
|
30391
|
+
.tfzf37v td.ant-table-cell-fix-right {
|
|
30392
|
+
background: #fff;
|
|
30393
|
+
padding: 0 !important;
|
|
30394
|
+
}
|
|
30395
|
+
.tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content,
|
|
30396
|
+
.tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
30397
|
+
display: flex;
|
|
30398
|
+
align-items: center;
|
|
30399
|
+
height: 100%;
|
|
30400
|
+
padding: 8px;
|
|
30401
|
+
}
|
|
30402
|
+
.tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content > span,
|
|
30403
|
+
.tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content > span {
|
|
30404
|
+
overflow: hidden;
|
|
30405
|
+
text-overflow: ellipsis;
|
|
30406
|
+
width: 100%;
|
|
30407
|
+
}
|
|
30408
|
+
.tfzf37v .ant-table-container {
|
|
30409
|
+
height: 100%;
|
|
30410
|
+
}
|
|
30411
|
+
.tfzf37v .ant-table-container::before, .tfzf37v .ant-table-container::after {
|
|
30412
|
+
box-shadow: none !important;
|
|
30413
|
+
}
|
|
30414
|
+
.tfzf37v .ant-table {
|
|
30415
|
+
border-radius: 0px;
|
|
30416
|
+
border-left: none;
|
|
30417
|
+
border-right: none;
|
|
30418
|
+
border-bottom: none;
|
|
30419
|
+
height: 100%;
|
|
30420
|
+
font-size: 12px;
|
|
30421
|
+
background: transparent;
|
|
30422
|
+
}
|
|
30423
|
+
.tfzf37v .ant-table .ant-table-header {
|
|
30424
|
+
position: relative;
|
|
30425
|
+
z-index: 3;
|
|
30426
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
30427
|
+
margin-bottom: -1px;
|
|
30428
|
+
}
|
|
30429
|
+
.tfzf37v .ant-table .time-wrapper .date,
|
|
30430
|
+
.tfzf37v .ant-table .value {
|
|
30431
|
+
color: #2d3a56;
|
|
30432
|
+
}
|
|
30433
|
+
.tfzf37v .ant-table .time-wrapper .time,
|
|
30434
|
+
.tfzf37v .ant-table .unit {
|
|
30435
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30436
|
+
}
|
|
30437
|
+
.tfzf37v .ant-table .ant-table-selection {
|
|
30438
|
+
position: unset;
|
|
30439
|
+
text-align: center;
|
|
30440
|
+
}
|
|
30441
|
+
.tfzf37v .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
|
|
30442
|
+
background: #fff;
|
|
30443
|
+
}
|
|
30444
|
+
.tfzf37v .ant-table .anticon-setting {
|
|
30445
|
+
cursor: pointer;
|
|
30446
|
+
position: absolute;
|
|
30447
|
+
top: 50%;
|
|
30448
|
+
right: 12px;
|
|
30449
|
+
transform: translateY(-50%);
|
|
30450
|
+
}
|
|
30451
|
+
.tfzf37v .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
30452
|
+
box-shadow: none;
|
|
30453
|
+
width: 1px;
|
|
30454
|
+
background: rgba(213, 219, 227, 0.6);
|
|
30455
|
+
}
|
|
30456
|
+
.tfzf37v .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
|
|
30457
|
+
box-shadow: none;
|
|
30458
|
+
width: 1px;
|
|
30459
|
+
background: rgba(213, 219, 227, 0.6);
|
|
30460
|
+
}
|
|
30461
|
+
.tfzf37v .ant-table .ant-table-tbody {
|
|
30462
|
+
position: relative;
|
|
30463
|
+
}
|
|
30464
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td {
|
|
30465
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30466
|
+
border-bottom: 1px solid white;
|
|
30467
|
+
height: 40px;
|
|
30468
|
+
vertical-align: middle;
|
|
30469
|
+
transition: background 0ms;
|
|
30470
|
+
color: #00122e;
|
|
30471
|
+
}
|
|
30472
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td.header-hover {
|
|
30473
|
+
background: #f2f5fa;
|
|
30474
|
+
border-bottom-color: #f2f5fa;
|
|
30475
|
+
}
|
|
30476
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
|
|
30477
|
+
height: auto;
|
|
30478
|
+
color: #00122e;
|
|
30479
|
+
font-size: 12px;
|
|
30480
|
+
text-align: left;
|
|
30481
|
+
transition: none;
|
|
30482
|
+
overflow: hidden;
|
|
30483
|
+
text-overflow: ellipsis;
|
|
30484
|
+
white-space: nowrap;
|
|
30485
|
+
}
|
|
30486
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
|
|
30487
|
+
color: #0096ff;
|
|
30488
|
+
}
|
|
30489
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
|
|
30490
|
+
overflow: hidden;
|
|
30491
|
+
text-overflow: ellipsis;
|
|
30492
|
+
width: 100%;
|
|
30493
|
+
vertical-align: middle;
|
|
30494
|
+
}
|
|
30495
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
30496
|
+
line-height: 0px;
|
|
30497
|
+
}
|
|
30498
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td.align-right {
|
|
30499
|
+
padding-right: 25px;
|
|
30500
|
+
}
|
|
30501
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
|
|
30502
|
+
border-top-color: transparent;
|
|
30503
|
+
}
|
|
30504
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td {
|
|
30505
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30506
|
+
border-color: transparent transparent white;
|
|
30507
|
+
}
|
|
30508
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
|
|
30509
|
+
border-radius: 8px 0 0 8px;
|
|
30510
|
+
}
|
|
30511
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
|
|
30512
|
+
border-radius: 8px 0 0 8px;
|
|
30513
|
+
}
|
|
30514
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
|
|
30515
|
+
content: "";
|
|
30516
|
+
width: 4px;
|
|
30517
|
+
top: -1px;
|
|
30518
|
+
bottom: -1px;
|
|
30519
|
+
background: white;
|
|
30520
|
+
}
|
|
30521
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
|
|
30522
|
+
border-radius: 0 8px 8px 0;
|
|
30523
|
+
}
|
|
30524
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
|
|
30525
|
+
border-radius: 0;
|
|
30526
|
+
background: white;
|
|
30527
|
+
border-top: none;
|
|
30528
|
+
}
|
|
30529
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
|
|
30530
|
+
border-top: 1px solid transparent;
|
|
30531
|
+
border-radius: 0 8px 8px 0;
|
|
30532
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30533
|
+
}
|
|
30534
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
|
|
30535
|
+
background: white;
|
|
30536
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30537
|
+
}
|
|
30538
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
30539
|
+
display: flex;
|
|
30540
|
+
align-items: center;
|
|
30541
|
+
height: 100%;
|
|
30542
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30543
|
+
}
|
|
30544
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
|
|
30545
|
+
background: white;
|
|
30546
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
30547
|
+
}
|
|
30548
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
|
|
30549
|
+
display: flex;
|
|
30550
|
+
align-items: center;
|
|
30551
|
+
height: 100%;
|
|
30552
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30553
|
+
}
|
|
30554
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:last-child td {
|
|
30555
|
+
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
30556
|
+
}
|
|
30557
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row {
|
|
30558
|
+
box-shadow: inset 0px 0px 0 2px rgba(0, 136, 255, 0.1);
|
|
30559
|
+
border-radius: 8px;
|
|
30560
|
+
}
|
|
30561
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row + tr td {
|
|
30562
|
+
border-top-color: white;
|
|
30563
|
+
}
|
|
30564
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td {
|
|
30565
|
+
background: rgba(0, 136, 255, 0.1);
|
|
30566
|
+
border-bottom-color: transparent;
|
|
30567
|
+
border-top-color: transparent;
|
|
30568
|
+
}
|
|
30569
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:first-child {
|
|
30570
|
+
border-radius: 8px 0 0 8px;
|
|
30571
|
+
}
|
|
30572
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:last-child {
|
|
30573
|
+
border-radius: 0 8px 8px 0;
|
|
30574
|
+
}
|
|
30575
|
+
.tfzf37v .ant-table .ant-table-tbody .ant-table-row.active-row td:hover {
|
|
30576
|
+
background: rgba(0, 136, 255, 0.1);
|
|
30577
|
+
}
|
|
30578
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th {
|
|
30579
|
+
background: #fff;
|
|
30580
|
+
font-weight: 400;
|
|
30581
|
+
position: relative;
|
|
30582
|
+
border-bottom: none;
|
|
30583
|
+
color: #00122e;
|
|
30584
|
+
transition: none;
|
|
30585
|
+
padding: 15px 8px 15px 8px;
|
|
30586
|
+
}
|
|
30587
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th:not(:last-child):after {
|
|
30588
|
+
content: "";
|
|
30589
|
+
width: 1px;
|
|
30590
|
+
top: 0;
|
|
30591
|
+
bottom: 0;
|
|
30592
|
+
background: rgba(211, 218, 235, 0.6);
|
|
30593
|
+
position: absolute;
|
|
30594
|
+
right: 0;
|
|
30595
|
+
}
|
|
30596
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.is-blank {
|
|
30597
|
+
padding: unset;
|
|
30598
|
+
}
|
|
30599
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.is-blank:after {
|
|
30600
|
+
display: none;
|
|
30601
|
+
}
|
|
30602
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
30603
|
+
width: 100%;
|
|
30604
|
+
overflow: hidden;
|
|
30605
|
+
white-space: nowrap;
|
|
30606
|
+
text-overflow: ellipsis;
|
|
30607
|
+
}
|
|
30608
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-cell-ellipsis.ant-table-column-has-sorters .ant-table-column-sorters > span {
|
|
30609
|
+
overflow: hidden;
|
|
30610
|
+
text-overflow: ellipsis;
|
|
30611
|
+
flex: 1;
|
|
30612
|
+
}
|
|
30613
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters {
|
|
30614
|
+
padding: 15px 25px 15px 8px;
|
|
30615
|
+
}
|
|
30616
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters {
|
|
30617
|
+
padding: 0;
|
|
30618
|
+
}
|
|
30619
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon {
|
|
30620
|
+
position: absolute;
|
|
30621
|
+
right: 6px;
|
|
30622
|
+
top: 50%;
|
|
30623
|
+
transform: translateY(-50%);
|
|
30624
|
+
height: 16px;
|
|
30625
|
+
display: none;
|
|
30626
|
+
transition: transform 320ms ease;
|
|
30627
|
+
}
|
|
30628
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.descend {
|
|
30629
|
+
display: block;
|
|
30630
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
30631
|
+
}
|
|
30632
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorters .order-icon.ascend {
|
|
30633
|
+
display: block;
|
|
30634
|
+
}
|
|
30635
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.ant-table-column-has-sorters .ant-table-column-sorter {
|
|
30636
|
+
display: none;
|
|
30637
|
+
}
|
|
30638
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.descend {
|
|
30639
|
+
transform: translateY(-50%);
|
|
30640
|
+
}
|
|
30641
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
|
|
30642
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
30643
|
+
}
|
|
30644
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
|
|
30645
|
+
background: #f2f5fa;
|
|
30646
|
+
}
|
|
30647
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
|
|
30648
|
+
display: block;
|
|
30649
|
+
}
|
|
30650
|
+
.tfzf37v .ant-table .ant-table-thead > tr > th.align-right {
|
|
30651
|
+
padding-right: 25px;
|
|
30652
|
+
}
|
|
30653
|
+
.tfzf37v .ant-table .ant-table-selection-column {
|
|
30654
|
+
padding: 0 !important;
|
|
30655
|
+
}
|
|
30656
|
+
.tfzf37v .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
|
|
30657
|
+
position: absolute;
|
|
30658
|
+
left: 50%;
|
|
30659
|
+
top: 50%;
|
|
30660
|
+
transform: translate(-50%, -50%);
|
|
30661
|
+
}
|
|
30662
|
+
.tfzf37v .ant-table .ant-table-selection-column:after {
|
|
30663
|
+
display: none;
|
|
30664
|
+
}
|
|
30665
|
+
.tfzf37v .ant-table .ant-table-hide-scrollbar {
|
|
30666
|
+
background: #fff;
|
|
30667
|
+
}
|
|
30668
|
+
.tfzf37v .ant-table .ant-table-placeholder {
|
|
30669
|
+
background: inherit;
|
|
30670
|
+
}
|
|
30671
|
+
.tfzf37v .ant-table .ant-table-placeholder td {
|
|
30672
|
+
position: static;
|
|
30673
|
+
border: none;
|
|
30674
|
+
background: inherit !important;
|
|
30675
|
+
height: 100px;
|
|
30676
|
+
vertical-align: middle;
|
|
30677
|
+
}
|
|
30678
|
+
.tfzf37v .ant-table .ant-table-placeholder .table-default-empty,
|
|
30679
|
+
.tfzf37v .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
30680
|
+
font-weight: bold;
|
|
30681
|
+
font-size: 20px;
|
|
30682
|
+
color: rgba(10, 37, 85, 0.6);
|
|
30683
|
+
}
|
|
30684
|
+
.tfzf37v .ant-table td.cell__action_ {
|
|
30685
|
+
padding: 0 !important;
|
|
30686
|
+
position: relative;
|
|
30687
|
+
background: #fff;
|
|
30688
|
+
}
|
|
30689
|
+
.tfzf37v .ant-table td.cell__action_ > * {
|
|
30690
|
+
height: 100%;
|
|
30691
|
+
display: flex;
|
|
30692
|
+
align-items: center;
|
|
30693
|
+
justify-content: flex-end;
|
|
30694
|
+
padding-right: 8px;
|
|
30695
|
+
}
|
|
30696
|
+
.tfzf37v .ant-table td.cell__action_ .menu-button {
|
|
30697
|
+
width: 24px;
|
|
30698
|
+
height: 24px;
|
|
30699
|
+
cursor: pointer;
|
|
30700
|
+
justify-content: center;
|
|
30701
|
+
border-radius: 4px;
|
|
30702
|
+
}
|
|
30703
|
+
.tfzf37v .ant-table td.cell__action_ .menu-button:hover {
|
|
30704
|
+
background: #fff;
|
|
30705
|
+
}
|
|
30706
|
+
|
|
30707
|
+
.s1ebs0ra {
|
|
30708
|
+
display: flex;
|
|
30709
|
+
align-items: center;
|
|
30710
|
+
justify-content: space-between;
|
|
30711
|
+
background: #edf0f7;
|
|
30712
|
+
padding: 8px 12px;
|
|
30713
|
+
position: sticky;
|
|
30714
|
+
top: 0;
|
|
30715
|
+
z-index: 1;
|
|
30716
|
+
margin-bottom: -52px;
|
|
30717
|
+
}
|
|
30718
|
+
.s1ebs0ra .select-total {
|
|
30719
|
+
display: flex;
|
|
30720
|
+
align-items: center;
|
|
30721
|
+
font-weight: 700;
|
|
30722
|
+
flex-shrink: 0;
|
|
30723
|
+
}
|
|
30724
|
+
.s1ebs0ra .select-total .icon-wrapper {
|
|
30725
|
+
cursor: pointer;
|
|
30726
|
+
margin-left: 8px;
|
|
30727
|
+
width: 32px;
|
|
30728
|
+
height: 32px;
|
|
30729
|
+
border-radius: 50%;
|
|
30730
|
+
justify-content: center;
|
|
30731
|
+
}
|
|
30732
|
+
.s1ebs0ra .select-total .icon-wrapper:hover {
|
|
30733
|
+
background: rgba(225, 230, 241, 0.6);
|
|
30734
|
+
}
|
|
30735
|
+
.s1ebs0ra .action-group {
|
|
30736
|
+
flex: 1;
|
|
30737
|
+
margin-left: 88px;
|
|
30738
|
+
white-space: nowrap;
|
|
30739
|
+
text-align: right;
|
|
30740
|
+
position: relative;
|
|
30741
|
+
padding: 4px 0;
|
|
30742
|
+
margin-top: -4px;
|
|
30743
|
+
overflow: hidden;
|
|
30744
|
+
}
|
|
30745
|
+
.s1ebs0ra .action-group .sub-menu-delete {
|
|
30746
|
+
transform: translateY(-4px);
|
|
30747
|
+
}
|
|
30748
|
+
.s1ebs0ra .action-group button {
|
|
30749
|
+
border: none;
|
|
30750
|
+
}
|
|
30751
|
+
.s1ebs0ra .action-group > *:not(:last-child) {
|
|
30752
|
+
margin-right: 8px;
|
|
30753
|
+
}
|
|
30754
|
+
.s1ebs0ra .action-group > button:last-child {
|
|
30755
|
+
margin-right: 4px;
|
|
30756
|
+
}
|
|
30757
|
+
.s1ebs0ra .action-group .more-btn {
|
|
30758
|
+
cursor: pointer;
|
|
30759
|
+
width: 32px;
|
|
30760
|
+
height: 32px;
|
|
30761
|
+
justify-content: center;
|
|
30762
|
+
border-radius: 50%;
|
|
30763
|
+
}
|
|
30764
|
+
.s1ebs0ra .action-group .more-btn:hover {
|
|
30765
|
+
background: #fff;
|
|
30766
|
+
}
|
|
30767
|
+
|
|
30768
|
+
.cnujxq2 {
|
|
30769
|
+
display: flex;
|
|
30770
|
+
flex-direction: column;
|
|
30771
|
+
}
|
|
30772
|
+
|
|
30773
|
+
.m7s48ia {
|
|
30774
|
+
max-width: 1120px;
|
|
30775
|
+
width: 100%;
|
|
30776
|
+
margin: 0 auto;
|
|
30777
|
+
height: 100%;
|
|
30778
|
+
}
|
|
30779
|
+
|
|
30780
|
+
.wt5zbg6 {
|
|
30781
|
+
max-width: 1120px;
|
|
30782
|
+
width: 100%;
|
|
30783
|
+
margin: 0 auto;
|
|
30784
|
+
display: flex;
|
|
30785
|
+
}
|
|
30786
|
+
.wt5zbg6 .left,
|
|
30787
|
+
.wt5zbg6 .right {
|
|
30788
|
+
flex-grow: 0;
|
|
30789
|
+
flex-shrink: 0;
|
|
30790
|
+
flex-basis: 21%;
|
|
30791
|
+
}
|
|
30792
|
+
.wt5zbg6 .left {
|
|
30793
|
+
display: flex;
|
|
30794
|
+
justify-content: flex-end;
|
|
30795
|
+
padding-right: 44px;
|
|
30796
|
+
}
|
|
30797
|
+
.wt5zbg6 .right {
|
|
30798
|
+
padding-left: 44px;
|
|
30799
|
+
}
|
|
30800
|
+
.wt5zbg6 .middle {
|
|
30801
|
+
margin-bottom: 40px;
|
|
30802
|
+
flex-grow: 0;
|
|
30803
|
+
flex-shrink: 0;
|
|
30804
|
+
flex-basis: 58%;
|
|
30805
|
+
}
|
|
30806
|
+
.wt5zbg6 .middle .form-base-field {
|
|
30807
|
+
width: 100%;
|
|
30808
|
+
}
|
|
30809
|
+
.wt5zbg6 .middle .form-base-field .form-base-field {
|
|
30810
|
+
width: auto;
|
|
30811
|
+
}
|
|
30812
|
+
|
|
30813
|
+
.h18jprzg .ant-modal-header {
|
|
30814
|
+
margin: 0 auto;
|
|
30815
|
+
width: 100%;
|
|
30816
|
+
max-width: 648px;
|
|
30817
|
+
}
|
|
30818
|
+
.h18jprzg .ant-modal-header .ant-modal-title {
|
|
30819
|
+
margin-left: 0;
|
|
30820
|
+
}
|
|
30821
|
+
.h18jprzg .ant-modal-body {
|
|
30822
|
+
margin: 0 auto;
|
|
30823
|
+
padding: 0;
|
|
30824
|
+
width: 100%;
|
|
30825
|
+
max-width: 648px;
|
|
30826
|
+
overflow: hidden;
|
|
30827
|
+
}
|
|
30828
|
+
.h18jprzg .ant-modal-body .horizontal-steps-wrapper {
|
|
30829
|
+
margin-bottom: 40px;
|
|
30830
|
+
}
|
|
30831
|
+
.h18jprzg .ant-modal-body .horizontal-content-wrapper {
|
|
30832
|
+
height: calc(100vh - 225px);
|
|
30833
|
+
overflow-y: auto;
|
|
30834
|
+
}
|
|
30835
|
+
.h18jprzg .ant-modal-footer .footer-content {
|
|
30836
|
+
margin: 0 auto;
|
|
30837
|
+
max-width: 648px;
|
|
30838
|
+
}
|
|
30839
|
+
|
|
30840
|
+
.h16z9xgz .ant-modal-header {
|
|
30841
|
+
margin: 0 auto;
|
|
30842
|
+
width: 100%;
|
|
30843
|
+
max-width: 1024px;
|
|
30844
|
+
}
|
|
30845
|
+
.h16z9xgz .ant-modal-header .ant-modal-title {
|
|
30846
|
+
margin-left: 0;
|
|
30847
|
+
}
|
|
30848
|
+
.h16z9xgz .ant-modal-body {
|
|
30849
|
+
margin: 0 auto;
|
|
30850
|
+
padding: 0;
|
|
30851
|
+
width: 100%;
|
|
30852
|
+
max-width: 1024px;
|
|
30853
|
+
overflow: hidden;
|
|
30854
|
+
}
|
|
30855
|
+
.h16z9xgz .ant-modal-body .horizontal-steps-wrapper {
|
|
30856
|
+
margin-bottom: 40px;
|
|
30857
|
+
}
|
|
30858
|
+
.h16z9xgz .ant-modal-body .horizontal-content-wrapper {
|
|
30859
|
+
height: calc(100vh - 225px);
|
|
30860
|
+
overflow-y: auto;
|
|
30861
|
+
}
|
|
30862
|
+
.h16z9xgz .ant-modal-footer .footer-content {
|
|
30863
|
+
margin: 0 auto;
|
|
30864
|
+
max-width: 1024px;
|
|
30865
|
+
}
|
|
30866
|
+
|
|
30867
|
+
.f1lrhghm {
|
|
30868
|
+
flex: 1;
|
|
30869
|
+
}
|
|
30870
|
+
.f1lrhghm label {
|
|
30871
|
+
font-size: 13px;
|
|
30872
|
+
line-height: 20px;
|
|
30873
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30874
|
+
}
|
|
30875
|
+
.f1lrhghm .title {
|
|
30876
|
+
font-size: 14px;
|
|
30877
|
+
line-height: 20px;
|
|
30878
|
+
color: #2d3a56;
|
|
30879
|
+
margin-bottom: 12px;
|
|
30880
|
+
}
|
|
30881
|
+
.f1lrhghm.connect-cluster .title {
|
|
30882
|
+
padding-bottom: 26px;
|
|
30883
|
+
}
|
|
30884
|
+
|
|
30885
|
+
.f18ot8em {
|
|
30886
|
+
padding: 25px 0 15px 0;
|
|
30887
|
+
border-bottom: 1px solid #e1e5eb;
|
|
30888
|
+
margin-bottom: 16px;
|
|
30889
|
+
}
|
|
30890
|
+
|
|
30891
|
+
.f1l1g2k0 {
|
|
30892
|
+
display: flex;
|
|
30893
|
+
align-items: center;
|
|
30894
|
+
margin-bottom: 8px;
|
|
30895
|
+
}
|
|
30896
|
+
.f1l1g2k0 > label {
|
|
30897
|
+
width: 216px;
|
|
30898
|
+
}
|
|
30899
|
+
.f1l1g2k0 > label + * {
|
|
30900
|
+
width: 100%;
|
|
30901
|
+
}
|
|
30902
|
+
.f1l1g2k0 .ant-select {
|
|
30903
|
+
width: 100%;
|
|
30904
|
+
}
|
|
30905
|
+
|
|
30906
|
+
.e1k89cwg {
|
|
30907
|
+
color: #e75a3a;
|
|
30908
|
+
margin-right: 10px;
|
|
30909
|
+
}
|
|
30910
|
+
|
|
30911
|
+
.d1oui1gf {
|
|
30912
|
+
width: 100%;
|
|
30913
|
+
height: 1px;
|
|
30914
|
+
background: rgba(213, 219, 227, 0.6);
|
|
30915
|
+
margin: 24px 0;
|
|
30916
|
+
}
|
|
30917
|
+
|
|
30918
|
+
.l15itdbb {
|
|
30919
|
+
display: flex;
|
|
30920
|
+
justify-content: center;
|
|
30921
|
+
align-items: center;
|
|
30922
|
+
height: 100%;
|
|
30923
|
+
}
|
|
30924
|
+
|
|
30925
|
+
.d1y3z4w {
|
|
30926
|
+
display: inline-block;
|
|
30927
|
+
width: 4px;
|
|
30928
|
+
height: 4px;
|
|
30929
|
+
background: #8e9aa9;
|
|
30930
|
+
opacity: 0.4;
|
|
30931
|
+
border-radius: 50%;
|
|
30932
|
+
margin: 0 4px;
|
|
30933
|
+
}
|
|
30934
|
+
|
|
30935
|
+
.m177r7a3 .ant-modal-header,
|
|
30936
|
+
.m177r7a3 .ant-modal-footer .footer-content {
|
|
30937
|
+
width: 648px;
|
|
30938
|
+
margin: 0 auto;
|
|
30939
|
+
}
|
|
30940
|
+
.m177r7a3 .ant-modal-header {
|
|
30941
|
+
padding: 35px 0 24px;
|
|
30942
|
+
border: none;
|
|
30943
|
+
}
|
|
30944
|
+
.m177r7a3 .ant-modal-header .ant-modal-title {
|
|
30945
|
+
font-size: 30px;
|
|
30946
|
+
}
|
|
30947
|
+
.m177r7a3 .ant-modal-body {
|
|
30948
|
+
padding: 4px 0 2px;
|
|
30949
|
+
}
|
|
30950
|
+
.m177r7a3 .ant-modal-footer {
|
|
30951
|
+
border: none;
|
|
30952
|
+
}
|
|
30953
|
+
|
|
30954
|
+
.t1wwio3v {
|
|
30955
|
+
font-size: 12px;
|
|
30956
|
+
line-height: 18px;
|
|
30957
|
+
font-weight: bold;
|
|
30958
|
+
color: #fff;
|
|
30959
|
+
padding: 0 4px;
|
|
30960
|
+
border-radius: 4px;
|
|
30961
|
+
display: inline-block;
|
|
30962
|
+
background: var(--t1wwio3v-0);
|
|
30963
|
+
}
|
|
30964
|
+
.t1wwio3v:not(:first-child) {
|
|
30965
|
+
margin-left: 4px;
|
|
30966
|
+
}
|
|
30967
|
+
|
|
30968
|
+
.f17jvtfk {
|
|
30969
|
+
width: 100%;
|
|
30970
|
+
height: 100%;
|
|
30971
|
+
display: flex;
|
|
30972
|
+
align-items: center;
|
|
30973
|
+
justify-content: center;
|
|
30974
|
+
}
|
|
30975
|
+
|
|
30976
|
+
.nzppkea {
|
|
30977
|
+
font-size: 90%;
|
|
30978
|
+
font-weight: bold;
|
|
30979
|
+
background-color: rgba(240, 243, 247, 0.6);
|
|
30980
|
+
padding: 1px 4px 1px;
|
|
30981
|
+
margin-left: 2px;
|
|
30982
|
+
margin-right: 2px;
|
|
30983
|
+
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
30984
|
+
border-radius: 4px;
|
|
30985
|
+
}
|
|
30986
|
+
|
|
30987
|
+
.f4mi9eq.form-item-general {
|
|
30988
|
+
width: 640px;
|
|
30989
|
+
}
|
|
30990
|
+
.f4mi9eq.form-item-general.form-item + .f4mi9eq.form-item-general.form-item {
|
|
30991
|
+
margin-top: 16px;
|
|
30992
|
+
}
|
|
30993
|
+
.f4mi9eq.form-item-compact {
|
|
30994
|
+
width: 412px;
|
|
30995
|
+
}
|
|
30996
|
+
.f4mi9eq.form-item-compact.form-item + .f4mi9eq.form-item-compact.form-item {
|
|
30997
|
+
margin-top: 8px;
|
|
30998
|
+
}
|
|
30999
|
+
.f4mi9eq .form-item {
|
|
31000
|
+
width: auto;
|
|
31001
|
+
}
|
|
31002
|
+
.f4mi9eq .form-item-main {
|
|
31003
|
+
position: relative;
|
|
31004
|
+
display: flex;
|
|
31005
|
+
}
|
|
31006
|
+
.f4mi9eq .form-item-extra {
|
|
31007
|
+
margin-top: 4px;
|
|
31008
|
+
width: 100%;
|
|
31009
|
+
padding: 14px;
|
|
31010
|
+
background: #f2f4f6;
|
|
31011
|
+
font-size: 13px;
|
|
31012
|
+
line-height: 1.8;
|
|
31013
|
+
color: #8e9aa9;
|
|
31014
|
+
}
|
|
31015
|
+
.f4mi9eq .form-item-label {
|
|
31016
|
+
padding-right: 12px;
|
|
31017
|
+
font-size: 13px;
|
|
31018
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31019
|
+
}
|
|
31020
|
+
.f4mi9eq .form-item-label.label-right {
|
|
31021
|
+
text-align: right;
|
|
31022
|
+
}
|
|
31023
|
+
.f4mi9eq .form-item-label,
|
|
31024
|
+
.f4mi9eq .form-item-control {
|
|
31025
|
+
line-height: 32px;
|
|
31026
|
+
}
|
|
31027
|
+
.f4mi9eq .form-item-control .form-item-error {
|
|
31028
|
+
line-height: 18px;
|
|
31029
|
+
}
|
|
31030
|
+
.f4mi9eq .form-item-children {
|
|
31031
|
+
width: 100%;
|
|
31032
|
+
}
|
|
31033
|
+
.f4mi9eq .form-item-children > *:only-child.ant-select, .f4mi9eq .form-item-children > *:only-child.ant-radio-group, .f4mi9eq .form-item-children > *:only-child.ant-checkbox-group {
|
|
31034
|
+
width: 100%;
|
|
31035
|
+
}
|
|
31036
|
+
.f4mi9eq .form-item-error {
|
|
31037
|
+
color: #e75a3a;
|
|
31038
|
+
height: 0;
|
|
31039
|
+
overflow: hidden;
|
|
31040
|
+
}
|
|
31041
|
+
.f4mi9eq .form-item-error-enter-done {
|
|
31042
|
+
margin-top: 4px;
|
|
31043
|
+
height: auto;
|
|
31044
|
+
overflow: auto;
|
|
31045
|
+
}
|
|
31046
|
+
.f4mi9eq.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error > input:not(.ant-input),
|
|
31047
|
+
.f4mi9eq.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error :not(.ant-select) input {
|
|
31048
|
+
border: 1px solid #e75a3a;
|
|
31049
|
+
color: #e75a3a;
|
|
31050
|
+
}
|
|
31051
|
+
|
|
31052
|
+
.fh0ewl8 {
|
|
31053
|
+
color: #2d3a56;
|
|
31054
|
+
font-weight: bold;
|
|
31055
|
+
padding-bottom: 6px;
|
|
31056
|
+
border-bottom: 1px solid rgba(213, 219, 227, 0.6);
|
|
31057
|
+
margin-bottom: 16px;
|
|
31058
|
+
}
|
|
31059
|
+
.fh0ewl8:not(:first-of-type) {
|
|
31060
|
+
margin-top: 16px;
|
|
31061
|
+
}
|
|
31062
|
+
|
|
31063
|
+
.e1qrlvot {
|
|
31064
|
+
width: 8px;
|
|
31065
|
+
height: 24px;
|
|
31066
|
+
display: flex;
|
|
31067
|
+
justify-content: center;
|
|
31068
|
+
align-items: center;
|
|
31069
|
+
cursor: pointer;
|
|
31070
|
+
transition: all 200ms ease-out 40ms;
|
|
31071
|
+
}
|
|
31072
|
+
.e1qrlvot:before, .e1qrlvot:after {
|
|
31073
|
+
content: "";
|
|
31074
|
+
width: 1px;
|
|
31075
|
+
height: 6px;
|
|
31076
|
+
border-radius: 1px;
|
|
31077
|
+
background: #ccd4e3;
|
|
31078
|
+
position: relative;
|
|
31079
|
+
right: 2px;
|
|
31080
|
+
transform: rotate(-45deg);
|
|
31081
|
+
}
|
|
31082
|
+
.e1qrlvot:after {
|
|
31083
|
+
transform: rotate(45deg);
|
|
31084
|
+
left: 1px;
|
|
30637
31085
|
}
|
|
30638
31086
|
|
|
30639
|
-
.
|
|
30640
|
-
|
|
30641
|
-
|
|
30642
|
-
|
|
30643
|
-
|
|
30644
|
-
|
|
31087
|
+
.w9ic984.ant-alert-warning {
|
|
31088
|
+
border: 0;
|
|
31089
|
+
background: rgba(255, 187, 0, 0.1);
|
|
31090
|
+
border-radius: 6px;
|
|
31091
|
+
}
|
|
31092
|
+
.w9ic984.ant-alert,
|
|
31093
|
+
.w9ic984 .ant-alert-message {
|
|
31094
|
+
color: #e07f00;
|
|
31095
|
+
}
|
|
31096
|
+
.w9ic984.ant-alert .dashed-border-bottom,
|
|
31097
|
+
.w9ic984 .ant-alert-message .dashed-border-bottom {
|
|
31098
|
+
border-bottom-color: #e07f00;
|
|
31099
|
+
}
|
|
31100
|
+
|
|
31101
|
+
.n1k9qi4r {
|
|
31102
|
+
display: flex;
|
|
31103
|
+
flex-direction: row;
|
|
31104
|
+
padding: 7px 12px;
|
|
31105
|
+
background: rgba(255, 187, 0, 0.1);
|
|
31106
|
+
border-radius: 6px;
|
|
31107
|
+
color: #e07f00;
|
|
30645
31108
|
font-size: 12px;
|
|
30646
31109
|
line-height: 18px;
|
|
30647
31110
|
}
|
|
31111
|
+
.n1k9qi4r .icon-wrapper {
|
|
31112
|
+
margin-right: 10px;
|
|
31113
|
+
height: 18px;
|
|
31114
|
+
}
|
|
30648
31115
|
|
|
30649
|
-
.
|
|
30650
|
-
|
|
30651
|
-
|
|
30652
|
-
|
|
30653
|
-
|
|
30654
|
-
|
|
31116
|
+
.n16fsg9x {
|
|
31117
|
+
display: flex;
|
|
31118
|
+
flex-direction: row;
|
|
31119
|
+
padding: 7px 12px;
|
|
31120
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31121
|
+
border-radius: 6px;
|
|
31122
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31123
|
+
font-size: 12px;
|
|
31124
|
+
line-height: 18px;
|
|
31125
|
+
}
|
|
31126
|
+
.n16fsg9x .icon-wrapper {
|
|
31127
|
+
margin-right: 10px;
|
|
31128
|
+
height: 18px;
|
|
31129
|
+
}
|
|
31130
|
+
|
|
31131
|
+
.i173wxzw {
|
|
31132
|
+
display: flex;
|
|
31133
|
+
flex-direction: row;
|
|
31134
|
+
padding: 7px 12px;
|
|
31135
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31136
|
+
border-radius: 6px;
|
|
31137
|
+
color: #005ed1;
|
|
31138
|
+
font-size: 12px;
|
|
31139
|
+
line-height: 18px;
|
|
31140
|
+
}
|
|
31141
|
+
.i173wxzw .icon-wrapper {
|
|
31142
|
+
margin-right: 10px;
|
|
31143
|
+
height: 18px;
|
|
31144
|
+
}
|
|
31145
|
+
|
|
31146
|
+
.dld369h {
|
|
31147
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31148
|
+
margin-top: 5px;
|
|
31149
|
+
font-size: 12px;
|
|
31150
|
+
line-height: 18px;
|
|
31151
|
+
}
|
|
31152
|
+
|
|
31153
|
+
.s1epv22q {
|
|
31154
|
+
color: #f0483e;
|
|
31155
|
+
font-size: 12px;
|
|
31156
|
+
white-space: pre-wrap;
|
|
31157
|
+
}
|
|
31158
|
+
|
|
31159
|
+
.okus5hk {
|
|
31160
|
+
display: flex;
|
|
31161
|
+
align-items: center;
|
|
31162
|
+
justify-content: flex-end;
|
|
31163
|
+
}
|
|
31164
|
+
.okus5hk .icon-wrapper {
|
|
31165
|
+
margin-right: 16px;
|
|
31166
|
+
}
|
|
31167
|
+
|
|
31168
|
+
.t1auuzri {
|
|
31169
|
+
color: rgba(0, 21, 64, 0.3);
|
|
31170
|
+
}
|
|
31171
|
+
|
|
31172
|
+
.i74cfyt.ant-input {
|
|
31173
|
+
padding: 5px 12px;
|
|
31174
|
+
line-height: 20px;
|
|
31175
|
+
color: #2d3a56;
|
|
31176
|
+
border-radius: 6px;
|
|
31177
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
31178
|
+
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
31179
|
+
}
|
|
31180
|
+
.i74cfyt.ant-input.ant-input-lg {
|
|
31181
|
+
padding: 8px 16px;
|
|
31182
|
+
line-height: 22px;
|
|
31183
|
+
}
|
|
31184
|
+
.i74cfyt.ant-input.ant-input-sm {
|
|
31185
|
+
padding: 2px 8px;
|
|
31186
|
+
line-height: 18px;
|
|
31187
|
+
}
|
|
31188
|
+
.i74cfyt.ant-input:not([disabled]):hover, .i74cfyt.ant-input:not([disabled]).__pseudo-states-hover, .i74cfyt.ant-input-number:not([disabled]):hover, .i74cfyt.ant-input-number:not([disabled]).__pseudo-states-hover {
|
|
31189
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31190
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31191
|
+
z-index: 1;
|
|
31192
|
+
}
|
|
31193
|
+
.i74cfyt.ant-input:not([disabled]):active, .i74cfyt.ant-input:not([disabled]):focus, .i74cfyt.ant-input:not([disabled]).__pseudo-states-active, .i74cfyt.ant-input:not([disabled]).__pseudo-states-focus, .i74cfyt.ant-input-number:not([disabled]):active, .i74cfyt.ant-input-number:not([disabled]):focus, .i74cfyt.ant-input-number:not([disabled]).__pseudo-states-active, .i74cfyt.ant-input-number:not([disabled]).__pseudo-states-focus {
|
|
31194
|
+
border-color: #0096ff;
|
|
31195
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31196
|
+
z-index: 1;
|
|
31197
|
+
}
|
|
31198
|
+
.i74cfyt.ant-input.error:not([disabled]), .i74cfyt.ant-picker.error:not([disabled]), .i74cfyt.ant-input-number.error:not([disabled]) {
|
|
31199
|
+
border-color: #e75a3a;
|
|
31200
|
+
color: #e75a3a;
|
|
31201
|
+
}
|
|
31202
|
+
.i74cfyt.ant-input.error:not([disabled]):hover, .i74cfyt.ant-input.error:not([disabled]).__pseudo-states-hover, .i74cfyt.ant-picker.error:not([disabled]):hover, .i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-hover, .i74cfyt.ant-input-number.error:not([disabled]):hover, .i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-hover {
|
|
31203
|
+
border-color: #e75a3a;
|
|
31204
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31205
|
+
}
|
|
31206
|
+
.i74cfyt.ant-input.error:not([disabled]):active, .i74cfyt.ant-input.error:not([disabled]):focus, .i74cfyt.ant-input.error:not([disabled]).__pseudo-states-active, .i74cfyt.ant-input.error:not([disabled]).__pseudo-states-focus, .i74cfyt.ant-picker.error:not([disabled]):active, .i74cfyt.ant-picker.error:not([disabled]):focus, .i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-active, .i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-focus, .i74cfyt.ant-input-number.error:not([disabled]):active, .i74cfyt.ant-input-number.error:not([disabled]):focus, .i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-active, .i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-focus {
|
|
31207
|
+
border-color: #e75a3a;
|
|
31208
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31209
|
+
}
|
|
31210
|
+
.i74cfyt.ant-input[disabled], .i74cfyt.ant-input.ant-input-disabled, .i74cfyt.ant-input-number[disabled], .i74cfyt.ant-input-number.ant-input-number-disabled {
|
|
31211
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31212
|
+
color: rgba(0, 21, 64, 0.3);
|
|
31213
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
31214
|
+
}
|
|
31215
|
+
.i74cfyt.ant-input-affix-wrapper {
|
|
31216
|
+
padding: 5px 12px;
|
|
31217
|
+
border-radius: 6px;
|
|
31218
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
31219
|
+
line-height: 20px;
|
|
31220
|
+
color: #2d3a56;
|
|
31221
|
+
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
31222
|
+
}
|
|
31223
|
+
.i74cfyt.ant-input-affix-wrapper .ant-input-suffix,
|
|
31224
|
+
.i74cfyt.ant-input-affix-wrapper .ant-input-prefix {
|
|
31225
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31226
|
+
}
|
|
31227
|
+
.i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
|
|
31228
|
+
padding: 8px 16px;
|
|
31229
|
+
line-height: 22px;
|
|
31230
|
+
}
|
|
31231
|
+
.i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31232
|
+
padding: 2px 8px;
|
|
31233
|
+
line-height: 18px;
|
|
31234
|
+
}
|
|
31235
|
+
.i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
31236
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
31237
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31238
|
+
}
|
|
31239
|
+
.i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
31240
|
+
border-color: #0096ff;
|
|
31241
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31242
|
+
}
|
|
31243
|
+
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
|
|
31244
|
+
border-color: #e75a3a;
|
|
31245
|
+
}
|
|
31246
|
+
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
|
|
31247
|
+
color: #e75a3a;
|
|
31248
|
+
}
|
|
31249
|
+
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
31250
|
+
border-color: #e75a3a;
|
|
31251
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31252
|
+
}
|
|
31253
|
+
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
31254
|
+
border-color: #e75a3a;
|
|
31255
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31256
|
+
}
|
|
31257
|
+
.i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
|
|
31258
|
+
background: rgba(211, 218, 235, 0.6);
|
|
31259
|
+
color: rgba(0, 21, 64, 0.3);
|
|
31260
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
31261
|
+
}
|
|
31262
|
+
textarea.i74cfyt.ant-input {
|
|
31263
|
+
transition-property: height;
|
|
31264
|
+
transition-delay: 50ms;
|
|
31265
|
+
}
|
|
31266
|
+
textarea.i74cfyt.ant-input.textarea-large {
|
|
31267
|
+
min-height: 40px;
|
|
31268
|
+
height: 40px;
|
|
31269
|
+
}
|
|
31270
|
+
textarea.i74cfyt.ant-input.textarea-large:focus {
|
|
31271
|
+
height: 80px;
|
|
31272
|
+
}
|
|
31273
|
+
textarea.i74cfyt.ant-input.textarea-middle {
|
|
31274
|
+
min-height: 32px;
|
|
31275
|
+
height: 32px;
|
|
31276
|
+
}
|
|
31277
|
+
textarea.i74cfyt.ant-input.textarea-middle:focus {
|
|
31278
|
+
height: 64px;
|
|
31279
|
+
}
|
|
31280
|
+
textarea.i74cfyt.ant-input.textarea-small {
|
|
31281
|
+
min-height: 24px;
|
|
31282
|
+
height: 24px;
|
|
31283
|
+
}
|
|
31284
|
+
textarea.i74cfyt.ant-input.textarea-small:focus {
|
|
31285
|
+
height: 40px;
|
|
31286
|
+
}
|
|
31287
|
+
|
|
31288
|
+
.k1ci6977 input, .k1ci6977.input-tags {
|
|
31289
|
+
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
31290
|
+
border-radius: 4px;
|
|
31291
|
+
}
|
|
31292
|
+
.k1ci6977.input-tags {
|
|
31293
|
+
position: relative;
|
|
31294
|
+
padding: 6px;
|
|
31295
|
+
height: 32px;
|
|
31296
|
+
cursor: pointer;
|
|
31297
|
+
transition: border 150ms;
|
|
31298
|
+
}
|
|
31299
|
+
.k1ci6977.input-tags:hover {
|
|
31300
|
+
border-color: #0080ff;
|
|
31301
|
+
box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
|
|
31302
|
+
}
|
|
31303
|
+
.k1ci6977.input-tags.kit-input-suffix-wrapper {
|
|
31304
|
+
padding-right: 30px;
|
|
31305
|
+
}
|
|
31306
|
+
.k1ci6977.input-tags .input-tags-inner {
|
|
31307
|
+
display: flex;
|
|
31308
|
+
}
|
|
31309
|
+
.k1ci6977.input-tags .input-tags-inner .tags-overflow-auto {
|
|
31310
|
+
display: flex;
|
|
31311
|
+
}
|
|
31312
|
+
.k1ci6977.input-tags .input-tag-suffix {
|
|
31313
|
+
position: absolute;
|
|
31314
|
+
right: 12px;
|
|
31315
|
+
top: 50%;
|
|
31316
|
+
transform: translateY(-50%);
|
|
31317
|
+
}
|
|
31318
|
+
.k1ci6977.input-tags .input-tag-suffix .anticon-close-circle {
|
|
31319
|
+
color: rgba(0, 0, 0, 0.25);
|
|
31320
|
+
font-size: 12px;
|
|
31321
|
+
cursor: pointer;
|
|
31322
|
+
}
|
|
31323
|
+
.k1ci6977.input-tags .input-tag-suffix .anticon-close-circle:hover {
|
|
31324
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30655
31325
|
}
|
|
30656
|
-
|
|
30657
|
-
|
|
30658
|
-
|
|
30659
|
-
font-style: normal;
|
|
30660
|
-
font-weight: bold;
|
|
30661
|
-
font-size: 16px;
|
|
30662
|
-
line-height: 24px;
|
|
31326
|
+
.k1ci6977.has-focus-indicator {
|
|
31327
|
+
position: relative;
|
|
31328
|
+
overflow: hidden;
|
|
30663
31329
|
}
|
|
30664
|
-
|
|
30665
|
-
|
|
30666
|
-
|
|
30667
|
-
|
|
30668
|
-
|
|
30669
|
-
|
|
30670
|
-
|
|
31330
|
+
.k1ci6977.has-focus-indicator .ant-input-prefix {
|
|
31331
|
+
position: absolute;
|
|
31332
|
+
top: 50%;
|
|
31333
|
+
transform: translateY(-50%);
|
|
31334
|
+
left: -16px;
|
|
31335
|
+
transition: left 150ms ease;
|
|
31336
|
+
opacity: 0;
|
|
30671
31337
|
}
|
|
30672
|
-
|
|
30673
|
-
|
|
30674
|
-
|
|
30675
|
-
font-style: normal;
|
|
30676
|
-
font-weight: bold;
|
|
30677
|
-
font-size: 16px;
|
|
30678
|
-
line-height: 24px;
|
|
31338
|
+
.k1ci6977.has-focus-indicator.ant-input-affix-wrapper-focused .ant-input-prefix {
|
|
31339
|
+
left: 8px;
|
|
31340
|
+
opacity: 1;
|
|
30679
31341
|
}
|
|
30680
|
-
|
|
30681
|
-
|
|
30682
|
-
|
|
30683
|
-
font-style: normal;
|
|
30684
|
-
font-weight: normal;
|
|
30685
|
-
text-transform: uppercase;
|
|
30686
|
-
font-feature-settings: "cpsp" on;
|
|
30687
|
-
font-size: 16px;
|
|
30688
|
-
line-height: 24px;
|
|
31342
|
+
.k1ci6977.has-focus-indicator input {
|
|
31343
|
+
transition: margin-left 150ms ease;
|
|
31344
|
+
margin-left: 0px;
|
|
30689
31345
|
}
|
|
30690
|
-
|
|
30691
|
-
|
|
30692
|
-
font-family: Inter;
|
|
30693
|
-
font-style: normal;
|
|
30694
|
-
font-weight: bold;
|
|
30695
|
-
text-transform: uppercase;
|
|
30696
|
-
font-feature-settings: "cpsp" on;
|
|
30697
|
-
font-size: 16px;
|
|
30698
|
-
line-height: 24px;
|
|
31346
|
+
.k1ci6977.has-focus-indicator input:focus {
|
|
31347
|
+
margin-left: 16px;
|
|
30699
31348
|
}
|
|
30700
31349
|
|
|
30701
|
-
.
|
|
30702
|
-
|
|
30703
|
-
|
|
30704
|
-
font-weight: normal;
|
|
30705
|
-
font-size: 14px;
|
|
30706
|
-
line-height: 22px;
|
|
31350
|
+
input.l1f7td1d.ant-input {
|
|
31351
|
+
border-top-right-radius: 0;
|
|
31352
|
+
border-bottom-right-radius: 0;
|
|
30707
31353
|
}
|
|
30708
31354
|
|
|
30709
|
-
.
|
|
30710
|
-
|
|
30711
|
-
|
|
30712
|
-
font-weight: 500;
|
|
30713
|
-
font-size: 14px;
|
|
30714
|
-
line-height: 22px;
|
|
31355
|
+
.l1f7td1d.ant-input-affix-wrapper {
|
|
31356
|
+
border-top-right-radius: 0;
|
|
31357
|
+
border-bottom-right-radius: 0;
|
|
30715
31358
|
}
|
|
30716
31359
|
|
|
30717
|
-
.
|
|
30718
|
-
|
|
30719
|
-
|
|
30720
|
-
font-weight: bold;
|
|
30721
|
-
font-size: 14px;
|
|
30722
|
-
line-height: 22px;
|
|
31360
|
+
input.rf8rlle.ant-input {
|
|
31361
|
+
border-top-left-radius: 0;
|
|
31362
|
+
border-bottom-left-radius: 0;
|
|
30723
31363
|
}
|
|
30724
31364
|
|
|
30725
|
-
.
|
|
30726
|
-
|
|
30727
|
-
|
|
30728
|
-
font-weight: normal;
|
|
30729
|
-
font-size: 14px;
|
|
30730
|
-
line-height: 22px;
|
|
31365
|
+
.rf8rlle.ant-input-affix-wrapper {
|
|
31366
|
+
border-top-left-radius: 0;
|
|
31367
|
+
border-bottom-left-radius: 0;
|
|
30731
31368
|
}
|
|
30732
31369
|
|
|
30733
|
-
.
|
|
30734
|
-
|
|
30735
|
-
|
|
30736
|
-
font-weight: bold;
|
|
30737
|
-
font-size: 14px;
|
|
30738
|
-
line-height: 22px;
|
|
31370
|
+
.llt2k48.ant-select, .llt2k48.ant-select .ant-select-selector {
|
|
31371
|
+
border-top-right-radius: 0;
|
|
31372
|
+
border-bottom-right-radius: 0;
|
|
30739
31373
|
}
|
|
30740
31374
|
|
|
30741
|
-
.
|
|
30742
|
-
|
|
30743
|
-
|
|
30744
|
-
font-weight: normal;
|
|
30745
|
-
text-transform: uppercase;
|
|
30746
|
-
font-feature-settings: "cpsp" on;
|
|
30747
|
-
font-size: 14px;
|
|
30748
|
-
line-height: 22px;
|
|
31375
|
+
.rdwz7eh.ant-select, .rdwz7eh.ant-select .ant-select-selector {
|
|
31376
|
+
border-top-left-radius: 0;
|
|
31377
|
+
border-bottom-left-radius: 0;
|
|
30749
31378
|
}
|
|
30750
31379
|
|
|
30751
|
-
.
|
|
30752
|
-
|
|
30753
|
-
|
|
30754
|
-
font-weight: bold;
|
|
30755
|
-
text-transform: uppercase;
|
|
30756
|
-
font-feature-settings: "cpsp" on;
|
|
30757
|
-
font-size: 14px;
|
|
30758
|
-
line-height: 22px;
|
|
31380
|
+
.c3ni091 {
|
|
31381
|
+
display: flex;
|
|
31382
|
+
flex-direction: column;
|
|
30759
31383
|
}
|
|
30760
|
-
|
|
30761
|
-
|
|
30762
|
-
font-family: Inter;
|
|
30763
|
-
font-style: normal;
|
|
30764
|
-
font-weight: normal;
|
|
30765
|
-
font-size: 13px;
|
|
30766
|
-
line-height: 20px;
|
|
31384
|
+
.c3ni091 .select-wrapper {
|
|
31385
|
+
margin-top: 12px;
|
|
30767
31386
|
}
|
|
30768
|
-
|
|
30769
|
-
|
|
30770
|
-
font-family: Inter;
|
|
30771
|
-
font-style: normal;
|
|
30772
|
-
font-weight: 600;
|
|
30773
|
-
font-size: 13px;
|
|
30774
|
-
line-height: 20px;
|
|
31387
|
+
.c3ni091 .select-wrapper .select {
|
|
31388
|
+
width: 100%;
|
|
30775
31389
|
}
|
|
30776
|
-
|
|
30777
|
-
|
|
30778
|
-
font-family: Inter;
|
|
30779
|
-
font-style: normal;
|
|
30780
|
-
font-weight: bold;
|
|
30781
|
-
font-size: 13px;
|
|
30782
|
-
line-height: 20px;
|
|
31390
|
+
.c3ni091 .radio-wrapper {
|
|
31391
|
+
margin-top: 24px;
|
|
30783
31392
|
}
|
|
30784
|
-
|
|
30785
|
-
|
|
30786
|
-
font-family: Inter;
|
|
30787
|
-
font-style: normal;
|
|
30788
|
-
font-weight: normal;
|
|
30789
|
-
font-size: 13px;
|
|
30790
|
-
line-height: 20px;
|
|
31393
|
+
.c3ni091 div.form-item {
|
|
31394
|
+
width: 100%;
|
|
30791
31395
|
}
|
|
30792
31396
|
|
|
30793
|
-
.
|
|
30794
|
-
font-
|
|
30795
|
-
font-
|
|
30796
|
-
|
|
30797
|
-
|
|
30798
|
-
line-height: 20px;
|
|
31397
|
+
.d105ju2d {
|
|
31398
|
+
font-size: 14px;
|
|
31399
|
+
font-weight: 500;
|
|
31400
|
+
color: #3e4652;
|
|
31401
|
+
line-height: 18px;
|
|
30799
31402
|
}
|
|
30800
|
-
|
|
30801
|
-
|
|
30802
|
-
font-family: Inter;
|
|
30803
|
-
font-style: normal;
|
|
30804
|
-
font-weight: bold;
|
|
30805
|
-
font-size: 13px;
|
|
30806
|
-
line-height: 20px;
|
|
31403
|
+
.d105ju2d + .d105ju2d {
|
|
31404
|
+
margin-top: 16px;
|
|
30807
31405
|
}
|
|
30808
|
-
|
|
30809
|
-
|
|
30810
|
-
font-family: Inter;
|
|
30811
|
-
font-style: normal;
|
|
30812
|
-
font-weight: normal;
|
|
30813
|
-
text-transform: uppercase;
|
|
30814
|
-
font-feature-settings: "cpsp" on;
|
|
30815
|
-
font-size: 13px;
|
|
30816
|
-
line-height: 20px;
|
|
31406
|
+
.d105ju2d + * {
|
|
31407
|
+
margin-top: 16px;
|
|
30817
31408
|
}
|
|
30818
31409
|
|
|
30819
|
-
.
|
|
30820
|
-
font-
|
|
30821
|
-
|
|
30822
|
-
|
|
30823
|
-
text-transform: uppercase;
|
|
30824
|
-
font-feature-settings: "cpsp" on;
|
|
30825
|
-
font-size: 13px;
|
|
30826
|
-
line-height: 20px;
|
|
31410
|
+
.lh0l62z.d105ju2d {
|
|
31411
|
+
font-size: 12px;
|
|
31412
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31413
|
+
margin-top: 12px;
|
|
30827
31414
|
}
|
|
30828
31415
|
|
|
30829
|
-
.
|
|
30830
|
-
font-family: Inter;
|
|
30831
|
-
font-style: normal;
|
|
30832
|
-
font-weight: normal;
|
|
30833
|
-
font-size: 12px;
|
|
31416
|
+
.r1o4v2oc.lh0l62z.d105ju2d {
|
|
30834
31417
|
line-height: 18px;
|
|
31418
|
+
font-weight: 500;
|
|
31419
|
+
margin-top: 0;
|
|
31420
|
+
white-space: initial;
|
|
30835
31421
|
}
|
|
30836
31422
|
|
|
30837
|
-
.
|
|
30838
|
-
|
|
30839
|
-
|
|
31423
|
+
.r1skkc3l {
|
|
31424
|
+
display: block;
|
|
31425
|
+
}
|
|
31426
|
+
.r1skkc3l span {
|
|
31427
|
+
font-size: 14px;
|
|
30840
31428
|
font-weight: 500;
|
|
31429
|
+
line-height: 32px;
|
|
31430
|
+
color: #3e4652;
|
|
31431
|
+
}
|
|
31432
|
+
|
|
31433
|
+
.c3cobmo {
|
|
31434
|
+
margin-top: 16px;
|
|
31435
|
+
padding: 8px;
|
|
31436
|
+
border-radius: 6px;
|
|
31437
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31438
|
+
color: rgba(44, 56, 82, 0.6);
|
|
30841
31439
|
font-size: 12px;
|
|
31440
|
+
}
|
|
31441
|
+
.c3cobmo div {
|
|
31442
|
+
line-height: 20px;
|
|
31443
|
+
display: flex;
|
|
31444
|
+
align-items: center;
|
|
31445
|
+
word-break: break-all;
|
|
31446
|
+
}
|
|
31447
|
+
.c3cobmo .title {
|
|
31448
|
+
font-weight: 700;
|
|
30842
31449
|
line-height: 18px;
|
|
31450
|
+
margin: 4px 0;
|
|
30843
31451
|
}
|
|
30844
31452
|
|
|
30845
|
-
.
|
|
31453
|
+
.dsnbhzf {
|
|
30846
31454
|
font-family: Inter;
|
|
30847
31455
|
font-style: normal;
|
|
30848
31456
|
font-weight: bold;
|
|
30849
|
-
font-size:
|
|
30850
|
-
line-height:
|
|
31457
|
+
font-size: 32px;
|
|
31458
|
+
line-height: 40px;
|
|
30851
31459
|
}
|
|
30852
31460
|
|
|
30853
|
-
.
|
|
31461
|
+
.d1mvo22k {
|
|
30854
31462
|
font-family: Inter;
|
|
30855
31463
|
font-style: normal;
|
|
30856
|
-
font-weight:
|
|
30857
|
-
font-size:
|
|
30858
|
-
line-height:
|
|
31464
|
+
font-weight: bold;
|
|
31465
|
+
font-size: 24px;
|
|
31466
|
+
line-height: 32px;
|
|
30859
31467
|
}
|
|
30860
31468
|
|
|
30861
|
-
.
|
|
31469
|
+
.d1b444tr {
|
|
30862
31470
|
font-family: Inter;
|
|
30863
31471
|
font-style: normal;
|
|
30864
|
-
font-weight:
|
|
30865
|
-
font-size:
|
|
30866
|
-
line-height:
|
|
31472
|
+
font-weight: normal;
|
|
31473
|
+
font-size: 32px;
|
|
31474
|
+
line-height: 40px;
|
|
30867
31475
|
}
|
|
30868
31476
|
|
|
30869
|
-
.
|
|
31477
|
+
.dvs0kue {
|
|
30870
31478
|
font-family: Inter;
|
|
30871
31479
|
font-style: normal;
|
|
30872
31480
|
font-weight: bold;
|
|
30873
|
-
font-size:
|
|
30874
|
-
line-height:
|
|
31481
|
+
font-size: 20px;
|
|
31482
|
+
line-height: 24px;
|
|
30875
31483
|
}
|
|
30876
31484
|
|
|
30877
|
-
.
|
|
31485
|
+
.d1hcbfcq {
|
|
30878
31486
|
font-family: Inter;
|
|
30879
31487
|
font-style: normal;
|
|
30880
31488
|
font-weight: normal;
|
|
30881
|
-
|
|
30882
|
-
|
|
30883
|
-
font-size: 12px;
|
|
30884
|
-
line-height: 18px;
|
|
31489
|
+
font-size: 20px;
|
|
31490
|
+
line-height: 24px;
|
|
30885
31491
|
}
|
|
30886
31492
|
|
|
30887
|
-
.
|
|
31493
|
+
.d1cz922v {
|
|
30888
31494
|
font-family: Inter;
|
|
30889
31495
|
font-style: normal;
|
|
30890
31496
|
font-weight: bold;
|
|
30891
|
-
|
|
30892
|
-
|
|
30893
|
-
font-size: 12px;
|
|
30894
|
-
line-height: 18px;
|
|
31497
|
+
font-size: 18px;
|
|
31498
|
+
line-height: 22px;
|
|
30895
31499
|
}
|
|
30896
31500
|
|
|
30897
|
-
.
|
|
31501
|
+
.d3nzbrm {
|
|
30898
31502
|
font-family: Inter;
|
|
30899
31503
|
font-style: normal;
|
|
30900
31504
|
font-weight: normal;
|
|
30901
|
-
font-size:
|
|
30902
|
-
line-height:
|
|
31505
|
+
font-size: 18px;
|
|
31506
|
+
line-height: 22px;
|
|
30903
31507
|
}
|
|
30904
31508
|
|
|
30905
|
-
.
|
|
31509
|
+
.h1g0p5ob {
|
|
30906
31510
|
font-family: Inter;
|
|
30907
31511
|
font-style: normal;
|
|
30908
|
-
font-weight:
|
|
30909
|
-
font-size:
|
|
30910
|
-
line-height:
|
|
31512
|
+
font-weight: bold;
|
|
31513
|
+
font-size: 16px;
|
|
31514
|
+
line-height: 22px;
|
|
30911
31515
|
}
|
|
30912
31516
|
|
|
30913
|
-
.
|
|
31517
|
+
.hydo2ej {
|
|
30914
31518
|
font-family: Inter;
|
|
30915
31519
|
font-style: normal;
|
|
30916
31520
|
font-weight: normal;
|
|
30917
|
-
font-size:
|
|
30918
|
-
line-height:
|
|
31521
|
+
font-size: 16px;
|
|
31522
|
+
line-height: 22px;
|
|
30919
31523
|
}
|
|
30920
31524
|
|
|
30921
|
-
.
|
|
31525
|
+
.h1hbuq0r {
|
|
30922
31526
|
font-family: Inter;
|
|
30923
31527
|
font-style: normal;
|
|
30924
|
-
font-weight:
|
|
30925
|
-
font-size:
|
|
30926
|
-
line-height:
|
|
31528
|
+
font-weight: bold;
|
|
31529
|
+
font-size: 14px;
|
|
31530
|
+
line-height: 20px;
|
|
30927
31531
|
}
|
|
30928
31532
|
|
|
30929
|
-
.
|
|
31533
|
+
.h13bondg {
|
|
30930
31534
|
font-family: Inter;
|
|
30931
31535
|
font-style: normal;
|
|
30932
31536
|
font-weight: normal;
|
|
30933
|
-
font-
|
|
30934
|
-
font-size: 13px;
|
|
31537
|
+
font-size: 14px;
|
|
30935
31538
|
line-height: 20px;
|
|
30936
31539
|
}
|
|
30937
31540
|
|
|
30938
|
-
.
|
|
31541
|
+
.h1mhvdlx {
|
|
30939
31542
|
font-family: Inter;
|
|
30940
31543
|
font-style: normal;
|
|
30941
|
-
font-weight:
|
|
30942
|
-
font-
|
|
30943
|
-
|
|
30944
|
-
line-height: 20px;
|
|
31544
|
+
font-weight: bold;
|
|
31545
|
+
font-size: 12px;
|
|
31546
|
+
line-height: 18px;
|
|
30945
31547
|
}
|
|
30946
31548
|
|
|
30947
|
-
.
|
|
31549
|
+
.h1inmfq6 {
|
|
30948
31550
|
font-family: Inter;
|
|
30949
31551
|
font-style: normal;
|
|
30950
31552
|
font-weight: normal;
|
|
30951
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
30952
31553
|
font-size: 12px;
|
|
30953
31554
|
line-height: 18px;
|
|
30954
31555
|
}
|
|
30955
31556
|
|
|
30956
|
-
.
|
|
31557
|
+
.h1kfc0la {
|
|
30957
31558
|
font-family: Inter;
|
|
30958
31559
|
font-style: normal;
|
|
30959
|
-
font-weight:
|
|
30960
|
-
|
|
31560
|
+
font-weight: bold;
|
|
31561
|
+
text-transform: uppercase;
|
|
31562
|
+
font-feature-settings: "cpsp" on;
|
|
30961
31563
|
font-size: 12px;
|
|
30962
31564
|
line-height: 18px;
|
|
30963
31565
|
}
|
|
30964
31566
|
|
|
30965
|
-
.
|
|
31567
|
+
.h10xnyuu {
|
|
30966
31568
|
font-family: Inter;
|
|
30967
31569
|
font-style: normal;
|
|
30968
31570
|
font-weight: normal;
|
|
30969
|
-
|
|
31571
|
+
text-transform: uppercase;
|
|
31572
|
+
font-feature-settings: "cpsp" on;
|
|
30970
31573
|
font-size: 12px;
|
|
30971
31574
|
line-height: 18px;
|
|
30972
31575
|
}
|
|
30973
31576
|
|
|
30974
|
-
.
|
|
31577
|
+
.lrcmi0v {
|
|
30975
31578
|
font-family: Inter;
|
|
30976
31579
|
font-style: normal;
|
|
30977
|
-
font-weight:
|
|
30978
|
-
font-
|
|
30979
|
-
|
|
30980
|
-
line-height: 18px;
|
|
31580
|
+
font-weight: normal;
|
|
31581
|
+
font-size: 16px;
|
|
31582
|
+
line-height: 24px;
|
|
30981
31583
|
}
|
|
30982
31584
|
|
|
30983
|
-
.
|
|
31585
|
+
.lzt43lp {
|
|
30984
31586
|
font-family: Inter;
|
|
30985
31587
|
font-style: normal;
|
|
30986
31588
|
font-weight: bold;
|
|
30987
|
-
font-feature-settings: "zero" on;
|
|
30988
31589
|
font-size: 16px;
|
|
30989
31590
|
line-height: 24px;
|
|
30990
31591
|
}
|
|
30991
31592
|
|
|
30992
|
-
.
|
|
31593
|
+
.l5yc9nt {
|
|
30993
31594
|
font-family: Inter;
|
|
30994
31595
|
font-style: normal;
|
|
30995
31596
|
font-weight: normal;
|
|
30996
|
-
font-size:
|
|
30997
|
-
line-height:
|
|
30998
|
-
}
|
|
30999
|
-
|
|
31000
|
-
.skwah65 {
|
|
31001
|
-
height: 8px;
|
|
31002
|
-
box-sizing: border-box;
|
|
31003
|
-
border-radius: 2px;
|
|
31004
|
-
background: #f5f7fa;
|
|
31005
|
-
display: flex;
|
|
31006
|
-
width: 100%;
|
|
31007
|
-
overflow: hidden;
|
|
31008
|
-
}
|
|
31009
|
-
.skwah65 .stack-bar-item + .stack-bar-item {
|
|
31010
|
-
margin-left: 1px;
|
|
31011
|
-
}
|
|
31012
|
-
|
|
31013
|
-
.cnujxq2 {
|
|
31014
|
-
display: flex;
|
|
31015
|
-
flex-direction: column;
|
|
31016
|
-
}
|
|
31017
|
-
|
|
31018
|
-
.m7s48ia {
|
|
31019
|
-
max-width: 1120px;
|
|
31020
|
-
width: 100%;
|
|
31021
|
-
margin: 0 auto;
|
|
31022
|
-
height: 100%;
|
|
31023
|
-
}
|
|
31024
|
-
|
|
31025
|
-
.wt5zbg6 {
|
|
31026
|
-
max-width: 1120px;
|
|
31027
|
-
width: 100%;
|
|
31028
|
-
margin: 0 auto;
|
|
31029
|
-
display: flex;
|
|
31030
|
-
}
|
|
31031
|
-
.wt5zbg6 .left,
|
|
31032
|
-
.wt5zbg6 .right {
|
|
31033
|
-
flex-grow: 0;
|
|
31034
|
-
flex-shrink: 0;
|
|
31035
|
-
flex-basis: 21%;
|
|
31036
|
-
}
|
|
31037
|
-
.wt5zbg6 .left {
|
|
31038
|
-
display: flex;
|
|
31039
|
-
justify-content: flex-end;
|
|
31040
|
-
padding-right: 44px;
|
|
31041
|
-
}
|
|
31042
|
-
.wt5zbg6 .right {
|
|
31043
|
-
padding-left: 44px;
|
|
31044
|
-
}
|
|
31045
|
-
.wt5zbg6 .middle {
|
|
31046
|
-
margin-bottom: 40px;
|
|
31047
|
-
flex-grow: 0;
|
|
31048
|
-
flex-shrink: 0;
|
|
31049
|
-
flex-basis: 58%;
|
|
31050
|
-
}
|
|
31051
|
-
.wt5zbg6 .middle .form-base-field {
|
|
31052
|
-
width: 100%;
|
|
31053
|
-
}
|
|
31054
|
-
.wt5zbg6 .middle .form-base-field .form-base-field {
|
|
31055
|
-
width: auto;
|
|
31056
|
-
}
|
|
31057
|
-
|
|
31058
|
-
.h18jprzg .ant-modal-header {
|
|
31059
|
-
margin: 0 auto;
|
|
31060
|
-
width: 100%;
|
|
31061
|
-
max-width: 648px;
|
|
31062
|
-
}
|
|
31063
|
-
.h18jprzg .ant-modal-header .ant-modal-title {
|
|
31064
|
-
margin-left: 0;
|
|
31065
|
-
}
|
|
31066
|
-
.h18jprzg .ant-modal-body {
|
|
31067
|
-
margin: 0 auto;
|
|
31068
|
-
padding: 0;
|
|
31069
|
-
width: 100%;
|
|
31070
|
-
max-width: 648px;
|
|
31071
|
-
overflow: hidden;
|
|
31072
|
-
}
|
|
31073
|
-
.h18jprzg .ant-modal-body .horizontal-steps-wrapper {
|
|
31074
|
-
margin-bottom: 40px;
|
|
31075
|
-
}
|
|
31076
|
-
.h18jprzg .ant-modal-body .horizontal-content-wrapper {
|
|
31077
|
-
height: calc(100vh - 225px);
|
|
31078
|
-
overflow-y: auto;
|
|
31079
|
-
}
|
|
31080
|
-
.h18jprzg .ant-modal-footer .footer-content {
|
|
31081
|
-
margin: 0 auto;
|
|
31082
|
-
max-width: 648px;
|
|
31083
|
-
}
|
|
31084
|
-
|
|
31085
|
-
.h16z9xgz .ant-modal-header {
|
|
31086
|
-
margin: 0 auto;
|
|
31087
|
-
width: 100%;
|
|
31088
|
-
max-width: 1024px;
|
|
31089
|
-
}
|
|
31090
|
-
.h16z9xgz .ant-modal-header .ant-modal-title {
|
|
31091
|
-
margin-left: 0;
|
|
31092
|
-
}
|
|
31093
|
-
.h16z9xgz .ant-modal-body {
|
|
31094
|
-
margin: 0 auto;
|
|
31095
|
-
padding: 0;
|
|
31096
|
-
width: 100%;
|
|
31097
|
-
max-width: 1024px;
|
|
31098
|
-
overflow: hidden;
|
|
31099
|
-
}
|
|
31100
|
-
.h16z9xgz .ant-modal-body .horizontal-steps-wrapper {
|
|
31101
|
-
margin-bottom: 40px;
|
|
31102
|
-
}
|
|
31103
|
-
.h16z9xgz .ant-modal-body .horizontal-content-wrapper {
|
|
31104
|
-
height: calc(100vh - 225px);
|
|
31105
|
-
overflow-y: auto;
|
|
31106
|
-
}
|
|
31107
|
-
.h16z9xgz .ant-modal-footer .footer-content {
|
|
31108
|
-
margin: 0 auto;
|
|
31109
|
-
max-width: 1024px;
|
|
31110
|
-
}
|
|
31111
|
-
|
|
31112
|
-
.f1lrhghm {
|
|
31113
|
-
flex: 1;
|
|
31114
|
-
}
|
|
31115
|
-
.f1lrhghm label {
|
|
31116
|
-
font-size: 13px;
|
|
31117
|
-
line-height: 20px;
|
|
31118
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31119
|
-
}
|
|
31120
|
-
.f1lrhghm .title {
|
|
31121
|
-
font-size: 14px;
|
|
31122
|
-
line-height: 20px;
|
|
31123
|
-
color: #2d3a56;
|
|
31124
|
-
margin-bottom: 12px;
|
|
31125
|
-
}
|
|
31126
|
-
.f1lrhghm.connect-cluster .title {
|
|
31127
|
-
padding-bottom: 26px;
|
|
31128
|
-
}
|
|
31129
|
-
|
|
31130
|
-
.f18ot8em {
|
|
31131
|
-
padding: 25px 0 15px 0;
|
|
31132
|
-
border-bottom: 1px solid #e1e5eb;
|
|
31133
|
-
margin-bottom: 16px;
|
|
31134
|
-
}
|
|
31135
|
-
|
|
31136
|
-
.f1l1g2k0 {
|
|
31137
|
-
display: flex;
|
|
31138
|
-
align-items: center;
|
|
31139
|
-
margin-bottom: 8px;
|
|
31140
|
-
}
|
|
31141
|
-
.f1l1g2k0 > label {
|
|
31142
|
-
width: 216px;
|
|
31143
|
-
}
|
|
31144
|
-
.f1l1g2k0 > label + * {
|
|
31145
|
-
width: 100%;
|
|
31146
|
-
}
|
|
31147
|
-
.f1l1g2k0 .ant-select {
|
|
31148
|
-
width: 100%;
|
|
31597
|
+
font-size: 16px;
|
|
31598
|
+
line-height: 24px;
|
|
31149
31599
|
}
|
|
31150
31600
|
|
|
31151
|
-
.
|
|
31152
|
-
|
|
31153
|
-
|
|
31601
|
+
.l1fbkbzo {
|
|
31602
|
+
font-family: Inter;
|
|
31603
|
+
font-style: normal;
|
|
31604
|
+
font-weight: bold;
|
|
31605
|
+
font-size: 16px;
|
|
31606
|
+
line-height: 24px;
|
|
31154
31607
|
}
|
|
31155
31608
|
|
|
31156
|
-
.
|
|
31157
|
-
|
|
31158
|
-
|
|
31159
|
-
|
|
31160
|
-
|
|
31609
|
+
.lahvcax {
|
|
31610
|
+
font-family: Inter;
|
|
31611
|
+
font-style: normal;
|
|
31612
|
+
font-weight: normal;
|
|
31613
|
+
text-transform: uppercase;
|
|
31614
|
+
font-feature-settings: "cpsp" on;
|
|
31615
|
+
font-size: 16px;
|
|
31616
|
+
line-height: 24px;
|
|
31161
31617
|
}
|
|
31162
31618
|
|
|
31163
|
-
.
|
|
31164
|
-
|
|
31165
|
-
|
|
31166
|
-
|
|
31167
|
-
|
|
31619
|
+
.l11q3pxd {
|
|
31620
|
+
font-family: Inter;
|
|
31621
|
+
font-style: normal;
|
|
31622
|
+
font-weight: bold;
|
|
31623
|
+
text-transform: uppercase;
|
|
31624
|
+
font-feature-settings: "cpsp" on;
|
|
31625
|
+
font-size: 16px;
|
|
31626
|
+
line-height: 24px;
|
|
31168
31627
|
}
|
|
31169
31628
|
|
|
31170
|
-
.
|
|
31171
|
-
|
|
31172
|
-
|
|
31173
|
-
|
|
31174
|
-
|
|
31175
|
-
|
|
31176
|
-
border-radius: 50%;
|
|
31177
|
-
margin: 0 4px;
|
|
31629
|
+
.lfuc2qu {
|
|
31630
|
+
font-family: Inter;
|
|
31631
|
+
font-style: normal;
|
|
31632
|
+
font-weight: normal;
|
|
31633
|
+
font-size: 14px;
|
|
31634
|
+
line-height: 22px;
|
|
31178
31635
|
}
|
|
31179
31636
|
|
|
31180
|
-
.
|
|
31181
|
-
|
|
31182
|
-
|
|
31183
|
-
|
|
31184
|
-
|
|
31185
|
-
|
|
31186
|
-
padding: 35px 0 24px;
|
|
31187
|
-
border: none;
|
|
31188
|
-
}
|
|
31189
|
-
.m177r7a3 .ant-modal-header .ant-modal-title {
|
|
31190
|
-
font-size: 30px;
|
|
31191
|
-
}
|
|
31192
|
-
.m177r7a3 .ant-modal-body {
|
|
31193
|
-
padding: 4px 0 2px;
|
|
31194
|
-
}
|
|
31195
|
-
.m177r7a3 .ant-modal-footer {
|
|
31196
|
-
border: none;
|
|
31637
|
+
.l1jmp8r0 {
|
|
31638
|
+
font-family: Inter;
|
|
31639
|
+
font-style: normal;
|
|
31640
|
+
font-weight: 500;
|
|
31641
|
+
font-size: 14px;
|
|
31642
|
+
line-height: 22px;
|
|
31197
31643
|
}
|
|
31198
31644
|
|
|
31199
|
-
.
|
|
31200
|
-
font-
|
|
31201
|
-
|
|
31645
|
+
.lcnm221 {
|
|
31646
|
+
font-family: Inter;
|
|
31647
|
+
font-style: normal;
|
|
31202
31648
|
font-weight: bold;
|
|
31203
|
-
|
|
31204
|
-
|
|
31205
|
-
border-radius: 4px;
|
|
31206
|
-
display: inline-block;
|
|
31207
|
-
background: var(--t1wwio3v-0);
|
|
31208
|
-
}
|
|
31209
|
-
.t1wwio3v:not(:first-child) {
|
|
31210
|
-
margin-left: 4px;
|
|
31649
|
+
font-size: 14px;
|
|
31650
|
+
line-height: 22px;
|
|
31211
31651
|
}
|
|
31212
31652
|
|
|
31213
|
-
.
|
|
31214
|
-
|
|
31215
|
-
|
|
31216
|
-
|
|
31217
|
-
|
|
31218
|
-
|
|
31653
|
+
.lu1z2n5 {
|
|
31654
|
+
font-family: Inter;
|
|
31655
|
+
font-style: normal;
|
|
31656
|
+
font-weight: normal;
|
|
31657
|
+
font-size: 14px;
|
|
31658
|
+
line-height: 22px;
|
|
31219
31659
|
}
|
|
31220
31660
|
|
|
31221
|
-
.
|
|
31222
|
-
font-
|
|
31661
|
+
.l1r59djn {
|
|
31662
|
+
font-family: Inter;
|
|
31663
|
+
font-style: normal;
|
|
31223
31664
|
font-weight: bold;
|
|
31224
|
-
|
|
31225
|
-
|
|
31226
|
-
margin-left: 2px;
|
|
31227
|
-
margin-right: 2px;
|
|
31228
|
-
border: 1px solid rgba(213, 219, 227, 0.6);
|
|
31229
|
-
border-radius: 4px;
|
|
31665
|
+
font-size: 14px;
|
|
31666
|
+
line-height: 22px;
|
|
31230
31667
|
}
|
|
31231
31668
|
|
|
31232
|
-
.
|
|
31233
|
-
|
|
31234
|
-
|
|
31235
|
-
|
|
31236
|
-
|
|
31237
|
-
|
|
31238
|
-
|
|
31239
|
-
|
|
31240
|
-
}
|
|
31241
|
-
.f4mi9eq.form-item-compact.form-item + .f4mi9eq.form-item-compact.form-item {
|
|
31242
|
-
margin-top: 8px;
|
|
31243
|
-
}
|
|
31244
|
-
.f4mi9eq .form-item {
|
|
31245
|
-
width: auto;
|
|
31669
|
+
.ljm2911 {
|
|
31670
|
+
font-family: Inter;
|
|
31671
|
+
font-style: normal;
|
|
31672
|
+
font-weight: normal;
|
|
31673
|
+
text-transform: uppercase;
|
|
31674
|
+
font-feature-settings: "cpsp" on;
|
|
31675
|
+
font-size: 14px;
|
|
31676
|
+
line-height: 22px;
|
|
31246
31677
|
}
|
|
31247
|
-
|
|
31248
|
-
|
|
31249
|
-
|
|
31678
|
+
|
|
31679
|
+
.l124mzmr {
|
|
31680
|
+
font-family: Inter;
|
|
31681
|
+
font-style: normal;
|
|
31682
|
+
font-weight: bold;
|
|
31683
|
+
text-transform: uppercase;
|
|
31684
|
+
font-feature-settings: "cpsp" on;
|
|
31685
|
+
font-size: 14px;
|
|
31686
|
+
line-height: 22px;
|
|
31250
31687
|
}
|
|
31251
|
-
|
|
31252
|
-
|
|
31253
|
-
|
|
31254
|
-
|
|
31255
|
-
|
|
31688
|
+
|
|
31689
|
+
.lb3chel {
|
|
31690
|
+
font-family: Inter;
|
|
31691
|
+
font-style: normal;
|
|
31692
|
+
font-weight: normal;
|
|
31256
31693
|
font-size: 13px;
|
|
31257
|
-
line-height:
|
|
31258
|
-
color: #8e9aa9;
|
|
31694
|
+
line-height: 20px;
|
|
31259
31695
|
}
|
|
31260
|
-
|
|
31261
|
-
|
|
31696
|
+
|
|
31697
|
+
.lv9jstu {
|
|
31698
|
+
font-family: Inter;
|
|
31699
|
+
font-style: normal;
|
|
31700
|
+
font-weight: 600;
|
|
31262
31701
|
font-size: 13px;
|
|
31263
|
-
|
|
31264
|
-
}
|
|
31265
|
-
.f4mi9eq .form-item-label.label-right {
|
|
31266
|
-
text-align: right;
|
|
31267
|
-
}
|
|
31268
|
-
.f4mi9eq .form-item-label,
|
|
31269
|
-
.f4mi9eq .form-item-control {
|
|
31270
|
-
line-height: 32px;
|
|
31271
|
-
}
|
|
31272
|
-
.f4mi9eq .form-item-control .form-item-error {
|
|
31273
|
-
line-height: 18px;
|
|
31274
|
-
}
|
|
31275
|
-
.f4mi9eq .form-item-children {
|
|
31276
|
-
width: 100%;
|
|
31277
|
-
}
|
|
31278
|
-
.f4mi9eq .form-item-children > *:only-child.ant-select, .f4mi9eq .form-item-children > *:only-child.ant-radio-group, .f4mi9eq .form-item-children > *:only-child.ant-checkbox-group {
|
|
31279
|
-
width: 100%;
|
|
31280
|
-
}
|
|
31281
|
-
.f4mi9eq .form-item-error {
|
|
31282
|
-
color: #e75a3a;
|
|
31283
|
-
height: 0;
|
|
31284
|
-
overflow: hidden;
|
|
31285
|
-
}
|
|
31286
|
-
.f4mi9eq .form-item-error-enter-done {
|
|
31287
|
-
margin-top: 4px;
|
|
31288
|
-
height: auto;
|
|
31289
|
-
overflow: auto;
|
|
31290
|
-
}
|
|
31291
|
-
.f4mi9eq.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error > input:not(.ant-input),
|
|
31292
|
-
.f4mi9eq.form-base-field:not(.form-base-field-array) .form-item-control.field-error .form-item-error :not(.ant-select) input {
|
|
31293
|
-
border: 1px solid #e75a3a;
|
|
31294
|
-
color: #e75a3a;
|
|
31702
|
+
line-height: 20px;
|
|
31295
31703
|
}
|
|
31296
31704
|
|
|
31297
|
-
.
|
|
31298
|
-
|
|
31705
|
+
.lwqlh3x {
|
|
31706
|
+
font-family: Inter;
|
|
31707
|
+
font-style: normal;
|
|
31299
31708
|
font-weight: bold;
|
|
31300
|
-
|
|
31301
|
-
|
|
31302
|
-
margin-bottom: 16px;
|
|
31303
|
-
}
|
|
31304
|
-
.fh0ewl8:not(:first-of-type) {
|
|
31305
|
-
margin-top: 16px;
|
|
31709
|
+
font-size: 13px;
|
|
31710
|
+
line-height: 20px;
|
|
31306
31711
|
}
|
|
31307
31712
|
|
|
31308
|
-
.
|
|
31309
|
-
|
|
31310
|
-
|
|
31311
|
-
|
|
31312
|
-
|
|
31313
|
-
|
|
31314
|
-
cursor: pointer;
|
|
31315
|
-
transition: all 200ms ease-out 40ms;
|
|
31316
|
-
}
|
|
31317
|
-
.e1qrlvot:before, .e1qrlvot:after {
|
|
31318
|
-
content: "";
|
|
31319
|
-
width: 1px;
|
|
31320
|
-
height: 6px;
|
|
31321
|
-
border-radius: 1px;
|
|
31322
|
-
background: #ccd4e3;
|
|
31323
|
-
position: relative;
|
|
31324
|
-
right: 2px;
|
|
31325
|
-
transform: rotate(-45deg);
|
|
31713
|
+
.lalum9y {
|
|
31714
|
+
font-family: Inter;
|
|
31715
|
+
font-style: normal;
|
|
31716
|
+
font-weight: normal;
|
|
31717
|
+
font-size: 13px;
|
|
31718
|
+
line-height: 20px;
|
|
31326
31719
|
}
|
|
31327
|
-
|
|
31328
|
-
|
|
31329
|
-
|
|
31720
|
+
|
|
31721
|
+
.l1t6dj5o {
|
|
31722
|
+
font-family: Inter;
|
|
31723
|
+
font-style: normal;
|
|
31724
|
+
font-weight: 600;
|
|
31725
|
+
font-size: 13px;
|
|
31726
|
+
line-height: 20px;
|
|
31330
31727
|
}
|
|
31331
31728
|
|
|
31332
|
-
.
|
|
31333
|
-
|
|
31334
|
-
|
|
31335
|
-
|
|
31729
|
+
.l12f6ic {
|
|
31730
|
+
font-family: Inter;
|
|
31731
|
+
font-style: normal;
|
|
31732
|
+
font-weight: bold;
|
|
31733
|
+
font-size: 13px;
|
|
31734
|
+
line-height: 20px;
|
|
31336
31735
|
}
|
|
31337
|
-
|
|
31338
|
-
.
|
|
31339
|
-
|
|
31736
|
+
|
|
31737
|
+
.l7gmukq {
|
|
31738
|
+
font-family: Inter;
|
|
31739
|
+
font-style: normal;
|
|
31740
|
+
font-weight: normal;
|
|
31741
|
+
text-transform: uppercase;
|
|
31742
|
+
font-feature-settings: "cpsp" on;
|
|
31743
|
+
font-size: 13px;
|
|
31744
|
+
line-height: 20px;
|
|
31340
31745
|
}
|
|
31341
|
-
|
|
31342
|
-
.
|
|
31343
|
-
|
|
31746
|
+
|
|
31747
|
+
.lkwl0yp {
|
|
31748
|
+
font-family: Inter;
|
|
31749
|
+
font-style: normal;
|
|
31750
|
+
font-weight: bold;
|
|
31751
|
+
text-transform: uppercase;
|
|
31752
|
+
font-feature-settings: "cpsp" on;
|
|
31753
|
+
font-size: 13px;
|
|
31754
|
+
line-height: 20px;
|
|
31344
31755
|
}
|
|
31345
31756
|
|
|
31346
|
-
.
|
|
31347
|
-
|
|
31348
|
-
|
|
31349
|
-
|
|
31350
|
-
background: rgba(255, 187, 0, 0.1);
|
|
31351
|
-
border-radius: 6px;
|
|
31352
|
-
color: #e07f00;
|
|
31757
|
+
.l10knv48 {
|
|
31758
|
+
font-family: Inter;
|
|
31759
|
+
font-style: normal;
|
|
31760
|
+
font-weight: normal;
|
|
31353
31761
|
font-size: 12px;
|
|
31354
31762
|
line-height: 18px;
|
|
31355
31763
|
}
|
|
31356
|
-
.n1k9qi4r .icon-wrapper {
|
|
31357
|
-
margin-right: 10px;
|
|
31358
|
-
height: 18px;
|
|
31359
|
-
}
|
|
31360
31764
|
|
|
31361
|
-
.
|
|
31362
|
-
|
|
31363
|
-
|
|
31364
|
-
|
|
31365
|
-
background: rgba(225, 230, 241, 0.6);
|
|
31366
|
-
border-radius: 6px;
|
|
31367
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31765
|
+
.l6526ld {
|
|
31766
|
+
font-family: Inter;
|
|
31767
|
+
font-style: normal;
|
|
31768
|
+
font-weight: 500;
|
|
31368
31769
|
font-size: 12px;
|
|
31369
31770
|
line-height: 18px;
|
|
31370
31771
|
}
|
|
31371
|
-
.n16fsg9x .icon-wrapper {
|
|
31372
|
-
margin-right: 10px;
|
|
31373
|
-
height: 18px;
|
|
31374
|
-
}
|
|
31375
31772
|
|
|
31376
|
-
.
|
|
31377
|
-
|
|
31378
|
-
|
|
31379
|
-
|
|
31380
|
-
background: rgba(0, 136, 255, 0.1);
|
|
31381
|
-
border-radius: 6px;
|
|
31382
|
-
color: #005ed1;
|
|
31773
|
+
.l1j81vli {
|
|
31774
|
+
font-family: Inter;
|
|
31775
|
+
font-style: normal;
|
|
31776
|
+
font-weight: bold;
|
|
31383
31777
|
font-size: 12px;
|
|
31384
31778
|
line-height: 18px;
|
|
31385
31779
|
}
|
|
31386
|
-
.i173wxzw .icon-wrapper {
|
|
31387
|
-
margin-right: 10px;
|
|
31388
|
-
height: 18px;
|
|
31389
|
-
}
|
|
31390
31780
|
|
|
31391
|
-
.
|
|
31392
|
-
|
|
31393
|
-
|
|
31781
|
+
.l1x7n1mk {
|
|
31782
|
+
font-family: Inter;
|
|
31783
|
+
font-style: normal;
|
|
31784
|
+
font-weight: normal;
|
|
31394
31785
|
font-size: 12px;
|
|
31395
31786
|
line-height: 18px;
|
|
31396
31787
|
}
|
|
31397
31788
|
|
|
31398
|
-
.
|
|
31399
|
-
|
|
31789
|
+
.l9fqufz {
|
|
31790
|
+
font-family: Inter;
|
|
31791
|
+
font-style: normal;
|
|
31792
|
+
font-weight: 500;
|
|
31400
31793
|
font-size: 12px;
|
|
31401
|
-
|
|
31402
|
-
}
|
|
31403
|
-
|
|
31404
|
-
.okus5hk {
|
|
31405
|
-
display: flex;
|
|
31406
|
-
align-items: center;
|
|
31407
|
-
justify-content: flex-end;
|
|
31408
|
-
}
|
|
31409
|
-
.okus5hk .icon-wrapper {
|
|
31410
|
-
margin-right: 16px;
|
|
31794
|
+
line-height: 18px;
|
|
31411
31795
|
}
|
|
31412
31796
|
|
|
31413
|
-
.
|
|
31414
|
-
|
|
31797
|
+
.l1iwnybd {
|
|
31798
|
+
font-family: Inter;
|
|
31799
|
+
font-style: normal;
|
|
31800
|
+
font-weight: bold;
|
|
31801
|
+
font-size: 12px;
|
|
31802
|
+
line-height: 18px;
|
|
31415
31803
|
}
|
|
31416
31804
|
|
|
31417
|
-
.
|
|
31418
|
-
|
|
31419
|
-
|
|
31420
|
-
|
|
31421
|
-
|
|
31422
|
-
|
|
31423
|
-
|
|
31424
|
-
}
|
|
31425
|
-
.i74cfyt.ant-input.ant-input-lg {
|
|
31426
|
-
padding: 8px 16px;
|
|
31427
|
-
line-height: 22px;
|
|
31428
|
-
}
|
|
31429
|
-
.i74cfyt.ant-input.ant-input-sm {
|
|
31430
|
-
padding: 2px 8px;
|
|
31805
|
+
.lprtm1e {
|
|
31806
|
+
font-family: Inter;
|
|
31807
|
+
font-style: normal;
|
|
31808
|
+
font-weight: normal;
|
|
31809
|
+
text-transform: uppercase;
|
|
31810
|
+
font-feature-settings: "cpsp" on;
|
|
31811
|
+
font-size: 12px;
|
|
31431
31812
|
line-height: 18px;
|
|
31432
31813
|
}
|
|
31433
|
-
|
|
31434
|
-
|
|
31435
|
-
|
|
31436
|
-
|
|
31437
|
-
|
|
31438
|
-
|
|
31439
|
-
|
|
31440
|
-
|
|
31441
|
-
z-index: 1;
|
|
31442
|
-
}
|
|
31443
|
-
.i74cfyt.ant-input.error:not([disabled]), .i74cfyt.ant-picker.error:not([disabled]), .i74cfyt.ant-input-number.error:not([disabled]) {
|
|
31444
|
-
border-color: #e75a3a;
|
|
31445
|
-
color: #e75a3a;
|
|
31446
|
-
}
|
|
31447
|
-
.i74cfyt.ant-input.error:not([disabled]):hover, .i74cfyt.ant-input.error:not([disabled]).__pseudo-states-hover, .i74cfyt.ant-picker.error:not([disabled]):hover, .i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-hover, .i74cfyt.ant-input-number.error:not([disabled]):hover, .i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-hover {
|
|
31448
|
-
border-color: #e75a3a;
|
|
31449
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31450
|
-
}
|
|
31451
|
-
.i74cfyt.ant-input.error:not([disabled]):active, .i74cfyt.ant-input.error:not([disabled]):focus, .i74cfyt.ant-input.error:not([disabled]).__pseudo-states-active, .i74cfyt.ant-input.error:not([disabled]).__pseudo-states-focus, .i74cfyt.ant-picker.error:not([disabled]):active, .i74cfyt.ant-picker.error:not([disabled]):focus, .i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-active, .i74cfyt.ant-picker.error:not([disabled]).__pseudo-states-focus, .i74cfyt.ant-input-number.error:not([disabled]):active, .i74cfyt.ant-input-number.error:not([disabled]):focus, .i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-active, .i74cfyt.ant-input-number.error:not([disabled]).__pseudo-states-focus {
|
|
31452
|
-
border-color: #e75a3a;
|
|
31453
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31454
|
-
}
|
|
31455
|
-
.i74cfyt.ant-input[disabled], .i74cfyt.ant-input.ant-input-disabled, .i74cfyt.ant-input-number[disabled], .i74cfyt.ant-input-number.ant-input-number-disabled {
|
|
31456
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31457
|
-
color: rgba(0, 21, 64, 0.3);
|
|
31458
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31459
|
-
}
|
|
31460
|
-
.i74cfyt.ant-input-affix-wrapper {
|
|
31461
|
-
padding: 5px 12px;
|
|
31462
|
-
border-radius: 6px;
|
|
31463
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31464
|
-
line-height: 20px;
|
|
31465
|
-
color: #2d3a56;
|
|
31466
|
-
transition: height 240ms ease 8ms, border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
31467
|
-
}
|
|
31468
|
-
.i74cfyt.ant-input-affix-wrapper .ant-input-suffix,
|
|
31469
|
-
.i74cfyt.ant-input-affix-wrapper .ant-input-prefix {
|
|
31470
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31471
|
-
}
|
|
31472
|
-
.i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-lg {
|
|
31473
|
-
padding: 8px 16px;
|
|
31474
|
-
line-height: 22px;
|
|
31475
|
-
}
|
|
31476
|
-
.i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-sm {
|
|
31477
|
-
padding: 2px 8px;
|
|
31814
|
+
|
|
31815
|
+
.l1lln87h {
|
|
31816
|
+
font-family: Inter;
|
|
31817
|
+
font-style: normal;
|
|
31818
|
+
font-weight: bold;
|
|
31819
|
+
text-transform: uppercase;
|
|
31820
|
+
font-feature-settings: "cpsp" on;
|
|
31821
|
+
font-size: 12px;
|
|
31478
31822
|
line-height: 18px;
|
|
31479
31823
|
}
|
|
31480
|
-
.i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
31481
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
31482
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31483
|
-
}
|
|
31484
|
-
.i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):active, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):focus, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .i74cfyt.ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
31485
|
-
border-color: #0096ff;
|
|
31486
|
-
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
31487
|
-
}
|
|
31488
|
-
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) {
|
|
31489
|
-
border-color: #e75a3a;
|
|
31490
|
-
}
|
|
31491
|
-
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled) > .ant-input {
|
|
31492
|
-
color: #e75a3a;
|
|
31493
|
-
}
|
|
31494
|
-
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):hover, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-hover {
|
|
31495
|
-
border-color: #e75a3a;
|
|
31496
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
31497
|
-
}
|
|
31498
|
-
.i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):active, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled):focus, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).ant-input-affix-wrapper-focused, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-active, .i74cfyt.ant-input-affix-wrapper.error:not(.ant-input-affix-wrapper-disabled).__pseudo-states-focus {
|
|
31499
|
-
border-color: #e75a3a;
|
|
31500
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
31501
|
-
}
|
|
31502
|
-
.i74cfyt.ant-input-affix-wrapper.ant-input-affix-wrapper-disabled {
|
|
31503
|
-
background: rgba(211, 218, 235, 0.6);
|
|
31504
|
-
color: rgba(0, 21, 64, 0.3);
|
|
31505
|
-
border-color: rgba(172, 186, 211, 0.6);
|
|
31506
|
-
}
|
|
31507
|
-
textarea.i74cfyt.ant-input {
|
|
31508
|
-
transition-property: height;
|
|
31509
|
-
transition-delay: 50ms;
|
|
31510
|
-
}
|
|
31511
|
-
textarea.i74cfyt.ant-input.textarea-large {
|
|
31512
|
-
min-height: 40px;
|
|
31513
|
-
height: 40px;
|
|
31514
|
-
}
|
|
31515
|
-
textarea.i74cfyt.ant-input.textarea-large:focus {
|
|
31516
|
-
height: 80px;
|
|
31517
|
-
}
|
|
31518
|
-
textarea.i74cfyt.ant-input.textarea-middle {
|
|
31519
|
-
min-height: 32px;
|
|
31520
|
-
height: 32px;
|
|
31521
|
-
}
|
|
31522
|
-
textarea.i74cfyt.ant-input.textarea-middle:focus {
|
|
31523
|
-
height: 64px;
|
|
31524
|
-
}
|
|
31525
|
-
textarea.i74cfyt.ant-input.textarea-small {
|
|
31526
|
-
min-height: 24px;
|
|
31527
|
-
height: 24px;
|
|
31528
|
-
}
|
|
31529
|
-
textarea.i74cfyt.ant-input.textarea-small:focus {
|
|
31530
|
-
height: 40px;
|
|
31531
|
-
}
|
|
31532
31824
|
|
|
31533
|
-
.
|
|
31534
|
-
|
|
31535
|
-
|
|
31536
|
-
|
|
31537
|
-
|
|
31538
|
-
|
|
31539
|
-
padding: 6px;
|
|
31540
|
-
height: 32px;
|
|
31541
|
-
cursor: pointer;
|
|
31542
|
-
transition: border 150ms;
|
|
31543
|
-
}
|
|
31544
|
-
.k1ci6977.input-tags:hover {
|
|
31545
|
-
border-color: #0080ff;
|
|
31546
|
-
box-shadow: 0 0 0px 2px rgba(0, 128, 255, 0.1);
|
|
31547
|
-
}
|
|
31548
|
-
.k1ci6977.input-tags.kit-input-suffix-wrapper {
|
|
31549
|
-
padding-right: 30px;
|
|
31550
|
-
}
|
|
31551
|
-
.k1ci6977.input-tags .input-tags-inner {
|
|
31552
|
-
display: flex;
|
|
31553
|
-
}
|
|
31554
|
-
.k1ci6977.input-tags .input-tags-inner .tags-overflow-auto {
|
|
31555
|
-
display: flex;
|
|
31825
|
+
.f2pb48l {
|
|
31826
|
+
font-family: Inter;
|
|
31827
|
+
font-style: normal;
|
|
31828
|
+
font-weight: normal;
|
|
31829
|
+
font-size: 13px;
|
|
31830
|
+
line-height: 20px;
|
|
31556
31831
|
}
|
|
31557
|
-
|
|
31558
|
-
|
|
31559
|
-
|
|
31560
|
-
|
|
31561
|
-
|
|
31832
|
+
|
|
31833
|
+
.fi9emkw {
|
|
31834
|
+
font-family: Inter;
|
|
31835
|
+
font-style: normal;
|
|
31836
|
+
font-weight: normal;
|
|
31837
|
+
font-size: 13px;
|
|
31838
|
+
line-height: 20px;
|
|
31562
31839
|
}
|
|
31563
|
-
|
|
31564
|
-
|
|
31840
|
+
|
|
31841
|
+
.f1nrg7da {
|
|
31842
|
+
font-family: Inter;
|
|
31843
|
+
font-style: normal;
|
|
31844
|
+
font-weight: normal;
|
|
31565
31845
|
font-size: 12px;
|
|
31566
|
-
|
|
31567
|
-
}
|
|
31568
|
-
.k1ci6977.input-tags .input-tag-suffix .anticon-close-circle:hover {
|
|
31569
|
-
color: rgba(0, 0, 0, 0.45);
|
|
31846
|
+
line-height: 18px;
|
|
31570
31847
|
}
|
|
31571
|
-
|
|
31572
|
-
|
|
31573
|
-
|
|
31848
|
+
|
|
31849
|
+
.f17k1i3n {
|
|
31850
|
+
font-family: Inter;
|
|
31851
|
+
font-style: normal;
|
|
31852
|
+
font-weight: normal;
|
|
31853
|
+
font-size: 12px;
|
|
31854
|
+
line-height: 18px;
|
|
31574
31855
|
}
|
|
31575
|
-
|
|
31576
|
-
|
|
31577
|
-
|
|
31578
|
-
|
|
31579
|
-
|
|
31580
|
-
|
|
31581
|
-
|
|
31856
|
+
|
|
31857
|
+
.t1tvuj2e {
|
|
31858
|
+
font-family: Inter;
|
|
31859
|
+
font-style: normal;
|
|
31860
|
+
font-weight: normal;
|
|
31861
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31862
|
+
font-size: 13px;
|
|
31863
|
+
line-height: 20px;
|
|
31582
31864
|
}
|
|
31583
|
-
|
|
31584
|
-
|
|
31585
|
-
|
|
31865
|
+
|
|
31866
|
+
.t17uajlu {
|
|
31867
|
+
font-family: Inter;
|
|
31868
|
+
font-style: normal;
|
|
31869
|
+
font-weight: normal;
|
|
31870
|
+
font-feature-settings: "zero" on;
|
|
31871
|
+
font-size: 13px;
|
|
31872
|
+
line-height: 20px;
|
|
31586
31873
|
}
|
|
31587
|
-
|
|
31588
|
-
|
|
31589
|
-
|
|
31874
|
+
|
|
31875
|
+
.t114zbyz {
|
|
31876
|
+
font-family: Inter;
|
|
31877
|
+
font-style: normal;
|
|
31878
|
+
font-weight: normal;
|
|
31879
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31880
|
+
font-size: 12px;
|
|
31881
|
+
line-height: 18px;
|
|
31590
31882
|
}
|
|
31591
|
-
|
|
31592
|
-
|
|
31883
|
+
|
|
31884
|
+
.t1il0kvi {
|
|
31885
|
+
font-family: Inter;
|
|
31886
|
+
font-style: normal;
|
|
31887
|
+
font-weight: 500;
|
|
31888
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
31889
|
+
font-size: 12px;
|
|
31890
|
+
line-height: 18px;
|
|
31593
31891
|
}
|
|
31594
31892
|
|
|
31595
|
-
|
|
31596
|
-
|
|
31597
|
-
|
|
31893
|
+
.t10dv8p1 {
|
|
31894
|
+
font-family: Inter;
|
|
31895
|
+
font-style: normal;
|
|
31896
|
+
font-weight: normal;
|
|
31897
|
+
font-feature-settings: "zero" on;
|
|
31898
|
+
font-size: 12px;
|
|
31899
|
+
line-height: 18px;
|
|
31598
31900
|
}
|
|
31599
31901
|
|
|
31600
|
-
.
|
|
31601
|
-
|
|
31602
|
-
|
|
31902
|
+
.tc2oqpq {
|
|
31903
|
+
font-family: Inter;
|
|
31904
|
+
font-style: normal;
|
|
31905
|
+
font-weight: 500;
|
|
31906
|
+
font-feature-settings: "zero" on;
|
|
31907
|
+
font-size: 12px;
|
|
31908
|
+
line-height: 18px;
|
|
31603
31909
|
}
|
|
31604
31910
|
|
|
31605
|
-
|
|
31606
|
-
|
|
31607
|
-
|
|
31911
|
+
.tzvddmc {
|
|
31912
|
+
font-family: Inter;
|
|
31913
|
+
font-style: normal;
|
|
31914
|
+
font-weight: bold;
|
|
31915
|
+
font-feature-settings: "zero" on;
|
|
31916
|
+
font-size: 16px;
|
|
31917
|
+
line-height: 24px;
|
|
31608
31918
|
}
|
|
31609
31919
|
|
|
31610
|
-
.
|
|
31611
|
-
|
|
31612
|
-
|
|
31920
|
+
.u18llj45 {
|
|
31921
|
+
font-family: Inter;
|
|
31922
|
+
font-style: normal;
|
|
31923
|
+
font-weight: normal;
|
|
31924
|
+
font-size: 10px;
|
|
31925
|
+
line-height: 12px;
|
|
31613
31926
|
}
|
|
31614
31927
|
|
|
31615
|
-
.
|
|
31616
|
-
|
|
31617
|
-
border-bottom-right-radius: 0;
|
|
31928
|
+
.s1dni7lo {
|
|
31929
|
+
width: 430px !important;
|
|
31618
31930
|
}
|
|
31619
31931
|
|
|
31620
|
-
.
|
|
31621
|
-
|
|
31622
|
-
|
|
31932
|
+
.d1wwmmm5 .ant-select-item-group {
|
|
31933
|
+
padding: 8px 16px;
|
|
31934
|
+
line-height: 18px;
|
|
31935
|
+
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31936
|
+
height: 34px;
|
|
31937
|
+
min-height: 34px;
|
|
31938
|
+
box-sizing: border-box;
|
|
31939
|
+
margin-top: 8px;
|
|
31623
31940
|
}
|
|
31624
31941
|
|
|
31625
|
-
.
|
|
31942
|
+
.o1ugr09p {
|
|
31626
31943
|
display: flex;
|
|
31627
31944
|
flex-direction: column;
|
|
31945
|
+
margin: 1px 8px;
|
|
31946
|
+
padding: 8px;
|
|
31947
|
+
border-radius: 4px;
|
|
31628
31948
|
}
|
|
31629
|
-
.
|
|
31630
|
-
|
|
31949
|
+
.o1ugr09p .selected-icon {
|
|
31950
|
+
display: none;
|
|
31631
31951
|
}
|
|
31632
|
-
.
|
|
31633
|
-
|
|
31952
|
+
.o1ugr09p.ant-select-item-option-grouped {
|
|
31953
|
+
padding-left: 8px;
|
|
31634
31954
|
}
|
|
31635
|
-
.
|
|
31636
|
-
|
|
31955
|
+
.o1ugr09p.ant-select-item-option-selected {
|
|
31956
|
+
background-color: white;
|
|
31637
31957
|
}
|
|
31638
|
-
.
|
|
31639
|
-
|
|
31958
|
+
.o1ugr09p.ant-select-item-option-selected .timezone-title {
|
|
31959
|
+
color: #0080ff;
|
|
31640
31960
|
}
|
|
31641
|
-
|
|
31642
|
-
|
|
31643
|
-
font-size: 14px;
|
|
31644
|
-
font-weight: 500;
|
|
31645
|
-
color: #3e4652;
|
|
31646
|
-
line-height: 18px;
|
|
31961
|
+
.o1ugr09p.ant-select-item-option-selected .selected-icon {
|
|
31962
|
+
display: block;
|
|
31647
31963
|
}
|
|
31648
|
-
.
|
|
31649
|
-
|
|
31964
|
+
.o1ugr09p.ant-select-item-option-active {
|
|
31965
|
+
background: rgba(0, 136, 255, 0.16);
|
|
31650
31966
|
}
|
|
31651
|
-
.
|
|
31652
|
-
|
|
31967
|
+
.o1ugr09p.ant-select-item-option-active .timezone-title {
|
|
31968
|
+
color: #0080ff;
|
|
31969
|
+
}
|
|
31970
|
+
.o1ugr09p.ant-select-item-option-active .timezone-tag {
|
|
31971
|
+
background: rgba(0, 136, 255, 0.1);
|
|
31972
|
+
color: #0080ff;
|
|
31653
31973
|
}
|
|
31654
31974
|
|
|
31655
|
-
.
|
|
31656
|
-
|
|
31657
|
-
|
|
31658
|
-
|
|
31975
|
+
.o1ifxsq4 {
|
|
31976
|
+
display: flex;
|
|
31977
|
+
justify-content: space-between;
|
|
31978
|
+
height: 20px;
|
|
31979
|
+
line-height: 20px;
|
|
31980
|
+
}
|
|
31981
|
+
.o1ifxsq4 .timezone-title {
|
|
31982
|
+
color: #2d3a56;
|
|
31983
|
+
overflow: hidden;
|
|
31984
|
+
text-overflow: ellipsis;
|
|
31659
31985
|
}
|
|
31660
31986
|
|
|
31661
|
-
.
|
|
31987
|
+
.o1zue7 {
|
|
31988
|
+
display: flex;
|
|
31989
|
+
justify-content: space-between;
|
|
31990
|
+
color: rgba(44, 56, 82, 0.6);
|
|
31991
|
+
height: 18px;
|
|
31662
31992
|
line-height: 18px;
|
|
31663
|
-
|
|
31664
|
-
margin-top: 0;
|
|
31665
|
-
white-space: initial;
|
|
31993
|
+
margin-top: 2px;
|
|
31666
31994
|
}
|
|
31667
31995
|
|
|
31668
|
-
.
|
|
31669
|
-
|
|
31996
|
+
.tyfmlxg {
|
|
31997
|
+
border: none;
|
|
31998
|
+
margin-right: 0;
|
|
31999
|
+
background: rgba(225, 230, 241, 0.6);
|
|
31670
32000
|
}
|
|
31671
|
-
|
|
31672
|
-
|
|
31673
|
-
|
|
31674
|
-
|
|
31675
|
-
|
|
32001
|
+
|
|
32002
|
+
.o18uybox {
|
|
32003
|
+
pointer-events: none;
|
|
32004
|
+
height: 32px;
|
|
32005
|
+
width: 100%;
|
|
32006
|
+
opacity: 0;
|
|
31676
32007
|
}
|
|
31677
32008
|
|
|
31678
|
-
.
|
|
31679
|
-
|
|
31680
|
-
|
|
31681
|
-
|
|
31682
|
-
|
|
32009
|
+
.phljevk {
|
|
32010
|
+
display: flex;
|
|
32011
|
+
justify-content: space-between;
|
|
32012
|
+
align-items: center;
|
|
32013
|
+
padding: 10px 0;
|
|
31683
32014
|
color: rgba(44, 56, 82, 0.6);
|
|
31684
32015
|
font-size: 12px;
|
|
32016
|
+
line-height: 24px;
|
|
32017
|
+
}
|
|
32018
|
+
.phljevk .pagination-left {
|
|
32019
|
+
padding: 2px 8px;
|
|
32020
|
+
}
|
|
32021
|
+
.phljevk .dropdown-trigger {
|
|
32022
|
+
display: flex;
|
|
32023
|
+
align-items: center;
|
|
32024
|
+
border-radius: 6px;
|
|
32025
|
+
cursor: pointer;
|
|
32026
|
+
transition: all 0.3s ease;
|
|
32027
|
+
}
|
|
32028
|
+
.phljevk .dropdown-trigger:hover {
|
|
32029
|
+
background: rgba(211, 218, 235, 0.6);
|
|
32030
|
+
color: #0080ff;
|
|
32031
|
+
}
|
|
32032
|
+
.phljevk .dropdown-trigger .icon-inner {
|
|
32033
|
+
margin-left: 4px;
|
|
32034
|
+
}
|
|
32035
|
+
.phljevk .pagination-right {
|
|
32036
|
+
display: flex;
|
|
32037
|
+
align-items: center;
|
|
32038
|
+
color: #0080ff;
|
|
32039
|
+
font-weight: bold;
|
|
32040
|
+
}
|
|
32041
|
+
.phljevk .pagination-right .icon-inner {
|
|
32042
|
+
margin-left: 4px;
|
|
31685
32043
|
}
|
|
31686
|
-
.
|
|
31687
|
-
|
|
31688
|
-
|
|
31689
|
-
align-items: center;
|
|
31690
|
-
word-break: break-all;
|
|
32044
|
+
.phljevk .pagination-right .prev-btn,
|
|
32045
|
+
.phljevk .pagination-right .next-btn {
|
|
32046
|
+
padding: 0 8px;
|
|
31691
32047
|
}
|
|
31692
|
-
.
|
|
31693
|
-
|
|
31694
|
-
|
|
31695
|
-
|
|
32048
|
+
.phljevk .pagination-right .prev-btn > span,
|
|
32049
|
+
.phljevk .pagination-right .next-btn > span {
|
|
32050
|
+
color: #0080ff;
|
|
32051
|
+
}
|
|
32052
|
+
.phljevk .pagination-right .next-btn .icon-inner {
|
|
32053
|
+
transform: rotate(180deg);
|
|
31696
32054
|
}
|
|
31697
32055
|
|
|
31698
|
-
.
|
|
31699
|
-
|
|
32056
|
+
.d12rtyeg.ant-dropdown .ant-dropdown-menu {
|
|
32057
|
+
max-height: calc(100vh - 128px);
|
|
32058
|
+
overflow-y: auto;
|
|
32059
|
+
}
|
|
32060
|
+
.d12rtyeg.ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
|
|
32061
|
+
padding: 4px 20px;
|
|
32062
|
+
font-size: 12px;
|
|
32063
|
+
line-height: 18px;
|
|
31700
32064
|
}
|
|
31701
32065
|
|
|
31702
32066
|
.c1up1pdz {
|
|
@@ -31824,383 +32188,195 @@ input.rf8rlle.ant-input {
|
|
|
31824
32188
|
border-color: #0096ff;
|
|
31825
32189
|
color: #fff;
|
|
31826
32190
|
}
|
|
31827
|
-
.wpbf4pq .week-day-option.en-text {
|
|
31828
|
-
width: 110px;
|
|
31829
|
-
margin-top: 4px;
|
|
31830
|
-
}
|
|
31831
|
-
.wpbf4pq .month-day-option {
|
|
31832
|
-
width: 32px;
|
|
31833
|
-
padding: 0;
|
|
31834
|
-
margin-bottom: 8px;
|
|
31835
|
-
}
|
|
31836
|
-
.wpbf4pq .month-day-option.active {
|
|
31837
|
-
background-color: #0096ff;
|
|
31838
|
-
border-color: #0096ff;
|
|
31839
|
-
color: #fff;
|
|
31840
|
-
}
|
|
31841
|
-
|
|
31842
|
-
.tc97u5y {
|
|
31843
|
-
height: 100%;
|
|
31844
|
-
}
|
|
31845
|
-
|
|
31846
|
-
.tfzf37v {
|
|
31847
|
-
height: 100%;
|
|
31848
|
-
}
|
|
31849
|
-
.tfzf37v.empty-table .ant-table-content {
|
|
31850
|
-
overflow: visible !important;
|
|
31851
|
-
height: 100%;
|
|
31852
|
-
}
|
|
31853
|
-
.tfzf37v.empty-table .ant-table-content .ant-table-tbody .ant-table-placeholder td {
|
|
31854
|
-
height: 100%;
|
|
31855
|
-
}
|
|
31856
|
-
.tfzf37v.empty-table .ant-table-content table {
|
|
31857
|
-
width: 100% !important;
|
|
31858
|
-
height: 100%;
|
|
31859
|
-
}
|
|
31860
|
-
.tfzf37v.empty-table .ant-table-content table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
31861
|
-
padding: 15px 0;
|
|
31862
|
-
}
|
|
31863
|
-
.tfzf37v.empty-table .ant-table-content table thead.ant-table-thead {
|
|
31864
|
-
display: none;
|
|
31865
|
-
}
|
|
31866
|
-
.tfzf37v .active-row td:nth-child(1) {
|
|
31867
|
-
font-weight: 700;
|
|
31868
|
-
}
|
|
31869
|
-
.tfzf37v.has-selection .active-row td:nth-child(2) {
|
|
31870
|
-
font-weight: 700;
|
|
31871
|
-
}
|
|
31872
|
-
.tfzf37v .ant-spin-nested-loading {
|
|
31873
|
-
height: 100%;
|
|
31874
|
-
}
|
|
31875
|
-
.tfzf37v .ant-spin-nested-loading .ant-spin-container {
|
|
31876
|
-
height: 100%;
|
|
31877
|
-
overflow: visible;
|
|
31878
|
-
}
|
|
31879
|
-
.tfzf37v .ant-spin-nested-loading .ant-spin {
|
|
31880
|
-
max-height: none;
|
|
31881
|
-
}
|
|
31882
|
-
.tfzf37v.table-init-loading .ant-spin-blur thead,
|
|
31883
|
-
.tfzf37v.table-init-loading .ant-spin-blur tbody {
|
|
31884
|
-
display: none;
|
|
31885
|
-
}
|
|
31886
|
-
.tfzf37v td.ant-table-column-sort {
|
|
31887
|
-
background: transparent;
|
|
31888
|
-
}
|
|
31889
|
-
.tfzf37v td.ant-table-cell-fix-left,
|
|
31890
|
-
.tfzf37v td.ant-table-cell-fix-right {
|
|
31891
|
-
background: #fff;
|
|
31892
|
-
padding: 0 !important;
|
|
31893
|
-
}
|
|
31894
|
-
.tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content,
|
|
31895
|
-
.tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
31896
|
-
display: flex;
|
|
31897
|
-
align-items: center;
|
|
31898
|
-
height: 100%;
|
|
31899
|
-
padding: 8px;
|
|
31900
|
-
}
|
|
31901
|
-
.tfzf37v td.ant-table-cell-fix-left .ant-table-cell-content > span,
|
|
31902
|
-
.tfzf37v td.ant-table-cell-fix-right .ant-table-cell-content > span {
|
|
31903
|
-
overflow: hidden;
|
|
31904
|
-
text-overflow: ellipsis;
|
|
31905
|
-
width: 100%;
|
|
31906
|
-
}
|
|
31907
|
-
.tfzf37v .ant-table-container {
|
|
31908
|
-
height: 100%;
|
|
31909
|
-
}
|
|
31910
|
-
.tfzf37v .ant-table-container::before, .tfzf37v .ant-table-container::after {
|
|
31911
|
-
box-shadow: none !important;
|
|
31912
|
-
}
|
|
31913
|
-
.tfzf37v .ant-table {
|
|
31914
|
-
border-radius: 0px;
|
|
31915
|
-
border-left: none;
|
|
31916
|
-
border-right: none;
|
|
31917
|
-
border-bottom: none;
|
|
31918
|
-
height: 100%;
|
|
31919
|
-
font-size: 12px;
|
|
31920
|
-
background: transparent;
|
|
31921
|
-
}
|
|
31922
|
-
.tfzf37v .ant-table .ant-table-header {
|
|
31923
|
-
position: relative;
|
|
31924
|
-
z-index: 3;
|
|
31925
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
31926
|
-
margin-bottom: -1px;
|
|
31927
|
-
}
|
|
31928
|
-
.tfzf37v .ant-table .time-wrapper .date,
|
|
31929
|
-
.tfzf37v .ant-table .value {
|
|
31930
|
-
color: #2d3a56;
|
|
31931
|
-
}
|
|
31932
|
-
.tfzf37v .ant-table .time-wrapper .time,
|
|
31933
|
-
.tfzf37v .ant-table .unit {
|
|
31934
|
-
color: rgba(44, 56, 82, 0.6);
|
|
31935
|
-
}
|
|
31936
|
-
.tfzf37v .ant-table .ant-table-selection {
|
|
31937
|
-
position: unset;
|
|
31938
|
-
text-align: center;
|
|
31939
|
-
}
|
|
31940
|
-
.tfzf37v .ant-table .ant-table-tbody > tr.ant-table-row-selected td {
|
|
31941
|
-
background: #fff;
|
|
31942
|
-
}
|
|
31943
|
-
.tfzf37v .ant-table .anticon-setting {
|
|
31944
|
-
cursor: pointer;
|
|
31945
|
-
position: absolute;
|
|
31946
|
-
top: 50%;
|
|
31947
|
-
right: 12px;
|
|
31948
|
-
transform: translateY(-50%);
|
|
31949
|
-
}
|
|
31950
|
-
.tfzf37v .ant-table.ant-table-ping-left .ant-table-cell-fix-left-last::after {
|
|
31951
|
-
box-shadow: none;
|
|
31952
|
-
width: 1px;
|
|
31953
|
-
background: rgba(213, 219, 227, 0.6);
|
|
31954
|
-
}
|
|
31955
|
-
.tfzf37v .ant-table.ant-table-ping-right .ant-table-cell-fix-right-first::after {
|
|
31956
|
-
box-shadow: none;
|
|
31957
|
-
width: 1px;
|
|
31958
|
-
background: rgba(213, 219, 227, 0.6);
|
|
31959
|
-
}
|
|
31960
|
-
.tfzf37v .ant-table .ant-table-tbody {
|
|
31961
|
-
position: relative;
|
|
31962
|
-
}
|
|
31963
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td {
|
|
31964
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
31965
|
-
border-bottom: 1px solid white;
|
|
31966
|
-
height: 40px;
|
|
31967
|
-
vertical-align: middle;
|
|
31968
|
-
transition: background 0ms;
|
|
31969
|
-
color: #00122e;
|
|
31970
|
-
}
|
|
31971
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td.header-hover {
|
|
31972
|
-
background: #f2f5fa;
|
|
31973
|
-
border-bottom-color: #f2f5fa;
|
|
31974
|
-
}
|
|
31975
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link {
|
|
31976
|
-
height: auto;
|
|
31977
|
-
color: #00122e;
|
|
31978
|
-
font-size: 12px;
|
|
31979
|
-
text-align: left;
|
|
31980
|
-
transition: none;
|
|
31981
|
-
overflow: hidden;
|
|
31982
|
-
text-overflow: ellipsis;
|
|
31983
|
-
white-space: nowrap;
|
|
31984
|
-
}
|
|
31985
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link:hover {
|
|
31986
|
-
color: #0096ff;
|
|
31987
|
-
}
|
|
31988
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td .ant-btn-link > span {
|
|
31989
|
-
overflow: hidden;
|
|
31990
|
-
text-overflow: ellipsis;
|
|
31991
|
-
width: 100%;
|
|
31992
|
-
vertical-align: middle;
|
|
31993
|
-
}
|
|
31994
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td.cell_status {
|
|
31995
|
-
line-height: 0px;
|
|
31996
|
-
}
|
|
31997
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row td.align-right {
|
|
31998
|
-
padding-right: 25px;
|
|
31999
|
-
}
|
|
32000
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover + tr td {
|
|
32001
|
-
border-top-color: transparent;
|
|
32002
|
-
}
|
|
32003
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td {
|
|
32004
|
-
background: rgba(225, 230, 241, 0.6);
|
|
32005
|
-
border-color: transparent transparent white;
|
|
32006
|
-
}
|
|
32007
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child {
|
|
32008
|
-
border-radius: 8px 0 0 8px;
|
|
32009
|
-
}
|
|
32010
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child .ant-table-cell-content {
|
|
32011
|
-
border-radius: 8px 0 0 8px;
|
|
32012
|
-
}
|
|
32013
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:first-child::before {
|
|
32014
|
-
content: "";
|
|
32015
|
-
width: 4px;
|
|
32016
|
-
top: -1px;
|
|
32017
|
-
bottom: -1px;
|
|
32018
|
-
background: white;
|
|
32019
|
-
}
|
|
32020
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child {
|
|
32021
|
-
border-radius: 0 8px 8px 0;
|
|
32022
|
-
}
|
|
32023
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ {
|
|
32024
|
-
border-radius: 0;
|
|
32025
|
-
background: white;
|
|
32026
|
-
border-top: none;
|
|
32027
|
-
}
|
|
32028
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td:last-child.cell__action_ > * {
|
|
32029
|
-
border-top: 1px solid transparent;
|
|
32030
|
-
border-radius: 0 8px 8px 0;
|
|
32031
|
-
background: rgba(225, 230, 241, 0.6);
|
|
32032
|
-
}
|
|
32033
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right {
|
|
32034
|
-
background: white;
|
|
32035
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
32036
|
-
}
|
|
32037
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-right .ant-table-cell-content {
|
|
32038
|
-
display: flex;
|
|
32039
|
-
align-items: center;
|
|
32040
|
-
height: 100%;
|
|
32041
|
-
background: rgba(225, 230, 241, 0.6);
|
|
32042
|
-
}
|
|
32043
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left {
|
|
32044
|
-
background: white;
|
|
32045
|
-
border-top: 1px solid rgba(211, 218, 235, 0.6);
|
|
32046
|
-
}
|
|
32047
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:hover td.ant-table-cell-fix-left .ant-table-cell-content {
|
|
32048
|
-
display: flex;
|
|
32049
|
-
align-items: center;
|
|
32050
|
-
height: 100%;
|
|
32051
|
-
background: rgba(225, 230, 241, 0.6);
|
|
32052
|
-
}
|
|
32053
|
-
.tfzf37v .ant-table .ant-table-tbody .ant-table-row:last-child td {
|
|
32054
|
-
border-bottom: 1px solid rgba(211, 218, 235, 0.6);
|
|
32191
|
+
.wpbf4pq .week-day-option.en-text {
|
|
32192
|
+
width: 110px;
|
|
32193
|
+
margin-top: 4px;
|
|
32055
32194
|
}
|
|
32056
|
-
.
|
|
32057
|
-
|
|
32058
|
-
|
|
32195
|
+
.wpbf4pq .month-day-option {
|
|
32196
|
+
width: 32px;
|
|
32197
|
+
padding: 0;
|
|
32198
|
+
margin-bottom: 8px;
|
|
32059
32199
|
}
|
|
32060
|
-
.
|
|
32061
|
-
|
|
32200
|
+
.wpbf4pq .month-day-option.active {
|
|
32201
|
+
background-color: #0096ff;
|
|
32202
|
+
border-color: #0096ff;
|
|
32203
|
+
color: #fff;
|
|
32062
32204
|
}
|
|
32063
|
-
|
|
32064
|
-
|
|
32065
|
-
border
|
|
32066
|
-
border-
|
|
32205
|
+
|
|
32206
|
+
.c18gxmrl {
|
|
32207
|
+
border: 1px solid #d8deeb;
|
|
32208
|
+
border-radius: 4px;
|
|
32067
32209
|
}
|
|
32068
|
-
.
|
|
32069
|
-
|
|
32210
|
+
.c18gxmrl + .c18gxmrl {
|
|
32211
|
+
margin-top: 8px;
|
|
32070
32212
|
}
|
|
32071
|
-
.
|
|
32072
|
-
border-
|
|
32213
|
+
.c18gxmrl:hover {
|
|
32214
|
+
border-color: #0080ff;
|
|
32073
32215
|
}
|
|
32074
|
-
.
|
|
32075
|
-
background: rgba(0,
|
|
32216
|
+
.c18gxmrl:hover > header {
|
|
32217
|
+
background: rgba(0, 128, 255, 0.1);
|
|
32076
32218
|
}
|
|
32077
|
-
.
|
|
32078
|
-
|
|
32079
|
-
font-weight: 400;
|
|
32080
|
-
position: relative;
|
|
32081
|
-
border-bottom: none;
|
|
32082
|
-
color: #00122e;
|
|
32083
|
-
transition: none;
|
|
32084
|
-
padding: 15px 8px 15px 8px;
|
|
32219
|
+
.c18gxmrl.active header {
|
|
32220
|
+
border-bottom: 1px solid #d8deeb;
|
|
32085
32221
|
}
|
|
32086
|
-
.
|
|
32087
|
-
|
|
32088
|
-
width: 1px;
|
|
32089
|
-
top: 0;
|
|
32090
|
-
bottom: 0;
|
|
32091
|
-
background: rgba(211, 218, 235, 0.6);
|
|
32092
|
-
position: absolute;
|
|
32093
|
-
right: 0;
|
|
32222
|
+
.c18gxmrl > header {
|
|
32223
|
+
padding: 8px 12px;
|
|
32094
32224
|
}
|
|
32095
|
-
|
|
32096
|
-
|
|
32225
|
+
|
|
32226
|
+
.tqjc4ui {
|
|
32227
|
+
margin: 0 2px;
|
|
32097
32228
|
}
|
|
32098
|
-
|
|
32099
|
-
|
|
32229
|
+
|
|
32230
|
+
.clm1wy1 {
|
|
32231
|
+
width: 192px;
|
|
32232
|
+
height: 246px;
|
|
32233
|
+
border-radius: 4px;
|
|
32100
32234
|
}
|
|
32101
|
-
.
|
|
32235
|
+
.clm1wy1 > .ant-picker-calendar,
|
|
32236
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
32102
32237
|
width: 100%;
|
|
32103
|
-
|
|
32104
|
-
|
|
32105
|
-
text-overflow: ellipsis;
|
|
32238
|
+
background-color: rgba(245, 247, 250, 0.6);
|
|
32239
|
+
border-top: none;
|
|
32106
32240
|
}
|
|
32107
|
-
.
|
|
32108
|
-
|
|
32109
|
-
|
|
32110
|
-
flex: 1;
|
|
32241
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
32242
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
32243
|
+
padding: 0 16px;
|
|
32111
32244
|
}
|
|
32112
|
-
.
|
|
32113
|
-
|
|
32245
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
32246
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
32247
|
+
width: 100%;
|
|
32248
|
+
height: 180px;
|
|
32249
|
+
border-spacing: 0;
|
|
32114
32250
|
}
|
|
32115
|
-
.
|
|
32116
|
-
|
|
32251
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
32252
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
32253
|
+
margin-bottom: 8px;
|
|
32117
32254
|
}
|
|
32118
|
-
.
|
|
32119
|
-
|
|
32120
|
-
|
|
32121
|
-
top: 50%;
|
|
32122
|
-
transform: translateY(-50%);
|
|
32123
|
-
height: 16px;
|
|
32124
|
-
display: none;
|
|
32125
|
-
transition: transform 320ms ease;
|
|
32255
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
32256
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
32257
|
+
width: 22px;
|
|
32126
32258
|
}
|
|
32127
|
-
.
|
|
32128
|
-
|
|
32129
|
-
|
|
32259
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
32260
|
+
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
32261
|
+
padding: 0;
|
|
32130
32262
|
}
|
|
32131
|
-
.
|
|
32132
|
-
|
|
32263
|
+
.clm1wy1 .ant-picker-cell {
|
|
32264
|
+
color: rgba(62, 70, 82, 0.6);
|
|
32265
|
+
opacity: 0.4;
|
|
32133
32266
|
}
|
|
32134
|
-
.
|
|
32135
|
-
|
|
32267
|
+
.clm1wy1 .ant-picker-cell-in-view {
|
|
32268
|
+
color: rgba(62, 70, 82, 0.6);
|
|
32269
|
+
opacity: 1;
|
|
32136
32270
|
}
|
|
32137
|
-
.
|
|
32138
|
-
|
|
32271
|
+
.clm1wy1 .ant-picker-cell-in-view > .active {
|
|
32272
|
+
color: #3e4652;
|
|
32139
32273
|
}
|
|
32140
|
-
.
|
|
32141
|
-
|
|
32274
|
+
.clm1wy1 .ant-picker-cell::before {
|
|
32275
|
+
pointer-events: none;
|
|
32142
32276
|
}
|
|
32143
|
-
|
|
32144
|
-
|
|
32277
|
+
|
|
32278
|
+
.t1tsm00v {
|
|
32279
|
+
color: rgba(129, 138, 153, 0.6);
|
|
32280
|
+
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
32281
|
+
backdrop-filter: blur(10px);
|
|
32282
|
+
padding: 7px 10px;
|
|
32145
32283
|
}
|
|
32146
|
-
|
|
32147
|
-
|
|
32284
|
+
|
|
32285
|
+
.c167wnad {
|
|
32286
|
+
color: rgba(62, 70, 82, 0.6);
|
|
32287
|
+
display: flex;
|
|
32288
|
+
justify-content: space-between;
|
|
32289
|
+
align-items: center;
|
|
32290
|
+
padding: 8px 16px;
|
|
32148
32291
|
}
|
|
32149
|
-
.
|
|
32150
|
-
|
|
32292
|
+
.c167wnad .anticon {
|
|
32293
|
+
cursor: pointer;
|
|
32151
32294
|
}
|
|
32152
|
-
.
|
|
32153
|
-
|
|
32295
|
+
.c167wnad .anticon:hover {
|
|
32296
|
+
color: #0096ff;
|
|
32154
32297
|
}
|
|
32155
|
-
|
|
32156
|
-
|
|
32157
|
-
|
|
32158
|
-
top: 50%;
|
|
32159
|
-
transform: translate(-50%, -50%);
|
|
32298
|
+
|
|
32299
|
+
.cxhf7dh {
|
|
32300
|
+
text-align: center;
|
|
32160
32301
|
}
|
|
32161
|
-
.
|
|
32162
|
-
display:
|
|
32302
|
+
.cxhf7dh .dots {
|
|
32303
|
+
display: flex;
|
|
32304
|
+
justify-content: center;
|
|
32163
32305
|
}
|
|
32164
|
-
.
|
|
32165
|
-
|
|
32306
|
+
.cxhf7dh .dot {
|
|
32307
|
+
display: inline-block;
|
|
32308
|
+
width: 2px;
|
|
32309
|
+
height: 2px;
|
|
32310
|
+
border-radius: 1px;
|
|
32311
|
+
background: #0096ff;
|
|
32166
32312
|
}
|
|
32167
|
-
.
|
|
32168
|
-
|
|
32313
|
+
.cxhf7dh .dot:not(:last-child) {
|
|
32314
|
+
margin-right: 2px;
|
|
32169
32315
|
}
|
|
32170
|
-
.
|
|
32171
|
-
|
|
32172
|
-
|
|
32173
|
-
background:
|
|
32174
|
-
|
|
32175
|
-
vertical-align: middle;
|
|
32316
|
+
.cxhf7dh .bar {
|
|
32317
|
+
width: 9px;
|
|
32318
|
+
height: 2px;
|
|
32319
|
+
background: #0096ff;
|
|
32320
|
+
border-radius: 2px;
|
|
32176
32321
|
}
|
|
32177
|
-
|
|
32178
|
-
.
|
|
32179
|
-
|
|
32180
|
-
|
|
32181
|
-
|
|
32322
|
+
|
|
32323
|
+
.c1bus5hc {
|
|
32324
|
+
--color: white;
|
|
32325
|
+
height: 14px;
|
|
32326
|
+
width: 14px;
|
|
32327
|
+
border-radius: 50%;
|
|
32328
|
+
flex-shrink: 0;
|
|
32329
|
+
display: flex;
|
|
32330
|
+
align-items: center;
|
|
32331
|
+
justify-content: center;
|
|
32332
|
+
border: 1px solid var(--color);
|
|
32182
32333
|
}
|
|
32183
|
-
.
|
|
32184
|
-
padding: 0 !important;
|
|
32334
|
+
.c1bus5hc .circle-inner {
|
|
32185
32335
|
position: relative;
|
|
32186
|
-
|
|
32336
|
+
height: 10px;
|
|
32337
|
+
width: 10px;
|
|
32338
|
+
border-radius: 50%;
|
|
32339
|
+
overflow: hidden;
|
|
32187
32340
|
}
|
|
32188
|
-
.
|
|
32341
|
+
.c1bus5hc .circle-content {
|
|
32342
|
+
position: absolute;
|
|
32343
|
+
height: 100%;
|
|
32344
|
+
width: 100%;
|
|
32345
|
+
left: 0;
|
|
32346
|
+
top: 0;
|
|
32347
|
+
border-radius: 50%;
|
|
32348
|
+
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
32349
|
+
transform: rotate(180deg);
|
|
32350
|
+
}
|
|
32351
|
+
.c1bus5hc .circle-child {
|
|
32352
|
+
position: absolute;
|
|
32189
32353
|
height: 100%;
|
|
32354
|
+
width: 100%;
|
|
32355
|
+
left: 0;
|
|
32356
|
+
top: 0;
|
|
32357
|
+
margin-left: 50%;
|
|
32358
|
+
transform-origin: left;
|
|
32359
|
+
background: white;
|
|
32360
|
+
transform: rotate(0deg);
|
|
32361
|
+
}
|
|
32362
|
+
|
|
32363
|
+
.n12mqh7z {
|
|
32190
32364
|
display: flex;
|
|
32191
32365
|
align-items: center;
|
|
32192
|
-
|
|
32193
|
-
|
|
32366
|
+
font-size: 12px;
|
|
32367
|
+
line-height: 18px;
|
|
32194
32368
|
}
|
|
32195
|
-
.
|
|
32196
|
-
|
|
32197
|
-
height: 24px;
|
|
32198
|
-
cursor: pointer;
|
|
32199
|
-
justify-content: center;
|
|
32200
|
-
border-radius: 4px;
|
|
32369
|
+
.n12mqh7z:not(:last-child) {
|
|
32370
|
+
margin-bottom: 4px;
|
|
32201
32371
|
}
|
|
32202
|
-
|
|
32203
|
-
|
|
32372
|
+
|
|
32373
|
+
.tf5bynu {
|
|
32374
|
+
margin: 0 3px;
|
|
32375
|
+
}
|
|
32376
|
+
|
|
32377
|
+
.tcckoz1 {
|
|
32378
|
+
max-height: 400px;
|
|
32379
|
+
overflow: "auto";
|
|
32204
32380
|
}
|
|
32205
32381
|
|
|
32206
32382
|
.berrcjl {
|
|
@@ -32219,6 +32395,16 @@ input.rf8rlle.ant-input {
|
|
|
32219
32395
|
color: #005ed1;
|
|
32220
32396
|
}
|
|
32221
32397
|
|
|
32398
|
+
.gmyahx3 {
|
|
32399
|
+
cursor: pointer;
|
|
32400
|
+
}
|
|
32401
|
+
.gmyahx3 .link-text {
|
|
32402
|
+
color: rgba(0, 21, 64, 0.3);
|
|
32403
|
+
}
|
|
32404
|
+
.gmyahx3:hover .link-text {
|
|
32405
|
+
color: #0080ff;
|
|
32406
|
+
}
|
|
32407
|
+
|
|
32222
32408
|
.c1uzzomf {
|
|
32223
32409
|
margin-bottom: 16px;
|
|
32224
32410
|
}
|
|
@@ -32241,87 +32427,51 @@ input.rf8rlle.ant-input {
|
|
|
32241
32427
|
text-align: center;
|
|
32242
32428
|
}
|
|
32243
32429
|
|
|
32244
|
-
.
|
|
32245
|
-
display:
|
|
32246
|
-
|
|
32247
|
-
font-size: 12px;
|
|
32248
|
-
line-height: 18px;
|
|
32249
|
-
}
|
|
32250
|
-
.n12mqh7z:not(:last-child) {
|
|
32251
|
-
margin-bottom: 4px;
|
|
32252
|
-
}
|
|
32253
|
-
|
|
32254
|
-
.tf5bynu {
|
|
32255
|
-
margin: 0 3px;
|
|
32256
|
-
}
|
|
32257
|
-
|
|
32258
|
-
.tcckoz1 {
|
|
32259
|
-
max-height: 400px;
|
|
32260
|
-
overflow: "auto";
|
|
32261
|
-
}
|
|
32262
|
-
|
|
32263
|
-
.gmyahx3 {
|
|
32264
|
-
cursor: pointer;
|
|
32265
|
-
}
|
|
32266
|
-
.gmyahx3 .link-text {
|
|
32267
|
-
color: rgba(0, 21, 64, 0.3);
|
|
32430
|
+
.c18bcrac {
|
|
32431
|
+
display: inline-block;
|
|
32432
|
+
width: 100%;
|
|
32268
32433
|
}
|
|
32269
|
-
.
|
|
32270
|
-
|
|
32434
|
+
.c18bcrac .recharts-wrapper {
|
|
32435
|
+
margin-left: 4px;
|
|
32271
32436
|
}
|
|
32272
32437
|
|
|
32273
|
-
.
|
|
32274
|
-
|
|
32438
|
+
.cro7kg2 {
|
|
32439
|
+
padding: 4px;
|
|
32275
32440
|
}
|
|
32276
32441
|
|
|
32277
|
-
.
|
|
32278
|
-
|
|
32279
|
-
|
|
32280
|
-
|
|
32281
|
-
|
|
32282
|
-
|
|
32442
|
+
.c14wcxf0 {
|
|
32443
|
+
display: flex;
|
|
32444
|
+
justify-content: space-between;
|
|
32445
|
+
align-items: center;
|
|
32446
|
+
font-size: 13px;
|
|
32447
|
+
line-height: 24px;
|
|
32448
|
+
color: #cccccc;
|
|
32449
|
+
white-space: nowrap;
|
|
32283
32450
|
}
|
|
32284
|
-
.
|
|
32285
|
-
|
|
32451
|
+
.c14wcxf0 label {
|
|
32452
|
+
margin-right: 32px;
|
|
32286
32453
|
}
|
|
32287
32454
|
|
|
32288
|
-
.
|
|
32289
|
-
|
|
32290
|
-
|
|
32455
|
+
.coy29mj.c14wcxf0 {
|
|
32456
|
+
font-weight: bold;
|
|
32457
|
+
color: white;
|
|
32291
32458
|
}
|
|
32292
32459
|
|
|
32293
|
-
.
|
|
32294
|
-
|
|
32295
|
-
|
|
32296
|
-
|
|
32297
|
-
|
|
32298
|
-
|
|
32299
|
-
|
|
32300
|
-
|
|
32301
|
-
|
|
32302
|
-
}
|
|
32303
|
-
.ckld275.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled)::after {
|
|
32304
|
-
background-color: transparent;
|
|
32460
|
+
.s11212zy {
|
|
32461
|
+
width: 8px;
|
|
32462
|
+
height: 8px;
|
|
32463
|
+
border-radius: 2px;
|
|
32464
|
+
display: inline-block;
|
|
32465
|
+
background: var(--s11212zy-0);
|
|
32466
|
+
border: 1px solid #fff;
|
|
32467
|
+
box-sizing: content-box;
|
|
32468
|
+
margin-right: 6px;
|
|
32305
32469
|
}
|
|
32306
32470
|
|
|
32307
|
-
.
|
|
32308
|
-
|
|
32309
|
-
|
|
32310
|
-
|
|
32311
|
-
.c18gxmrl + .c18gxmrl {
|
|
32312
|
-
margin-top: 8px;
|
|
32313
|
-
}
|
|
32314
|
-
.c18gxmrl:hover {
|
|
32315
|
-
border-color: #0080ff;
|
|
32316
|
-
}
|
|
32317
|
-
.c18gxmrl:hover > header {
|
|
32318
|
-
background: rgba(0, 128, 255, 0.1);
|
|
32319
|
-
}
|
|
32320
|
-
.c18gxmrl.active header {
|
|
32321
|
-
border-bottom: 1px solid #d8deeb;
|
|
32322
|
-
}
|
|
32323
|
-
.c18gxmrl > header {
|
|
32324
|
-
padding: 8px 12px;
|
|
32471
|
+
.p1lyky6c > :first-child {
|
|
32472
|
+
font-weight: bold;
|
|
32473
|
+
color: white;
|
|
32474
|
+
margin-right: 4px;
|
|
32325
32475
|
}
|
|
32326
32476
|
|
|
32327
32477
|
.d1bw7c5z {
|
|
@@ -32405,97 +32555,6 @@ input.rf8rlle.ant-input {
|
|
|
32405
32555
|
width: 102px;
|
|
32406
32556
|
}
|
|
32407
32557
|
|
|
32408
|
-
.tqjc4ui {
|
|
32409
|
-
margin: 0 2px;
|
|
32410
|
-
}
|
|
32411
|
-
|
|
32412
|
-
.c18bcrac {
|
|
32413
|
-
display: inline-block;
|
|
32414
|
-
width: 100%;
|
|
32415
|
-
}
|
|
32416
|
-
.c18bcrac .recharts-wrapper {
|
|
32417
|
-
margin-left: 4px;
|
|
32418
|
-
}
|
|
32419
|
-
|
|
32420
|
-
.cro7kg2 {
|
|
32421
|
-
padding: 4px;
|
|
32422
|
-
}
|
|
32423
|
-
|
|
32424
|
-
.c14wcxf0 {
|
|
32425
|
-
display: flex;
|
|
32426
|
-
justify-content: space-between;
|
|
32427
|
-
align-items: center;
|
|
32428
|
-
font-size: 13px;
|
|
32429
|
-
line-height: 24px;
|
|
32430
|
-
color: #cccccc;
|
|
32431
|
-
white-space: nowrap;
|
|
32432
|
-
}
|
|
32433
|
-
.c14wcxf0 label {
|
|
32434
|
-
margin-right: 32px;
|
|
32435
|
-
}
|
|
32436
|
-
|
|
32437
|
-
.coy29mj.c14wcxf0 {
|
|
32438
|
-
font-weight: bold;
|
|
32439
|
-
color: white;
|
|
32440
|
-
}
|
|
32441
|
-
|
|
32442
|
-
.s11212zy {
|
|
32443
|
-
width: 8px;
|
|
32444
|
-
height: 8px;
|
|
32445
|
-
border-radius: 2px;
|
|
32446
|
-
display: inline-block;
|
|
32447
|
-
background: var(--s11212zy-0);
|
|
32448
|
-
border: 1px solid #fff;
|
|
32449
|
-
box-sizing: content-box;
|
|
32450
|
-
margin-right: 6px;
|
|
32451
|
-
}
|
|
32452
|
-
|
|
32453
|
-
.p1lyky6c > :first-child {
|
|
32454
|
-
font-weight: bold;
|
|
32455
|
-
color: white;
|
|
32456
|
-
margin-right: 4px;
|
|
32457
|
-
}
|
|
32458
|
-
|
|
32459
|
-
.c1bus5hc {
|
|
32460
|
-
--color: white;
|
|
32461
|
-
height: 14px;
|
|
32462
|
-
width: 14px;
|
|
32463
|
-
border-radius: 50%;
|
|
32464
|
-
flex-shrink: 0;
|
|
32465
|
-
display: flex;
|
|
32466
|
-
align-items: center;
|
|
32467
|
-
justify-content: center;
|
|
32468
|
-
border: 1px solid var(--color);
|
|
32469
|
-
}
|
|
32470
|
-
.c1bus5hc .circle-inner {
|
|
32471
|
-
position: relative;
|
|
32472
|
-
height: 10px;
|
|
32473
|
-
width: 10px;
|
|
32474
|
-
border-radius: 50%;
|
|
32475
|
-
overflow: hidden;
|
|
32476
|
-
}
|
|
32477
|
-
.c1bus5hc .circle-content {
|
|
32478
|
-
position: absolute;
|
|
32479
|
-
height: 100%;
|
|
32480
|
-
width: 100%;
|
|
32481
|
-
left: 0;
|
|
32482
|
-
top: 0;
|
|
32483
|
-
border-radius: 50%;
|
|
32484
|
-
background: linear-gradient(to right, var(--color) 50%, white 50%);
|
|
32485
|
-
transform: rotate(180deg);
|
|
32486
|
-
}
|
|
32487
|
-
.c1bus5hc .circle-child {
|
|
32488
|
-
position: absolute;
|
|
32489
|
-
height: 100%;
|
|
32490
|
-
width: 100%;
|
|
32491
|
-
left: 0;
|
|
32492
|
-
top: 0;
|
|
32493
|
-
margin-left: 50%;
|
|
32494
|
-
transform-origin: left;
|
|
32495
|
-
background: white;
|
|
32496
|
-
transform: rotate(0deg);
|
|
32497
|
-
}
|
|
32498
|
-
|
|
32499
32558
|
.ou7iq30 {
|
|
32500
32559
|
overflow: hidden;
|
|
32501
32560
|
text-overflow: ellipsis;
|
|
@@ -32509,100 +32568,49 @@ input.rf8rlle.ant-input {
|
|
|
32509
32568
|
display: -webkit-box;
|
|
32510
32569
|
-webkit-line-clamp: var(--mxrc2zg-0);
|
|
32511
32570
|
-webkit-box-orient: vertical;
|
|
32512
|
-
word-break: break-all;
|
|
32513
|
-
}
|
|
32514
|
-
|
|
32515
|
-
.clm1wy1 {
|
|
32516
|
-
width: 192px;
|
|
32517
|
-
height: 246px;
|
|
32518
|
-
border-radius: 4px;
|
|
32519
|
-
}
|
|
32520
|
-
.clm1wy1 > .ant-picker-calendar,
|
|
32521
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-panel {
|
|
32522
|
-
width: 100%;
|
|
32523
|
-
background-color: rgba(245, 247, 250, 0.6);
|
|
32524
|
-
border-top: none;
|
|
32525
|
-
}
|
|
32526
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-body,
|
|
32527
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-body {
|
|
32528
|
-
padding: 0 16px;
|
|
32529
|
-
}
|
|
32530
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-content,
|
|
32531
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content {
|
|
32532
|
-
width: 100%;
|
|
32533
|
-
height: 180px;
|
|
32534
|
-
border-spacing: 0;
|
|
32535
|
-
}
|
|
32536
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-content thead,
|
|
32537
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content thead {
|
|
32538
|
-
margin-bottom: 8px;
|
|
32539
|
-
}
|
|
32540
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-content th,
|
|
32541
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content th {
|
|
32542
|
-
width: 22px;
|
|
32543
|
-
}
|
|
32544
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-content td,
|
|
32545
|
-
.clm1wy1 > .ant-picker-calendar .ant-picker-panel .ant-picker-content td {
|
|
32546
|
-
padding: 0;
|
|
32547
|
-
}
|
|
32548
|
-
.clm1wy1 .ant-picker-cell {
|
|
32549
|
-
color: rgba(62, 70, 82, 0.6);
|
|
32550
|
-
opacity: 0.4;
|
|
32551
|
-
}
|
|
32552
|
-
.clm1wy1 .ant-picker-cell-in-view {
|
|
32553
|
-
color: rgba(62, 70, 82, 0.6);
|
|
32554
|
-
opacity: 1;
|
|
32555
|
-
}
|
|
32556
|
-
.clm1wy1 .ant-picker-cell-in-view > .active {
|
|
32557
|
-
color: #3e4652;
|
|
32558
|
-
}
|
|
32559
|
-
.clm1wy1 .ant-picker-cell::before {
|
|
32560
|
-
pointer-events: none;
|
|
32571
|
+
word-break: break-all;
|
|
32561
32572
|
}
|
|
32562
32573
|
|
|
32563
|
-
.
|
|
32564
|
-
|
|
32565
|
-
box-shadow: inset 0px -1px 0px rgba(213, 219, 227, 0.6);
|
|
32566
|
-
backdrop-filter: blur(10px);
|
|
32567
|
-
padding: 7px 10px;
|
|
32574
|
+
.s11wux3h .ant-segmented-item:not(:last-child) {
|
|
32575
|
+
margin-right: 2px;
|
|
32568
32576
|
}
|
|
32569
32577
|
|
|
32570
|
-
.
|
|
32571
|
-
|
|
32572
|
-
|
|
32573
|
-
justify-content: space-between;
|
|
32574
|
-
align-items: center;
|
|
32575
|
-
padding: 8px 16px;
|
|
32578
|
+
.s1t2an3z.ant-segmented-sm .ant-segmented-item-label {
|
|
32579
|
+
padding-left: 8px;
|
|
32580
|
+
padding-right: 8px;
|
|
32576
32581
|
}
|
|
32577
|
-
.
|
|
32578
|
-
|
|
32582
|
+
.s1t2an3z.ant-segmented-sm .ant-segmented-item-selected {
|
|
32583
|
+
border-radius: 4px;
|
|
32579
32584
|
}
|
|
32580
|
-
.
|
|
32581
|
-
|
|
32585
|
+
.s1t2an3z.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
32586
|
+
border-radius: 4px;
|
|
32582
32587
|
}
|
|
32583
32588
|
|
|
32584
|
-
.
|
|
32585
|
-
|
|
32589
|
+
.ma64lna .ant-segmented-item-label {
|
|
32590
|
+
padding-left: 12px;
|
|
32591
|
+
padding-right: 12px;
|
|
32586
32592
|
}
|
|
32587
|
-
|
|
32588
|
-
|
|
32589
|
-
|
|
32593
|
+
|
|
32594
|
+
.ckld275 {
|
|
32595
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
32590
32596
|
}
|
|
32591
|
-
.
|
|
32592
|
-
|
|
32593
|
-
|
|
32594
|
-
height: 2px;
|
|
32595
|
-
border-radius: 1px;
|
|
32596
|
-
background: #0096ff;
|
|
32597
|
+
.ckld275.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
32598
|
+
background-color: rgba(255, 255, 255, 0.6);
|
|
32599
|
+
color: rgba(44, 56, 82, 0.75);
|
|
32597
32600
|
}
|
|
32598
|
-
.
|
|
32599
|
-
|
|
32601
|
+
.ckld275.ant-segmented .ant-segmented-thumb ~ .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled) {
|
|
32602
|
+
background-color: transparent;
|
|
32600
32603
|
}
|
|
32601
|
-
.
|
|
32602
|
-
|
|
32603
|
-
|
|
32604
|
-
|
|
32605
|
-
|
|
32604
|
+
.ckld275.ant-segmented .ant-segmented-item:hover:not(.ant-segmented-item-selected):not(.ant-segmented-item-disabled)::after {
|
|
32605
|
+
background-color: transparent;
|
|
32606
|
+
}
|
|
32607
|
+
|
|
32608
|
+
.s1iv0tp1 .enabled-switch {
|
|
32609
|
+
display: flex;
|
|
32610
|
+
align-items: center;
|
|
32611
|
+
}
|
|
32612
|
+
.s1iv0tp1 .enabled-text {
|
|
32613
|
+
margin-right: 8px;
|
|
32606
32614
|
}
|
|
32607
32615
|
|
|
32608
32616
|
.ccrbeuz .ant-collapse-item {
|
|
@@ -32627,6 +32635,60 @@ input.rf8rlle.ant-input {
|
|
|
32627
32635
|
cursor: default;
|
|
32628
32636
|
}
|
|
32629
32637
|
|
|
32638
|
+
.m74vjol {
|
|
32639
|
+
display: flex;
|
|
32640
|
+
justify-content: space-between;
|
|
32641
|
+
width: 100%;
|
|
32642
|
+
}
|
|
32643
|
+
.m74vjol .action {
|
|
32644
|
+
margin-left: 16px;
|
|
32645
|
+
}
|
|
32646
|
+
|
|
32647
|
+
.a1o35uvh .ant-alert-message {
|
|
32648
|
+
width: 100%;
|
|
32649
|
+
}
|
|
32650
|
+
|
|
32651
|
+
.c1yyuluq {
|
|
32652
|
+
border-radius: 8px;
|
|
32653
|
+
}
|
|
32654
|
+
.c1yyuluq .ant-card-body {
|
|
32655
|
+
padding: 20px 24px 24px 24px;
|
|
32656
|
+
}
|
|
32657
|
+
|
|
32658
|
+
.itxley7.ant-input-group.ant-input-group-compact {
|
|
32659
|
+
display: flex;
|
|
32660
|
+
}
|
|
32661
|
+
|
|
32662
|
+
.tje3huy {
|
|
32663
|
+
width: 100%;
|
|
32664
|
+
overflow: inherit;
|
|
32665
|
+
white-space: inherit;
|
|
32666
|
+
text-overflow: ellipsis;
|
|
32667
|
+
}
|
|
32668
|
+
|
|
32669
|
+
.wg1tsps {
|
|
32670
|
+
display: flex;
|
|
32671
|
+
align-items: center;
|
|
32672
|
+
justify-content: flex-end;
|
|
32673
|
+
}
|
|
32674
|
+
|
|
32675
|
+
.b1ctd5xy {
|
|
32676
|
+
display: flex;
|
|
32677
|
+
align-items: center;
|
|
32678
|
+
width: calc(100% - 40px);
|
|
32679
|
+
}
|
|
32680
|
+
.b1ctd5xy .chart {
|
|
32681
|
+
display: inline-block;
|
|
32682
|
+
width: 100%;
|
|
32683
|
+
}
|
|
32684
|
+
|
|
32685
|
+
.u1p8acpn {
|
|
32686
|
+
min-width: 40px;
|
|
32687
|
+
}
|
|
32688
|
+
.u1p8acpn .unit {
|
|
32689
|
+
color: #00122e !important;
|
|
32690
|
+
}
|
|
32691
|
+
|
|
32630
32692
|
.t1sqg15u {
|
|
32631
32693
|
background: white;
|
|
32632
32694
|
}
|
|
@@ -32717,13 +32779,6 @@ input.rf8rlle.ant-input {
|
|
|
32717
32779
|
padding-right: 12px;
|
|
32718
32780
|
}
|
|
32719
32781
|
|
|
32720
|
-
.tje3huy {
|
|
32721
|
-
width: 100%;
|
|
32722
|
-
overflow: inherit;
|
|
32723
|
-
white-space: inherit;
|
|
32724
|
-
text-overflow: ellipsis;
|
|
32725
|
-
}
|
|
32726
|
-
|
|
32727
32782
|
button.l48ei06 {
|
|
32728
32783
|
color: #0080FF;
|
|
32729
32784
|
height: unset;
|
|
@@ -32756,137 +32811,34 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
32756
32811
|
color: #00122e;
|
|
32757
32812
|
}
|
|
32758
32813
|
|
|
32759
|
-
.
|
|
32760
|
-
|
|
32761
|
-
justify-content: space-between;
|
|
32762
|
-
width: 100%;
|
|
32763
|
-
}
|
|
32764
|
-
.m74vjol .action {
|
|
32765
|
-
margin-left: 16px;
|
|
32766
|
-
}
|
|
32767
|
-
|
|
32768
|
-
.a1o35uvh .ant-alert-message {
|
|
32769
|
-
width: 100%;
|
|
32770
|
-
}
|
|
32771
|
-
|
|
32772
|
-
.wg1tsps {
|
|
32773
|
-
display: flex;
|
|
32774
|
-
align-items: center;
|
|
32775
|
-
justify-content: flex-end;
|
|
32776
|
-
}
|
|
32777
|
-
|
|
32778
|
-
.b1ctd5xy {
|
|
32779
|
-
display: flex;
|
|
32780
|
-
align-items: center;
|
|
32781
|
-
width: calc(100% - 40px);
|
|
32782
|
-
}
|
|
32783
|
-
.b1ctd5xy .chart {
|
|
32784
|
-
display: inline-block;
|
|
32785
|
-
width: 100%;
|
|
32786
|
-
}
|
|
32787
|
-
|
|
32788
|
-
.u1p8acpn {
|
|
32789
|
-
min-width: 40px;
|
|
32790
|
-
}
|
|
32791
|
-
.u1p8acpn .unit {
|
|
32792
|
-
color: #00122e !important;
|
|
32793
|
-
}
|
|
32794
|
-
|
|
32795
|
-
.itxley7.ant-input-group.ant-input-group-compact {
|
|
32796
|
-
display: flex;
|
|
32797
|
-
}
|
|
32798
|
-
|
|
32799
|
-
.c1yyuluq {
|
|
32800
|
-
border-radius: 8px;
|
|
32801
|
-
}
|
|
32802
|
-
.c1yyuluq .ant-card-body {
|
|
32803
|
-
padding: 20px 24px 24px 24px;
|
|
32814
|
+
.t13ef470 {
|
|
32815
|
+
height: 100%;
|
|
32804
32816
|
}
|
|
32805
|
-
|
|
32806
|
-
|
|
32817
|
+
.t13ef470 .table-loading-item {
|
|
32818
|
+
padding: 12px 4px;
|
|
32819
|
+
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
32807
32820
|
display: flex;
|
|
32808
|
-
align-items: center;
|
|
32809
|
-
}
|
|
32810
|
-
.s1iv0tp1 .enabled-text {
|
|
32811
|
-
margin-right: 8px;
|
|
32812
|
-
}
|
|
32813
|
-
|
|
32814
|
-
.tju3gfj .date {
|
|
32815
|
-
margin-right: 4px;
|
|
32816
|
-
}
|
|
32817
|
-
|
|
32818
|
-
.sddwhm6 {
|
|
32819
|
-
margin: 0;
|
|
32820
|
-
border-radius: 20px;
|
|
32821
|
-
padding: 2px 10px;
|
|
32822
|
-
height: 22px;
|
|
32823
32821
|
}
|
|
32824
|
-
.
|
|
32825
|
-
|
|
32826
|
-
|
|
32827
|
-
|
|
32828
|
-
|
|
32829
|
-
}
|
|
32830
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
32831
|
-
color: #00122e;
|
|
32832
|
-
}
|
|
32833
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
32834
|
-
margin-right: 6px;
|
|
32835
|
-
}
|
|
32836
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
32837
|
-
margin-left: 4px;
|
|
32838
|
-
}
|
|
32839
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
32840
|
-
background-color: rgba(0, 136, 255, 0.1);
|
|
32841
|
-
}
|
|
32842
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
32843
|
-
background-color: #0080ff;
|
|
32844
|
-
}
|
|
32845
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
32846
|
-
background-color: rgba(0, 136, 255, 0.16);
|
|
32847
|
-
}
|
|
32848
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
32849
|
-
background-color: rgba(255, 74, 74, 0.1);
|
|
32850
|
-
}
|
|
32851
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
32852
|
-
background-color: #f0483e;
|
|
32853
|
-
}
|
|
32854
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
32855
|
-
background-color: rgba(255, 74, 74, 0.16);
|
|
32856
|
-
}
|
|
32857
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
32858
|
-
background-color: rgba(254, 160, 8, 0.1);
|
|
32859
|
-
}
|
|
32860
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
32861
|
-
background-color: #fea008;
|
|
32862
|
-
}
|
|
32863
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
32864
|
-
background-color: rgba(255, 187, 0, 0.16);
|
|
32865
|
-
}
|
|
32866
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
32867
|
-
background-color: rgba(30, 201, 127, 0.1);
|
|
32868
|
-
}
|
|
32869
|
-
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
32870
|
-
background-color: #00ba5d;
|
|
32822
|
+
.t13ef470 .table-loading-item > * {
|
|
32823
|
+
height: 16px;
|
|
32824
|
+
margin: 4px;
|
|
32825
|
+
background: rgba(204, 212, 227, 0.18);
|
|
32826
|
+
border-radius: 2px;
|
|
32871
32827
|
}
|
|
32872
|
-
.
|
|
32873
|
-
|
|
32828
|
+
.t13ef470 .table-loading-item .checkbox-loading {
|
|
32829
|
+
width: 16px;
|
|
32874
32830
|
}
|
|
32875
|
-
.
|
|
32876
|
-
|
|
32831
|
+
.t13ef470 .table-loading-item .td-loading {
|
|
32832
|
+
flex: 1;
|
|
32877
32833
|
}
|
|
32878
|
-
.
|
|
32879
|
-
|
|
32834
|
+
.t13ef470 :nth-child(1) {
|
|
32835
|
+
padding: 8px 4px;
|
|
32880
32836
|
}
|
|
32881
|
-
.
|
|
32882
|
-
background
|
|
32837
|
+
.t13ef470 :nth-child(1) > * {
|
|
32838
|
+
background: rgba(107, 125, 153, 0.18);
|
|
32883
32839
|
}
|
|
32884
|
-
|
|
32885
|
-
.
|
|
32886
|
-
width: 8px;
|
|
32887
|
-
height: 8px;
|
|
32888
|
-
border-radius: 50%;
|
|
32889
|
-
display: inline-block;
|
|
32840
|
+
.t13ef470 :nth-child(1) > * {
|
|
32841
|
+
background: rgba(163, 180, 204, 0.18);
|
|
32890
32842
|
}
|
|
32891
32843
|
|
|
32892
32844
|
.ivqqkzv {
|
|
@@ -32899,6 +32851,10 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
32899
32851
|
color: rgba(44, 56, 82, 0.6);
|
|
32900
32852
|
}
|
|
32901
32853
|
|
|
32854
|
+
.tju3gfj .date {
|
|
32855
|
+
margin-right: 4px;
|
|
32856
|
+
}
|
|
32857
|
+
|
|
32902
32858
|
.s177mls5.ant-select, .s177mls5.ant-select .ant-select-selector {
|
|
32903
32859
|
border-radius: 6px;
|
|
32904
32860
|
}
|
|
@@ -33038,40 +32994,84 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
33038
32994
|
background-color: #7E41FF;
|
|
33039
32995
|
}
|
|
33040
32996
|
|
|
33041
|
-
.
|
|
33042
|
-
|
|
33043
|
-
|
|
33044
|
-
padding:
|
|
32997
|
+
.sddwhm6 {
|
|
32998
|
+
margin: 0;
|
|
32999
|
+
border-radius: 20px;
|
|
33000
|
+
padding: 2px 10px;
|
|
33001
|
+
height: 22px;
|
|
33045
33002
|
}
|
|
33046
|
-
|
|
33047
|
-
.
|
|
33048
|
-
height: 100%;
|
|
33003
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.off-white {
|
|
33004
|
+
background-color: rgba(237, 241, 250, 0.6) !important;
|
|
33049
33005
|
}
|
|
33050
|
-
.
|
|
33051
|
-
|
|
33052
|
-
border-bottom: 1px solid rgba(204, 212, 227, 0.18);
|
|
33053
|
-
display: flex;
|
|
33006
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.off-white.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.off-white.__pseudo-states-hover {
|
|
33007
|
+
background-color: rgba(225, 230, 241, 0.6) !important;
|
|
33054
33008
|
}
|
|
33055
|
-
.
|
|
33056
|
-
|
|
33057
|
-
margin: 4px;
|
|
33058
|
-
background: rgba(204, 212, 227, 0.18);
|
|
33059
|
-
border-radius: 2px;
|
|
33009
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule {
|
|
33010
|
+
color: #00122e;
|
|
33060
33011
|
}
|
|
33061
|
-
.
|
|
33062
|
-
|
|
33012
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-icon {
|
|
33013
|
+
margin-right: 6px;
|
|
33063
33014
|
}
|
|
33064
|
-
.
|
|
33065
|
-
|
|
33015
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule .ui-kit-status-capsule-number {
|
|
33016
|
+
margin-left: 4px;
|
|
33066
33017
|
}
|
|
33067
|
-
.
|
|
33068
|
-
|
|
33018
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue {
|
|
33019
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
33069
33020
|
}
|
|
33070
|
-
.
|
|
33071
|
-
background:
|
|
33021
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue .ui-kit-status-capsule-icon {
|
|
33022
|
+
background-color: #0080ff;
|
|
33072
33023
|
}
|
|
33073
|
-
.
|
|
33074
|
-
background: rgba(
|
|
33024
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-blue.__pseudo-states-hover {
|
|
33025
|
+
background-color: rgba(0, 136, 255, 0.16);
|
|
33026
|
+
}
|
|
33027
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red {
|
|
33028
|
+
background-color: rgba(255, 74, 74, 0.1);
|
|
33029
|
+
}
|
|
33030
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red .ui-kit-status-capsule-icon {
|
|
33031
|
+
background-color: #f0483e;
|
|
33032
|
+
}
|
|
33033
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-red.__pseudo-states-hover {
|
|
33034
|
+
background-color: rgba(255, 74, 74, 0.16);
|
|
33035
|
+
}
|
|
33036
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow {
|
|
33037
|
+
background-color: rgba(254, 160, 8, 0.1);
|
|
33038
|
+
}
|
|
33039
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow .ui-kit-status-capsule-icon {
|
|
33040
|
+
background-color: #fea008;
|
|
33041
|
+
}
|
|
33042
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-yellow.__pseudo-states-hover {
|
|
33043
|
+
background-color: rgba(255, 187, 0, 0.16);
|
|
33044
|
+
}
|
|
33045
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green {
|
|
33046
|
+
background-color: rgba(30, 201, 127, 0.1);
|
|
33047
|
+
}
|
|
33048
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green .ui-kit-status-capsule-icon {
|
|
33049
|
+
background-color: #00ba5d;
|
|
33050
|
+
}
|
|
33051
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-green.__pseudo-states-hover {
|
|
33052
|
+
background-color: rgba(30, 201, 127, 0.16);
|
|
33053
|
+
}
|
|
33054
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray {
|
|
33055
|
+
background-color: rgba(225, 230, 241, 0.6);
|
|
33056
|
+
}
|
|
33057
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray .ui-kit-status-capsule-icon:not(.ui-kit-status-capsule-icon-loading) {
|
|
33058
|
+
background-color: #6b7d99;
|
|
33059
|
+
}
|
|
33060
|
+
.sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.tag-hover:hover, .sddwhm6.ant-tag.ui-kit-status-capsule.ant-tag-gray.__pseudo-states-hover {
|
|
33061
|
+
background-color: rgba(211, 218, 235, 0.6);
|
|
33062
|
+
}
|
|
33063
|
+
|
|
33064
|
+
.satwmqm {
|
|
33065
|
+
width: 8px;
|
|
33066
|
+
height: 8px;
|
|
33067
|
+
border-radius: 50%;
|
|
33068
|
+
display: inline-block;
|
|
33069
|
+
}
|
|
33070
|
+
|
|
33071
|
+
.h1ol2wl7 {
|
|
33072
|
+
font-weight: bold;
|
|
33073
|
+
background-color: unset;
|
|
33074
|
+
padding: unset;
|
|
33075
33075
|
}
|
|
33076
33076
|
|
|
33077
33077
|
.lht19u8 {
|
|
@@ -33985,67 +33985,6 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
33985
33985
|
margin-right: 6px;
|
|
33986
33986
|
}
|
|
33987
33987
|
|
|
33988
|
-
.b14q2gmw {
|
|
33989
|
-
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);
|
|
33990
|
-
}
|
|
33991
|
-
|
|
33992
|
-
.c1eym6el {
|
|
33993
|
-
border-radius: 8px;
|
|
33994
|
-
background-color: white;
|
|
33995
|
-
}
|
|
33996
|
-
.c1eym6el.hoverable {
|
|
33997
|
-
cursor: pointer;
|
|
33998
|
-
}
|
|
33999
|
-
.c1eym6el.hoverable:hover {
|
|
34000
|
-
transition: all 200ms ease;
|
|
34001
|
-
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
34002
|
-
transform: translateY(-4px);
|
|
34003
|
-
}
|
|
34004
|
-
|
|
34005
|
-
.c1kghdax {
|
|
34006
|
-
color: #2d3a56;
|
|
34007
|
-
padding: 7px 12px;
|
|
34008
|
-
display: flex;
|
|
34009
|
-
justify-content: space-between;
|
|
34010
|
-
align-items: center;
|
|
34011
|
-
}
|
|
34012
|
-
.c1kghdax.has-arrow {
|
|
34013
|
-
padding-left: 10px;
|
|
34014
|
-
}
|
|
34015
|
-
.c1kghdax.has-arrow .title-wrapper {
|
|
34016
|
-
cursor: pointer;
|
|
34017
|
-
color: #00122e;
|
|
34018
|
-
}
|
|
34019
|
-
.c1kghdax.has-arrow .title-wrapper.is-open {
|
|
34020
|
-
color: #2d3a56;
|
|
34021
|
-
font-weight: 600;
|
|
34022
|
-
}
|
|
34023
|
-
.c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
34024
|
-
transform: rotate(90deg);
|
|
34025
|
-
}
|
|
34026
|
-
.c1kghdax .sub-info {
|
|
34027
|
-
font-size: 12px;
|
|
34028
|
-
line-height: 18px;
|
|
34029
|
-
}
|
|
34030
|
-
.c1kghdax .title-wrapper {
|
|
34031
|
-
display: flex;
|
|
34032
|
-
align-items: center;
|
|
34033
|
-
user-select: none;
|
|
34034
|
-
flex-grow: 1;
|
|
34035
|
-
font-size: 12px;
|
|
34036
|
-
line-height: 18px;
|
|
34037
|
-
color: #2d3a56;
|
|
34038
|
-
font-weight: 700;
|
|
34039
|
-
}
|
|
34040
|
-
.c1kghdax .collapse-arrow {
|
|
34041
|
-
transition: all 50ms ease-out 0ms;
|
|
34042
|
-
margin-right: 2px;
|
|
34043
|
-
}
|
|
34044
|
-
|
|
34045
|
-
.c1yd35n {
|
|
34046
|
-
padding: 0 12px 14px 12px;
|
|
34047
|
-
}
|
|
34048
|
-
|
|
34049
33988
|
.ckui4s7 {
|
|
34050
33989
|
color: #2d3a56;
|
|
34051
33990
|
line-height: 22px;
|
|
@@ -34110,13 +34049,65 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
34110
34049
|
margin-left: 24px;
|
|
34111
34050
|
}
|
|
34112
34051
|
|
|
34113
|
-
.
|
|
34114
|
-
|
|
34052
|
+
.b14q2gmw {
|
|
34053
|
+
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);
|
|
34115
34054
|
}
|
|
34116
|
-
|
|
34117
|
-
|
|
34118
|
-
|
|
34119
|
-
|
|
34055
|
+
|
|
34056
|
+
.c1eym6el {
|
|
34057
|
+
border-radius: 8px;
|
|
34058
|
+
background-color: white;
|
|
34059
|
+
}
|
|
34060
|
+
.c1eym6el.hoverable {
|
|
34061
|
+
cursor: pointer;
|
|
34062
|
+
}
|
|
34063
|
+
.c1eym6el.hoverable:hover {
|
|
34064
|
+
transition: all 200ms ease;
|
|
34065
|
+
box-shadow: 0px 9px 22px rgba(107, 125, 153, 0.23), 0px 1.12694px 2.75474px rgba(107, 125, 153, 0.12);
|
|
34066
|
+
transform: translateY(-4px);
|
|
34067
|
+
}
|
|
34068
|
+
|
|
34069
|
+
.c1kghdax {
|
|
34070
|
+
color: #2d3a56;
|
|
34071
|
+
padding: 7px 12px;
|
|
34072
|
+
display: flex;
|
|
34073
|
+
justify-content: space-between;
|
|
34074
|
+
align-items: center;
|
|
34075
|
+
}
|
|
34076
|
+
.c1kghdax.has-arrow {
|
|
34077
|
+
padding-left: 10px;
|
|
34078
|
+
}
|
|
34079
|
+
.c1kghdax.has-arrow .title-wrapper {
|
|
34080
|
+
cursor: pointer;
|
|
34081
|
+
color: #00122e;
|
|
34082
|
+
}
|
|
34083
|
+
.c1kghdax.has-arrow .title-wrapper.is-open {
|
|
34084
|
+
color: #2d3a56;
|
|
34085
|
+
font-weight: 600;
|
|
34086
|
+
}
|
|
34087
|
+
.c1kghdax.has-arrow .title-wrapper.is-open .collapse-arrow {
|
|
34088
|
+
transform: rotate(90deg);
|
|
34089
|
+
}
|
|
34090
|
+
.c1kghdax .sub-info {
|
|
34091
|
+
font-size: 12px;
|
|
34092
|
+
line-height: 18px;
|
|
34093
|
+
}
|
|
34094
|
+
.c1kghdax .title-wrapper {
|
|
34095
|
+
display: flex;
|
|
34096
|
+
align-items: center;
|
|
34097
|
+
user-select: none;
|
|
34098
|
+
flex-grow: 1;
|
|
34099
|
+
font-size: 12px;
|
|
34100
|
+
line-height: 18px;
|
|
34101
|
+
color: #2d3a56;
|
|
34102
|
+
font-weight: 700;
|
|
34103
|
+
}
|
|
34104
|
+
.c1kghdax .collapse-arrow {
|
|
34105
|
+
transition: all 50ms ease-out 0ms;
|
|
34106
|
+
margin-right: 2px;
|
|
34107
|
+
}
|
|
34108
|
+
|
|
34109
|
+
.c1yd35n {
|
|
34110
|
+
padding: 0 12px 14px 12px;
|
|
34120
34111
|
}
|
|
34121
34112
|
|
|
34122
34113
|
.t160l1cm {
|
|
@@ -34322,6 +34313,20 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
34322
34313
|
background: transparent;
|
|
34323
34314
|
}
|
|
34324
34315
|
|
|
34316
|
+
.w7ob4th.outside-tag {
|
|
34317
|
+
padding-left: 0;
|
|
34318
|
+
}
|
|
34319
|
+
.w7ob4th.outside-tag .inside-tag {
|
|
34320
|
+
border-radius: 4px 0 0 4px;
|
|
34321
|
+
padding-right: 4px;
|
|
34322
|
+
margin-right: 4px;
|
|
34323
|
+
}
|
|
34324
|
+
|
|
34325
|
+
.i1g85yz3 {
|
|
34326
|
+
margin-right: 4px;
|
|
34327
|
+
height: 16px;
|
|
34328
|
+
}
|
|
34329
|
+
|
|
34325
34330
|
.slr2ynn {
|
|
34326
34331
|
padding: 0 8px;
|
|
34327
34332
|
height: 18px;
|
|
@@ -34351,11 +34356,6 @@ button.l48ei06.ui-kit-link-subtle.ui-kit-link-disabled {
|
|
|
34351
34356
|
white-space: normal;
|
|
34352
34357
|
}
|
|
34353
34358
|
|
|
34354
|
-
.i1g85yz3 {
|
|
34355
|
-
margin-right: 4px;
|
|
34356
|
-
height: 16px;
|
|
34357
|
-
}
|
|
34358
|
-
|
|
34359
34359
|
.t1dtlqs1 {
|
|
34360
34360
|
margin-bottom: 4px;
|
|
34361
34361
|
color: rgba(44, 56, 82, 0.6);
|