@xiaou66/u-web-ui 0.0.82 → 0.0.83
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/components/TimeSelect/TimeSelect.vue.d.ts +191 -0
- package/dist/components/TimeSelect/TimeSelect.vue.d.ts.map +1 -0
- package/dist/components/TimeSelect/index.d.ts +5 -0
- package/dist/components/TimeSelect/index.d.ts.map +1 -0
- package/dist/components/TimeSelect/interface.d.ts +59 -0
- package/dist/components/TimeSelect/interface.d.ts.map +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.es.js +291 -26
- package/dist/u-web-ui.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
import { nextTick, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, VNodeProps, AllowedComponentProps, ComponentCustomProps, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
|
|
2
|
+
import { TimeSelectProps } from './interface';
|
|
3
|
+
import { ThumbProps, ScrollbarComponentProps } from '..';
|
|
4
|
+
import { OnCleanup } from '@vue/reactivity';
|
|
5
|
+
type __VLS_Props = TimeSelectProps;
|
|
6
|
+
type __VLS_PublicProps = {
|
|
7
|
+
'modelValue'?: string;
|
|
8
|
+
} & __VLS_Props;
|
|
9
|
+
declare const _default: DefineComponent<__VLS_PublicProps, {
|
|
10
|
+
focus: () => void;
|
|
11
|
+
blur: () => void;
|
|
12
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
13
|
+
blur: (event: FocusEvent) => any;
|
|
14
|
+
change: (value: string) => any;
|
|
15
|
+
focus: (event: FocusEvent) => any;
|
|
16
|
+
clear: () => any;
|
|
17
|
+
"update:modelValue": (...args: unknown[]) => any;
|
|
18
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
19
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
20
|
+
onChange?: ((value: string) => any) | undefined;
|
|
21
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
22
|
+
onClear?: (() => any) | undefined;
|
|
23
|
+
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
size: "small" | "default" | "large";
|
|
26
|
+
end: string;
|
|
27
|
+
disabled: boolean;
|
|
28
|
+
placeholder: string;
|
|
29
|
+
step: string;
|
|
30
|
+
start: string;
|
|
31
|
+
editable: boolean;
|
|
32
|
+
clearable: boolean;
|
|
33
|
+
includeEndTime: boolean;
|
|
34
|
+
prefixIcon: string;
|
|
35
|
+
clearIcon: string;
|
|
36
|
+
format: string;
|
|
37
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
38
|
+
hourRef: HTMLDivElement;
|
|
39
|
+
minuteRef: HTMLDivElement;
|
|
40
|
+
timeSelectRef: HTMLDivElement;
|
|
41
|
+
scrollbarRef: ({
|
|
42
|
+
$: ComponentInternalInstance;
|
|
43
|
+
$data: {};
|
|
44
|
+
$props: {
|
|
45
|
+
readonly type?: "track" | "embed" | undefined;
|
|
46
|
+
readonly size?: "default" | "small" | undefined;
|
|
47
|
+
readonly outerClass?: any;
|
|
48
|
+
readonly outerStyle?: StyleValue;
|
|
49
|
+
readonly hide?: boolean | undefined;
|
|
50
|
+
readonly disableHorizontal?: boolean | undefined;
|
|
51
|
+
readonly disableVertical?: boolean | undefined;
|
|
52
|
+
readonly onScroll?: ((ev: Event) => any) | undefined;
|
|
53
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
54
|
+
$attrs: {
|
|
55
|
+
[x: string]: unknown;
|
|
56
|
+
};
|
|
57
|
+
$refs: {
|
|
58
|
+
[x: string]: unknown;
|
|
59
|
+
} & {
|
|
60
|
+
containerRef: HTMLDivElement;
|
|
61
|
+
horizontalThumbRef: CreateComponentPublicInstanceWithMixins<Readonly< ThumbProps> & Readonly<{
|
|
62
|
+
onScroll?: ((offset: number) => any) | undefined;
|
|
63
|
+
}>, {
|
|
64
|
+
setOffset: (_offset: number) => void;
|
|
65
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
66
|
+
scroll: (offset: number) => any;
|
|
67
|
+
}, PublicProps, {
|
|
68
|
+
size: "default" | "small";
|
|
69
|
+
both: boolean;
|
|
70
|
+
direction: "horizontal" | "vertical";
|
|
71
|
+
alwaysShow: boolean;
|
|
72
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
73
|
+
trackRef: HTMLDivElement;
|
|
74
|
+
thumbRef: HTMLDivElement;
|
|
75
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
76
|
+
P: {};
|
|
77
|
+
B: {};
|
|
78
|
+
D: {};
|
|
79
|
+
C: {};
|
|
80
|
+
M: {};
|
|
81
|
+
Defaults: {};
|
|
82
|
+
}, Readonly< ThumbProps> & Readonly<{
|
|
83
|
+
onScroll?: ((offset: number) => any) | undefined;
|
|
84
|
+
}>, {
|
|
85
|
+
setOffset: (_offset: number) => void;
|
|
86
|
+
}, {}, {}, {}, {
|
|
87
|
+
size: "default" | "small";
|
|
88
|
+
both: boolean;
|
|
89
|
+
direction: "horizontal" | "vertical";
|
|
90
|
+
alwaysShow: boolean;
|
|
91
|
+
}> | null;
|
|
92
|
+
verticalThumbRef: CreateComponentPublicInstanceWithMixins<Readonly< ThumbProps> & Readonly<{
|
|
93
|
+
onScroll?: ((offset: number) => any) | undefined;
|
|
94
|
+
}>, {
|
|
95
|
+
setOffset: (_offset: number) => void;
|
|
96
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
97
|
+
scroll: (offset: number) => any;
|
|
98
|
+
}, PublicProps, {
|
|
99
|
+
size: "default" | "small";
|
|
100
|
+
both: boolean;
|
|
101
|
+
direction: "horizontal" | "vertical";
|
|
102
|
+
alwaysShow: boolean;
|
|
103
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
104
|
+
trackRef: HTMLDivElement;
|
|
105
|
+
thumbRef: HTMLDivElement;
|
|
106
|
+
}, HTMLDivElement, ComponentProvideOptions, {
|
|
107
|
+
P: {};
|
|
108
|
+
B: {};
|
|
109
|
+
D: {};
|
|
110
|
+
C: {};
|
|
111
|
+
M: {};
|
|
112
|
+
Defaults: {};
|
|
113
|
+
}, Readonly< ThumbProps> & Readonly<{
|
|
114
|
+
onScroll?: ((offset: number) => any) | undefined;
|
|
115
|
+
}>, {
|
|
116
|
+
setOffset: (_offset: number) => void;
|
|
117
|
+
}, {}, {}, {}, {
|
|
118
|
+
size: "default" | "small";
|
|
119
|
+
both: boolean;
|
|
120
|
+
direction: "horizontal" | "vertical";
|
|
121
|
+
alwaysShow: boolean;
|
|
122
|
+
}> | null;
|
|
123
|
+
};
|
|
124
|
+
$slots: Readonly<{
|
|
125
|
+
[name: string]: Slot<any> | undefined;
|
|
126
|
+
}>;
|
|
127
|
+
$root: ComponentPublicInstance | null;
|
|
128
|
+
$parent: ComponentPublicInstance | null;
|
|
129
|
+
$host: Element | null;
|
|
130
|
+
$emit: (event: "scroll", ev: Event) => void;
|
|
131
|
+
$el: HTMLDivElement;
|
|
132
|
+
$options: ComponentOptionsBase<Readonly< ScrollbarComponentProps> & Readonly<{
|
|
133
|
+
onScroll?: ((ev: Event) => any) | undefined;
|
|
134
|
+
}>, {
|
|
135
|
+
scrollTo: (options?: number | {
|
|
136
|
+
left?: number;
|
|
137
|
+
top?: number;
|
|
138
|
+
}, y?: number) => void;
|
|
139
|
+
scrollTop: (top: number) => void;
|
|
140
|
+
scrollLeft: (left: number) => void;
|
|
141
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
142
|
+
scroll: (ev: Event) => any;
|
|
143
|
+
}, string, {
|
|
144
|
+
size: "default" | "small";
|
|
145
|
+
type: "track" | "embed";
|
|
146
|
+
hide: boolean;
|
|
147
|
+
disableHorizontal: boolean;
|
|
148
|
+
disableVertical: boolean;
|
|
149
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
150
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
151
|
+
created?: (() => void) | (() => void)[];
|
|
152
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
153
|
+
mounted?: (() => void) | (() => void)[];
|
|
154
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
155
|
+
updated?: (() => void) | (() => void)[];
|
|
156
|
+
activated?: (() => void) | (() => void)[];
|
|
157
|
+
deactivated?: (() => void) | (() => void)[];
|
|
158
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
159
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
160
|
+
destroyed?: (() => void) | (() => void)[];
|
|
161
|
+
unmounted?: (() => void) | (() => void)[];
|
|
162
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
163
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
164
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
165
|
+
};
|
|
166
|
+
$forceUpdate: () => void;
|
|
167
|
+
$nextTick: typeof nextTick;
|
|
168
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
169
|
+
} & Readonly<{
|
|
170
|
+
size: "default" | "small";
|
|
171
|
+
type: "track" | "embed";
|
|
172
|
+
hide: boolean;
|
|
173
|
+
disableHorizontal: boolean;
|
|
174
|
+
disableVertical: boolean;
|
|
175
|
+
}> & Omit<Readonly< ScrollbarComponentProps> & Readonly<{
|
|
176
|
+
onScroll?: ((ev: Event) => any) | undefined;
|
|
177
|
+
}>, "scrollTo" | "scrollTop" | "scrollLeft" | ("size" | "type" | "hide" | "disableHorizontal" | "disableVertical")> & ShallowUnwrapRef<{
|
|
178
|
+
scrollTo: (options?: number | {
|
|
179
|
+
left?: number;
|
|
180
|
+
top?: number;
|
|
181
|
+
}, y?: number) => void;
|
|
182
|
+
scrollTop: (top: number) => void;
|
|
183
|
+
scrollLeft: (left: number) => void;
|
|
184
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
185
|
+
$slots: {
|
|
186
|
+
default?(_: {}): any;
|
|
187
|
+
};
|
|
188
|
+
}) | null;
|
|
189
|
+
}, any>;
|
|
190
|
+
export default _default;
|
|
191
|
+
//# sourceMappingURL=TimeSelect.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TimeSelect.vue.d.ts","sourceRoot":"","sources":["../../../src/components/TimeSelect/TimeSelect.vue"],"names":[],"mappings":";;AAofA,OAAO,EAAiB,QAAQ,EAAE,MAAM,KAAK,CAAA;AAC7C,OAAO,KAAK,EAAE,eAAe,EAAqC,MAAM,aAAa,CAAA;AAUrF,KAAK,WAAW,GAAG,eAAe,CAAC;AAganC,KAAK,iBAAiB,GAAG;IACzB,YAAY,CAAC,EAAE,MAAM,CAAC;CACrB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BA7ahB,CApaE;oBAoaF,CApasB;mBAoatB,CAnaE;gBAmaF,CAnaiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA85Bf,GAAG,8CACO,GAAE,yBACb,GACD,6DAAmC,GAAG;;;;;;;;;;0BA9ftC,CApaE;gBAoaF,CApasB;eAoatB,CAnaE;YAmaF,CAnaiB;;;;;;;;;AA0hCjB,wBAUG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/TimeSelect/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,CAAA;AACjB,OAAO,UAAU,MAAM,kBAAkB,CAAA;AACzC,cAAc,aAAa,CAAA;AAC3B,OAAO,EAAE,UAAU,EAAE,CAAA;AACrB,eAAe,UAAU,CAAA"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
export interface TimeSelectProps {
|
|
2
|
+
/** 禁用状态 */
|
|
3
|
+
disabled?: boolean;
|
|
4
|
+
/** 文本框可输入 */
|
|
5
|
+
editable?: boolean;
|
|
6
|
+
/** 是否显示清除按钮 */
|
|
7
|
+
clearable?: boolean;
|
|
8
|
+
/** 是否在选项中包含end */
|
|
9
|
+
includeEndTime?: boolean;
|
|
10
|
+
/** 输入框尺寸 */
|
|
11
|
+
size?: 'small' | 'default' | 'large';
|
|
12
|
+
/** 非范围选择时的占位内容 */
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
/** 原生属性 */
|
|
15
|
+
name?: string;
|
|
16
|
+
/** 自定义前缀图标 */
|
|
17
|
+
prefixIcon?: string;
|
|
18
|
+
/** 自定义清除图标 */
|
|
19
|
+
clearIcon?: string;
|
|
20
|
+
/** 开始时间 */
|
|
21
|
+
start?: string;
|
|
22
|
+
/** 结束时间 */
|
|
23
|
+
end?: string;
|
|
24
|
+
/** 间隔时间 */
|
|
25
|
+
step?: string;
|
|
26
|
+
/** 最早时间点,早于该时间的时间段将被禁用 */
|
|
27
|
+
minTime?: string;
|
|
28
|
+
/** 最晚时间点,晚于该时间的时间段将被禁用 */
|
|
29
|
+
maxTime?: string;
|
|
30
|
+
/** 设置时间格式 */
|
|
31
|
+
format?: string;
|
|
32
|
+
/** 组件的空值配置 */
|
|
33
|
+
emptyValues?: any[];
|
|
34
|
+
/** 清空选项的值 */
|
|
35
|
+
valueOnClear?: string | number | boolean | Function;
|
|
36
|
+
/**
|
|
37
|
+
* 是否有边框
|
|
38
|
+
*/
|
|
39
|
+
border?: boolean;
|
|
40
|
+
}
|
|
41
|
+
export interface TimeSelectEmits {
|
|
42
|
+
/** v-model 更新事件 */
|
|
43
|
+
'update:modelValue': [value: string];
|
|
44
|
+
/** 用户确认选定的值时触发 */
|
|
45
|
+
change: [value: string];
|
|
46
|
+
/** 在组件 Input 失去焦点时触发 */
|
|
47
|
+
blur: [event: FocusEvent];
|
|
48
|
+
/** 在组件 Input 获得焦点时触发 */
|
|
49
|
+
focus: [event: FocusEvent];
|
|
50
|
+
/** 可清空的单选模式下用户点击清空按钮时触发 */
|
|
51
|
+
clear: [];
|
|
52
|
+
}
|
|
53
|
+
export interface TimeSelectExpose {
|
|
54
|
+
/** 使 input 获取焦点 */
|
|
55
|
+
focus: () => void;
|
|
56
|
+
/** 使 input 失去焦点 */
|
|
57
|
+
blur: () => void;
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../src/components/TimeSelect/interface.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,WAAW;IACX,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,eAAe;IACf,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,kBAAkB;IAClB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,YAAY;IACZ,IAAI,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,OAAO,CAAA;IACpC,kBAAkB;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,cAAc;IACd,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,cAAc;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,WAAW;IACX,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW;IACX,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,WAAW;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,0BAA0B;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,0BAA0B;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,aAAa;IACb,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,cAAc;IACd,WAAW,CAAC,EAAE,GAAG,EAAE,CAAA;IACnB,aAAa;IACb,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,eAAe;IAC9B,mBAAmB;IACnB,mBAAmB,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;IACpC,kBAAkB;IAClB,MAAM,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;IACvB,wBAAwB;IACxB,IAAI,EAAE,CAAC,KAAK,EAAE,UAAU,CAAC,CAAA;IACzB,wBAAwB;IACxB,KAAK,EAAE,CAAC,KAAK,EAAE,UAAU,CAAC,CAAA;IAC1B,2BAA2B;IAC3B,KAAK,EAAE,EAAE,CAAA;CACV;AAED,MAAM,WAAW,gBAAgB;IAC/B,mBAAmB;IACnB,KAAK,EAAE,MAAM,IAAI,CAAA;IACjB,mBAAmB;IACnB,IAAI,EAAE,MAAM,IAAI,CAAA;CACjB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,QAAQ,CAAA;AACtB,cAAc,cAAc,CAAA;AAC5B,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AACzB,cAAc,UAAU,CAAA;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC"}
|
package/dist/index.es.js
CHANGED
|
@@ -9,15 +9,15 @@ function X(...e) {
|
|
|
9
9
|
let t = e.join("-");
|
|
10
10
|
return (...e) => Y(t, ...e);
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function Z(e) {
|
|
13
13
|
return e.substring(0, 1).toUpperCase() + e.substring(1);
|
|
14
14
|
}
|
|
15
|
-
const
|
|
15
|
+
const oe = [
|
|
16
16
|
"Capture",
|
|
17
17
|
"Passive",
|
|
18
18
|
"Once"
|
|
19
|
-
],
|
|
20
|
-
function
|
|
19
|
+
], se = /* @__PURE__ */ RegExp(`^(${oe.join("|")})*$`);
|
|
20
|
+
function ce(...e) {
|
|
21
21
|
if (!e.length) return !1;
|
|
22
22
|
let t = p();
|
|
23
23
|
if (!t) return !1;
|
|
@@ -25,31 +25,31 @@ function le(...e) {
|
|
|
25
25
|
if (!r) return !1;
|
|
26
26
|
let i = r.props || {}, a = [...Object.keys(n).filter((e) => e.startsWith("on")), ...Object.keys(i).filter((e) => e.startsWith("on"))];
|
|
27
27
|
for (let t of e) {
|
|
28
|
-
let e = t.startsWith("on") ? t : `on${
|
|
28
|
+
let e = t.startsWith("on") ? t : `on${Z(t)}`;
|
|
29
29
|
if (a.includes(e)) return !0;
|
|
30
30
|
for (let t of a) if (t.startsWith(e)) {
|
|
31
31
|
let n = t.slice(e.length);
|
|
32
|
-
if (n &&
|
|
32
|
+
if (n && se.test(n)) return !0;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
return !1;
|
|
36
36
|
}
|
|
37
|
-
function
|
|
37
|
+
function le(e) {
|
|
38
38
|
return typeof e == "function";
|
|
39
39
|
}
|
|
40
|
-
function
|
|
40
|
+
function ue(e) {
|
|
41
41
|
return e === null;
|
|
42
42
|
}
|
|
43
|
-
function
|
|
43
|
+
function de(e) {
|
|
44
44
|
return e === void 0;
|
|
45
45
|
}
|
|
46
|
-
function
|
|
46
|
+
function fe(e) {
|
|
47
47
|
return typeof e == "number" && !isNaN(e);
|
|
48
48
|
}
|
|
49
|
-
function
|
|
49
|
+
function pe(e) {
|
|
50
50
|
return typeof e == "object" && !!e && !Array.isArray(e);
|
|
51
51
|
}
|
|
52
|
-
function
|
|
52
|
+
function me(e, t, n) {
|
|
53
53
|
e.addEventListener(t, n);
|
|
54
54
|
}
|
|
55
55
|
function he(e, t, n) {
|
|
@@ -760,7 +760,7 @@ var Le = /* @__PURE__ */ f({
|
|
|
760
760
|
let t = e, n = X("page-header"), i = r(() => {
|
|
761
761
|
let e = [n()];
|
|
762
762
|
return t.size !== "default" && e.push(n(t.size)), e;
|
|
763
|
-
}), c = r(() =>
|
|
763
|
+
}), c = r(() => ce("onBack"));
|
|
764
764
|
return (e, t) => {
|
|
765
765
|
let r = K, l = V, f = U;
|
|
766
766
|
return S(), o("div", { class: v(i.value) }, [s("div", { class: v(["flex items-center", N(n)("header")]) }, [
|
|
@@ -1024,7 +1024,7 @@ var ut = /* @__PURE__ */ f({
|
|
|
1024
1024
|
}, w = async (e) => {
|
|
1025
1025
|
if (x.value || h.value) return;
|
|
1026
1026
|
let t = !_.value, n = t ? c.checkedValue : c.uncheckedValue, r = c.beforeChange;
|
|
1027
|
-
if (
|
|
1027
|
+
if (le(r)) {
|
|
1028
1028
|
b.value = !0;
|
|
1029
1029
|
try {
|
|
1030
1030
|
let i = await r(n);
|
|
@@ -1039,7 +1039,7 @@ var ut = /* @__PURE__ */ f({
|
|
|
1039
1039
|
l("blur", e);
|
|
1040
1040
|
};
|
|
1041
1041
|
L(i, (e) => {
|
|
1042
|
-
(
|
|
1042
|
+
(de(e) || ue(e)) && (i.value = c.uncheckedValue);
|
|
1043
1043
|
});
|
|
1044
1044
|
let k = r(() => [
|
|
1045
1045
|
m,
|
|
@@ -1189,7 +1189,7 @@ var ut = /* @__PURE__ */ f({
|
|
|
1189
1189
|
[d.value.size]: `${i.data?.thumbSize ?? 0}px`,
|
|
1190
1190
|
[d.value.direction]: `${f.value}px`
|
|
1191
1191
|
})), g = (e) => {
|
|
1192
|
-
e.preventDefault(), u.value && (m.value = e[d.value.client] - u.value.getBoundingClientRect()[d.value.direction], p.value = !0,
|
|
1192
|
+
e.preventDefault(), u.value && (m.value = e[d.value.client] - u.value.getBoundingClientRect()[d.value.direction], p.value = !0, me(window, "mousemove", x), me(window, "mouseup", C), me(window, "contextmenu", C));
|
|
1193
1193
|
}, _ = (e) => {
|
|
1194
1194
|
if (e.preventDefault(), u.value) {
|
|
1195
1195
|
let t = b(e[d.value.client] > u.value.getBoundingClientRect()[d.value.direction] ? f.value + (i.data?.thumbSize ?? 0) : f.value - (i.data?.thumbSize ?? 0));
|
|
@@ -1315,7 +1315,7 @@ var ut = /* @__PURE__ */ f({
|
|
|
1315
1315
|
{ [`${u}-both`]: k.value },
|
|
1316
1316
|
c.outerClass
|
|
1317
1317
|
]), z = (e, t) => {
|
|
1318
|
-
|
|
1318
|
+
pe(e) ? f.value?.scrollTo(e) : (e || t) && f.value?.scrollTo(e, t);
|
|
1319
1319
|
}, B = (e) => {
|
|
1320
1320
|
f.value?.scrollTo({ top: e });
|
|
1321
1321
|
}, V = (e) => {
|
|
@@ -1444,14 +1444,279 @@ var _t = /* @__PURE__ */ f({
|
|
|
1444
1444
|
}, null, 4));
|
|
1445
1445
|
}
|
|
1446
1446
|
});
|
|
1447
|
-
|
|
1447
|
+
const vt = {
|
|
1448
|
+
key: 0,
|
|
1449
|
+
class: "time-select__prefix"
|
|
1450
|
+
}, yt = ["contenteditable"], bt = ["contenteditable"], xt = ["data-value", "onClick"];
|
|
1451
|
+
var St = /* @__PURE__ */ f({
|
|
1452
|
+
name: "TimeSelect",
|
|
1453
|
+
inheritAttrs: !1,
|
|
1454
|
+
__name: "TimeSelect",
|
|
1455
|
+
props: /* @__PURE__ */ h({
|
|
1456
|
+
disabled: {
|
|
1457
|
+
type: Boolean,
|
|
1458
|
+
default: !1
|
|
1459
|
+
},
|
|
1460
|
+
editable: {
|
|
1461
|
+
type: Boolean,
|
|
1462
|
+
default: !0
|
|
1463
|
+
},
|
|
1464
|
+
clearable: {
|
|
1465
|
+
type: Boolean,
|
|
1466
|
+
default: !0
|
|
1467
|
+
},
|
|
1468
|
+
includeEndTime: {
|
|
1469
|
+
type: Boolean,
|
|
1470
|
+
default: !1
|
|
1471
|
+
},
|
|
1472
|
+
size: { default: "default" },
|
|
1473
|
+
placeholder: { default: "选择时间" },
|
|
1474
|
+
name: {},
|
|
1475
|
+
prefixIcon: { default: "clock" },
|
|
1476
|
+
clearIcon: { default: "circle-close" },
|
|
1477
|
+
start: { default: "00:00" },
|
|
1478
|
+
end: { default: "23:30" },
|
|
1479
|
+
step: { default: "00:15" },
|
|
1480
|
+
minTime: {},
|
|
1481
|
+
maxTime: {},
|
|
1482
|
+
format: { default: "HH:mm" },
|
|
1483
|
+
emptyValues: {},
|
|
1484
|
+
valueOnClear: { type: [
|
|
1485
|
+
String,
|
|
1486
|
+
Number,
|
|
1487
|
+
Boolean,
|
|
1488
|
+
Function
|
|
1489
|
+
] },
|
|
1490
|
+
border: { type: Boolean }
|
|
1491
|
+
}, {
|
|
1492
|
+
modelValue: {},
|
|
1493
|
+
modelModifiers: {}
|
|
1494
|
+
}),
|
|
1495
|
+
emits: /* @__PURE__ */ h([
|
|
1496
|
+
"update:modelValue",
|
|
1497
|
+
"change",
|
|
1498
|
+
"blur",
|
|
1499
|
+
"focus",
|
|
1500
|
+
"clear"
|
|
1501
|
+
], ["update:modelValue"]),
|
|
1502
|
+
setup(t, { expose: i, emit: c }) {
|
|
1503
|
+
let l = t, u = c, f = T(), p = T(), m = T(!1), h = T(!1), g = T(), y = T(!1), b = T(null), x = T(), C = T(), w = r(() => {
|
|
1504
|
+
if (!O.value) return "--";
|
|
1505
|
+
let [e] = O.value.split(":");
|
|
1506
|
+
return e || "--";
|
|
1507
|
+
}), D = r(() => {
|
|
1508
|
+
if (!O.value) return "--";
|
|
1509
|
+
let [, e] = O.value.split(":");
|
|
1510
|
+
return e || "--";
|
|
1511
|
+
}), O = F(t, "modelValue"), k = r(() => l.clearable && !l.disabled && O.value && (h.value || m.value)), j = r(() => {
|
|
1512
|
+
let e = [], t = M(l.start), n = M(l.end), r = M(l.step);
|
|
1513
|
+
if (!t || !n || !r) return e;
|
|
1514
|
+
let i = t, a = n.hours * 60 + n.minutes;
|
|
1515
|
+
for (; i.hours * 60 + i.minutes <= a;) {
|
|
1516
|
+
let t = I(i);
|
|
1517
|
+
L(t) && e.push(t), i.minutes += r.minutes, i.hours += r.hours, i.minutes >= 60 && (i.hours += Math.floor(i.minutes / 60), i.minutes %= 60);
|
|
1518
|
+
}
|
|
1519
|
+
return l.includeEndTime && !e.includes(l.end) && L(l.end) && e.push(l.end), e;
|
|
1520
|
+
});
|
|
1521
|
+
function M(e) {
|
|
1522
|
+
let t = e.match(/^(\d{1,2}):(\d{2})$/);
|
|
1523
|
+
return t ? {
|
|
1524
|
+
hours: parseInt(t[1], 10),
|
|
1525
|
+
minutes: parseInt(t[2], 10)
|
|
1526
|
+
} : null;
|
|
1527
|
+
}
|
|
1528
|
+
function P(e = "") {
|
|
1529
|
+
let t = e.match(/^(\d{1,2}):(\d{1,2})$/);
|
|
1530
|
+
return t ? {
|
|
1531
|
+
hours: t[1],
|
|
1532
|
+
minutes: t[2]
|
|
1533
|
+
} : null;
|
|
1534
|
+
}
|
|
1535
|
+
function I(e) {
|
|
1536
|
+
if (!e) return "";
|
|
1537
|
+
let t = e.hours.toString().padStart(2, "0"), n = e.minutes.toString().padStart(2, "0");
|
|
1538
|
+
return `${t}:${n}`;
|
|
1539
|
+
}
|
|
1540
|
+
function L(e) {
|
|
1541
|
+
if (!l.minTime && !l.maxTime) return !0;
|
|
1542
|
+
let t = M(e);
|
|
1543
|
+
if (!t) return !1;
|
|
1544
|
+
let n = t.hours * 60 + t.minutes;
|
|
1545
|
+
if (l.minTime) {
|
|
1546
|
+
let e = M(l.minTime);
|
|
1547
|
+
if (e && n < e.hours * 60 + e.minutes) return !1;
|
|
1548
|
+
}
|
|
1549
|
+
if (l.maxTime) {
|
|
1550
|
+
let e = M(l.maxTime);
|
|
1551
|
+
if (e && n > e.hours * 60 + e.minutes) return !1;
|
|
1552
|
+
}
|
|
1553
|
+
return !0;
|
|
1554
|
+
}
|
|
1555
|
+
let B = () => {
|
|
1556
|
+
b.value = "hour", x.value?.focus();
|
|
1557
|
+
}, V = () => {
|
|
1558
|
+
b.value = "minute", C.value?.focus();
|
|
1559
|
+
}, H = () => {
|
|
1560
|
+
l.disabled || (m.value = !0, h.value = !0, b.value || B());
|
|
1561
|
+
}, U = (e) => {
|
|
1562
|
+
let t = e.target, n = t.textContent || "";
|
|
1563
|
+
n = n.replace(/\D/g, "");
|
|
1564
|
+
let r = parseInt(n);
|
|
1565
|
+
r > 23 && (n = "23"), t.textContent = n.padStart(2, "0"), G("hour", n);
|
|
1566
|
+
}, W = (e) => {
|
|
1567
|
+
let t = e.target, n = t.textContent || "";
|
|
1568
|
+
n = n.replace(/\D/g, "");
|
|
1569
|
+
let r = parseInt(n);
|
|
1570
|
+
r > 59 && (n = "59"), t.textContent = n.padStart(2, "0"), G("minute", n);
|
|
1571
|
+
}, G = (e, t) => {
|
|
1572
|
+
let n = O.value || "00:00", [r, i] = n.split(":"), a;
|
|
1573
|
+
if (a = e === "hour" ? `${t}:${i || "00"}` : `${r || "00"}:${t}`, O.value = a, u("change", a), f.value) {
|
|
1574
|
+
let e = Array.from(f.value.querySelectorAll(".time-select__option")), t = P(a), n = e.find((e) => {
|
|
1575
|
+
let n = e.getAttribute("data-value");
|
|
1576
|
+
return !!(n && t?.hours && n.split(":")[0] === t.hours.padStart(2, "0"));
|
|
1577
|
+
});
|
|
1578
|
+
g.value && n && g.value.scrollTop(n.offsetTop);
|
|
1579
|
+
}
|
|
1580
|
+
}, K = () => {
|
|
1581
|
+
b.value = "hour", h.value = !0;
|
|
1582
|
+
}, q = () => {
|
|
1583
|
+
b.value = null, h.value = !1, J();
|
|
1584
|
+
}, J = () => {
|
|
1585
|
+
console.log("autoFillTime", O.value), O.value = I(P(O.value || "")), console.log("autoFillTime", I(P(O.value || "")), P(O.value || ""));
|
|
1586
|
+
}, ee = () => {
|
|
1587
|
+
b.value = "minute", h.value = !0;
|
|
1588
|
+
}, te = () => {
|
|
1589
|
+
b.value = null, h.value = !1, J();
|
|
1590
|
+
}, ne = (e) => {
|
|
1591
|
+
if (e.key === "Tab") e.preventDefault(), V();
|
|
1592
|
+
else if (e.key === "ArrowRight") e.preventDefault(), V();
|
|
1593
|
+
else if (e.key === "Enter") e.preventDefault(), m.value = !m.value;
|
|
1594
|
+
else if (e.key >= "0" && e.key <= "9") {
|
|
1595
|
+
let e = P(O.value);
|
|
1596
|
+
console.log("timeStrObj?.hours.length", e?.hours.length), e?.hours.length === 2 && (O.value = `'':${e.minutes}`);
|
|
1597
|
+
}
|
|
1598
|
+
}, re = (e) => {
|
|
1599
|
+
if (e.key === "Tab") e.preventDefault(), B();
|
|
1600
|
+
else if (e.key === "ArrowLeft") e.preventDefault(), B();
|
|
1601
|
+
else if (e.key === "Enter") e.preventDefault(), m.value = !m.value;
|
|
1602
|
+
else if (e.key >= "0" && e.key <= "9") {
|
|
1603
|
+
let e = P(O.value);
|
|
1604
|
+
e?.minutes.length === 2 && (O.value = `${e.hours}:''`);
|
|
1605
|
+
}
|
|
1606
|
+
}, ie = () => {
|
|
1607
|
+
O.value = "00:00", u("change", ""), u("clear"), m.value = !1, _(() => {
|
|
1608
|
+
p.value?.focus(), setTimeout(() => {
|
|
1609
|
+
h.value && (m.value = !0);
|
|
1610
|
+
}, 50);
|
|
1611
|
+
});
|
|
1612
|
+
}, ae = (e) => {
|
|
1613
|
+
O.value = e, u("change", e), m.value = !1, y.value = !0, b.value = null, _(() => {
|
|
1614
|
+
p.value?.focus();
|
|
1615
|
+
});
|
|
1616
|
+
}, Y = () => {
|
|
1617
|
+
B();
|
|
1618
|
+
}, X = () => {
|
|
1619
|
+
x.value?.blur(), C.value?.blur(), b.value = null;
|
|
1620
|
+
}, Z = 0, oe = null, se = () => {
|
|
1621
|
+
Z++, m.value = !0;
|
|
1622
|
+
}, ce = () => {
|
|
1623
|
+
oe && clearTimeout(oe);
|
|
1624
|
+
let e = Z + 1;
|
|
1625
|
+
Z = e, oe = setTimeout(() => {
|
|
1626
|
+
e === Z && (m.value = !1);
|
|
1627
|
+
}, 100);
|
|
1628
|
+
};
|
|
1629
|
+
return i({
|
|
1630
|
+
focus: Y,
|
|
1631
|
+
blur: X
|
|
1632
|
+
}), (t, r) => (S(), o("div", { class: v(["time-select", {
|
|
1633
|
+
"time-select--disabled": l.disabled,
|
|
1634
|
+
"time-select--border": l.border
|
|
1635
|
+
}]) }, [s("div", {
|
|
1636
|
+
class: "time-select__input-wrapper",
|
|
1637
|
+
onFocusin: se,
|
|
1638
|
+
onFocusout: ce
|
|
1639
|
+
}, [
|
|
1640
|
+
l.prefixIcon ? (S(), o("div", vt, r[0] ||= [s("svg", {
|
|
1641
|
+
class: "time-select__icon",
|
|
1642
|
+
viewBox: "0 0 24 24",
|
|
1643
|
+
fill: "currentColor"
|
|
1644
|
+
}, [s("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z" })], -1)])) : a("", !0),
|
|
1645
|
+
s("div", {
|
|
1646
|
+
class: v(["time-select__input time-select__editable-container", {
|
|
1647
|
+
"time-select__input--small": l.size === "small",
|
|
1648
|
+
"time-select__input--large": l.size === "large",
|
|
1649
|
+
"time-select__input--disabled": l.disabled,
|
|
1650
|
+
"time-select__input--readonly": !l.editable
|
|
1651
|
+
}]),
|
|
1652
|
+
onClick: H
|
|
1653
|
+
}, [
|
|
1654
|
+
s("div", {
|
|
1655
|
+
ref_key: "hourRef",
|
|
1656
|
+
ref: x,
|
|
1657
|
+
class: v(["time-select__time-part time-select__hour", { "time-select__time-part--selected": b.value === "hour" }]),
|
|
1658
|
+
contenteditable: l.editable && !l.disabled,
|
|
1659
|
+
onInput: U,
|
|
1660
|
+
onFocus: K,
|
|
1661
|
+
onBlur: q,
|
|
1662
|
+
onKeydown: ne,
|
|
1663
|
+
onClick: z(B, ["stop"])
|
|
1664
|
+
}, A(w.value), 43, yt),
|
|
1665
|
+
r[1] ||= s("span", { class: "time-select__separator" }, ":", -1),
|
|
1666
|
+
s("div", {
|
|
1667
|
+
ref_key: "minuteRef",
|
|
1668
|
+
ref: C,
|
|
1669
|
+
class: v(["time-select__time-part time-select__minute", { "time-select__time-part--selected": b.value === "minute" }]),
|
|
1670
|
+
contenteditable: l.editable && !l.disabled,
|
|
1671
|
+
onInput: W,
|
|
1672
|
+
onFocus: ee,
|
|
1673
|
+
onBlur: te,
|
|
1674
|
+
onKeydown: re,
|
|
1675
|
+
onClick: z(V, ["stop"])
|
|
1676
|
+
}, A(D.value), 43, bt)
|
|
1677
|
+
], 2),
|
|
1678
|
+
k.value ? (S(), o("div", {
|
|
1679
|
+
key: 1,
|
|
1680
|
+
class: "time-select__clear",
|
|
1681
|
+
onMousedown: z(ie, ["prevent"]),
|
|
1682
|
+
onClick: z(ie, ["prevent"])
|
|
1683
|
+
}, r[2] ||= [s("svg", {
|
|
1684
|
+
class: "time-select__icon",
|
|
1685
|
+
viewBox: "0 0 24 24",
|
|
1686
|
+
fill: "currentColor"
|
|
1687
|
+
}, [s("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" })], -1)], 32)) : a("", !0)
|
|
1688
|
+
], 32), d(n, { name: "time-select-dropdown" }, {
|
|
1689
|
+
default: R(() => [m.value && !l.disabled ? (S(), o("div", {
|
|
1690
|
+
key: 0,
|
|
1691
|
+
class: "time-select__dropdown",
|
|
1692
|
+
ref_key: "timeSelectRef",
|
|
1693
|
+
ref: f
|
|
1694
|
+
}, [d(N(pt), {
|
|
1695
|
+
ref_key: "scrollbarRef",
|
|
1696
|
+
ref: g,
|
|
1697
|
+
size: l.size === "small" ? "small" : "default",
|
|
1698
|
+
class: "time-select__options"
|
|
1699
|
+
}, {
|
|
1700
|
+
default: R(() => [(S(!0), o(e, null, E(j.value, (e) => (S(), o("div", {
|
|
1701
|
+
key: e,
|
|
1702
|
+
class: v(["time-select__option", { "time-select__option--selected": e === I(P(O.value)) }]),
|
|
1703
|
+
"data-value": e,
|
|
1704
|
+
onClick: (t) => ae(e)
|
|
1705
|
+
}, A(e), 11, xt))), 128))]),
|
|
1706
|
+
_: 1
|
|
1707
|
+
}, 8, ["size"])], 512)) : a("", !0)]),
|
|
1708
|
+
_: 1
|
|
1709
|
+
})], 2));
|
|
1710
|
+
}
|
|
1711
|
+
});
|
|
1712
|
+
function Ct(e) {
|
|
1448
1713
|
return e instanceof Function && e.constructor.name === "AsyncFunction";
|
|
1449
1714
|
}
|
|
1450
|
-
const
|
|
1715
|
+
const wt = (e) => {
|
|
1451
1716
|
let t = T(!1), n = (...n) => (t.value = !0, new Promise((r, i) => {
|
|
1452
1717
|
setTimeout(async () => {
|
|
1453
1718
|
try {
|
|
1454
|
-
if (
|
|
1719
|
+
if (Ct(e)) return await e(...n);
|
|
1455
1720
|
r(e(...n));
|
|
1456
1721
|
} catch (e) {
|
|
1457
1722
|
console.log("useSingleLoading", e), i(e);
|
|
@@ -1461,12 +1726,12 @@ const yt = (e) => {
|
|
|
1461
1726
|
}, 50);
|
|
1462
1727
|
}));
|
|
1463
1728
|
return [n, t];
|
|
1464
|
-
},
|
|
1729
|
+
}, Tt = (e, t) => {
|
|
1465
1730
|
let n = T([]), i = async (...r) => {
|
|
1466
1731
|
let i = t(...r);
|
|
1467
1732
|
n.value.push(i);
|
|
1468
1733
|
try {
|
|
1469
|
-
return
|
|
1734
|
+
return Ct(e) ? await e(...r) : e(...r);
|
|
1470
1735
|
} catch (e) {
|
|
1471
1736
|
console.error("useLoading", e);
|
|
1472
1737
|
} finally {
|
|
@@ -1480,7 +1745,7 @@ const yt = (e) => {
|
|
|
1480
1745
|
n
|
|
1481
1746
|
];
|
|
1482
1747
|
}, Q = window.matchMedia("(prefers-color-scheme: dark)"), $ = T("default");
|
|
1483
|
-
function
|
|
1748
|
+
function Et(e) {
|
|
1484
1749
|
function t(t) {
|
|
1485
1750
|
if (e.getUserThemeConfig) {
|
|
1486
1751
|
let t = e.getUserThemeConfig();
|
|
@@ -1499,13 +1764,13 @@ function xt(e) {
|
|
|
1499
1764
|
}
|
|
1500
1765
|
return n(), console.log("mediaQueryList", Q), { themeRefresh: r };
|
|
1501
1766
|
}
|
|
1502
|
-
function
|
|
1767
|
+
function Dt(e) {
|
|
1503
1768
|
Q.dispatchEvent(new MediaQueryListEvent("change", {
|
|
1504
1769
|
matches: e === "dark",
|
|
1505
1770
|
media: "(prefers-color-scheme: dark)"
|
|
1506
1771
|
}));
|
|
1507
1772
|
}
|
|
1508
|
-
function
|
|
1773
|
+
function Ot() {
|
|
1509
1774
|
return $.value;
|
|
1510
1775
|
}
|
|
1511
|
-
export { ge as BackTop, Te as ContextMenu, Ce as ContextMenuDivider, Se as ContextMenuGroup, xe as ContextMenuItem, we as ContextMenuSubmenu, _t as LazyLoader, be as LeftMenu, ye as LeftMenuEventDispatch, ve as LeftMenuEvents, Re as PageHeader, nt as Result, pt as Scrollbar, at as SettingDivision, st as SettingGroup, it as SettingItem, De as SplitPanel, ct as SwitchEnable, ut as SwitchPlus, dt as SwitchPlusEnable, ft as Thumb, Oe as UtoolsBaseLayout, Le as UtoolsLayout, _e as WebBaseLayout, Ee as WebLayout, X as getBuildCurrentClassPrefix, Y as getClassPrefix,
|
|
1776
|
+
export { ge as BackTop, Te as ContextMenu, Ce as ContextMenuDivider, Se as ContextMenuGroup, xe as ContextMenuItem, we as ContextMenuSubmenu, _t as LazyLoader, be as LeftMenu, ye as LeftMenuEventDispatch, ve as LeftMenuEvents, Re as PageHeader, nt as Result, pt as Scrollbar, at as SettingDivision, st as SettingGroup, it as SettingItem, De as SplitPanel, ct as SwitchEnable, ut as SwitchPlus, dt as SwitchPlusEnable, ft as Thumb, St as TimeSelect, Oe as UtoolsBaseLayout, Le as UtoolsLayout, _e as WebBaseLayout, Ee as WebLayout, X as getBuildCurrentClassPrefix, Y as getClassPrefix, Ot as getCurrentTheme, ce as isEventExist, le as isFunction, ue as isNull, fe as isNumber, pe as isObject, de as isUndefined, he as off, me as on, Dt as setCurrentTheme, Tt as useMultiLoading, wt as useSingleLoading, Et as useTheme };
|
package/dist/u-web-ui.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
:root{--red-1:255,236,232;--red-2:253,205,197;--red-3:251,172,163;--red-4:249,137,129;--red-5:247,101,96;--red-6:245,63,63;--red-7:203,39,45;--red-8:161,21,30;--red-9:119,8,19;--red-10:77,0,10;--gray-1:247,248,250;--gray-2:242,243,245;--gray-3:229,230,235;--gray-4:201,205,212;--gray-5:169,174,184;--gray-6:134,144,156;--gray-7:107,119,133;--gray-8:78,89,105;--gray-9:39,46,59;--gray-10:29,33,41;--green-1:232,255,234;--green-2:175,240,181;--green-3:123,225,136;--green-4:76,210,99;--green-5:35,195,67;--green-6:0,180,42;--green-7:0,154,41;--green-8:0,128,38;--green-9:0,102,34;--green-10:0,77,28;--blue-1:0,26,77;--blue-2:5,47,120;--blue-3:19,76,163;--blue-4:41,113,207;--blue-5:70,153,250;--blue-6:90,170,251;--blue-7:125,193,252;--blue-8:161,213,253;--blue-9:198,232,254;--blue-10:234,248,255;--u-bg-color:#f4f4f4;--u-bg-color-2:#fafbfb;--u-bg-color-3:#fff;--u-bg-color-3-hover:rgb(var(--gray-3),.5);--u-bg-color-3-active:rgb(var(--gray-3),.8);--u-blue-7:13,66,210;--u-blue-6:22,93,255;--u-blue-5:64,128,255;--u-wechat-color:#2ba471;--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:var(--color-neutral-1);--u-color-fill-2:var(--color-neutral-2);--u-color-fill-3:var(--color-neutral-3);--u-color-fill-4:var(--color-neutral-4);--u-shadow-sm:#0000001a 0px 1px 2px 0px;--u-shadow-lg:0 6px 16px 0 #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;--u-radius-small:4px;--u-radius-default:6px;--u-radius-medium:8px;--u-radius-large:10px;--u-radius-circle:50%;--u-text-color:var(--td-font-gray-1);--u-text-color-tips:#8a939f;--u-text-color-3:#86909c;--u-text-color-hover:#0052d9;--u-text-color-primary:var(--td-font-gray-1);--u-text-color-secondary:var(--td-font-gray-2);--u-text-color-placeholder:var(--td-font-gray-3);--u-text-color-disabled:var(--td-font-gray-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-7);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6));--td-bg-color-component:rgb(var(--gray-2));--td-bg-color-specialcomponent:rgb(var(--gray-2))}html[theme-mode=dark]{--red-1:77,0,10;--red-2:119,6,17;--red-3:161,22,31;--red-4:203,46,52;--red-5:245,78,78;--red-6:247,105,101;--red-7:249,141,134;--red-8:251,176,167;--red-9:253,209,202;--red-10:255,240,236;--gray-1:23,23,26;--gray-2:46,46,48;--gray-3:72,72,73;--gray-4:95,95,96;--gray-5:120,120,122;--gray-6:146,146,147;--gray-7:171,171,172;--gray-8:197,197,197;--gray-9:223,223,223;--gray-10:246,246,246;--green-1:0,77,28;--green-2:4,102,37;--green-3:10,128,45;--green-4:18,154,55;--green-5:29,180,64;--green-6:39,195,70;--green-7:80,210,102;--green-8:126,225,139;--green-9:178,240,183;--green-10:235,255,236;--blue-1:232,247,255;--blue-2:195,231,254;--blue-3:159,212,253;--blue-4:123,192,252;--blue-5:87,169,251;--blue-6:52,145,250;--blue-7:32,108,207;--blue-8:17,75,163;--blue-9:6,48,120;--blue-10:0,26,77;--u-bg-color:#303133;--u-bg-color-2:#2e2e30;--u-bg-color-3:#2a2a2b;--u-bg-color-3-hover:rgb(var(--gray-3),.65);--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:#ffffff0a;--u-color-fill-2:#ffffff14;--u-color-fill-3:#ffffff1f;--u-color-fill-4:#ffffff29;--u-text-color:var(--td-font-white-1);--u-text-color-tips:#8a939f;--u-text-color-primary:var(--td-font-white-1);--u-text-color-secondary:var(--td-font-white-2);--u-text-color-placeholder:var(--td-font-white-3);--u-text-color-disabled:var(--td-font-white-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-8);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6));--td-bg-color-component:rgba(var(--gray-9),.08)}.u-t-input .t-input{border-color:#0000;transition:border-color .25s linear}.u-t-input .t-input:hover{border-color:var(--td-border-level-2-color)}.u-t-input .t-input:focus{box-shadow:none}.u-t-input .t-input--focused{box-shadow:none;border-color:var(--td-brand-color)!important}.t-collapse.u-t-collapse{background-color:#0000;border:none}.t-collapse.u-t-collapse .t-collapse-panel__header{border-bottom:none;padding:8px 13px}.t-collapse.u-t-collapse .t-collapse-panel__body{background:0 0;border-bottom:none}.t-collapse.u-t-collapse .t-collapse-panel__body .t-collapse-panel__content{color:var(--u-text-color);padding:0 6px 0 14px}.u-slider-green .t-slider__button{background:rgb(var(--green-4));border-color:rgb(var(--green-4))}.u-slider-green .t-slider__button--dragging,.u-slider-green .t-slider__button:hover{background-color:rgb(var(--green-5));border-color:rgb(var(--green-5))}.u-slider-blue .t-slider__button{background:rgb(var(--blue-5));border-color:rgb(var(--blue-5))}.u-slider-blue .t-slider__button--dragging,.u-slider-blue .t-slider__button:hover{border-color:rgb(var(--blue-6));background-color:rgb(var(--blue-6))!important}.u-slider-no-fill .t-slider__track{background:0 0}.u-slider .t-slider__rail,.u-slider .t-slider__track{height:8px}.u-slider .t-slider__button{transition:all .2s linear}.u-slider .t-slider__button--dragging{box-shadow:none;transform:scale(1.25)}.u-web-radio-group.t-size-m .t-radio-button{height:24px!important}.t-notification__content{max-height:100%!important}.t-divider--horizontal.u-web-divider-mini{margin:var(--td-comp-margin-s)0}.t-divider--horizontal.u-web-divider-small{margin:var(--td-comp-margin-m)0}.t-divider--horizontal.u-web-divider-medium{margin:var(--td-comp-margin-xl)0}.t-divider--horizontal.u-web-divider-large{margin:var(--td-comp-margin-xxl)0}.u-select .t-select-input .t-input{height:100%;display:flex!important}.u-select .t-select-input .t-input.t-input--prefix .t-input__prefix-icon{font-size:unset!important}.t-table.u-web-table,.u-web-table .t-table__content tr{background-color:#0000}:root{--scrollbar-track-size:10px;--scrollbar-thumb-bar-size:6px;--scrollbar-thumb-bar-bg-color:rgb(var(--gray-5),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-6),.8);--scrollbar-thumb-bar-border-radius:var(--u-radius-small);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-size:1px;--scrollbar-track-border-color:var(--u-color-neutral-3)}html[theme-mode=dark]{--scrollbar-thumb-bar-bg-color:rgb(var(--gray-6),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-7),.8);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-color:var(--u-color-neutral-2)}.u-dropdown-small .t-dropdown__menu{padding:var(--td-pop-padding-s)}.u-dropdown-small .t-dropdown__item{padding:0 var(--td-pop-padding-s)}*,:before,:after{box-sizing:border-box;margin:0;padding:0;font-weight:400}*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.i-p-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43 11L16.875 37L5 25.1818' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-checkSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 24L20 34L40 14' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L40 40' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 40L40 8' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-closeSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L34 34' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 34L34 14' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandLeft{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9C6 7.34315 7.34315 6 9 6H39C40.6569 6 42 7.34315 42 9V39C42 40.6569 40.6569 42 39 42H9C7.34315 42 6 40.6569 6 39V9Z' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M32 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 20L20 24L16 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 6H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 42H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandRight{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='6' width='36' height='36' rx='3' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M18 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 6H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 42H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M32 20L28 24L32 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-info{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 7q-.825 0-1.412-.587T10 5t.588-1.412T12 3t1.413.588T14 5t-.587 1.413T12 7m0 14q-.625 0-1.062-.437T10.5 19.5v-9q0-.625.438-1.062T12 9t1.063.438t.437 1.062v9q0 .625-.437 1.063T12 21'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:256px;height:256px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 36L19 24L31 12' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-loading{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 24C4 35.0457 12.9543 44 24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.-container{width:-100%}.container{width:100%}@media (min-width:360px){.-container{max-width:-360px}.container{max-width:360px}}@media (min-width:640px){.-container{max-width:-640px}.container{max-width:640px}}@media (min-width:768px){.-container{max-width:-768px}.container{max-width:768px}}@media (min-width:800px){.-container{max-width:-800px}.container{max-width:800px}}@media (min-width:1024px){.-container{max-width:-1024px}.container{max-width:1024px}}@media (min-width:1280px){.-container{max-width:-1280px}.container{max-width:1280px}}@media (min-width:1536px){.-container{max-width:-1536px}.container{max-width:1536px}}.visible{visibility:visible}.h-12{height:3rem}.h-5{height:1.25rem}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-0{min-height:0}.w-12{width:3rem}.w-5{width:1.25rem}.w-8{width:2rem}.w-full{width:100%}.flex{display:flex}.cursor-pointer{cursor:pointer}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.overflow-hidden{overflow:hidden}.rounded-full{border-radius:9999px}[stroke-width~="2"]{stroke-width:2px}[stroke-width~="3"]{stroke-width:3px}.p-1{padding:.25rem}.px,[px=""]{padding-left:1rem;padding-right:1rem}.pl-5{padding-left:1.25rem}.pr-3{padding-right:.75rem}.font-bold{font-weight:700}.blur{--un-blur:blur(8px);filter:var(--un-blur)var(--un-brightness)var(--un-contrast)var(--un-drop-shadow)var(--un-grayscale)var(--un-hue-rotate)var(--un-invert)var(--un-saturate)var(--un-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:800px){.ut\:p-2{padding:.5rem}}@media (min-width:1280px){.xl\:p-4{padding:1rem}}.u-web-back-top{z-index:100;cursor:pointer;position:fixed;bottom:50px;right:28px}.u-web-back-top-small .u-web-back-top-btn{width:32px;height:32px}.u-web-back-top-btn{width:40px;height:40px;color:var(--u-text-color-secondary);background-color:var(--u-bg-color-3);border:1px solid var(--u-color-neutral-3);border-radius:var(--u-radius-default);cursor:pointer;box-shadow:var(--u-shadow-sm);outline:none;justify-content:center;align-items:center;font-size:16px;transition:all .2s;display:flex}.u-web-back-top-btn:hover{color:var(--u-text-color-primary);background-color:var(--u-bg-color-3-hover);transform:translateY(-2px)}.u-web-back-top-btn:active{transform:translateY(0)}.u-web-back-top-icon{width:16px;height:16px}.fade-in-enter-active,.fade-in-leave-active{transition:opacity .3s,transform .3s}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:translateY(10px)}.fade-in-enter-to,.fade-in-leave-from{opacity:1;transform:translateY(0)}.u-web-main-content{background:var(--u-bg-color)}.u-web-main-content-inner{background-color:var(--u-bg-color);border-radius:.5rem;height:100%;padding:4px;overflow:hidden auto}.u-web-context-menu-trigger{display:contents}.u-web-context-menu-mask{z-index:999;background:0 0;position:fixed;inset:0}.u-web-context-menu-menu{z-index:1000;background:var(--u-bg-color-3);border:1px solid var(--gray-3);border-radius:var(--u-radius-default);width:max-content;min-width:100px;box-shadow:var(--u-shadow-lg);-webkit-user-select:none;user-select:none;padding:4px 0;position:fixed}.u-web-context-menu-menu-small{min-width:81px;padding:3px 0}.u-web-context-menu-menu-mini{min-width:79px;padding:1px 0}.u-web-context-menu-menu-transition-enter-from,.u-web-context-menu-menu-transition-leave-to{opacity:0;transform:scaleY(.86)}.u-web-context-menu-menu-transition-enter-active,.u-web-context-menu-menu-transition-leave-active{transform-origin:top;transition:opacity .2s,transform .16s}.u-web-context-menu-submenu-popup{z-index:1001;position:absolute;top:0;left:100%}.u-web-context-menu-item{color:var(--u-text-color);cursor:pointer;white-space:nowrap;border-radius:4px;align-items:center;margin:0 4px;padding:6px 12px;font-size:14px;line-height:22px;transition:all .2s;display:flex;position:relative}.u-web-context-menu-menu-small .u-web-context-menu-item{margin:0 3px;padding:5px 9px;font-size:12px;line-height:19px}.u-web-context-menu-menu-mini .u-web-context-menu-item{margin:0 2px;padding:3px 7px;font-size:12px;line-height:17px}.u-web-context-menu-item:hover{background-color:var(--u-bg-color-3-hover)}.u-web-context-menu-item:active{background-color:var(--u-bg-color-3-active)}.u-web-context-menu-item-disabled{color:var(--u-text-color-disabled);cursor:not-allowed}.u-web-context-menu-item-disabled:hover{background-color:#0000}.u-web-context-menu-item-danger{color:var(--u-text-color-danger)}.u-web-context-menu-item-danger:hover{background-color:rgba(var(--red-5),.1)}.u-web-context-menu-item-icon{margin-right:8px;font-size:14px}.u-web-context-menu-menu-small .u-web-context-menu-item-icon{margin-right:7px;font-size:13px}.u-web-context-menu-menu-mini .u-web-context-menu-item-icon{margin-right:5px;font-size:11px}.u-web-context-menu-item-label{flex:1}.u-web-context-menu-submenu{position:relative}.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-4));margin-left:8px;font-size:10px;transition:color 90ms linear}.u-web-context-menu-menu-small .u-web-context-menu-submenu-arrow{margin-left:7px;font-size:9px}.u-web-context-menu-menu-mini .u-web-context-menu-submenu-arrow{margin-left:5px;font-size:7px}.u-web-context-menu-submenu-active{background-color:#0000000a}.u-web-context-menu-submenu-active>.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-6))}.u-web-context-menu-submenu-disabled .u-web-context-menu-submenu-arrow{color:rgb(var(--gray-3))}.u-web-context-menu-group-title{color:var(--u-text-color-secondary);padding:4px 6px;font-size:12px;font-weight:500;line-height:20px}.u-web-context-menu-menu-small .u-web-context-menu-group-title{padding:3px 5px;font-size:10px;line-height:17px}.u-web-context-menu-menu-mini .u-web-context-menu-group-title{padding:1px 3px;font-size:10px;line-height:15px}.u-web-context-menu-group:not(:first-child){border-top:1px solid var(--u-color-neutral-2);margin-top:2px;padding-top:2px}.u-web-context-menu-divider{background-color:var(--u-color-neutral-2);height:1px;margin:4px 0}.u-web-split-panel{width:100%;height:100%;display:flex}.u-web-split-panel-horizontal{flex-direction:row}.u-web-split-panel-vertical{flex-direction:column}.u-web-split-panel-pane{overflow:hidden}.u-web-split-panel-pane-second{flex:1;min-width:0;min-height:0}.u-web-split-trigger{background:var(--u-bg-color-2,#f0f0f0);-webkit-user-select:none;user-select:none;justify-content:center;align-items:center;transition:background-color .2s;display:flex;position:relative}.u-web-split-trigger:hover:not(.u-web-split-trigger-disabled){background:var(--u-bg-color-3-hover,#e8e8e8)}.u-web-split-trigger-horizontal{cursor:col-resize;width:6px;margin:0 1px}.u-web-split-trigger-horizontal .u-web-split-trigger-icon{flex-direction:column;gap:2px;display:flex}.u-web-split-trigger-horizontal .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:2px;height:12px}.u-web-split-trigger-vertical{cursor:row-resize;height:6px;margin:1px 0}.u-web-split-trigger-vertical .u-web-split-trigger-icon{flex-direction:row;gap:2px;display:flex}.u-web-split-trigger-vertical .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:12px;height:2px}.u-web-split-trigger-disabled{cursor:not-allowed;opacity:.5}.u-web-split-trigger-disabled:hover{background:var(--u-bg-color-2,#f0f0f0)}.utools{height:100%}.utools .t-default-menu.t-is-collapsed .t-menu__logo>*,.utools .t-menu__logo>*{margin-left:0}.utools .t-is-collapsed .t-menu__logo .title{display:none}.utools .t-is-collapsed .t-menu__logo:not(:empty){border-bottom:none;justify-content:center}.utools .t-menu__logo{padding:0 8px}.utools .u-web-left-menu-small .t-default-menu__inner .t-menu{padding:8px 3px}.utools .t-default-menu__inner .t-menu{padding:12px 6px}.utools .t-default-menu{background:var(--u-bg-color)}.utools .t-default-menu .t-menu__item.t-is-active:not(.t-is-opened),.utools .t-default-menu .t-menu__item:hover:not(.t-is-active):not(.t-is-disabled){background:var(--u-bg-color-2)}.u-web-utools-left-menu{width:100%;height:100%;position:relative}.u-web-utools-left-menu .u-web-utools-left-menu-collapse{z-index:888;border-radius:var(--u-radius-circle);background-color:var(--u-bg-color-2);cursor:pointer;width:32px;height:32px;color:var(--u-text-color-3);padding:4px;transition:all .28s linear;position:absolute;top:8px;right:-32px}.u-web-utools-left-menu .u-web-utools-left-menu-collapse:hover{color:var(--u-text-color-hover);box-shadow:0 1px 2px #0000001a}.utools .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 52px)}.utools .u-web-left-menu-small .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 38px)}.u-web-utools-content-wrapper{box-sizing:border-box;background:var(--u-bg-color);grid-template-rows:24px calc(100vh - 39px) 15px;grid-template-columns:1fr;width:100%;height:100%;min-height:100vh;display:grid;overflow:auto hidden}.u-web-utools-content-wrapper .content{box-sizing:border-box;width:100%;max-width:100%;padding:4px;overflow-x:hidden}.u-web-utools-content-wrapper .content .content-inner{border-radius:var(--u-radius-medium);background-color:var(--u-bg-color-2);width:100%;height:100%;overflow-y:auto;box-shadow:0 1px 2px #0000001a}.u-web-page-header{background:var(--u-bg-color-2);border-bottom:1px solid var(--u-color-neutral-2);justify-content:space-between;align-items:center;padding:16px 20px;display:flex}.u-web-page-header-mini{padding:10px 0}.u-web-page-header-mini .u-web-page-header-title{font-size:14px}.u-web-page-header-mini .u-web-page-header-header-back .t-icon{font-size:16px}.u-web-page-header-mini .u-web-page-header-divider{margin:0 var(--td-comp-margin-s)}.u-web-page-header-small{padding:14px 16px 12px}.u-web-page-header-small .u-web-page-header-title{font-size:16px}.u-web-page-header-small .u-web-page-header-header-back .t-icon{font-size:18px}.u-web-page-header-small .u-web-page-header-divider{margin:0 var(--td-comp-margin-s)}.u-web-page-header-large{padding:20px 24px}.u-web-page-header-large .u-web-page-header-title{font-size:20px}.u-web-page-header-large .u-web-page-header-header-back .t-icon{font-size:24px}.u-web-page-header-header{gap:6px}.u-web-page-header-header-back .t-icon{font-size:20px}.u-web-page-header-subtitle{color:var(--u-text-color-secondary)}.u-web-page-header-divider{height:20px}.u-web-page-header-title{color:var(--u-text-color);font-size:18px;font-weight:500;line-height:1.5}.u-web-page-header-extra{align-items:center;gap:16px;display:flex}.u-web-result{box-sizing:border-box;width:100%;padding:48px 24px 24px}.u-web-result-icon{text-align:center;margin-bottom:12px;font-size:48px}.u-web-result-icon-tip{border-radius:50%;justify-content:center;align-items:center;width:72px;height:72px;margin:0 auto;display:flex}.u-web-result-icon-custom .u-web-result-icon-tip{color:var(--u-text-color-secondary);width:unset;height:unset;font-size:64px}.u-web-result-icon-success .u-web-result-icon-tip{color:rgb(var(--green-6));background-color:rgba(var(--green-6),.1)}.u-web-result-icon-error .u-web-result-icon-tip{color:rgb(var(--red-6));background-color:rgba(var(--red-6),.1)}.u-web-result-icon-info .u-web-result-icon-tip{color:rgb(var(--blue-6));background-color:rgba(var(--blue-6),.1)}.u-web-result-icon-warning .u-web-result-icon-tip{color:#ff9500;background-color:#ff95001a}.u-web-result-icon-404,.u-web-result-icon-403,.u-web-result-icon-500{padding-top:24px}.u-web-result-icon-404 .u-web-result-icon-tip,.u-web-result-icon-403 .u-web-result-icon-tip,.u-web-result-icon-500 .u-web-result-icon-tip{width:240px;height:160px;line-height:160px}.u-web-result-title{color:var(--u-text-color-primary);text-align:center;margin-bottom:4px;font-size:14px;font-weight:600;line-height:1.5715}.u-web-result-subtitle{color:var(--u-text-color-secondary);text-align:center;margin-bottom:8px;font-size:14px;line-height:1.5715}.u-web-result-extra{text-align:center;margin-top:16px}.u-web-result-content{margin-top:24px}.result-error-icon[data-v-fc6ebdc7]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-fc6ebdc7]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cdc3b8a1]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cdc3b8a1]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cb66ef61]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cb66ef61]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.u-web-setting-item{background:var(--u-bg-color-3);-webkit-user-select:none;user-select:none;padding:15px 10px;transition:all .28s linear}.u-web-setting-item:hover{background:rgb(var(--gray-2),.2)}.u-web-setting-item-small{padding:8px}.u-web-setting-item-small .u-web-setting-item-title{font-size:14px}.u-web-setting-item-title{margin-bottom:.25rem;font-size:1rem;font-weight:700}.u-web-setting-item-desc{color:var(--u-text-color-tips);font-size:12px}.u-web-division{border-bottom:1px dashed var(--u-color-neutral-2)}.u-web-setting-group>div:last-child{border-radius:6px;transition:all .26s linear;overflow:hidden}.u-web-setting-group>div:last-child:hover{box-shadow:0 3px 5px #0000000a}.u-web-setting-group-header,.u-web-setting-group-title{margin-bottom:.5rem}.u-web-setting-group-title{border-left:2px solid rgb(var(--u-blue-5));padding-left:.5rem;font-size:1.125rem;font-weight:600;line-height:1.75rem}.u-web-switch-green{transition:background-color .2s linear}.u-web-switch-green.t-is-checked{background-color:rgba(var(--green-5))}.u-web-switch-green.t-is-checked:hover{background-color:rgba(var(--green-6))}@keyframes switch-loading-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.switch-slide-text-enter-from{left:-100%!important}.switch-slide-text-enter-to{left:8px!important}.switch-slide-text-enter-active{transition:left .2s}.switch-slide-text-leave-from{left:100%!important}.switch-slide-text-leave-to{left:30px!important}.switch-slide-text-leave-active{transition:left .2s}.u-web-switch-plus{box-sizing:border-box;vertical-align:middle;background-color:rgb(var(--gray-4));cursor:pointer;border:none;border-radius:14px;outline:none;min-width:44px;height:28px;padding:0;line-height:28px;transition:background-color .2s;position:relative;overflow:hidden}.u-web-switch-plus-handle{width:20px;height:20px;color:rgb(var(--gray-6));background-color:var(--u-bg-color-3);box-shadow:var(--u-shadow-sm);border-radius:50%;justify-content:center;align-items:center;font-size:12px;transition:all .2s;display:flex;position:absolute;top:4px;left:4px}.u-web-switch-plus-checked{background-color:rgb(var(--blue-5))}.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5));left:calc(100% - 24px)}.u-web-switch-plus[disabled] .u-web-switch-plus-handle,.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--gray-5))}.u-web-switch-plus-text-holder{opacity:0;margin:0 8px 0 30px;font-size:12px}.u-web-switch-plus-text{color:rgb(var(--gray-6));font-size:12px;position:absolute;top:0;left:30px}.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 30px 0 8px}.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3);left:8px}.u-web-switch-plus[disabled]{background-color:rgb(var(--gray-3));cursor:not-allowed}.u-web-switch-plus[disabled] .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus[disabled].u-web-switch-plus-checked{background-color:rgb(var(--gray-4))}.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus-loading{background-color:rgb(var(--gray-4))}.u-web-switch-plus-loading .u-web-switch-plus-handle,.u-web-switch-plus-loading .u-web-switch-plus-text{color:rgb(var(--gray-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:rgb(var(--blue-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3)}.u-web-switch-plus-loading-icon{animation:1s linear infinite switch-loading-spin;display:inline-block}.u-web-switch-plus-medium{min-width:38px;height:24px;line-height:24px}.u-web-switch-plus-medium.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:12px;width:16px;height:16px;top:4px;left:4px}.u-web-switch-plus-medium .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.8)}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 20px)}.u-web-switch-plus-medium .u-web-switch-plus-text-holder{margin:0 8px 0 26px}.u-web-switch-plus-medium .u-web-switch-plus-text{left:26px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 26px 0 8px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text{left:8px}.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:14px;height:14px;top:3px;left:3px}.u-web-switch-plus-small .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.66667)}.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 17px)}.u-web-switch-plus-mini{min-width:26px;height:16px;line-height:16px}.u-web-switch-plus-mini.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:8px;width:10px;height:10px;top:3px;left:3px}.u-web-switch-plus-mini .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.5)}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 13px)}.u-web-switch-plus-mini .u-web-switch-plus-text-holder{margin:0 6px 0 17px;font-size:10px}.u-web-switch-plus-mini .u-web-switch-plus-text{font-size:10px;left:17px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 17px 0 6px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text{left:6px}.u-web-switch-plus-type-round{border-radius:var(--u-radius-small);min-width:44px}.u-web-switch-plus-type-round .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-medium{border-radius:var(--u-radius-small);min-width:38px}.u-web-switch-plus-type-round.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-small{border-radius:2px;min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-round.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-round.u-web-switch-plus-mini{border-radius:2px;min-width:26px}.u-web-switch-plus-type-round.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-line{min-width:44px;overflow:unset;background-color:#0000}.u-web-switch-plus-type-line:after{background-color:rgb(var(--gray-4));content:"";border-radius:2px;width:100%;height:4px;transition:background-color .2s;display:block}.u-web-switch-plus-type-line .u-web-switch-plus-handle{background-color:var(--u-bg-color-3);width:18px;height:18px;box-shadow:var(--u-shadow-sm);border-radius:9px;top:5px;left:0}.u-web-switch-plus-type-line.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color{--custom-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color:after{background-color:var(--custom-color)}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color.u-web-switch-plus-checked{--custom-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 18px)}.u-web-switch-plus-type-line.u-web-switch-plus-medium{min-width:38px}.u-web-switch-plus-type-line.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:7px;width:14px;height:14px;top:5px}.u-web-switch-plus-type-line.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 14px)}.u-web-switch-plus-type-line[disabled]{cursor:not-allowed;background-color:#0000}.u-web-switch-plus-type-line[disabled]:after{background-color:rgb(var(--gray-3))}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-6))}.u-web-switch-plus-type-line.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:12px;height:12px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle-icon{transform:translate(-50%,-50%)scale(1)}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 12px)}.u-web-switch-plus-type-line.u-web-switch-plus-mini{min-width:26px}.u-web-switch-plus-type-line.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:4px;width:8px;height:8px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 8px)}.u-web-scrollbar{position:relative}.u-web-scrollbar-container{scrollbar-width:none;position:relative;overflow:auto}.u-web-scrollbar-container::-webkit-scrollbar{display:none}.u-web-scrollbar-track{z-index:100;position:absolute}.u-web-scrollbar-track-direction-horizontal{box-sizing:border-box;width:100%;height:var(--scrollbar-track-size);bottom:0;left:0}.u-web-scrollbar-track-direction-vertical{box-sizing:border-box;width:var(--scrollbar-track-size);height:100%;top:0;right:0}.u-web-scrollbar-thumb{box-sizing:border-box;display:block;position:absolute}.u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color);border-radius:var(--scrollbar-thumb-bar-border-radius);width:100%;height:100%}.u-web-scrollbar-thumb:hover .u-web-scrollbar-thumb-bar,.u-web-scrollbar-thumb-dragging .u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color-hover)}.u-web-scrollbar-thumb-direction-horizontal .u-web-scrollbar-thumb-bar{height:var(--scrollbar-thumb-bar-size);margin:calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)0}.u-web-scrollbar-thumb-direction-vertical .u-web-scrollbar-thumb-bar{width:var(--scrollbar-thumb-bar-size);margin:0 calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb{opacity:0;transition:opacity .2s}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb-dragging,.u-web-scrollbar.u-web-scrollbar-type-embed:hover .u-web-scrollbar-thumb{opacity:.8}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track{background-color:var(--scrollbar-track-bg-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-horizontal{border-top:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-vertical{border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-left:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-horizontal{margin:calc(-1*var(--scrollbar-track-border-size))0}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-vertical{margin:0 calc(-1*var(--scrollbar-track-border-size))}.u-web-scrollbar.u-web-scrollbar-type-track.u-web-scrollbar-both .u-web-scrollbar-track-direction-vertical:after{right:calc(-1*var(--scrollbar-track-border-size));box-sizing:border-box;width:var(--scrollbar-track-size);height:var(--scrollbar-track-size);background-color:var(--scrollbar-track-bg-color);border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);content:"";display:block;position:absolute;bottom:0}.u-web-scrollbar-size-small .u-web-scrollbar-track-direction-horizontal{height:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small .u-web-scrollbar-track-direction-vertical{width:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small .u-web-scrollbar-thumb-direction-horizontal .u-web-scrollbar-thumb-bar{height:calc(var(--scrollbar-thumb-bar-size)*.8);margin:calc((calc(var(--scrollbar-track-size)*.8) - calc(var(--scrollbar-thumb-bar-size)*.8))/2)0}.u-web-scrollbar-size-small .u-web-scrollbar-thumb-direction-vertical .u-web-scrollbar-thumb-bar{width:calc(var(--scrollbar-thumb-bar-size)*.8);margin:0 calc((calc(var(--scrollbar-track-size)*.8) - calc(var(--scrollbar-thumb-bar-size)*.8))/2)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-horizontal{height:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-vertical{width:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track.u-web-scrollbar-both .u-web-scrollbar-track-direction-vertical:after{width:calc(var(--scrollbar-track-size)*.8);height:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-container:has(+.u-web-scrollbar-track-direction-horizontal){padding-bottom:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-container:has(+.u-web-scrollbar-track-direction-vertical){padding-right:calc(var(--scrollbar-track-size)*.8)}
|
|
1
|
+
:root{--red-1:255,236,232;--red-2:253,205,197;--red-3:251,172,163;--red-4:249,137,129;--red-5:247,101,96;--red-6:245,63,63;--red-7:203,39,45;--red-8:161,21,30;--red-9:119,8,19;--red-10:77,0,10;--gray-1:247,248,250;--gray-2:242,243,245;--gray-3:229,230,235;--gray-4:201,205,212;--gray-5:169,174,184;--gray-6:134,144,156;--gray-7:107,119,133;--gray-8:78,89,105;--gray-9:39,46,59;--gray-10:29,33,41;--green-1:232,255,234;--green-2:175,240,181;--green-3:123,225,136;--green-4:76,210,99;--green-5:35,195,67;--green-6:0,180,42;--green-7:0,154,41;--green-8:0,128,38;--green-9:0,102,34;--green-10:0,77,28;--blue-1:0,26,77;--blue-2:5,47,120;--blue-3:19,76,163;--blue-4:41,113,207;--blue-5:70,153,250;--blue-6:90,170,251;--blue-7:125,193,252;--blue-8:161,213,253;--blue-9:198,232,254;--blue-10:234,248,255;--u-bg-color:#f4f4f4;--u-bg-color-2:#fafbfb;--u-bg-color-3:#fff;--u-bg-color-3-hover:rgb(var(--gray-3),.5);--u-bg-color-3-active:rgb(var(--gray-3),.8);--u-blue-7:13,66,210;--u-blue-6:22,93,255;--u-blue-5:64,128,255;--u-wechat-color:#2ba471;--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:var(--u-color-neutral-1);--u-color-fill-2:var(--u-color-neutral-2);--u-color-fill-3:var(--u-color-neutral-3);--u-color-fill-4:var(--u-color-neutral-4);--color-bg-1:#fff;--color-bg-2:#fff;--color-bg-3:#fff;--color-bg-4:#fff;--color-bg-5:#fff;--color-bg-white:#fff;--u-color-bg-popup:var(--color-bg-5);--u-shadow-sm:#0000001a 0px 1px 2px 0px;--u-shadow-lg:0 6px 16px 0 #00000014,0 3px 6px -4px #0000001f,0 9px 28px 8px #0000000d;--u-radius-small:4px;--u-radius-default:6px;--u-radius-medium:8px;--u-radius-large:10px;--u-radius-circle:50%;--u-select-hover:#0052d9;--u-text-color:var(--td-font-gray-1);--u-text-color-tips:#8a939f;--u-text-color-3:#86909c;--u-text-color-hover:#0052d9;--u-text-color-primary:var(--td-font-gray-1);--u-text-color-secondary:var(--td-font-gray-2);--u-text-color-placeholder:var(--td-font-gray-3);--u-text-color-disabled:var(--td-font-gray-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-7);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6));--td-bg-color-component:rgb(var(--gray-2));--td-bg-color-specialcomponent:rgb(var(--gray-2))}html[theme-mode=dark]{--red-1:77,0,10;--red-2:119,6,17;--red-3:161,22,31;--red-4:203,46,52;--red-5:245,78,78;--red-6:247,105,101;--red-7:249,141,134;--red-8:251,176,167;--red-9:253,209,202;--red-10:255,240,236;--gray-1:23,23,26;--gray-2:46,46,48;--gray-3:72,72,73;--gray-4:95,95,96;--gray-5:120,120,122;--gray-6:146,146,147;--gray-7:171,171,172;--gray-8:197,197,197;--gray-9:223,223,223;--gray-10:246,246,246;--green-1:0,77,28;--green-2:4,102,37;--green-3:10,128,45;--green-4:18,154,55;--green-5:29,180,64;--green-6:39,195,70;--green-7:80,210,102;--green-8:126,225,139;--green-9:178,240,183;--green-10:235,255,236;--blue-1:232,247,255;--blue-2:195,231,254;--blue-3:159,212,253;--blue-4:123,192,252;--blue-5:87,169,251;--blue-6:52,145,250;--blue-7:32,108,207;--blue-8:17,75,163;--blue-9:6,48,120;--blue-10:0,26,77;--u-bg-color:#303133;--u-bg-color-2:#2e2e30;--u-bg-color-3:#2a2a2b;--u-bg-color-3-hover:rgb(var(--gray-3),.65);--u-color-neutral-1:rgb(var(--gray-1));--u-color-neutral-2:rgb(var(--gray-2));--u-color-neutral-3:rgb(var(--gray-3));--u-color-neutral-4:rgb(var(--gray-4));--u-color-neutral-5:rgb(var(--gray-5));--u-color-neutral-6:rgb(var(--gray-6));--u-color-neutral-7:rgb(var(--gray-7));--u-color-neutral-8:rgb(var(--gray-8));--u-color-neutral-9:rgb(var(--gray-9));--u-color-neutral-10:rgb(var(--gray-10));--u-color-fill-1:#ffffff0a;--u-color-fill-2:#ffffff14;--u-color-fill-3:#ffffff1f;--u-color-fill-4:#ffffff29;--color-bg-1:#17171a;--color-bg-2:#232324;--color-bg-3:#313132;--color-bg-5:#373739;--color-bg-white:#f6f6f6;--u-color-bg-popup:var(--color-bg-5);--u-text-color:var(--td-font-white-1);--u-text-color-tips:#8a939f;--u-text-color-primary:var(--td-font-white-1);--u-text-color-secondary:var(--td-font-white-2);--u-text-color-placeholder:var(--td-font-white-3);--u-text-color-disabled:var(--td-font-white-4);--u-text-color-anti:#fff;--u-text-color-brand:var(--td-brand-color-8);--u-text-color-link:var(--td-brand-color-8);--u-text-color-danger:rgb(var(--red-6));--td-bg-color-component:rgba(var(--gray-9),.08)}.u-t-input .t-input{border-color:#0000;transition:border-color .25s linear}.u-t-input .t-input:hover{border-color:var(--td-border-level-2-color)}.u-t-input .t-input:focus{box-shadow:none}.u-t-input .t-input--focused{box-shadow:none;border-color:var(--td-brand-color)!important}.t-collapse.u-t-collapse{background-color:#0000;border:none}.t-collapse.u-t-collapse .t-collapse-panel__header{border-bottom:none;padding:8px 13px}.t-collapse.u-t-collapse .t-collapse-panel__body{background:0 0;border-bottom:none}.t-collapse.u-t-collapse .t-collapse-panel__body .t-collapse-panel__content{color:var(--u-text-color);padding:0 6px 0 14px}.u-slider-green .t-slider__button{background:rgb(var(--green-4));border-color:rgb(var(--green-4))}.u-slider-green .t-slider__button--dragging,.u-slider-green .t-slider__button:hover{background-color:rgb(var(--green-5));border-color:rgb(var(--green-5))}.u-slider-blue .t-slider__button{background:rgb(var(--blue-5));border-color:rgb(var(--blue-5))}.u-slider-blue .t-slider__button--dragging,.u-slider-blue .t-slider__button:hover{border-color:rgb(var(--blue-6));background-color:rgb(var(--blue-6))!important}.u-slider-no-fill .t-slider__track{background:0 0}.u-slider .t-slider__rail,.u-slider .t-slider__track{height:8px}.u-slider .t-slider__button{transition:all .2s linear}.u-slider .t-slider__button--dragging{box-shadow:none;transform:scale(1.25)}.u-web-radio-group.t-size-m .t-radio-button{height:24px!important}.t-notification__content{max-height:100%!important}.t-divider--horizontal.u-web-divider-mini{margin:var(--td-comp-margin-s)0}.t-divider--horizontal.u-web-divider-small{margin:var(--td-comp-margin-m)0}.t-divider--horizontal.u-web-divider-medium{margin:var(--td-comp-margin-xl)0}.t-divider--horizontal.u-web-divider-large{margin:var(--td-comp-margin-xxl)0}.u-select .t-select-input .t-input{height:100%;display:flex!important}.u-select .t-select-input .t-input.t-input--prefix .t-input__prefix-icon{font-size:unset!important}.t-table.u-web-table,.u-web-table .t-table__content tr{background-color:#0000}:root{--scrollbar-track-size:10px;--scrollbar-thumb-bar-size:6px;--scrollbar-thumb-bar-bg-color:rgb(var(--gray-5),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-6),.8);--scrollbar-thumb-bar-border-radius:var(--u-radius-small);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-size:1px;--scrollbar-track-border-color:var(--u-color-neutral-3)}html[theme-mode=dark]{--scrollbar-thumb-bar-bg-color:rgb(var(--gray-6),.6);--scrollbar-thumb-bar-bg-color-hover:rgb(var(--gray-7),.8);--scrollbar-track-bg-color:var(--u-bg-color-2);--scrollbar-track-border-color:var(--u-color-neutral-2)}.u-dropdown-small .t-dropdown__menu{padding:var(--td-pop-padding-s)}.u-dropdown-small .t-dropdown__item{padding:0 var(--td-pop-padding-s)}*,:before,:after{box-sizing:border-box;margin:0;padding:0;font-weight:400}*,:before,:after,::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 #0000;--un-ring-shadow:0 0 #0000;--un-shadow-inset: ;--un-shadow:0 0 #0000;--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:#93c5fd80;--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: }.i-p-check{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43 11L16.875 37L5 25.1818' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-checkSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 24L20 34L40 14' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L40 40' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 40L40 8' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-closeSmall{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 14L34 34' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 34L34 14' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandLeft{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9C6 7.34315 7.34315 6 9 6H39C40.6569 6 42 7.34315 42 9V39C42 40.6569 40.6569 42 39 42H9C7.34315 42 6 40.6569 6 39V9Z' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M32 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 20L20 24L16 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 6H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M26 42H38' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-expandRight{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='6' width='36' height='36' rx='3' fill='none' stroke='currentColor' stroke-width='4' stroke-linejoin='round'/%3E%3Cpath d='M18 6V42' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 6H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 42H36' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M32 20L28 24L32 28' stroke='%23333' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-info{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 7q-.825 0-1.412-.587T10 5t.588-1.412T12 3t1.413.588T14 5t-.587 1.413T12 7m0 14q-.625 0-1.062-.437T10.5 19.5v-9q0-.625.438-1.062T12 9t1.063.438t.437 1.062v9q0 .625-.437 1.063T12 21'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:256px;height:256px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 36L19 24L31 12' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.i-p-loading{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' vertical-align='middle' width='24' height='24' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 24C4 35.0457 12.9543 44 24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4' stroke='currentColor' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon)no-repeat;-webkit-mask:var(--un-icon)no-repeat;mask:var(--un-icon)no-repeat;color:inherit;vertical-align:middle;background-color:currentColor;width:24px;height:24px;display:inline-block;-webkit-mask-size:100% 100%;mask-size:100% 100%}.-container{width:-100%}.container{width:100%}@media (min-width:360px){.-container{max-width:-360px}.container{max-width:360px}}@media (min-width:640px){.-container{max-width:-640px}.container{max-width:640px}}@media (min-width:768px){.-container{max-width:-768px}.container{max-width:768px}}@media (min-width:800px){.-container{max-width:-800px}.container{max-width:800px}}@media (min-width:1024px){.-container{max-width:-1024px}.container{max-width:1024px}}@media (min-width:1280px){.-container{max-width:-1280px}.container{max-width:1280px}}@media (min-width:1536px){.-container{max-width:-1536px}.container{max-width:1536px}}.visible{visibility:visible}.h-12{height:3rem}.h-5{height:1.25rem}.h-auto{height:auto}.h-full{height:100%}.h-screen{height:100vh}.min-h-0{min-height:0}.w-12{width:3rem}.w-5{width:1.25rem}.w-8{width:2rem}.w-full{width:100%}.flex{display:flex}.cursor-pointer{cursor:pointer}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.overflow-hidden{overflow:hidden}.border{border-width:1px}.rounded-full{border-radius:9999px}[stroke-width~="2"]{stroke-width:2px}[stroke-width~="3"]{stroke-width:3px}.p-1{padding:.25rem}.px,[px=""]{padding-left:1rem;padding-right:1rem}.pl-5{padding-left:1.25rem}.pr-3{padding-right:.75rem}.font-bold{font-weight:700}.blur,[blur=""]{--un-blur:blur(8px);filter:var(--un-blur)var(--un-brightness)var(--un-contrast)var(--un-drop-shadow)var(--un-grayscale)var(--un-hue-rotate)var(--un-invert)var(--un-saturate)var(--un-sepia)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}@media (min-width:800px){.ut\:p-2{padding:.5rem}}@media (min-width:1280px){.xl\:p-4{padding:1rem}}.u-web-back-top{z-index:100;cursor:pointer;position:fixed;bottom:50px;right:28px}.u-web-back-top-small .u-web-back-top-btn{width:32px;height:32px}.u-web-back-top-btn{width:40px;height:40px;color:var(--u-text-color-secondary);background-color:var(--u-bg-color-3);border:1px solid var(--u-color-neutral-3);border-radius:var(--u-radius-default);cursor:pointer;box-shadow:var(--u-shadow-sm);outline:none;justify-content:center;align-items:center;font-size:16px;transition:all .2s;display:flex}.u-web-back-top-btn:hover{color:var(--u-text-color-primary);background-color:var(--u-bg-color-3-hover);transform:translateY(-2px)}.u-web-back-top-btn:active{transform:translateY(0)}.u-web-back-top-icon{width:16px;height:16px}.fade-in-enter-active,.fade-in-leave-active{transition:opacity .3s,transform .3s}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:translateY(10px)}.fade-in-enter-to,.fade-in-leave-from{opacity:1;transform:translateY(0)}.u-web-main-content{background:var(--u-bg-color)}.u-web-main-content-inner{background-color:var(--u-bg-color);border-radius:.5rem;height:100%;padding:4px;overflow:hidden auto}.u-web-context-menu-trigger{display:contents}.u-web-context-menu-mask{z-index:999;background:0 0;position:fixed;inset:0}.u-web-context-menu-menu{z-index:1000;background:var(--u-bg-color-3);border:1px solid var(--gray-3);border-radius:var(--u-radius-default);width:max-content;min-width:100px;box-shadow:var(--u-shadow-lg);-webkit-user-select:none;user-select:none;padding:4px 0;position:fixed}.u-web-context-menu-menu-small{min-width:81px;padding:3px 0}.u-web-context-menu-menu-mini{min-width:79px;padding:1px 0}.u-web-context-menu-menu-transition-enter-from,.u-web-context-menu-menu-transition-leave-to{opacity:0;transform:scaleY(.86)}.u-web-context-menu-menu-transition-enter-active,.u-web-context-menu-menu-transition-leave-active{transform-origin:top;transition:opacity .2s,transform .16s}.u-web-context-menu-submenu-popup{z-index:1001;position:absolute;top:0;left:100%}.u-web-context-menu-item{color:var(--u-text-color);cursor:pointer;white-space:nowrap;border-radius:4px;align-items:center;margin:0 4px;padding:6px 12px;font-size:14px;line-height:22px;transition:all .2s;display:flex;position:relative}.u-web-context-menu-menu-small .u-web-context-menu-item{margin:0 3px;padding:5px 9px;font-size:12px;line-height:19px}.u-web-context-menu-menu-mini .u-web-context-menu-item{margin:0 2px;padding:3px 7px;font-size:12px;line-height:17px}.u-web-context-menu-item:hover{background-color:var(--u-bg-color-3-hover)}.u-web-context-menu-item:active{background-color:var(--u-bg-color-3-active)}.u-web-context-menu-item-disabled{color:var(--u-text-color-disabled);cursor:not-allowed}.u-web-context-menu-item-disabled:hover{background-color:#0000}.u-web-context-menu-item-danger{color:var(--u-text-color-danger)}.u-web-context-menu-item-danger:hover{background-color:rgba(var(--red-5),.1)}.u-web-context-menu-item-icon{margin-right:8px;font-size:14px}.u-web-context-menu-menu-small .u-web-context-menu-item-icon{margin-right:7px;font-size:13px}.u-web-context-menu-menu-mini .u-web-context-menu-item-icon{margin-right:5px;font-size:11px}.u-web-context-menu-item-label{flex:1}.u-web-context-menu-submenu{position:relative}.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-4));margin-left:8px;font-size:10px;transition:color 90ms linear}.u-web-context-menu-menu-small .u-web-context-menu-submenu-arrow{margin-left:7px;font-size:9px}.u-web-context-menu-menu-mini .u-web-context-menu-submenu-arrow{margin-left:5px;font-size:7px}.u-web-context-menu-submenu-active{background-color:#0000000a}.u-web-context-menu-submenu-active>.u-web-context-menu-submenu-arrow{color:rgb(var(--gray-6))}.u-web-context-menu-submenu-disabled .u-web-context-menu-submenu-arrow{color:rgb(var(--gray-3))}.u-web-context-menu-group-title{color:var(--u-text-color-secondary);padding:4px 6px;font-size:12px;font-weight:500;line-height:20px}.u-web-context-menu-menu-small .u-web-context-menu-group-title{padding:3px 5px;font-size:10px;line-height:17px}.u-web-context-menu-menu-mini .u-web-context-menu-group-title{padding:1px 3px;font-size:10px;line-height:15px}.u-web-context-menu-group:not(:first-child){border-top:1px solid var(--u-color-neutral-2);margin-top:2px;padding-top:2px}.u-web-context-menu-divider{background-color:var(--u-color-neutral-2);height:1px;margin:4px 0}.u-web-split-panel{width:100%;height:100%;display:flex}.u-web-split-panel-horizontal{flex-direction:row}.u-web-split-panel-vertical{flex-direction:column}.u-web-split-panel-pane{overflow:hidden}.u-web-split-panel-pane-second{flex:1;min-width:0;min-height:0}.u-web-split-trigger{background:var(--u-bg-color-2,#f0f0f0);-webkit-user-select:none;user-select:none;justify-content:center;align-items:center;transition:background-color .2s;display:flex;position:relative}.u-web-split-trigger:hover:not(.u-web-split-trigger-disabled){background:var(--u-bg-color-3-hover,#e8e8e8)}.u-web-split-trigger-horizontal{cursor:col-resize;width:6px;margin:0 1px}.u-web-split-trigger-horizontal .u-web-split-trigger-icon{flex-direction:column;gap:2px;display:flex}.u-web-split-trigger-horizontal .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:2px;height:12px}.u-web-split-trigger-vertical{cursor:row-resize;height:6px;margin:1px 0}.u-web-split-trigger-vertical .u-web-split-trigger-icon{flex-direction:row;gap:2px;display:flex}.u-web-split-trigger-vertical .u-web-split-trigger-line{background:var(--u-text-color-placeholder,#999);border-radius:1px;width:12px;height:2px}.u-web-split-trigger-disabled{cursor:not-allowed;opacity:.5}.u-web-split-trigger-disabled:hover{background:var(--u-bg-color-2,#f0f0f0)}.utools{height:100%}.utools .t-default-menu.t-is-collapsed .t-menu__logo>*,.utools .t-menu__logo>*{margin-left:0}.utools .t-is-collapsed .t-menu__logo .title{display:none}.utools .t-is-collapsed .t-menu__logo:not(:empty){border-bottom:none;justify-content:center}.utools .t-menu__logo{padding:0 8px}.utools .u-web-left-menu-small .t-default-menu__inner .t-menu{padding:8px 3px}.utools .t-default-menu__inner .t-menu{padding:12px 6px}.utools .t-default-menu{background:var(--u-bg-color)}.utools .t-default-menu .t-menu__item.t-is-active:not(.t-is-opened),.utools .t-default-menu .t-menu__item:hover:not(.t-is-active):not(.t-is-disabled){background:var(--u-bg-color-2)}.u-web-utools-left-menu{width:100%;height:100%;position:relative}.u-web-utools-left-menu .u-web-utools-left-menu-collapse{z-index:888;border-radius:var(--u-radius-circle);background-color:var(--u-bg-color-2);cursor:pointer;width:32px;height:32px;color:var(--u-text-color-3);padding:4px;transition:all .28s linear;position:absolute;top:8px;right:-32px}.u-web-utools-left-menu .u-web-utools-left-menu-collapse:hover{color:var(--u-text-color-hover);box-shadow:0 1px 2px #0000001a}.utools .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 52px)}.utools .u-web-left-menu-small .t-is-collapsed~* .u-web-utools-main-content-area{width:calc(100vw - 38px)}.u-web-utools-content-wrapper{box-sizing:border-box;background:var(--u-bg-color);grid-template-rows:24px calc(100vh - 39px) 15px;grid-template-columns:1fr;width:100%;height:100%;min-height:100vh;display:grid;overflow:auto hidden}.u-web-utools-content-wrapper .content{box-sizing:border-box;width:100%;max-width:100%;padding:4px;overflow-x:hidden}.u-web-utools-content-wrapper .content .content-inner{border-radius:var(--u-radius-medium);background-color:var(--u-bg-color-2);width:100%;height:100%;overflow-y:auto;box-shadow:0 1px 2px #0000001a}.u-web-page-header{background:var(--u-bg-color-2);border-bottom:1px solid var(--u-color-neutral-2);justify-content:space-between;align-items:center;padding:16px 20px;display:flex}.u-web-page-header-mini{padding:10px 0}.u-web-page-header-mini .u-web-page-header-title{font-size:14px}.u-web-page-header-mini .u-web-page-header-header-back .t-icon{font-size:16px}.u-web-page-header-mini .u-web-page-header-divider{margin:0 var(--td-comp-margin-s)}.u-web-page-header-small{padding:14px 16px 12px}.u-web-page-header-small .u-web-page-header-title{font-size:16px}.u-web-page-header-small .u-web-page-header-header-back .t-icon{font-size:18px}.u-web-page-header-small .u-web-page-header-divider{margin:0 var(--td-comp-margin-s)}.u-web-page-header-large{padding:20px 24px}.u-web-page-header-large .u-web-page-header-title{font-size:20px}.u-web-page-header-large .u-web-page-header-header-back .t-icon{font-size:24px}.u-web-page-header-header{gap:6px}.u-web-page-header-header-back .t-icon{font-size:20px}.u-web-page-header-subtitle{color:var(--u-text-color-secondary)}.u-web-page-header-divider{height:20px}.u-web-page-header-title{color:var(--u-text-color);font-size:18px;font-weight:500;line-height:1.5}.u-web-page-header-extra{align-items:center;gap:16px;display:flex}.u-web-result{box-sizing:border-box;width:100%;padding:48px 24px 24px}.u-web-result-icon{text-align:center;margin-bottom:12px;font-size:48px}.u-web-result-icon-tip{border-radius:50%;justify-content:center;align-items:center;width:72px;height:72px;margin:0 auto;display:flex}.u-web-result-icon-custom .u-web-result-icon-tip{color:var(--u-text-color-secondary);width:unset;height:unset;font-size:64px}.u-web-result-icon-success .u-web-result-icon-tip{color:rgb(var(--green-6));background-color:rgba(var(--green-6),.1)}.u-web-result-icon-error .u-web-result-icon-tip{color:rgb(var(--red-6));background-color:rgba(var(--red-6),.1)}.u-web-result-icon-info .u-web-result-icon-tip{color:rgb(var(--blue-6));background-color:rgba(var(--blue-6),.1)}.u-web-result-icon-warning .u-web-result-icon-tip{color:#ff9500;background-color:#ff95001a}.u-web-result-icon-404,.u-web-result-icon-403,.u-web-result-icon-500{padding-top:24px}.u-web-result-icon-404 .u-web-result-icon-tip,.u-web-result-icon-403 .u-web-result-icon-tip,.u-web-result-icon-500 .u-web-result-icon-tip{width:240px;height:160px;line-height:160px}.u-web-result-title{color:var(--u-text-color-primary);text-align:center;margin-bottom:4px;font-size:14px;font-weight:600;line-height:1.5715}.u-web-result-subtitle{color:var(--u-text-color-secondary);text-align:center;margin-bottom:8px;font-size:14px;line-height:1.5715}.u-web-result-extra{text-align:center;margin-top:16px}.u-web-result-content{margin-top:24px}.result-error-icon[data-v-fc6ebdc7]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-fc6ebdc7]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cdc3b8a1]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cdc3b8a1]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.result-error-icon[data-v-cb66ef61]{flex-direction:column;align-items:center;gap:16px;display:flex}.result-error-text[data-v-cb66ef61]{color:var(--u-text-color-secondary);opacity:.6;font-size:48px;font-weight:700}.u-web-setting-item{background:var(--u-bg-color-3);-webkit-user-select:none;user-select:none;padding:15px 10px;transition:all .28s linear}.u-web-setting-item:hover{background:rgb(var(--gray-2),.2)}.u-web-setting-item-small{padding:8px}.u-web-setting-item-small .u-web-setting-item-title{font-size:14px}.u-web-setting-item-title{margin-bottom:.25rem;font-size:1rem;font-weight:700}.u-web-setting-item-desc{color:var(--u-text-color-tips);font-size:12px}.u-web-division{border-bottom:1px dashed var(--u-color-neutral-2)}.u-web-setting-group>div:last-child{border-radius:6px;transition:all .26s linear;overflow:hidden}.u-web-setting-group>div:last-child:hover{box-shadow:0 3px 5px #0000000a}.u-web-setting-group-header,.u-web-setting-group-title{margin-bottom:.5rem}.u-web-setting-group-title{border-left:2px solid rgb(var(--u-blue-5));padding-left:.5rem;font-size:1.125rem;font-weight:600;line-height:1.75rem}.u-web-switch-green{transition:background-color .2s linear}.u-web-switch-green.t-is-checked{background-color:rgba(var(--green-5))}.u-web-switch-green.t-is-checked:hover{background-color:rgba(var(--green-6))}@keyframes switch-loading-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.switch-slide-text-enter-from{left:-100%!important}.switch-slide-text-enter-to{left:8px!important}.switch-slide-text-enter-active{transition:left .2s}.switch-slide-text-leave-from{left:100%!important}.switch-slide-text-leave-to{left:30px!important}.switch-slide-text-leave-active{transition:left .2s}.u-web-switch-plus{box-sizing:border-box;vertical-align:middle;background-color:rgb(var(--gray-4));cursor:pointer;border:none;border-radius:14px;outline:none;min-width:44px;height:28px;padding:0;line-height:28px;transition:background-color .2s;position:relative;overflow:hidden}.u-web-switch-plus-handle{width:20px;height:20px;color:rgb(var(--gray-6));background-color:var(--u-bg-color-3);box-shadow:var(--u-shadow-sm);border-radius:50%;justify-content:center;align-items:center;font-size:12px;transition:all .2s;display:flex;position:absolute;top:4px;left:4px}.u-web-switch-plus-checked{background-color:rgb(var(--blue-5))}.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5));left:calc(100% - 24px)}.u-web-switch-plus[disabled] .u-web-switch-plus-handle,.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--gray-5))}.u-web-switch-plus-text-holder{opacity:0;margin:0 8px 0 30px;font-size:12px}.u-web-switch-plus-text{color:rgb(var(--gray-6));font-size:12px;position:absolute;top:0;left:30px}.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 30px 0 8px}.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3);left:8px}.u-web-switch-plus[disabled]{background-color:rgb(var(--gray-3));cursor:not-allowed}.u-web-switch-plus[disabled] .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus[disabled].u-web-switch-plus-checked{background-color:rgb(var(--gray-4))}.u-web-switch-plus[disabled].u-web-switch-plus-checked .u-web-switch-plus-text{color:rgb(var(--gray-5))}.u-web-switch-plus-loading{background-color:rgb(var(--gray-4))}.u-web-switch-plus-loading .u-web-switch-plus-handle,.u-web-switch-plus-loading .u-web-switch-plus-text{color:rgb(var(--gray-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:rgb(var(--blue-6))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-handle{color:rgb(var(--blue-5))}.u-web-switch-plus-loading.u-web-switch-plus-checked .u-web-switch-plus-text{color:var(--u-bg-color-3)}.u-web-switch-plus-loading-icon{animation:1s linear infinite switch-loading-spin;display:inline-block}.u-web-switch-plus-medium{min-width:38px;height:24px;line-height:24px}.u-web-switch-plus-medium.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:12px;width:16px;height:16px;top:4px;left:4px}.u-web-switch-plus-medium .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.8)}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 20px)}.u-web-switch-plus-medium .u-web-switch-plus-text-holder{margin:0 8px 0 26px}.u-web-switch-plus-medium .u-web-switch-plus-text{left:26px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 26px 0 8px}.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-text{left:8px}.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:14px;height:14px;top:3px;left:3px}.u-web-switch-plus-small .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.66667)}.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 17px)}.u-web-switch-plus-mini{min-width:26px;height:16px;line-height:16px}.u-web-switch-plus-mini.u-web-switch-plus-checked{padding-left:-3px}.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:8px;width:10px;height:10px;top:3px;left:3px}.u-web-switch-plus-mini .u-web-switch-plus-handle-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(.5)}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 13px)}.u-web-switch-plus-mini .u-web-switch-plus-text-holder{margin:0 6px 0 17px;font-size:10px}.u-web-switch-plus-mini .u-web-switch-plus-text{font-size:10px;left:17px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text-holder{margin:0 17px 0 6px}.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-text{left:6px}.u-web-switch-plus-type-round{border-radius:var(--u-radius-small);min-width:44px}.u-web-switch-plus-type-round .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-medium{border-radius:var(--u-radius-small);min-width:38px}.u-web-switch-plus-type-round.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:2px}.u-web-switch-plus-type-round.u-web-switch-plus-small{border-radius:2px;min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-round.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-round.u-web-switch-plus-mini{border-radius:2px;min-width:26px}.u-web-switch-plus-type-round.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:1px}.u-web-switch-plus-type-line{min-width:44px;overflow:unset;background-color:#0000}.u-web-switch-plus-type-line:after{background-color:rgb(var(--gray-4));content:"";border-radius:2px;width:100%;height:4px;transition:background-color .2s;display:block}.u-web-switch-plus-type-line .u-web-switch-plus-handle{background-color:var(--u-bg-color-3);width:18px;height:18px;box-shadow:var(--u-shadow-sm);border-radius:9px;top:5px;left:0}.u-web-switch-plus-type-line.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color{--custom-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color:after{background-color:var(--custom-color)}.u-web-switch-plus-type-line.u-web-switch-plus-custom-color.u-web-switch-plus-checked{--custom-color:rgb(var(--blue-5))}.u-web-switch-plus-type-line.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 18px)}.u-web-switch-plus-type-line.u-web-switch-plus-medium{min-width:38px}.u-web-switch-plus-type-line.u-web-switch-plus-medium .u-web-switch-plus-handle{border-radius:7px;width:14px;height:14px;top:5px}.u-web-switch-plus-type-line.u-web-switch-plus-medium.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 14px)}.u-web-switch-plus-type-line[disabled]{cursor:not-allowed;background-color:#0000}.u-web-switch-plus-type-line[disabled]:after{background-color:rgb(var(--gray-3))}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line[disabled].u-web-switch-plus-checked:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading:after{background-color:rgb(var(--gray-4))}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked{background-color:#0000}.u-web-switch-plus-type-line.u-web-switch-plus-loading.u-web-switch-plus-checked:after{background-color:rgb(var(--blue-6))}.u-web-switch-plus-type-line.u-web-switch-plus-small{min-width:32px;height:20px;line-height:20px}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked{padding-left:-4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle{border-radius:10px;width:12px;height:12px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-small .u-web-switch-plus-handle-icon{transform:translate(-50%,-50%)scale(1)}.u-web-switch-plus-type-line.u-web-switch-plus-small.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 12px)}.u-web-switch-plus-type-line.u-web-switch-plus-mini{min-width:26px}.u-web-switch-plus-type-line.u-web-switch-plus-mini .u-web-switch-plus-handle{border-radius:4px;width:8px;height:8px;top:4px}.u-web-switch-plus-type-line.u-web-switch-plus-mini.u-web-switch-plus-checked .u-web-switch-plus-handle{left:calc(100% - 8px)}.u-web-scrollbar{position:relative}.u-web-scrollbar-container{scrollbar-width:none;position:relative;overflow:auto}.u-web-scrollbar-container::-webkit-scrollbar{display:none}.u-web-scrollbar-track{z-index:100;position:absolute}.u-web-scrollbar-track-direction-horizontal{box-sizing:border-box;width:100%;height:var(--scrollbar-track-size);bottom:0;left:0}.u-web-scrollbar-track-direction-vertical{box-sizing:border-box;width:var(--scrollbar-track-size);height:100%;top:0;right:0}.u-web-scrollbar-thumb{box-sizing:border-box;display:block;position:absolute}.u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color);border-radius:var(--scrollbar-thumb-bar-border-radius);width:100%;height:100%}.u-web-scrollbar-thumb:hover .u-web-scrollbar-thumb-bar,.u-web-scrollbar-thumb-dragging .u-web-scrollbar-thumb-bar{background-color:var(--scrollbar-thumb-bar-bg-color-hover)}.u-web-scrollbar-thumb-direction-horizontal .u-web-scrollbar-thumb-bar{height:var(--scrollbar-thumb-bar-size);margin:calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)0}.u-web-scrollbar-thumb-direction-vertical .u-web-scrollbar-thumb-bar{width:var(--scrollbar-thumb-bar-size);margin:0 calc((var(--scrollbar-track-size) - var(--scrollbar-thumb-bar-size))/2)}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb{opacity:0;transition:opacity .2s}.u-web-scrollbar.u-web-scrollbar-type-embed .u-web-scrollbar-thumb-dragging,.u-web-scrollbar.u-web-scrollbar-type-embed:hover .u-web-scrollbar-thumb{opacity:.8}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track{background-color:var(--scrollbar-track-bg-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-horizontal{border-top:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-vertical{border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-left:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color)}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-horizontal{margin:calc(-1*var(--scrollbar-track-border-size))0}.u-web-scrollbar.u-web-scrollbar-type-track .u-web-scrollbar-thumb-direction-vertical{margin:0 calc(-1*var(--scrollbar-track-border-size))}.u-web-scrollbar.u-web-scrollbar-type-track.u-web-scrollbar-both .u-web-scrollbar-track-direction-vertical:after{right:calc(-1*var(--scrollbar-track-border-size));box-sizing:border-box;width:var(--scrollbar-track-size);height:var(--scrollbar-track-size);background-color:var(--scrollbar-track-bg-color);border-right:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);border-bottom:var(--scrollbar-track-border-size)solid var(--scrollbar-track-border-color);content:"";display:block;position:absolute;bottom:0}.u-web-scrollbar-size-small .u-web-scrollbar-track-direction-horizontal{height:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small .u-web-scrollbar-track-direction-vertical{width:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small .u-web-scrollbar-thumb-direction-horizontal .u-web-scrollbar-thumb-bar{height:calc(var(--scrollbar-thumb-bar-size)*.8);margin:calc((calc(var(--scrollbar-track-size)*.8) - calc(var(--scrollbar-thumb-bar-size)*.8))/2)0}.u-web-scrollbar-size-small .u-web-scrollbar-thumb-direction-vertical .u-web-scrollbar-thumb-bar{width:calc(var(--scrollbar-thumb-bar-size)*.8);margin:0 calc((calc(var(--scrollbar-track-size)*.8) - calc(var(--scrollbar-thumb-bar-size)*.8))/2)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-horizontal{height:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-track-direction-vertical{width:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track.u-web-scrollbar-both .u-web-scrollbar-track-direction-vertical:after{width:calc(var(--scrollbar-track-size)*.8);height:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-container:has(+.u-web-scrollbar-track-direction-horizontal){padding-bottom:calc(var(--scrollbar-track-size)*.8)}.u-web-scrollbar-size-small.u-web-scrollbar-type-track .u-web-scrollbar-container:has(+.u-web-scrollbar-track-direction-vertical){padding-right:calc(var(--scrollbar-track-size)*.8)}.time-select{width:100%;display:inline-block;position:relative}.time-select--border{border:1px solid rgba(var(--gray-4));border-radius:4px}.time-select--border:focus-within{border-color:#409eff;box-shadow:0 0 0 2px #409eff33}.time-select--disabled{cursor:not-allowed;opacity:.6}.time-select__input-wrapper{border-radius:4px;align-items:center;transition:border-color .2s cubic-bezier(.645,.045,.355,1),background-color .2s linear;display:flex;position:relative}.time-select__input-wrapper:hover{background-color:var(--u-color-fill-2)}.time-select__input-wrapper:focus-within{background-color:var(--u-color-fill-1)}.time-select__prefix{color:#c0c4cc;justify-content:center;align-items:center;padding:0 6px;display:flex}.time-select__input{background:0 0;border:none;outline:none;flex:1;padding:6px 9px;font-size:14px}.time-select__input--small{padding:2px 4px;font-size:13px}.time-select__input--large{padding:8px 10px;font-size:16px}.time-select__input--disabled{cursor:not-allowed;color:#c0c4cc}.time-select__input--readonly{cursor:pointer}.time-select__editable-container{cursor:text;caret-color:#0000;flex:1;align-items:center;display:flex}.time-select__time-part{text-align:center;cursor:text;min-width:20px;font-family:inherit;font-size:inherit;color:inherit;background:0 0;border:1px solid #0000;border-radius:2px;outline:none;padding:1px 2px;transition:all .2s}.time-select__time-part:focus{color:#fff;border-color:#409eff}.time-select__time-part--selected{background-color:#409eff}.time-select__time-part[contenteditable=false]{cursor:not-allowed;color:#c0c4cc;background-color:#f5f7fa}.time-select__separator{color:#909399;-webkit-user-select:none;user-select:none;margin:0 2px;font-weight:400}.time-select__clear{color:#c0c4cc;cursor:pointer;justify-content:center;align-items:center;padding:0 8px;transition:color .2s;display:flex}.time-select__clear:hover{color:#909399}.time-select__icon{width:16px;height:16px}.time-select__dropdown{z-index:1000;background:var(--u-color-bg-popup);box-shadow:var(--u-shadow-lg);border-radius:4px;max-height:200px;margin-top:4px;position:absolute;top:100%;left:0;right:0;overflow:hidden}.time-select__options{max-height:200px}.time-select__option{border-radius:var(--u-radius-small);cursor:pointer;color:var(--u-text-color);margin:4px;padding:8px 12px;font-size:14px;transition:background-color .25s linear}.time-select__option:hover,.time-select__option--selected{color:#fff;background-color:rgba(var(--blue-6))}.time-select__option--selected:hover{background-color:rgba(var(--blue-7))}.time-select-dropdown-enter-active,.time-select-dropdown-leave-active{transition:all .2s}.time-select-dropdown-enter-from,.time-select-dropdown-leave-to{opacity:0;transform:translateY(-10px)}.time-select-dropdown-enter-to,.time-select-dropdown-leave-from{opacity:1;transform:translateY(0)}
|
|
2
2
|
/*$vite$:1*/
|