bitz-react-admin-ui 1.7.3 → 1.7.5
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/_virtual/index.mjs +2 -2
- package/dist/_virtual/index2.mjs +2 -2
- package/dist/components/BitzConfigProvider/context.d.ts +9 -0
- package/dist/components/BitzConfigProvider/context.mjs +7 -0
- package/dist/components/BitzConfigProvider/index.d.ts +4 -0
- package/dist/components/BitzConfigProvider/index.mjs +9 -7
- package/dist/components/BitzConfirmModal/index.d.ts +2 -2
- package/dist/components/BitzTable/ActionCol/index.d.ts +1 -1
- package/dist/components/BitzTable/Table/index.d.ts +1 -1
- package/dist/components/BitzTable/Table/index.mjs +63 -62
- package/dist/components/BitzTable/ToolBar/ColConfigIcon/index.d.ts +3 -1
- package/dist/components/BitzTable/ToolBar/ColConfigIcon/index.mjs +22 -21
- package/dist/components/BitzTable/ToolBar/DensityIcon/index.d.ts +3 -1
- package/dist/components/BitzTable/ToolBar/DensityIcon/index.mjs +22 -13
- package/dist/components/BitzTable/ToolBar/ExportIcon/index.d.ts +1 -0
- package/dist/components/BitzTable/ToolBar/ExportIcon/index.mjs +21 -19
- package/dist/components/BitzTable/ToolBar/FullscreenIcon/index.d.ts +6 -0
- package/dist/components/BitzTable/ToolBar/FullscreenIcon/index.mjs +56 -0
- package/dist/components/BitzTable/ToolBar/RefreshIcon/index.d.ts +3 -1
- package/dist/components/BitzTable/ToolBar/RefreshIcon/index.mjs +20 -13
- package/dist/components/BitzTable/ToolBar/Wrapper/index.d.ts +3 -4
- package/dist/components/BitzTable/ToolBar/Wrapper/index.mjs +79 -25
- package/dist/components/BitzTable/ToolBar/index.d.ts +5 -1
- package/dist/components/BitzTable/ToolBar/index.mjs +10 -8
- package/dist/components/BitzTable/index.d.ts +1 -1
- package/dist/components/BitzTableSelect/TextBlock/index.d.ts +1 -1
- package/dist/components/BitzToast/index.d.ts +4 -4
- package/dist/node_modules/.store/classnames@2.5.1/node_modules/classnames/index.mjs +1 -1
- package/dist/node_modules/.store/prop-types@15.8.1/node_modules/prop-types/index.mjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/_virtual/index.mjs
CHANGED
package/dist/_virtual/index2.mjs
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export type ToolEnum = 'export' | 'refresh' | 'size' | 'fullscreen' | 'colConfig';
|
|
3
|
+
export interface TableComponentContextProps {
|
|
4
|
+
toolbar?: ToolEnum[];
|
|
5
|
+
}
|
|
6
|
+
export interface BitzConfigProviderContextProps {
|
|
7
|
+
Table?: TableComponentContextProps;
|
|
8
|
+
}
|
|
9
|
+
export declare const BitzConfigContext: import("react").Context<BitzConfigProviderContextProps>;
|
|
@@ -3,12 +3,15 @@ import { ComponentToken as TableComponentToken } from 'antd/es/table/style';
|
|
|
3
3
|
import { AliasToken } from 'antd/es/theme/internal';
|
|
4
4
|
import { ComponentTokenMap } from 'antd/lib/theme/interface/components';
|
|
5
5
|
import { FC } from 'react';
|
|
6
|
+
import { BitzConfigProviderContextProps } from './context';
|
|
6
7
|
/** 给ant table组件添加design token */
|
|
7
8
|
export interface BitzTableComponentToken extends TableComponentToken {
|
|
8
9
|
/** 工具栏背景颜色 */
|
|
9
10
|
toolbarBgColor?: string;
|
|
10
11
|
/** 偶数行背景颜色 */
|
|
11
12
|
evenRowBgColor?: string;
|
|
13
|
+
/** radio,checkbox按钮border颜色 */
|
|
14
|
+
radioCheckboxBorderColor?: string;
|
|
12
15
|
/** 展开按钮border颜色 */
|
|
13
16
|
expandIconBorderColor?: string;
|
|
14
17
|
/** list背景颜色 移动端 */
|
|
@@ -43,6 +46,7 @@ export interface BitzThemeConfigProps extends Omit<ThemeConfig, 'token' | 'compo
|
|
|
43
46
|
/** BitzConfigProviderProps组件类型 */
|
|
44
47
|
export interface BitzConfigProviderProps extends Omit<ConfigProviderProps, 'theme'> {
|
|
45
48
|
theme?: BitzThemeConfigProps;
|
|
49
|
+
context?: BitzConfigProviderContextProps;
|
|
46
50
|
}
|
|
47
51
|
/** BitzConfigProvider全局化配置 */
|
|
48
52
|
declare const BitzConfigProvider: FC<BitzConfigProviderProps>;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { j as
|
|
2
|
-
import { ConfigProvider as
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { j as r } from "../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
+
import { ConfigProvider as e } from "antd";
|
|
3
|
+
import { BitzConfigContext as n } from "./context.mjs";
|
|
4
|
+
const x = ({
|
|
5
|
+
children: o,
|
|
6
|
+
context: i,
|
|
7
|
+
...t
|
|
8
|
+
}) => /* @__PURE__ */ r.jsx(e, { ...t, children: /* @__PURE__ */ r.jsx(n.Provider, { value: i ?? {}, children: o }) });
|
|
7
9
|
export {
|
|
8
|
-
|
|
10
|
+
x as default
|
|
9
11
|
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
import { ModalProps } from 'antd';
|
|
3
3
|
import './index.less';
|
|
4
4
|
export interface BitzConfirmModalProps extends Omit<ModalProps, 'onOk' | 'onCancel'> {
|
|
5
5
|
/**
|
|
6
6
|
* 内容文字
|
|
7
7
|
*/
|
|
8
|
-
modalText?:
|
|
8
|
+
modalText?: ReactNode;
|
|
9
9
|
onOk?: (...args: any[]) => any;
|
|
10
10
|
onCancel?: (...args: any[]) => any;
|
|
11
11
|
warnText1?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BitzTableActionProps, BitzTableColumnType, BitzTableActionColProps } from '..';
|
|
2
2
|
export declare function BitzTableAction<T>({ loading, actionGroup, refInstance, }: BitzTableActionProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
/** 表格操作列 */
|
|
4
|
-
declare function BitzTableActionCol<T
|
|
4
|
+
declare function BitzTableActionCol<T>(props: BitzTableActionColProps<T>): BitzTableColumnType<T>;
|
|
5
5
|
export default BitzTableActionCol;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { j as r } from "../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
-
import { useContext as
|
|
2
|
+
import { useContext as ke, useState as Q, useMemo as g, useRef as H, useCallback as Y, useEffect as Me } from "react";
|
|
3
3
|
import { isMobile as S } from "../../../node_modules/.store/react-device-detect@2.2.3/node_modules/react-device-detect/dist/lib.mjs";
|
|
4
4
|
import { Table as P, Skeleton as ze } from "antd";
|
|
5
5
|
import Le from "../../../node_modules/.store/classnames@2.5.1/node_modules/classnames/index.mjs";
|
|
@@ -23,7 +23,7 @@ function $e({
|
|
|
23
23
|
fillEvenRow: E = !0,
|
|
24
24
|
evenRowBgColor: De = "#f9f9f9",
|
|
25
25
|
height: p,
|
|
26
|
-
dataSource:
|
|
26
|
+
dataSource: i = [],
|
|
27
27
|
total: N = 0,
|
|
28
28
|
columns: u,
|
|
29
29
|
loading: B = !1,
|
|
@@ -33,7 +33,7 @@ function $e({
|
|
|
33
33
|
skeletonRowsWidth: re = ["35%", "100%", "100%", "60%"],
|
|
34
34
|
mobileLoadEmit: te,
|
|
35
35
|
mobileRefreshEmit: R,
|
|
36
|
-
operationFilter:
|
|
36
|
+
operationFilter: k,
|
|
37
37
|
enableControlPage: le,
|
|
38
38
|
pagination: ne,
|
|
39
39
|
paginationEmit: se = () => {
|
|
@@ -44,27 +44,27 @@ function $e({
|
|
|
44
44
|
noDataImg: ce,
|
|
45
45
|
color: Ge,
|
|
46
46
|
size: V,
|
|
47
|
-
showTableTool:
|
|
48
|
-
tableAction:
|
|
49
|
-
tableToolbar:
|
|
50
|
-
selectionBar:
|
|
51
|
-
scroll:
|
|
47
|
+
showTableTool: de = !0,
|
|
48
|
+
tableAction: he,
|
|
49
|
+
tableToolbar: be,
|
|
50
|
+
selectionBar: fe,
|
|
51
|
+
scroll: d,
|
|
52
52
|
resetPage: xe,
|
|
53
|
-
...
|
|
53
|
+
...h
|
|
54
54
|
}) {
|
|
55
55
|
var F;
|
|
56
|
-
const { token: c } = Ke.useToken(), { gap: ge } = Ve(),
|
|
56
|
+
const { token: c } = Ke.useToken(), { gap: ge } = Ve(), b = ke(Oe), [ue, M] = Q(!1), Ce = g(() => !!(i != null && i.length) && (i == null ? void 0 : i.length) >= N, [i, N]), [ye, pe] = Q([]), me = (e, o) => {
|
|
57
57
|
var t;
|
|
58
|
-
const l = (t =
|
|
58
|
+
const l = (t = k == null ? void 0 : k(e, o)) == null ? void 0 : t.filter(
|
|
59
59
|
(n) => n.type !== "divider"
|
|
60
60
|
);
|
|
61
|
-
l != null && l.length && (pe(l),
|
|
61
|
+
l != null && l.length && (pe(l), M(!0));
|
|
62
62
|
}, K = () => {
|
|
63
|
-
|
|
63
|
+
M(!1);
|
|
64
64
|
}, we = (e) => {
|
|
65
65
|
var o;
|
|
66
|
-
|
|
67
|
-
},
|
|
66
|
+
M(!1), (o = e.onClick) == null || o.call(e);
|
|
67
|
+
}, C = H(null), z = A(C), j = H(null), L = A(j), _ = H(null), y = A(_), Be = () => {
|
|
68
68
|
var l;
|
|
69
69
|
const e = (l = j.current) == null ? void 0 : l.querySelectorAll(
|
|
70
70
|
".ant-table-body tr:not(.ant-table-measure-row)"
|
|
@@ -87,45 +87,45 @@ function $e({
|
|
|
87
87
|
return {};
|
|
88
88
|
const { hasScrollBar: e } = $();
|
|
89
89
|
let o = 40, l = 40, t = 10;
|
|
90
|
-
if (
|
|
91
|
-
const
|
|
92
|
-
o = parseInt(
|
|
90
|
+
if (C.current) {
|
|
91
|
+
const f = window.getComputedStyle(C.current);
|
|
92
|
+
o = parseInt(f.getPropertyValue("--cell-block")), l = parseInt(f.getPropertyValue("--toolbar-height")), t = parseInt(f.getPropertyValue("--container-gap")) || 0;
|
|
93
93
|
}
|
|
94
|
-
const n = (
|
|
94
|
+
const n = (y == null ? void 0 : y.height) || 0, s = n ? t : 0;
|
|
95
95
|
return { y: p - n - s - l - o, hasScrollBar: e };
|
|
96
96
|
}, [
|
|
97
97
|
p,
|
|
98
|
-
|
|
98
|
+
y == null ? void 0 : y.height,
|
|
99
99
|
z == null ? void 0 : z.height,
|
|
100
100
|
L == null ? void 0 : L.height
|
|
101
|
-
]), T = g(() =>
|
|
101
|
+
]), T = g(() => d != null && d.x ? { x: d.x, y: d.y || W } : d != null && d.y ? { x: 1e3, y: d.y } : { x: 1e3, y: W }, [d, W]), q = Y(
|
|
102
102
|
(e) => {
|
|
103
103
|
const o = e.length, l = e.filter((x) => x.width), n = l.map((x) => x.width).reduce((x, Ne) => x + Ne, 0);
|
|
104
104
|
let s = 0;
|
|
105
|
-
if (
|
|
106
|
-
const x = window.getComputedStyle(
|
|
105
|
+
if (C.current) {
|
|
106
|
+
const x = window.getComputedStyle(C.current);
|
|
107
107
|
s = parseInt(x.getPropertyValue("--toolCell-width"));
|
|
108
108
|
}
|
|
109
|
-
let
|
|
110
|
-
|
|
111
|
-
const { tbodyWidth: v } = $(),
|
|
109
|
+
let a = 0;
|
|
110
|
+
h.rowSelection && (a += s), h.expandable && (a += s);
|
|
111
|
+
const { tbodyWidth: v } = $(), f = parseInt(`${T.x}`) || 0, ve = Math.max(f, v), J = (parseInt(`${ve}`) || 0) - n - a;
|
|
112
112
|
return J >= 0 ? J / (o - l.length) : void 0;
|
|
113
113
|
},
|
|
114
|
-
[
|
|
114
|
+
[h.expandable, h.rowSelection, T]
|
|
115
115
|
), m = g(() => {
|
|
116
|
-
const e = (s) => s.map((
|
|
116
|
+
const e = (s) => s.map((a) => {
|
|
117
117
|
const v = I(
|
|
118
|
-
(
|
|
119
|
-
|
|
120
|
-
),
|
|
121
|
-
return
|
|
122
|
-
...
|
|
123
|
-
children: e(
|
|
124
|
-
} :
|
|
118
|
+
(a == null ? void 0 : a.key) || (a == null ? void 0 : a.dataIndex),
|
|
119
|
+
a.index
|
|
120
|
+
), f = b.columnsMap[v];
|
|
121
|
+
return f && f.show === !1 ? !1 : a.children ? {
|
|
122
|
+
...a,
|
|
123
|
+
children: e(a.children)
|
|
124
|
+
} : a;
|
|
125
125
|
}).filter(Boolean), o = e(u);
|
|
126
126
|
if (S)
|
|
127
|
-
return o.sort(Z(
|
|
128
|
-
const l = o.sort(Z(
|
|
127
|
+
return o.sort(Z(b.columnsMap));
|
|
128
|
+
const l = o.sort(Z(b.columnsMap)), t = q(l), n = l.map((s) => ({
|
|
129
129
|
...s,
|
|
130
130
|
...s.width ? {
|
|
131
131
|
width: s.useMaxWidth ? Be() ?? s.width : s.width
|
|
@@ -135,8 +135,8 @@ function $e({
|
|
|
135
135
|
}
|
|
136
136
|
}));
|
|
137
137
|
return [P.SELECTION_COLUMN, P.EXPAND_COLUMN, ...n];
|
|
138
|
-
}, [u,
|
|
139
|
-
|
|
138
|
+
}, [u, b.columnsMap, q, b.sortKeyColumns]);
|
|
139
|
+
Me(() => {
|
|
140
140
|
if (u && u.length > 0) {
|
|
141
141
|
const e = u.map(
|
|
142
142
|
(o) => (
|
|
@@ -144,24 +144,25 @@ function $e({
|
|
|
144
144
|
I((o == null ? void 0 : o.key) ?? (o == null ? void 0 : o.dataIndex), o == null ? void 0 : o.dataIndex)
|
|
145
145
|
)
|
|
146
146
|
);
|
|
147
|
-
|
|
147
|
+
b.setSortKeyColumns(e);
|
|
148
148
|
}
|
|
149
149
|
}, [u]);
|
|
150
|
-
const G = g(() => `${V ?? (
|
|
150
|
+
const G = g(() => `${V ?? (b == null ? void 0 : b.tableSize) ?? "lg"}BitzTable`, [V, b.tableSize]), je = g(() => Le(
|
|
151
151
|
"bitzTableContainer",
|
|
152
152
|
/* "hideBorder", */
|
|
153
153
|
{ hasScrollBar: D },
|
|
154
154
|
G
|
|
155
155
|
), [G, D]), Te = g(() => {
|
|
156
|
-
var e, o, l, t, n, s;
|
|
156
|
+
var e, o, l, t, n, s, a;
|
|
157
157
|
return {
|
|
158
158
|
height: p,
|
|
159
159
|
"--toolbar-bgColor": (e = c.Table) == null ? void 0 : e.toolbarBgColor,
|
|
160
160
|
"--thead-bgColor": (o = c.Table) == null ? void 0 : o.headerBg,
|
|
161
161
|
"--thead-hoverBgColor": (l = c.Table) == null ? void 0 : l.headerSortHoverBg,
|
|
162
162
|
"--evenRow-BgColor": (t = c.Table) == null ? void 0 : t.evenRowBgColor,
|
|
163
|
-
"--
|
|
164
|
-
"--
|
|
163
|
+
"--radioCheckbox-borderColor": (n = c.Table) == null ? void 0 : n.radioCheckboxBorderColor,
|
|
164
|
+
"--expandIcon-borderColor": (s = c.Table) == null ? void 0 : s.expandIconBorderColor,
|
|
165
|
+
"--rowHover-bgColor": (a = c.Table) == null ? void 0 : a.rowHoverBg
|
|
165
166
|
// '--tableBody-bootomBorderColor': token.Table?.borderColor || '#f0f0f0',
|
|
166
167
|
};
|
|
167
168
|
}, [p, c.Table]), U = Y(
|
|
@@ -170,7 +171,7 @@ function $e({
|
|
|
170
171
|
), X = /* @__PURE__ */ r.jsx(
|
|
171
172
|
Pe,
|
|
172
173
|
{
|
|
173
|
-
finished:
|
|
174
|
+
finished: Ce,
|
|
174
175
|
onLoad: te,
|
|
175
176
|
loadingText: "加载中...",
|
|
176
177
|
finishedText: "没有更多了",
|
|
@@ -181,7 +182,7 @@ function $e({
|
|
|
181
182
|
className: "mobileList",
|
|
182
183
|
style: { backgroundColor: (F = c.Table) == null ? void 0 : F.mobileListBgColor },
|
|
183
184
|
children: [
|
|
184
|
-
|
|
185
|
+
i == null ? void 0 : i.map((e, o) => {
|
|
185
186
|
var l;
|
|
186
187
|
return /* @__PURE__ */ r.jsx(
|
|
187
188
|
"div",
|
|
@@ -244,22 +245,22 @@ function $e({
|
|
|
244
245
|
}
|
|
245
246
|
);
|
|
246
247
|
return /* @__PURE__ */ r.jsxs("div", { className: "bitzTableBlock", children: [
|
|
247
|
-
!S && /* @__PURE__ */ r.jsxs("div", { ref:
|
|
248
|
+
!S && /* @__PURE__ */ r.jsxs("div", { ref: C, className: je, style: Te, children: [
|
|
248
249
|
/* @__PURE__ */ r.jsxs("div", { className: "bitzTableContainerBody", ref: j, children: [
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
(
|
|
250
|
+
de && /* @__PURE__ */ r.jsxs("div", { className: "bitzTableToolbarBlock", children: [
|
|
251
|
+
he || /* @__PURE__ */ r.jsx("div", {}),
|
|
252
|
+
be,
|
|
253
|
+
(h == null ? void 0 : h.rowSelection) && /* @__PURE__ */ r.jsx(r.Fragment, { children: fe })
|
|
253
254
|
] }),
|
|
254
255
|
/* @__PURE__ */ r.jsx(
|
|
255
256
|
P,
|
|
256
257
|
{
|
|
257
258
|
columns: m,
|
|
258
|
-
dataSource:
|
|
259
|
+
dataSource: i,
|
|
259
260
|
loading: !1,
|
|
260
261
|
pagination: !1,
|
|
261
262
|
scroll: T,
|
|
262
|
-
...
|
|
263
|
+
...h,
|
|
263
264
|
rowClassName: U
|
|
264
265
|
}
|
|
265
266
|
),
|
|
@@ -267,10 +268,10 @@ function $e({
|
|
|
267
268
|
Re,
|
|
268
269
|
{
|
|
269
270
|
columns: m,
|
|
270
|
-
dataLength:
|
|
271
|
+
dataLength: i.length,
|
|
271
272
|
scroll: T,
|
|
272
|
-
rowSelection:
|
|
273
|
-
expandable:
|
|
273
|
+
rowSelection: h.rowSelection,
|
|
274
|
+
expandable: h.expandable,
|
|
274
275
|
rowClassName: U,
|
|
275
276
|
loading: B
|
|
276
277
|
}
|
|
@@ -283,15 +284,15 @@ function $e({
|
|
|
283
284
|
enableControl: le,
|
|
284
285
|
pagination: ne,
|
|
285
286
|
total: N,
|
|
286
|
-
dataSource:
|
|
287
|
+
dataSource: i,
|
|
287
288
|
resetPage: xe,
|
|
288
289
|
paginationEmit: se
|
|
289
290
|
}
|
|
290
291
|
)
|
|
291
292
|
] }),
|
|
292
293
|
S && /* @__PURE__ */ r.jsxs(r.Fragment, { children: [
|
|
293
|
-
(B || (
|
|
294
|
-
!B && /* @__PURE__ */ r.jsx(Se, { data:
|
|
294
|
+
(B || (i == null ? void 0 : i.length) > 0) && /* @__PURE__ */ r.jsx(r.Fragment, { children: R ? /* @__PURE__ */ r.jsx(Ae, { onRefresh: R, children: X }) : X }),
|
|
295
|
+
!B && /* @__PURE__ */ r.jsx(Se, { data: i, title: ie, img: ce }),
|
|
295
296
|
/* @__PURE__ */ r.jsx(
|
|
296
297
|
We,
|
|
297
298
|
{
|
|
@@ -302,7 +303,7 @@ function $e({
|
|
|
302
303
|
closable: !1,
|
|
303
304
|
onClose: K,
|
|
304
305
|
children: /* @__PURE__ */ r.jsxs("div", { className: "drawerBox", children: [
|
|
305
|
-
/* @__PURE__ */ r.jsx("div", { className: "boxBody", children:
|
|
306
|
+
/* @__PURE__ */ r.jsx("div", { className: "boxBody", children: ye.map((e, o) => /* @__PURE__ */ r.jsx(
|
|
306
307
|
"div",
|
|
307
308
|
{
|
|
308
309
|
className: "operaList",
|
|
@@ -322,10 +323,10 @@ function $e({
|
|
|
322
323
|
] })
|
|
323
324
|
] });
|
|
324
325
|
}
|
|
325
|
-
const
|
|
326
|
+
const fo = (w) => (
|
|
326
327
|
// @ts-ignore
|
|
327
328
|
/* @__PURE__ */ r.jsx(Ee, { initValue: w, children: /* @__PURE__ */ r.jsx($e, { ...w }) })
|
|
328
329
|
);
|
|
329
330
|
export {
|
|
330
|
-
|
|
331
|
+
fo as default
|
|
331
332
|
};
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
interface ColumnSettingProps {
|
|
3
|
+
order?: number;
|
|
4
|
+
show?: boolean;
|
|
3
5
|
icon?: React.ReactNode;
|
|
4
6
|
onChange?: (columns: any) => void;
|
|
5
7
|
}
|
|
6
|
-
declare const _default: React.MemoExoticComponent<(props: ColumnSettingProps) => import("react/jsx-runtime").JSX.Element>;
|
|
8
|
+
declare const _default: React.MemoExoticComponent<(props: ColumnSettingProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
7
9
|
export default _default;
|
|
@@ -1,33 +1,34 @@
|
|
|
1
1
|
import { j as t } from "../../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
-
import
|
|
3
|
-
import { Tooltip as
|
|
4
|
-
import { show as
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import { TableContext as
|
|
9
|
-
import
|
|
10
|
-
const
|
|
11
|
-
const {
|
|
12
|
-
|
|
2
|
+
import u, { useContext as c } from "react";
|
|
3
|
+
import { Tooltip as d } from "antd";
|
|
4
|
+
import { show as f } from "@ebay/nice-modal-react";
|
|
5
|
+
import C from "./ColumnSettingModal.mjs";
|
|
6
|
+
import x from "../style.mjs";
|
|
7
|
+
import h from "../../../BitzButton/index.mjs";
|
|
8
|
+
import { TableContext as g } from "../../Store/index.mjs";
|
|
9
|
+
import j from "../../../../node_modules/.store/@ant-design_icons@5.3.3/node_modules/@ant-design/icons/es/icons/SettingOutlined.mjs";
|
|
10
|
+
const S = (o) => {
|
|
11
|
+
const { order: m, show: i = !0, icon: l = /* @__PURE__ */ t.jsx(j, {}) } = o, { toolbarItemClassName: r } = x(), { uuid: e } = c(g), s = () => {
|
|
12
|
+
f(`ColumnSettingModal-${e}`).then((a) => {
|
|
13
13
|
var n;
|
|
14
|
-
(n = o.onChange) == null || n.call(o,
|
|
14
|
+
(n = o.onChange) == null || n.call(o, a);
|
|
15
15
|
});
|
|
16
16
|
};
|
|
17
|
-
return /* @__PURE__ */ t.jsxs(t.Fragment, { children: [
|
|
18
|
-
/* @__PURE__ */ t.jsx(
|
|
19
|
-
/* @__PURE__ */ t.jsx(
|
|
20
|
-
|
|
17
|
+
return i ? /* @__PURE__ */ t.jsxs(t.Fragment, { children: [
|
|
18
|
+
/* @__PURE__ */ t.jsx(C, { id: `ColumnSettingModal-${e}` }),
|
|
19
|
+
/* @__PURE__ */ t.jsx(d, { title: "列设置", open: !1, children: /* @__PURE__ */ t.jsx(
|
|
20
|
+
h,
|
|
21
21
|
{
|
|
22
22
|
type: "text",
|
|
23
|
-
className:
|
|
24
|
-
onClick:
|
|
25
|
-
icon:
|
|
23
|
+
className: r,
|
|
24
|
+
onClick: s,
|
|
25
|
+
icon: l,
|
|
26
|
+
style: { order: m },
|
|
26
27
|
children: "列设置"
|
|
27
28
|
}
|
|
28
29
|
) })
|
|
29
|
-
] });
|
|
30
|
-
}, N =
|
|
30
|
+
] }) : null;
|
|
31
|
+
}, N = u.memo(S);
|
|
31
32
|
export {
|
|
32
33
|
N as default
|
|
33
34
|
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { DensitySize } from '../../Store';
|
|
3
3
|
interface DensityIconProps {
|
|
4
|
+
order?: number;
|
|
5
|
+
show?: boolean;
|
|
4
6
|
icon?: ReactNode;
|
|
5
7
|
onChange?: (size: DensitySize) => void;
|
|
6
8
|
}
|
|
7
|
-
declare const _default: import("react").MemoExoticComponent<(props: DensityIconProps) => import("react/jsx-runtime").JSX.Element>;
|
|
9
|
+
declare const _default: import("react").MemoExoticComponent<(props: DensityIconProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
8
10
|
export default _default;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { j as o } from "../../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
-
import { memo as
|
|
3
|
-
import { Dropdown as
|
|
4
|
-
import { TableContext as
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
const
|
|
9
|
-
const {
|
|
2
|
+
import { memo as d, useContext as y } from "react";
|
|
3
|
+
import { Dropdown as u, Tooltip as b } from "antd";
|
|
4
|
+
import { TableContext as f } from "../../Store/index.mjs";
|
|
5
|
+
import k from "../style.mjs";
|
|
6
|
+
import h from "../../../BitzButton/index.mjs";
|
|
7
|
+
import j from "../../../../node_modules/.store/@ant-design_icons@5.3.3/node_modules/@ant-design/icons/es/icons/ColumnHeightOutlined.mjs";
|
|
8
|
+
const C = (e) => {
|
|
9
|
+
const { order: m, show: s = !0, icon: r = /* @__PURE__ */ o.jsx(j, {}) } = e, t = y(f), { toolbarItemClassName: a } = k(), c = {
|
|
10
10
|
selectedKeys: [t.tableSize],
|
|
11
|
-
onClick: ({ key:
|
|
11
|
+
onClick: ({ key: x }) => {
|
|
12
12
|
var n, i;
|
|
13
|
-
const l =
|
|
13
|
+
const l = x;
|
|
14
14
|
(n = t.setTableSize) == null || n.call(t, l), (i = e == null ? void 0 : e.onChange) == null || i.call(e, l);
|
|
15
15
|
},
|
|
16
16
|
items: [
|
|
@@ -36,8 +36,17 @@ const j = (e) => {
|
|
|
36
36
|
}
|
|
37
37
|
]
|
|
38
38
|
};
|
|
39
|
-
return /* @__PURE__ */ o.jsx(
|
|
40
|
-
|
|
39
|
+
return s ? /* @__PURE__ */ o.jsx(u, { menu: c, trigger: ["click"], children: /* @__PURE__ */ o.jsx(b, { title: "表格密度", open: !1, children: /* @__PURE__ */ o.jsx(
|
|
40
|
+
h,
|
|
41
|
+
{
|
|
42
|
+
style: { order: m },
|
|
43
|
+
type: "text",
|
|
44
|
+
className: a,
|
|
45
|
+
icon: r,
|
|
46
|
+
children: "表格密度"
|
|
47
|
+
}
|
|
48
|
+
) }) }) : null;
|
|
49
|
+
}, B = d(C);
|
|
41
50
|
export {
|
|
42
|
-
|
|
51
|
+
B as default
|
|
43
52
|
};
|
|
@@ -2,6 +2,7 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { BitzDropdownToButtonProps } from '@/components/BitzConvert';
|
|
3
3
|
import { ExportEvent } from '..';
|
|
4
4
|
interface ExportIconProps extends Pick<BitzDropdownToButtonProps, 'menu' | 'tipText'> {
|
|
5
|
+
order?: number;
|
|
5
6
|
icon?: ReactNode;
|
|
6
7
|
loading?: boolean;
|
|
7
8
|
/** 是否显示导出icon */
|
|
@@ -1,43 +1,45 @@
|
|
|
1
1
|
import { j as e } from "../../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
-
import { memo as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
const
|
|
2
|
+
import { memo as u, useMemo as x } from "react";
|
|
3
|
+
import c from "../style.mjs";
|
|
4
|
+
import f from "../../../BitzButton/index.mjs";
|
|
5
|
+
import d from "../../../BitzConvert/index.mjs";
|
|
6
|
+
import j from "../../../../node_modules/.store/@ant-design_icons@5.3.3/node_modules/@ant-design/icons/es/icons/DownloadOutlined.mjs";
|
|
7
|
+
const y = ({
|
|
8
8
|
show: r = !0,
|
|
9
|
-
|
|
9
|
+
order: s,
|
|
10
|
+
loading: m,
|
|
10
11
|
onClick: t,
|
|
11
|
-
icon:
|
|
12
|
+
icon: n = /* @__PURE__ */ e.jsx(j, {}),
|
|
12
13
|
menu: o,
|
|
13
|
-
tipText:
|
|
14
|
+
tipText: i
|
|
14
15
|
}) => {
|
|
15
|
-
const { toolbarItemClassName:
|
|
16
|
+
const { toolbarItemClassName: l } = c(), p = x(() => o || {
|
|
16
17
|
items: [
|
|
17
18
|
{ key: "excel", label: "导出查询结果为Excel" }
|
|
18
19
|
],
|
|
19
|
-
onClick: ({ key:
|
|
20
|
+
onClick: ({ key: a }) => t == null ? void 0 : t(a)
|
|
20
21
|
}, [o, t]);
|
|
21
22
|
return r ? /* @__PURE__ */ e.jsx(
|
|
22
|
-
|
|
23
|
+
d.DropdownToButton,
|
|
23
24
|
{
|
|
24
25
|
menu: p,
|
|
25
26
|
trigger: ["click"],
|
|
26
27
|
showTootip: !1,
|
|
27
|
-
tipText:
|
|
28
|
+
tipText: i || "导出",
|
|
28
29
|
children: /* @__PURE__ */ e.jsx(
|
|
29
|
-
|
|
30
|
+
f,
|
|
30
31
|
{
|
|
31
32
|
type: "text",
|
|
32
|
-
className:
|
|
33
|
-
disabled:
|
|
34
|
-
icon:
|
|
33
|
+
className: l,
|
|
34
|
+
disabled: m,
|
|
35
|
+
icon: n,
|
|
36
|
+
style: { order: s },
|
|
35
37
|
children: "下载"
|
|
36
38
|
}
|
|
37
39
|
)
|
|
38
40
|
}
|
|
39
41
|
) : null;
|
|
40
|
-
},
|
|
42
|
+
}, g = u(y);
|
|
41
43
|
export {
|
|
42
|
-
|
|
44
|
+
g as default
|
|
43
45
|
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { j as o } from "../../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
+
import { memo as p, useState as x, useMemo as b, useEffect as E } from "react";
|
|
3
|
+
import { Tooltip as B } from "antd";
|
|
4
|
+
import F from "../style.mjs";
|
|
5
|
+
import j from "../../../BitzButton/index.mjs";
|
|
6
|
+
import c from "../../../../node_modules/.store/screenfull@6.0.2/node_modules/screenfull/index.mjs";
|
|
7
|
+
import h from "../../../BitzToast/index.mjs";
|
|
8
|
+
import v from "../../../../node_modules/.store/@ant-design_icons@5.3.3/node_modules/@ant-design/icons/es/icons/FullscreenExitOutlined.mjs";
|
|
9
|
+
import z from "../../../../node_modules/.store/@ant-design_icons@5.3.3/node_modules/@ant-design/icons/es/icons/FullscreenOutlined.mjs";
|
|
10
|
+
function m(t, n) {
|
|
11
|
+
if (t.classList.contains(n))
|
|
12
|
+
return t;
|
|
13
|
+
var r = t.parentNode;
|
|
14
|
+
if (r) {
|
|
15
|
+
var e = m(r, n);
|
|
16
|
+
if (e)
|
|
17
|
+
return e;
|
|
18
|
+
}
|
|
19
|
+
return null;
|
|
20
|
+
}
|
|
21
|
+
const L = ({
|
|
22
|
+
order: t,
|
|
23
|
+
show: n = !0
|
|
24
|
+
}) => {
|
|
25
|
+
const { toolbarItemClassName: r } = F(), [e, u] = x(!1), s = b(() => e ? {
|
|
26
|
+
title: "退出全屏",
|
|
27
|
+
icon: /* @__PURE__ */ o.jsx(v, {})
|
|
28
|
+
} : {
|
|
29
|
+
title: "全屏",
|
|
30
|
+
icon: /* @__PURE__ */ o.jsx(z, {})
|
|
31
|
+
}, [e]);
|
|
32
|
+
E(() => (document == null || document.addEventListener("fullscreenchange", (i) => {
|
|
33
|
+
var l, a, f;
|
|
34
|
+
(l = i.target) != null && l.classList.contains("bitzTableBlock") && (u(!!document.fullscreenElement), (f = (a = document.fullscreenElement) == null ? void 0 : a.classList) != null && f.contains("bitzTableBlock") || u(!1));
|
|
35
|
+
}), document == null ? void 0 : document.removeEventListener("fullscreenchange", () => {
|
|
36
|
+
})), []);
|
|
37
|
+
const d = (i) => {
|
|
38
|
+
c.isEnabled || h.error("您的浏览器不支持全屏");
|
|
39
|
+
const l = m(i.target, "bitzTableBlock");
|
|
40
|
+
e ? c.exit() : c.request(l);
|
|
41
|
+
};
|
|
42
|
+
return n ? /* @__PURE__ */ o.jsx(B, { title: s.title, open: !1, children: /* @__PURE__ */ o.jsx(
|
|
43
|
+
j,
|
|
44
|
+
{
|
|
45
|
+
type: "text",
|
|
46
|
+
className: r,
|
|
47
|
+
onClick: d,
|
|
48
|
+
icon: s.icon,
|
|
49
|
+
style: { order: t },
|
|
50
|
+
children: s.title
|
|
51
|
+
}
|
|
52
|
+
) }) : null;
|
|
53
|
+
}, q = p(L);
|
|
54
|
+
export {
|
|
55
|
+
q as default
|
|
56
|
+
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { MouseEventHandler, ReactNode } from 'react';
|
|
2
2
|
interface RefreshIconProps {
|
|
3
|
+
order?: number;
|
|
4
|
+
show?: boolean;
|
|
3
5
|
icon?: ReactNode;
|
|
4
6
|
loading?: boolean;
|
|
5
7
|
onClick?: MouseEventHandler;
|
|
6
8
|
}
|
|
7
|
-
declare const _default: import("react").MemoExoticComponent<(props: RefreshIconProps) => import("react/jsx-runtime").JSX.Element>;
|
|
9
|
+
declare const _default: import("react").MemoExoticComponent<(props: RefreshIconProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
8
10
|
export default _default;
|
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
import { j as o } from "../../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
2
|
import { memo as i } from "react";
|
|
3
|
-
import { Tooltip as
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
const
|
|
8
|
-
const {
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
import { Tooltip as a } from "antd";
|
|
4
|
+
import c from "../style.mjs";
|
|
5
|
+
import p from "../../../BitzButton/index.mjs";
|
|
6
|
+
import f from "../../../../node_modules/.store/@ant-design_icons@5.3.3/node_modules/@ant-design/icons/es/icons/ReloadOutlined.mjs";
|
|
7
|
+
const d = (t) => {
|
|
8
|
+
const {
|
|
9
|
+
loading: e,
|
|
10
|
+
onClick: r,
|
|
11
|
+
order: s,
|
|
12
|
+
show: l = !0,
|
|
13
|
+
icon: m = /* @__PURE__ */ o.jsx(f, {})
|
|
14
|
+
} = t, { toolbarItemClassName: n } = c();
|
|
15
|
+
return l ? /* @__PURE__ */ o.jsx(a, { title: "刷新", open: !1, children: /* @__PURE__ */ o.jsx(
|
|
16
|
+
p,
|
|
11
17
|
{
|
|
12
18
|
type: "text",
|
|
13
|
-
className:
|
|
19
|
+
className: n,
|
|
14
20
|
disabled: e,
|
|
15
21
|
onClick: r,
|
|
16
|
-
icon:
|
|
22
|
+
icon: m,
|
|
23
|
+
style: { order: s },
|
|
17
24
|
children: "刷新"
|
|
18
25
|
}
|
|
19
|
-
) });
|
|
20
|
-
},
|
|
26
|
+
) }) : null;
|
|
27
|
+
}, I = i(d);
|
|
21
28
|
export {
|
|
22
|
-
|
|
29
|
+
I as default
|
|
23
30
|
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
2
|
import { BitzTableToolBarProps } from '..';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export default BitzTableToolBar;
|
|
3
|
+
declare const _default: import("react").NamedExoticComponent<BitzTableToolBarProps>;
|
|
4
|
+
export default _default;
|
|
@@ -1,29 +1,83 @@
|
|
|
1
|
-
import { j as
|
|
2
|
-
import { useMemo as
|
|
3
|
-
import { Space as
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { j as e } from "../../../../node_modules/.store/react@18.2.0/node_modules/react/jsx-runtime.mjs";
|
|
2
|
+
import { memo as w, useContext as x, useMemo as l } from "react";
|
|
3
|
+
import { Space as a } from "antd";
|
|
4
|
+
import u from "../RefreshIcon/index.mjs";
|
|
5
|
+
import C from "../ColConfigIcon/index.mjs";
|
|
6
|
+
import g from "../DensityIcon/index.mjs";
|
|
7
|
+
import j from "../FullscreenIcon/index.mjs";
|
|
8
|
+
import z from "../ExportIcon/index.mjs";
|
|
9
|
+
import { BitzConfigContext as I } from "../../../BitzConfigProvider/context.mjs";
|
|
10
|
+
const B = [
|
|
11
|
+
"export",
|
|
12
|
+
"refresh",
|
|
13
|
+
"size",
|
|
14
|
+
"fullscreen",
|
|
15
|
+
"colConfig"
|
|
16
|
+
], E = ({
|
|
17
|
+
size: k,
|
|
18
|
+
tools: c,
|
|
19
|
+
loading: f,
|
|
8
20
|
onExport: i,
|
|
9
|
-
onRefresh:
|
|
10
|
-
onSizeChange:
|
|
11
|
-
onColumnChange:
|
|
12
|
-
children: r
|
|
21
|
+
onRefresh: h,
|
|
22
|
+
onSizeChange: m,
|
|
23
|
+
onColumnChange: d
|
|
13
24
|
}) => {
|
|
14
|
-
const x =
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
}
|
|
25
|
+
const { Table: r } = x(I), s = l(() => c || (r == null ? void 0 : r.toolbar) || B, [r == null ? void 0 : r.toolbar]), o = l(() => {
|
|
26
|
+
const t = {
|
|
27
|
+
export: { order: 1, show: !1 },
|
|
28
|
+
refresh: { order: 2, show: !1 },
|
|
29
|
+
size: { order: 3, show: !1 },
|
|
30
|
+
fullscreen: { order: 4, show: !1 },
|
|
31
|
+
colConfig: { order: 5, show: !1 }
|
|
32
|
+
};
|
|
33
|
+
return s.forEach((n, p) => {
|
|
34
|
+
t[n].order = p + 1, t[n].show = s.includes(n);
|
|
35
|
+
}), t;
|
|
36
|
+
}, [s]);
|
|
37
|
+
return /* @__PURE__ */ e.jsxs(a.Compact, { style: { height: "100%" }, children: [
|
|
38
|
+
/* @__PURE__ */ e.jsx(
|
|
39
|
+
z,
|
|
40
|
+
{
|
|
41
|
+
order: o.export.order,
|
|
42
|
+
show: o.export.show,
|
|
43
|
+
loading: f,
|
|
44
|
+
onClick: i
|
|
45
|
+
}
|
|
46
|
+
),
|
|
47
|
+
/* @__PURE__ */ e.jsx(
|
|
48
|
+
u,
|
|
49
|
+
{
|
|
50
|
+
order: o.refresh.order,
|
|
51
|
+
show: o.refresh.show,
|
|
52
|
+
loading: f,
|
|
53
|
+
onClick: h
|
|
54
|
+
}
|
|
55
|
+
),
|
|
56
|
+
/* @__PURE__ */ e.jsx(
|
|
57
|
+
g,
|
|
58
|
+
{
|
|
59
|
+
order: o.size.order,
|
|
60
|
+
show: o.size.show,
|
|
61
|
+
onChange: m
|
|
62
|
+
}
|
|
63
|
+
),
|
|
64
|
+
/* @__PURE__ */ e.jsx(
|
|
65
|
+
j,
|
|
66
|
+
{
|
|
67
|
+
order: o.fullscreen.order,
|
|
68
|
+
show: o.fullscreen.show
|
|
69
|
+
}
|
|
70
|
+
),
|
|
71
|
+
/* @__PURE__ */ e.jsx(
|
|
72
|
+
C,
|
|
73
|
+
{
|
|
74
|
+
order: o.colConfig.order,
|
|
75
|
+
show: o.colConfig.show,
|
|
76
|
+
onChange: d
|
|
77
|
+
}
|
|
78
|
+
)
|
|
79
|
+
] });
|
|
80
|
+
}, A = w(E);
|
|
27
81
|
export {
|
|
28
|
-
|
|
82
|
+
A as default
|
|
29
83
|
};
|
|
@@ -4,10 +4,14 @@ import RefreshIcon from './RefreshIcon';
|
|
|
4
4
|
import ColConfigIcon from './ColConfigIcon';
|
|
5
5
|
import { DensitySize } from '../Store';
|
|
6
6
|
import { MouseEventHandler } from 'react';
|
|
7
|
+
import FullscreenIcon from './FullscreenIcon';
|
|
8
|
+
import { ToolEnum } from '@/components/BitzConfigProvider/context';
|
|
7
9
|
export type MenuKeysType = 'excel';
|
|
8
10
|
export type ExportEvent = (key: MenuKeysType) => void;
|
|
9
11
|
export interface BitzTableToolBarProps {
|
|
10
12
|
size?: DensitySize;
|
|
13
|
+
/** 控制tool按钮的排序和显隐,根据索引排序,不在tools数组中的不显示 */
|
|
14
|
+
tools?: ToolEnum[];
|
|
11
15
|
loading?: boolean;
|
|
12
16
|
/**
|
|
13
17
|
* 导出按钮下拉菜单的点击事件,通过key值判断是导出为excel或其他格式的文件
|
|
@@ -20,12 +24,12 @@ export interface BitzTableToolBarProps {
|
|
|
20
24
|
onSizeChange?: (size: DensitySize) => void;
|
|
21
25
|
/** 列配置更改 */
|
|
22
26
|
onColumnChange?: (columns: any) => void;
|
|
23
|
-
children?: React.ReactNode;
|
|
24
27
|
}
|
|
25
28
|
type CompoundedComponent = React.ForwardRefExoticComponent<BitzTableToolBarProps> & {
|
|
26
29
|
ExportIcon: typeof ExportIcon;
|
|
27
30
|
RefreshIcon: typeof RefreshIcon;
|
|
28
31
|
DensityIcon: typeof DensityIcon;
|
|
32
|
+
FullscreenIcon: typeof FullscreenIcon;
|
|
29
33
|
ColConfigIcon: typeof ColConfigIcon;
|
|
30
34
|
};
|
|
31
35
|
declare const BitzTableToolBar: CompoundedComponent;
|
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
import r from "./Wrapper/index.mjs";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
2
|
+
import n from "./ExportIcon/index.mjs";
|
|
3
|
+
import e from "./DensityIcon/index.mjs";
|
|
4
|
+
import t from "./RefreshIcon/index.mjs";
|
|
5
|
+
import c from "./ColConfigIcon/index.mjs";
|
|
6
|
+
import i from "./FullscreenIcon/index.mjs";
|
|
6
7
|
const o = r;
|
|
7
8
|
process.env.NODE_ENV !== "production" && (o.displayName = "BitzTableToolBar");
|
|
8
|
-
o.ExportIcon =
|
|
9
|
-
o.RefreshIcon =
|
|
10
|
-
o.DensityIcon =
|
|
11
|
-
o.
|
|
9
|
+
o.ExportIcon = n;
|
|
10
|
+
o.RefreshIcon = t;
|
|
11
|
+
o.DensityIcon = e;
|
|
12
|
+
o.FullscreenIcon = i;
|
|
13
|
+
o.ColConfigIcon = c;
|
|
12
14
|
export {
|
|
13
15
|
o as default
|
|
14
16
|
};
|
|
@@ -27,7 +27,7 @@ interface BitzTableActionProps<T> {
|
|
|
27
27
|
}
|
|
28
28
|
type ActionsFunType<T> = (record: T, index: number) => Action<T>[];
|
|
29
29
|
/** ActionCol hook参数 */
|
|
30
|
-
interface BitzTableActionColProps<T> extends
|
|
30
|
+
interface BitzTableActionColProps<T> extends Pick<BitzTableActionProps<T>, 'loading'>, Omit<BitzTableColumnType<T>, 'width' | 'render'> {
|
|
31
31
|
actionGroup: ActionsFunType<T>;
|
|
32
32
|
}
|
|
33
33
|
interface BitzTableColumnType<RecordType = any> extends ProTableColumn<RecordType> {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
info(content: any, duration
|
|
3
|
-
success(content
|
|
4
|
-
warn(content: any, duration
|
|
5
|
-
error(content: any, duration
|
|
2
|
+
info(content: any, duration?: any, onClose?: () => undefined, icon?: any): any;
|
|
3
|
+
success(content?: string, duration?: any, onClose?: () => undefined, icon?: any): any;
|
|
4
|
+
warn(content: any, duration?: any, onClose?: () => undefined, icon?: any): any;
|
|
5
|
+
error(content: any, duration?: any, onClose?: () => undefined, icon?: any): any;
|
|
6
6
|
loading(content: string | undefined, duration: number | undefined, onClose: (() => undefined) | undefined, icon: any): any;
|
|
7
7
|
};
|
|
8
8
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getDefaultExportFromCjs as u } from "../../../../../_virtual/_commonjsHelpers.mjs";
|
|
2
|
-
import { __module as i } from "../../../../../_virtual/
|
|
2
|
+
import { __module as i } from "../../../../../_virtual/index2.mjs";
|
|
3
3
|
/*!
|
|
4
4
|
Copyright (c) 2018 Jed Watson.
|
|
5
5
|
Licensed under the MIT License (MIT), see
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { getDefaultExportFromCjs as e } from "../../../../../_virtual/_commonjsHelpers.mjs";
|
|
2
|
-
import { __module as r } from "../../../../../_virtual/
|
|
2
|
+
import { __module as r } from "../../../../../_virtual/index.mjs";
|
|
3
3
|
import { __require as o } from "../../../react-is@16.13.1/node_modules/react-is/index.mjs";
|
|
4
4
|
import { __require as t } from "./factoryWithTypeCheckers.mjs";
|
|
5
5
|
import { __require as p } from "./factoryWithThrowingShims.mjs";
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
._BitzAdressBook_ojoim_1{height:100%}._BitzAdressBook_ojoim_1 .ant-tabs{height:calc(100% - 32px)}._BitzAdressBook_ojoim_1 .ant-tabs-content,._BitzAdressBook_ojoim_1 .ant-tabs-content>*{height:100%}._filter_ojoim_11{display:flex;position:relative}._filter_ojoim_11 ._input_ojoim_15{flex:1;display:flex}._filter_ojoim_11 ._icon_ojoim_19{position:absolute;left:9px;top:9px;color:#918c8c}._filter_ojoim_11 input{flex:1;outline:none;background-color:#eee;border:none;height:30px;border-radius:4px;padding-left:30px;padding-right:5px}._filter_ojoim_11 ._filterIcon_ojoim_35{width:40px;height:30px;display:flex;justify-content:center;align-items:center;cursor:pointer}._container_ojoim_43{height:100%;overflow:hidden;position:relative}._main_ojoim_48{height:100%;overflow:auto;margin-right:-8px}._main_ojoim_48 ._item_ojoim_53{display:flex;align-items:center;gap:10px;padding:10px;background-color:#fff}._main_ojoim_48 ._item_ojoim_53:hover{background-color:#efefef}._main_ojoim_48 ._avatar_ojoim_63{width:40px;height:40px;border-radius:100%;background-color:#5d73fa;color:#fff;display:flex;justify-content:center;align-items:center}._main_ojoim_48 ._name_ojoim_73{color:#333}._main_ojoim_48 ._phone_ojoim_76{color:#3339}._sidebar_ojoim_79{height:100%;overflow:auto;position:absolute;right:-34px;top:0;text-align:center;font-size:12px}._sidebar_ojoim_79 ._item_ojoim_53{width:30px;line-height:30px;margin:2px 20px 2px 0;border-radius:4px}._sidebar_ojoim_79 ._item_ojoim_53._active_ojoim_94,._sidebar_ojoim_79 ._item_ojoim_53:hover{cursor:pointer;background:#5d73fa;color:#fff}.bitzDrawerBlock .ant-drawer-header-title{flex-direction:row-reverse}.bitzDrawerBlock .ant-drawer-header,.bitzPickDrawerheaderwrap .ant-drawer-header{padding:10px;background-color:#f7f7f7}.bitzPickDrawerheader{display:flex;justify-content:space-between}.bitzPickDrawerContent{margin:-24px}.bitzPickDrawerContent .ant-tabs-tab{padding:15px;margin-left:0!important}.bitzPickDrawerContent .item{display:flex;padding:12px;justify-content:space-between}.bitzPickDrawerContent .item:active{background:rgba(0,0,0,.05)}.bitzAppPage{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background:#f4f7fc}.bitzAppPage .pageNavBar{position:relative;width:100%;height:50px;display:flex;align-items:center;justify-content:center}.bitzAppPage .pageNavBar .barLeft{position:absolute;top:0;left:0;width:33%;height:100%;display:flex;align-items:center}.bitzAppPage .pageNavBar .barLeft .icon{margin-left:20px}.bitzAppPage .pageNavBar .barRight{position:absolute;top:0;right:20px;width:33%;height:100%;display:flex;align-items:center;justify-content:flex-end}.bitzAppPage .pageNavBar .barRight .icon{margin-left:20px}.bitzAppPage .pageContent{width:100%;height:calc(100% - 50px);background:#fff}.bitzFloatLayoutBlock{position:fixed;width:100%;height:100%;top:0;left:0;visibility:hidden;z-index:810;transition:visibility .3s cubic-bezier(.36,.66,.04,1)}.bitzFloatLayoutBlock__overlay{top:0;left:0;width:100%;height:100%;position:absolute;background-color:#0000004d;opacity:0;transition:opacity .15s ease-in}.bitzFloatLayoutBlock__header{position:relative;padding:10px;line-height:1.5;background-color:#f7f7f7}.bitzFloatLayoutBlock__header__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;font-size:16px;display:block;padding-right:1.70667rem}.bitzFloatLayoutBlock__header__close{position:absolute;padding:.21333rem;top:50%;right:10px;width:20px;height:100%;line-height:1;transform:translateY(-50%)}.bitzFloatLayoutBlock__header__close:after,.bitzFloatLayoutBlock__header__close:before{content:"";position:absolute;top:50%;left:50%;display:inline-block;width:.768rem;height:2px;border-radius:1px;background:#ccc}.bitzFloatLayoutBlock__header__close:before{transform:translate3d(-50%,-50%,0) rotate(45deg)}.bitzFloatLayoutBlock__header__close:after{transform:translate3d(-50%,-50%,0) rotate(-45deg)}.bitzFloatLayoutBlock__container{position:absolute;bottom:0;width:100%;min-height:10vh;max-height:90vh;background-color:#fff;transform:translate3d(0,100%,0);transition:transform .3s cubic-bezier(.36,.66,.04,1);display:flex;flex-direction:column}.bitzFloatLayoutBlock__body{flex:1;overflow-y:auto}.bitzFloatLayoutBlock--active{visibility:visible}.bitzFloatLayoutBlock--active .bitzFloatLayoutBlock__overlay{opacity:1}.bitzFloatLayoutBlock--active .bitzFloatLayoutBlock__container{transform:translateZ(0)}.bitzCollapseBlock{display:flex;align-items:center;justify-content:center}.bitzCollapseBlock .anticon svg{width:1.5em;height:1.5em}.bitzCollapseBlock:hover{cursor:pointer}.bitzConfirmModalBlock .ant-modal-title{display:flex;align-items:center;justify-content:center}.bitzConfirmModalBlock .ant-modal-content{position:relative;padding:0;border-radius:6px;background-color:var(--modalContent-colorBg)}.bitzConfirmModalBlock .ant-modal-content .ant-modal-close{position:absolute;top:14px;right:20px;width:16px;height:16px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-header{height:44px;margin-bottom:0;border-radius:6px 6px 0 0;padding:10px 20px;box-sizing:border-box;background-color:var(--modalContent-colorBg)}.bitzConfirmModalBlock .ant-modal-content .ant-modal-header .ant-modal-title{display:block;font-size:14px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox{display:flex;align-items:center;justify-content:center;padding:24px 40px 30px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnIcon{width:20px;height:20px;margin-right:10px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnText .warnText1,.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnText .warnText3{font-size:12px;color:#697b7a;font-weight:400}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnText .warnText2{font-size:12px;color:#333;font-weight:550;margin:0 6px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .modalText{font-size:12px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-footer{margin-top:0;display:flex;align-items:center;justify-content:center;gap:20px;flex-flow:row-reverse;padding-bottom:24px;border-top:none;background-color:var(--modalContent-colorBg)}.bitzConfirmModalBlock .ant-modal-content .ant-modal-footer .ant-btn{width:94px;height:32px;padding:0;border-radius:4px;margin-left:0}.bitzConfirmModalBlock .ant-modal-content .ant-modal-footer .ant-btn span{font-size:14px}.scrollbar::-webkit-scrollbar{height:.6rem;width:.6rem}.scrollbar::-webkit-scrollbar-corner{background-color:transparent}.scrollbar::-webkit-scrollbar-thumb{border-radius:.9rem;border-top-width:.4rem;border-right-width:.4rem;border-bottom-width:.4rem;border-left-width:.4rem;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;background-clip:content-box;background-color:var(--colorScrollbarOverlay)}.scrollbar::-webkit-scrollbar-track{background-color:transparent}.bitzFuiCalendarBlock{background-color:#fff;position:relative;width:100%;height:100%;display:flex;box-sizing:border-box;--colorNeutralBackground2: #fafafa;--colorNeutralStroke2: #e0e0e0}.bitzFuiCalendarBlock *{box-sizing:border-box}.bitzFuiCalendarContainer{min-width:100%;min-height:100%;opacity:1;flex-direction:column;display:flex;text-align:left;line-height:1.4286;forced-color-adjust:none;font-weight:400;font-size:14px;text-size-adjust:100%}.bitzFuiCalendarToolbar{padding-right:3rem;padding-left:3rem;min-height:4.2rem;-webkit-box-pack:justify;justify-content:space-between;border-left-style:none;border-right-style:none;border-left-color:#e0e0e0;border-bottom-color:#e0e0e0;border-right-color:#e0e0e0;border-top-color:#e0e0e0;border-bottom-style:solid;border-top-style:solid;border-left-width:.1rem;border-bottom-width:.1rem;border-right-width:.1rem;border-top-width:.1rem;display:flex}.bitzFuiCalendarToolbar__right{column-gap:10px;display:flex}.bitzFuiCalendarToolbar__right_dropdown{padding-bottom:.8rem;padding-top:.8rem;display:inline-flex;align-items:center}.bitzFuiCalendarToolbar__left{-webkit-box-align:center;align-items:center;position:relative;display:flex}.bitzFuiCalendarConent{overflow:auto;flex:1 1 0%;flex-direction:column;display:flex}.bitzFuiCalendarHead{scrollbar-gutter:stable;min-height:6rem;padding-left:5.1rem;border-bottom-color:#e0e0e0;overflow:hidden;border-bottom-style:solid;border-bottom-width:.1rem;display:flex}.bitzFuiCalendarHead::-webkit-scrollbar{height:.6rem;width:.6rem}.bitzFuiCalendarHead::-webkit-scrollbar-corner{background-color:transparent}.bitzFuiCalendarHead::-webkit-scrollbar-thumb{border-radius:.9rem;border-top-width:.4rem;border-right-width:.4rem;border-bottom-width:.4rem;border-left-width:.4rem;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;background-clip:content-box;background-color:var(--colorScrollbarOverlay)}.bitzFuiCalendarHead::-webkit-scrollbar-track{background-color:transparent}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem{position:relative;width:0;height:6rem;min-height:6rem;-webkit-box-pack:center;justify-content:center;border-left-color:#e0e0e0;background-color:transparent;flex:1 1 0%;-webkit-box-flex:1;flex-grow:1;flex-direction:column;border-left-style:solid;border-left-width:.1rem;display:flex}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem_active:after{right:0;top:0;left:0;height:.2rem;background:#5b5fc7;display:block;position:absolute;content:"";box-sizing:border-box}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem_active .bitzFuiCalendarHeadItem__num,.bitzFuiCalendarHead .bitzFuiCalendarHeadItem_active .bitzFuiCalendarHeadItem__week{color:#5b5fc7}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem__content{padding-right:1rem;padding-left:1rem;flex-direction:column;display:flex}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem__num{font-size:2.4rem;font-weight:400;line-height:1.3333;color:#616161}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem__week{font-weight:400;line-height:1.3333;font-size:1.2rem;color:#616161}.bitzFuiCalendarBody{opacity:1;overflow:auto;flex-direction:column;display:flex;height:calc(100vh - 165px)}.bitzFuiCalendarBodyContainer{scrollbar-gutter:stable;position:relative;overflow-x:hidden;overflow-y:auto;display:flex}.bitzFuiCalendarBodyContainer::-webkit-scrollbar{height:.6rem;width:.6rem}.bitzFuiCalendarBodyContainer::-webkit-scrollbar-corner{background-color:transparent}.bitzFuiCalendarBodyContainer::-webkit-scrollbar-thumb{border-radius:.9rem;border-top-width:.4rem;border-right-width:.4rem;border-bottom-width:.4rem;border-left-width:.4rem;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;background-clip:content-box;background-color:var(--colorScrollbarOverlay)}.bitzFuiCalendarBodyContainer::-webkit-scrollbar-track{background-color:transparent}.bitzFuiCalendarBody__time{min-width:5.1rem;width:5.1rem;border-bottom-color:#e0e0e0;height:fit-content;background-color:transparent;flex-direction:column;-webkit-user-select:none;user-select:none;border-bottom-style:solid;border-bottom-width:.1rem;display:flex}.bitzFuiCalendarBody__time__item{min-height:8.1rem;text-align:center;line-height:1.3333;font-size:1.2rem;color:#616161;display:block}.bitzFuiCalendarBody__content{height:fit-content;width:100%;display:flex}.bitzFuiCalendarBody__content__row{flex:1 1 .1rem;color:#252423;border-left-width:0;border-bottom-width:0;border-right-width:0;border-top-width:2px;border-radius:0;border-left-style:none;border-bottom-style:none;border-right-style:none;border-top-style:none;box-shadow:none;background-color:transparent;position:relative;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent;padding:0}.bitzFuiCalendarBody__content__row__list{background-color:transparent;width:100%;flex-direction:column;display:flex}.bitzFuiCalendarBody__content__row__list2{top:0;width:calc(100% - 1.6rem);pointer-events:none;height:100%;color:#252423;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;border-top-width:2px;border-bottom-style:none;border-top-style:none;border-radius:0;box-shadow:none;position:absolute;background-color:transparent;border-left-style:none;border-right-style:none;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent;padding:0}.bitzFuiCalendarBody__content__row__item{border-bottom-style:solid;outline-width:0;border-right-style:none;border-top-style:none;background-color:var(--colorNeutralBackground2);border-left-color:var(--colorNeutralStroke2);border-left-style:solid;border-bottom-width:.1rem;border-left-width:.1rem;border-bottom-color:var(--colorNeutralStroke2)}.bitzFuiCalendarBody__content__row__item:hover{background-color:#f0f0f0}.bitzFuiCalendarBlock-pop-contianer{min-height:160px;min-width:220px;display:flex;flex-direction:column;justify-content:space-between}.bitzFuiCalendarBlock-pop-contianer .pop-header{display:flex;align-items:center}.bitzFuiCalendarBlock-pop-contianer .pop-header .pop-avatar{display:flex;align-items:center;margin-right:5px}.bitzFuiCalendarBlock-pop-contianer .pop-header .name{font-size:12px;display:flex;justify-content:space-between;align-items:center}.bitzFuiCalendarBlock-pop-contianer .pop-content{font-size:12px}.bitzFuiCalendarBlock-pop-contianer .pop-period-conent{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:#424242}.bitzFuiCalendarBlock-pop-contianer .pop-tag,.bitzFuiCalendarBlock-pop-contianer .pop-footer{display:flex;align-items:center;justify-content:space-between}.calendarAgendumBlock{height:auto;overflow:auto;list-style:none;display:block;padding:0;margin:0}.BitzLoadMorePage .scroll_container{height:100%}.fullScreenBlock{line-height:0;cursor:pointer}.bitzLanguageTabsBlock{position:fixed;left:0;right:0;bottom:0;z-index:10;padding:10px 30px;background:#fff;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;box-shadow:0 -1px 10px #00000040}.bitzLanguageTabsBlock .languagesBox{display:flex;gap:10px}.bitzLanguageTabsBlock .languagesBox img{cursor:pointer;box-shadow:0 0 5px #00000040}.bitzLanguageTabsBlock .languagesBox .item{padding:2px;display:flex;align-items:center}.bitzLanguageTabsBlock .languagesBox .itemActive{background:#444791}.bitzLanguageTabsBlock .copyBox{font-size:16px}.bitzModalBlock .ant-modal-title{display:flex;align-items:center;justify-content:center}.bitzModalBlock .ant-modal-content{border-radius:10px}.bitzModalBlock .ant-modal-footer{display:flex;align-items:center;justify-content:center}.bitzModalBlock .ant-modal-footer .ant-btn{flex:1}.bitzModalBlock .ant-modal-footer .ant-btn:nth-child(2){background-color:#ff4d4f}.bitzModalBlock .textBox{display:flex;align-items:center;justify-content:center;min-height:80px}:root{--rv-pull-refresh-head-height: 50px;--rv-pull-refresh-head-font-size: 14px;--rv-pull-refresh-head-text-color: #969799;--rv-pull-refresh-loading-icon-size: 16px}.bitz-pull-refresh{overflow:hidden;-webkit-user-select:none;user-select:none}.bitz-pull-refresh__track{position:relative;height:100%;transition-property:transform}.bitz-pull-refresh__head{position:absolute;left:0;width:100%;height:var(--rv-pull-refresh-head-height);overflow:hidden;color:var(--rv-pull-refresh-head-text-color);font-size:var(--rv-pull-refresh-head-font-size);line-height:var(--rv-pull-refresh-head-height);text-align:center;transform:translateY(-100%)}.bitz-pull-refresh__loading .bitz-loading__spinner{width:var(--rv-pull-refresh-loading-icon-size);height:var(--rv-pull-refresh-loading-icon-size)}.BitzMeetingTime2Block{width:100%;height:100%;position:relative;display:flex}.BitzMeetingTimeRow{display:flex;flex-direction:column;text-align:center}.BitzMeetingTimeTopTime,.BitzMeetingTimeBottomTime{font-size:10px}.BitzMeetingTimeList{display:flex;flex-direction:column;justify-content:center;margin:2.5px 0;padding:0}.BitzMeetingTime2ItemBlock{font-size:12px;height:50px;width:50px;color:#fff;display:flex;flex-direction:column;justify-content:space-evenly;align-items:center;cursor:pointer;margin:2.5px;background-color:#f2f3f2;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.free{background-color:#aadf6f}.free:hover{background-color:#6b9e31}.bitzNoMoreBlick{width:100%;height:50px;display:flex;align-items:center;justify-content:center;font-size:16px;color:#333;margin-top:-10px}:root{--rv-list-text-color: #969799;--rv-list-text-font-size: 14px;--rv-list-text-line-height: 50px;--rv-list-loading-icon-size: 16px}.bitz-list__loading,.bitz-list__finished,.bitz-list__error{color:var(--rv-list-text-color);font-size:var(--rv-list-text-font-size);line-height:var(--rv-list-text-line-height);text-align:center}.bitz-list__loading{display:flex;justify-content:center;align-items:center}.bitz-list__loadingText{margin-left:10px}.bitzLoadingBlock{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.bitzPaginationBlock{display:flex;align-items:center;justify-content:center}.bitzPaginationBlock .ant-pagination{width:100%;display:flex;flex-wrap:wrap;row-gap:8px}.bitzPaginationBlock .ant-pagination .ant-pagination-total-text{flex:1}._bitzPopoverBlock_1wotm_1{vertical-align:middle;word-break:break-all;max-width:100%;position:relative;overflow:hidden}._bitzPopoverBlock_1wotm_1 ._Paragraph_1wotm_8{transition:-webkit-line-clamp .3s linear}._container_tbbzt_1{display:grid;gap:10px}._header_tbbzt_5{display:flex;justify-content:space-between}._setting-btn_tbbzt_9{margin-left:auto}._search_tbbzt_12{height:32px;padding:0 10px}.bitzNoDataBlock{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.bitzNoDataBlock .noDataText{margin-top:10px;color:#999;font-size:16px}.bitz-page-header{box-sizing:border-box;margin:0;padding:0;color:#000000e0;font-size:14px;line-height:1.57142857;list-style:none;position:relative;background-color:transparent;padding-block-start:8px;padding-block-end:16px;padding-inline-start:40px;padding-inline-end:40px}.bitz-page-header-back{font-size:16px;line-height:1}.bitz-page-header-back-button{font-size:16px;cursor:pointer}.bitz-page-header-breadcrumb{padding-block-start:18px}.bitz-page-header-heading{padding-block-start:8px;display:flex;justify-content:space-between}.bitz-page-header-heading-left{display:flex;align-items:center;margin-block:4px;margin-inline-end:0;margin-inline-start:0;overflow:hidden}.bitz-page-header-heading-title{margin-inline-end:12px;margin-block-end:0;color:#000000e0;font-weight:600;font-size:20px;line-height:32px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.bitz-page-header-heading-extra{margin-block:4px;margin-inline-end:0;margin-inline-start:0;white-space:nowrap}.bitz-page-header-content{padding-block-start:8px}.bitz-page-header-footer{margin-block-start:8px}.bitz-page-header-compact .bitz-page-header-heading{flex-wrap:wrap}.bitz-page-header-wide{max-width:1152px;margin:0 auto}.bitz-page-header-rtl{direction:rtl}._bitzRemakBlock_hxmvg_1{padding-bottom:20px}.bitzRefreshBlock{width:100%;height:100px;background:#fff;display:flex;align-items:center;justify-content:center}.bitzRefreshBlock .loadingBox{width:150px;height:15px;margin:0 auto;display:flex;align-items:center;justify-content:center}.bitzRefreshBlock .loadingBox span{display:inline-block;width:15px;height:100%;margin-right:5px;border-radius:50%;animation:load 1.04s ease infinite;-webkit-animation:load 1.04s ease infinite}.bitzRefreshBlock .loadingBox span:last-child{margin-right:0}@-webkit-keyframes load{0%{opacity:1}to{opacity:0}}.bitzRefreshBlock .loadingBox span:nth-child(1){animation-delay:.13s;-webkit-animation-delay:.13s}.bitzRefreshBlock .loadingBox span:nth-child(2){animation-delay:.26s;-webkit-animation-delay:.26s}.bitzRefreshBlock .loadingBox span:nth-child(3){animation-delay:.39s;-webkit-animation-delay:.39s}.bitzScheduleCenterBlock{--fc-button-bg-color: #ffffff;--fc-button-border-color: #d9d9d9;--fc-button-text-color: rgba(0, 0, 0, .88);--fc-button-active-bg-color: #1677ff;--fc-button-active-border-color: #1677ff;--fc-button-hover-bg-color: #ffffff;--fc-button-hover-border-color: #1677ff;--fc-event-bg-color: #1677ff;--fc-event-border-color: #1677ff;--fc-today-bg-color: #e6f4ff}.bitzScheduleCenterBlock .fc-button-primary:not(:disabled).fc-button-active:focus,.bitzScheduleCenterBlock .fc-button-primary:not(:disabled):active:focus,.bitzScheduleCenterBlock .fc-button-primary:focus{box-shadow:none}.bitzScheduleCenterBlock .fc-button-primary:not(.fc-button-active,:disabled):hover{--fc-button-text-color: #1677ff}.bitzScheduleCenterBlock .fc-button-primary:not(:disabled):active{--fc-button-text-color: #ffffff}.bitzScheduleCenterBlock .fc-button-active{--fc-button-text-color: #ffffff}.bitzScheduleCenterBlock .bitzPopover{display:block;width:100%}.bitzScheduleCenterBlock .fc-daygrid-event-harness .fc-event-main .bitzPopover{display:flex;flex-direction:column;flex:1;height:100%}.bitzScheduleCenterBlock .fc-daygrid-event-harness>a.fc-daygrid-dot-event{width:100%;white-space:inherit}.bitzScheduleCenterBlock .fc-timegrid-event .fc-event-time{white-space:inherit}.bitzScheduleCenterBlock-pop-contianer{min-height:160px;min-width:220px;display:flex;flex-direction:column;justify-content:space-between}.bitzScheduleCenterBlock-pop-contianer .pop-header{display:flex;align-items:center}.bitzScheduleCenterBlock-pop-contianer .pop-header .pop-avatar{display:flex;align-items:center;margin-right:5px}.bitzScheduleCenterBlock-pop-contianer .pop-header .name{font-size:12px;display:flex;align-items:center}.bitzScheduleCenterBlock-pop-contianer .pop-content{font-size:12px}.bitzScheduleCenterBlock-pop-contianer .pop-period-conent{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:#424242}.bitzScheduleCenterBlock-pop-contianer .pop-tag,.bitzScheduleCenterBlock-pop-contianer .pop-footer{display:flex;align-items:center;justify-content:space-between}._container_v9wfg_1{position:fixed;top:66px;bottom:0;right:-500px;z-index:100;width:400px;max-width:100%;background-color:#fff;box-shadow:0 1px 10px #00000026;border-radius:4px;overflow:hidden;transition:.3s ease-out;display:flex;flex-direction:column}._container_v9wfg_1._show_v9wfg_17{right:0}._container_v9wfg_1._hide_v9wfg_20{right:-500px}._container_v9wfg_1 ._select_v9wfg_23{margin-top:10px;outline:none}._container_v9wfg_1 ._select_v9wfg_23>div{box-shadow:none!important;border-width:0!important;border-bottom-width:1px!important}._container_v9wfg_1 h4{padding:0 10px;color:#424242;font-size:18px;line-height:21px;margin-bottom:10px;display:flex;justify-content:space-between}._container_v9wfg_1 ._tag_v9wfg_41{font-weight:400;background-color:#ff9800;color:#fff;border:none}._header_v9wfg_47{background-color:#3f51b5;color:#fff;display:flex;justify-content:space-between}._header_v9wfg_47 h3{font-size:18px;padding:20px 30px;margin:0}._header_v9wfg_47 ._close_v9wfg_58{margin-right:40px;cursor:pointer;color:#efefef}._header_v9wfg_47 ._close_v9wfg_58:hover{color:#fff}._alert_v9wfg_66{color:#ff9800;border-color:#ffe0b2;background-color:#ffe0b2cc}._timerList_v9wfg_71{flex:1;overflow:auto}._timer_v9wfg_71{border-top:1px solid #ddd;padding:10px 18px;display:grid;grid-template-columns:40px 1fr;gap:20px}._timer_v9wfg_71 ._btn_v9wfg_82{font-size:40px;color:#4caf50;cursor:pointer;border-radius:100%;box-shadow:0 6px 10px #00000026}._timer_v9wfg_71 ._btn_v9wfg_82:hover{color:#66bb6a}._timer_v9wfg_71 ._pause_v9wfg_92{color:#ff9800}._timer_v9wfg_71 ._pause_v9wfg_92:hover{color:#ffa726}._timer_v9wfg_71 ._time_v9wfg_71{color:#333;font-size:24px;flex:1}._timer_v9wfg_71 ._tools_v9wfg_103{opacity:0;transition:.15s ease-in}._timer_v9wfg_71:hover ._tools_v9wfg_103{opacity:1}._flex_v9wfg_110{display:flex}._desc_v9wfg_113{margin-top:10px;margin-bottom:3px;font-size:12px;color:#616161;display:flex;justify-content:space-between}._form_v9wfg_121{margin-top:15px}._form_v9wfg_121 .ant-form-item{margin-bottom:10px}._addbtn_v9wfg_127{font-size:60px;position:absolute;right:15px;bottom:15px;z-index:10;color:#5d73fa;background-color:#fff;box-shadow:0 1px 6px #00000040;border-radius:100%;cursor:pointer}._addbtn_v9wfg_127:hover{color:#879bff}.bitzMobileModalBlock .ant-modal-title,.bitzMobileModalBlock .ant-modal-body{text-align:center}.bitzMobileModalBlock .ant-modal-body{padding:20px 0}.bitzMobileModalBlock .ant-modal-footer{display:flex;align-items:center}.bitzMobileModalBlock .ant-modal-footer .ant-btn{flex:1}.bitzMobileModalBlock .ant-modal-footer .ant-btn:nth-child(2){background:#f53f3f;color:#fff}.bitzPcModalBlock .ant-modal-footer .ant-btn:nth-child(2){background:#f53f3f;color:#fff}.tableMobileDrawer .ant-drawer-wrapper-body{height:100%}.tableMobileDrawer .ant-drawer-wrapper-body .ant-drawer-body{padding:0;height:100%}._splitLine_10tio_1{color:#c7c7c7;padding-left:1.2rem;padding-right:1.2rem}._CalendarAgendumItem_10tio_6{max-width:82.6rem;min-height:4.8rem;list-style:none;margin:1.2rem auto .8rem;-webkit-box-align:center;align-items:center;width:100%;-webkit-user-select:none;user-select:none;position:relative;padding:0;display:flex}._timeContainer_10tio_19{font-size:1.6rem;background-color:#fff;padding-bottom:1.2rem;padding-top:1.2rem;height:4.6rem;max-width:84.6rem;width:99%;top:-.1rem;position:sticky;-webkit-box-pack:start;justify-content:flex-start;line-height:2rem;z-index:1;font-weight:600;color:#242424;padding-left:1.2rem;margin:auto;-webkit-box-align:center;align-items:center;display:flex}._timeContainer_10tio_19._istoday_10tio_41{color:#5b5fc7}._ui-list__item__main_10tio_44{min-width:0;-webkit-box-flex:1;flex-grow:1;flex-direction:column;display:flex;width:100%}._ui-list__item__contentWrapper_10tio_52{display:flex}._ui-list__itemcontent_10tio_55{width:100%;flex-basis:100%;flex-shrink:0;line-height:inherit;margin-right:.8rem;font-size:1.2rem;-webkit-box-flex:1;flex-grow:1}._ui-list__item__container_10tio_65{transition:box-shadow .467s ease 0s;box-shadow:#0000001f 0 0 2px,#00000024 0 1px 2px;min-height:6.6rem;border-bottom-style:none;border-top-style:none;border-left-style:none;border-right-style:none;-webkit-box-pack:center;justify-content:center;border-radius:.4rem;background:#ffffff;-webkit-box-align:center;align-items:center;height:100%;display:flex}._ui-list__item__container__wrap_10tio_82{padding:1.6rem;border-radius:.4rem;width:100%;flex-direction:column;display:flex}._ui-list__item__container__item_10tio_89{overflow:hidden;display:flex}._ui-list__item__container__item_left_10tio_93{align-self:flex-start;display:flex}._ui-list__item__container__item_right_10tio_97{width:100%;flex-direction:column;overflow:hidden;display:flex}._item_left_1_10tio_103{margin-right:1.6rem;height:auto;padding-top:.1rem}._item_left_1_1_10tio_108{border-radius:.2rem;min-width:.4rem;width:.4rem;z-index:1;background-color:#5b5fc7;height:100%}._item_left_2_10tio_116{text-transform:uppercase;width:9rem;text-align:left;flex-direction:column;white-space:nowrap;display:flex}._item_left_2_1_10tio_124{text-transform:lowercase;font-weight:600;font-size:1.4rem;color:#242424;line-height:2.4rem;width:100%;overflow:hidden;display:flex}._item_left_2_2_10tio_134{text-transform:lowercase;line-height:1.6rem;font-size:1.2rem;color:#616161;position:relative;display:flex}._item_right_1_10tio_142{overflow:hidden;display:flex}._item_right_1_1_10tio_146{padding-bottom:.4rem;text-overflow:ellipsis;-webkit-box-align:center;align-items:center;overflow:hidden;display:flex}._item_right_1_1_10tio_146 span{flex-shrink:10000;width:inherit;display:initial;font-weight:600;font-size:1.4rem;color:#242424;text-overflow:ellipsis;line-height:2.4rem;overflow:hidden;white-space:nowrap;cursor:pointer}._item_right_1_2_10tio_167{margin-right:1.2rem;max-width:51rem;line-height:2.4rem;align-self:center;overflow:hidden;display:block;font-size:1.2rem;color:#616161;white-space:nowrap}._item_right_1_3_10tio_178{align-items:flex-start;-webkit-box-pack:center;justify-content:center;margin-left:auto;display:flex}._item_right_2_10tio_185{flex-wrap:wrap;margin-top:.8rem;width:100%;display:flex}._select_ydiq6_1{border-radius:2px;width:100%;min-height:32px;display:grid;grid-template-columns:1fr 24px;gap:8px;border:1px solid #d9d9d9;cursor:pointer}._content_ydiq6_11{display:flex;flex-wrap:wrap;align-items:center;gap:4px;padding:4px 12px}._placeholder_ydiq6_18{font-size:14px;color:#484644}.crudSearchButtons{margin-left:auto;text-align:right;box-sizing:border-box}.QueryFilterMobile{display:flex;justify-content:space-between;align-items:center}.QueryFilterMobile .ant-form-item{margin-bottom:0}.QueryFilterMobile .search{width:100%}.QueryFilterMobile .more{margin-left:10px}.QueryFilterDrawerBody{flex:1;padding:20px;display:flex;flex-direction:column}.QueryFilterDrawerForm{overflow-y:auto;max-height:65vh}.QueryFilterDrawerFooter{flex-shrink:0;display:flex;justify-content:space-around;align-items:center}.bitzTabbarBlock{height:50px;display:flex;justify-content:space-around;align-items:center;background-color:#fff;-webkit-touch-callout:none}.bitzTabbarBlock.bitzTabbarFixedBlock{position:fixed;bottom:0;left:0;right:0}.bitzTabbarBlock.bitzTabbarBlockBottomSafe{--safeArea-insetBottom: env(safe-area-inset-bottom);height:calc(50px + var(--safeArea-insetBottom));padding-bottom:var(--safeArea-insetBottom)}.bitzTabbarBlock.bitzTabbarBlockBorder{border:1px solid var(--bitzTabbarBlock-borderColor, #ebedf0)}.bitzTabbarBlock .tabbarItem{flex:1;display:flex;flex-direction:column;align-items:center;row-gap:5px}.bitzTabbarBlock .tabbarItem .tabbarItemIcon,.bitzTabbarBlock .tabbarItem .tabbarItemImage{display:flex;justify-content:center;align-items:center}.bitzTabbarBlock .tabbarItem .tabbarItemImage .image{height:22px}.bitzTabbarBlock .tabbarItem .tabbarItemBadgeWrapper{position:relative}.bitzTabbarBlock .tabbarItem .tabbarItemDotBadge{position:absolute;top:-2px;right:-3px;width:8px;height:8px;border-radius:50%}.bitzTabbarBlock .tabbarItem .ant-badge .ant-badge-count{height:14px;line-height:14px;transform:translate(66%,-20%);border-radius:8px}.bitzTabbarBlock .tabbarItem .ant-badge .ant-badge-multiple-words{padding:0 5px}.bitzTabbarBlock .tabbarItem .ant-badge .ant-badge-dot{transform:translate(25%,-30%)}.bitzTabbarBlock .tabbarItem .tabbarItemNumBadge{position:absolute;top:-2px;right:-8px;height:15px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:8px;font-size:12px;line-height:13px;color:#fff}.bitzTabbarBlock .tabbarItem .tabbarItemText{font-size:13px;line-height:14px;font-weight:500}.pickerPopupBlock{z-index:-1!important}.pickerPopupBlock.pickerPopupShow{z-index:1150!important;top:120px!important;box-shadow:none}.bitzToastBlock .pcToastBox{position:fixed;z-index:99999999;top:0;width:800px;min-height:36px;left:50%;margin-left:-400px;border-width:1px;border-style:solid;box-sizing:border-box;display:flex}.bitzToastBlock .pcToastBox .mark,.bitzToastBlock .pcToastBox .close{width:50px;display:flex;align-items:center;justify-content:center}.bitzToastBlock .pcToastBox .content{flex:1;display:flex;align-items:center;font-size:14px;color:#242424}.bitzToastBlock .mobileToastBox{position:fixed;z-index:99999999;top:50%;left:50%;transform:translate(-50%,-50%);width:8rem;height:8rem;border-radius:10px;background-color:#000000b3;display:flex;flex-direction:column;align-items:center;justify-content:center}.bitzToastBlock .mobileToastBox .content{margin-top:10px;font-size:14px;color:#fff}.bitzTableBlock{height:100%}.bitzTableBlock .mobileList{height:calc(100% - 200px);padding:10px}.bitzTableBlock .mobileList .listItem{padding:10px;border-radius:6px}.bitzTableBlock .mobileList .listItem:not(:last-child){margin-bottom:10px}.bitzTableBlock .mobileList .listItem .row{display:flex}.bitzTableBlock .mobileList .listItem .row:not(:last-child){margin-bottom:6px}.bitzTableBlock .mobileList .listItem .row .label{flex-shrink:0;font-size:16px;display:flex;align-items:flex-start;flex-direction:column}.bitzTableBlock .mobileList .listItem .row .value{display:flex;flex-wrap:wrap;flex:1;font-size:16px;overflow:hidden}.bitzTableBlock .bitzNoDataBlock{margin-top:20px}.bitzTableBlock .bitzTableContainer{--container-gap: 10px;--toolbar-height: 40px;--toolbar-bgColor: #fafafa;--toolCell-paddingInline: 17px;--toolCell-width: 50px;--thead-bgColor: #e5e5e5;--thead-hoverBgColor: #e0e0e0;--cell-block: 40px;--cell-paddingInline: 24px;--rowHover-bgColor: #fafafa;--evenRow-BgColor: #f9f9f9;--fontSize: 12px;--skeletonWrapHeight: 22px;--skeletonHeight: 18px;--expandIcon-borderColor: #d0d0d0;height:100%;justify-content:space-between;display:flex;flex-direction:column;row-gap:var(--container-gap);position:relative}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-container table>thead>tr:first-child>*:first-child,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-container table>thead>tr:first-child>*:last-child{border-radius:0}.bitzTableBlock .bitzTableContainer .ant-table-wrapper table,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table .ant-table-title,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table .ant-table-header{border-radius:0}.bitzTableBlock .bitzTableContainer.hideBorder .ant-table-wrapper .ant-table-tbody>tr>th,.bitzTableBlock .bitzTableContainer.hideBorder .ant-table-wrapper .ant-table-tbody>tr>td{border-color:transparent}.bitzTableBlock .bitzTableContainer .bitzTableContainerBody{position:relative}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead>tr>th,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead>tr>td{background:var(--thead-bgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead .ant-table-cell-scrollbar:not([rowspan]){box-shadow:0 1px 0 1px var(--thead-bgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters{background:var(--thead-bgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters:hover,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover{background:var(--thead-hoverBgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-tbody .ant-table-row:not(.ant-table-row-selected)>.ant-table-cell-row-hover{background-color:var(--rowHover-bgColor)!important}.bitzTableBlock .bitzTableContainer .ant-table .ant-table-body{overflow:auto!important}.bitzTableBlock .bitzTableContainer .ant-table .evenRow:not(.ant-table-row-selected){background:var(--evenRow-BgColor)}.bitzTableBlock .bitzTableContainer .ant-table .evenRow:not(.ant-table-row-selected) .ant-table-cell-fix-left,.bitzTableBlock .bitzTableContainer .ant-table .evenRow:not(.ant-table-row-selected) .ant-table-cell-fix-right{background:var(--evenRow-BgColor)}.bitzTableBlock .bitzTableContainer .ant-table .ant-table-placeholder>td{padding:0;height:auto}.bitzTableBlock .bitzTableContainer .ant-table .ant-table-placeholder>td .ant-table-expanded-row-fixed{margin:0;padding:var(--cell-paddingInline)}.bitzTableBlock .bitzTableContainer:not(.hasScrollBar) .ant-table.ant-table-scroll-horizontal .ant-table-cell-fix-right-first{right:0!important}.bitzTableBlock .bitzTableContainer:not(.hasScrollBar) .ant-table.ant-table-scroll-horizontal .ant-table-cell-scrollbar{display:none}.bitzTableBlock .bitzTableContainer .ant-table-title,.bitzTableBlock .bitzTableContainer .ant-table-footer,.bitzTableBlock .bitzTableContainer .ant-table-cell,.bitzTableBlock .bitzTableContainer .ant-table-thead>tr>th,.bitzTableBlock .bitzTableContainer .ant-table-tbody>tr>th,.bitzTableBlock .bitzTableContainer .ant-table-tbody>tr>td,.bitzTableBlock .bitzTableContainer tfoot>tr>th,.bitzTableBlock .bitzTableContainer tfoot>tr>td{height:var(--cell-block);padding-block:0;padding-inline:var(--cell-paddingInline);font-size:var(--fontSize)}.bitzTableBlock .bitzTableContainer.xlBitzTable{--cell-block: 50px;--fontSize: 14px;--skeletonWrapHeight: 23px;--skeletonHeight: 22px;--toolCell-width: 54px}.bitzTableBlock .bitzTableContainer.lgBitzTable{--cell-block: 40px;--fontSize: 12px;--skeletonWrapHeight: 22px;--skeletonHeight: 18px}.bitzTableBlock .bitzTableContainer.mdBitzTable{--cell-block: 36px;--fontSize: 12px;--skeletonWrapHeight: 22px;--skeletonHeight: 16px}.bitzTableBlock .bitzTableContainer.smBitzTable{--cell-block: 32px;--fontSize: 11px;--skeletonWrapHeight: 21px;--skeletonHeight: 14px}.bitzTableBlock .bitzTableContainer.xsBitzTable{--cell-block: 28px;--fontSize: 11px;--skeletonWrapHeight: 21px;--skeletonHeight: 14px}.bitzTableBlock .bitzTableContainer.lgBitzTable,.bitzTableBlock .bitzTableContainer.mdBitzTable,.bitzTableBlock .bitzTableContainer.smBitzTable,.bitzTableBlock .bitzTableContainer.xsBitzTable{--toolCell-width: 50px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after{width:6px;height:6px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-selection-column .ant-checkbox-inner{width:14px;height:14px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after{width:5px!important;height:8px!important}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon{width:15px;height:15px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before{top:6px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after{inset-inline-start:6px}.bitzTableBlock .bitzTableContainer .ant-table-expand-icon-col,.bitzTableBlock .bitzTableContainer .ant-table-selection-col,.bitzTableBlock .bitzTableContainer .ant-table-selection-column,.bitzTableBlock .bitzTableContainer .ant-table-row-expand-icon-cell{width:var(--toolCell-width);padding-inline:var(--toolCell-paddingInline)!important}.bitzTableBlock .bitzTableContainer .ant-table-tbody .ant-table-expanded-row>td{height:auto;padding:0}.bitzTableBlock .bitzTableContainer .ant-table-tbody .ant-table-expanded-row>td>div{height:100%;margin:0;padding-block:0;padding-inline-start:var(--toolCell-width);padding-inline-end:0}.bitzTableBlock .bitzTableContainer .ant-table-tbody .ant-table-expanded-row .ant-table{margin:0!important}.bitzTableBlock .bitzTableContainer .bitzTableToolbarBlock{display:flex;justify-content:space-between;align-items:center;height:var(--toolbar-height);padding-inline:0px;column-gap:16px;background-color:var(--toolbar-bgColor);position:relative}.bitzTableBlock .bitzTableContainer .ant-skeleton-paragraph{margin:0;height:var(--skeletonWrapHeight);display:flex;align-items:center}.bitzTableBlock .bitzTableContainer .ant-skeleton-paragraph li{height:var(--skeletonHeight)}.bitzTableBlock .bitzTableContainer .ant-pagination .ant-pagination-total-text{flex:1}.bitzTableBlock .bitzTableContainer .ant-table-row-expand-icon:not(:hover,:focus){border-color:var(--expandIcon-borderColor)}.bitzTableBlock .bitzTableContainer .ant-table-row-expand-icon:disabled{color:var(--expandIcon-borderColor);cursor:not-allowed}.tableMobileDrawer .ant-drawer-body{padding:0;height:100%}.tableMobileDrawer .drawerBox{height:100%;display:flex;flex-direction:column}.tableMobileDrawer .drawerBox .boxBody{flex:1}.tableMobileDrawer .drawerBox .boxBody .operaList{height:60px;border-bottom:2px solid #f4f7fc;box-sizing:border-box;display:flex;align-items:center;justify-content:center;font-size:18px}.tableMobileDrawer .drawerBox .boxBody .operaList:last-child{border-bottom:none}.tableMobileDrawer .drawerBox .boxLine{width:100%;height:10px;background:#f4f7fc}.tableMobileDrawer .drawerBox .boxFooter{height:60px;display:flex;align-items:center;justify-content:center;font-size:18px}.tableExportDrawer .ant-drawer-wrapper-body{height:100%}.tableExportDrawer .ant-drawer-wrapper-body .ant-drawer-body{padding:0;height:calc(100% - 56px)}.tableExportDrawer .ant-radio-group,.tableExportDrawer .ant-checkbox-group{display:block}.tableExportDrawer .ant-radio-group label,.tableExportDrawer .ant-checkbox-group label{width:100%}.tableExportDrawer .drawerBox{height:100%}.tableExportDrawer .drawerBox .boxBody{height:calc(100% - 50px)}.tableExportDrawer .drawerBox .boxBody .bodyContent{padding:20px;overflow-x:hidden;overflow-y:auto}.tableExportDrawer .drawerBox .boxBody .row{margin-bottom:20px}.tableExportDrawer .drawerBox .boxBody .row .bitzTitle{margin-bottom:10px}.tableExportDrawer .drawerBox .boxBody .row:last-child{margin-bottom:0}.tableExportDrawer .drawerBox .boxFooter{height:50px;padding:0 20px;display:flex;align-items:center;justify-content:flex-end;font-size:18px;border-top:1px solid rgba(5,5,5,.06);box-sizing:border-box}.tableExportDrawer .drawerBox .boxFooter .submitBtn{margin-left:20px}.tableExportDrawer .drawerBox .boxMobileFooter{height:50px;padding:0 20px;display:flex;align-items:center;justify-content:center;font-size:18px;border-top:1px solid rgba(5,5,5,.06);box-sizing:border-box}.tableExportDrawer .drawerBox .boxMobileFooter .ant-btn{flex:1;height:40px}.tableExportDrawer .drawerBox .boxMobileFooter .ant-btn:nth-child(1){margin-right:10px}.tableFilterDrawer .ant-checkbox-group{display:flex;flex-direction:column}.tableFilterDrawer .ant-checkbox-group label{margin-bottom:10px}._bitzSelectWrapper_4bx9c_1 ._search-input_4bx9c_1{margin:10px;display:block}._bitzSelectWrapper_4bx9c_1 ._search-input_4bx9c_1 ._ant-input-search_4bx9c_5{width:100%}._bitzSelectWrapper_4bx9c_1 ._tag-list_4bx9c_8{margin:10px}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11{position:relative;top:20px}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-top_4bx9c_15,._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-bottom_4bx9c_16{z-index:10;width:100%;height:68px;pointer-events:none;transform:translateZ(0)}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-top_4bx9c_15{position:absolute;top:0;background:linear-gradient(to top,rgba(255,255,255,.4),rgba(255,255,255,.8))}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-bottom_4bx9c_16{position:absolute;bottom:1px;background:linear-gradient(to bottom,rgba(255,255,255,.4),rgba(255,255,255,.8))}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34{position:relative}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:before,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:after{content:"";display:block;position:absolute;transform-origin:0 0}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:before ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:before ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:after ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:after ._border-bottom-1px_4bx9c_33:after{border-bottom:1px solid #ebebeb;left:0;bottom:0;width:100%;transform-origin:0 bottom}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:before ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:before ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:after ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:after ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before{border-top:1px solid #ebebeb;left:0;top:0;width:100%;transform-origin:0 top}._bitzSelectWrapper_4bx9c_1 ._wheel-wrapper_4bx9c_66{display:flex;padding:0 16px}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66{flex:1;height:173px;overflow:hidden;font-size:18px;text-align:center}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66 ._wheel-scroll_4bx9c_77{padding:0;margin-top:68px;line-height:36px;list-style:none}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66 ._wheel-scroll_4bx9c_77 ._wheel-item_4bx9c_83{list-style:none;height:36px;overflow:hidden;white-space:nowrap;color:#333}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66 ._wheel-scroll_4bx9c_77 ._wheel-item_4bx9c_83._wheel-disabled-item_4bx9c_90{opacity:.2}._textarea_4bx9c_93{border-radius:2px;width:100%;min-height:32px;display:grid;grid-template-columns:1fr 24px;gap:8px;border:1px solid #d9d9d9}._textarea_4bx9c_93>div{display:flex;flex-wrap:wrap;gap:4px;padding:4px}._select-label_4bx9c_108{padding-left:10px}.tableSelectPopupBlock{padding:10px}.tableSelectPopupBlock .pointerMouse{cursor:pointer}.tableSelectPopupBlock .loadingFailedTable .ant-empty{opacity:0}.tableSelectPopupBlock :where(.tableSelectPopupSearchForm) .ant-form-item{margin-bottom:0}.tableSelectPopupBlock .ant-table-selection-extra{padding-inline-start:4px!important;padding-top:1px}.tableSelectPopupBlock .ant-table-tbody>tr>.numRow{width:55px;background:transparent}.tableSelectPopupBlock .ant-table-body{overflow-x:hidden;min-height:120px}.tableSelectPopupBlock .ant-table-body:after{content:" ";position:absolute;bottom:1px;left:0;width:100%;height:1px;box-shadow:0 1px 0 var(--tableBody-bootomBorderColor)}.tableSelectPopupBlock .tableSelectPopupToolTagSelect{--toolTagSelect-color: #333;position:relative}.tableSelectPopupBlock .tableSelectPopupToolTagSelect .ant-select-selection-placeholder{color:var(--toolTagSelect-color)}.tableSelectPopupBlock .tableSelectPopupTotalSelect{position:relative}.tableSelectPopupBlock .tableSelectPopupTotalSelect .tableSelectPopupTotalSelectTip{position:absolute;top:0;right:0;bottom:0;left:0;padding:1px 12px;padding-inline-end:24px;display:flex;align-items:center;pointer-events:none}.tableSelectPopupBlock .tableSelectPopupTablePagination>.ant-pagination-options>.ant-select-in-form-item{width:auto}.tableSelectPopupTotalPopup .ant-empty-normal{margin-block:8px}._FuiCalendarItemBlock_1rypk_1{pointer-events:auto;border-radius:.4rem;width:auto;margin:0rem;flex-direction:row;box-shadow:none;position:absolute;background-color:transparent;border-left-width:.1rem;border-bottom-width:.1rem;border-right-width:.1rem;border-top-width:.1rem;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent;border-left-style:solid;border-bottom-style:solid;border-right-style:solid;border-top-style:solid;cursor:pointer;padding:.1rem;display:flex}._container_1rypk_26{background-color:#dce0fa;color:#3d3e78;border-radius:.4rem;height:100%;-webkit-user-select:none;user-select:none;padding:0;width:100%;overflow:hidden;display:flex;position:relative}._verticalLine_1rypk_38{border-bottom-left-radius:inherit;border-top-left-radius:inherit;min-width:.4rem;width:.4rem;z-index:1;height:100%;background-color:#5b5fc7}._card_1rypk_47{border-bottom-right-radius:inherit;border-top-right-radius:inherit;padding-left:.4rem;padding-right:.4rem;flex:1 1 100%;background:inherit;width:100%;flex-direction:column;overflow:hidden;display:flex;position:relative}._card_1rypk_47:hover{background-color:#c5cbfa;color:#3d3e78;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent}._cardBody_1rypk_68{padding-top:.2rem;max-height:3.6rem;line-height:1.8rem;min-height:1.25rem;flex-direction:column;display:flex;padding-bottom:0;padding-left:0;padding-right:0;margin:0}._cardFooter_1rypk_80{align-items:flex-end;right:0;-webkit-box-pack:end;justify-content:flex-end;padding:.4rem .5rem .3rem .8rem;border-radius:.4rem;bottom:0;position:absolute;background-color:inherit;display:flex}._text_1rypk_95{line-height:1.8rem;flex-shrink:1;min-height:1.8rem;overflow-y:hidden;overflow-x:hidden;font-weight:600;font-size:12px}._text2_1rypk_104{unicode-bidi:isolate;flex-shrink:1000;min-height:1.8rem;overflow-y:hidden;overflow-x:hidden;line-height:16px;font-size:12px;display:block}.textBlock{width:100%;padding:0;display:-webkit-box;-webkit-line-clamp:var(--cell-text-maxRows);-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;resize:none;border-radius:0;transition:none!important}._introduce_lbjuo_1{font-size:14px;color:var(--colorText-desc);padding:0 20px 14px;border-bottom:1px solid var(--colorBorder);background-color:var(--header-bgColor)}._block_lbjuo_8{display:flex;flex-direction:column;min-height:300px}._block_lbjuo_8:last-child ._body_lbjuo_13{background-color:var(--rightBody-bgColor)}._container_lbjuo_16{display:grid;grid-template-columns:repeat(2,calc(50% - 10px));grid-row-gap:20px;grid-column-gap:20px;padding:24px 20px}._header_lbjuo_23{background-color:var(--blockTitle-colorBg);height:44px;display:flex;align-items:center;justify-content:space-between;padding:0 16px 0 24px;border-bottom:1px solid var(--colorBorder)}._title_lbjuo_32{font-size:16px;font-weight:700;color:var(--colorText);line-height:24px;-webkit-background-clip:text}._body_lbjuo_13{display:flex;flex:auto;flex-direction:column;min-height:0;padding-bottom:50px;background:var(--leftBody-bgColor)}._body_lbjuo_13 ._content_lbjuo_47{flex:auto;margin:0;padding:0;overflow:auto;list-style:none}._body_lbjuo_13 ._item_lbjuo_54{display:flex;align-items:center;height:40px;padding:0 25px;transition:all .3s;cursor:pointer;border-bottom:1px solid transparent}._body_lbjuo_13 ._item_lbjuo_54._checked_lbjuo_63{background:var(--checked)}._body_lbjuo_13 ._content-item-text_lbjuo_66{margin-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._body_lbjuo_13 ._content-item-text-disabled_lbjuo_72{color:var(--colorText-desc)}._moveItem_lbjuo_75{position:relative;background-color:var(--block-bgColor);border-bottom:1px solid var(--colorBorder);display:flex;align-items:center;height:40px;padding:0 40px 0 25px;color:var(--colorText);cursor:grab}._moveItem_lbjuo_75:active{cursor:grabbing}._moveItem_lbjuo_75._isDragging_lbjuo_89{border:1px dashed var(--colorBorder)}._moveItem_lbjuo_75._disabled_lbjuo_92{color:var(--colorText-desc);cursor:not-allowed}._moveItem_lbjuo_75 ._moveItem-text_lbjuo_96{flex:1;margin-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._moveItem_lbjuo_75 ._moveItemShanchu_lbjuo_103{visibility:visible;display:flex;position:absolute;top:50%;right:0;transform:translateY(-50%);width:40px;height:40px;padding:0;align-items:center;justify-content:center;border-radius:50%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:none;cursor:pointer;float:right}.tableColumnSettingModal .ant-modal-content{padding:0;background-color:var(--modalContent-bgColor)}.tableColumnSettingModal .ant-modal-content .ant-modal-header{margin:0;font-size:16px;font-weight:700;padding:14px 20px 6px;background-color:var(--header-bgColor);border-bottom:none}.tableColumnSettingModal .ant-modal-content .ant-modal-body{padding:0}.tableColumnSettingModal .ant-modal-content .ant-checkbox-wrapper{line-height:normal}.tableColumnSettingModal .ant-modal-content .ant-modal-footer{text-align:left;margin:0;padding:20px;background-color:var(--footer-bgColor)}.cellBlock{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;justify-content:center}.cellBlock .tipBlock{position:absolute;left:0;top:0;right:-1px;bottom:auto;min-height:100%;background-color:#fff;border:2px solid #aaa;display:flex;flex-direction:column;justify-content:center;z-index:1;opacity:0;-webkit-user-select:none;user-select:none;pointer-events:none}.cellBlock .tipBlock .closeIcon{position:absolute;right:-4px;border-radius:50%;font-size:12px;display:flex;justify-content:center;align-items:center;padding:4px;color:#fefefe;background-color:#666;cursor:pointer}.cellBlock .tipBlock .closeIcon.top{top:-10px}.cellBlock .tipBlock .closeIcon.bottom{bottom:-10px}.cellBlock .tipBlock .tipText{width:100%;border-radius:0;padding:0}.cellBlock .toBottom{top:0;bottom:auto}.cellBlock .toTop{top:auto;bottom:0}.cellBlock .show{opacity:1;-webkit-user-select:text;user-select:text;pointer-events:auto}
|
|
1
|
+
.bitzAppPage{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;background:#f4f7fc}.bitzAppPage .pageNavBar{position:relative;width:100%;height:50px;display:flex;align-items:center;justify-content:center}.bitzAppPage .pageNavBar .barLeft{position:absolute;top:0;left:0;width:33%;height:100%;display:flex;align-items:center}.bitzAppPage .pageNavBar .barLeft .icon{margin-left:20px}.bitzAppPage .pageNavBar .barRight{position:absolute;top:0;right:20px;width:33%;height:100%;display:flex;align-items:center;justify-content:flex-end}.bitzAppPage .pageNavBar .barRight .icon{margin-left:20px}.bitzAppPage .pageContent{width:100%;height:calc(100% - 50px);background:#fff}.bitzCollapseBlock{display:flex;align-items:center;justify-content:center}.bitzCollapseBlock .anticon svg{width:1.5em;height:1.5em}.bitzCollapseBlock:hover{cursor:pointer}.bitzDrawerBlock .ant-drawer-header-title{flex-direction:row-reverse}.bitzDrawerBlock .ant-drawer-header,.bitzPickDrawerheaderwrap .ant-drawer-header{padding:10px;background-color:#f7f7f7}.bitzPickDrawerheader{display:flex;justify-content:space-between}.bitzPickDrawerContent{margin:-24px}.bitzPickDrawerContent .ant-tabs-tab{padding:15px;margin-left:0!important}.bitzPickDrawerContent .item{display:flex;padding:12px;justify-content:space-between}.bitzPickDrawerContent .item:active{background:rgba(0,0,0,.05)}.bitzFloatLayoutBlock{position:fixed;width:100%;height:100%;top:0;left:0;visibility:hidden;z-index:810;transition:visibility .3s cubic-bezier(.36,.66,.04,1)}.bitzFloatLayoutBlock__overlay{top:0;left:0;width:100%;height:100%;position:absolute;background-color:#0000004d;opacity:0;transition:opacity .15s ease-in}.bitzFloatLayoutBlock__header{position:relative;padding:10px;line-height:1.5;background-color:#f7f7f7}.bitzFloatLayoutBlock__header__title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#333;font-size:16px;display:block;padding-right:1.70667rem}.bitzFloatLayoutBlock__header__close{position:absolute;padding:.21333rem;top:50%;right:10px;width:20px;height:100%;line-height:1;transform:translateY(-50%)}.bitzFloatLayoutBlock__header__close:after,.bitzFloatLayoutBlock__header__close:before{content:"";position:absolute;top:50%;left:50%;display:inline-block;width:.768rem;height:2px;border-radius:1px;background:#ccc}.bitzFloatLayoutBlock__header__close:before{transform:translate3d(-50%,-50%,0) rotate(45deg)}.bitzFloatLayoutBlock__header__close:after{transform:translate3d(-50%,-50%,0) rotate(-45deg)}.bitzFloatLayoutBlock__container{position:absolute;bottom:0;width:100%;min-height:10vh;max-height:90vh;background-color:#fff;transform:translate3d(0,100%,0);transition:transform .3s cubic-bezier(.36,.66,.04,1);display:flex;flex-direction:column}.bitzFloatLayoutBlock__body{flex:1;overflow-y:auto}.bitzFloatLayoutBlock--active{visibility:visible}.bitzFloatLayoutBlock--active .bitzFloatLayoutBlock__overlay{opacity:1}.bitzFloatLayoutBlock--active .bitzFloatLayoutBlock__container{transform:translateZ(0)}.bitzConfirmModalBlock .ant-modal-title{display:flex;align-items:center;justify-content:center}.bitzConfirmModalBlock .ant-modal-content{position:relative;padding:0;border-radius:6px;background-color:var(--modalContent-colorBg)}.bitzConfirmModalBlock .ant-modal-content .ant-modal-close{position:absolute;top:14px;right:20px;width:16px;height:16px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-header{height:44px;margin-bottom:0;border-radius:6px 6px 0 0;padding:10px 20px;box-sizing:border-box;background-color:var(--modalContent-colorBg)}.bitzConfirmModalBlock .ant-modal-content .ant-modal-header .ant-modal-title{display:block;font-size:14px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox{display:flex;align-items:center;justify-content:center;padding:24px 40px 30px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnIcon{width:20px;height:20px;margin-right:10px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnText .warnText1,.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnText .warnText3{font-size:12px;color:#697b7a;font-weight:400}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .warnText .warnText2{font-size:12px;color:#333;font-weight:550;margin:0 6px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-body .textBox .modalText{font-size:12px}.bitzConfirmModalBlock .ant-modal-content .ant-modal-footer{margin-top:0;display:flex;align-items:center;justify-content:center;gap:20px;flex-flow:row-reverse;padding-bottom:24px;border-top:none;background-color:var(--modalContent-colorBg)}.bitzConfirmModalBlock .ant-modal-content .ant-modal-footer .ant-btn{width:94px;height:32px;padding:0;border-radius:4px;margin-left:0}.bitzConfirmModalBlock .ant-modal-content .ant-modal-footer .ant-btn span{font-size:14px}._BitzAdressBook_ojoim_1{height:100%}._BitzAdressBook_ojoim_1 .ant-tabs{height:calc(100% - 32px)}._BitzAdressBook_ojoim_1 .ant-tabs-content,._BitzAdressBook_ojoim_1 .ant-tabs-content>*{height:100%}._filter_ojoim_11{display:flex;position:relative}._filter_ojoim_11 ._input_ojoim_15{flex:1;display:flex}._filter_ojoim_11 ._icon_ojoim_19{position:absolute;left:9px;top:9px;color:#918c8c}._filter_ojoim_11 input{flex:1;outline:none;background-color:#eee;border:none;height:30px;border-radius:4px;padding-left:30px;padding-right:5px}._filter_ojoim_11 ._filterIcon_ojoim_35{width:40px;height:30px;display:flex;justify-content:center;align-items:center;cursor:pointer}._container_ojoim_43{height:100%;overflow:hidden;position:relative}._main_ojoim_48{height:100%;overflow:auto;margin-right:-8px}._main_ojoim_48 ._item_ojoim_53{display:flex;align-items:center;gap:10px;padding:10px;background-color:#fff}._main_ojoim_48 ._item_ojoim_53:hover{background-color:#efefef}._main_ojoim_48 ._avatar_ojoim_63{width:40px;height:40px;border-radius:100%;background-color:#5d73fa;color:#fff;display:flex;justify-content:center;align-items:center}._main_ojoim_48 ._name_ojoim_73{color:#333}._main_ojoim_48 ._phone_ojoim_76{color:#3339}._sidebar_ojoim_79{height:100%;overflow:auto;position:absolute;right:-34px;top:0;text-align:center;font-size:12px}._sidebar_ojoim_79 ._item_ojoim_53{width:30px;line-height:30px;margin:2px 20px 2px 0;border-radius:4px}._sidebar_ojoim_79 ._item_ojoim_53._active_ojoim_94,._sidebar_ojoim_79 ._item_ojoim_53:hover{cursor:pointer;background:#5d73fa;color:#fff}.scrollbar::-webkit-scrollbar{height:.6rem;width:.6rem}.scrollbar::-webkit-scrollbar-corner{background-color:transparent}.scrollbar::-webkit-scrollbar-thumb{border-radius:.9rem;border-top-width:.4rem;border-right-width:.4rem;border-bottom-width:.4rem;border-left-width:.4rem;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;background-clip:content-box;background-color:var(--colorScrollbarOverlay)}.scrollbar::-webkit-scrollbar-track{background-color:transparent}.bitzFuiCalendarBlock{background-color:#fff;position:relative;width:100%;height:100%;display:flex;box-sizing:border-box;--colorNeutralBackground2: #fafafa;--colorNeutralStroke2: #e0e0e0}.bitzFuiCalendarBlock *{box-sizing:border-box}.bitzFuiCalendarContainer{min-width:100%;min-height:100%;opacity:1;flex-direction:column;display:flex;text-align:left;line-height:1.4286;forced-color-adjust:none;font-weight:400;font-size:14px;text-size-adjust:100%}.bitzFuiCalendarToolbar{padding-right:3rem;padding-left:3rem;min-height:4.2rem;-webkit-box-pack:justify;justify-content:space-between;border-left-style:none;border-right-style:none;border-left-color:#e0e0e0;border-bottom-color:#e0e0e0;border-right-color:#e0e0e0;border-top-color:#e0e0e0;border-bottom-style:solid;border-top-style:solid;border-left-width:.1rem;border-bottom-width:.1rem;border-right-width:.1rem;border-top-width:.1rem;display:flex}.bitzFuiCalendarToolbar__right{column-gap:10px;display:flex}.bitzFuiCalendarToolbar__right_dropdown{padding-bottom:.8rem;padding-top:.8rem;display:inline-flex;align-items:center}.bitzFuiCalendarToolbar__left{-webkit-box-align:center;align-items:center;position:relative;display:flex}.bitzFuiCalendarConent{overflow:auto;flex:1 1 0%;flex-direction:column;display:flex}.bitzFuiCalendarHead{scrollbar-gutter:stable;min-height:6rem;padding-left:5.1rem;border-bottom-color:#e0e0e0;overflow:hidden;border-bottom-style:solid;border-bottom-width:.1rem;display:flex}.bitzFuiCalendarHead::-webkit-scrollbar{height:.6rem;width:.6rem}.bitzFuiCalendarHead::-webkit-scrollbar-corner{background-color:transparent}.bitzFuiCalendarHead::-webkit-scrollbar-thumb{border-radius:.9rem;border-top-width:.4rem;border-right-width:.4rem;border-bottom-width:.4rem;border-left-width:.4rem;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;background-clip:content-box;background-color:var(--colorScrollbarOverlay)}.bitzFuiCalendarHead::-webkit-scrollbar-track{background-color:transparent}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem{position:relative;width:0;height:6rem;min-height:6rem;-webkit-box-pack:center;justify-content:center;border-left-color:#e0e0e0;background-color:transparent;flex:1 1 0%;-webkit-box-flex:1;flex-grow:1;flex-direction:column;border-left-style:solid;border-left-width:.1rem;display:flex}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem_active:after{right:0;top:0;left:0;height:.2rem;background:#5b5fc7;display:block;position:absolute;content:"";box-sizing:border-box}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem_active .bitzFuiCalendarHeadItem__num,.bitzFuiCalendarHead .bitzFuiCalendarHeadItem_active .bitzFuiCalendarHeadItem__week{color:#5b5fc7}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem__content{padding-right:1rem;padding-left:1rem;flex-direction:column;display:flex}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem__num{font-size:2.4rem;font-weight:400;line-height:1.3333;color:#616161}.bitzFuiCalendarHead .bitzFuiCalendarHeadItem__week{font-weight:400;line-height:1.3333;font-size:1.2rem;color:#616161}.bitzFuiCalendarBody{opacity:1;overflow:auto;flex-direction:column;display:flex;height:calc(100vh - 165px)}.bitzFuiCalendarBodyContainer{scrollbar-gutter:stable;position:relative;overflow-x:hidden;overflow-y:auto;display:flex}.bitzFuiCalendarBodyContainer::-webkit-scrollbar{height:.6rem;width:.6rem}.bitzFuiCalendarBodyContainer::-webkit-scrollbar-corner{background-color:transparent}.bitzFuiCalendarBodyContainer::-webkit-scrollbar-thumb{border-radius:.9rem;border-top-width:.4rem;border-right-width:.4rem;border-bottom-width:.4rem;border-left-width:.4rem;border-top-style:solid;border-right-style:solid;border-bottom-style:solid;border-left-style:solid;border-top-color:transparent;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent;background-clip:content-box;background-color:var(--colorScrollbarOverlay)}.bitzFuiCalendarBodyContainer::-webkit-scrollbar-track{background-color:transparent}.bitzFuiCalendarBody__time{min-width:5.1rem;width:5.1rem;border-bottom-color:#e0e0e0;height:fit-content;background-color:transparent;flex-direction:column;-webkit-user-select:none;user-select:none;border-bottom-style:solid;border-bottom-width:.1rem;display:flex}.bitzFuiCalendarBody__time__item{min-height:8.1rem;text-align:center;line-height:1.3333;font-size:1.2rem;color:#616161;display:block}.bitzFuiCalendarBody__content{height:fit-content;width:100%;display:flex}.bitzFuiCalendarBody__content__row{flex:1 1 .1rem;color:#252423;border-left-width:0;border-bottom-width:0;border-right-width:0;border-top-width:2px;border-radius:0;border-left-style:none;border-bottom-style:none;border-right-style:none;border-top-style:none;box-shadow:none;background-color:transparent;position:relative;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent;padding:0}.bitzFuiCalendarBody__content__row__list{background-color:transparent;width:100%;flex-direction:column;display:flex}.bitzFuiCalendarBody__content__row__list2{top:0;width:calc(100% - 1.6rem);pointer-events:none;height:100%;color:#252423;border-left-width:0px;border-bottom-width:0px;border-right-width:0px;border-top-width:2px;border-bottom-style:none;border-top-style:none;border-radius:0;box-shadow:none;position:absolute;background-color:transparent;border-left-style:none;border-right-style:none;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent;padding:0}.bitzFuiCalendarBody__content__row__item{border-bottom-style:solid;outline-width:0;border-right-style:none;border-top-style:none;background-color:var(--colorNeutralBackground2);border-left-color:var(--colorNeutralStroke2);border-left-style:solid;border-bottom-width:.1rem;border-left-width:.1rem;border-bottom-color:var(--colorNeutralStroke2)}.bitzFuiCalendarBody__content__row__item:hover{background-color:#f0f0f0}.bitzFuiCalendarBlock-pop-contianer{min-height:160px;min-width:220px;display:flex;flex-direction:column;justify-content:space-between}.bitzFuiCalendarBlock-pop-contianer .pop-header{display:flex;align-items:center}.bitzFuiCalendarBlock-pop-contianer .pop-header .pop-avatar{display:flex;align-items:center;margin-right:5px}.bitzFuiCalendarBlock-pop-contianer .pop-header .name{font-size:12px;display:flex;justify-content:space-between;align-items:center}.bitzFuiCalendarBlock-pop-contianer .pop-content{font-size:12px}.bitzFuiCalendarBlock-pop-contianer .pop-period-conent{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:#424242}.bitzFuiCalendarBlock-pop-contianer .pop-tag,.bitzFuiCalendarBlock-pop-contianer .pop-footer{display:flex;align-items:center;justify-content:space-between}.calendarAgendumBlock{height:auto;overflow:auto;list-style:none;display:block;padding:0;margin:0}.bitzLoadingBlock{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.bitzPaginationBlock{display:flex;align-items:center;justify-content:center}.bitzPaginationBlock .ant-pagination{width:100%;display:flex;flex-wrap:wrap;row-gap:8px}.bitzPaginationBlock .ant-pagination .ant-pagination-total-text{flex:1}.fullScreenBlock{line-height:0;cursor:pointer}.bitzModalBlock .ant-modal-title{display:flex;align-items:center;justify-content:center}.bitzModalBlock .ant-modal-content{border-radius:10px}.bitzModalBlock .ant-modal-footer{display:flex;align-items:center;justify-content:center}.bitzModalBlock .ant-modal-footer .ant-btn{flex:1}.bitzModalBlock .ant-modal-footer .ant-btn:nth-child(2){background-color:#ff4d4f}.bitzModalBlock .textBox{display:flex;align-items:center;justify-content:center;min-height:80px}:root{--rv-list-text-color: #969799;--rv-list-text-font-size: 14px;--rv-list-text-line-height: 50px;--rv-list-loading-icon-size: 16px}.bitz-list__loading,.bitz-list__finished,.bitz-list__error{color:var(--rv-list-text-color);font-size:var(--rv-list-text-font-size);line-height:var(--rv-list-text-line-height);text-align:center}.bitz-list__loading{display:flex;justify-content:center;align-items:center}.bitz-list__loadingText{margin-left:10px}:root{--rv-pull-refresh-head-height: 50px;--rv-pull-refresh-head-font-size: 14px;--rv-pull-refresh-head-text-color: #969799;--rv-pull-refresh-loading-icon-size: 16px}.bitz-pull-refresh{overflow:hidden;-webkit-user-select:none;user-select:none}.bitz-pull-refresh__track{position:relative;height:100%;transition-property:transform}.bitz-pull-refresh__head{position:absolute;left:0;width:100%;height:var(--rv-pull-refresh-head-height);overflow:hidden;color:var(--rv-pull-refresh-head-text-color);font-size:var(--rv-pull-refresh-head-font-size);line-height:var(--rv-pull-refresh-head-height);text-align:center;transform:translateY(-100%)}.bitz-pull-refresh__loading .bitz-loading__spinner{width:var(--rv-pull-refresh-loading-icon-size);height:var(--rv-pull-refresh-loading-icon-size)}.bitzLanguageTabsBlock{position:fixed;left:0;right:0;bottom:0;z-index:10;padding:10px 30px;background:#fff;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;box-shadow:0 -1px 10px #00000040}.bitzLanguageTabsBlock .languagesBox{display:flex;gap:10px}.bitzLanguageTabsBlock .languagesBox img{cursor:pointer;box-shadow:0 0 5px #00000040}.bitzLanguageTabsBlock .languagesBox .item{padding:2px;display:flex;align-items:center}.bitzLanguageTabsBlock .languagesBox .itemActive{background:#444791}.bitzLanguageTabsBlock .copyBox{font-size:16px}.BitzMeetingTime2Block{width:100%;height:100%;position:relative;display:flex}.BitzMeetingTimeRow{display:flex;flex-direction:column;text-align:center}.BitzMeetingTimeTopTime,.BitzMeetingTimeBottomTime{font-size:10px}.BitzMeetingTimeList{display:flex;flex-direction:column;justify-content:center;margin:2.5px 0;padding:0}.BitzMeetingTime2ItemBlock{font-size:12px;height:50px;width:50px;color:#fff;display:flex;flex-direction:column;justify-content:space-evenly;align-items:center;cursor:pointer;margin:2.5px;background-color:#f2f3f2;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.free{background-color:#aadf6f}.free:hover{background-color:#6b9e31}.bitz-page-header{box-sizing:border-box;margin:0;padding:0;color:#000000e0;font-size:14px;line-height:1.57142857;list-style:none;position:relative;background-color:transparent;padding-block-start:8px;padding-block-end:16px;padding-inline-start:40px;padding-inline-end:40px}.bitz-page-header-back{font-size:16px;line-height:1}.bitz-page-header-back-button{font-size:16px;cursor:pointer}.bitz-page-header-breadcrumb{padding-block-start:18px}.bitz-page-header-heading{padding-block-start:8px;display:flex;justify-content:space-between}.bitz-page-header-heading-left{display:flex;align-items:center;margin-block:4px;margin-inline-end:0;margin-inline-start:0;overflow:hidden}.bitz-page-header-heading-title{margin-inline-end:12px;margin-block-end:0;color:#000000e0;font-weight:600;font-size:20px;line-height:32px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.bitz-page-header-heading-extra{margin-block:4px;margin-inline-end:0;margin-inline-start:0;white-space:nowrap}.bitz-page-header-content{padding-block-start:8px}.bitz-page-header-footer{margin-block-start:8px}.bitz-page-header-compact .bitz-page-header-heading{flex-wrap:wrap}.bitz-page-header-wide{max-width:1152px;margin:0 auto}.bitz-page-header-rtl{direction:rtl}.bitzNoDataBlock{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.bitzNoDataBlock .noDataText{margin-top:10px;color:#999;font-size:16px}.bitzNoMoreBlick{width:100%;height:50px;display:flex;align-items:center;justify-content:center;font-size:16px;color:#333;margin-top:-10px}._bitzPopoverBlock_1wotm_1{vertical-align:middle;word-break:break-all;max-width:100%;position:relative;overflow:hidden}._bitzPopoverBlock_1wotm_1 ._Paragraph_1wotm_8{transition:-webkit-line-clamp .3s linear}.BitzLoadMorePage .scroll_container{height:100%}._container_tbbzt_1{display:grid;gap:10px}._header_tbbzt_5{display:flex;justify-content:space-between}._setting-btn_tbbzt_9{margin-left:auto}._search_tbbzt_12{height:32px;padding:0 10px}._bitzRemakBlock_hxmvg_1{padding-bottom:20px}.bitzScheduleCenterBlock{--fc-button-bg-color: #ffffff;--fc-button-border-color: #d9d9d9;--fc-button-text-color: rgba(0, 0, 0, .88);--fc-button-active-bg-color: #1677ff;--fc-button-active-border-color: #1677ff;--fc-button-hover-bg-color: #ffffff;--fc-button-hover-border-color: #1677ff;--fc-event-bg-color: #1677ff;--fc-event-border-color: #1677ff;--fc-today-bg-color: #e6f4ff}.bitzScheduleCenterBlock .fc-button-primary:not(:disabled).fc-button-active:focus,.bitzScheduleCenterBlock .fc-button-primary:not(:disabled):active:focus,.bitzScheduleCenterBlock .fc-button-primary:focus{box-shadow:none}.bitzScheduleCenterBlock .fc-button-primary:not(.fc-button-active,:disabled):hover{--fc-button-text-color: #1677ff}.bitzScheduleCenterBlock .fc-button-primary:not(:disabled):active{--fc-button-text-color: #ffffff}.bitzScheduleCenterBlock .fc-button-active{--fc-button-text-color: #ffffff}.bitzScheduleCenterBlock .bitzPopover{display:block;width:100%}.bitzScheduleCenterBlock .fc-daygrid-event-harness .fc-event-main .bitzPopover{display:flex;flex-direction:column;flex:1;height:100%}.bitzScheduleCenterBlock .fc-daygrid-event-harness>a.fc-daygrid-dot-event{width:100%;white-space:inherit}.bitzScheduleCenterBlock .fc-timegrid-event .fc-event-time{white-space:inherit}.bitzScheduleCenterBlock-pop-contianer{min-height:160px;min-width:220px;display:flex;flex-direction:column;justify-content:space-between}.bitzScheduleCenterBlock-pop-contianer .pop-header{display:flex;align-items:center}.bitzScheduleCenterBlock-pop-contianer .pop-header .pop-avatar{display:flex;align-items:center;margin-right:5px}.bitzScheduleCenterBlock-pop-contianer .pop-header .name{font-size:12px;display:flex;align-items:center}.bitzScheduleCenterBlock-pop-contianer .pop-content{font-size:12px}.bitzScheduleCenterBlock-pop-contianer .pop-period-conent{display:flex;align-items:center;justify-content:space-between;font-size:12px;color:#424242}.bitzScheduleCenterBlock-pop-contianer .pop-tag,.bitzScheduleCenterBlock-pop-contianer .pop-footer{display:flex;align-items:center;justify-content:space-between}.bitzRefreshBlock{width:100%;height:100px;background:#fff;display:flex;align-items:center;justify-content:center}.bitzRefreshBlock .loadingBox{width:150px;height:15px;margin:0 auto;display:flex;align-items:center;justify-content:center}.bitzRefreshBlock .loadingBox span{display:inline-block;width:15px;height:100%;margin-right:5px;border-radius:50%;animation:load 1.04s ease infinite;-webkit-animation:load 1.04s ease infinite}.bitzRefreshBlock .loadingBox span:last-child{margin-right:0}@-webkit-keyframes load{0%{opacity:1}to{opacity:0}}.bitzRefreshBlock .loadingBox span:nth-child(1){animation-delay:.13s;-webkit-animation-delay:.13s}.bitzRefreshBlock .loadingBox span:nth-child(2){animation-delay:.26s;-webkit-animation-delay:.26s}.bitzRefreshBlock .loadingBox span:nth-child(3){animation-delay:.39s;-webkit-animation-delay:.39s}._container_v9wfg_1{position:fixed;top:66px;bottom:0;right:-500px;z-index:100;width:400px;max-width:100%;background-color:#fff;box-shadow:0 1px 10px #00000026;border-radius:4px;overflow:hidden;transition:.3s ease-out;display:flex;flex-direction:column}._container_v9wfg_1._show_v9wfg_17{right:0}._container_v9wfg_1._hide_v9wfg_20{right:-500px}._container_v9wfg_1 ._select_v9wfg_23{margin-top:10px;outline:none}._container_v9wfg_1 ._select_v9wfg_23>div{box-shadow:none!important;border-width:0!important;border-bottom-width:1px!important}._container_v9wfg_1 h4{padding:0 10px;color:#424242;font-size:18px;line-height:21px;margin-bottom:10px;display:flex;justify-content:space-between}._container_v9wfg_1 ._tag_v9wfg_41{font-weight:400;background-color:#ff9800;color:#fff;border:none}._header_v9wfg_47{background-color:#3f51b5;color:#fff;display:flex;justify-content:space-between}._header_v9wfg_47 h3{font-size:18px;padding:20px 30px;margin:0}._header_v9wfg_47 ._close_v9wfg_58{margin-right:40px;cursor:pointer;color:#efefef}._header_v9wfg_47 ._close_v9wfg_58:hover{color:#fff}._alert_v9wfg_66{color:#ff9800;border-color:#ffe0b2;background-color:#ffe0b2cc}._timerList_v9wfg_71{flex:1;overflow:auto}._timer_v9wfg_71{border-top:1px solid #ddd;padding:10px 18px;display:grid;grid-template-columns:40px 1fr;gap:20px}._timer_v9wfg_71 ._btn_v9wfg_82{font-size:40px;color:#4caf50;cursor:pointer;border-radius:100%;box-shadow:0 6px 10px #00000026}._timer_v9wfg_71 ._btn_v9wfg_82:hover{color:#66bb6a}._timer_v9wfg_71 ._pause_v9wfg_92{color:#ff9800}._timer_v9wfg_71 ._pause_v9wfg_92:hover{color:#ffa726}._timer_v9wfg_71 ._time_v9wfg_71{color:#333;font-size:24px;flex:1}._timer_v9wfg_71 ._tools_v9wfg_103{opacity:0;transition:.15s ease-in}._timer_v9wfg_71:hover ._tools_v9wfg_103{opacity:1}._flex_v9wfg_110{display:flex}._desc_v9wfg_113{margin-top:10px;margin-bottom:3px;font-size:12px;color:#616161;display:flex;justify-content:space-between}._form_v9wfg_121{margin-top:15px}._form_v9wfg_121 .ant-form-item{margin-bottom:10px}._addbtn_v9wfg_127{font-size:60px;position:absolute;right:15px;bottom:15px;z-index:10;color:#5d73fa;background-color:#fff;box-shadow:0 1px 6px #00000040;border-radius:100%;cursor:pointer}._addbtn_v9wfg_127:hover{color:#879bff}.bitzMobileModalBlock .ant-modal-title,.bitzMobileModalBlock .ant-modal-body{text-align:center}.bitzMobileModalBlock .ant-modal-body{padding:20px 0}.bitzMobileModalBlock .ant-modal-footer{display:flex;align-items:center}.bitzMobileModalBlock .ant-modal-footer .ant-btn{flex:1}.bitzMobileModalBlock .ant-modal-footer .ant-btn:nth-child(2){background:#f53f3f;color:#fff}.bitzPcModalBlock .ant-modal-footer .ant-btn:nth-child(2){background:#f53f3f;color:#fff}.tableMobileDrawer .ant-drawer-wrapper-body{height:100%}.tableMobileDrawer .ant-drawer-wrapper-body .ant-drawer-body{padding:0;height:100%}._splitLine_10tio_1{color:#c7c7c7;padding-left:1.2rem;padding-right:1.2rem}._CalendarAgendumItem_10tio_6{max-width:82.6rem;min-height:4.8rem;list-style:none;margin:1.2rem auto .8rem;-webkit-box-align:center;align-items:center;width:100%;-webkit-user-select:none;user-select:none;position:relative;padding:0;display:flex}._timeContainer_10tio_19{font-size:1.6rem;background-color:#fff;padding-bottom:1.2rem;padding-top:1.2rem;height:4.6rem;max-width:84.6rem;width:99%;top:-.1rem;position:sticky;-webkit-box-pack:start;justify-content:flex-start;line-height:2rem;z-index:1;font-weight:600;color:#242424;padding-left:1.2rem;margin:auto;-webkit-box-align:center;align-items:center;display:flex}._timeContainer_10tio_19._istoday_10tio_41{color:#5b5fc7}._ui-list__item__main_10tio_44{min-width:0;-webkit-box-flex:1;flex-grow:1;flex-direction:column;display:flex;width:100%}._ui-list__item__contentWrapper_10tio_52{display:flex}._ui-list__itemcontent_10tio_55{width:100%;flex-basis:100%;flex-shrink:0;line-height:inherit;margin-right:.8rem;font-size:1.2rem;-webkit-box-flex:1;flex-grow:1}._ui-list__item__container_10tio_65{transition:box-shadow .467s ease 0s;box-shadow:#0000001f 0 0 2px,#00000024 0 1px 2px;min-height:6.6rem;border-bottom-style:none;border-top-style:none;border-left-style:none;border-right-style:none;-webkit-box-pack:center;justify-content:center;border-radius:.4rem;background:#ffffff;-webkit-box-align:center;align-items:center;height:100%;display:flex}._ui-list__item__container__wrap_10tio_82{padding:1.6rem;border-radius:.4rem;width:100%;flex-direction:column;display:flex}._ui-list__item__container__item_10tio_89{overflow:hidden;display:flex}._ui-list__item__container__item_left_10tio_93{align-self:flex-start;display:flex}._ui-list__item__container__item_right_10tio_97{width:100%;flex-direction:column;overflow:hidden;display:flex}._item_left_1_10tio_103{margin-right:1.6rem;height:auto;padding-top:.1rem}._item_left_1_1_10tio_108{border-radius:.2rem;min-width:.4rem;width:.4rem;z-index:1;background-color:#5b5fc7;height:100%}._item_left_2_10tio_116{text-transform:uppercase;width:9rem;text-align:left;flex-direction:column;white-space:nowrap;display:flex}._item_left_2_1_10tio_124{text-transform:lowercase;font-weight:600;font-size:1.4rem;color:#242424;line-height:2.4rem;width:100%;overflow:hidden;display:flex}._item_left_2_2_10tio_134{text-transform:lowercase;line-height:1.6rem;font-size:1.2rem;color:#616161;position:relative;display:flex}._item_right_1_10tio_142{overflow:hidden;display:flex}._item_right_1_1_10tio_146{padding-bottom:.4rem;text-overflow:ellipsis;-webkit-box-align:center;align-items:center;overflow:hidden;display:flex}._item_right_1_1_10tio_146 span{flex-shrink:10000;width:inherit;display:initial;font-weight:600;font-size:1.4rem;color:#242424;text-overflow:ellipsis;line-height:2.4rem;overflow:hidden;white-space:nowrap;cursor:pointer}._item_right_1_2_10tio_167{margin-right:1.2rem;max-width:51rem;line-height:2.4rem;align-self:center;overflow:hidden;display:block;font-size:1.2rem;color:#616161;white-space:nowrap}._item_right_1_3_10tio_178{align-items:flex-start;-webkit-box-pack:center;justify-content:center;margin-left:auto;display:flex}._item_right_2_10tio_185{flex-wrap:wrap;margin-top:.8rem;width:100%;display:flex}._select_ydiq6_1{border-radius:2px;width:100%;min-height:32px;display:grid;grid-template-columns:1fr 24px;gap:8px;border:1px solid #d9d9d9;cursor:pointer}._content_ydiq6_11{display:flex;flex-wrap:wrap;align-items:center;gap:4px;padding:4px 12px}._placeholder_ydiq6_18{font-size:14px;color:#484644}.bitzTabbarBlock{height:50px;display:flex;justify-content:space-around;align-items:center;background-color:#fff;-webkit-touch-callout:none}.bitzTabbarBlock.bitzTabbarFixedBlock{position:fixed;bottom:0;left:0;right:0}.bitzTabbarBlock.bitzTabbarBlockBottomSafe{--safeArea-insetBottom: env(safe-area-inset-bottom);height:calc(50px + var(--safeArea-insetBottom));padding-bottom:var(--safeArea-insetBottom)}.bitzTabbarBlock.bitzTabbarBlockBorder{border:1px solid var(--bitzTabbarBlock-borderColor, #ebedf0)}.bitzTabbarBlock .tabbarItem{flex:1;display:flex;flex-direction:column;align-items:center;row-gap:5px}.bitzTabbarBlock .tabbarItem .tabbarItemIcon,.bitzTabbarBlock .tabbarItem .tabbarItemImage{display:flex;justify-content:center;align-items:center}.bitzTabbarBlock .tabbarItem .tabbarItemImage .image{height:22px}.bitzTabbarBlock .tabbarItem .tabbarItemBadgeWrapper{position:relative}.bitzTabbarBlock .tabbarItem .tabbarItemDotBadge{position:absolute;top:-2px;right:-3px;width:8px;height:8px;border-radius:50%}.bitzTabbarBlock .tabbarItem .ant-badge .ant-badge-count{height:14px;line-height:14px;transform:translate(66%,-20%);border-radius:8px}.bitzTabbarBlock .tabbarItem .ant-badge .ant-badge-multiple-words{padding:0 5px}.bitzTabbarBlock .tabbarItem .ant-badge .ant-badge-dot{transform:translate(25%,-30%)}.bitzTabbarBlock .tabbarItem .tabbarItemNumBadge{position:absolute;top:-2px;right:-8px;height:15px;padding:0 4px;display:flex;justify-content:center;align-items:center;border-radius:8px;font-size:12px;line-height:13px;color:#fff}.bitzTabbarBlock .tabbarItem .tabbarItemText{font-size:13px;line-height:14px;font-weight:500}._bitzSelectWrapper_4bx9c_1 ._search-input_4bx9c_1{margin:10px;display:block}._bitzSelectWrapper_4bx9c_1 ._search-input_4bx9c_1 ._ant-input-search_4bx9c_5{width:100%}._bitzSelectWrapper_4bx9c_1 ._tag-list_4bx9c_8{margin:10px}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11{position:relative;top:20px}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-top_4bx9c_15,._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-bottom_4bx9c_16{z-index:10;width:100%;height:68px;pointer-events:none;transform:translateZ(0)}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-top_4bx9c_15{position:absolute;top:0;background:linear-gradient(to top,rgba(255,255,255,.4),rgba(255,255,255,.8))}._bitzSelectWrapper_4bx9c_1 ._picker-content_4bx9c_11 ._mask-bottom_4bx9c_16{position:absolute;bottom:1px;background:linear-gradient(to bottom,rgba(255,255,255,.4),rgba(255,255,255,.8))}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34{position:relative}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:before,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:after{content:"";display:block;position:absolute;transform-origin:0 0}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:before ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:before ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:after ._border-bottom-1px_4bx9c_33:after,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:after ._border-bottom-1px_4bx9c_33:after{border-bottom:1px solid #ebebeb;left:0;bottom:0;width:100%;transform-origin:0 bottom}._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:before ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:before ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-bottom-1px_4bx9c_33:after ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before,._bitzSelectWrapper_4bx9c_1 ._border-top-1px_4bx9c_34:after ._border-bottom-1px_4bx9c_33:after ._border-top-1px_4bx9c_34:before{border-top:1px solid #ebebeb;left:0;top:0;width:100%;transform-origin:0 top}._bitzSelectWrapper_4bx9c_1 ._wheel-wrapper_4bx9c_66{display:flex;padding:0 16px}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66{flex:1;height:173px;overflow:hidden;font-size:18px;text-align:center}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66 ._wheel-scroll_4bx9c_77{padding:0;margin-top:68px;line-height:36px;list-style:none}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66 ._wheel-scroll_4bx9c_77 ._wheel-item_4bx9c_83{list-style:none;height:36px;overflow:hidden;white-space:nowrap;color:#333}._bitzSelectWrapper_4bx9c_1 ._wheel_4bx9c_66 ._wheel-scroll_4bx9c_77 ._wheel-item_4bx9c_83._wheel-disabled-item_4bx9c_90{opacity:.2}._textarea_4bx9c_93{border-radius:2px;width:100%;min-height:32px;display:grid;grid-template-columns:1fr 24px;gap:8px;border:1px solid #d9d9d9}._textarea_4bx9c_93>div{display:flex;flex-wrap:wrap;gap:4px;padding:4px}._select-label_4bx9c_108{padding-left:10px}.bitzTableBlock{height:100%}.bitzTableBlock .mobileList{height:calc(100% - 200px);padding:10px}.bitzTableBlock .mobileList .listItem{padding:10px;border-radius:6px}.bitzTableBlock .mobileList .listItem:not(:last-child){margin-bottom:10px}.bitzTableBlock .mobileList .listItem .row{display:flex}.bitzTableBlock .mobileList .listItem .row:not(:last-child){margin-bottom:6px}.bitzTableBlock .mobileList .listItem .row .label{flex-shrink:0;font-size:16px;display:flex;align-items:flex-start;flex-direction:column}.bitzTableBlock .mobileList .listItem .row .value{display:flex;flex-wrap:wrap;flex:1;font-size:16px;overflow:hidden}.bitzTableBlock .bitzNoDataBlock{margin-top:20px}.bitzTableBlock .bitzTableContainer{--container-gap: 10px;--toolbar-height: 40px;--toolbar-bgColor: #fafafa;--toolCell-paddingInline: 17px;--toolCell-width: 50px;--thead-bgColor: #e5e5e5;--thead-hoverBgColor: #e0e0e0;--cell-block: 40px;--cell-lineHeight: 16px;--cell-paddingInline: 24px;--rowHover-bgColor: #fafafa;--evenRow-BgColor: #f9f9f9;--fontSize: 12px;--skeletonWrapHeight: 22px;--skeletonHeight: 18px;--radioCheckbox-borderColor: #d9d9d9;--expandIcon-borderColor: #d0d0d0;height:100%;justify-content:space-between;display:flex;flex-direction:column;row-gap:var(--container-gap);position:relative}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-container table>thead>tr:first-child>*:first-child,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-container table>thead>tr:first-child>*:last-child{border-radius:0}.bitzTableBlock .bitzTableContainer .ant-table-wrapper table,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table .ant-table-title,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table .ant-table-header{border-radius:0}.bitzTableBlock .bitzTableContainer.hideBorder .ant-table-wrapper .ant-table-tbody>tr>th,.bitzTableBlock .bitzTableContainer.hideBorder .ant-table-wrapper .ant-table-tbody>tr>td{border-color:transparent}.bitzTableBlock .bitzTableContainer .bitzTableContainerBody{position:relative}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead>tr>th,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead>tr>td{background:var(--thead-bgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead .ant-table-cell-scrollbar:not([rowspan]){box-shadow:0 1px 0 1px var(--thead-bgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters{background:var(--thead-bgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters:hover,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-left:hover,.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-thead th.ant-table-column-has-sorters.ant-table-cell-fix-right:hover{background:var(--thead-hoverBgColor)}.bitzTableBlock .bitzTableContainer .ant-table-wrapper .ant-table-tbody .ant-table-row:not(.ant-table-row-selected)>.ant-table-cell-row-hover{background-color:var(--rowHover-bgColor)!important}.bitzTableBlock .bitzTableContainer .ant-table .ant-table-body{overflow:auto!important}.bitzTableBlock .bitzTableContainer .ant-table .evenRow:not(.ant-table-row-selected){background:var(--evenRow-BgColor)}.bitzTableBlock .bitzTableContainer .ant-table .evenRow:not(.ant-table-row-selected) .ant-table-cell-fix-left,.bitzTableBlock .bitzTableContainer .ant-table .evenRow:not(.ant-table-row-selected) .ant-table-cell-fix-right{background:var(--evenRow-BgColor)}.bitzTableBlock .bitzTableContainer .ant-table .ant-table-placeholder>td{padding:0}.bitzTableBlock .bitzTableContainer .ant-table .ant-table-placeholder>td .ant-table-expanded-row-fixed{margin:0;padding:var(--cell-paddingInline)}.bitzTableBlock .bitzTableContainer:not(.hasScrollBar) .ant-table.ant-table-scroll-horizontal .ant-table-cell-fix-right-first{right:0!important}.bitzTableBlock .bitzTableContainer:not(.hasScrollBar) .ant-table.ant-table-scroll-horizontal .ant-table-cell-scrollbar{display:none}.bitzTableBlock .bitzTableContainer .ant-table-title,.bitzTableBlock .bitzTableContainer .ant-table-footer,.bitzTableBlock .bitzTableContainer .ant-table-cell,.bitzTableBlock .bitzTableContainer .ant-table-thead>tr>th,.bitzTableBlock .bitzTableContainer .ant-table-tbody>tr>th,.bitzTableBlock .bitzTableContainer .ant-table-tbody>tr>td,.bitzTableBlock .bitzTableContainer tfoot>tr>th,.bitzTableBlock .bitzTableContainer tfoot>tr>td{height:var(--cell-block);line-height:var(--cell-lineHeight);padding-block:0;padding-inline:var(--cell-paddingInline);font-size:var(--fontSize)}.bitzTableBlock .bitzTableContainer.xlBitzTable{--cell-block: 50px;--cell-lineHeight: 20px;--fontSize: 14px;--skeletonWrapHeight: 23px;--skeletonHeight: 22px;--toolCell-width: 54px}.bitzTableBlock .bitzTableContainer.lgBitzTable{--cell-block: 40px;--cell-lineHeight: 16px;--fontSize: 12px;--skeletonWrapHeight: 22px;--skeletonHeight: 18px}.bitzTableBlock .bitzTableContainer.mdBitzTable{--cell-block: 36px;--cell-lineHeight: 16px;--fontSize: 12px;--skeletonWrapHeight: 22px;--skeletonHeight: 16px}.bitzTableBlock .bitzTableContainer.smBitzTable{--cell-block: 32px;--cell-lineHeight: 14px;--fontSize: 11px;--skeletonWrapHeight: 21px;--skeletonHeight: 14px}.bitzTableBlock .bitzTableContainer.xsBitzTable{--cell-block: 28px;--cell-lineHeight: 14px;--fontSize: 11px;--skeletonWrapHeight: 21px;--skeletonHeight: 14px}.bitzTableBlock .bitzTableContainer.xlBitzTable .ant-table-selection-column .ant-radio-inner{width:16px;height:16px}.bitzTableBlock .bitzTableContainer.xlBitzTable .ant-table-selection-column .ant-radio-inner:after{width:16px;height:16px;margin-block-start:-8px;margin-inline-start:-8px;border-radius:16px}.bitzTableBlock .bitzTableContainer.lgBitzTable,.bitzTableBlock .bitzTableContainer.mdBitzTable,.bitzTableBlock .bitzTableContainer.smBitzTable,.bitzTableBlock .bitzTableContainer.xsBitzTable{--toolCell-width: 50px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-thead .ant-table-selection-column .ant-table-selection .ant-checkbox-wrapper .ant-checkbox-inner:after{width:6px;height:6px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-selection-column .ant-checkbox-inner,.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-selection-column .ant-radio-inner,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-selection-column .ant-radio-inner,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-selection-column .ant-radio-inner,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-selection-column .ant-radio-inner{width:14px;height:14px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-selection-column .ant-radio-inner:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-selection-column .ant-radio-inner:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-selection-column .ant-radio-inner:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-selection-column .ant-radio-inner:after{width:14px;height:14px;margin-block-start:-7px;margin-inline-start:-7px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-selection-column .ant-checkbox-wrapper-checked .ant-checkbox-inner:after{width:5px!important;height:8px!important}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon{width:15px;height:15px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:before{top:6px}.bitzTableBlock .bitzTableContainer.lgBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after,.bitzTableBlock .bitzTableContainer.mdBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after,.bitzTableBlock .bitzTableContainer.smBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after,.bitzTableBlock .bitzTableContainer.xsBitzTable .ant-table-tbody .ant-table-row-expand-icon-cell .ant-table-row-expand-icon:after{inset-inline-start:6px}.bitzTableBlock .bitzTableContainer .ant-table-expand-icon-col,.bitzTableBlock .bitzTableContainer .ant-table-selection-col,.bitzTableBlock .bitzTableContainer .ant-table-selection-column,.bitzTableBlock .bitzTableContainer .ant-table-row-expand-icon-cell{width:var(--toolCell-width);padding-inline:var(--toolCell-paddingInline)!important}.bitzTableBlock .bitzTableContainer .ant-table-tbody .ant-table-expanded-row>td{padding:0}.bitzTableBlock .bitzTableContainer .ant-table-tbody .ant-table-expanded-row>td>div{height:100%;margin:0;padding-block:0;padding-inline-start:var(--toolCell-width);padding-inline-end:0}.bitzTableBlock .bitzTableContainer .ant-table-tbody .ant-table-expanded-row .ant-table{margin:0!important}.bitzTableBlock .bitzTableContainer .bitzTableToolbarBlock{display:flex;justify-content:space-between;align-items:center;height:var(--toolbar-height);padding-inline:0px;column-gap:16px;background-color:var(--toolbar-bgColor);position:relative}.bitzTableBlock .bitzTableContainer .ant-skeleton-paragraph{margin:0;height:var(--skeletonWrapHeight);display:flex;align-items:center}.bitzTableBlock .bitzTableContainer .ant-skeleton-paragraph li{height:var(--skeletonHeight)}.bitzTableBlock .bitzTableContainer .ant-pagination .ant-pagination-total-text{flex:1}.bitzTableBlock .bitzTableContainer .ant-radio-wrapper:not(:hover,:focus) .ant-radio-inner,.bitzTableBlock .bitzTableContainer .ant-checkbox-wrapper:not(:hover,:focus) .ant-checkbox-inner{border-color:var(--radioCheckbox-borderColor)}.bitzTableBlock .bitzTableContainer .ant-radio-wrapper-disabled .ant-radio-inner,.bitzTableBlock .bitzTableContainer .ant-checkbox-wrapper-disabled .ant-checkbox-inner{color:var(--radioCheckbox-borderColor);cursor:not-allowed}.bitzTableBlock .bitzTableContainer .ant-table-row-expand-icon:not(:hover,:focus){border-color:var(--expandIcon-borderColor)}.bitzTableBlock .bitzTableContainer .ant-table-row-expand-icon:disabled{color:var(--expandIcon-borderColor);cursor:not-allowed}.tableMobileDrawer .ant-drawer-body{padding:0;height:100%}.tableMobileDrawer .drawerBox{height:100%;display:flex;flex-direction:column}.tableMobileDrawer .drawerBox .boxBody{flex:1}.tableMobileDrawer .drawerBox .boxBody .operaList{height:60px;border-bottom:2px solid #f4f7fc;box-sizing:border-box;display:flex;align-items:center;justify-content:center;font-size:18px}.tableMobileDrawer .drawerBox .boxBody .operaList:last-child{border-bottom:none}.tableMobileDrawer .drawerBox .boxLine{width:100%;height:10px;background:#f4f7fc}.tableMobileDrawer .drawerBox .boxFooter{height:60px;display:flex;align-items:center;justify-content:center;font-size:18px}.tableExportDrawer .ant-drawer-wrapper-body{height:100%}.tableExportDrawer .ant-drawer-wrapper-body .ant-drawer-body{padding:0;height:calc(100% - 56px)}.tableExportDrawer .ant-radio-group,.tableExportDrawer .ant-checkbox-group{display:block}.tableExportDrawer .ant-radio-group label,.tableExportDrawer .ant-checkbox-group label{width:100%}.tableExportDrawer .drawerBox{height:100%}.tableExportDrawer .drawerBox .boxBody{height:calc(100% - 50px)}.tableExportDrawer .drawerBox .boxBody .bodyContent{padding:20px;overflow-x:hidden;overflow-y:auto}.tableExportDrawer .drawerBox .boxBody .row{margin-bottom:20px}.tableExportDrawer .drawerBox .boxBody .row .bitzTitle{margin-bottom:10px}.tableExportDrawer .drawerBox .boxBody .row:last-child{margin-bottom:0}.tableExportDrawer .drawerBox .boxFooter{height:50px;padding:0 20px;display:flex;align-items:center;justify-content:flex-end;font-size:18px;border-top:1px solid rgba(5,5,5,.06);box-sizing:border-box}.tableExportDrawer .drawerBox .boxFooter .submitBtn{margin-left:20px}.tableExportDrawer .drawerBox .boxMobileFooter{height:50px;padding:0 20px;display:flex;align-items:center;justify-content:center;font-size:18px;border-top:1px solid rgba(5,5,5,.06);box-sizing:border-box}.tableExportDrawer .drawerBox .boxMobileFooter .ant-btn{flex:1;height:40px}.tableExportDrawer .drawerBox .boxMobileFooter .ant-btn:nth-child(1){margin-right:10px}.tableFilterDrawer .ant-checkbox-group{display:flex;flex-direction:column}.tableFilterDrawer .ant-checkbox-group label{margin-bottom:10px}.crudSearchButtons{margin-left:auto;text-align:right;box-sizing:border-box}.QueryFilterMobile{display:flex;justify-content:space-between;align-items:center}.QueryFilterMobile .ant-form-item{margin-bottom:0}.QueryFilterMobile .search{width:100%}.QueryFilterMobile .more{margin-left:10px}.QueryFilterDrawerBody{flex:1;padding:20px;display:flex;flex-direction:column}.QueryFilterDrawerForm{overflow-y:auto;max-height:65vh}.QueryFilterDrawerFooter{flex-shrink:0;display:flex;justify-content:space-around;align-items:center}.pickerPopupBlock{z-index:-1!important}.pickerPopupBlock.pickerPopupShow{z-index:1150!important;top:120px!important;box-shadow:none}.bitzToastBlock .pcToastBox{position:fixed;z-index:99999999;top:0;width:800px;min-height:36px;left:50%;margin-left:-400px;border-width:1px;border-style:solid;box-sizing:border-box;display:flex}.bitzToastBlock .pcToastBox .mark,.bitzToastBlock .pcToastBox .close{width:50px;display:flex;align-items:center;justify-content:center}.bitzToastBlock .pcToastBox .content{flex:1;display:flex;align-items:center;font-size:14px;color:#242424}.bitzToastBlock .mobileToastBox{position:fixed;z-index:99999999;top:50%;left:50%;transform:translate(-50%,-50%);width:8rem;height:8rem;border-radius:10px;background-color:#000000b3;display:flex;flex-direction:column;align-items:center;justify-content:center}.bitzToastBlock .mobileToastBox .content{margin-top:10px;font-size:14px;color:#fff}.tableSelectPopupBlock{padding:10px}.tableSelectPopupBlock .pointerMouse{cursor:pointer}.tableSelectPopupBlock .loadingFailedTable .ant-empty{opacity:0}.tableSelectPopupBlock :where(.tableSelectPopupSearchForm) .ant-form-item{margin-bottom:0}.tableSelectPopupBlock .ant-table-selection-extra{padding-inline-start:4px!important;padding-top:1px}.tableSelectPopupBlock .ant-table-tbody>tr>.numRow{width:55px;background:transparent}.tableSelectPopupBlock .ant-table-body{overflow-x:hidden;min-height:120px}.tableSelectPopupBlock .ant-table-body:after{content:" ";position:absolute;bottom:1px;left:0;width:100%;height:1px;box-shadow:0 1px 0 var(--tableBody-bootomBorderColor)}.tableSelectPopupBlock .tableSelectPopupToolTagSelect{--toolTagSelect-color: #333;position:relative}.tableSelectPopupBlock .tableSelectPopupToolTagSelect .ant-select-selection-placeholder{color:var(--toolTagSelect-color)}.tableSelectPopupBlock .tableSelectPopupTotalSelect{position:relative}.tableSelectPopupBlock .tableSelectPopupTotalSelect .tableSelectPopupTotalSelectTip{position:absolute;top:0;right:0;bottom:0;left:0;padding:1px 12px;padding-inline-end:24px;display:flex;align-items:center;pointer-events:none}.tableSelectPopupBlock .tableSelectPopupTablePagination>.ant-pagination-options>.ant-select-in-form-item{width:auto}.tableSelectPopupTotalPopup .ant-empty-normal{margin-block:8px}._FuiCalendarItemBlock_1rypk_1{pointer-events:auto;border-radius:.4rem;width:auto;margin:0rem;flex-direction:row;box-shadow:none;position:absolute;background-color:transparent;border-left-width:.1rem;border-bottom-width:.1rem;border-right-width:.1rem;border-top-width:.1rem;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent;border-left-style:solid;border-bottom-style:solid;border-right-style:solid;border-top-style:solid;cursor:pointer;padding:.1rem;display:flex}._container_1rypk_26{background-color:#dce0fa;color:#3d3e78;border-radius:.4rem;height:100%;-webkit-user-select:none;user-select:none;padding:0;width:100%;overflow:hidden;display:flex;position:relative}._verticalLine_1rypk_38{border-bottom-left-radius:inherit;border-top-left-radius:inherit;min-width:.4rem;width:.4rem;z-index:1;height:100%;background-color:#5b5fc7}._card_1rypk_47{border-bottom-right-radius:inherit;border-top-right-radius:inherit;padding-left:.4rem;padding-right:.4rem;flex:1 1 100%;background:inherit;width:100%;flex-direction:column;overflow:hidden;display:flex;position:relative}._card_1rypk_47:hover{background-color:#c5cbfa;color:#3d3e78;border-left-color:transparent;border-bottom-color:transparent;border-right-color:transparent;border-top-color:transparent}._cardBody_1rypk_68{padding-top:.2rem;max-height:3.6rem;line-height:1.8rem;min-height:1.25rem;flex-direction:column;display:flex;padding-bottom:0;padding-left:0;padding-right:0;margin:0}._cardFooter_1rypk_80{align-items:flex-end;right:0;-webkit-box-pack:end;justify-content:flex-end;padding:.4rem .5rem .3rem .8rem;border-radius:.4rem;bottom:0;position:absolute;background-color:inherit;display:flex}._text_1rypk_95{line-height:1.8rem;flex-shrink:1;min-height:1.8rem;overflow-y:hidden;overflow-x:hidden;font-weight:600;font-size:12px}._text2_1rypk_104{unicode-bidi:isolate;flex-shrink:1000;min-height:1.8rem;overflow-y:hidden;overflow-x:hidden;line-height:16px;font-size:12px;display:block}._introduce_lbjuo_1{font-size:14px;color:var(--colorText-desc);padding:0 20px 14px;border-bottom:1px solid var(--colorBorder);background-color:var(--header-bgColor)}._block_lbjuo_8{display:flex;flex-direction:column;min-height:300px}._block_lbjuo_8:last-child ._body_lbjuo_13{background-color:var(--rightBody-bgColor)}._container_lbjuo_16{display:grid;grid-template-columns:repeat(2,calc(50% - 10px));grid-row-gap:20px;grid-column-gap:20px;padding:24px 20px}._header_lbjuo_23{background-color:var(--blockTitle-colorBg);height:44px;display:flex;align-items:center;justify-content:space-between;padding:0 16px 0 24px;border-bottom:1px solid var(--colorBorder)}._title_lbjuo_32{font-size:16px;font-weight:700;color:var(--colorText);line-height:24px;-webkit-background-clip:text}._body_lbjuo_13{display:flex;flex:auto;flex-direction:column;min-height:0;padding-bottom:50px;background:var(--leftBody-bgColor)}._body_lbjuo_13 ._content_lbjuo_47{flex:auto;margin:0;padding:0;overflow:auto;list-style:none}._body_lbjuo_13 ._item_lbjuo_54{display:flex;align-items:center;height:40px;padding:0 25px;transition:all .3s;cursor:pointer;border-bottom:1px solid transparent}._body_lbjuo_13 ._item_lbjuo_54._checked_lbjuo_63{background:var(--checked)}._body_lbjuo_13 ._content-item-text_lbjuo_66{margin-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._body_lbjuo_13 ._content-item-text-disabled_lbjuo_72{color:var(--colorText-desc)}._moveItem_lbjuo_75{position:relative;background-color:var(--block-bgColor);border-bottom:1px solid var(--colorBorder);display:flex;align-items:center;height:40px;padding:0 40px 0 25px;color:var(--colorText);cursor:grab}._moveItem_lbjuo_75:active{cursor:grabbing}._moveItem_lbjuo_75._isDragging_lbjuo_89{border:1px dashed var(--colorBorder)}._moveItem_lbjuo_75._disabled_lbjuo_92{color:var(--colorText-desc);cursor:not-allowed}._moveItem_lbjuo_75 ._moveItem-text_lbjuo_96{flex:1;margin-left:10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._moveItem_lbjuo_75 ._moveItemShanchu_lbjuo_103{visibility:visible;display:flex;position:absolute;top:50%;right:0;transform:translateY(-50%);width:40px;height:40px;padding:0;align-items:center;justify-content:center;border-radius:50%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:none;cursor:pointer;float:right}.tableColumnSettingModal .ant-modal-content{padding:0;background-color:var(--modalContent-bgColor)}.tableColumnSettingModal .ant-modal-content .ant-modal-header{margin:0;font-size:16px;font-weight:700;padding:14px 20px 6px;background-color:var(--header-bgColor);border-bottom:none}.tableColumnSettingModal .ant-modal-content .ant-modal-body{padding:0}.tableColumnSettingModal .ant-modal-content .ant-checkbox-wrapper{line-height:normal}.tableColumnSettingModal .ant-modal-content .ant-modal-footer{text-align:left;margin:0;padding:20px;background-color:var(--footer-bgColor)}.textBlock{width:100%;padding:0;display:-webkit-box;-webkit-line-clamp:var(--cell-text-maxRows);-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;resize:none;border-radius:0;transition:none!important}.cellBlock{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-direction:column;justify-content:center}.cellBlock .tipBlock{position:absolute;left:0;top:0;right:-1px;bottom:auto;min-height:100%;background-color:#fff;border:2px solid #aaa;display:flex;flex-direction:column;justify-content:center;z-index:1;opacity:0;-webkit-user-select:none;user-select:none;pointer-events:none}.cellBlock .tipBlock .closeIcon{position:absolute;right:-4px;border-radius:50%;font-size:12px;display:flex;justify-content:center;align-items:center;padding:4px;color:#fefefe;background-color:#666;cursor:pointer}.cellBlock .tipBlock .closeIcon.top{top:-10px}.cellBlock .tipBlock .closeIcon.bottom{bottom:-10px}.cellBlock .tipBlock .tipText{width:100%;border-radius:0;padding:0}.cellBlock .toBottom{top:0;bottom:auto}.cellBlock .toTop{top:auto;bottom:0}.cellBlock .show{opacity:1;-webkit-user-select:text;user-select:text;pointer-events:auto}
|