@cloudtower/eagle 0.22.35 → 0.22.38
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/UIKitProvider/index.d.ts +3 -5
- package/dist/components/Button/index.d.ts +1 -1
- package/dist/components/TableForm/AddRowButton.d.ts +4 -0
- package/dist/components/TableForm/Columns/AffixColumn.d.ts +4 -1
- package/dist/components/TableForm/Columns/CheckboxColumn.d.ts +3 -1
- package/dist/components/TableForm/Columns/InputColumn.d.ts +8 -2
- package/dist/components/TableForm/Columns/index.d.ts +27 -7
- package/dist/components/TableForm/TableFormBodyRows.d.ts +4 -0
- package/dist/components/TableForm/__test__/utils.spec.d.ts +1 -0
- package/dist/components/TableForm/index.d.ts +1 -15
- package/dist/components/TableForm/style.d.ts +13 -5
- package/dist/components/TableForm/types.d.ts +80 -13
- package/dist/components/TableForm/utils.d.ts +3 -0
- package/dist/components/message-group/index.d.ts +6 -8
- package/dist/esm/index.js +1566 -666
- package/dist/esm/stats1.html +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/spec/base.d.ts +19 -3
- package/dist/style.css +1150 -955
- package/dist/umd/index.js +1565 -667
- package/dist/umd/stats1.html +1 -1
- package/package.json +7 -5
package/dist/style.css
CHANGED
|
@@ -1597,52 +1597,6 @@ input[type=submit] {
|
|
|
1597
1597
|
cursor: pointer;
|
|
1598
1598
|
}
|
|
1599
1599
|
|
|
1600
|
-
.fde5mpd {
|
|
1601
|
-
width: 100%;
|
|
1602
|
-
height: 100%;
|
|
1603
|
-
min-height: 124px;
|
|
1604
|
-
display: flex;
|
|
1605
|
-
flex-direction: column;
|
|
1606
|
-
justify-content: center;
|
|
1607
|
-
align-items: center;
|
|
1608
|
-
}
|
|
1609
|
-
.fde5mpd .error-text {
|
|
1610
|
-
color: rgba(10, 37, 85, 0.6);
|
|
1611
|
-
margin-bottom: 16px;
|
|
1612
|
-
font-size: 18px;
|
|
1613
|
-
}
|
|
1614
|
-
|
|
1615
|
-
.iap75of {
|
|
1616
|
-
height: 18px;
|
|
1617
|
-
line-height: 18px;
|
|
1618
|
-
padding: 0 4px;
|
|
1619
|
-
border-radius: 4px;
|
|
1620
|
-
background: rgba(235, 239, 245, 0.6);
|
|
1621
|
-
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1622
|
-
display: flex;
|
|
1623
|
-
align-items: center;
|
|
1624
|
-
white-space: nowrap;
|
|
1625
|
-
margin-right: 4px;
|
|
1626
|
-
}
|
|
1627
|
-
|
|
1628
|
-
.i1mrf09m {
|
|
1629
|
-
display: inline-flex;
|
|
1630
|
-
align-items: center;
|
|
1631
|
-
}
|
|
1632
|
-
.i1mrf09m .icon-inner {
|
|
1633
|
-
display: inline-flex;
|
|
1634
|
-
align-items: center;
|
|
1635
|
-
justify-content: center;
|
|
1636
|
-
}
|
|
1637
|
-
.i1mrf09m .icon-inner + span,
|
|
1638
|
-
.i1mrf09m span + .icon-inner.suffix {
|
|
1639
|
-
margin-left: 4px;
|
|
1640
|
-
}
|
|
1641
|
-
.i1mrf09m.is-rotate img,
|
|
1642
|
-
.i1mrf09m.is-rotate svg {
|
|
1643
|
-
animation: rotate 680ms linear infinite;
|
|
1644
|
-
}
|
|
1645
|
-
|
|
1646
1600
|
.buj61ew.ant-btn {
|
|
1647
1601
|
height: 32px;
|
|
1648
1602
|
border-radius: 6px;
|
|
@@ -1920,6 +1874,52 @@ input[type=submit] {
|
|
|
1920
1874
|
border-radius: unset;
|
|
1921
1875
|
}
|
|
1922
1876
|
|
|
1877
|
+
.fde5mpd {
|
|
1878
|
+
width: 100%;
|
|
1879
|
+
height: 100%;
|
|
1880
|
+
min-height: 124px;
|
|
1881
|
+
display: flex;
|
|
1882
|
+
flex-direction: column;
|
|
1883
|
+
justify-content: center;
|
|
1884
|
+
align-items: center;
|
|
1885
|
+
}
|
|
1886
|
+
.fde5mpd .error-text {
|
|
1887
|
+
color: rgba(10, 37, 85, 0.6);
|
|
1888
|
+
margin-bottom: 16px;
|
|
1889
|
+
font-size: 18px;
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
.i1mrf09m {
|
|
1893
|
+
display: inline-flex;
|
|
1894
|
+
align-items: center;
|
|
1895
|
+
}
|
|
1896
|
+
.i1mrf09m .icon-inner {
|
|
1897
|
+
display: inline-flex;
|
|
1898
|
+
align-items: center;
|
|
1899
|
+
justify-content: center;
|
|
1900
|
+
}
|
|
1901
|
+
.i1mrf09m .icon-inner + span,
|
|
1902
|
+
.i1mrf09m span + .icon-inner.suffix {
|
|
1903
|
+
margin-left: 4px;
|
|
1904
|
+
}
|
|
1905
|
+
.i1mrf09m.is-rotate img,
|
|
1906
|
+
.i1mrf09m.is-rotate svg {
|
|
1907
|
+
animation: rotate 680ms linear infinite;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.iap75of {
|
|
1911
|
+
height: 18px;
|
|
1912
|
+
line-height: 18px;
|
|
1913
|
+
padding: 0 4px;
|
|
1914
|
+
border-radius: 4px;
|
|
1915
|
+
background: rgba(235, 239, 245, 0.6);
|
|
1916
|
+
border: 1px solid rgba(223, 228, 235, 0.6);
|
|
1917
|
+
display: flex;
|
|
1918
|
+
align-items: center;
|
|
1919
|
+
white-space: nowrap;
|
|
1920
|
+
margin-right: 4px;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
1923
|
.obf05yr {
|
|
1924
1924
|
display: inline-block;
|
|
1925
1925
|
}
|
|
@@ -1986,123 +1986,348 @@ input[type=submit] {
|
|
|
1986
1986
|
line-height: 18px;
|
|
1987
1987
|
}
|
|
1988
1988
|
|
|
1989
|
-
.
|
|
1990
|
-
display: flex;
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
.m1if5j39 {
|
|
1995
|
-
max-width: 1120px;
|
|
1996
|
-
width: 100%;
|
|
1997
|
-
margin: 0 auto;
|
|
1998
|
-
height: 100%;
|
|
1989
|
+
.rxbeqvl.ant-radio-wrapper {
|
|
1990
|
+
display: inline-flex;
|
|
1991
|
+
align-items: baseline;
|
|
1992
|
+
white-space: pre-wrap;
|
|
1999
1993
|
}
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
width: 100%;
|
|
2004
|
-
margin: 0 auto;
|
|
2005
|
-
display: flex;
|
|
1994
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio {
|
|
1995
|
+
position: relative;
|
|
1996
|
+
top: 3px;
|
|
2006
1997
|
}
|
|
2007
|
-
.
|
|
2008
|
-
|
|
2009
|
-
flex-grow: 0;
|
|
2010
|
-
flex-shrink: 0;
|
|
2011
|
-
flex-basis: 21%;
|
|
1998
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio .ant-radio-inner {
|
|
1999
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
2012
2000
|
}
|
|
2013
|
-
.
|
|
2014
|
-
|
|
2015
|
-
justify-content: flex-end;
|
|
2016
|
-
padding-right: 44px;
|
|
2001
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio:hover .ant-radio-inner {
|
|
2002
|
+
border-color: #0080ff;
|
|
2017
2003
|
}
|
|
2018
|
-
.
|
|
2019
|
-
|
|
2004
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner {
|
|
2005
|
+
border-color: #0080ff;
|
|
2006
|
+
background: #0080ff;
|
|
2020
2007
|
}
|
|
2021
|
-
.
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2008
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-checked .ant-radio-inner::after {
|
|
2009
|
+
top: 4px;
|
|
2010
|
+
left: 4px;
|
|
2011
|
+
width: 6px;
|
|
2012
|
+
height: 6px;
|
|
2013
|
+
background: #fff;
|
|
2026
2014
|
}
|
|
2027
|
-
.
|
|
2028
|
-
|
|
2015
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled {
|
|
2016
|
+
opacity: 0.5;
|
|
2029
2017
|
}
|
|
2030
|
-
.
|
|
2031
|
-
|
|
2018
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner {
|
|
2019
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
2020
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2032
2021
|
}
|
|
2033
|
-
.
|
|
2034
|
-
|
|
2022
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled .ant-radio-inner::after {
|
|
2023
|
+
background: #00122e;
|
|
2035
2024
|
}
|
|
2036
|
-
.
|
|
2037
|
-
|
|
2025
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span {
|
|
2026
|
+
color: #00122e;
|
|
2027
|
+
opacity: 0.5;
|
|
2038
2028
|
}
|
|
2039
|
-
.
|
|
2040
|
-
|
|
2041
|
-
display: none !important;
|
|
2029
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
2030
|
+
color: #00122e;
|
|
2042
2031
|
}
|
|
2043
|
-
.
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
display: flex;
|
|
2048
|
-
align-items: center;
|
|
2032
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio + span {
|
|
2033
|
+
display: inline-block;
|
|
2034
|
+
padding: 0;
|
|
2035
|
+
padding-left: 12px;
|
|
2049
2036
|
}
|
|
2050
|
-
.
|
|
2051
|
-
|
|
2052
|
-
white-space:
|
|
2037
|
+
.rxbeqvl.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
2038
|
+
margin-bottom: 0;
|
|
2039
|
+
white-space: pre-wrap;
|
|
2040
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2053
2041
|
}
|
|
2054
|
-
.
|
|
2055
|
-
padding-
|
|
2042
|
+
.rxbeqvl.ant-radio-wrapper.compact .ant-radio + span {
|
|
2043
|
+
padding-left: 8px;
|
|
2056
2044
|
}
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2045
|
+
|
|
2046
|
+
.r5ie79y .ant-radio-button-wrapper:first-child {
|
|
2047
|
+
border-radius: 5px 0 0 5px;
|
|
2060
2048
|
}
|
|
2061
|
-
.
|
|
2062
|
-
|
|
2063
|
-
text-align: center;
|
|
2064
|
-
width: 13px;
|
|
2065
|
-
margin-right: 12px;
|
|
2049
|
+
.r5ie79y .ant-radio-button-wrapper:last-child {
|
|
2050
|
+
border-radius: 0 5px 5px 0;
|
|
2066
2051
|
}
|
|
2067
|
-
|
|
2068
|
-
|
|
2052
|
+
|
|
2053
|
+
.r1f0aqcc {
|
|
2054
|
+
color: #00122e;
|
|
2055
|
+
border-color: #ccd4e3;
|
|
2069
2056
|
}
|
|
2070
|
-
.
|
|
2071
|
-
color: #
|
|
2057
|
+
.r1f0aqcc:first-child {
|
|
2058
|
+
color: #00122e;
|
|
2059
|
+
border-color: #a3b4cc;
|
|
2072
2060
|
}
|
|
2073
|
-
.
|
|
2074
|
-
|
|
2061
|
+
.r1f0aqcc.ant-radio-button-wrapper {
|
|
2062
|
+
padding: 0 12px;
|
|
2063
|
+
line-height: 32px;
|
|
2064
|
+
height: 32px;
|
|
2075
2065
|
}
|
|
2076
|
-
.
|
|
2077
|
-
|
|
2066
|
+
.r1f0aqcc.ant-radio-button-wrapper > span + span {
|
|
2067
|
+
white-space: nowrap;
|
|
2078
2068
|
}
|
|
2079
|
-
.
|
|
2080
|
-
|
|
2069
|
+
.r1f0aqcc.ant-radio-button-wrapper:not(:first-child)::before {
|
|
2070
|
+
background: #ccd4e3;
|
|
2081
2071
|
}
|
|
2082
|
-
.
|
|
2083
|
-
background:
|
|
2072
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not(:first-child)::before {
|
|
2073
|
+
background: #0080ff;
|
|
2084
2074
|
}
|
|
2085
|
-
.
|
|
2086
|
-
|
|
2075
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled:not(:first-child)::before {
|
|
2076
|
+
background: #ccd4e3;
|
|
2077
|
+
opacity: 0.5;
|
|
2087
2078
|
}
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
margin: 0 auto;
|
|
2091
|
-
width: 100%;
|
|
2092
|
-
max-width: 648px;
|
|
2079
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not([class*=" ant-radio-button-wrapper-disabled"]).ant-radio-button-wrapper:first-child {
|
|
2080
|
+
border-right-color: #0080ff;
|
|
2093
2081
|
}
|
|
2094
|
-
.
|
|
2095
|
-
|
|
2082
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
|
|
2083
|
+
border-color: #0080ff;
|
|
2096
2084
|
}
|
|
2097
|
-
.
|
|
2098
|
-
|
|
2099
|
-
padding: 0;
|
|
2100
|
-
width: 100%;
|
|
2101
|
-
max-width: 648px;
|
|
2102
|
-
overflow: hidden;
|
|
2085
|
+
.r1f0aqcc.ant-radio-button-wrapper-checked {
|
|
2086
|
+
background: rgba(0, 136, 255, 0.1);
|
|
2103
2087
|
}
|
|
2104
|
-
.
|
|
2105
|
-
|
|
2088
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled {
|
|
2089
|
+
background: rgba(211, 218, 235, 0.6);
|
|
2090
|
+
border-color: #ccd4e3;
|
|
2091
|
+
opacity: 0.5;
|
|
2092
|
+
}
|
|
2093
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled:hover {
|
|
2094
|
+
color: #00122e;
|
|
2095
|
+
border-color: #ccd4e3;
|
|
2096
|
+
}
|
|
2097
|
+
.r1f0aqcc.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
|
|
2098
|
+
color: #00122e;
|
|
2099
|
+
border-color: #ccd4e3;
|
|
2100
|
+
background: rgba(172, 186, 211, 0.6);
|
|
2101
|
+
}
|
|
2102
|
+
.r1f0aqcc .ant-radio-button-input {
|
|
2103
|
+
margin-right: 8px;
|
|
2104
|
+
display: inline;
|
|
2105
|
+
border: none;
|
|
2106
|
+
padding: 0;
|
|
2107
|
+
width: 36px;
|
|
2108
|
+
background: transparent;
|
|
2109
|
+
}
|
|
2110
|
+
.r1f0aqcc .ant-radio-button-input:focus {
|
|
2111
|
+
box-shadow: none;
|
|
2112
|
+
}
|
|
2113
|
+
.r1f0aqcc .ant-radio-button-input.ant-input-number {
|
|
2114
|
+
margin-right: 0;
|
|
2115
|
+
width: initial;
|
|
2116
|
+
box-shadow: none;
|
|
2117
|
+
}
|
|
2118
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-handler-wrap {
|
|
2119
|
+
display: none;
|
|
2120
|
+
}
|
|
2121
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap {
|
|
2122
|
+
display: inline;
|
|
2123
|
+
}
|
|
2124
|
+
.r1f0aqcc .ant-radio-button-input .ant-input-number-input-wrap input {
|
|
2125
|
+
display: inline;
|
|
2126
|
+
margin-right: 8px;
|
|
2127
|
+
padding: 0;
|
|
2128
|
+
width: 36px;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal {
|
|
2132
|
+
flex-direction: row;
|
|
2133
|
+
justify-content: stretch;
|
|
2134
|
+
}
|
|
2135
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
|
|
2136
|
+
padding: 0;
|
|
2137
|
+
margin-right: 4px;
|
|
2138
|
+
flex: 1;
|
|
2139
|
+
overflow: visible;
|
|
2140
|
+
}
|
|
2141
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-tail, .s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
|
|
2142
|
+
display: none;
|
|
2143
|
+
}
|
|
2144
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content {
|
|
2145
|
+
width: 100%;
|
|
2146
|
+
min-height: unset;
|
|
2147
|
+
}
|
|
2148
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title {
|
|
2149
|
+
height: 26px;
|
|
2150
|
+
line-height: 26px;
|
|
2151
|
+
width: 100%;
|
|
2152
|
+
text-align: center;
|
|
2153
|
+
padding: 0;
|
|
2154
|
+
font-size: 12px;
|
|
2155
|
+
font-weight: normal;
|
|
2156
|
+
}
|
|
2157
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title .step-count {
|
|
2158
|
+
margin-right: 10px;
|
|
2159
|
+
}
|
|
2160
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item .ant-steps-item-content .ant-steps-item-title::after {
|
|
2161
|
+
display: none;
|
|
2162
|
+
}
|
|
2163
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child .ant-steps-item-container {
|
|
2164
|
+
border-radius: 4px 0 0 4px;
|
|
2165
|
+
}
|
|
2166
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child {
|
|
2167
|
+
margin-right: 0;
|
|
2168
|
+
}
|
|
2169
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child .ant-steps-item-container {
|
|
2170
|
+
border-radius: 0 4px 4px 0;
|
|
2171
|
+
}
|
|
2172
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:last-child)::after {
|
|
2173
|
+
content: "";
|
|
2174
|
+
width: 0;
|
|
2175
|
+
height: 0;
|
|
2176
|
+
border: 13px solid transparent;
|
|
2177
|
+
position: absolute;
|
|
2178
|
+
top: 0;
|
|
2179
|
+
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2180
|
+
right: -21px;
|
|
2181
|
+
z-index: 2;
|
|
2182
|
+
}
|
|
2183
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:not(.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item:first-child)::before {
|
|
2184
|
+
content: "";
|
|
2185
|
+
width: 0;
|
|
2186
|
+
height: 0;
|
|
2187
|
+
border: 13px solid transparent;
|
|
2188
|
+
position: absolute;
|
|
2189
|
+
top: 0;
|
|
2190
|
+
border-left: 8px solid #fff;
|
|
2191
|
+
left: 0;
|
|
2192
|
+
}
|
|
2193
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-container {
|
|
2194
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
2195
|
+
}
|
|
2196
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active::after {
|
|
2197
|
+
border-left-color: rgba(0, 136, 255, 0.1) !important;
|
|
2198
|
+
}
|
|
2199
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-active .ant-steps-item-title {
|
|
2200
|
+
color: #005ed1;
|
|
2201
|
+
}
|
|
2202
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-container,
|
|
2203
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-container {
|
|
2204
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
2205
|
+
}
|
|
2206
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-wait .ant-steps-item-title,
|
|
2207
|
+
.s3mgie3 .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-finish .ant-steps-item-title {
|
|
2208
|
+
color: rgba(44, 56, 82, 0.6);
|
|
2209
|
+
}
|
|
2210
|
+
.s3mgie3 .ant-steps:not(.ant-steps-dot):not(.ant-steps-navigation):not(.ant-steps-vertical) .ant-steps-item {
|
|
2211
|
+
padding: 0;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
.cz04yix {
|
|
2215
|
+
display: flex;
|
|
2216
|
+
flex-direction: column;
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
.m1if5j39 {
|
|
2220
|
+
max-width: 1120px;
|
|
2221
|
+
width: 100%;
|
|
2222
|
+
margin: 0 auto;
|
|
2223
|
+
height: 100%;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
.w1vvwdlp {
|
|
2227
|
+
max-width: 1120px;
|
|
2228
|
+
width: 100%;
|
|
2229
|
+
margin: 0 auto;
|
|
2230
|
+
display: flex;
|
|
2231
|
+
}
|
|
2232
|
+
.w1vvwdlp .left,
|
|
2233
|
+
.w1vvwdlp .right {
|
|
2234
|
+
flex-grow: 0;
|
|
2235
|
+
flex-shrink: 0;
|
|
2236
|
+
flex-basis: 21%;
|
|
2237
|
+
}
|
|
2238
|
+
.w1vvwdlp .left {
|
|
2239
|
+
display: flex;
|
|
2240
|
+
justify-content: flex-end;
|
|
2241
|
+
padding-right: 44px;
|
|
2242
|
+
}
|
|
2243
|
+
.w1vvwdlp .right {
|
|
2244
|
+
padding-left: 44px;
|
|
2245
|
+
}
|
|
2246
|
+
.w1vvwdlp .middle {
|
|
2247
|
+
margin-bottom: 40px;
|
|
2248
|
+
flex-grow: 0;
|
|
2249
|
+
flex-shrink: 0;
|
|
2250
|
+
flex-basis: 58%;
|
|
2251
|
+
}
|
|
2252
|
+
.w1vvwdlp .middle .form-base-field {
|
|
2253
|
+
width: 100%;
|
|
2254
|
+
}
|
|
2255
|
+
.w1vvwdlp .middle .form-base-field .form-base-field {
|
|
2256
|
+
width: auto;
|
|
2257
|
+
}
|
|
2258
|
+
.w1vvwdlp .ant-steps-vertical .ant-steps-item {
|
|
2259
|
+
flex: initial;
|
|
2260
|
+
}
|
|
2261
|
+
.w1vvwdlp .ant-steps-item + .ant-steps-item {
|
|
2262
|
+
margin-top: 4px;
|
|
2263
|
+
}
|
|
2264
|
+
.w1vvwdlp .ant-steps-item-icon,
|
|
2265
|
+
.w1vvwdlp .ant-steps-item-tail {
|
|
2266
|
+
display: none !important;
|
|
2267
|
+
}
|
|
2268
|
+
.w1vvwdlp .ant-steps-item-container {
|
|
2269
|
+
padding: 0 15px;
|
|
2270
|
+
border-radius: 4px;
|
|
2271
|
+
height: 32px;
|
|
2272
|
+
display: flex;
|
|
2273
|
+
align-items: center;
|
|
2274
|
+
}
|
|
2275
|
+
.w1vvwdlp .ant-steps-item-container .ant-steps-item-content {
|
|
2276
|
+
min-height: auto;
|
|
2277
|
+
white-space: nowrap;
|
|
2278
|
+
}
|
|
2279
|
+
.w1vvwdlp .ant-steps-item-description {
|
|
2280
|
+
padding-bottom: 0px;
|
|
2281
|
+
}
|
|
2282
|
+
.w1vvwdlp .ant-steps-item-title {
|
|
2283
|
+
font-size: 13px !important;
|
|
2284
|
+
line-height: 20px !important;
|
|
2285
|
+
}
|
|
2286
|
+
.w1vvwdlp .ant-steps-item-title .step-index {
|
|
2287
|
+
display: inline-block;
|
|
2288
|
+
text-align: center;
|
|
2289
|
+
width: 13px;
|
|
2290
|
+
margin-right: 12px;
|
|
2291
|
+
}
|
|
2292
|
+
.w1vvwdlp .ant-steps-item-active .ant-steps-item-container {
|
|
2293
|
+
background: rgba(0, 128, 255, 0.1);
|
|
2294
|
+
}
|
|
2295
|
+
.w1vvwdlp .ant-steps-item-active .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
2296
|
+
color: #005ed1;
|
|
2297
|
+
}
|
|
2298
|
+
.w1vvwdlp .ant-steps-item-finish .ant-steps-item-container {
|
|
2299
|
+
background: rgba(237, 241, 250, 0.6);
|
|
2300
|
+
}
|
|
2301
|
+
.w1vvwdlp .ant-steps-item-finish .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
2302
|
+
color: rgba(10, 37, 85, 0.6) !important;
|
|
2303
|
+
}
|
|
2304
|
+
.w1vvwdlp .ant-steps-item-disabled {
|
|
2305
|
+
cursor: not-allowed;
|
|
2306
|
+
}
|
|
2307
|
+
.w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container {
|
|
2308
|
+
background: rgba(237, 241, 250, 0.6);
|
|
2309
|
+
}
|
|
2310
|
+
.w1vvwdlp .ant-steps-item-disabled .ant-steps-item-container .ant-steps-item-content .ant-steps-item-title {
|
|
2311
|
+
color: #2d3a56;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.h1cuopx7 .ant-modal-header {
|
|
2315
|
+
margin: 0 auto;
|
|
2316
|
+
width: 100%;
|
|
2317
|
+
max-width: 648px;
|
|
2318
|
+
}
|
|
2319
|
+
.h1cuopx7 .ant-modal-header .ant-modal-title {
|
|
2320
|
+
margin-left: 0;
|
|
2321
|
+
}
|
|
2322
|
+
.h1cuopx7 .ant-modal-body {
|
|
2323
|
+
margin: 0 auto;
|
|
2324
|
+
padding: 0;
|
|
2325
|
+
width: 100%;
|
|
2326
|
+
max-width: 648px;
|
|
2327
|
+
overflow: hidden;
|
|
2328
|
+
}
|
|
2329
|
+
.h1cuopx7 .ant-modal-body .horizontal-steps-wrapper {
|
|
2330
|
+
margin-bottom: 40px;
|
|
2106
2331
|
}
|
|
2107
2332
|
.h1cuopx7 .ant-modal-body .horizontal-content-wrapper {
|
|
2108
2333
|
height: calc(100vh - 225px);
|
|
@@ -2706,233 +2931,487 @@ input.rrg1fkn.ant-input {
|
|
|
2706
2931
|
margin-left: 5px;
|
|
2707
2932
|
}
|
|
2708
2933
|
|
|
2709
|
-
.
|
|
2710
|
-
|
|
2711
|
-
|
|
2934
|
+
.d6j0lbj {
|
|
2935
|
+
font-family: Inter;
|
|
2936
|
+
font-style: normal;
|
|
2937
|
+
font-weight: bold;
|
|
2938
|
+
font-size: 32px;
|
|
2939
|
+
line-height: 40px;
|
|
2712
2940
|
}
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2941
|
+
|
|
2942
|
+
.d1xhvvxe {
|
|
2943
|
+
font-family: Inter;
|
|
2944
|
+
font-style: normal;
|
|
2945
|
+
font-weight: bold;
|
|
2946
|
+
font-size: 24px;
|
|
2947
|
+
line-height: 32px;
|
|
2718
2948
|
}
|
|
2719
|
-
|
|
2720
|
-
|
|
2949
|
+
|
|
2950
|
+
.dk10mxq {
|
|
2951
|
+
font-family: Inter;
|
|
2952
|
+
font-style: normal;
|
|
2953
|
+
font-weight: normal;
|
|
2954
|
+
font-size: 32px;
|
|
2955
|
+
line-height: 40px;
|
|
2721
2956
|
}
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2957
|
+
|
|
2958
|
+
.dxsait {
|
|
2959
|
+
font-family: Inter;
|
|
2960
|
+
font-style: normal;
|
|
2961
|
+
font-weight: bold;
|
|
2962
|
+
font-size: 20px;
|
|
2963
|
+
line-height: 24px;
|
|
2725
2964
|
}
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
text-align: center;
|
|
2731
|
-
padding: 0;
|
|
2732
|
-
font-size: 12px;
|
|
2965
|
+
|
|
2966
|
+
.dokn0h3 {
|
|
2967
|
+
font-family: Inter;
|
|
2968
|
+
font-style: normal;
|
|
2733
2969
|
font-weight: normal;
|
|
2970
|
+
font-size: 20px;
|
|
2971
|
+
line-height: 24px;
|
|
2734
2972
|
}
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2973
|
+
|
|
2974
|
+
.dobau4p {
|
|
2975
|
+
font-family: Inter;
|
|
2976
|
+
font-style: normal;
|
|
2977
|
+
font-weight: bold;
|
|
2978
|
+
font-size: 18px;
|
|
2979
|
+
line-height: 22px;
|
|
2740
2980
|
}
|
|
2741
|
-
|
|
2742
|
-
|
|
2981
|
+
|
|
2982
|
+
.dvolwok {
|
|
2983
|
+
font-family: Inter;
|
|
2984
|
+
font-style: normal;
|
|
2985
|
+
font-weight: normal;
|
|
2986
|
+
font-size: 18px;
|
|
2987
|
+
line-height: 22px;
|
|
2743
2988
|
}
|
|
2744
|
-
|
|
2745
|
-
|
|
2989
|
+
|
|
2990
|
+
.h181qhg4 {
|
|
2991
|
+
font-family: Inter;
|
|
2992
|
+
font-style: normal;
|
|
2993
|
+
font-weight: bold;
|
|
2994
|
+
font-size: 16px;
|
|
2995
|
+
line-height: 22px;
|
|
2746
2996
|
}
|
|
2747
|
-
|
|
2748
|
-
|
|
2997
|
+
|
|
2998
|
+
.h1phgmcq {
|
|
2999
|
+
font-family: Inter;
|
|
3000
|
+
font-style: normal;
|
|
3001
|
+
font-weight: normal;
|
|
3002
|
+
font-size: 16px;
|
|
3003
|
+
line-height: 22px;
|
|
2749
3004
|
}
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
border-left: 8px solid rgba(237, 241, 250, 0.6);
|
|
2758
|
-
right: -21px;
|
|
2759
|
-
z-index: 2;
|
|
3005
|
+
|
|
3006
|
+
.h173xnl1 {
|
|
3007
|
+
font-family: Inter;
|
|
3008
|
+
font-style: normal;
|
|
3009
|
+
font-weight: bold;
|
|
3010
|
+
font-size: 14px;
|
|
3011
|
+
line-height: 20px;
|
|
2760
3012
|
}
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
border-left: 8px solid #fff;
|
|
2769
|
-
left: 0;
|
|
3013
|
+
|
|
3014
|
+
.hedm4pz {
|
|
3015
|
+
font-family: Inter;
|
|
3016
|
+
font-style: normal;
|
|
3017
|
+
font-weight: normal;
|
|
3018
|
+
font-size: 14px;
|
|
3019
|
+
line-height: 20px;
|
|
2770
3020
|
}
|
|
2771
|
-
|
|
2772
|
-
|
|
3021
|
+
|
|
3022
|
+
.h1kd8xld {
|
|
3023
|
+
font-family: Inter;
|
|
3024
|
+
font-style: normal;
|
|
3025
|
+
font-weight: bold;
|
|
3026
|
+
font-size: 12px;
|
|
3027
|
+
line-height: 18px;
|
|
2773
3028
|
}
|
|
2774
|
-
|
|
2775
|
-
|
|
3029
|
+
|
|
3030
|
+
.hp14fr {
|
|
3031
|
+
font-family: Inter;
|
|
3032
|
+
font-style: normal;
|
|
3033
|
+
font-weight: normal;
|
|
3034
|
+
font-size: 12px;
|
|
3035
|
+
line-height: 18px;
|
|
2776
3036
|
}
|
|
2777
|
-
|
|
2778
|
-
|
|
3037
|
+
|
|
3038
|
+
.hgrg7mn {
|
|
3039
|
+
font-family: Inter;
|
|
3040
|
+
font-style: normal;
|
|
3041
|
+
font-weight: bold;
|
|
3042
|
+
text-transform: uppercase;
|
|
3043
|
+
font-feature-settings: "cpsp" on;
|
|
3044
|
+
font-size: 12px;
|
|
3045
|
+
line-height: 18px;
|
|
2779
3046
|
}
|
|
2780
|
-
|
|
2781
|
-
.
|
|
2782
|
-
|
|
3047
|
+
|
|
3048
|
+
.h6zme9x {
|
|
3049
|
+
font-family: Inter;
|
|
3050
|
+
font-style: normal;
|
|
3051
|
+
font-weight: normal;
|
|
3052
|
+
text-transform: uppercase;
|
|
3053
|
+
font-feature-settings: "cpsp" on;
|
|
3054
|
+
font-size: 12px;
|
|
3055
|
+
line-height: 18px;
|
|
2783
3056
|
}
|
|
2784
|
-
|
|
2785
|
-
.
|
|
2786
|
-
|
|
3057
|
+
|
|
3058
|
+
.locjvsv {
|
|
3059
|
+
font-family: Inter;
|
|
3060
|
+
font-style: normal;
|
|
3061
|
+
font-weight: normal;
|
|
3062
|
+
font-size: 16px;
|
|
3063
|
+
line-height: 24px;
|
|
2787
3064
|
}
|
|
2788
|
-
|
|
2789
|
-
|
|
3065
|
+
|
|
3066
|
+
.l13gi131 {
|
|
3067
|
+
font-family: Inter;
|
|
3068
|
+
font-style: normal;
|
|
3069
|
+
font-weight: bold;
|
|
3070
|
+
font-size: 16px;
|
|
3071
|
+
line-height: 24px;
|
|
2790
3072
|
}
|
|
2791
3073
|
|
|
2792
|
-
.
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
3074
|
+
.l1ynemsu {
|
|
3075
|
+
font-family: Inter;
|
|
3076
|
+
font-style: normal;
|
|
3077
|
+
font-weight: normal;
|
|
3078
|
+
font-size: 16px;
|
|
3079
|
+
line-height: 24px;
|
|
2796
3080
|
}
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
3081
|
+
|
|
3082
|
+
.l1cft1cx {
|
|
3083
|
+
font-family: Inter;
|
|
3084
|
+
font-style: normal;
|
|
3085
|
+
font-weight: bold;
|
|
3086
|
+
font-size: 16px;
|
|
3087
|
+
line-height: 24px;
|
|
2800
3088
|
}
|
|
2801
|
-
|
|
2802
|
-
|
|
3089
|
+
|
|
3090
|
+
.l17tqc8p {
|
|
3091
|
+
font-family: Inter;
|
|
3092
|
+
font-style: normal;
|
|
3093
|
+
font-weight: normal;
|
|
3094
|
+
text-transform: uppercase;
|
|
3095
|
+
font-feature-settings: "cpsp" on;
|
|
3096
|
+
font-size: 16px;
|
|
3097
|
+
line-height: 24px;
|
|
2803
3098
|
}
|
|
2804
|
-
|
|
2805
|
-
|
|
3099
|
+
|
|
3100
|
+
.l1j1e5w7 {
|
|
3101
|
+
font-family: Inter;
|
|
3102
|
+
font-style: normal;
|
|
3103
|
+
font-weight: bold;
|
|
3104
|
+
text-transform: uppercase;
|
|
3105
|
+
font-feature-settings: "cpsp" on;
|
|
3106
|
+
font-size: 16px;
|
|
3107
|
+
line-height: 24px;
|
|
2806
3108
|
}
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
3109
|
+
|
|
3110
|
+
.l1gf91jb {
|
|
3111
|
+
font-family: Inter;
|
|
3112
|
+
font-style: normal;
|
|
3113
|
+
font-weight: normal;
|
|
3114
|
+
font-size: 14px;
|
|
3115
|
+
line-height: 22px;
|
|
2810
3116
|
}
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
3117
|
+
|
|
3118
|
+
.lu7hlr6 {
|
|
3119
|
+
font-family: Inter;
|
|
3120
|
+
font-style: normal;
|
|
3121
|
+
font-weight: 500;
|
|
3122
|
+
font-size: 14px;
|
|
3123
|
+
line-height: 22px;
|
|
2817
3124
|
}
|
|
2818
|
-
|
|
2819
|
-
|
|
3125
|
+
|
|
3126
|
+
.l3l3jf0 {
|
|
3127
|
+
font-family: Inter;
|
|
3128
|
+
font-style: normal;
|
|
3129
|
+
font-weight: bold;
|
|
3130
|
+
font-size: 14px;
|
|
3131
|
+
line-height: 22px;
|
|
2820
3132
|
}
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
3133
|
+
|
|
3134
|
+
.l12j5nqp {
|
|
3135
|
+
font-family: Inter;
|
|
3136
|
+
font-style: normal;
|
|
3137
|
+
font-weight: normal;
|
|
3138
|
+
font-size: 14px;
|
|
3139
|
+
line-height: 22px;
|
|
2824
3140
|
}
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
.rxbeqvl.ant-radio-wrapper .ant-radio.ant-radio-disabled + span .radio-description {
|
|
2833
|
-
color: #00122e;
|
|
2834
|
-
}
|
|
2835
|
-
.rxbeqvl.ant-radio-wrapper .ant-radio + span {
|
|
2836
|
-
display: inline-block;
|
|
2837
|
-
padding: 0;
|
|
2838
|
-
padding-left: 12px;
|
|
2839
|
-
}
|
|
2840
|
-
.rxbeqvl.ant-radio-wrapper .ant-radio + span .radio-description {
|
|
2841
|
-
margin-bottom: 0;
|
|
2842
|
-
white-space: pre-wrap;
|
|
2843
|
-
color: rgba(44, 56, 82, 0.6);
|
|
2844
|
-
}
|
|
2845
|
-
.rxbeqvl.ant-radio-wrapper.compact .ant-radio + span {
|
|
2846
|
-
padding-left: 8px;
|
|
3141
|
+
|
|
3142
|
+
.l1tecqht {
|
|
3143
|
+
font-family: Inter;
|
|
3144
|
+
font-style: normal;
|
|
3145
|
+
font-weight: bold;
|
|
3146
|
+
font-size: 14px;
|
|
3147
|
+
line-height: 22px;
|
|
2847
3148
|
}
|
|
2848
3149
|
|
|
2849
|
-
.
|
|
2850
|
-
|
|
3150
|
+
.l6sa990 {
|
|
3151
|
+
font-family: Inter;
|
|
3152
|
+
font-style: normal;
|
|
3153
|
+
font-weight: normal;
|
|
3154
|
+
text-transform: uppercase;
|
|
3155
|
+
font-feature-settings: "cpsp" on;
|
|
3156
|
+
font-size: 14px;
|
|
3157
|
+
line-height: 22px;
|
|
2851
3158
|
}
|
|
2852
|
-
|
|
2853
|
-
|
|
3159
|
+
|
|
3160
|
+
.lckqe8j {
|
|
3161
|
+
font-family: Inter;
|
|
3162
|
+
font-style: normal;
|
|
3163
|
+
font-weight: bold;
|
|
3164
|
+
text-transform: uppercase;
|
|
3165
|
+
font-feature-settings: "cpsp" on;
|
|
3166
|
+
font-size: 14px;
|
|
3167
|
+
line-height: 22px;
|
|
2854
3168
|
}
|
|
2855
3169
|
|
|
2856
|
-
.
|
|
2857
|
-
|
|
2858
|
-
|
|
3170
|
+
.l1kuminb {
|
|
3171
|
+
font-family: Inter;
|
|
3172
|
+
font-style: normal;
|
|
3173
|
+
font-weight: normal;
|
|
3174
|
+
font-size: 13px;
|
|
3175
|
+
line-height: 20px;
|
|
2859
3176
|
}
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
3177
|
+
|
|
3178
|
+
.l1pbuf5j {
|
|
3179
|
+
font-family: Inter;
|
|
3180
|
+
font-style: normal;
|
|
3181
|
+
font-weight: 600;
|
|
3182
|
+
font-size: 13px;
|
|
3183
|
+
line-height: 20px;
|
|
2863
3184
|
}
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
3185
|
+
|
|
3186
|
+
.l1r4ztu {
|
|
3187
|
+
font-family: Inter;
|
|
3188
|
+
font-style: normal;
|
|
3189
|
+
font-weight: bold;
|
|
3190
|
+
font-size: 13px;
|
|
3191
|
+
line-height: 20px;
|
|
2868
3192
|
}
|
|
2869
|
-
|
|
2870
|
-
|
|
3193
|
+
|
|
3194
|
+
.ly8vzok {
|
|
3195
|
+
font-family: Inter;
|
|
3196
|
+
font-style: normal;
|
|
3197
|
+
font-weight: normal;
|
|
3198
|
+
font-size: 13px;
|
|
3199
|
+
line-height: 20px;
|
|
2871
3200
|
}
|
|
2872
|
-
|
|
2873
|
-
|
|
3201
|
+
|
|
3202
|
+
.lumfmf {
|
|
3203
|
+
font-family: Inter;
|
|
3204
|
+
font-style: normal;
|
|
3205
|
+
font-weight: 600;
|
|
3206
|
+
font-size: 13px;
|
|
3207
|
+
line-height: 20px;
|
|
2874
3208
|
}
|
|
2875
|
-
|
|
2876
|
-
|
|
3209
|
+
|
|
3210
|
+
.l16ujwmv {
|
|
3211
|
+
font-family: Inter;
|
|
3212
|
+
font-style: normal;
|
|
3213
|
+
font-weight: bold;
|
|
3214
|
+
font-size: 13px;
|
|
3215
|
+
line-height: 20px;
|
|
2877
3216
|
}
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
3217
|
+
|
|
3218
|
+
.l17o1ffr {
|
|
3219
|
+
font-family: Inter;
|
|
3220
|
+
font-style: normal;
|
|
3221
|
+
font-weight: normal;
|
|
3222
|
+
text-transform: uppercase;
|
|
3223
|
+
font-feature-settings: "cpsp" on;
|
|
3224
|
+
font-size: 13px;
|
|
3225
|
+
line-height: 20px;
|
|
2881
3226
|
}
|
|
2882
|
-
|
|
2883
|
-
|
|
3227
|
+
|
|
3228
|
+
.lngllvn {
|
|
3229
|
+
font-family: Inter;
|
|
3230
|
+
font-style: normal;
|
|
3231
|
+
font-weight: bold;
|
|
3232
|
+
text-transform: uppercase;
|
|
3233
|
+
font-feature-settings: "cpsp" on;
|
|
3234
|
+
font-size: 13px;
|
|
3235
|
+
line-height: 20px;
|
|
2884
3236
|
}
|
|
2885
|
-
|
|
2886
|
-
|
|
3237
|
+
|
|
3238
|
+
.l2i7fo9 {
|
|
3239
|
+
font-family: Inter;
|
|
3240
|
+
font-style: normal;
|
|
3241
|
+
font-weight: normal;
|
|
3242
|
+
font-size: 12px;
|
|
3243
|
+
line-height: 18px;
|
|
2887
3244
|
}
|
|
2888
|
-
|
|
2889
|
-
|
|
3245
|
+
|
|
3246
|
+
.l1x7hscx {
|
|
3247
|
+
font-family: Inter;
|
|
3248
|
+
font-style: normal;
|
|
3249
|
+
font-weight: 500;
|
|
3250
|
+
font-size: 12px;
|
|
3251
|
+
line-height: 18px;
|
|
2890
3252
|
}
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
3253
|
+
|
|
3254
|
+
.le1jwan {
|
|
3255
|
+
font-family: Inter;
|
|
3256
|
+
font-style: normal;
|
|
3257
|
+
font-weight: bold;
|
|
3258
|
+
font-size: 12px;
|
|
3259
|
+
line-height: 18px;
|
|
2895
3260
|
}
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
3261
|
+
|
|
3262
|
+
.lyxynfj {
|
|
3263
|
+
font-family: Inter;
|
|
3264
|
+
font-style: normal;
|
|
3265
|
+
font-weight: normal;
|
|
3266
|
+
font-size: 12px;
|
|
3267
|
+
line-height: 18px;
|
|
2899
3268
|
}
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
3269
|
+
|
|
3270
|
+
.lpb2nxv {
|
|
3271
|
+
font-family: Inter;
|
|
3272
|
+
font-style: normal;
|
|
3273
|
+
font-weight: 500;
|
|
3274
|
+
font-size: 12px;
|
|
3275
|
+
line-height: 18px;
|
|
2904
3276
|
}
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
3277
|
+
|
|
3278
|
+
.l1r8o3vv {
|
|
3279
|
+
font-family: Inter;
|
|
3280
|
+
font-style: normal;
|
|
3281
|
+
font-weight: bold;
|
|
3282
|
+
font-size: 12px;
|
|
3283
|
+
line-height: 18px;
|
|
2912
3284
|
}
|
|
2913
|
-
|
|
2914
|
-
|
|
3285
|
+
|
|
3286
|
+
.lemnjy2 {
|
|
3287
|
+
font-family: Inter;
|
|
3288
|
+
font-style: normal;
|
|
3289
|
+
font-weight: normal;
|
|
3290
|
+
text-transform: uppercase;
|
|
3291
|
+
font-feature-settings: "cpsp" on;
|
|
3292
|
+
font-size: 12px;
|
|
3293
|
+
line-height: 18px;
|
|
2915
3294
|
}
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
3295
|
+
|
|
3296
|
+
.lrc42gb {
|
|
3297
|
+
font-family: Inter;
|
|
3298
|
+
font-style: normal;
|
|
3299
|
+
font-weight: bold;
|
|
3300
|
+
text-transform: uppercase;
|
|
3301
|
+
font-feature-settings: "cpsp" on;
|
|
3302
|
+
font-size: 12px;
|
|
3303
|
+
line-height: 18px;
|
|
2920
3304
|
}
|
|
2921
|
-
|
|
2922
|
-
|
|
3305
|
+
|
|
3306
|
+
.fqaz4mb {
|
|
3307
|
+
font-family: Inter;
|
|
3308
|
+
font-style: normal;
|
|
3309
|
+
font-weight: normal;
|
|
3310
|
+
font-size: 13px;
|
|
3311
|
+
line-height: 20px;
|
|
2923
3312
|
}
|
|
2924
|
-
|
|
2925
|
-
|
|
3313
|
+
|
|
3314
|
+
.f13we5o {
|
|
3315
|
+
font-family: Inter;
|
|
3316
|
+
font-style: normal;
|
|
3317
|
+
font-weight: normal;
|
|
3318
|
+
font-size: 13px;
|
|
3319
|
+
line-height: 20px;
|
|
2926
3320
|
}
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
3321
|
+
|
|
3322
|
+
.ffmjua2 {
|
|
3323
|
+
font-family: Inter;
|
|
3324
|
+
font-style: normal;
|
|
3325
|
+
font-weight: normal;
|
|
3326
|
+
font-size: 12px;
|
|
3327
|
+
line-height: 18px;
|
|
2932
3328
|
}
|
|
2933
3329
|
|
|
2934
|
-
.
|
|
2935
|
-
|
|
3330
|
+
.fz2mxw0 {
|
|
3331
|
+
font-family: Inter;
|
|
3332
|
+
font-style: normal;
|
|
3333
|
+
font-weight: normal;
|
|
3334
|
+
font-size: 12px;
|
|
3335
|
+
line-height: 18px;
|
|
3336
|
+
}
|
|
3337
|
+
|
|
3338
|
+
.t1ertzoh {
|
|
3339
|
+
font-family: Inter;
|
|
3340
|
+
font-style: normal;
|
|
3341
|
+
font-weight: normal;
|
|
3342
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
3343
|
+
font-size: 13px;
|
|
3344
|
+
line-height: 20px;
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3347
|
+
.t19bge8r {
|
|
3348
|
+
font-family: Inter;
|
|
3349
|
+
font-style: normal;
|
|
3350
|
+
font-weight: normal;
|
|
3351
|
+
font-feature-settings: "zero" on;
|
|
3352
|
+
font-size: 13px;
|
|
3353
|
+
line-height: 20px;
|
|
3354
|
+
}
|
|
3355
|
+
|
|
3356
|
+
.tjrzfyl {
|
|
3357
|
+
font-family: Inter;
|
|
3358
|
+
font-style: normal;
|
|
3359
|
+
font-weight: normal;
|
|
3360
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
3361
|
+
font-size: 12px;
|
|
3362
|
+
line-height: 18px;
|
|
3363
|
+
}
|
|
3364
|
+
|
|
3365
|
+
.tm6s7bo {
|
|
3366
|
+
font-family: Inter;
|
|
3367
|
+
font-style: normal;
|
|
3368
|
+
font-weight: 500;
|
|
3369
|
+
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
3370
|
+
font-size: 12px;
|
|
3371
|
+
line-height: 18px;
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
.t19zq6ic {
|
|
3375
|
+
font-family: Inter;
|
|
3376
|
+
font-style: normal;
|
|
3377
|
+
font-weight: normal;
|
|
3378
|
+
font-feature-settings: "zero" on;
|
|
3379
|
+
font-size: 12px;
|
|
3380
|
+
line-height: 18px;
|
|
3381
|
+
}
|
|
3382
|
+
|
|
3383
|
+
.t1gduru8 {
|
|
3384
|
+
font-family: Inter;
|
|
3385
|
+
font-style: normal;
|
|
3386
|
+
font-weight: 500;
|
|
3387
|
+
font-feature-settings: "zero" on;
|
|
3388
|
+
font-size: 12px;
|
|
3389
|
+
line-height: 18px;
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
.t55raab {
|
|
3393
|
+
font-family: Inter;
|
|
3394
|
+
font-style: normal;
|
|
3395
|
+
font-weight: bold;
|
|
3396
|
+
font-feature-settings: "zero" on;
|
|
3397
|
+
font-size: 16px;
|
|
3398
|
+
line-height: 24px;
|
|
3399
|
+
}
|
|
3400
|
+
|
|
3401
|
+
.u1w9abfe {
|
|
3402
|
+
font-family: Inter;
|
|
3403
|
+
font-style: normal;
|
|
3404
|
+
font-weight: normal;
|
|
3405
|
+
font-size: 10px;
|
|
3406
|
+
line-height: 12px;
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
.i1e4sgug {
|
|
3410
|
+
display: inline-block;
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
.t1upn1sz {
|
|
3414
|
+
height: 100%;
|
|
2936
3415
|
}
|
|
2937
3416
|
|
|
2938
3417
|
.tta5kd2 {
|
|
@@ -3229,567 +3708,88 @@ input.rrg1fkn.ant-input {
|
|
|
3229
3708
|
transform: translateY(-50%);
|
|
3230
3709
|
}
|
|
3231
3710
|
.tta5kd2 .ant-table .ant-table-thead > tr > th:active .ant-table-column-sorters .order-icon.ascend {
|
|
3232
|
-
transform: translateY(-50%) rotateX(180deg);
|
|
3233
|
-
}
|
|
3234
|
-
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
|
|
3235
|
-
background: #f2f5fa;
|
|
3236
|
-
}
|
|
3237
|
-
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
|
|
3238
|
-
display: block;
|
|
3239
|
-
}
|
|
3240
|
-
.tta5kd2 .ant-table .ant-table-thead > tr > th.align-right {
|
|
3241
|
-
padding-right: 25px;
|
|
3242
|
-
}
|
|
3243
|
-
.tta5kd2 .ant-table .ant-table-selection-column {
|
|
3244
|
-
padding: 0 !important;
|
|
3245
|
-
}
|
|
3246
|
-
.tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
|
|
3247
|
-
position: absolute;
|
|
3248
|
-
left: 50%;
|
|
3249
|
-
top: 50%;
|
|
3250
|
-
transform: translate(-50%, -50%);
|
|
3251
|
-
}
|
|
3252
|
-
.tta5kd2 .ant-table .ant-table-selection-column:after {
|
|
3253
|
-
display: none;
|
|
3254
|
-
}
|
|
3255
|
-
.tta5kd2 .ant-table .ant-table-hide-scrollbar {
|
|
3256
|
-
background: #fff;
|
|
3257
|
-
}
|
|
3258
|
-
.tta5kd2 .ant-table .ant-table-placeholder {
|
|
3259
|
-
background: inherit;
|
|
3260
|
-
}
|
|
3261
|
-
.tta5kd2 .ant-table .ant-table-placeholder td {
|
|
3262
|
-
position: static;
|
|
3263
|
-
border: none;
|
|
3264
|
-
background: inherit !important;
|
|
3265
|
-
height: 100px;
|
|
3266
|
-
vertical-align: middle;
|
|
3267
|
-
}
|
|
3268
|
-
.tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
|
|
3269
|
-
.tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
3270
|
-
font-weight: bold;
|
|
3271
|
-
font-size: 20px;
|
|
3272
|
-
color: rgba(10, 37, 85, 0.6);
|
|
3273
|
-
}
|
|
3274
|
-
.tta5kd2 .ant-table td.cell__action_ {
|
|
3275
|
-
padding: 0 !important;
|
|
3276
|
-
position: relative;
|
|
3277
|
-
background: #fff;
|
|
3278
|
-
}
|
|
3279
|
-
.tta5kd2 .ant-table td.cell__action_ > * {
|
|
3280
|
-
height: 100%;
|
|
3281
|
-
display: flex;
|
|
3282
|
-
align-items: center;
|
|
3283
|
-
justify-content: flex-end;
|
|
3284
|
-
padding-right: 8px;
|
|
3285
|
-
}
|
|
3286
|
-
.tta5kd2 .ant-table td.cell__action_ .menu-button {
|
|
3287
|
-
width: 24px;
|
|
3288
|
-
height: 24px;
|
|
3289
|
-
cursor: pointer;
|
|
3290
|
-
justify-content: center;
|
|
3291
|
-
border-radius: 4px;
|
|
3292
|
-
}
|
|
3293
|
-
.tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
|
|
3294
|
-
background: #fff;
|
|
3295
|
-
}
|
|
3296
|
-
|
|
3297
|
-
.s1fc623g {
|
|
3298
|
-
width: 430px !important;
|
|
3299
|
-
}
|
|
3300
|
-
|
|
3301
|
-
.oa3mx0o {
|
|
3302
|
-
display: flex;
|
|
3303
|
-
flex-direction: column;
|
|
3304
|
-
}
|
|
3305
|
-
|
|
3306
|
-
.onr9gzt {
|
|
3307
|
-
display: flex;
|
|
3308
|
-
justify-content: space-between;
|
|
3309
|
-
}
|
|
3310
|
-
|
|
3311
|
-
.oiy0apc {
|
|
3312
|
-
display: flex;
|
|
3313
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3314
|
-
}
|
|
3315
|
-
|
|
3316
|
-
.i1e4sgug {
|
|
3317
|
-
display: inline-block;
|
|
3318
|
-
}
|
|
3319
|
-
|
|
3320
|
-
.d6j0lbj {
|
|
3321
|
-
font-family: Inter;
|
|
3322
|
-
font-style: normal;
|
|
3323
|
-
font-weight: bold;
|
|
3324
|
-
font-size: 32px;
|
|
3325
|
-
line-height: 40px;
|
|
3326
|
-
}
|
|
3327
|
-
|
|
3328
|
-
.d1xhvvxe {
|
|
3329
|
-
font-family: Inter;
|
|
3330
|
-
font-style: normal;
|
|
3331
|
-
font-weight: bold;
|
|
3332
|
-
font-size: 24px;
|
|
3333
|
-
line-height: 32px;
|
|
3334
|
-
}
|
|
3335
|
-
|
|
3336
|
-
.dk10mxq {
|
|
3337
|
-
font-family: Inter;
|
|
3338
|
-
font-style: normal;
|
|
3339
|
-
font-weight: normal;
|
|
3340
|
-
font-size: 32px;
|
|
3341
|
-
line-height: 40px;
|
|
3342
|
-
}
|
|
3343
|
-
|
|
3344
|
-
.dxsait {
|
|
3345
|
-
font-family: Inter;
|
|
3346
|
-
font-style: normal;
|
|
3347
|
-
font-weight: bold;
|
|
3348
|
-
font-size: 20px;
|
|
3349
|
-
line-height: 24px;
|
|
3350
|
-
}
|
|
3351
|
-
|
|
3352
|
-
.dokn0h3 {
|
|
3353
|
-
font-family: Inter;
|
|
3354
|
-
font-style: normal;
|
|
3355
|
-
font-weight: normal;
|
|
3356
|
-
font-size: 20px;
|
|
3357
|
-
line-height: 24px;
|
|
3358
|
-
}
|
|
3359
|
-
|
|
3360
|
-
.dobau4p {
|
|
3361
|
-
font-family: Inter;
|
|
3362
|
-
font-style: normal;
|
|
3363
|
-
font-weight: bold;
|
|
3364
|
-
font-size: 18px;
|
|
3365
|
-
line-height: 22px;
|
|
3366
|
-
}
|
|
3367
|
-
|
|
3368
|
-
.dvolwok {
|
|
3369
|
-
font-family: Inter;
|
|
3370
|
-
font-style: normal;
|
|
3371
|
-
font-weight: normal;
|
|
3372
|
-
font-size: 18px;
|
|
3373
|
-
line-height: 22px;
|
|
3374
|
-
}
|
|
3375
|
-
|
|
3376
|
-
.h181qhg4 {
|
|
3377
|
-
font-family: Inter;
|
|
3378
|
-
font-style: normal;
|
|
3379
|
-
font-weight: bold;
|
|
3380
|
-
font-size: 16px;
|
|
3381
|
-
line-height: 22px;
|
|
3382
|
-
}
|
|
3383
|
-
|
|
3384
|
-
.h1phgmcq {
|
|
3385
|
-
font-family: Inter;
|
|
3386
|
-
font-style: normal;
|
|
3387
|
-
font-weight: normal;
|
|
3388
|
-
font-size: 16px;
|
|
3389
|
-
line-height: 22px;
|
|
3390
|
-
}
|
|
3391
|
-
|
|
3392
|
-
.h173xnl1 {
|
|
3393
|
-
font-family: Inter;
|
|
3394
|
-
font-style: normal;
|
|
3395
|
-
font-weight: bold;
|
|
3396
|
-
font-size: 14px;
|
|
3397
|
-
line-height: 20px;
|
|
3398
|
-
}
|
|
3399
|
-
|
|
3400
|
-
.hedm4pz {
|
|
3401
|
-
font-family: Inter;
|
|
3402
|
-
font-style: normal;
|
|
3403
|
-
font-weight: normal;
|
|
3404
|
-
font-size: 14px;
|
|
3405
|
-
line-height: 20px;
|
|
3406
|
-
}
|
|
3407
|
-
|
|
3408
|
-
.h1kd8xld {
|
|
3409
|
-
font-family: Inter;
|
|
3410
|
-
font-style: normal;
|
|
3411
|
-
font-weight: bold;
|
|
3412
|
-
font-size: 12px;
|
|
3413
|
-
line-height: 18px;
|
|
3414
|
-
}
|
|
3415
|
-
|
|
3416
|
-
.hp14fr {
|
|
3417
|
-
font-family: Inter;
|
|
3418
|
-
font-style: normal;
|
|
3419
|
-
font-weight: normal;
|
|
3420
|
-
font-size: 12px;
|
|
3421
|
-
line-height: 18px;
|
|
3422
|
-
}
|
|
3423
|
-
|
|
3424
|
-
.hgrg7mn {
|
|
3425
|
-
font-family: Inter;
|
|
3426
|
-
font-style: normal;
|
|
3427
|
-
font-weight: bold;
|
|
3428
|
-
text-transform: uppercase;
|
|
3429
|
-
font-feature-settings: "cpsp" on;
|
|
3430
|
-
font-size: 12px;
|
|
3431
|
-
line-height: 18px;
|
|
3432
|
-
}
|
|
3433
|
-
|
|
3434
|
-
.h6zme9x {
|
|
3435
|
-
font-family: Inter;
|
|
3436
|
-
font-style: normal;
|
|
3437
|
-
font-weight: normal;
|
|
3438
|
-
text-transform: uppercase;
|
|
3439
|
-
font-feature-settings: "cpsp" on;
|
|
3440
|
-
font-size: 12px;
|
|
3441
|
-
line-height: 18px;
|
|
3442
|
-
}
|
|
3443
|
-
|
|
3444
|
-
.locjvsv {
|
|
3445
|
-
font-family: Inter;
|
|
3446
|
-
font-style: normal;
|
|
3447
|
-
font-weight: normal;
|
|
3448
|
-
font-size: 16px;
|
|
3449
|
-
line-height: 24px;
|
|
3450
|
-
}
|
|
3451
|
-
|
|
3452
|
-
.l13gi131 {
|
|
3453
|
-
font-family: Inter;
|
|
3454
|
-
font-style: normal;
|
|
3455
|
-
font-weight: bold;
|
|
3456
|
-
font-size: 16px;
|
|
3457
|
-
line-height: 24px;
|
|
3458
|
-
}
|
|
3459
|
-
|
|
3460
|
-
.l1ynemsu {
|
|
3461
|
-
font-family: Inter;
|
|
3462
|
-
font-style: normal;
|
|
3463
|
-
font-weight: normal;
|
|
3464
|
-
font-size: 16px;
|
|
3465
|
-
line-height: 24px;
|
|
3466
|
-
}
|
|
3467
|
-
|
|
3468
|
-
.l1cft1cx {
|
|
3469
|
-
font-family: Inter;
|
|
3470
|
-
font-style: normal;
|
|
3471
|
-
font-weight: bold;
|
|
3472
|
-
font-size: 16px;
|
|
3473
|
-
line-height: 24px;
|
|
3474
|
-
}
|
|
3475
|
-
|
|
3476
|
-
.l17tqc8p {
|
|
3477
|
-
font-family: Inter;
|
|
3478
|
-
font-style: normal;
|
|
3479
|
-
font-weight: normal;
|
|
3480
|
-
text-transform: uppercase;
|
|
3481
|
-
font-feature-settings: "cpsp" on;
|
|
3482
|
-
font-size: 16px;
|
|
3483
|
-
line-height: 24px;
|
|
3484
|
-
}
|
|
3485
|
-
|
|
3486
|
-
.l1j1e5w7 {
|
|
3487
|
-
font-family: Inter;
|
|
3488
|
-
font-style: normal;
|
|
3489
|
-
font-weight: bold;
|
|
3490
|
-
text-transform: uppercase;
|
|
3491
|
-
font-feature-settings: "cpsp" on;
|
|
3492
|
-
font-size: 16px;
|
|
3493
|
-
line-height: 24px;
|
|
3494
|
-
}
|
|
3495
|
-
|
|
3496
|
-
.l1gf91jb {
|
|
3497
|
-
font-family: Inter;
|
|
3498
|
-
font-style: normal;
|
|
3499
|
-
font-weight: normal;
|
|
3500
|
-
font-size: 14px;
|
|
3501
|
-
line-height: 22px;
|
|
3502
|
-
}
|
|
3503
|
-
|
|
3504
|
-
.lu7hlr6 {
|
|
3505
|
-
font-family: Inter;
|
|
3506
|
-
font-style: normal;
|
|
3507
|
-
font-weight: 500;
|
|
3508
|
-
font-size: 14px;
|
|
3509
|
-
line-height: 22px;
|
|
3510
|
-
}
|
|
3511
|
-
|
|
3512
|
-
.l3l3jf0 {
|
|
3513
|
-
font-family: Inter;
|
|
3514
|
-
font-style: normal;
|
|
3515
|
-
font-weight: bold;
|
|
3516
|
-
font-size: 14px;
|
|
3517
|
-
line-height: 22px;
|
|
3518
|
-
}
|
|
3519
|
-
|
|
3520
|
-
.l12j5nqp {
|
|
3521
|
-
font-family: Inter;
|
|
3522
|
-
font-style: normal;
|
|
3523
|
-
font-weight: normal;
|
|
3524
|
-
font-size: 14px;
|
|
3525
|
-
line-height: 22px;
|
|
3526
|
-
}
|
|
3527
|
-
|
|
3528
|
-
.l1tecqht {
|
|
3529
|
-
font-family: Inter;
|
|
3530
|
-
font-style: normal;
|
|
3531
|
-
font-weight: bold;
|
|
3532
|
-
font-size: 14px;
|
|
3533
|
-
line-height: 22px;
|
|
3534
|
-
}
|
|
3535
|
-
|
|
3536
|
-
.l6sa990 {
|
|
3537
|
-
font-family: Inter;
|
|
3538
|
-
font-style: normal;
|
|
3539
|
-
font-weight: normal;
|
|
3540
|
-
text-transform: uppercase;
|
|
3541
|
-
font-feature-settings: "cpsp" on;
|
|
3542
|
-
font-size: 14px;
|
|
3543
|
-
line-height: 22px;
|
|
3544
|
-
}
|
|
3545
|
-
|
|
3546
|
-
.lckqe8j {
|
|
3547
|
-
font-family: Inter;
|
|
3548
|
-
font-style: normal;
|
|
3549
|
-
font-weight: bold;
|
|
3550
|
-
text-transform: uppercase;
|
|
3551
|
-
font-feature-settings: "cpsp" on;
|
|
3552
|
-
font-size: 14px;
|
|
3553
|
-
line-height: 22px;
|
|
3554
|
-
}
|
|
3555
|
-
|
|
3556
|
-
.l1kuminb {
|
|
3557
|
-
font-family: Inter;
|
|
3558
|
-
font-style: normal;
|
|
3559
|
-
font-weight: normal;
|
|
3560
|
-
font-size: 13px;
|
|
3561
|
-
line-height: 20px;
|
|
3562
|
-
}
|
|
3563
|
-
|
|
3564
|
-
.l1pbuf5j {
|
|
3565
|
-
font-family: Inter;
|
|
3566
|
-
font-style: normal;
|
|
3567
|
-
font-weight: 600;
|
|
3568
|
-
font-size: 13px;
|
|
3569
|
-
line-height: 20px;
|
|
3570
|
-
}
|
|
3571
|
-
|
|
3572
|
-
.l1r4ztu {
|
|
3573
|
-
font-family: Inter;
|
|
3574
|
-
font-style: normal;
|
|
3575
|
-
font-weight: bold;
|
|
3576
|
-
font-size: 13px;
|
|
3577
|
-
line-height: 20px;
|
|
3578
|
-
}
|
|
3579
|
-
|
|
3580
|
-
.ly8vzok {
|
|
3581
|
-
font-family: Inter;
|
|
3582
|
-
font-style: normal;
|
|
3583
|
-
font-weight: normal;
|
|
3584
|
-
font-size: 13px;
|
|
3585
|
-
line-height: 20px;
|
|
3586
|
-
}
|
|
3587
|
-
|
|
3588
|
-
.lumfmf {
|
|
3589
|
-
font-family: Inter;
|
|
3590
|
-
font-style: normal;
|
|
3591
|
-
font-weight: 600;
|
|
3592
|
-
font-size: 13px;
|
|
3593
|
-
line-height: 20px;
|
|
3594
|
-
}
|
|
3595
|
-
|
|
3596
|
-
.l16ujwmv {
|
|
3597
|
-
font-family: Inter;
|
|
3598
|
-
font-style: normal;
|
|
3599
|
-
font-weight: bold;
|
|
3600
|
-
font-size: 13px;
|
|
3601
|
-
line-height: 20px;
|
|
3602
|
-
}
|
|
3603
|
-
|
|
3604
|
-
.l17o1ffr {
|
|
3605
|
-
font-family: Inter;
|
|
3606
|
-
font-style: normal;
|
|
3607
|
-
font-weight: normal;
|
|
3608
|
-
text-transform: uppercase;
|
|
3609
|
-
font-feature-settings: "cpsp" on;
|
|
3610
|
-
font-size: 13px;
|
|
3611
|
-
line-height: 20px;
|
|
3612
|
-
}
|
|
3613
|
-
|
|
3614
|
-
.lngllvn {
|
|
3615
|
-
font-family: Inter;
|
|
3616
|
-
font-style: normal;
|
|
3617
|
-
font-weight: bold;
|
|
3618
|
-
text-transform: uppercase;
|
|
3619
|
-
font-feature-settings: "cpsp" on;
|
|
3620
|
-
font-size: 13px;
|
|
3621
|
-
line-height: 20px;
|
|
3622
|
-
}
|
|
3623
|
-
|
|
3624
|
-
.l2i7fo9 {
|
|
3625
|
-
font-family: Inter;
|
|
3626
|
-
font-style: normal;
|
|
3627
|
-
font-weight: normal;
|
|
3628
|
-
font-size: 12px;
|
|
3629
|
-
line-height: 18px;
|
|
3630
|
-
}
|
|
3631
|
-
|
|
3632
|
-
.l1x7hscx {
|
|
3633
|
-
font-family: Inter;
|
|
3634
|
-
font-style: normal;
|
|
3635
|
-
font-weight: 500;
|
|
3636
|
-
font-size: 12px;
|
|
3637
|
-
line-height: 18px;
|
|
3638
|
-
}
|
|
3639
|
-
|
|
3640
|
-
.le1jwan {
|
|
3641
|
-
font-family: Inter;
|
|
3642
|
-
font-style: normal;
|
|
3643
|
-
font-weight: bold;
|
|
3644
|
-
font-size: 12px;
|
|
3645
|
-
line-height: 18px;
|
|
3646
|
-
}
|
|
3647
|
-
|
|
3648
|
-
.lyxynfj {
|
|
3649
|
-
font-family: Inter;
|
|
3650
|
-
font-style: normal;
|
|
3651
|
-
font-weight: normal;
|
|
3652
|
-
font-size: 12px;
|
|
3653
|
-
line-height: 18px;
|
|
3711
|
+
transform: translateY(-50%) rotateX(180deg);
|
|
3654
3712
|
}
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
font-family: Inter;
|
|
3658
|
-
font-style: normal;
|
|
3659
|
-
font-weight: 500;
|
|
3660
|
-
font-size: 12px;
|
|
3661
|
-
line-height: 18px;
|
|
3713
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) {
|
|
3714
|
+
background: #f2f5fa;
|
|
3662
3715
|
}
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
font-family: Inter;
|
|
3666
|
-
font-style: normal;
|
|
3667
|
-
font-weight: bold;
|
|
3668
|
-
font-size: 12px;
|
|
3669
|
-
line-height: 18px;
|
|
3716
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th:hover:not(.is-blank) .ant-table-column-sorters .order-icon {
|
|
3717
|
+
display: block;
|
|
3670
3718
|
}
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
font-family: Inter;
|
|
3674
|
-
font-style: normal;
|
|
3675
|
-
font-weight: normal;
|
|
3676
|
-
text-transform: uppercase;
|
|
3677
|
-
font-feature-settings: "cpsp" on;
|
|
3678
|
-
font-size: 12px;
|
|
3679
|
-
line-height: 18px;
|
|
3719
|
+
.tta5kd2 .ant-table .ant-table-thead > tr > th.align-right {
|
|
3720
|
+
padding-right: 25px;
|
|
3680
3721
|
}
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
font-family: Inter;
|
|
3684
|
-
font-style: normal;
|
|
3685
|
-
font-weight: bold;
|
|
3686
|
-
text-transform: uppercase;
|
|
3687
|
-
font-feature-settings: "cpsp" on;
|
|
3688
|
-
font-size: 12px;
|
|
3689
|
-
line-height: 18px;
|
|
3722
|
+
.tta5kd2 .ant-table .ant-table-selection-column {
|
|
3723
|
+
padding: 0 !important;
|
|
3690
3724
|
}
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
font-size: 13px;
|
|
3697
|
-
line-height: 20px;
|
|
3725
|
+
.tta5kd2 .ant-table .ant-table-selection-column .ant-checkbox-wrapper {
|
|
3726
|
+
position: absolute;
|
|
3727
|
+
left: 50%;
|
|
3728
|
+
top: 50%;
|
|
3729
|
+
transform: translate(-50%, -50%);
|
|
3698
3730
|
}
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
font-family: Inter;
|
|
3702
|
-
font-style: normal;
|
|
3703
|
-
font-weight: normal;
|
|
3704
|
-
font-size: 13px;
|
|
3705
|
-
line-height: 20px;
|
|
3731
|
+
.tta5kd2 .ant-table .ant-table-selection-column:after {
|
|
3732
|
+
display: none;
|
|
3706
3733
|
}
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
font-family: Inter;
|
|
3710
|
-
font-style: normal;
|
|
3711
|
-
font-weight: normal;
|
|
3712
|
-
font-size: 12px;
|
|
3713
|
-
line-height: 18px;
|
|
3734
|
+
.tta5kd2 .ant-table .ant-table-hide-scrollbar {
|
|
3735
|
+
background: #fff;
|
|
3714
3736
|
}
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
font-family: Inter;
|
|
3718
|
-
font-style: normal;
|
|
3719
|
-
font-weight: normal;
|
|
3720
|
-
font-size: 12px;
|
|
3721
|
-
line-height: 18px;
|
|
3737
|
+
.tta5kd2 .ant-table .ant-table-placeholder {
|
|
3738
|
+
background: inherit;
|
|
3722
3739
|
}
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
font-size: 13px;
|
|
3730
|
-
line-height: 20px;
|
|
3740
|
+
.tta5kd2 .ant-table .ant-table-placeholder td {
|
|
3741
|
+
position: static;
|
|
3742
|
+
border: none;
|
|
3743
|
+
background: inherit !important;
|
|
3744
|
+
height: 100px;
|
|
3745
|
+
vertical-align: middle;
|
|
3731
3746
|
}
|
|
3732
|
-
|
|
3733
|
-
.
|
|
3734
|
-
font-
|
|
3735
|
-
font-
|
|
3736
|
-
|
|
3737
|
-
font-feature-settings: "zero" on;
|
|
3738
|
-
font-size: 13px;
|
|
3739
|
-
line-height: 20px;
|
|
3747
|
+
.tta5kd2 .ant-table .ant-table-placeholder .table-default-empty,
|
|
3748
|
+
.tta5kd2 .ant-table .ant-table-placeholder .ant-table-expanded-row-fixed {
|
|
3749
|
+
font-weight: bold;
|
|
3750
|
+
font-size: 20px;
|
|
3751
|
+
color: rgba(10, 37, 85, 0.6);
|
|
3740
3752
|
}
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
font-weight: normal;
|
|
3746
|
-
font-feature-settings: "tnum" on, "lnum" on, "case" on;
|
|
3747
|
-
font-size: 12px;
|
|
3748
|
-
line-height: 18px;
|
|
3753
|
+
.tta5kd2 .ant-table td.cell__action_ {
|
|
3754
|
+
padding: 0 !important;
|
|
3755
|
+
position: relative;
|
|
3756
|
+
background: #fff;
|
|
3749
3757
|
}
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
+
.tta5kd2 .ant-table td.cell__action_ > * {
|
|
3759
|
+
height: 100%;
|
|
3760
|
+
display: flex;
|
|
3761
|
+
align-items: center;
|
|
3762
|
+
justify-content: flex-end;
|
|
3763
|
+
padding-right: 8px;
|
|
3764
|
+
}
|
|
3765
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button {
|
|
3766
|
+
width: 24px;
|
|
3767
|
+
height: 24px;
|
|
3768
|
+
cursor: pointer;
|
|
3769
|
+
justify-content: center;
|
|
3770
|
+
border-radius: 4px;
|
|
3771
|
+
}
|
|
3772
|
+
.tta5kd2 .ant-table td.cell__action_ .menu-button:hover {
|
|
3773
|
+
background: #fff;
|
|
3758
3774
|
}
|
|
3759
3775
|
|
|
3760
|
-
.
|
|
3761
|
-
|
|
3762
|
-
font-style: normal;
|
|
3763
|
-
font-weight: normal;
|
|
3764
|
-
font-feature-settings: "zero" on;
|
|
3765
|
-
font-size: 12px;
|
|
3766
|
-
line-height: 18px;
|
|
3776
|
+
.s1fc623g {
|
|
3777
|
+
width: 430px !important;
|
|
3767
3778
|
}
|
|
3768
3779
|
|
|
3769
|
-
.
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
font-weight: 500;
|
|
3773
|
-
font-feature-settings: "zero" on;
|
|
3774
|
-
font-size: 12px;
|
|
3775
|
-
line-height: 18px;
|
|
3780
|
+
.oa3mx0o {
|
|
3781
|
+
display: flex;
|
|
3782
|
+
flex-direction: column;
|
|
3776
3783
|
}
|
|
3777
3784
|
|
|
3778
|
-
.
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
font-weight: bold;
|
|
3782
|
-
font-feature-settings: "zero" on;
|
|
3783
|
-
font-size: 16px;
|
|
3784
|
-
line-height: 24px;
|
|
3785
|
+
.onr9gzt {
|
|
3786
|
+
display: flex;
|
|
3787
|
+
justify-content: space-between;
|
|
3785
3788
|
}
|
|
3786
3789
|
|
|
3787
|
-
.
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
font-weight: normal;
|
|
3791
|
-
font-size: 10px;
|
|
3792
|
-
line-height: 12px;
|
|
3790
|
+
.oiy0apc {
|
|
3791
|
+
display: flex;
|
|
3792
|
+
color: rgba(44, 56, 82, 0.6);
|
|
3793
3793
|
}
|
|
3794
3794
|
|
|
3795
3795
|
.c198s9j3 {
|
|
@@ -3813,120 +3813,55 @@ input.rrg1fkn.ant-input {
|
|
|
3813
3813
|
.c198s9j3 .ant-checkbox .ant-checkbox-inner {
|
|
3814
3814
|
border: 1px solid rgba(107, 128, 167, 0.6);
|
|
3815
3815
|
}
|
|
3816
|
-
.c198s9j3 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner,
|
|
3817
|
-
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
3818
|
-
border: 1px solid #0080ff;
|
|
3819
|
-
}
|
|
3820
|
-
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
3821
|
-
background: #0080ff;
|
|
3822
|
-
}
|
|
3823
|
-
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
3824
|
-
background-color: #fff;
|
|
3825
|
-
height: 2px;
|
|
3826
|
-
width: 10px;
|
|
3827
|
-
border-radius: 2px;
|
|
3828
|
-
}
|
|
3829
|
-
.c198s9j3.ant-checkbox-wrapper-disabled {
|
|
3830
|
-
opacity: 0.5;
|
|
3831
|
-
}
|
|
3832
|
-
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
3833
|
-
background: rgba(211, 218, 235, 0.6);
|
|
3834
|
-
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
3835
|
-
}
|
|
3836
|
-
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
3837
|
-
border-color: #2d3a56;
|
|
3838
|
-
}
|
|
3839
|
-
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
3840
|
-
background: #2d3a56;
|
|
3841
|
-
}
|
|
3842
|
-
.c198s9j3 .ant-checkbox + span,
|
|
3843
|
-
.c198s9j3 .ant-checkbox-disabled + span {
|
|
3844
|
-
padding: 0;
|
|
3845
|
-
}
|
|
3846
|
-
.c198s9j3 .ant-checkbox + span .main,
|
|
3847
|
-
.c198s9j3 .ant-checkbox-disabled + span .main {
|
|
3848
|
-
display: inline-block;
|
|
3849
|
-
margin-left: 12px;
|
|
3850
|
-
color: #2d3a56;
|
|
3851
|
-
}
|
|
3852
|
-
.c198s9j3 .ant-checkbox + span .sub,
|
|
3853
|
-
.c198s9j3 .ant-checkbox-disabled + span .sub {
|
|
3854
|
-
margin-left: 28px;
|
|
3855
|
-
color: rgba(44, 56, 82, 0.6);
|
|
3856
|
-
}
|
|
3857
|
-
.c198s9j3.compact .ant-checkbox + span .main,
|
|
3858
|
-
.c198s9j3.compact .ant-checkbox-disabled + span .main {
|
|
3859
|
-
margin-left: 8px;
|
|
3860
|
-
}
|
|
3861
|
-
.c198s9j3.compact .ant-checkbox + span .sub,
|
|
3862
|
-
.c198s9j3.compact .ant-checkbox-disabled + span .sub {
|
|
3863
|
-
margin-left: 24px;
|
|
3864
|
-
}
|
|
3865
|
-
|
|
3866
|
-
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
3867
|
-
border-radius: 6px;
|
|
3868
|
-
}
|
|
3869
|
-
.shq1k1g.ant-select.ant-select-single {
|
|
3870
|
-
width: 100%;
|
|
3871
|
-
height: 30px;
|
|
3872
|
-
color: #2d3a56;
|
|
3873
|
-
border-color: rgba(211, 218, 235, 0.6);
|
|
3874
|
-
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
3875
|
-
font-size: 13px;
|
|
3876
|
-
}
|
|
3877
|
-
.shq1k1g.ant-select.ant-select-single.ant-select-lg {
|
|
3878
|
-
height: 38px;
|
|
3879
|
-
font-size: 13px;
|
|
3880
|
-
}
|
|
3881
|
-
.shq1k1g.ant-select.ant-select-single .ant-select-arrow,
|
|
3882
|
-
.shq1k1g.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
3883
|
-
transition: 160ms ease;
|
|
3884
|
-
}
|
|
3885
|
-
.shq1k1g.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
3886
|
-
color: #0080ff;
|
|
3887
|
-
}
|
|
3888
|
-
.shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
3889
|
-
border-color: rgba(107, 128, 167, 0.6);
|
|
3890
|
-
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
3816
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner,
|
|
3817
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
3818
|
+
border: 1px solid #0080ff;
|
|
3891
3819
|
}
|
|
3892
|
-
.
|
|
3893
|
-
|
|
3820
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner {
|
|
3821
|
+
background: #0080ff;
|
|
3894
3822
|
}
|
|
3895
|
-
.
|
|
3896
|
-
|
|
3897
|
-
|
|
3823
|
+
.c198s9j3 .ant-checkbox.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
3824
|
+
background-color: #fff;
|
|
3825
|
+
height: 2px;
|
|
3826
|
+
width: 10px;
|
|
3827
|
+
border-radius: 2px;
|
|
3898
3828
|
}
|
|
3899
|
-
.
|
|
3900
|
-
|
|
3829
|
+
.c198s9j3.ant-checkbox-wrapper-disabled {
|
|
3830
|
+
opacity: 0.5;
|
|
3901
3831
|
}
|
|
3902
|
-
.
|
|
3832
|
+
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled .ant-checkbox-inner {
|
|
3903
3833
|
background: rgba(211, 218, 235, 0.6);
|
|
3904
|
-
border-color: rgba(
|
|
3905
|
-
cursor: "not-allowed";
|
|
3906
|
-
}
|
|
3907
|
-
.shq1k1g.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
3908
|
-
border-color: #f0483e !important;
|
|
3834
|
+
border-color: rgba(107, 128, 167, 0.6) !important;
|
|
3909
3835
|
}
|
|
3910
|
-
.
|
|
3911
|
-
color: #
|
|
3836
|
+
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner:after {
|
|
3837
|
+
border-color: #2d3a56;
|
|
3912
3838
|
}
|
|
3913
|
-
.
|
|
3914
|
-
|
|
3915
|
-
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
3839
|
+
.c198s9j3.ant-checkbox-wrapper-disabled .ant-checkbox-disabled.ant-checkbox-indeterminate .ant-checkbox-inner:after {
|
|
3840
|
+
background: #2d3a56;
|
|
3916
3841
|
}
|
|
3917
|
-
.
|
|
3918
|
-
|
|
3842
|
+
.c198s9j3 .ant-checkbox + span,
|
|
3843
|
+
.c198s9j3 .ant-checkbox-disabled + span {
|
|
3844
|
+
padding: 0;
|
|
3919
3845
|
}
|
|
3920
|
-
|
|
3921
|
-
.
|
|
3922
|
-
|
|
3923
|
-
|
|
3924
|
-
|
|
3846
|
+
.c198s9j3 .ant-checkbox + span .main,
|
|
3847
|
+
.c198s9j3 .ant-checkbox-disabled + span .main {
|
|
3848
|
+
display: inline-block;
|
|
3849
|
+
margin-left: 12px;
|
|
3850
|
+
color: #2d3a56;
|
|
3925
3851
|
}
|
|
3926
|
-
|
|
3927
|
-
.
|
|
3852
|
+
.c198s9j3 .ant-checkbox + span .sub,
|
|
3853
|
+
.c198s9j3 .ant-checkbox-disabled + span .sub {
|
|
3854
|
+
margin-left: 28px;
|
|
3928
3855
|
color: rgba(44, 56, 82, 0.6);
|
|
3929
3856
|
}
|
|
3857
|
+
.c198s9j3.compact .ant-checkbox + span .main,
|
|
3858
|
+
.c198s9j3.compact .ant-checkbox-disabled + span .main {
|
|
3859
|
+
margin-left: 8px;
|
|
3860
|
+
}
|
|
3861
|
+
.c198s9j3.compact .ant-checkbox + span .sub,
|
|
3862
|
+
.c198s9j3.compact .ant-checkbox-disabled + span .sub {
|
|
3863
|
+
margin-left: 24px;
|
|
3864
|
+
}
|
|
3930
3865
|
|
|
3931
3866
|
.iiqau4c.ant-input-group.ant-input-group-compact {
|
|
3932
3867
|
display: flex;
|
|
@@ -4093,6 +4028,71 @@ input.rrg1fkn.ant-input {
|
|
|
4093
4028
|
margin-left: 8px;
|
|
4094
4029
|
}
|
|
4095
4030
|
|
|
4031
|
+
.igz4le8 {
|
|
4032
|
+
height: 24px;
|
|
4033
|
+
width: 56px !important;
|
|
4034
|
+
margin-right: 4px;
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
.c1riexje {
|
|
4038
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4039
|
+
}
|
|
4040
|
+
|
|
4041
|
+
.shq1k1g.ant-select, .shq1k1g.ant-select .ant-select-selector {
|
|
4042
|
+
border-radius: 6px;
|
|
4043
|
+
}
|
|
4044
|
+
.shq1k1g.ant-select.ant-select-single {
|
|
4045
|
+
width: 100%;
|
|
4046
|
+
height: 30px;
|
|
4047
|
+
color: #2d3a56;
|
|
4048
|
+
border-color: rgba(211, 218, 235, 0.6);
|
|
4049
|
+
transition: border 160ms ease 8ms, box-shadow 160ms ease 8ms;
|
|
4050
|
+
font-size: 13px;
|
|
4051
|
+
}
|
|
4052
|
+
.shq1k1g.ant-select.ant-select-single.ant-select-lg {
|
|
4053
|
+
height: 38px;
|
|
4054
|
+
font-size: 13px;
|
|
4055
|
+
}
|
|
4056
|
+
.shq1k1g.ant-select.ant-select-single .ant-select-arrow,
|
|
4057
|
+
.shq1k1g.ant-select.ant-select-single .ant-select-arrow .anticon-down {
|
|
4058
|
+
transition: 160ms ease;
|
|
4059
|
+
}
|
|
4060
|
+
.shq1k1g.ant-select.ant-select-single .ant-select-arrow-loading {
|
|
4061
|
+
color: #0080ff;
|
|
4062
|
+
}
|
|
4063
|
+
.shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-selector {
|
|
4064
|
+
border-color: rgba(107, 128, 167, 0.6);
|
|
4065
|
+
box-shadow: 0px 0px 0px 4px rgba(225, 230, 241, 0.6);
|
|
4066
|
+
}
|
|
4067
|
+
.shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):hover .ant-select-arrow, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
4068
|
+
color: #0080ff;
|
|
4069
|
+
}
|
|
4070
|
+
.shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):active .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled):focus .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector, .shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector {
|
|
4071
|
+
border-color: #0080ff;
|
|
4072
|
+
box-shadow: 0px 0px 0px 4px rgba(0, 136, 255, 0.16);
|
|
4073
|
+
}
|
|
4074
|
+
.shq1k1g.ant-select.ant-select-single:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
4075
|
+
transform: rotate(180deg);
|
|
4076
|
+
}
|
|
4077
|
+
.shq1k1g.ant-select.ant-select-single.ant-select-disabled .ant-select-selector {
|
|
4078
|
+
background: rgba(211, 218, 235, 0.6);
|
|
4079
|
+
border-color: rgba(172, 186, 211, 0.6);
|
|
4080
|
+
cursor: "not-allowed";
|
|
4081
|
+
}
|
|
4082
|
+
.shq1k1g.ant-select.select-error:not(.ant-select-disabled) .ant-select-selector {
|
|
4083
|
+
border-color: #f0483e !important;
|
|
4084
|
+
}
|
|
4085
|
+
.shq1k1g.ant-select.select-error:not(.ant-select-disabled):hover .ant-select-arrow, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-hover .ant-select-arrow {
|
|
4086
|
+
color: #1d326c;
|
|
4087
|
+
}
|
|
4088
|
+
.shq1k1g.ant-select.select-error:not(.ant-select-disabled):active .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled):focus .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-focused .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-focus .ant-select-selector, .shq1k1g.ant-select.select-error:not(.ant-select-disabled).__pseudo-states-active .ant-select-selector {
|
|
4089
|
+
border-color: #0080ff;
|
|
4090
|
+
box-shadow: 0px 0px 0px 4px rgba(255, 74, 74, 0.16);
|
|
4091
|
+
}
|
|
4092
|
+
.shq1k1g.ant-select.select-error:not(.ant-select-disabled).ant-select-open .ant-select-arrow .anticon-down {
|
|
4093
|
+
transform: rotate(180deg);
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
4096
|
.t1gz6wqf {
|
|
4097
4097
|
height: 100%;
|
|
4098
4098
|
}
|
|
@@ -4123,6 +4123,182 @@ input.rrg1fkn.ant-input {
|
|
|
4123
4123
|
background: rgba(163, 180, 204, 0.18);
|
|
4124
4124
|
}
|
|
4125
4125
|
|
|
4126
|
+
.tc40oxa {
|
|
4127
|
+
margin-bottom: 4px;
|
|
4128
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4129
|
+
}
|
|
4130
|
+
|
|
4131
|
+
.sa410aw {
|
|
4132
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4133
|
+
line-height: 32px;
|
|
4134
|
+
height: 32px;
|
|
4135
|
+
margin-bottom: 0;
|
|
4136
|
+
}
|
|
4137
|
+
.sa410aw.primary, .sa410aw.info {
|
|
4138
|
+
color: #0080ff;
|
|
4139
|
+
}
|
|
4140
|
+
.sa410aw.warning {
|
|
4141
|
+
color: #ffa500;
|
|
4142
|
+
}
|
|
4143
|
+
.sa410aw.success {
|
|
4144
|
+
color: #00ba5d;
|
|
4145
|
+
}
|
|
4146
|
+
.sa410aw.danger, .sa410aw.error {
|
|
4147
|
+
color: #f0483e;
|
|
4148
|
+
}
|
|
4149
|
+
.sa410aw.normal {
|
|
4150
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4151
|
+
}
|
|
4152
|
+
|
|
4153
|
+
.b1lc7yin {
|
|
4154
|
+
margin-bottom: 0;
|
|
4155
|
+
color: #00122e;
|
|
4156
|
+
}
|
|
4157
|
+
|
|
4158
|
+
.bora13i {
|
|
4159
|
+
line-height: 32px;
|
|
4160
|
+
margin-right: 6px;
|
|
4161
|
+
}
|
|
4162
|
+
|
|
4163
|
+
.b1jhbz3e.with-description {
|
|
4164
|
+
height: 24px;
|
|
4165
|
+
flex: 1;
|
|
4166
|
+
position: relative;
|
|
4167
|
+
top: -7px;
|
|
4168
|
+
}
|
|
4169
|
+
.b1jhbz3e p {
|
|
4170
|
+
width: 100%;
|
|
4171
|
+
overflow: hidden;
|
|
4172
|
+
text-overflow: ellipsis;
|
|
4173
|
+
white-space: nowrap;
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
.tyua489 {
|
|
4177
|
+
border: 1px solid rgba(211, 218, 235, 0.6);
|
|
4178
|
+
border-radius: 8px;
|
|
4179
|
+
}
|
|
4180
|
+
.tyua489 .ant-list .eagle-table-form-header {
|
|
4181
|
+
display: flex;
|
|
4182
|
+
padding: 8px;
|
|
4183
|
+
flex-wrap: nowrap;
|
|
4184
|
+
justify-content: flex-start;
|
|
4185
|
+
background: #f2f5fa;
|
|
4186
|
+
font-size: 14px;
|
|
4187
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4188
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
4189
|
+
}
|
|
4190
|
+
.tyua489 .ant-list .eagle-table-form-header {
|
|
4191
|
+
align-items: inherit;
|
|
4192
|
+
}
|
|
4193
|
+
.tyua489 .ant-list .eagle-table-form-row {
|
|
4194
|
+
display: flex;
|
|
4195
|
+
justify-content: flex-start;
|
|
4196
|
+
align-items: flex-start;
|
|
4197
|
+
flex-wrap: wrap;
|
|
4198
|
+
padding: 8px;
|
|
4199
|
+
border: none;
|
|
4200
|
+
}
|
|
4201
|
+
.tyua489 .ant-list .eagle-table-form-row .row-description {
|
|
4202
|
+
flex-basis: 100%;
|
|
4203
|
+
margin: 12px 0 0;
|
|
4204
|
+
order: 99;
|
|
4205
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4206
|
+
}
|
|
4207
|
+
.tyua489 .ant-list .eagle-table-form-row .row-error-message {
|
|
4208
|
+
color: #f0483e;
|
|
4209
|
+
flex-basis: 100%;
|
|
4210
|
+
order: 98;
|
|
4211
|
+
margin: 12px 0 0;
|
|
4212
|
+
}
|
|
4213
|
+
.tyua489 .ant-list .eagle-table-form-row:hover {
|
|
4214
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
4215
|
+
}
|
|
4216
|
+
.tyua489 .ant-list .eagle-table-form-row.isDragging {
|
|
4217
|
+
background-color: rgba(0, 136, 255, 0.1);
|
|
4218
|
+
}
|
|
4219
|
+
.tyua489 .ant-list .eagle-table-form-cell {
|
|
4220
|
+
flex: 1 0 0;
|
|
4221
|
+
}
|
|
4222
|
+
.tyua489 .ant-list .eagle-table-form-cell .cell-description {
|
|
4223
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4224
|
+
margin: 0;
|
|
4225
|
+
}
|
|
4226
|
+
.tyua489 .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content, .tyua489 .ant-list .eagle-table-form-cell.align-center .ant-form-item-control-input-content > * {
|
|
4227
|
+
text-align: center;
|
|
4228
|
+
}
|
|
4229
|
+
.tyua489 .ant-list .eagle-table-form-cell.align-left .ant-form-item-control-input-content p {
|
|
4230
|
+
text-align: left;
|
|
4231
|
+
}
|
|
4232
|
+
.tyua489 .ant-list .eagle-table-form-cell.align-right .ant-form-item-control-input-content p {
|
|
4233
|
+
text-align: right;
|
|
4234
|
+
}
|
|
4235
|
+
.tyua489 .ant-list .eagle-table-form-cell:not(:last-of-type) {
|
|
4236
|
+
margin-right: 8px;
|
|
4237
|
+
}
|
|
4238
|
+
.tyua489 .ant-list .ant-list-item-action {
|
|
4239
|
+
padding: 4px;
|
|
4240
|
+
width: 24px;
|
|
4241
|
+
height: 24px;
|
|
4242
|
+
overflow: hidden;
|
|
4243
|
+
}
|
|
4244
|
+
.tyua489 .ant-list .ant-list-item-action li {
|
|
4245
|
+
padding: 0;
|
|
4246
|
+
}
|
|
4247
|
+
.tyua489 .ant-list .delete-row-icon.disabled {
|
|
4248
|
+
cursor: not-allowed;
|
|
4249
|
+
opacity: 0.5;
|
|
4250
|
+
}
|
|
4251
|
+
.tyua489 .ant-list.size-default .ant-list-item-action {
|
|
4252
|
+
margin: 0;
|
|
4253
|
+
}
|
|
4254
|
+
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input,
|
|
4255
|
+
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-select-selector {
|
|
4256
|
+
border-radius: 5px;
|
|
4257
|
+
font-size: 12px;
|
|
4258
|
+
}
|
|
4259
|
+
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input {
|
|
4260
|
+
padding: 2px 8px;
|
|
4261
|
+
}
|
|
4262
|
+
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-input-affix-wrapper {
|
|
4263
|
+
font-size: inherit;
|
|
4264
|
+
}
|
|
4265
|
+
.tyua489 .ant-list.size-default .eagle-table-form-cell .ant-form-item-control-input {
|
|
4266
|
+
min-height: 24px;
|
|
4267
|
+
font-size: 12px;
|
|
4268
|
+
position: relative;
|
|
4269
|
+
}
|
|
4270
|
+
.tyua489.row-split-by-border .eagle-table-form-row {
|
|
4271
|
+
border-bottom: 1px solid rgba(225, 230, 241, 0.6);
|
|
4272
|
+
}
|
|
4273
|
+
.tyua489.row-split-by-zebraMarking .draggable-container > :nth-child(2n) {
|
|
4274
|
+
background-color: rgba(237, 241, 250, 0.6);
|
|
4275
|
+
}
|
|
4276
|
+
|
|
4277
|
+
.a1ccrot9 {
|
|
4278
|
+
display: flex;
|
|
4279
|
+
align-items: center;
|
|
4280
|
+
margin-top: 8px;
|
|
4281
|
+
}
|
|
4282
|
+
.a1ccrot9 button.ant-btn {
|
|
4283
|
+
padding: 2px 8px;
|
|
4284
|
+
height: 24px;
|
|
4285
|
+
}
|
|
4286
|
+
.a1ccrot9 > span.maximum-desc {
|
|
4287
|
+
display: none;
|
|
4288
|
+
margin-left: 8px;
|
|
4289
|
+
color: rgba(44, 56, 82, 0.6);
|
|
4290
|
+
}
|
|
4291
|
+
.a1ccrot9 > span.maximum-desc.disabled {
|
|
4292
|
+
display: inline;
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
.d8c9v9g {
|
|
4296
|
+
width: 24px;
|
|
4297
|
+
height: 24px;
|
|
4298
|
+
padding: 4px;
|
|
4299
|
+
margin-right: 8px;
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4126
4302
|
.at4ovwe .ant-input-number-handler-wrap {
|
|
4127
4303
|
display: var(--at4ovwe-0);
|
|
4128
4304
|
}
|
|
@@ -4198,4 +4374,23 @@ input.rrg1fkn.ant-input {
|
|
|
4198
4374
|
margin: 0;
|
|
4199
4375
|
height: auto;
|
|
4200
4376
|
font-size: inherit;
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
.feau332.ant-form-item {
|
|
4380
|
+
margin-bottom: 0;
|
|
4381
|
+
}
|
|
4382
|
+
.feau332 .ant-form-item-explain {
|
|
4383
|
+
display: none;
|
|
4384
|
+
min-height: 18px;
|
|
4385
|
+
margin-top: 5px;
|
|
4386
|
+
font-family: "Inter";
|
|
4387
|
+
font-weight: 400;
|
|
4388
|
+
font-size: 12px;
|
|
4389
|
+
line-height: 18px;
|
|
4390
|
+
}
|
|
4391
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) {
|
|
4392
|
+
white-space: pre-wrap;
|
|
4393
|
+
}
|
|
4394
|
+
.feau332.ant-form-item[class*=ant-form-item-has]:not(.ant-form-item-has-error-leave) .ant-form-item-explain {
|
|
4395
|
+
display: block;
|
|
4201
4396
|
}
|