elcrm 0.9.158 → 0.9.160
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/Alert/index.d.ts +35 -6
- package/dist/Bookmarks/Bookmarks.d.ts +1 -1
- package/dist/Component/index.d.ts +2 -2
- package/dist/Form/Files.d.ts +1 -1
- package/dist/Form/Group.d.ts +1 -1
- package/dist/Form/Image.d.ts +1 -1
- package/dist/Form/Input.d.ts +1 -1
- package/dist/Form/Money.d.ts +1 -1
- package/dist/Form/Notes.d.ts +1 -1
- package/dist/Form/Password.d.ts +1 -1
- package/dist/Form/Select.d.ts +1 -1
- package/dist/Form/Textarea.d.ts +1 -1
- package/dist/Form/Time.d.ts +1 -1
- package/dist/Icon/Default.d.ts +1 -1
- package/dist/Icon/Sprite.d.ts +1 -1
- package/dist/Modal/index.d.ts +89 -19
- package/dist/Notice/index.d.ts +39 -9
- package/dist/index.css +1 -1
- package/dist/index.d.ts +48 -48
- package/dist/index.es.js +2867 -2828
- package/dist/index.umd.js +10 -10
- package/package.json +2 -2
- package/dist/Alert/Init.d.ts +0 -9
- package/dist/Alert/Line.d.ts +0 -12
- package/dist/Modal/Modal.d.ts +0 -54
- package/dist/Notice/Init.d.ts +0 -33
- /package/dist/Button/{Button.d.ts → index.d.ts} +0 -0
package/dist/Alert/index.d.ts
CHANGED
|
@@ -1,7 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
export type TAlertContent = {
|
|
2
|
+
text: string;
|
|
3
|
+
title: string;
|
|
4
|
+
color?: string;
|
|
5
|
+
button?: string;
|
|
6
6
|
};
|
|
7
|
-
export
|
|
7
|
+
export type TAlertInline = {
|
|
8
|
+
type: "success" | "error" | "remark" | "default" | "none";
|
|
9
|
+
text: string;
|
|
10
|
+
button?: Button;
|
|
11
|
+
};
|
|
12
|
+
type Button = {
|
|
13
|
+
onClick?: Function;
|
|
14
|
+
onSend?: Function;
|
|
15
|
+
label: string;
|
|
16
|
+
};
|
|
17
|
+
export declare namespace Alert {
|
|
18
|
+
/**
|
|
19
|
+
* Initializes the alert component, allowing it to be used in other React components.
|
|
20
|
+
*
|
|
21
|
+
* @returns A JSX element that will be rendered when an alert is displayed.
|
|
22
|
+
*/
|
|
23
|
+
function Init(): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
/**
|
|
25
|
+
* Displays an alert with the specified content and executes the provided callback
|
|
26
|
+
* when the alert's primary action is triggered. An optional cancel function can
|
|
27
|
+
* also be provided to handle cancellation actions.
|
|
28
|
+
*
|
|
29
|
+
* @param content - The content of the alert, including type, text, and button details.
|
|
30
|
+
* @param callback - The function to be executed when the alert's primary action is triggered.
|
|
31
|
+
* @param cancel - Optional. A function to be executed when the alert's cancellation action is triggered.
|
|
32
|
+
*/
|
|
33
|
+
function Send(content: TAlertContent, callback: Function, cancel?: Function): void;
|
|
34
|
+
function Line({ text, type, button }: TAlertInline): import("react/jsx-runtime").JSX.Element;
|
|
35
|
+
}
|
|
36
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const Init: () =>
|
|
1
|
+
export declare const Init: () => import("react/jsx-runtime").JSX.Element | "";
|
|
2
2
|
export declare const Icon: ({ id, type, name }: any) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export declare const Item: ({ data }: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare const Active: (a: any) => void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Alert } from '../Alert';
|
|
2
2
|
import { default as Header } from './H';
|
|
3
3
|
import { default as List } from './L';
|
|
4
4
|
import { default as Section } from './S';
|
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
|
12
12
|
edit?: boolean | undefined;
|
|
13
13
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
List: ({ children, ...restProps }: List) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
A: typeof
|
|
15
|
+
A: typeof Alert.Line;
|
|
16
16
|
U: ({ children }: {
|
|
17
17
|
children?: any;
|
|
18
18
|
}) => import("react/jsx-runtime").JSX.Element;
|
package/dist/Form/Files.d.ts
CHANGED
|
@@ -16,5 +16,5 @@ interface Input {
|
|
|
16
16
|
view?: string;
|
|
17
17
|
className?: string;
|
|
18
18
|
}
|
|
19
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onSave, className, }: Input):
|
|
19
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
20
20
|
export {};
|
package/dist/Form/Group.d.ts
CHANGED
|
@@ -17,5 +17,5 @@ interface Input {
|
|
|
17
17
|
className?: string;
|
|
18
18
|
max?: number;
|
|
19
19
|
}
|
|
20
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, max, onSave, className, separator, }: Input):
|
|
20
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, max, onSave, className, separator, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
21
21
|
export {};
|
package/dist/Form/Image.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ interface Input {
|
|
|
18
18
|
className?: string;
|
|
19
19
|
type?: "png" | "jpeg" | "webp";
|
|
20
20
|
}
|
|
21
|
-
export default function ({ value, onValue, name, placeholder, title, link, error, hide, edit, active, after, show, type, view, onSave, className, }: Input):
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, link, error, hide, edit, active, after, show, type, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
package/dist/Form/Input.d.ts
CHANGED
|
@@ -20,5 +20,5 @@ interface Input {
|
|
|
20
20
|
maxLength?: number;
|
|
21
21
|
isReload?: boolean;
|
|
22
22
|
}
|
|
23
|
-
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, onSave, className, isCopy, isReload, }: Input):
|
|
23
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, before, show, maxLength, onSave, className, isCopy, isReload, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
24
24
|
export {};
|
package/dist/Form/Money.d.ts
CHANGED
|
@@ -18,5 +18,5 @@ interface Input {
|
|
|
18
18
|
course?: number;
|
|
19
19
|
isClear?: boolean;
|
|
20
20
|
}
|
|
21
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, type, onSave, className, isClear, }: Input):
|
|
21
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, course, view, type, onSave, className, isClear, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
22
22
|
export {};
|
package/dist/Form/Notes.d.ts
CHANGED
|
@@ -40,5 +40,5 @@ type Input = {
|
|
|
40
40
|
* @param {boolean} [props.isCopy] - разрешить копирование
|
|
41
41
|
* @return {ReactElement} - поле ввода
|
|
42
42
|
*/
|
|
43
|
-
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onSave, className, isCopy, }: Input):
|
|
43
|
+
export default function ({ id, value, onValue, name, placeholder, title, error, hide, edit, active, after, show, maxLength, view, onSave, className, isCopy, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
44
44
|
export {};
|
package/dist/Form/Password.d.ts
CHANGED
|
@@ -19,5 +19,5 @@ interface Data {
|
|
|
19
19
|
maxLength?: number;
|
|
20
20
|
eyes?: any;
|
|
21
21
|
}
|
|
22
|
-
export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, maxLength, eyes, after, }: Data):
|
|
22
|
+
export default function ({ value, onValue, onSave, name, placeholder, className, title, error, edit, active, reload, native, isShow, maxLength, eyes, after, }: Data): import("react/jsx-runtime").JSX.Element | "";
|
|
23
23
|
export {};
|
package/dist/Form/Select.d.ts
CHANGED
|
@@ -19,4 +19,4 @@ export type TSelect = {
|
|
|
19
19
|
}>;
|
|
20
20
|
order?: any;
|
|
21
21
|
};
|
|
22
|
-
export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, isReload, }: TSelect):
|
|
22
|
+
export default function ({ title, error, edit, active, hide, value, onValue, options, placeholder, className, name, after, view, order, isReload, }: TSelect): import("react/jsx-runtime").JSX.Element | "";
|
package/dist/Form/Textarea.d.ts
CHANGED
|
@@ -16,5 +16,5 @@ interface Input {
|
|
|
16
16
|
className?: string;
|
|
17
17
|
maxLength?: number;
|
|
18
18
|
}
|
|
19
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, maxLength, onSave, className, }: Input):
|
|
19
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, maxLength, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
20
20
|
export {};
|
package/dist/Form/Time.d.ts
CHANGED
|
@@ -15,5 +15,5 @@ interface Input {
|
|
|
15
15
|
view?: string;
|
|
16
16
|
className?: string;
|
|
17
17
|
}
|
|
18
|
-
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onSave, className, }: Input):
|
|
18
|
+
export default function ({ value, onValue, name, placeholder, title, error, hide, edit, active, after, show, view, onSave, className, }: Input): import("react/jsx-runtime").JSX.Element | "";
|
|
19
19
|
export {};
|
package/dist/Icon/Default.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function ({ name, hover, onClick, className }: any):
|
|
1
|
+
export default function ({ name, hover, onClick, className }: any): import("react/jsx-runtime").JSX.Element | "";
|
package/dist/Icon/Sprite.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare function Sprite(a: any): void;
|
|
2
2
|
export declare function Symbol({ color, size, name }: any): import("react/jsx-runtime").JSX.Element;
|
|
3
|
-
export declare function Init():
|
|
3
|
+
export declare function Init(): import("react/jsx-runtime").JSX.Element | "";
|
package/dist/Modal/index.d.ts
CHANGED
|
@@ -1,20 +1,90 @@
|
|
|
1
|
-
import { default as
|
|
2
|
-
import { default as
|
|
3
|
-
import { default as
|
|
4
|
-
import { default as
|
|
5
|
-
import { default as
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Add: typeof Add;
|
|
12
|
-
Icon: typeof Icon;
|
|
13
|
-
Open: typeof Open;
|
|
14
|
-
Shake: typeof Shake;
|
|
15
|
-
Form: typeof Form;
|
|
16
|
-
Center: typeof Center;
|
|
17
|
-
Close: typeof Close;
|
|
18
|
-
Column: typeof Column;
|
|
1
|
+
import { default as _List } from './List';
|
|
2
|
+
import { default as _Scroll } from './Scroll';
|
|
3
|
+
import { default as _Form } from './Form';
|
|
4
|
+
import { default as _Center } from './Center';
|
|
5
|
+
import { default as _Column } from './Column';
|
|
6
|
+
import { default as React } from 'react';
|
|
7
|
+
import { Button } from '..';
|
|
8
|
+
type ButtonCallBack = {
|
|
9
|
+
setOpen: Function;
|
|
10
|
+
disabled: Function;
|
|
19
11
|
};
|
|
20
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Введите текст уведомления
|
|
14
|
+
* @param {string} title - Заголовок
|
|
15
|
+
*/
|
|
16
|
+
type TModalMain = {
|
|
17
|
+
children: React.JSX.Element;
|
|
18
|
+
title?: string;
|
|
19
|
+
button?: Button;
|
|
20
|
+
shake?: boolean;
|
|
21
|
+
tabs?: any[];
|
|
22
|
+
size?: "a" | "s" | "m" | "l" | "x" | "f";
|
|
23
|
+
menu?: React.JSX.Element;
|
|
24
|
+
className?: string;
|
|
25
|
+
};
|
|
26
|
+
type Button = {
|
|
27
|
+
onClick?: Function;
|
|
28
|
+
onSend?: (callBack: ButtonCallBack) => void;
|
|
29
|
+
label: string;
|
|
30
|
+
};
|
|
31
|
+
type Params = {
|
|
32
|
+
type: string;
|
|
33
|
+
name: string;
|
|
34
|
+
params: any;
|
|
35
|
+
};
|
|
36
|
+
export declare namespace Modal {
|
|
37
|
+
/**
|
|
38
|
+
* Initialization of the modal window.
|
|
39
|
+
* Adds a hook to the modal window state,
|
|
40
|
+
* and renders the modal window list.
|
|
41
|
+
* @returns {JSX.Element}
|
|
42
|
+
*/
|
|
43
|
+
function Init(): JSX.Element;
|
|
44
|
+
const List: typeof _List;
|
|
45
|
+
const Scroll: typeof _Scroll;
|
|
46
|
+
const Form: typeof _Form;
|
|
47
|
+
const Center: typeof _Center;
|
|
48
|
+
const Column: typeof _Column;
|
|
49
|
+
/**
|
|
50
|
+
* Введите текст уведомления
|
|
51
|
+
* @param {string} type - name modules.
|
|
52
|
+
* @param {string} name - name modal.
|
|
53
|
+
* @param {any} params - params.
|
|
54
|
+
*/
|
|
55
|
+
function Open(type: string, name: string, params: any): void;
|
|
56
|
+
/**
|
|
57
|
+
* Display an icon of a module.
|
|
58
|
+
* @param {string} type - name modules.
|
|
59
|
+
* @param {string} name - name modal.
|
|
60
|
+
* @param {any} params - params.
|
|
61
|
+
* @returns {JSX.Element}
|
|
62
|
+
*/
|
|
63
|
+
function Icon({ type, name, params }: Params): JSX.Element;
|
|
64
|
+
/**
|
|
65
|
+
* Adds a modal window to the list.
|
|
66
|
+
* @param {React.JSX.Element} e - JSX element to render.
|
|
67
|
+
* @param {string} [name] - name of modal window.
|
|
68
|
+
* @example
|
|
69
|
+
* import { Add } from "./Modal";
|
|
70
|
+
* Add(<div>Some content</div>);
|
|
71
|
+
*/
|
|
72
|
+
function Add(e: React.JSX.Element, name?: string): void;
|
|
73
|
+
/**
|
|
74
|
+
* Closes a modal window.
|
|
75
|
+
* If a name is provided, it closes the specific modal with that name.
|
|
76
|
+
* If no name is provided, it closes all modals.
|
|
77
|
+
* @param {any} [name] - The name of the modal to close.
|
|
78
|
+
*/
|
|
79
|
+
function Close(name?: any): void;
|
|
80
|
+
function Shake(e: any): void;
|
|
81
|
+
/**
|
|
82
|
+
* Функция bar использует различный функционал модуля MyModule: <br/>
|
|
83
|
+
* [Переменная модуля]{@link module:MyModule~variable} <br/>
|
|
84
|
+
* [Функция модуля]{@link module:MyModule~foo} <br/>
|
|
85
|
+
* [Метод экземпляра]{@link module:MyModule~MyClass#foo} <br/>
|
|
86
|
+
* [Статический метод]{@link module:MyModule~MyClass.foo} <br/>
|
|
87
|
+
*/
|
|
88
|
+
function Main({ title, children, button, tabs, size, className, shake, menu, }: TModalMain): import("react/jsx-runtime").JSX.Element | "";
|
|
89
|
+
}
|
|
90
|
+
export {};
|
package/dist/Notice/index.d.ts
CHANGED
|
@@ -1,10 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
interface Notice {
|
|
2
|
+
type: string;
|
|
3
|
+
text: string;
|
|
4
|
+
}
|
|
5
|
+
export type TCustomItem = {
|
|
6
|
+
key: Number;
|
|
7
|
+
text: string;
|
|
8
|
+
hide?: boolean;
|
|
9
9
|
};
|
|
10
|
-
export
|
|
10
|
+
export declare namespace Notice {
|
|
11
|
+
/**
|
|
12
|
+
* @function Init
|
|
13
|
+
* @description Initializes the Notice component.
|
|
14
|
+
* @returns A `ul` element with a class of "notice" and an ID of "notice" that contains all the notice items.
|
|
15
|
+
*/
|
|
16
|
+
function Init(): any;
|
|
17
|
+
/**
|
|
18
|
+
* Введите текст уведомления
|
|
19
|
+
* @param {string} text
|
|
20
|
+
*/
|
|
21
|
+
function Error(text: string, hide?: boolean): void;
|
|
22
|
+
/**
|
|
23
|
+
* Введите текст уведомления
|
|
24
|
+
* @param {string} text
|
|
25
|
+
*/
|
|
26
|
+
function Success(text: string, hide?: boolean): void;
|
|
27
|
+
/**
|
|
28
|
+
* Введите текст уведомления
|
|
29
|
+
* @param {string} text
|
|
30
|
+
*/
|
|
31
|
+
function Custom(e: any, hide?: boolean): void;
|
|
32
|
+
function Send(e: Notice): void;
|
|
33
|
+
/**
|
|
34
|
+
* Введите текст уведомления
|
|
35
|
+
* @param {string} text
|
|
36
|
+
*/
|
|
37
|
+
function Remark(text: string, hide?: boolean): void;
|
|
38
|
+
function Copy(text: string, hide?: boolean): void;
|
|
39
|
+
}
|
|
40
|
+
export {};
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";._notice_13j98_2{position:absolute;top:var(--notice-top);left:var(--notice-left);right:var(--notice-right);bottom:var(--notice-bottom);z-index:1111;font-family:var(--notice-family)}._notice_13j98_2 ._error_13j98_11{color:var(--notice-error, #bb2014)}._notice_13j98_2 ._success_13j98_14{color:var(--notice-success, #367738)}._notice_13j98_2 ._remark_13j98_17{color:var(--notice-remark, #b77513)}._notice_13j98_2 ._copy_13j98_20{color:var(--notice-copy, #3f51b5)}._notice_13j98_2 li{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);display:block;width:300px;height:70px;border-radius:var(--notice-radius, 5px);box-shadow:0 0 0 1px var(--system-border),0 2px 2px #00000008,0 4px 4px #0000000a,0 10px 8px #0000000d,0 15px 15px #0000000f,0 30px 30px #00000012,0 70px 65px #00000017;background:var(--system-bg);overflow:hidden;cursor:pointer;margin:10px 0;transition:all 3s ease 0s;opacity:0}._notice_13j98_2 svg{float:left;width:50px;height:50px;margin:10px;font-size:40px;line-height:51px;text-align:center}._notice_13j98_2 b{width:222px;font-size:17px;font-weight:700;position:absolute;left:70px;display:block;margin-top:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._notice_13j98_2 p{color:var(--system-color);font-size:14px;width:222px;position:absolute;left:70px;display:block;margin-top:37px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._notice_13j98_2 [data-status=show]{opacity:1;transition:1s;animation:_show-notice_13j98_1 1s 1;animation-fill-mode:forwards}._notice_13j98_2 [data-status=hide]{opacity:1;transition:1s;animation:_hide-notice_13j98_1 1s 1;animation-fill-mode:forwards}@keyframes _show-notice_13j98_1{0%{opacity:0}to{opacity:1}}@keyframes _hide-notice_13j98_1{0%{opacity:1}to{opacity:0}}._alerts_ita6j_1{position:fixed;top:0;bottom:0;left:0;right:0;color:var(--system-color);background:#0000009e;z-index:30;display:flex;flex:1;align-content:center;justify-content:center}._alerts_ita6j_1 dl{margin:auto;overflow:hidden;width:270px;height:auto;border-radius:12px;border:0;height:fit-content;z-index:1;background:var(--system-bg);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);-webkit-animation:_menuAnimation_ita6j_1 .4s 0s both;animation:_menuAnimation_ita6j_1 .4s 0s both;list-style:none;padding-top:20px;font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;box-shadow:0 0 0 1px var(--system-border),0 2px 2px #00000008,0 4px 4px #0000000a,0 10px 8px #0000000d,0 15px 15px #0000000f,0 30px 30px #00000012,0 70px 65px #00000017}._alerts_ita6j_1 dt{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;text-align:center;text-transform:capitalize;font-weight:600;line-height:22px;margin:0 0 5px;padding:0 20px}._alerts_ita6j_1 dd{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:13px;margin:0;text-align:center;line-height:16px;padding:0 20px 20px}._alerts_ita6j_1 ul{border-top:1px solid var(--system-hr);width:100%;display:flex}._alerts_ita6j_1 button{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;height:45px;text-align:center;font-weight:600;background:#0000;border-radius:0;display:block;width:-webkit-fill-available;-webkit-animation:_menuItemAnimation_ita6j_1 .2s 0s both;animation:_menuItemAnimation_ita6j_1 .2s 0s both;font-family:Inter,sans-serif;border:0;cursor:pointer}._alerts_ita6j_1 button[color=blue]{color:#1b6ac0}._alerts_ita6j_1 button[color=red]{color:#c21c0d}._alerts_ita6j_1 button:hover{background:var(--system-hover)}._alerts_ita6j_1 ._--body_ita6j_103{position:fixed;top:0;bottom:0;left:0;right:0}._allert_ita6j_111 ._--form_ita6j_111{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;padding:20px;border-bottom:1px solid var(--system-hr)}._al_ita6j_1{display:flex;color:#fff;font-weight:700;height:40px;align-items:center}._al_ita6j_1 svg{fill:#fff;width:25px;height:25px;margin:0 15px}._al_ita6j_1[active=success]{background:#4caf51}._al_ita6j_1[active=error]{background:#f44336}._al_ita6j_1[active=remark]{background:#ff9800}._al_ita6j_1[active=none],._al_ita6j_1[active="0"]{display:none}._al_ita6j_1[active="1"]{background:#ff9800}._al_ita6j_1[active="2"]{background:#f44336}._al_ita6j_1[active="3"]{background:#4caf51}._al_ita6j_1[active="4"]{background:#abb6d2}._al_ita6j_1[active="5"]{background:#506290}._al_ita6j_1 button{height:30px;line-height:30px;padding:0 20px;font-weight:400;margin-left:20px;background:#e6e6e6}:root{--primary-light: #8abdff;--primary: #6d5dfc;--primary-dark: #5b0eeb;--white: #fff;--greyLight-1: #e4ebf5;--greyLight-2: #abb6d2;--greyLight-3: #bec8e4;--greyDark: #9baacf;--inset: inset 2px 2px 2px var(--shadow), inset -1px -1px 1px var(--shade)}._white_1g9i9_14{--modal-background-color: #e4ebf5;--modal-background-image: unset;--modal-color: #1f253d;--modal-exit: #1f253d;--shadow: #abb6d2;--shade: #fff;--disabled: #9baacf;--text: #394264;--tinge: #3f51b50a;--inset: inset 2px 2px 2px var(--shadow), inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px var(--shadow), -1px -1px 1px var(--shade)}._black_1g9i9_28{--modal-background-color: #506290;--modal-background-image: unset;--modal-color: #fff;--modal-exit: #fff;--shadow: #1f253d;--shade: #394264;--disabled: #29314c;--text: #abb6d2;--tinge: #00000026;--inset: inset 1px 1px 1px #394264, inset -1px -1px 1px #39426470;--outset: 1px 1px 1px #394264, -1px -1px 1px #39426470}[shake=true]{-webkit-animation-name:_shake_1g9i9_1;animation-name:_shake_1g9i9_1;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@keyframes _shake_1g9i9_1{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}[data-color-bg=fff1d6]{--inset: inset 1px 1px 1px #c9c1ac, inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px #c9c1ac, -1px -1px 1px var(--shade)}[data-color-bg=ffd9d9]{--inset: inset 1px 1px 1px #cdb0b1, inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px #cdb0b1, -1px -1px 1px var(--shade)}[data-color-bg=daffe5]{--inset: inset 1px 1px 1px #b6d2be, inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px #b6d2be, -1px -1px 1px var(--shade)}._modal_1g9i9_77{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10;display:flex}._o_1g9i9_87{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#000000b8}._w_1g9i9_14{box-shadow:5px 7px 18px #000000a8;background-image:var(--modal-background-image);background-color:var(--modal-background-color);position:relative;min-width:300px;margin:auto;border-radius:10px;width:400px;max-height:90%;display:flex;flex-flow:column nowrap;overflow:hidden}._h_1g9i9_112{flex:1;font-size:15px;line-height:35px;font-weight:700;text-align:left;color:var(--modal-color);padding:10px 15px 5px 30px;user-select:none;-webkit-user-select:none;display:flex;z-index:1}._l_1g9i9_126{border-radius:10px;font-size:15px;box-shadow:var(--inset);color:var(--modal-color);margin:10px;overflow:hidden;overflow-y:scroll;padding:5px 0}._l_1g9i9_126 li{display:flex;margin:0 5px;padding:10px;position:relative}._l_1g9i9_126 li:after{content:"";border-bottom:1px solid #ddd;position:absolute;bottom:0;left:5px;right:5px}._l_1g9i9_126 li:last-child{border-bottom:0}._l_1g9i9_126 li:hover{background:#00000012;cursor:pointer;border-radius:5px}._t_1g9i9_164{padding-right:10px}._m_1g9i9_77{flex:1}._x_1g9i9_172{cursor:pointer;color:var(--modal-exit);opacity:.5;display:flex}._x_1g9i9_172 svg{width:20px}._s_1g9i9_182{flex:1;overflow-y:scroll}._c_1g9i9_187{text-align:center;margin:20px}._f_1g9i9_192{padding:0 20px;display:flex;flex-direction:column}._f_1g9i9_192 dd{margin:0;background:var(--tinge);color:var(--color);box-shadow:var(--inset);border-radius:5px;min-height:33px;padding:7px 10px;flex:1 1}._f_1g9i9_192 p{margin:auto;width:300px;padding:20px 0 5px;color:#1f253dc7;font-size:15px}._f_1g9i9_192._row_1g9i9_214 dl{margin:7px 0;flex:1 1;flex-direction:row;display:flex}._f_1g9i9_192._row_1g9i9_214 dt{padding:7px 10px;color:var(--text);margin-left:7px;flex:0 1 150px}._f_1g9i9_192._col_1g9i9_226 dt{padding-bottom:8px;margin-left:7px}._x_1g9i9_172:hover{opacity:1}._g_1g9i9_235{display:flex;gap:10px;overflow:hidden}._c_1g9i9_187{margin:10px 7px 20px;opacity:.8;box-shadow:var(--outset);border-radius:10px;padding:20px;flex:1;text-align:center;cursor:pointer}._c_1g9i9_187:first-child{margin-left:20px}._c_1g9i9_187:last-child{margin-right:20px}._c_1g9i9_187:hover{opacity:1;background:var(--tinge)}._c_1g9i9_187 i{font-size:70px;margin-bottom:20px;text-align:center;display:block;color:var(--disabled)}._c_1g9i9_187 b{text-align:center;display:block;color:var(--color)}._c_1g9i9_187 p{text-align:center;font-size:15px;color:var(--text)}._modal_1g9i9_77._size-a_1g9i9_285 ._w_1g9i9_14{width:auto;margin:auto 20px}._modal_1g9i9_77._size-s_1g9i9_290 ._w_1g9i9_14{width:400px}._modal_1g9i9_77._size-m_1g9i9_294 ._w_1g9i9_14{width:500px}._modal_1g9i9_77._size-l_1g9i9_298 ._w_1g9i9_14{width:800px}._modal_1g9i9_77._size-x_1g9i9_302 ._w_1g9i9_14{width:1000px}._modal_1g9i9_77._size-f_1g9i9_306 ._w_1g9i9_14{width:100%;max-width:1200px;min-width:910px}._m_1g9i9_77 big{position:absolute;margin:10px auto 20px;border-radius:5px;box-shadow:var(--outset);display:flex;top:-1px;right:55px}._m_1g9i9_77 big i{width:30px;height:30px;text-align:center;margin:3px;line-height:30px;cursor:pointer;border-radius:5px}._m_1g9i9_77 big i:hover{box-shadow:var(--inset)}._m_1g9i9_77 nav{width:fit-content;height:35px;margin:0 auto;box-shadow:var(--outset);border-radius:5px;display:flex}._m_1g9i9_77 span{border-radius:3px;flex:1 1;margin:2px;padding:0 10px;line-height:35px;color:var(--disabled);cursor:pointer}._m_1g9i9_77 span._active_1g9i9_355{box-shadow:var(--inset);color:var(--color)}._coincidence_1g9i9_361{position:fixed;right:20px;bottom:20px;z-index:1111;overflow-y:scroll;max-height:565px;padding-top:90px}._coincidence_1g9i9_361 span{display:block;width:300px;border-radius:5px;overflow:hidden;cursor:pointer;margin:10px 0;padding:10px;color:#1f253d}._coincidence_1g9i9_361 dl{display:flex;padding:0;margin:5px}._coincidence_1g9i9_361 dd{font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0;margin:0 10px}._sa_1g9i9_397{width:auto}._ss_1g9i9_401{width:400px}._sm_1g9i9_405{width:500px}._sl_1g9i9_409{width:800px}._sx_1g9i9_413{width:1000px}._sf_1g9i9_417{width:100%;max-width:1200px;min-width:910px}._btn_1g9i9_423{margin:10px auto 20px}._btn_294gf_1{opacity:.7;padding:7px 25px;border-radius:5px;box-shadow:var(--outset);display:flex;justify-content:center;cursor:pointer;transition:.3s ease}._btn_294gf_1:hover{opacity:1}._confirm_294gf_15{background:var(--confirm-bg, #4caf50);color:var(--confirm-color, #fff)}._cancel_294gf_20{background:var(--cancel-bg, #f44336);color:var(--cancel-color, #fff)}._action_294gf_25{background:var(--action-bg, #4094f7);color:var(--action-color, #fff)}._disabled_294gf_30{background:var(--disabled-bg, #efefef);color:var(--disabled-color, #000);opacity:1;cursor:default}._await_294gf_37{background:var(--await-bg, #efefef);color:var(--await-color, #000);opacity:1;cursor:default}._m_294gf_44{min-width:200px}._l_294gf_48{flex:1}._h_1usnu_1{background:var(--content);margin-bottom:2px;border-radius:5px 5px 0 0;line-height:35px;align-items:center;display:flex;height:35px}._g_1usnu_11{display:flex;gap:5px}._hr_1usnu_16{text-align:center;position:absolute;display:flex;top:0;right:0;align-items:center;gap:6px;padding-right:4px;height:35px}._hl_1usnu_28{text-align:center;position:absolute;display:flex;top:0;left:0;align-items:center;gap:6px;padding-left:4px;height:35px}._t_1usnu_40{border-bottom:0;cursor:default;display:block;flex:1;margin-block-start:0;margin-block-end:0;margin-inline-start:0px;margin-inline-end:0px;font-size:14px!important;line-height:35px;font-weight:700;text-align:center;color:var(--label);position:absolute;left:0;right:0;height:35px}._s_1usnu_60{display:flex;flex:1;position:relative;overflow:hidden;border-radius:5px;flex-flow:column nowrap}._u_1usnu_69{overflow:hidden;border-radius:0 0 5px 5px;background:var(--content);display:block}._o_1usnu_76{overflow:hidden;position:relative;border-radius:5px;margin-top:5px;flex:1 1;background:var(--content)}._o_1usnu_76 ul{border-top:1px solid var(--separator);display:flex;flex-direction:column;gap:1px;background:var(--separator)}._o_1usnu_76 li{background:var(--content);display:flex}._o_1usnu_76 li[data-empty]:empty:before{content:attr(data-empty);display:block;color:#ccc;text-align:center;height:50px;line-height:50px;background:#fff}._l_1usnu_105{flex:1;overflow:hidden;overflow-y:scroll;border-radius:0 0 5px 5px}._l_1usnu_105:last-child{border-radius:0}._hh_1usnu_115{background:#fff;display:block;flex:1 1;font-size:14px;line-height:35px;font-weight:700;text-align:center;color:#1f253d;border-bottom:1px solid #ddd;position:relative}._c_1usnu_128{width:300px;height:150px;margin:auto;border-radius:5px;text-align:center;background:#0000004a;line-height:150px;color:#fff}[type=load]{display:block;text-align:center;height:50px;line-height:50px;background:#fff;border-radius:0 0 5px 5px}[type=load] i{display:inline-block;width:15px;height:15px;border-radius:15px;background-color:#e6ebf4;margin:0 5px}[type=load] i:nth-last-child(1){animation:_loadingB_1usnu_1 1.5s 1s infinite}[type=load] i:nth-last-child(2){animation:_loadingB_1usnu_1 1.5s .5s infinite}[type=load] i:nth-last-child(3){animation:_loadingB_1usnu_1 1.5s 0s infinite}@keyframes _loadingB_1usnu_1{0%{width:15px}50%{width:35px}to{width:15px}}._m_1usnu_180{-webkit-app-region:no-drag;overflow:hidden;border-radius:5px;margin-top:5px;background:#fff;display:block;min-height:35px;padding:10px;text-align:justify;white-space:pre-line}._m_1usnu_180 dd{min-height:35px}._ul_1usnu_196{overflow:hidden;border-radius:0;background:var(--separator);list-style-type:none;list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:1px}._ul_1usnu_196 li{display:flex;font-size:12px;min-height:25px;cursor:pointer;align-items:center;gap:1px}._ul_1usnu_196 span{background:var(--content);flex:1;height:25px;line-height:25px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._f_1usnu_226{border-top:1px solid var(--separator)}._f_1usnu_226 dl{display:flex;border-bottom:1px solid #ddd;margin:0}._f_1usnu_226 dt{flex:0 120px;font-size:13px;color:#999;margin:0;padding:6px 0 5px 9px}._f_1usnu_226 dd{flex:1;margin:0;border-left:1px solid #ddd;padding:5px;font-size:15px;min-height:17px;margin-inline-start:0px;overflow:hidden;overflow-x:scroll}._f_1usnu_226[edit] [edit=true]{color:red}menu{border-radius:5px;overflow:hidden;display:flex;flex-direction:column;background:var(--contex);grid-area:m}._payment_1lxfv_1{background:#f44336;height:42px;border-radius:5px;color:#fff;font-weight:700;line-height:42px;margin-top:8px;grid-area:p;text-align:center}._tabs_1i88v_1{border-bottom:1px solid #e5e9eb;display:flex;gap:20px;padding-top:16px;margin-bottom:16px}._tabs_1i88v_1 ._tab_1i88v_1{position:static;height:35px;display:flex;flex-direction:row;justify-content:flex-start;align-items:center;padding:0;cursor:pointer;border-bottom:2px solid;border-color:#0000;opacity:.6}._tabs_1i88v_1 ._tab_1i88v_1[active=true]{border-color:#000;opacity:1}._setting_dva4m_2{width:100%;overflow:auto}._setting_dva4m_2 nav{border:0px;padding:0 10px 5px;margin:25px auto;width:600px}._setting_dva4m_2 nav ul{display:flex;justify-content:space-between;gap:1px}._setting_dva4m_2 nav li{flex:1;text-align:center;background:var(--setting-bg);color:var(--setting-color);cursor:pointer;opacity:.7}._setting_dva4m_2 nav li[tabs-active=true]{opacity:1}._setting_dva4m_2 fieldset{border:0px;padding:0 10px 5px;margin:25px auto;width:600px}._setting_dva4m_2 legend{text-transform:uppercase;font-weight:300;font-size:1.3em}._setting_dva4m_2 ul{margin:10px 0;color:#000;border-radius:8px;overflow:hidden;list-style-type:none;padding:0}._setting_dva4m_2 li{font-size:20px;line-height:40px}._setting_dva4m_2 dl{display:flex;margin:0 0 1px;align-items:center;padding-right:9px;color:var(--setting-color);background:var(--setting-bg)}._setting_dva4m_2 dd{text-align:right;padding-left:15px;position:relative;display:flex;justify-content:center}._setting_dva4m_2 dt{flex:1;padding:0 15px}._setting_dva4m_2 article{padding-left:15px;color:var(--setting-bg);font-weight:100;font-size:14px}._setting_dva4m_2 legend{color:var(--setting-bg);display:flex;justify-content:space-between;width:100%}._setting_dva4m_2 svg{fill:var(--setting-color);width:15px;margin-left:10px}._setting_dva4m_2 [data-close]{cursor:pointer;width:10px;height:10px;border-top:3px solid var(--setting-color);border-left:3px solid var(--setting-color);position:absolute;right:10px;top:3px;-webkit-transform:translate(0,-50%) rotate(45deg);-ms-transform:translate(0,-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}._setting_dva4m_2 [data-close=false]{right:10px;top:0;-webkit-transform:translate(0,-50%) rotate(-135deg);-ms-transform:translate(0,-50%) rotate(-135deg);transform:translateY(-50%) rotate(-135deg)}._setting_dva4m_2 [data-item=accordion]>div{margin-top:1px;background-color:var(--setting-bg)}._setting_dva4m_2 [role=button]{font-size:13px;border-radius:5px;text-align:center;width:100px;line-height:30px;padding:0;cursor:pointer}._setting_dva4m_2 [role=button]:hover{background:var(--setting-action)}._setting_dva4m_2 [role=button-outline]{font-size:14px;border:1px solid;padding:3px 13px;border-radius:6px;cursor:pointer;text-transform:none}._setting_dva4m_2 [role=button-outline]:hover{background:#00000038}._setting_dva4m_2 [role=switch]{cursor:pointer;position:relative;width:44px;height:22px;border-radius:50px;vertical-align:text-bottom;transition:all .3s linear;margin:0}._setting_dva4m_2 [role=switch]:after{content:"";position:absolute;left:4px;width:16px;height:16px;background-color:#fff;border-radius:50%;box-shadow:0 2px 2px #0000003d;transform:translate3d(0,3px,0);transition:all .2s ease-in-out}._setting_dva4m_2 [role=switch]:before{content:"";position:absolute;left:0;width:42px;height:22px;background-color:#ddd;border-radius:11px;transition:all .25s linear}._setting_dva4m_2 [role=switch][aria-checked=true]{background-color:#1f253d}._setting_dva4m_2 [role=switch][aria-checked=true]:before{transform:translate3d(18px,2px,0) scale3d(0,0,0)}._setting_dva4m_2 [role=switch][aria-checked=true]:after{transform:translate3d(19px,3px,0)}._i_it11s_1{display:block;background:currentColor;-webkit-mask-position:center center;mask-position:center center}._sort_1yrvt_1{text-align:center;position:absolute;top:0;right:0}._sort_1yrvt_1 i{flex:0 1 35px;text-align:center;font-size:16px;line-height:35px;cursor:pointer;width:30px;display:inline-block}._s_18bde_1{flex:1;overflow:scroll}._s_18bde_1 [data-load]{display:block;text-align:center;height:50px;line-height:50px;background:#fff;border-radius:0 0 5px 5px}._s_18bde_1 [data-load] i{display:inline-block;width:15px;height:15px;border-radius:15px;background-color:#e6ebf4;margin:0 5px}._s_18bde_1 [data-load] i:nth-last-child(1){animation:_loadingB_18bde_1 1.5s 1s infinite}._s_18bde_1 [data-load] i:nth-last-child(2){animation:_loadingB_18bde_1 1.5s .5s infinite}._s_18bde_1 [data-load] i:nth-last-child(3){animation:_loadingB_18bde_1 1.5s 0s infinite}._ul_18bde_31{overflow:hidden;border-radius:0 0 5px 5px;background:var(--separator);display:block;list-style-type:none;list-style:none;padding:0;margin:0}._ul_18bde_31 [data-empty]:empty:before{content:attr(data-empty);display:block;color:#ccc;text-align:center;height:50px;line-height:50px;background:#fff}@keyframes _loadingB_18bde_1{0%{width:15px}50%{width:35px}to{width:15px}}._o_76l23_1{position:fixed;z-index:98;top:0;left:0;right:0;bottom:0;background:#0000}._c_76l23_11{box-shadow:5px 7px 18px #000000a8;padding:10px;margin:0;display:block;position:absolute;background:var(--bg-select);z-index:99;border-radius:10px;overflow:hidden;max-height:315px;color:#fff}._c_76l23_11 [grid-calendar]{display:grid;grid-template-columns:35px 35px 35px 35px 35px 35px 35px}._c_76l23_11 [grid-month]{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;width:250px}._c_76l23_11 b{font-weight:400;display:block;padding:8px 5px;border-radius:5px;cursor:pointer;text-align:center}._c_76l23_11 b.__active_76l23_41{background:var(--bg-select-active)}._c_76l23_11 b:hover{background:var(--bg-select-hover)}._c_76l23_11 p{color:var(--color-placeholder);text-align:center;padding:0;cursor:default;pointer-events:none}._c_76l23_11 i{flex:0 30px;padding:9px;text-align:center;cursor:pointer;border-radius:5px}._c_76l23_11 i:hover{background:var(--bg-select-hover)}._c_76l23_11 i:before{cursor:pointer;display:block}._c_76l23_11 s{display:flex;font-style:normal;text-decoration:none;padding-bottom:5px;align-items:center}._c_76l23_11 s h2{flex:1 1;padding:0;margin:0;font-size:18px;text-align:center;font-weight:400;line-height:35px;color:#fff;cursor:default}._c_76l23_11 span{padding:2px;text-align:center}._c_76l23_11 span p{padding:8px 5px;color:var(--color-placeholder)}._c_76l23_11 ._as_76l23_94{cursor:ns-resize}._c_76l23_11 ._ap_76l23_97{cursor:pointer}[field=password] dd{white-space:nowrap;font-style:unset;-webkit-text-security:disc;user-select:none;-webkit-user-select:text}[field=password][show] dd{-webkit-text-security:none}[field=password] dd:before{-webkit-text-security:none}[field=code] div{display:flex;gap:8px}[field=select] dd{cursor:pointer}[field] dd:before{pointer-events:none}[field=check] dd{max-width:35px;padding:0;cursor:pointer}[field=check] [active]:after{content:"";background:#394264;width:15px;height:15px;display:block;border-radius:5px}[field=file] input{display:none}[field=file] dd{aspect-ratio:16/9;position:relative;cursor:pointer}[field=file] img{aspect-ratio:16/9;display:block;width:-webkit-fill-available;object-fit:contain;cursor:pointer}[field=file] label{aspect-ratio:16/9;display:block;width:-webkit-fill-available;object-fit:contain;position:absolute;cursor:pointer}[field=color] dd{display:flex;border:0;padding:0;gap:3px}[field=color] dd s{border:1px solid #dde2e4;border-radius:6px;flex:1;cursor:pointer;opacity:.6}[field=color] dd s:hover{opacity:.9}[field=color] dd s[active=true]{opacity:1}[contenteditable]{text-wrap:nowrap;overflow:hidden;overflow-x:scroll}._spinner_o487n_1{fill:var(--spunner-color, #fff);display:block;width:70px;height:70px;margin:70px auto;animation:_spinner_o487n_1 1.5s infinite linear;border-radius:50%}@-webkit-keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}._l_o487n_75{display:block;text-align:center;height:50px;line-height:50px;background:#fff;border-radius:0 0 5px 5px}._l_o487n_75 i{display:inline-block;width:15px;height:15px;border-radius:15px;background-color:var(--spunner-color, #fff);margin:0 5px}._l_o487n_75 i:nth-last-child(1){animation:_loadingB_o487n_1 1.5s 1s infinite}._l_o487n_75 i:nth-last-child(2){animation:_loadingB_o487n_1 1.5s .5s infinite}._l_o487n_75 i:nth-last-child(3){animation:_loadingB_o487n_1 1.5s 0s infinite}@keyframes _loadingB_o487n_1{0%{width:15px}50%{width:35px}to{width:15px}}._ph_1wjxu_1{display:flex;margin-top:10px}._ph_1wjxu_1 ._e_1wjxu_5{flex:1}._ph_1wjxu_1 h2{padding-bottom:20px;color:var(--menu-color)}._s_t9swc_1{flex:0 0 200px;cursor:text;text-align:left;line-height:30px;max-width:200px;overflow:hidden;white-space:nowrap;outline:none;height:30px;padding:0 5px 0 10px;color:#fff;margin-top:10px;margin-left:5px;background:#0000004d;border:1px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:inset 0 -5px 45px #64646433,0 1px 1px #fff3}._s_t9swc_1:empty:before{content:attr(placeholder);display:block;color:#ccc}._f_q3r0i_1{flex:0 0 50px;position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer}._f_q3r0i_1 svg{width:30px;height:30px;color:#fff}._f_q3r0i_1 i{width:15px;height:15px;color:#fff;position:absolute;background:red;border-radius:50%;font-style:normal;top:5px;right:0;display:flex;align-items:center;justify-content:center;padding:10px}._n_euuvm_1{flex:0 0 50px;cursor:pointer;color:#fff;border-right:1px solid #000;display:flex;justify-content:center;align-items:center}._n_euuvm_1 svg{width:30px;height:30px;color:#fff}._p_djnh1_1{background:#fff;display:none;height:35px;line-height:35px;margin-top:2px;display:flex}._p_djnh1_1 span{flex:1 1;display:flex;text-align:center;cursor:pointer;color:#999;font-style:normal}._p_djnh1_1 span[active]{color:#000}._p_djnh1_1 i{cursor:pointer;flex:0 1 40px;align-items:center;display:flex;fill:#999;justify-content:center}._p_djnh1_1 i:hover{fill:#000}._p_djnh1_1 i:first-child{transform:rotate(180deg)}._p_djnh1_1 svg{width:20px}._l_djnh1_38{flex:1;overflow:scroll}
|
|
1
|
+
@charset "UTF-8";._notice_13j98_2{position:absolute;top:var(--notice-top);left:var(--notice-left);right:var(--notice-right);bottom:var(--notice-bottom);z-index:1111;font-family:var(--notice-family)}._notice_13j98_2 ._error_13j98_11{color:var(--notice-error, #bb2014)}._notice_13j98_2 ._success_13j98_14{color:var(--notice-success, #367738)}._notice_13j98_2 ._remark_13j98_17{color:var(--notice-remark, #b77513)}._notice_13j98_2 ._copy_13j98_20{color:var(--notice-copy, #3f51b5)}._notice_13j98_2 li{-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);display:block;width:300px;height:70px;border-radius:var(--notice-radius, 5px);box-shadow:0 0 0 1px var(--system-border),0 2px 2px #00000008,0 4px 4px #0000000a,0 10px 8px #0000000d,0 15px 15px #0000000f,0 30px 30px #00000012,0 70px 65px #00000017;background:var(--system-bg);overflow:hidden;cursor:pointer;margin:10px 0;transition:all 3s ease 0s;opacity:0}._notice_13j98_2 svg{float:left;width:50px;height:50px;margin:10px;font-size:40px;line-height:51px;text-align:center}._notice_13j98_2 b{width:222px;font-size:17px;font-weight:700;position:absolute;left:70px;display:block;margin-top:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._notice_13j98_2 p{color:var(--system-color);font-size:14px;width:222px;position:absolute;left:70px;display:block;margin-top:37px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._notice_13j98_2 [data-status=show]{opacity:1;transition:1s;animation:_show-notice_13j98_1 1s 1;animation-fill-mode:forwards}._notice_13j98_2 [data-status=hide]{opacity:1;transition:1s;animation:_hide-notice_13j98_1 1s 1;animation-fill-mode:forwards}@keyframes _show-notice_13j98_1{0%{opacity:0}to{opacity:1}}@keyframes _hide-notice_13j98_1{0%{opacity:1}to{opacity:0}}._alerts_ita6j_1{position:fixed;top:0;bottom:0;left:0;right:0;color:var(--system-color);background:#0000009e;z-index:30;display:flex;flex:1;align-content:center;justify-content:center}._alerts_ita6j_1 dl{margin:auto;overflow:hidden;width:270px;height:auto;border-radius:12px;border:0;height:fit-content;z-index:1;background:var(--system-bg);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);-webkit-animation:_menuAnimation_ita6j_1 .4s 0s both;animation:_menuAnimation_ita6j_1 .4s 0s both;list-style:none;padding-top:20px;font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;box-shadow:0 0 0 1px var(--system-border),0 2px 2px #00000008,0 4px 4px #0000000a,0 10px 8px #0000000d,0 15px 15px #0000000f,0 30px 30px #00000012,0 70px 65px #00000017}._alerts_ita6j_1 dt{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;text-align:center;text-transform:capitalize;font-weight:600;line-height:22px;margin:0 0 5px;padding:0 20px}._alerts_ita6j_1 dd{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:13px;margin:0;text-align:center;line-height:16px;padding:0 20px 20px}._alerts_ita6j_1 ul{border-top:1px solid var(--system-hr);width:100%;display:flex}._alerts_ita6j_1 button{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;height:45px;text-align:center;font-weight:600;background:#0000;border-radius:0;display:block;width:-webkit-fill-available;-webkit-animation:_menuItemAnimation_ita6j_1 .2s 0s both;animation:_menuItemAnimation_ita6j_1 .2s 0s both;font-family:Inter,sans-serif;border:0;cursor:pointer}._alerts_ita6j_1 button[color=blue]{color:#1b6ac0}._alerts_ita6j_1 button[color=red]{color:#c21c0d}._alerts_ita6j_1 button:hover{background:var(--system-hover)}._alerts_ita6j_1 ._--body_ita6j_103{position:fixed;top:0;bottom:0;left:0;right:0}._allert_ita6j_111 ._--form_ita6j_111{font-family:-apple-system,BlinkMacSystemFont;-webkit-font-smoothing:antialiased;text-rendering:optimizelegibility;box-sizing:border-box;font-size:17px;padding:20px;border-bottom:1px solid var(--system-hr)}._al_ita6j_1{display:flex;color:#fff;font-weight:700;height:40px;align-items:center}._al_ita6j_1 svg{fill:#fff;width:25px;height:25px;margin:0 15px}._al_ita6j_1[active=success]{background:#4caf51}._al_ita6j_1[active=error]{background:#f44336}._al_ita6j_1[active=remark]{background:#ff9800}._al_ita6j_1[active=none],._al_ita6j_1[active="0"]{display:none}._al_ita6j_1[active="1"]{background:#ff9800}._al_ita6j_1[active="2"]{background:#f44336}._al_ita6j_1[active="3"]{background:#4caf51}._al_ita6j_1[active="4"]{background:#abb6d2}._al_ita6j_1[active="5"]{background:#506290}._al_ita6j_1 button{height:30px;line-height:30px;padding:0 20px;font-weight:400;margin-left:20px;background:#e6e6e6}:root{--primary-light: #8abdff;--primary: #6d5dfc;--primary-dark: #5b0eeb;--white: #fff;--greyLight-1: #e4ebf5;--greyLight-2: #abb6d2;--greyLight-3: #bec8e4;--greyDark: #9baacf;--inset: inset 2px 2px 2px var(--shadow), inset -1px -1px 1px var(--shade)}._white_1g9i9_14{--modal-background-color: #e4ebf5;--modal-background-image: unset;--modal-color: #1f253d;--modal-exit: #1f253d;--shadow: #abb6d2;--shade: #fff;--disabled: #9baacf;--text: #394264;--tinge: #3f51b50a;--inset: inset 2px 2px 2px var(--shadow), inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px var(--shadow), -1px -1px 1px var(--shade)}._black_1g9i9_28{--modal-background-color: #506290;--modal-background-image: unset;--modal-color: #fff;--modal-exit: #fff;--shadow: #1f253d;--shade: #394264;--disabled: #29314c;--text: #abb6d2;--tinge: #00000026;--inset: inset 1px 1px 1px #394264, inset -1px -1px 1px #39426470;--outset: 1px 1px 1px #394264, -1px -1px 1px #39426470}[shake=true]{-webkit-animation-name:_shake_1g9i9_1;animation-name:_shake_1g9i9_1;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@keyframes _shake_1g9i9_1{0%,to{transform:translateZ(0)}10%,30%,50%,70%,90%{transform:translate3d(-10px,0,0)}20%,40%,60%,80%{transform:translate3d(10px,0,0)}}[data-color-bg=fff1d6]{--inset: inset 1px 1px 1px #c9c1ac, inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px #c9c1ac, -1px -1px 1px var(--shade)}[data-color-bg=ffd9d9]{--inset: inset 1px 1px 1px #cdb0b1, inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px #cdb0b1, -1px -1px 1px var(--shade)}[data-color-bg=daffe5]{--inset: inset 1px 1px 1px #b6d2be, inset -1px -1px 1px var(--shade);--outset: 2px 2px 2px #b6d2be, -1px -1px 1px var(--shade)}._modal_1g9i9_77{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10;display:flex}._o_1g9i9_87{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#000000b8}._w_1g9i9_14{box-shadow:5px 7px 18px #000000a8;background-image:var(--modal-background-image);background-color:var(--modal-background-color);position:relative;min-width:300px;margin:auto;border-radius:10px;width:400px;max-height:90%;display:flex;flex-flow:column nowrap;overflow:hidden}._h_1g9i9_112{flex:1;font-size:15px;line-height:35px;font-weight:700;text-align:left;color:var(--modal-color);padding:10px 15px 5px 30px;user-select:none;-webkit-user-select:none;display:flex;z-index:1}._l_1g9i9_126{border-radius:10px;font-size:15px;box-shadow:var(--inset);color:var(--modal-color);margin:10px;overflow:hidden;overflow-y:scroll;padding:5px 0}._l_1g9i9_126 li{display:flex;margin:0 5px;padding:10px;position:relative}._l_1g9i9_126 li:after{content:"";border-bottom:1px solid #ddd;position:absolute;bottom:0;left:5px;right:5px}._l_1g9i9_126 li:last-child{border-bottom:0}._l_1g9i9_126 li:hover{background:#00000012;cursor:pointer;border-radius:5px}._t_1g9i9_164{padding-right:10px}._m_1g9i9_77{flex:1}._x_1g9i9_172{cursor:pointer;color:var(--modal-exit);opacity:.5;display:flex}._x_1g9i9_172 svg{width:20px}._s_1g9i9_182{flex:1;overflow-y:scroll}._c_1g9i9_187{text-align:center;margin:20px}._f_1g9i9_192{padding:0 20px;display:flex;flex-direction:column}._f_1g9i9_192 dd{margin:0;background:var(--tinge);color:var(--color);box-shadow:var(--inset);border-radius:5px;min-height:33px;padding:7px 10px;flex:1 1}._f_1g9i9_192 p{margin:auto;width:300px;padding:20px 0 5px;color:#1f253dc7;font-size:15px}._f_1g9i9_192._row_1g9i9_214 dl{margin:7px 0;flex:1 1;flex-direction:row;display:flex}._f_1g9i9_192._row_1g9i9_214 dt{padding:7px 10px;color:var(--text);margin-left:7px;flex:0 1 150px}._f_1g9i9_192._col_1g9i9_226 dt{padding-bottom:8px;margin-left:7px}._x_1g9i9_172:hover{opacity:1}._g_1g9i9_235{display:flex;gap:10px;overflow:hidden}._c_1g9i9_187{margin:10px 7px 20px;opacity:.8;box-shadow:var(--outset);border-radius:10px;padding:20px;flex:1;text-align:center;cursor:pointer}._c_1g9i9_187:first-child{margin-left:20px}._c_1g9i9_187:last-child{margin-right:20px}._c_1g9i9_187:hover{opacity:1;background:var(--tinge)}._c_1g9i9_187 i{font-size:70px;margin-bottom:20px;text-align:center;display:block;color:var(--disabled)}._c_1g9i9_187 b{text-align:center;display:block;color:var(--color)}._c_1g9i9_187 p{text-align:center;font-size:15px;color:var(--text)}._modal_1g9i9_77._size-a_1g9i9_285 ._w_1g9i9_14{width:auto;margin:auto 20px}._modal_1g9i9_77._size-s_1g9i9_290 ._w_1g9i9_14{width:400px}._modal_1g9i9_77._size-m_1g9i9_294 ._w_1g9i9_14{width:500px}._modal_1g9i9_77._size-l_1g9i9_298 ._w_1g9i9_14{width:800px}._modal_1g9i9_77._size-x_1g9i9_302 ._w_1g9i9_14{width:1000px}._modal_1g9i9_77._size-f_1g9i9_306 ._w_1g9i9_14{width:100%;max-width:1200px;min-width:910px}._m_1g9i9_77 big{position:absolute;margin:10px auto 20px;border-radius:5px;box-shadow:var(--outset);display:flex;top:-1px;right:55px}._m_1g9i9_77 big i{width:30px;height:30px;text-align:center;margin:3px;line-height:30px;cursor:pointer;border-radius:5px}._m_1g9i9_77 big i:hover{box-shadow:var(--inset)}._m_1g9i9_77 nav{width:fit-content;height:35px;margin:0 auto;box-shadow:var(--outset);border-radius:5px;display:flex}._m_1g9i9_77 span{border-radius:3px;flex:1 1;margin:2px;padding:0 10px;line-height:35px;color:var(--disabled);cursor:pointer}._m_1g9i9_77 span._active_1g9i9_355{box-shadow:var(--inset);color:var(--color)}._coincidence_1g9i9_361{position:fixed;right:20px;bottom:20px;z-index:1111;overflow-y:scroll;max-height:565px;padding-top:90px}._coincidence_1g9i9_361 span{display:block;width:300px;border-radius:5px;overflow:hidden;cursor:pointer;margin:10px 0;padding:10px;color:#1f253d}._coincidence_1g9i9_361 dl{display:flex;padding:0;margin:5px}._coincidence_1g9i9_361 dd{font-weight:700;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:0;margin:0 10px}._sa_1g9i9_397{width:auto}._ss_1g9i9_401{width:400px}._sm_1g9i9_405{width:500px}._sl_1g9i9_409{width:800px}._sx_1g9i9_413{width:1000px}._sf_1g9i9_417{width:100%;max-width:1200px;min-width:910px}._btn_1g9i9_423{margin:10px auto 20px}._h_1usnu_1{background:var(--content);margin-bottom:2px;border-radius:5px 5px 0 0;line-height:35px;align-items:center;display:flex;height:35px}._g_1usnu_11{display:flex;gap:5px}._hr_1usnu_16{text-align:center;position:absolute;display:flex;top:0;right:0;align-items:center;gap:6px;padding-right:4px;height:35px}._hl_1usnu_28{text-align:center;position:absolute;display:flex;top:0;left:0;align-items:center;gap:6px;padding-left:4px;height:35px}._t_1usnu_40{border-bottom:0;cursor:default;display:block;flex:1;margin-block-start:0;margin-block-end:0;margin-inline-start:0px;margin-inline-end:0px;font-size:14px!important;line-height:35px;font-weight:700;text-align:center;color:var(--label);position:absolute;left:0;right:0;height:35px}._s_1usnu_60{display:flex;flex:1;position:relative;overflow:hidden;border-radius:5px;flex-flow:column nowrap}._u_1usnu_69{overflow:hidden;border-radius:0 0 5px 5px;background:var(--content);display:block}._o_1usnu_76{overflow:hidden;position:relative;border-radius:5px;margin-top:5px;flex:1 1;background:var(--content)}._o_1usnu_76 ul{border-top:1px solid var(--separator);display:flex;flex-direction:column;gap:1px;background:var(--separator)}._o_1usnu_76 li{background:var(--content);display:flex}._o_1usnu_76 li[data-empty]:empty:before{content:attr(data-empty);display:block;color:#ccc;text-align:center;height:50px;line-height:50px;background:#fff}._l_1usnu_105{flex:1;overflow:hidden;overflow-y:scroll;border-radius:0 0 5px 5px}._l_1usnu_105:last-child{border-radius:0}._hh_1usnu_115{background:#fff;display:block;flex:1 1;font-size:14px;line-height:35px;font-weight:700;text-align:center;color:#1f253d;border-bottom:1px solid #ddd;position:relative}._c_1usnu_128{width:300px;height:150px;margin:auto;border-radius:5px;text-align:center;background:#0000004a;line-height:150px;color:#fff}[type=load]{display:block;text-align:center;height:50px;line-height:50px;background:#fff;border-radius:0 0 5px 5px}[type=load] i{display:inline-block;width:15px;height:15px;border-radius:15px;background-color:#e6ebf4;margin:0 5px}[type=load] i:nth-last-child(1){animation:_loadingB_1usnu_1 1.5s 1s infinite}[type=load] i:nth-last-child(2){animation:_loadingB_1usnu_1 1.5s .5s infinite}[type=load] i:nth-last-child(3){animation:_loadingB_1usnu_1 1.5s 0s infinite}@keyframes _loadingB_1usnu_1{0%{width:15px}50%{width:35px}to{width:15px}}._m_1usnu_180{-webkit-app-region:no-drag;overflow:hidden;border-radius:5px;margin-top:5px;background:#fff;display:block;min-height:35px;padding:10px;text-align:justify;white-space:pre-line}._m_1usnu_180 dd{min-height:35px}._ul_1usnu_196{overflow:hidden;border-radius:0;background:var(--separator);list-style-type:none;list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:1px}._ul_1usnu_196 li{display:flex;font-size:12px;min-height:25px;cursor:pointer;align-items:center;gap:1px}._ul_1usnu_196 span{background:var(--content);flex:1;height:25px;line-height:25px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._f_1usnu_226{border-top:1px solid var(--separator)}._f_1usnu_226 dl{display:flex;border-bottom:1px solid #ddd;margin:0}._f_1usnu_226 dt{flex:0 120px;font-size:13px;color:#999;margin:0;padding:6px 0 5px 9px}._f_1usnu_226 dd{flex:1;margin:0;border-left:1px solid #ddd;padding:5px;font-size:15px;min-height:17px;margin-inline-start:0px;overflow:hidden;overflow-x:scroll}._f_1usnu_226[edit] [edit=true]{color:red}menu{border-radius:5px;overflow:hidden;display:flex;flex-direction:column;background:var(--contex);grid-area:m}._payment_1lxfv_1{background:#f44336;height:42px;border-radius:5px;color:#fff;font-weight:700;line-height:42px;margin-top:8px;grid-area:p;text-align:center}._btn_294gf_1{opacity:.7;padding:7px 25px;border-radius:5px;box-shadow:var(--outset);display:flex;justify-content:center;cursor:pointer;transition:.3s ease}._btn_294gf_1:hover{opacity:1}._confirm_294gf_15{background:var(--confirm-bg, #4caf50);color:var(--confirm-color, #fff)}._cancel_294gf_20{background:var(--cancel-bg, #f44336);color:var(--cancel-color, #fff)}._action_294gf_25{background:var(--action-bg, #4094f7);color:var(--action-color, #fff)}._disabled_294gf_30{background:var(--disabled-bg, #efefef);color:var(--disabled-color, #000);opacity:1;cursor:default}._await_294gf_37{background:var(--await-bg, #efefef);color:var(--await-color, #000);opacity:1;cursor:default}._m_294gf_44{min-width:200px}._l_294gf_48{flex:1}._tabs_1i88v_1{border-bottom:1px solid #e5e9eb;display:flex;gap:20px;padding-top:16px;margin-bottom:16px}._tabs_1i88v_1 ._tab_1i88v_1{position:static;height:35px;display:flex;flex-direction:row;justify-content:flex-start;align-items:center;padding:0;cursor:pointer;border-bottom:2px solid;border-color:#0000;opacity:.6}._tabs_1i88v_1 ._tab_1i88v_1[active=true]{border-color:#000;opacity:1}._setting_dva4m_2{width:100%;overflow:auto}._setting_dva4m_2 nav{border:0px;padding:0 10px 5px;margin:25px auto;width:600px}._setting_dva4m_2 nav ul{display:flex;justify-content:space-between;gap:1px}._setting_dva4m_2 nav li{flex:1;text-align:center;background:var(--setting-bg);color:var(--setting-color);cursor:pointer;opacity:.7}._setting_dva4m_2 nav li[tabs-active=true]{opacity:1}._setting_dva4m_2 fieldset{border:0px;padding:0 10px 5px;margin:25px auto;width:600px}._setting_dva4m_2 legend{text-transform:uppercase;font-weight:300;font-size:1.3em}._setting_dva4m_2 ul{margin:10px 0;color:#000;border-radius:8px;overflow:hidden;list-style-type:none;padding:0}._setting_dva4m_2 li{font-size:20px;line-height:40px}._setting_dva4m_2 dl{display:flex;margin:0 0 1px;align-items:center;padding-right:9px;color:var(--setting-color);background:var(--setting-bg)}._setting_dva4m_2 dd{text-align:right;padding-left:15px;position:relative;display:flex;justify-content:center}._setting_dva4m_2 dt{flex:1;padding:0 15px}._setting_dva4m_2 article{padding-left:15px;color:var(--setting-bg);font-weight:100;font-size:14px}._setting_dva4m_2 legend{color:var(--setting-bg);display:flex;justify-content:space-between;width:100%}._setting_dva4m_2 svg{fill:var(--setting-color);width:15px;margin-left:10px}._setting_dva4m_2 [data-close]{cursor:pointer;width:10px;height:10px;border-top:3px solid var(--setting-color);border-left:3px solid var(--setting-color);position:absolute;right:10px;top:3px;-webkit-transform:translate(0,-50%) rotate(45deg);-ms-transform:translate(0,-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}._setting_dva4m_2 [data-close=false]{right:10px;top:0;-webkit-transform:translate(0,-50%) rotate(-135deg);-ms-transform:translate(0,-50%) rotate(-135deg);transform:translateY(-50%) rotate(-135deg)}._setting_dva4m_2 [data-item=accordion]>div{margin-top:1px;background-color:var(--setting-bg)}._setting_dva4m_2 [role=button]{font-size:13px;border-radius:5px;text-align:center;width:100px;line-height:30px;padding:0;cursor:pointer}._setting_dva4m_2 [role=button]:hover{background:var(--setting-action)}._setting_dva4m_2 [role=button-outline]{font-size:14px;border:1px solid;padding:3px 13px;border-radius:6px;cursor:pointer;text-transform:none}._setting_dva4m_2 [role=button-outline]:hover{background:#00000038}._setting_dva4m_2 [role=switch]{cursor:pointer;position:relative;width:44px;height:22px;border-radius:50px;vertical-align:text-bottom;transition:all .3s linear;margin:0}._setting_dva4m_2 [role=switch]:after{content:"";position:absolute;left:4px;width:16px;height:16px;background-color:#fff;border-radius:50%;box-shadow:0 2px 2px #0000003d;transform:translate3d(0,3px,0);transition:all .2s ease-in-out}._setting_dva4m_2 [role=switch]:before{content:"";position:absolute;left:0;width:42px;height:22px;background-color:#ddd;border-radius:11px;transition:all .25s linear}._setting_dva4m_2 [role=switch][aria-checked=true]{background-color:#1f253d}._setting_dva4m_2 [role=switch][aria-checked=true]:before{transform:translate3d(18px,2px,0) scale3d(0,0,0)}._setting_dva4m_2 [role=switch][aria-checked=true]:after{transform:translate3d(19px,3px,0)}._i_it11s_1{display:block;background:currentColor;-webkit-mask-position:center center;mask-position:center center}._sort_1yrvt_1{text-align:center;position:absolute;top:0;right:0}._sort_1yrvt_1 i{flex:0 1 35px;text-align:center;font-size:16px;line-height:35px;cursor:pointer;width:30px;display:inline-block}._s_18bde_1{flex:1;overflow:scroll}._s_18bde_1 [data-load]{display:block;text-align:center;height:50px;line-height:50px;background:#fff;border-radius:0 0 5px 5px}._s_18bde_1 [data-load] i{display:inline-block;width:15px;height:15px;border-radius:15px;background-color:#e6ebf4;margin:0 5px}._s_18bde_1 [data-load] i:nth-last-child(1){animation:_loadingB_18bde_1 1.5s 1s infinite}._s_18bde_1 [data-load] i:nth-last-child(2){animation:_loadingB_18bde_1 1.5s .5s infinite}._s_18bde_1 [data-load] i:nth-last-child(3){animation:_loadingB_18bde_1 1.5s 0s infinite}._ul_18bde_31{overflow:hidden;border-radius:0 0 5px 5px;background:var(--separator);display:block;list-style-type:none;list-style:none;padding:0;margin:0}._ul_18bde_31 [data-empty]:empty:before{content:attr(data-empty);display:block;color:#ccc;text-align:center;height:50px;line-height:50px;background:#fff}@keyframes _loadingB_18bde_1{0%{width:15px}50%{width:35px}to{width:15px}}._o_76l23_1{position:fixed;z-index:98;top:0;left:0;right:0;bottom:0;background:#0000}._c_76l23_11{box-shadow:5px 7px 18px #000000a8;padding:10px;margin:0;display:block;position:absolute;background:var(--bg-select);z-index:99;border-radius:10px;overflow:hidden;max-height:315px;color:#fff}._c_76l23_11 [grid-calendar]{display:grid;grid-template-columns:35px 35px 35px 35px 35px 35px 35px}._c_76l23_11 [grid-month]{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;width:250px}._c_76l23_11 b{font-weight:400;display:block;padding:8px 5px;border-radius:5px;cursor:pointer;text-align:center}._c_76l23_11 b.__active_76l23_41{background:var(--bg-select-active)}._c_76l23_11 b:hover{background:var(--bg-select-hover)}._c_76l23_11 p{color:var(--color-placeholder);text-align:center;padding:0;cursor:default;pointer-events:none}._c_76l23_11 i{flex:0 30px;padding:9px;text-align:center;cursor:pointer;border-radius:5px}._c_76l23_11 i:hover{background:var(--bg-select-hover)}._c_76l23_11 i:before{cursor:pointer;display:block}._c_76l23_11 s{display:flex;font-style:normal;text-decoration:none;padding-bottom:5px;align-items:center}._c_76l23_11 s h2{flex:1 1;padding:0;margin:0;font-size:18px;text-align:center;font-weight:400;line-height:35px;color:#fff;cursor:default}._c_76l23_11 span{padding:2px;text-align:center}._c_76l23_11 span p{padding:8px 5px;color:var(--color-placeholder)}._c_76l23_11 ._as_76l23_94{cursor:ns-resize}._c_76l23_11 ._ap_76l23_97{cursor:pointer}[field=password] dd{white-space:nowrap;font-style:unset;-webkit-text-security:disc;user-select:none;-webkit-user-select:text}[field=password][show] dd{-webkit-text-security:none}[field=password] dd:before{-webkit-text-security:none}[field=code] div{display:flex;gap:8px}[field=select] dd{cursor:pointer}[field] dd:before{pointer-events:none}[field=check] dd{max-width:35px;padding:0;cursor:pointer}[field=check] [active]:after{content:"";background:#394264;width:15px;height:15px;display:block;border-radius:5px}[field=file] input{display:none}[field=file] dd{aspect-ratio:16/9;position:relative;cursor:pointer}[field=file] img{aspect-ratio:16/9;display:block;width:-webkit-fill-available;object-fit:contain;cursor:pointer}[field=file] label{aspect-ratio:16/9;display:block;width:-webkit-fill-available;object-fit:contain;position:absolute;cursor:pointer}[field=color] dd{display:flex;border:0;padding:0;gap:3px}[field=color] dd s{border:1px solid #dde2e4;border-radius:6px;flex:1;cursor:pointer;opacity:.6}[field=color] dd s:hover{opacity:.9}[field=color] dd s[active=true]{opacity:1}[contenteditable]{text-wrap:nowrap;overflow:hidden;overflow-x:scroll}._spinner_o487n_1{fill:var(--spunner-color, #fff);display:block;width:70px;height:70px;margin:70px auto;animation:_spinner_o487n_1 1.5s infinite linear;border-radius:50%}@-webkit-keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes _spinner_o487n_1{0%{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}._l_o487n_75{display:block;text-align:center;height:50px;line-height:50px;background:#fff;border-radius:0 0 5px 5px}._l_o487n_75 i{display:inline-block;width:15px;height:15px;border-radius:15px;background-color:var(--spunner-color, #fff);margin:0 5px}._l_o487n_75 i:nth-last-child(1){animation:_loadingB_o487n_1 1.5s 1s infinite}._l_o487n_75 i:nth-last-child(2){animation:_loadingB_o487n_1 1.5s .5s infinite}._l_o487n_75 i:nth-last-child(3){animation:_loadingB_o487n_1 1.5s 0s infinite}@keyframes _loadingB_o487n_1{0%{width:15px}50%{width:35px}to{width:15px}}._ph_1wjxu_1{display:flex;margin-top:10px}._ph_1wjxu_1 ._e_1wjxu_5{flex:1}._ph_1wjxu_1 h2{padding-bottom:20px;color:var(--menu-color)}._s_t9swc_1{flex:0 0 200px;cursor:text;text-align:left;line-height:30px;max-width:200px;overflow:hidden;white-space:nowrap;outline:none;height:30px;padding:0 5px 0 10px;color:#fff;margin-top:10px;margin-left:5px;background:#0000004d;border:1px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:inset 0 -5px 45px #64646433,0 1px 1px #fff3}._s_t9swc_1:empty:before{content:attr(placeholder);display:block;color:#ccc}._f_q3r0i_1{flex:0 0 50px;position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer}._f_q3r0i_1 svg{width:30px;height:30px;color:#fff}._f_q3r0i_1 i{width:15px;height:15px;color:#fff;position:absolute;background:red;border-radius:50%;font-style:normal;top:5px;right:0;display:flex;align-items:center;justify-content:center;padding:10px}._n_euuvm_1{flex:0 0 50px;cursor:pointer;color:#fff;border-right:1px solid #000;display:flex;justify-content:center;align-items:center}._n_euuvm_1 svg{width:30px;height:30px;color:#fff}._p_djnh1_1{background:#fff;display:none;height:35px;line-height:35px;margin-top:2px;display:flex}._p_djnh1_1 span{flex:1 1;display:flex;text-align:center;cursor:pointer;color:#999;font-style:normal}._p_djnh1_1 span[active]{color:#000}._p_djnh1_1 i{cursor:pointer;flex:0 1 40px;align-items:center;display:flex;fill:#999;justify-content:center}._p_djnh1_1 i:hover{fill:#000}._p_djnh1_1 i:first-child{transform:rotate(180deg)}._p_djnh1_1 svg{width:20px}._l_djnh1_38{flex:1;overflow:scroll}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
export { Api } from
|
|
2
|
-
export {
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export { default as
|
|
7
|
-
export { default as
|
|
8
|
-
export { default as
|
|
9
|
-
export { default as
|
|
10
|
-
export { default as
|
|
11
|
-
export { default as
|
|
12
|
-
export { default as
|
|
13
|
-
export { default as
|
|
14
|
-
export { default as
|
|
15
|
-
export { default as
|
|
16
|
-
export { default as Icon } from
|
|
17
|
-
export { default as Tooltip } from
|
|
18
|
-
export { default as Store } from
|
|
19
|
-
export { default as Router } from
|
|
20
|
-
export { default as Root } from
|
|
21
|
-
export { default as Lite } from
|
|
22
|
-
export { default as Triage } from
|
|
23
|
-
export { default as Format } from
|
|
24
|
-
export { default as Event } from
|
|
25
|
-
export { default as Events } from
|
|
26
|
-
export { default as Badge } from
|
|
27
|
-
export { default as DataBase } from
|
|
28
|
-
export { default as User } from
|
|
29
|
-
export { default as Sistym } from
|
|
30
|
-
export { default as HotKey } from
|
|
31
|
-
export { default as Scrolling } from
|
|
32
|
-
export { default as Files } from
|
|
33
|
-
export { default as Form } from
|
|
34
|
-
export { default as Input } from
|
|
35
|
-
export { default as Loading } from
|
|
36
|
-
export { default as Layout } from
|
|
37
|
-
export { default as Search } from
|
|
38
|
-
export { default as Filter } from
|
|
39
|
-
export { default as Notifications } from
|
|
40
|
-
export { default as Pagination } from
|
|
41
|
-
export { default as List } from
|
|
42
|
-
export { default as Lang } from
|
|
43
|
-
export { default as Company } from
|
|
44
|
-
export { default as WebRTC } from
|
|
45
|
-
export { default as Test } from
|
|
46
|
-
export { default as Phone } from
|
|
47
|
-
export { default as Switch } from
|
|
48
|
-
export * from
|
|
1
|
+
export { Api } from '@elcrm/api';
|
|
2
|
+
export { Socket } from '@elcrm/socket';
|
|
3
|
+
export { Notice } from './Notice';
|
|
4
|
+
export { Alert } from './Alert';
|
|
5
|
+
export { Modal } from './Modal';
|
|
6
|
+
export { default as Animation } from './Animation';
|
|
7
|
+
export { default as Init } from './Init/Init';
|
|
8
|
+
export { default as Browser } from './Browser/Browser';
|
|
9
|
+
export { default as Button } from './Button';
|
|
10
|
+
export { default as Tabs } from './Tabs';
|
|
11
|
+
export { default as Setting } from './Setting';
|
|
12
|
+
export { default as Action } from './Action';
|
|
13
|
+
export { default as Component } from './Component';
|
|
14
|
+
export { default as Chart } from './Chart';
|
|
15
|
+
export { default as Bookmarks } from './Bookmarks';
|
|
16
|
+
export { default as Icon } from './Icon';
|
|
17
|
+
export { default as Tooltip } from './Tooltip';
|
|
18
|
+
export { default as Store } from './Store';
|
|
19
|
+
export { default as Router } from './Router';
|
|
20
|
+
export { default as Root } from './Root';
|
|
21
|
+
export { default as Lite } from './Lite';
|
|
22
|
+
export { default as Triage } from './Triage';
|
|
23
|
+
export { default as Format } from './Format';
|
|
24
|
+
export { default as Event } from './Event';
|
|
25
|
+
export { default as Events } from './Event';
|
|
26
|
+
export { default as Badge } from './Badge';
|
|
27
|
+
export { default as DataBase } from './DataBase';
|
|
28
|
+
export { default as User } from './User';
|
|
29
|
+
export { default as Sistym } from './Sistym';
|
|
30
|
+
export { default as HotKey } from './HotKey';
|
|
31
|
+
export { default as Scrolling } from './Scrolling';
|
|
32
|
+
export { default as Files } from './Files';
|
|
33
|
+
export { default as Form } from './Form';
|
|
34
|
+
export { default as Input } from './Input';
|
|
35
|
+
export { default as Loading } from './Loading';
|
|
36
|
+
export { default as Layout } from './Layout';
|
|
37
|
+
export { default as Search } from './Search';
|
|
38
|
+
export { default as Filter } from './Filter';
|
|
39
|
+
export { default as Notifications } from './Notifications';
|
|
40
|
+
export { default as Pagination } from './Pagination';
|
|
41
|
+
export { default as List } from './List';
|
|
42
|
+
export { default as Lang } from './Lang';
|
|
43
|
+
export { default as Company } from './Company';
|
|
44
|
+
export { default as WebRTC } from './WebRTC/WebRTC';
|
|
45
|
+
export { default as Test } from './Test/Test';
|
|
46
|
+
export { default as Phone } from './Phone';
|
|
47
|
+
export { default as Switch } from './Switch';
|
|
48
|
+
export * from './Type';
|