@luzhaoqi/test 0.0.59 → 0.0.60
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/README.md +33 -25
- package/dist/demo.html +1 -0
- package/dist/static/css/127.61a1eaad.css +94 -0
- package/dist/static/css/127.b886ffd7.css +1 -0
- package/dist/static/fonts/z-icons.446ba73c.woff2 +0 -0
- package/dist/static/fonts/z-icons.7dcff2b7.woff +0 -0
- package/dist/static/fonts/z-icons.81823454.ttf +0 -0
- package/dist/static/img/401.1800ba9e.gif +0 -0
- package/dist/static/img/404.458c248a.png +0 -0
- package/dist/static/img/dark.75b2d0c9.svg +39 -0
- package/dist/static/img/light.f19157cf.svg +39 -0
- package/dist/static/img/login-background.6f6c293d.jpg +0 -0
- package/dist/static/img/profile.74856f8b.jpg +0 -0
- package/dist/test.css +21 -0
- package/package.json +50 -35
- package/dist/dict-T4hW9Ftt.mjs +0 -66
- package/dist/dict-Z2p38ghk.mjs +0 -172
- package/dist/dictEdit-bxCtP05H.mjs +0 -187
- package/dist/favicon.ico +0 -0
- package/dist/index-01ya7Vqb.mjs +0 -246
- package/dist/index-5IYbEOry.mjs +0 -107
- package/dist/index-7_pXJ-cF.mjs +0 -120
- package/dist/index-LkpiywJu.mjs +0 -55
- package/dist/index-NpYJRFIi.mjs +0 -34588
- package/dist/index-PlHtmgrn.mjs +0 -82
- package/dist/index-v7z4M_dZ.mjs +0 -162
- package/dist/index-ziBBs_1s.mjs +0 -19
- package/dist/layout-uwC8cv1_.mjs +0 -11
- package/dist/main-LGxmffHJ.mjs +0 -36090
- package/dist/style.css +0 -11
- package/dist/test-kxtmZdsk.mjs +0 -74
- package/dist/type-w_7XTFit.mjs +0 -157
- package/dist/typeEdit-aT5fm3Fv.mjs +0 -146
- package/dist/z-ui3.mjs +0 -37
- package/dist/z-ui3.umd.js +0 -217
package/README.md
CHANGED
|
@@ -1,35 +1,43 @@
|
|
|
1
|
-
|
|
1
|
+
自动增加版本号
|
|
2
|
+
主题色
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
# z-ui 尽量用rollup打包
|
|
5
|
+
## vue2的版本
|
|
6
|
+
**分为webpack打包合rollup打包,每次发包需要修改package.json中的版本号**
|
|
4
7
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
|
-
|
|
9
|
-
## Customize configuration
|
|
10
|
-
|
|
11
|
-
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
|
12
|
-
|
|
13
|
-
## Project Setup
|
|
14
|
-
|
|
15
|
-
```sh
|
|
16
|
-
npm install
|
|
8
|
+
## webpack命令:
|
|
9
|
+
### npm run lib--webpack
|
|
17
10
|
```
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
```
|
|
22
|
-
|
|
11
|
+
"main": "dist/z-ui.umd.min.js",
|
|
12
|
+
```
|
|
13
|
+
## webpack使用说明 todo有问题未解决
|
|
14
|
+
```js
|
|
15
|
+
import ElementUI from "element-ui";
|
|
16
|
+
import "element-ui/lib/theme-chalk/index.css";
|
|
17
|
+
import ZUI from "@luzhaoqi/z-ui";
|
|
18
|
+
import '@luzhaoqi/z-ui/dist/z-ui.css'
|
|
19
|
+
|
|
20
|
+
Vue.use(ElementUI);
|
|
21
|
+
Vue.use(ZUI);
|
|
23
22
|
```
|
|
24
23
|
|
|
25
|
-
### Compile and Minify for Production
|
|
26
24
|
|
|
27
|
-
|
|
28
|
-
npm run
|
|
25
|
+
## rollup命令:
|
|
26
|
+
### npm run lib--rollup
|
|
29
27
|
```
|
|
28
|
+
"main": "dist/lib-cjs.js",
|
|
29
|
+
或者
|
|
30
|
+
"main": "dist/lib-umd.js",
|
|
31
|
+
```
|
|
32
|
+
|
|
30
33
|
|
|
31
|
-
|
|
34
|
+
## rollup使用说明
|
|
35
|
+
```js
|
|
36
|
+
import ElementUI from "element-ui";
|
|
37
|
+
import "element-ui/lib/theme-chalk/index.css";
|
|
38
|
+
import ZUI from "@luzhaoqi/z-ui";
|
|
39
|
+
import '@luzhaoqi/z-ui/dist/assets/css/index.css'
|
|
32
40
|
|
|
33
|
-
|
|
34
|
-
|
|
41
|
+
Vue.use(ElementUI);
|
|
42
|
+
Vue.use(ZUI);
|
|
35
43
|
```
|
package/dist/demo.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><meta charset="utf-8"><title>test demo</title><script src="./test.umd.js"></script><link rel="stylesheet" href="./test.css"><script>console.log(test)</script>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
.home[data-v-1e70115a] {
|
|
2
|
+
width: 100%;
|
|
3
|
+
height: 100%;
|
|
4
|
+
}
|
|
5
|
+
.login-wrapper {
|
|
6
|
+
height: 100%;
|
|
7
|
+
position: relative;
|
|
8
|
+
}
|
|
9
|
+
.login-wrapper .login-bg {
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 0;
|
|
12
|
+
left: 0;
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 100%;
|
|
15
|
+
display: block;
|
|
16
|
+
z-index: -1;
|
|
17
|
+
-o-object-fit: cover;
|
|
18
|
+
object-fit: cover;
|
|
19
|
+
}
|
|
20
|
+
.login-wrapper:before {
|
|
21
|
+
content: "";
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: 0;
|
|
24
|
+
left: 0;
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: 100%;
|
|
27
|
+
display: block;
|
|
28
|
+
z-index: 1;
|
|
29
|
+
background: #fff;
|
|
30
|
+
opacity: 0;
|
|
31
|
+
}
|
|
32
|
+
.login-wrapper .login {
|
|
33
|
+
display: flex;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
align-items: center;
|
|
36
|
+
position: absolute;
|
|
37
|
+
top: 0;
|
|
38
|
+
left: 0;
|
|
39
|
+
width: 100%;
|
|
40
|
+
height: 100%;
|
|
41
|
+
z-index: 2;
|
|
42
|
+
overflow: auto;
|
|
43
|
+
}
|
|
44
|
+
.login-form {
|
|
45
|
+
border-radius: 6px;
|
|
46
|
+
background: #ffffff;
|
|
47
|
+
width: 400px;
|
|
48
|
+
padding: 25px 25px 5px 25px;
|
|
49
|
+
}
|
|
50
|
+
.login-form .el-input {
|
|
51
|
+
height: 38px;
|
|
52
|
+
}
|
|
53
|
+
.login-form .el-input input {
|
|
54
|
+
height: 38px;
|
|
55
|
+
}
|
|
56
|
+
.login-form .input-icon {
|
|
57
|
+
height: 39px;
|
|
58
|
+
width: 14px;
|
|
59
|
+
margin-left: 2px;
|
|
60
|
+
}
|
|
61
|
+
.login-form .title {
|
|
62
|
+
margin: 0px auto 30px auto;
|
|
63
|
+
text-align: center;
|
|
64
|
+
color: #707070;
|
|
65
|
+
}
|
|
66
|
+
.login-form .login-tip {
|
|
67
|
+
font-size: 13px;
|
|
68
|
+
text-align: center;
|
|
69
|
+
color: #bfbfbf;
|
|
70
|
+
}
|
|
71
|
+
.login-form .login-code {
|
|
72
|
+
width: 33%;
|
|
73
|
+
height: 38px;
|
|
74
|
+
float: right;
|
|
75
|
+
}
|
|
76
|
+
.login-form .login-code img {
|
|
77
|
+
cursor: pointer;
|
|
78
|
+
vertical-align: middle;
|
|
79
|
+
}
|
|
80
|
+
.el-login-footer {
|
|
81
|
+
height: 40px;
|
|
82
|
+
line-height: 40px;
|
|
83
|
+
position: fixed;
|
|
84
|
+
bottom: 0;
|
|
85
|
+
width: 100%;
|
|
86
|
+
text-align: center;
|
|
87
|
+
color: #fff;
|
|
88
|
+
font-family: Arial;
|
|
89
|
+
font-size: 12px;
|
|
90
|
+
letter-spacing: 1px;
|
|
91
|
+
}
|
|
92
|
+
.login-code-img {
|
|
93
|
+
height: 38px;
|
|
94
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.home[data-v-1e70115a]{width:100%;height:100%}.login-wrapper{height:100%;position:relative}.login-wrapper .login-bg{z-index:-1;-o-object-fit:cover;object-fit:cover}.login-wrapper .login-bg,.login-wrapper:before{position:absolute;top:0;left:0;width:100%;height:100%;display:block}.login-wrapper:before{content:"";z-index:1;background:#fff;opacity:0}.login-wrapper .login{display:flex;justify-content:center;align-items:center;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;overflow:auto}.login-form{border-radius:6px;background:#fff;width:400px;padding:25px 25px 5px 25px}.login-form .el-input,.login-form .el-input input{height:38px}.login-form .input-icon{height:39px;width:14px;margin-left:2px}.login-form .title{margin:0 auto 30px auto;text-align:center;color:#707070}.login-form .login-tip{font-size:13px;text-align:center;color:#bfbfbf}.login-form .login-code{width:33%;height:38px;float:right}.login-form .login-code img{cursor:pointer;vertical-align:middle}.el-login-footer{height:40px;line-height:40px;position:fixed;bottom:0;width:100%;text-align:center;color:#fff;font-family:Arial;font-size:12px;letter-spacing:1px}.login-code-img{height:38px}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
5
|
+
<defs>
|
|
6
|
+
<filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">
|
|
7
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
8
|
+
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
9
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
|
10
|
+
<feMerge>
|
|
11
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
12
|
+
<feMergeNode in="SourceGraphic"></feMergeNode>
|
|
13
|
+
</feMerge>
|
|
14
|
+
</filter>
|
|
15
|
+
<rect id="path-2" x="0" y="0" width="48" height="40" rx="4"></rect>
|
|
16
|
+
<filter x="-4.2%" y="-2.5%" width="108.3%" height="110.0%" filterUnits="objectBoundingBox" id="filter-4">
|
|
17
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
18
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
19
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
20
|
+
</filter>
|
|
21
|
+
</defs>
|
|
22
|
+
<g id="配置面板" width="48" height="40" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
23
|
+
<g id="setting-copy-2" width="48" height="40" transform="translate(-1190.000000, -136.000000)">
|
|
24
|
+
<g id="Group-8" width="48" height="40" transform="translate(1167.000000, 0.000000)">
|
|
25
|
+
<g id="Group-5-Copy-5" filter="url(#filter-1)" transform="translate(25.000000, 137.000000)">
|
|
26
|
+
<mask id="mask-3" fill="white">
|
|
27
|
+
<use xlink:href="#path-2"></use>
|
|
28
|
+
</mask>
|
|
29
|
+
<g id="Rectangle-18">
|
|
30
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-2"></use>
|
|
31
|
+
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-2"></use>
|
|
32
|
+
</g>
|
|
33
|
+
<rect id="Rectangle-11" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="48" height="10"></rect>
|
|
34
|
+
<rect id="Rectangle-18" fill="#303648" mask="url(#mask-3)" x="0" y="0" width="16" height="40"></rect>
|
|
35
|
+
</g>
|
|
36
|
+
</g>
|
|
37
|
+
</g>
|
|
38
|
+
</g>
|
|
39
|
+
</svg>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="52px" height="45px" viewBox="0 0 52 45" version="1.1"
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
5
|
+
<defs>
|
|
6
|
+
<filter x="-9.4%" y="-6.2%" width="118.8%" height="122.5%" filterUnits="objectBoundingBox" id="filter-1">
|
|
7
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
8
|
+
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
9
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
|
10
|
+
<feMerge>
|
|
11
|
+
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
|
12
|
+
<feMergeNode in="SourceGraphic"></feMergeNode>
|
|
13
|
+
</feMerge>
|
|
14
|
+
</filter>
|
|
15
|
+
<rect id="path-2" x="0" y="0" width="48" height="40" rx="4"></rect>
|
|
16
|
+
<filter x="-4.2%" y="-2.5%" width="108.3%" height="110.0%" filterUnits="objectBoundingBox" id="filter-4">
|
|
17
|
+
<feOffset dx="0" dy="1" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
18
|
+
<feGaussianBlur stdDeviation="0.5" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
19
|
+
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
20
|
+
</filter>
|
|
21
|
+
</defs>
|
|
22
|
+
<g id="配置面板" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
23
|
+
<g id="setting-copy-2" transform="translate(-1254.000000, -136.000000)">
|
|
24
|
+
<g id="Group-8" transform="translate(1167.000000, 0.000000)">
|
|
25
|
+
<g id="Group-5" filter="url(#filter-1)" transform="translate(89.000000, 137.000000)">
|
|
26
|
+
<mask id="mask-3" fill="white">
|
|
27
|
+
<use xlink:href="#path-2"></use>
|
|
28
|
+
</mask>
|
|
29
|
+
<g id="Rectangle-18">
|
|
30
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-2"></use>
|
|
31
|
+
<use fill="#F0F2F5" fill-rule="evenodd" xlink:href="#path-2"></use>
|
|
32
|
+
</g>
|
|
33
|
+
<rect id="Rectangle-18" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="16" height="40"></rect>
|
|
34
|
+
<rect id="Rectangle-11" fill="#FFFFFF" mask="url(#mask-3)" x="0" y="0" width="48" height="10"></rect>
|
|
35
|
+
</g>
|
|
36
|
+
</g>
|
|
37
|
+
</g>
|
|
38
|
+
</g>
|
|
39
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
package/dist/test.css
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
@charset "UTF-8";@font-face{font-family:z-icons;src:url(/static/fonts/z-icons.446ba73c.woff2) format("woff2"),url(/static/fonts/z-icons.7dcff2b7.woff) format("woff"),url(/static/fonts/z-icons.81823454.ttf) format("truetype")}[class^=z-icon-]{font-family:z-icons!important;font-size:1em;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.z-icon-cascader:before{content:"\e653"}.z-icon-druid:before{content:"\e654"}.z-icon-code:before{content:"\e655"}.z-icon-button:before{content:"\e656"}.z-icon-clipboard:before{content:"\e657"}.z-icon-build:before{content:"\e658"}.z-icon-chart:before{content:"\e659"}.z-icon-peoples:before{content:"\e63f"}.z-icon-form:before{content:"\e640"}.z-icon-job:before{content:"\e641"}.z-icon-dashboard:before{content:"\e642"}.z-icon-date:before{content:"\e643"}.z-icon-a-404:before{content:"\e644"}.z-icon-link:before{content:"\e645"}.z-icon-excel:before{content:"\e646"}.z-icon-dict:before{content:"\e647"}.z-icon-eye-open:before{content:"\e648"}.z-icon-education:before{content:"\e649"}.z-icon-icon:before{content:"\e64a"}.z-icon-date-range:before{content:"\e64b"}.z-icon-email:before{content:"\e64c"}.z-icon-bug:before{content:"\e64d"}.z-icon-documentation:before{content:"\e64e"}.z-icon-edit:before{content:"\e64f"}.z-icon-download:before{content:"\e650"}.z-icon-component:before{content:"\e651"}.z-icon-checkbox:before{content:"\e652"}.z-icon-drag:before{content:"\e62e"}.z-icon-lock:before{content:"\e62f"}.z-icon-radio:before{content:"\e630"}.z-icon-server:before{content:"\e631"}.z-icon-list:before{content:"\e632"}.z-icon-nested:before{content:"\e633"}.z-icon-guide:before{content:"\e634"}.z-icon-message:before{content:"\e635"}.z-icon-language:before{content:"\e636"}.z-icon-size:before{content:"\e637"}.z-icon-fullscreen:before{content:"\e638"}.z-icon-eye:before{content:"\e639"}.z-icon-money:before{content:"\e63a"}.z-icon-log:before{content:"\e63b"}.z-icon-color:before{content:"\e605"}.z-icon-exit-fullscreen:before{content:"\e606"}.z-icon-rate:before{content:"\e63c"}.z-icon-logininfor:before{content:"\e63d"}.z-icon-example:before{content:"\e63e"}.z-icon-star:before{content:"\e61e"}.z-icon-redis:before{content:"\e61f"}.z-icon-online:before{content:"\e620"}.z-icon-password:before{content:"\e621"}.z-icon-table:before{content:"\e622"}.z-icon-time-range:before{content:"\e623"}.z-icon-international:before{content:"\e607"}.z-icon-shopping:before{content:"\e624"}.z-icon-input:before{content:"\e625"}.z-icon-tree-table:before{content:"\e626"}.z-icon-pdf:before{content:"\e627"}.z-icon-redis-list:before{content:"\e628"}.z-icon-swagger:before{content:"\e629"}.z-icon-upload:before{content:"\e62a"}.z-icon-monitor:before{content:"\e62b"}.z-icon-github:before{content:"\e62c"}.z-icon-select:before{content:"\e62d"}.z-icon-people:before{content:"\e609"}.z-icon-slider:before{content:"\e60a"}.z-icon-validCode:before{content:"\e60b"}.z-icon-time:before{content:"\e60c"}.z-icon-tab:before{content:"\e60d"}.z-icon-theme:before{content:"\e60e"}.z-icon-number:before{content:"\e608"}.z-icon-tree:before{content:"\e60f"}.z-icon-post:before{content:"\e610"}.z-icon-wechat:before{content:"\e611"}.z-icon-user:before{content:"\e612"}.z-icon-skill:before{content:"\e613"}.z-icon-row:before{content:"\e614"}.z-icon-zip:before{content:"\e615"}.z-icon-switch:before{content:"\e616"}.z-icon-qq:before{content:"\e617"}.z-icon-tool:before{content:"\e618"}.z-icon-question:before{content:"\e619"}.z-icon-phone:before{content:"\e61a"}.z-icon-textarea:before{content:"\e61b"}.z-icon-system:before{content:"\e61c"}.z-icon-search:before{content:"\e61d"}#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:2px solid transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .bar,.nprogress-custom-parent #nprogress .spinner{position:absolute}@keyframes nprogress-spinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}[data-v-6d766bab]:export{menuColor:#bfcbd9;menuLightColor:rgba(0,0,0,.7);menuColorActive:#f4f4f5;menuBackground:#304156;menuLightBackground:#fff;subMenuBackground:#1f2d3d;subMenuHover:#001528;sideBarWidth:200px;logoTitleColor:#fff;logoLightTitleColor:#001529}.app-main[data-v-6d766bab]{width:100%;position:relative;overflow:hidden;padding:20px;color:#30b08f;min-height:calc(100vh - 50px)}.fixed-header+.app-main[data-v-6d766bab]{padding-top:70px;height:100%;overflow:auto}.hasTagsView .app-main[data-v-6d766bab]{min-height:calc(100vh - 84px)}.hasTagsView .fixed-header+.app-main[data-v-6d766bab]{padding-top:104px}.el-popup-parent--hidden .fixed-header{padding-right:6px}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background-color:#f1f1f1}::-webkit-scrollbar-thumb{background-color:silver;border-radius:3px}.app-breadcrumb.el-breadcrumb[data-v-36c3add7]{display:inline-block;font-size:14px;line-height:50px;margin-left:8px}.app-breadcrumb.el-breadcrumb .no-redirect[data-v-36c3add7]{color:#97a8be;cursor:text}.topmenu-container.el-menu--horizontal>.el-menu-item{float:left;height:50px!important;line-height:50px!important;color:#999093!important;padding:0 5px!important;margin:0 10px!important}.el-menu--horizontal>.el-submenu.is-active .el-submenu__title,.topmenu-container.el-menu--horizontal>.el-menu-item.is-active{border-bottom:2px solid var(--theme)!important;color:#303133}.topmenu-container.el-menu--horizontal>.el-submenu .el-submenu__title{float:left;height:50px!important;line-height:50px!important;color:#999093!important;padding:0 5px!important;margin:0 10px!important}.hamburger[data-v-425a9762]{display:inline-block;vertical-align:middle;width:20px;height:20px}.hamburger.is-active[data-v-425a9762]{transform:rotate(180deg)}.screenfull[data-v-2fa37e4a]{display:inline-block;cursor:pointer;fill:#5a5e66;width:20px;height:20px;vertical-align:10px;font-size:18px}.header-search[data-v-6c094a38]{font-size:0!important}.header-search .search-icon[data-v-6c094a38]{cursor:pointer;font-size:18px;vertical-align:middle;display:inline-block}.header-search .header-search-select[data-v-6c094a38]{font-size:18px;transition:width .2s;width:0;overflow:hidden;background:transparent;border-radius:0;display:inline-block;vertical-align:middle}.header-search .header-search-select[data-v-6c094a38] .el-input__inner{border-radius:0;border:0;padding-left:0;padding-right:0;box-shadow:none!important;border-bottom:1px solid #d9d9d9;vertical-align:middle}.header-search.show .header-search-select[data-v-6c094a38]{width:210px;margin-left:10px}.navbar[data-v-3eb51c8a]{height:50px;overflow:hidden;position:relative;background:#fff;box-shadow:0 1px 4px rgba(0,21,41,.08)}.navbar .hamburger-container[data-v-3eb51c8a]{line-height:46px;height:100%;float:left;cursor:pointer;transition:background .3s;-webkit-tap-highlight-color:transparent}.navbar .hamburger-container[data-v-3eb51c8a]:hover{background:rgba(0,0,0,.025)}.navbar .breadcrumb-container[data-v-3eb51c8a]{float:left}.navbar .topmenu-container[data-v-3eb51c8a]{position:absolute;left:50px}.navbar .errLog-container[data-v-3eb51c8a]{display:inline-block;vertical-align:top}.navbar .right-menu[data-v-3eb51c8a]{float:right;height:100%;line-height:50px}.navbar .right-menu[data-v-3eb51c8a]:focus{outline:none}.navbar .right-menu .right-menu-item[data-v-3eb51c8a]{display:inline-block;padding:0 8px;height:100%;font-size:18px;color:#5a5e66;vertical-align:text-bottom}.navbar .right-menu .right-menu-item.hover-effect[data-v-3eb51c8a]{cursor:pointer;transition:background .3s}.navbar .right-menu .right-menu-item.hover-effect[data-v-3eb51c8a]:hover{background:rgba(0,0,0,.025)}.navbar .right-menu .avatar-container[data-v-3eb51c8a]{margin-right:30px}.navbar .right-menu .avatar-container .avatar-wrapper[data-v-3eb51c8a]{margin-top:5px;position:relative}.navbar .right-menu .avatar-container .avatar-wrapper .user-avatar[data-v-3eb51c8a]{cursor:pointer;width:40px;height:40px;border-radius:10px}.navbar .right-menu .avatar-container .avatar-wrapper .el-icon-caret-bottom[data-v-3eb51c8a]{cursor:pointer;position:absolute;right:-20px;top:25px;font-size:12px}.sidebarLogoFade-enter-active[data-v-313b3825]{transition:opacity 1.5s}.sidebarLogoFade-enter[data-v-313b3825],.sidebarLogoFade-leave-to[data-v-313b3825]{opacity:0}.sidebar-logo-container[data-v-313b3825]{position:relative;width:100%;height:50px;line-height:50px;background:#2b2f3a;text-align:center;overflow:hidden}.sidebar-logo-container .sidebar-logo-link[data-v-313b3825]{height:100%;width:100%}.sidebar-logo-container .sidebar-logo-link .sidebar-logo[data-v-313b3825]{width:32px;height:32px;vertical-align:middle;margin-right:12px}.sidebar-logo-container .sidebar-logo-link .sidebar-title[data-v-313b3825]{display:inline-block;margin:0;color:#fff;font-weight:600;line-height:50px;font-size:14px;font-family:Avenir,Helvetica Neue,Arial,Helvetica,sans-serif;vertical-align:middle}.sidebar-logo-container.collapse .sidebar-logo[data-v-313b3825]{margin-right:0}.item-box[data-v-37dbd4e3]{width:100%;display:flex;align-items:center;justify-content:flex-start;height:100%;position:relative}.item-box .svg-icon[data-v-37dbd4e3]{width:14px;height:14px;position:relative;display:block}.item-box .svg-icon .z-icon[data-v-37dbd4e3]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.item-box .title-content[data-v-37dbd4e3]{flex:1;position:relative;overflow:hidden;height:100%}.item-box .title-wrapper[data-v-37dbd4e3]{position:absolute;top:0;left:0;width:100%;height:100%;padding-left:16px}.item-box .title-wrapper.margin[data-v-37dbd4e3]{padding-right:25px}.item-box .title-show[data-v-37dbd4e3]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;display:block;width:100%}.item-box .title-hide[data-v-37dbd4e3]{position:absolute;top:0;left:0;height:0;overflow:hidden}.scroll-container[data-v-c40e44ea]{white-space:nowrap;position:relative;overflow:hidden;width:100%}.scroll-container[data-v-c40e44ea] .el-scrollbar__bar{bottom:0}.scroll-container[data-v-c40e44ea] .el-scrollbar__wrap{height:49px}.tags-view-container[data-v-e5c27a1e]{height:34px;width:100%;background:#fff;border-bottom:1px solid #d8dce5;box-shadow:0 1px 3px 0 rgba(0,0,0,.12),0 0 3px 0 rgba(0,0,0,.04)}.tags-view-container .tags-view-wrapper .tags-view-item[data-v-e5c27a1e]{display:inline-block;position:relative;cursor:pointer;height:26px;line-height:26px;border:1px solid #d8dce5;color:#495060;background:#fff;padding:0 8px;font-size:12px;margin-left:5px;margin-top:4px}.tags-view-container .tags-view-wrapper .tags-view-item[data-v-e5c27a1e]:first-of-type{margin-left:15px}.tags-view-container .tags-view-wrapper .tags-view-item[data-v-e5c27a1e]:last-of-type{margin-right:15px}.tags-view-container .tags-view-wrapper .tags-view-item.active[data-v-e5c27a1e]{background-color:#42b983;color:#fff;border-color:#42b983}.tags-view-container .tags-view-wrapper .tags-view-item.active[data-v-e5c27a1e]:before{content:"";background:#fff;display:inline-block;width:8px;height:8px;border-radius:50%;position:relative;margin-right:2px}.tags-view-container .contextmenu[data-v-e5c27a1e]{margin:0;background:#fff;z-index:3000;position:absolute;list-style-type:none;padding:5px 0;border-radius:4px;font-size:12px;font-weight:400;color:#333;box-shadow:2px 2px 3px 0 rgba(0,0,0,.3)}.tags-view-container .contextmenu li[data-v-e5c27a1e]{margin:0;padding:7px 16px;cursor:pointer}.tags-view-container .contextmenu li[data-v-e5c27a1e]:hover{background:#eee}.tags-view-wrapper .tags-view-item .el-icon-close{width:16px;height:16px;vertical-align:2px;border-radius:50%;text-align:center;transition:all .3s cubic-bezier(.645,.045,.355,1);transform-origin:100% 50%}.tags-view-wrapper .tags-view-item .el-icon-close:before{transform:scale(.6);display:inline-block;vertical-align:-3px}.tags-view-wrapper .tags-view-item .el-icon-close:hover{background-color:#b4bccc;color:#fff}.rightPanel-background[data-v-1a526ee0]{position:fixed;top:0;left:0;opacity:0;transition:opacity .3s cubic-bezier(.7,.3,.1,1);background:rgba(0,0,0,.2);z-index:-1}.rightPanel[data-v-1a526ee0]{width:100%;max-width:260px;height:100vh;position:fixed;top:0;right:0;box-shadow:0 0 15px 0 rgba(0,0,0,.05);transition:all .25s cubic-bezier(.7,.3,.1,1);transform:translate(100%);background:#fff;z-index:40000}.handle-button[data-v-1a526ee0]{width:48px;height:48px;position:absolute;left:-48px;text-align:center;font-size:24px;border-radius:6px 0 0 6px!important;z-index:0;pointer-events:auto;cursor:pointer;color:#fff;line-height:48px}.handle-button i[data-v-1a526ee0]{font-size:24px;line-height:48px}.setting-drawer-content .setting-drawer-title[data-v-4c50ea9e]{margin-bottom:12px;color:rgba(0,0,0,.85);font-size:14px;line-height:22px;font-weight:700}.setting-drawer-content .setting-drawer-block-checbox[data-v-4c50ea9e]{display:flex;justify-content:flex-start;align-items:center;margin-top:10px;margin-bottom:20px}.setting-drawer-content .setting-drawer-block-checbox .setting-drawer-block-checbox-item[data-v-4c50ea9e]{position:relative;margin-right:16px;border-radius:2px;cursor:pointer}.setting-drawer-content .setting-drawer-block-checbox .setting-drawer-block-checbox-item img[data-v-4c50ea9e]{width:48px;height:48px}.setting-drawer-content .setting-drawer-block-checbox .setting-drawer-block-checbox-item .setting-drawer-block-checbox-selectIcon[data-v-4c50ea9e]{position:absolute;top:0;right:0;width:100%;height:100%;padding-top:15px;padding-left:24px;color:#1890ff;font-weight:700;font-size:14px}.drawer-container[data-v-4c50ea9e]{padding:20px;font-size:14px;line-height:1.5;word-wrap:break-word}.drawer-container .drawer-title[data-v-4c50ea9e]{margin-bottom:12px;color:rgba(0,0,0,.85);font-size:14px;line-height:22px}.drawer-container .drawer-item[data-v-4c50ea9e]{color:rgba(0,0,0,.65);font-size:14px;padding:12px 0}.drawer-container .drawer-switch[data-v-4c50ea9e]{float:right}[data-v-3cbaf43a]:export{menuColor:#bfcbd9;menuLightColor:rgba(0,0,0,.7);menuColorActive:#f4f4f5;menuBackground:#304156;menuLightBackground:#fff;subMenuBackground:#1f2d3d;subMenuHover:#001528;sideBarWidth:200px;logoTitleColor:#fff;logoLightTitleColor:#001529}.app-wrapper[data-v-3cbaf43a]{position:relative;height:100%;width:100%}.app-wrapper[data-v-3cbaf43a]:after{content:"";display:table;clear:both}.app-wrapper.mobile.openSidebar[data-v-3cbaf43a]{position:fixed;top:0}.drawer-bg[data-v-3cbaf43a]{background:#000;opacity:.3;width:100%;top:0;height:100%;position:absolute;z-index:999}.fixed-header[data-v-3cbaf43a]{position:fixed;top:0;right:0;z-index:9;width:calc(100% - 200px);transition:width .28s}.hideSidebar .fixed-header[data-v-3cbaf43a]{width:calc(100% - 54px)}.mobile .fixed-header[data-v-3cbaf43a],.sidebarHide .fixed-header[data-v-3cbaf43a]{width:100%}.login-wrapper{height:100%;position:relative}.login-wrapper .login-bg{z-index:-1;-o-object-fit:cover;object-fit:cover}.login-wrapper .login-bg,.login-wrapper:before{position:absolute;top:0;left:0;width:100%;height:100%;display:block}.login-wrapper:before{content:"";z-index:1;background:#fff;opacity:0}.login-wrapper .login{display:flex;justify-content:center;align-items:center;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;overflow:auto}.login-form{border-radius:6px;background:#fff;width:400px;padding:25px 25px 5px 25px}.login-form .el-input,.login-form .el-input input{height:38px}.login-form .input-icon{height:39px;width:14px;margin-left:2px}.login-form .title{margin:0 auto 30px auto;text-align:center;color:#707070}.login-form .login-tip{font-size:13px;text-align:center;color:#bfbfbf}.login-form .login-code{width:33%;height:38px;float:right}.login-form .login-code img{cursor:pointer;vertical-align:middle}.el-login-footer{height:40px;line-height:40px;position:fixed;bottom:0;width:100%;text-align:center;color:#fff;font-family:Arial;font-size:12px;letter-spacing:1px}.login-code-img{height:38px}.wscn-http404-container[data-v-48a9eb12]{transform:translate(-50%,-50%);position:absolute;top:40%;left:50%}.wscn-http404[data-v-48a9eb12]{position:relative;width:1200px;padding:0 50px;overflow:hidden}.wscn-http404 .pic-404[data-v-48a9eb12]{position:relative;float:left;width:600px;overflow:hidden}.wscn-http404 .pic-404__parent[data-v-48a9eb12]{width:100%}.wscn-http404 .pic-404__child[data-v-48a9eb12]{position:absolute}.wscn-http404 .pic-404__child.left[data-v-48a9eb12]{width:80px;top:17px;left:220px;opacity:0;animation-name:cloudLeft-48a9eb12;animation-duration:2s;animation-timing-function:linear;animation-fill-mode:forwards;animation-delay:1s}.wscn-http404 .pic-404__child.mid[data-v-48a9eb12]{width:46px;top:10px;left:420px;opacity:0;animation-name:cloudMid-48a9eb12;animation-duration:2s;animation-timing-function:linear;animation-fill-mode:forwards;animation-delay:1.2s}.wscn-http404 .pic-404__child.right[data-v-48a9eb12]{width:62px;top:100px;left:500px;opacity:0;animation-name:cloudRight-48a9eb12;animation-duration:2s;animation-timing-function:linear;animation-fill-mode:forwards;animation-delay:1s}@keyframes cloudLeft-48a9eb12{0%{top:17px;left:220px;opacity:0}20%{top:33px;left:188px;opacity:1}80%{top:81px;left:92px;opacity:1}to{top:97px;left:60px;opacity:0}}@keyframes cloudMid-48a9eb12{0%{top:10px;left:420px;opacity:0}20%{top:40px;left:360px;opacity:1}70%{top:130px;left:180px;opacity:1}to{top:160px;left:120px;opacity:0}}@keyframes cloudRight-48a9eb12{0%{top:100px;left:500px;opacity:0}20%{top:120px;left:460px;opacity:1}80%{top:180px;left:340px;opacity:1}to{top:200px;left:300px;opacity:0}}.wscn-http404 .bullshit[data-v-48a9eb12]{position:relative;float:left;width:300px;padding:30px 0;overflow:hidden}.wscn-http404 .bullshit__oops[data-v-48a9eb12]{font-size:32px;font-weight:700;line-height:40px;color:#1482f0;opacity:0;margin-bottom:20px;animation-name:slideUp-48a9eb12;animation-duration:.5s;animation-fill-mode:forwards}.wscn-http404 .bullshit__headline[data-v-48a9eb12]{font-size:20px;line-height:24px;color:#222;font-weight:700;opacity:0;margin-bottom:10px;animation-name:slideUp-48a9eb12;animation-duration:.5s;animation-delay:.1s;animation-fill-mode:forwards}.wscn-http404 .bullshit__info[data-v-48a9eb12]{font-size:13px;line-height:21px;color:grey;opacity:0;margin-bottom:30px;animation-name:slideUp-48a9eb12;animation-duration:.5s;animation-delay:.2s;animation-fill-mode:forwards}.wscn-http404 .bullshit__return-home[data-v-48a9eb12]{display:block;float:left;width:110px;height:36px;background:#1482f0;border-radius:100px;text-align:center;color:#fff;opacity:0;font-size:14px;line-height:36px;cursor:pointer;animation-name:slideUp-48a9eb12;animation-duration:.5s;animation-delay:.3s;animation-fill-mode:forwards}@keyframes slideUp-48a9eb12{0%{transform:translateY(60px);opacity:0}to{transform:translateY(0);opacity:1}}.errPage-container[data-v-cfb0dcc2]{width:800px;max-width:100%;margin:100px auto}.errPage-container .pan-back-btn[data-v-cfb0dcc2]{background:#008489;color:#fff;border:none!important}.errPage-container .pan-gif[data-v-cfb0dcc2]{margin:0 auto;display:block}.errPage-container .pan-img[data-v-cfb0dcc2]{display:block;margin:0 auto;width:100%}.errPage-container .text-jumbo[data-v-cfb0dcc2]{font-size:60px;font-weight:700;color:#484848;margin:40px 0;line-height:1.1}.errPage-container .list-unstyled[data-v-cfb0dcc2]{font-size:14px}.errPage-container .list-unstyled li[data-v-cfb0dcc2]{padding-bottom:5px}.errPage-container .list-unstyled a[data-v-cfb0dcc2]{color:#008489;text-decoration:none}.errPage-container .list-unstyled a[data-v-cfb0dcc2]:hover{text-decoration:underline}.errPage-container h2[data-v-cfb0dcc2]{font-size:24px;margin:20px 0;font-weight:400}.errPage-container h6[data-v-cfb0dcc2]{font-size:12px;margin:24px 0;font-weight:400}.avatar-wrapper .img-lg[data-v-475eede2]{width:120px;height:120px}.avatar-wrapper .img-circle[data-v-475eede2]{border-radius:50%}.user-info-head[data-v-475eede2]{position:relative;display:inline-block;height:120px}.user-info-head[data-v-475eede2]:hover:after{content:"+";position:absolute;left:0;right:0;top:0;bottom:0;color:#eee;background:rgba(0,0,0,.5);font-size:24px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;cursor:pointer;line-height:110px;border-radius:50%}.avatar-upload-preview[data-v-475eede2]{position:relative;top:50%;left:50%;transform:translate(-50%,-50%);width:200px;height:200px;border-radius:50%;box-shadow:0 0 4px #ccc;overflow:hidden}.list-group-striped>.list-group-item[data-v-feacbb58]{border-left:0;border-right:0;border-radius:0;padding-left:0;padding-right:0}.list-group[data-v-feacbb58]{padding-left:0;list-style:none;margin-top:16px}.list-group-item[data-v-feacbb58]{border-bottom:1px solid #e7eaec;border-top:1px solid #e7eaec;margin-bottom:-1px;padding:11px 0;font-size:13px}.pull-right[data-v-feacbb58]{float:right!important}.text-center[data-v-feacbb58]{text-align:center}.z-table-comp .z-table-header-btn-group[data-v-7d5c0be2]{padding-bottom:10px;display:flex}.z-table-comp .z-table-header-btn-group .leftMenu[data-v-7d5c0be2]{flex:1}.z-table-comp .z-table-header-btn-group .rightMenu[data-v-7d5c0be2]{display:flex;align-items:center}.z-table-comp .z-table-header-btn-group .rightMenu.marginLf[data-v-7d5c0be2]{margin-left:20px}.z-table-comp .z-table-header-btn-group .rightMenu.marginLf[data-v-7d5c0be2]:first-child{margin-left:0}.z-table-comp .z-table-header-btn-group .rightMenu>.content[data-v-7d5c0be2]{flex:1;margin-right:20px}.z-table-comp .z-table-header-btn-group .rightMenu>.content[data-v-7d5c0be2]:only-child{margin-right:0}.z-table-comp .z-table-header-btn-group .rightMenu[data-v-7d5c0be2]:only-child{flex:1}.z-table-comp .z-table-header-btn-group .rightMenu:only-child>.content[data-v-7d5c0be2]:only-child{text-align:right}.z-table-comp .btn-box[data-v-7d5c0be2]{display:flex;align-items:center;justify-content:center;width:100%}.z-table-comp .btn-box[data-v-7d5c0be2] .el-button{padding:0!important}.z-table-comp .pagination-box[data-v-7d5c0be2]{text-align:right}.z-table-comp .pagination-box[data-v-7d5c0be2] .el-pagination{margin-top:25px}.z-list-form .query-item[data-v-236f1077]:first-child{display:none}.el-tag+.el-tag[data-v-51c18f60]{margin-left:10px}.z-dialog[data-v-28ea4a02] .el-dialog:not(.is-fullscreen){margin-top:6vh!important}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:""}table{border-collapse:collapse;border-spacing:0}*{box-sizing:border-box}body,html{overflow:hidden}#app,body,html{width:100%;height:100%}#app{overflow:auto}:export{menuColor:#bfcbd9;menuLightColor:rgba(0,0,0,.7);menuColorActive:#f4f4f5;menuBackground:#304156;menuLightBackground:#fff;subMenuBackground:#1f2d3d;subMenuHover:#001528;sideBarWidth:200px;logoTitleColor:#fff;logoLightTitleColor:#001529}.app{width:100%}.app,.app .main-container{height:100%;position:relative}.app .main-container{transition:margin-left .28s;margin-left:200px;overflow:auto}.app .sidebarHide{margin-left:0!important}.app .sidebar-container{transition:width .28s;width:200px!important;background-color:#304156;height:100%;position:fixed;font-size:0;top:0;bottom:0;left:0;z-index:1001;overflow:hidden;box-shadow:2px 0 6px rgba(0,21,41,.35)}.app .sidebar-container .horizontal-collapse-transition{transition:width 0s ease-in-out,padding-left 0s ease-in-out,padding-right 0s ease-in-out}.app .sidebar-container .scrollbar-wrapper{overflow-x:hidden!important}.app .sidebar-container .el-scrollbar__bar.is-vertical{right:0}.app .sidebar-container .el-scrollbar{height:100%}.app .sidebar-container.has-logo .el-scrollbar{height:calc(100% - 50px)}.app .sidebar-container .is-horizontal{display:none}.app .sidebar-container a{display:inline-block;width:100%;text-decoration:none}.app .sidebar-container .el-menu{border:none;height:100%;width:100%!important}.app .sidebar-container .el-submenu__title:hover,.app .sidebar-container .submenu-title-noDropdown:hover{background-color:rgba(0,0,0,.06)!important}.app .sidebar-container .theme-dark .is-active>.el-submenu__title{color:#f4f4f5!important}.app .sidebar-container .el-submenu .el-menu-item,.app .sidebar-container .nest-menu .el-submenu>.el-submenu__title{min-width:200px!important}.app .sidebar-container .el-submenu .el-menu-item:hover,.app .sidebar-container .nest-menu .el-submenu>.el-submenu__title:hover{background-color:rgba(0,0,0,.06)!important}.app .sidebar-container .theme-dark .el-submenu .el-menu-item,.app .sidebar-container .theme-dark .nest-menu .el-submenu>.el-submenu__title{background-color:#1f2d3d!important}.app .sidebar-container .theme-dark .el-submenu .el-menu-item:hover,.app .sidebar-container .theme-dark .nest-menu .el-submenu>.el-submenu__title:hover{background-color:#001528!important}.app .hideSidebar .sidebar-container{width:54px!important}.app .hideSidebar .main-container{margin-left:54px}.app .hideSidebar .submenu-title-noDropdown,.app .hideSidebar .submenu-title-noDropdown .el-tooltip{padding:0!important;position:relative}.app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon{margin-left:20px}.app .hideSidebar .submenu-title-noDropdown .el-tooltip .title-box{display:none}.app .hideSidebar .el-submenu{overflow:hidden}.app .hideSidebar .el-submenu>.el-submenu__title{padding:0!important}.app .hideSidebar .el-submenu>.el-submenu__title .svg-icon{margin-left:20px}.app .hideSidebar .el-menu--collapse .el-submenu>.el-submenu__title>span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.app .hideSidebar .el-menu--collapse .el-submenu>.el-submenu__title .title-box{display:none}.app .el-menu--collapse .el-menu .el-submenu{min-width:200px!important}.app .mobile .main-container{margin-left:0}.app .mobile .sidebar-container{transition:transform .28s;width:200px!important}.app .mobile.hideSidebar .sidebar-container{pointer-events:none;transition-duration:.3s;transform:translate3d(-200px,0,0)}.app .withoutAnimation .main-container,.app .withoutAnimation .sidebar-container{transition:none}.el-menu--vertical .el-menu-item:hover,.el-menu--vertical .nest-menu .el-submenu>.el-submenu__title:hover{background-color:rgba(0,0,0,.06)!important}.el-menu--vertical>.el-menu--popup{max-height:100vh;overflow-y:auto}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-track-piece{background:#d3dce6}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar{width:6px}.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-thumb{background:#99a9bf;border-radius:20px}.el-form .el-input-number,.el-form .el-select{width:100%}[data-v-65f5141c].hide .el-upload--picture-card{display:none}[data-v-65f5141c] .el-list-enter-active,[data-v-65f5141c] .el-list-leave-active{transition:all 0s}.el-list-leave-active[data-v-65f5141c],[data-v-65f5141c] .el-list-enter{opacity:0;transform:translateY(0)}.upload-file-uploader[data-v-14ef5d0e]{margin-bottom:5px}.upload-file-list .el-upload-list__item[data-v-14ef5d0e]{border:1px solid #e4e7ed;line-height:2;margin-bottom:10px;position:relative}.upload-file-list .ele-upload-list__item-content[data-v-14ef5d0e]{display:flex;justify-content:space-between;align-items:center;color:inherit}.ele-upload-list__item-content-action .el-link[data-v-14ef5d0e]{margin-right:10px}.el-image[data-v-3ec72fbd]{border-radius:5px;background-color:#ebeef5;box-shadow:0 0 5px 1px #ccc}.el-image[data-v-3ec72fbd] .el-image__inner{transition:all .3s;cursor:pointer}.el-image[data-v-3ec72fbd] .el-image__inner:hover{transform:scale(1.2)}.el-image[data-v-3ec72fbd] .image-slot{display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#909399;font-size:30px}
|
|
2
|
+
/*!
|
|
3
|
+
* Quill Editor v1.3.7
|
|
4
|
+
* https://quilljs.com/
|
|
5
|
+
* Copyright (c) 2014, Jason Chen
|
|
6
|
+
* Copyright (c) 2013, salesforce.com
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/*!
|
|
10
|
+
* Quill Editor v1.3.7
|
|
11
|
+
* https://quilljs.com/
|
|
12
|
+
* Copyright (c) 2014, Jason Chen
|
|
13
|
+
* Copyright (c) 2013, salesforce.com
|
|
14
|
+
*/.ql-snow .ql-toolbar:after,.ql-snow.ql-toolbar:after{clear:both;content:"";display:table}.ql-snow .ql-toolbar button,.ql-snow.ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow .ql-toolbar button svg,.ql-snow.ql-toolbar button svg{float:left;height:100%}.ql-snow .ql-toolbar button:active:hover,.ql-snow.ql-toolbar button:active:hover{outline:none}.ql-snow .ql-toolbar input.ql-image[type=file],.ql-snow.ql-toolbar input.ql-image[type=file]{display:none}.ql-snow .ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar button.ql-active,.ql-snow .ql-toolbar button:focus,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar button.ql-active,.ql-snow.ql-toolbar button:focus,.ql-snow.ql-toolbar button:hover{color:#06c}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill{fill:#06c}.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter{stroke:#06c}@media (pointer:coarse){.ql-snow .ql-toolbar button:hover:not(.ql-active),.ql-snow.ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow,.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:"";display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-stroke.ql-thin,.ql-snow .ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label:before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-item:before,.ql-snow .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-item:before,.ql-snow .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-item:before,.ql-snow .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:0 2px 8px rgba(0,0,0,.2)}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label,.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow+.ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip:before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action:after{border-right:1px solid #ccc;content:"Edit";margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove:before{content:"Remove";margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action:after{border-right:0;content:"Save";padding-right:0}.ql-snow .ql-tooltip[data-mode=link]:before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]:before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]:before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}
|
|
15
|
+
|
|
16
|
+
/*!
|
|
17
|
+
* Quill Editor v1.3.7
|
|
18
|
+
* https://quilljs.com/
|
|
19
|
+
* Copyright (c) 2014, Jason Chen
|
|
20
|
+
* Copyright (c) 2013, salesforce.com
|
|
21
|
+
*/.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;-o-tab-size:4;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6,.ql-editor ol,.ql-editor p,.ql-editor pre,.ql-editor ul{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"\2022"}.ql-editor ul[data-checked=false],.ql-editor ul[data-checked=true]{pointer-events:none}.ql-editor ul[data-checked=false]>li *,.ql-editor ul[data-checked=true]>li *{pointer-events:all}.ql-editor ul[data-checked=false]>li:before,.ql-editor ul[data-checked=true]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"\2611"}.ql-editor ul[data-checked=false]>li:before{content:"\2610"}.ql-editor li:before{display:inline-block;white-space:nowrap;width:1.2em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em;margin-right:.3em;text-align:right}.ql-editor li.ql-direction-rtl:before{margin-left:.3em;margin-right:-1.5em}.ql-editor ol li:not(.ql-direction-rtl),.ql-editor ul li:not(.ql-direction-rtl){padding-left:1.5em}.ql-editor ol li.ql-direction-rtl,.ql-editor ul li.ql-direction-rtl{padding-right:1.5em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-bubble .ql-toolbar:after,.ql-bubble.ql-toolbar:after{clear:both;content:"";display:table}.ql-bubble .ql-toolbar button,.ql-bubble.ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-bubble .ql-toolbar button svg,.ql-bubble.ql-toolbar button svg{float:left;height:100%}.ql-bubble .ql-toolbar button:active:hover,.ql-bubble.ql-toolbar button:active:hover{outline:none}.ql-bubble .ql-toolbar input.ql-image[type=file],.ql-bubble.ql-toolbar input.ql-image[type=file]{display:none}.ql-bubble .ql-toolbar .ql-picker-item.ql-selected,.ql-bubble .ql-toolbar .ql-picker-item:hover,.ql-bubble .ql-toolbar .ql-picker-label.ql-active,.ql-bubble .ql-toolbar .ql-picker-label:hover,.ql-bubble .ql-toolbar button.ql-active,.ql-bubble .ql-toolbar button:focus,.ql-bubble .ql-toolbar button:hover,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,.ql-bubble.ql-toolbar .ql-picker-item:hover,.ql-bubble.ql-toolbar .ql-picker-label.ql-active,.ql-bubble.ql-toolbar .ql-picker-label:hover,.ql-bubble.ql-toolbar button.ql-active,.ql-bubble.ql-toolbar button:focus,.ql-bubble.ql-toolbar button:hover{color:#fff}.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button.ql-active .ql-fill,.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:focus .ql-fill,.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-bubble .ql-toolbar button:hover .ql-fill,.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button.ql-active .ql-fill,.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:focus .ql-fill,.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:hover .ql-fill,.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill{fill:#fff}.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-bubble .ql-toolbar button.ql-active .ql-stroke,.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,.ql-bubble .ql-toolbar button:focus .ql-stroke,.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,.ql-bubble .ql-toolbar button:hover .ql-stroke,.ql-bubble .ql-toolbar button:hover .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-bubble.ql-toolbar button.ql-active .ql-stroke,.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,.ql-bubble.ql-toolbar button:focus .ql-stroke,.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,.ql-bubble.ql-toolbar button:hover .ql-stroke,.ql-bubble.ql-toolbar button:hover .ql-stroke-miter{stroke:#fff}@media (pointer:coarse){.ql-bubble .ql-toolbar button:hover:not(.ql-active),.ql-bubble.ql-toolbar button:hover:not(.ql-active){color:#ccc}.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#ccc}.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#ccc}}.ql-bubble,.ql-bubble *{box-sizing:border-box}.ql-bubble .ql-hidden{display:none}.ql-bubble .ql-out-bottom,.ql-bubble .ql-out-top{visibility:hidden}.ql-bubble .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-bubble .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-bubble .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-bubble .ql-formats{display:inline-block;vertical-align:middle}.ql-bubble .ql-formats:after{clear:both;content:"";display:table}.ql-bubble .ql-stroke{fill:none;stroke:#ccc;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-bubble .ql-stroke-miter{fill:none;stroke:#ccc;stroke-miterlimit:10;stroke-width:2}.ql-bubble .ql-fill,.ql-bubble .ql-stroke.ql-fill{fill:#ccc}.ql-bubble .ql-empty{fill:none}.ql-bubble .ql-even{fill-rule:evenodd}.ql-bubble .ql-stroke.ql-thin,.ql-bubble .ql-thin{stroke-width:1}.ql-bubble .ql-transparent{opacity:.4}.ql-bubble .ql-direction svg:last-child{display:none}.ql-bubble .ql-direction.ql-active svg:last-child{display:inline}.ql-bubble .ql-direction.ql-active svg:first-child{display:none}.ql-bubble .ql-editor h1{font-size:2em}.ql-bubble .ql-editor h2{font-size:1.5em}.ql-bubble .ql-editor h3{font-size:1.17em}.ql-bubble .ql-editor h4{font-size:1em}.ql-bubble .ql-editor h5{font-size:.83em}.ql-bubble .ql-editor h6{font-size:.67em}.ql-bubble .ql-editor a{text-decoration:underline}.ql-bubble .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-bubble .ql-editor code,.ql-bubble .ql-editor pre{background-color:#f0f0f0;border-radius:3px}.ql-bubble .ql-editor pre{white-space:pre-wrap;margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-bubble .ql-editor code{font-size:85%;padding:2px 4px}.ql-bubble .ql-editor pre.ql-syntax{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-bubble .ql-editor img{max-width:100%}.ql-bubble .ql-picker{color:#ccc;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-bubble .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-bubble .ql-picker-label:before{display:inline-block;line-height:22px}.ql-bubble .ql-picker-options{background-color:#444;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-bubble .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-bubble .ql-picker.ql-expanded .ql-picker-label{color:#777;z-index:2}.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#777}.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#777}.ql-bubble .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-bubble .ql-color-picker,.ql-bubble .ql-icon-picker{width:28px}.ql-bubble .ql-color-picker .ql-picker-label,.ql-bubble .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-bubble .ql-color-picker .ql-picker-label svg,.ql-bubble .ql-icon-picker .ql-picker-label svg{right:4px}.ql-bubble .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-bubble .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-bubble .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-bubble .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""]):before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""]):before{content:attr(data-label)}.ql-bubble .ql-picker.ql-header{width:98px}.ql-bubble .ql-picker.ql-header .ql-picker-item:before,.ql-bubble .ql-picker.ql-header .ql-picker-label:before{content:"Normal"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]:before{content:"Heading 1"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]:before{content:"Heading 2"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]:before{content:"Heading 3"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]:before{content:"Heading 4"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]:before{content:"Heading 5"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]:before,.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]:before{content:"Heading 6"}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]:before{font-size:2em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]:before{font-size:1.5em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]:before{font-size:1.17em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]:before{font-size:1em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]:before{font-size:.83em}.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]:before{font-size:.67em}.ql-bubble .ql-picker.ql-font{width:108px}.ql-bubble .ql-picker.ql-font .ql-picker-item:before,.ql-bubble .ql-picker.ql-font .ql-picker-label:before{content:"Sans Serif"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]:before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]:before{content:"Serif"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before,.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]:before{content:"Monospace"}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]:before{font-family:Georgia,Times New Roman,serif}.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]:before{font-family:Monaco,Courier New,monospace}.ql-bubble .ql-picker.ql-size{width:98px}.ql-bubble .ql-picker.ql-size .ql-picker-item:before,.ql-bubble .ql-picker.ql-size .ql-picker-label:before{content:"Normal"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]:before{content:"Small"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]:before{content:"Large"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]:before,.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]:before{content:"Huge"}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]:before{font-size:10px}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]:before{font-size:18px}.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]:before{font-size:32px}.ql-bubble .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-bubble .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-bubble .ql-toolbar .ql-formats{margin:8px 12px 8px 0}.ql-bubble .ql-toolbar .ql-formats:first-child{margin-left:12px}.ql-bubble .ql-color-picker svg{margin:1px}.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,.ql-bubble .ql-color-picker .ql-picker-item:hover{border-color:#fff}.ql-bubble .ql-tooltip{background-color:#444;border-radius:25px;color:#fff}.ql-bubble .ql-tooltip-arrow{border-left:6px solid transparent;border-right:6px solid transparent;content:" ";display:block;left:50%;margin-left:-6px;position:absolute}.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow{border-bottom:6px solid #444;top:-6px}.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow{border-top:6px solid #444;bottom:-6px}.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor{display:block}.ql-bubble .ql-tooltip.ql-editing .ql-formats{visibility:hidden}.ql-bubble .ql-tooltip-editor{display:none}.ql-bubble .ql-tooltip-editor input[type=text]{background:transparent;border:none;color:#fff;font-size:13px;height:100%;outline:none;padding:10px 20px;position:absolute;width:100%}.ql-bubble .ql-tooltip-editor a{top:10px;position:absolute;right:20px}.ql-bubble .ql-tooltip-editor a:before{color:#ccc;content:"\D7";font-size:16px;font-weight:700}.ql-container.ql-bubble:not(.ql-disabled) a{position:relative;white-space:nowrap}.ql-container.ql-bubble:not(.ql-disabled) a:before{background-color:#444;border-radius:15px;top:-5px;font-size:12px;color:#fff;content:attr(href);font-weight:400;overflow:hidden;padding:5px 15px;text-decoration:none;z-index:1}.ql-container.ql-bubble:not(.ql-disabled) a:after{border-top:6px solid #444;border-left:6px solid transparent;border-right:6px solid transparent;top:0;content:" ";height:0;width:0}.ql-container.ql-bubble:not(.ql-disabled) a:after,.ql-container.ql-bubble:not(.ql-disabled) a:before{left:0;margin-left:50%;position:absolute;transform:translate(-50%,-100%);transition:visibility 0s ease .2s;visibility:hidden}.ql-container.ql-bubble:not(.ql-disabled) a:hover:after,.ql-container.ql-bubble:not(.ql-disabled) a:hover:before{visibility:visible}.editor[data-v-8f2a14cc],.ql-toolbar[data-v-8f2a14cc]{white-space:pre-wrap!important;line-height:normal!important}.quill-img[data-v-8f2a14cc]{display:none}.ql-snow .ql-tooltip[data-mode=link][data-v-8f2a14cc]:before{content:"请输入链接地址:"}.ql-snow .ql-tooltip.ql-editing a.ql-action[data-v-8f2a14cc]:after{border-right:0;content:"保存";padding-right:0}.ql-snow .ql-tooltip[data-mode=video][data-v-8f2a14cc]:before{content:"请输入视频地址:"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-v-8f2a14cc]:before{content:"14px"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small][data-v-8f2a14cc]:before{content:"10px"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large][data-v-8f2a14cc]:before{content:"18px"}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge][data-v-8f2a14cc]:before{content:"32px"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-v-8f2a14cc]:before{content:"文本"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"][data-v-8f2a14cc]:before{content:"标题1"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"][data-v-8f2a14cc]:before{content:"标题2"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"][data-v-8f2a14cc]:before{content:"标题3"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"][data-v-8f2a14cc]:before{content:"标题4"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"][data-v-8f2a14cc]:before{content:"标题5"}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"][data-v-8f2a14cc]:before{content:"标题6"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-v-8f2a14cc]:before{content:"标准字体"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif][data-v-8f2a14cc]:before{content:"衬线字体"}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace][data-v-8f2a14cc]:before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace][data-v-8f2a14cc]:before{content:"等宽字体"}.iframe-box[data-v-139ad788]{width:100%;height:100%}.pan-item[data-v-3c830c62]{width:200px;height:200px;border-radius:50%;display:inline-block;position:relative;cursor:default;box-shadow:0 1px 3px rgba(0,0,0,.2)}.pan-info-roles-container[data-v-3c830c62]{padding:20px;text-align:center}.pan-thumb[data-v-3c830c62]{width:100%;height:100%;background-position:50%;background-size:cover;border-radius:50%;overflow:hidden;position:absolute;transform-origin:95% 40%;transition:all .3s ease-in-out}.pan-info[data-v-3c830c62]{position:absolute;width:inherit;height:inherit;border-radius:50%;overflow:hidden;box-shadow:inset 0 0 0 5px rgba(0,0,0,.05)}.pan-info h3[data-v-3c830c62]{color:#fff;text-transform:uppercase;position:relative;letter-spacing:2px;font-size:18px;margin:0 60px;padding:22px 0 0 0;height:85px;font-family:Open Sans,Arial,sans-serif;text-shadow:0 0 1px #fff,0 1px 2px rgba(0,0,0,.3)}.pan-info p[data-v-3c830c62]{color:#fff;padding:10px 5px;font-style:italic;margin:0 30px;font-size:12px;border-top:1px solid hsla(0,0%,100%,.5)}.pan-info p a[data-v-3c830c62]{display:block;color:#333;width:80px;height:80px;background:hsla(0,0%,100%,.3);border-radius:50%;color:#fff;font-style:normal;font-weight:700;text-transform:uppercase;font-size:9px;letter-spacing:1px;padding-top:24px;margin:7px auto 0;font-family:Open Sans,Arial,sans-serif;opacity:0;transition:transform .3s ease-in-out .2s,opacity .3s ease-in-out .2s,background .2s linear 0s;transform:translateX(60px) rotate(90deg)}.pan-info p a[data-v-3c830c62]:hover{background:hsla(0,0%,100%,.5)}.pan-item:hover .pan-thumb[data-v-3c830c62]{transform:rotate(-110deg)}.pan-item:hover .pan-info p a[data-v-3c830c62]{opacity:1;transform:translateX(0) rotate(0deg)}
|
package/package.json
CHANGED
|
@@ -1,52 +1,67 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luzhaoqi/test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
|
+
"description": "vue2对element-ui组件进行二次封装",
|
|
4
5
|
"private": false,
|
|
5
|
-
"main": "dist/z-
|
|
6
|
-
"files": [
|
|
7
|
-
"dist"
|
|
8
|
-
],
|
|
6
|
+
"main": "dist/z-ui.umd.min.js",
|
|
9
7
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
"build": "vite build",
|
|
12
|
-
"preview": "vite preview",
|
|
13
|
-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
|
|
14
|
-
"format": "prettier --write src/",
|
|
8
|
+
"build--rollup": "rollup -c",
|
|
15
9
|
"pub": "npm publish --access public",
|
|
16
10
|
"patch": "npm version patch",
|
|
17
|
-
"lib": "npm
|
|
11
|
+
"lib--rollup": "npm run patch & npm run build--rollup & npm run pub",
|
|
12
|
+
"serve": "vue-cli-service serve",
|
|
13
|
+
"build": "vue-cli-service build",
|
|
14
|
+
"lint": "vue-cli-service lint",
|
|
15
|
+
"build--webpack": "vue-cli-service build --target lib lib/index.js",
|
|
16
|
+
"lib--webpack": "npm run patch & npm run build--webpack & npm run pub"
|
|
18
17
|
},
|
|
19
18
|
"dependencies": {
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"file-saver": "^2.0.5",
|
|
19
|
+
"axios": "0.24.0",
|
|
20
|
+
"clipboard": "2.0.8",
|
|
21
|
+
"core-js": "^3.8.3",
|
|
22
|
+
"element-ui": "2.15.13",
|
|
23
|
+
"file-saver": "2.0.5",
|
|
26
24
|
"fuse.js": "6.4.3",
|
|
27
|
-
"js-cookie": "
|
|
28
|
-
"jsencrypt": "
|
|
25
|
+
"js-cookie": "3.0.1",
|
|
26
|
+
"jsencrypt": "3.0.0-rc.1",
|
|
29
27
|
"mockjs": "^1.1.0",
|
|
30
28
|
"nprogress": "^0.2.0",
|
|
31
|
-
"pinia": "^2.1.7",
|
|
32
|
-
"pinia-plugin-persist": "^1.0.0",
|
|
33
29
|
"quill": "1.3.7",
|
|
34
30
|
"screenfull": "5.0.2",
|
|
35
|
-
"vue": "^
|
|
36
|
-
"vue-
|
|
31
|
+
"vue": "^2.6.14",
|
|
32
|
+
"vue-cropper": "^0.6.5",
|
|
33
|
+
"vue-meta": "2.4.0",
|
|
34
|
+
"vue-router": "^3.5.1",
|
|
35
|
+
"vuex": "^3.6.2"
|
|
37
36
|
},
|
|
38
37
|
"devDependencies": {
|
|
39
|
-
"@
|
|
40
|
-
"@
|
|
41
|
-
"@
|
|
42
|
-
"@
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
38
|
+
"@babel/core": "^7.12.16",
|
|
39
|
+
"@babel/eslint-parser": "^7.12.16",
|
|
40
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
41
|
+
"@rollup/plugin-image": "^3.0.3",
|
|
42
|
+
"@rollup/plugin-json": "^6.0.1",
|
|
43
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
44
|
+
"@rollup/plugin-replace": "^5.0.4",
|
|
45
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
46
|
+
"@vue/cli-plugin-babel": "~5.0.0",
|
|
47
|
+
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
48
|
+
"@vue/cli-plugin-router": "~5.0.0",
|
|
49
|
+
"@vue/cli-plugin-vuex": "~5.0.0",
|
|
50
|
+
"@vue/cli-service": "~5.0.0",
|
|
51
|
+
"autoprefixer": "^10.4.16",
|
|
52
|
+
"eslint": "^7.32.0",
|
|
53
|
+
"eslint-config-prettier": "^8.3.0",
|
|
54
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
55
|
+
"eslint-plugin-vue": "^8.0.3",
|
|
56
|
+
"prettier": "^2.4.1",
|
|
57
|
+
"rollup": "^3.23.0",
|
|
58
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
59
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
60
|
+
"rollup-plugin-vue": "~5.0.0",
|
|
61
|
+
"sass": "^1.32.7",
|
|
62
|
+
"sass-loader": "^12.0.0",
|
|
63
|
+
"vue-template-compiler": "^2.6.14",
|
|
64
|
+
"svg-sprite-loader": "5.1.1",
|
|
65
|
+
"node-polyfill-webpack-plugin": "^2.0.1"
|
|
51
66
|
}
|
|
52
67
|
}
|
package/dist/dict-T4hW9Ftt.mjs
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
import { a as r } from "./main-LGxmffHJ.mjs";
|
|
2
|
-
const u = r.config.globalProperties.$z, e = u.$http;
|
|
3
|
-
function n(t) {
|
|
4
|
-
return e.request({
|
|
5
|
-
url: "/ucenter/dict/type/queryPage",
|
|
6
|
-
method: "post",
|
|
7
|
-
data: t
|
|
8
|
-
});
|
|
9
|
-
}
|
|
10
|
-
function c(t) {
|
|
11
|
-
return e.request({
|
|
12
|
-
url: "/ucenter/dict/type/save",
|
|
13
|
-
method: "post",
|
|
14
|
-
data: t
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
function d(t) {
|
|
18
|
-
return e.request({
|
|
19
|
-
url: "/ucenter/dict/type/update",
|
|
20
|
-
method: "post",
|
|
21
|
-
data: t
|
|
22
|
-
});
|
|
23
|
-
}
|
|
24
|
-
function o(t) {
|
|
25
|
-
return e.request({
|
|
26
|
-
url: `ucenter/dict/type/del/${t}`,
|
|
27
|
-
method: "post"
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
function s(t) {
|
|
31
|
-
return e.request({
|
|
32
|
-
url: "/ucenter/dict/queryPage",
|
|
33
|
-
method: "post",
|
|
34
|
-
data: t
|
|
35
|
-
});
|
|
36
|
-
}
|
|
37
|
-
function p(t) {
|
|
38
|
-
return e.request({
|
|
39
|
-
url: "/ucenter/dict/save",
|
|
40
|
-
method: "post",
|
|
41
|
-
data: t
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
function a(t) {
|
|
45
|
-
return e.request({
|
|
46
|
-
url: "/ucenter/dict/update",
|
|
47
|
-
method: "post",
|
|
48
|
-
data: t
|
|
49
|
-
});
|
|
50
|
-
}
|
|
51
|
-
function l(t) {
|
|
52
|
-
return e.request({
|
|
53
|
-
url: `ucenter/dict/del/${t}`,
|
|
54
|
-
method: "post"
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
export {
|
|
58
|
-
l as a,
|
|
59
|
-
a as b,
|
|
60
|
-
p as c,
|
|
61
|
-
s as d,
|
|
62
|
-
o as e,
|
|
63
|
-
d as f,
|
|
64
|
-
c as g,
|
|
65
|
-
n as l
|
|
66
|
-
};
|