diff --git a/.browserslistrc b/.browserslistrc deleted file mode 100644 index d6471a38cc6e6e02345c1edce109312520a77d0d..0000000000000000000000000000000000000000 --- a/.browserslistrc +++ /dev/null @@ -1,2 +0,0 @@ -> 1% -last 2 versions diff --git a/.dockerignore b/.dockerignore index 27ef30a21ba6334c99ec769172ba13d6eea08bb4..d451ff16c1010b8dc4285ef4d338028792a0ecd3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,21 +1,5 @@ -.DS_Store node_modules -/dist - -# local env files -.env.local -.env.*.local - -# Log files -npm-debug.log* -yarn-debug.log* -yarn-error.log* -yarn.lock - -# Editor directories and files -.idea -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? +.DS_Store +dist +dist-ssr +*.local diff --git a/.eslintignore b/.eslintignore index 53841920a578c7cc7b470b025c05befc60740ff4..3c018eed27ff620c58e5e98b821069f3f7d7e6ee 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,6 +1 @@ -/public/ -/dist/ -/node_modules/ -/src/icons/svg/ -/mock/ -vue.config.js +vite.config.ts \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index 39bd4135eace39b8ff1be1fccad7aba96999f82b..df549f77bbbd443a04152de7c6bc1007a69504ec 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,14 +1,76 @@ module.exports = { root: true, env: { - node: true - }, - extends: ["plugin:vue/essential", "@vue/prettier"], - rules: { - "no-console": "off", - "comma-dangle": [2, "never"] + browser: true, + node: true, + es6: true }, + parser: "vue-eslint-parser", parserOptions: { - parser: "@typescript-eslint/parser" + parser: "@typescript-eslint/parser", + ecmaVersion: 2020, + sourceType: "module", + jsxPragma: "React", + ecmaFeatures: { + jsx: true, + tsx: true + } + }, + extends: [ + "plugin:vue/vue3-recommended", + "plugin:@typescript-eslint/recommended", + "prettier", + "plugin:prettier/recommended" + ], + rules: { + "@typescript-eslint/ban-ts-ignore": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-var-requires": "off", + "@typescript-eslint/no-empty-function": "off", + "vue/component-name-in-template-casing": ["error", "kebab-case"], + "vue/component-definition-name-casing": ["error", "kebab-case"], + "no-use-before-define": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/ban-ts-comment": "off", + "@typescript-eslint/ban-types": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-unused-vars": [ + "error", + { + argsIgnorePattern: "^h$", + varsIgnorePattern: "^h$" + } + ], + "no-unused-vars": [ + "error", + { + argsIgnorePattern: "^h$", + varsIgnorePattern: "^h$" + } + ], + "space-before-function-paren": "off", + "vue/attributes-order": "off", + "vue/one-component-per-file": "off", + "vue/html-closing-bracket-newline": "off", + "vue/max-attributes-per-line": "off", + "vue/multiline-html-element-content-newline": "off", + "vue/singleline-html-element-content-newline": "off", + "vue/attribute-hyphenation": "off", + // "vue/html-self-closing": "off", + "vue/require-default-prop": "off", + "vue/html-self-closing": [ + "error", + { + html: { + void: "always", + normal: "never", + component: "always" + }, + svg: "always", + math: "always" + } + ] } }; diff --git a/.gitignore b/.gitignore index 27ef30a21ba6334c99ec769172ba13d6eea08bb4..d451ff16c1010b8dc4285ef4d338028792a0ecd3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,5 @@ -.DS_Store node_modules -/dist - -# local env files -.env.local -.env.*.local - -# Log files -npm-debug.log* -yarn-debug.log* -yarn-error.log* -yarn.lock - -# Editor directories and files -.idea -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? +.DS_Store +dist +dist-ssr +*.local diff --git a/.vscode/crud.code-snippets b/.vscode/crud.code-snippets index a86c77664a16226f20414459a89ec99a0036fc5b..9bd0526ecf06ee2db53f34ceacc04e9b53e6c756 100644 --- a/.vscode/crud.code-snippets +++ b/.vscode/crud.code-snippets @@ -1,9 +1,9 @@ { "cl-crud": { - "prefix": "cl-crud", + "prefix": "cl-crud-ts", "body": [ "", "", - "", "" ], diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000000000000000000000000000000000..48fc344b19849e0d784d9b7984c50f1c6e0fd09a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "editor.cursorSmoothCaretAnimation": true +} diff --git a/Dockerfile b/Dockerfile index dad46df23ab15206d94d8e5e4e310185119d054f..dc4247a935f520d1d32b8d446bee09229a3896d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ FROM node:lts-alpine WORKDIR /build -RUN npm config set sass_binary_site=https://npm.taobao.org/mirrors/node-sass -RUN npm set registry https://registry.npm.taobao.org +# 设置Node-Sass的镜像地址 +RUN npm config set sass_binary_site https://repo.huaweicloud.com/node-sass +# 设置npm镜像 +RUN npm config set registry https://repo.huaweicloud.com/repository/npm/ COPY package.json /build/package.json RUN npm install COPY ./ /build diff --git a/README.md b/README.md index 76604df9d2ef3686bbd84c3218caa2ebff34a01c..7bb0ea009944ea286f799558fb82f8618bfaadb9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +# cool-admin [vue3 - ts - vite] +

cool-admin Logo

@@ -10,14 +12,23 @@ GitHub tag

+## 地址 + +- [⚡️ vue2.x + element-ui](https://github.com/cool-team-official/cool-admin-vue) + +- [⚡️ vue3.x + element-plus + ts + webpack](https://github.com/cool-team-official/cool-admin-vue/tree/vue3-ts-webpack) + +- [📌 vue3.x + element-plus + ts + vite](https://github.com/cool-team-official/cool-admin-vue/tree/vue3-ts-vite) + +- [🌐 码云仓库地址](https://gitee.com/cool-team-official/cool-admin-vue) + ## 演示 [https://show.cool-admin.com](https://show.cool-admin.com) -- 账户:admin -- 密码:123456 +账户:admin,密码:123456 -Admin Home +Admin Home ## 项目后端 @@ -35,10 +46,6 @@ [https://bbs.cool-js.com/](https://bbs.cool-js.com/) -## 使用条件 - -请确保您的操作系统上安装了 Node.js(> = 8.9.0)、@vue/cli (> 3.0.0)。 - ## 安装项目依赖 推荐使用 `yarn`: @@ -58,233 +65,5 @@ yarn config set sass-binary-site http://npm.taobao.org/mirrors/node-sass 安装过程完成后,运行以下命令启动服务。您可以在浏览器中预览网站 [http://localhost:9000](http://localhost:9000) ```shell -yarn serve -``` - -## 极速 CRUD - -1. `vscode` 编辑器下输入关键字 `cl-crud`,会生成对应的模板代码: - -```html - - - -``` - -2. 编辑数据表格 `cl-table`: - -```js -{ - table: { - // 参数与 el-table-column 一致,并支持许多骚操作 - columns: [ - // 多选列 - { - type: "selection", - width: 60 - }, - // 自定义列 - { - label: "昵称", - prop: "name" - }, - { - label: "账户", - prop: "price", - sortable: "custom" // 是否添加排序 - }, - { - label: "状态", - prop: "status", - // 字典匹配,使用 el-tag 展示 - dict: [ - { - label: "启用", - value: 1, - type: "primary" - }, - { - label: "禁用", - value: 0, - type: "danger" - } - ] - }, - { - label: "创建时间", - prop: "createTime" - }, - // 操作按钮列,默认包含:编辑、删除 - { - type: "op" - } - ]; - } -} +yarn dev ``` - -3. 编辑新增、编辑表单 `cl-upsert`: - -```js -{ - upsert: { - items: [ - { - label: "昵称", - prop: "name", - // 参数与 el-form-item 一致 - props: {}, - value: "神仙都没用", // 昵称默认值 - // 渲染参数,支持 slot, 组件实例,jsx - component: { - name: "el-input", // 可以是任意已注册的组件名 - props: {}, // 组件的参数 - on: {} // 组件的回调事件 - }, - // 验证规则,与 el-form 一致 - rules: { - required: true, - message: "昵称不呢为空" - } - }, - { - label: "存款", - prop: "price", - component: { - name: "el-input-number", - props: { - min: 0, - max: 10000 - } - } - }, - { - label: "状态", - prop: "status", - value: 1, - component: { - name: "el-radio-group", - options: [ - { - label: "启用", - value: 1 - }, - { - label: "禁用", - value: 0 - } - ] - } - } - ]; - } -} -``` - -4. 绑定 `service`。在 `src/service/` 下新建文件 `test.js`,并编辑: - -```js -// src/service/test.js -import { BaseService, Service, Permission } from "cl-admin"; - -// 请求接口的路径 -@Service("test") -class Test extends BaseService { - // 继承 BaseService 后,拥有 page, list, add, delete, update, info 6个基本接口 - - // 自定义其他接口 - @Permission("product") // 权限装饰器,可选 - product(id) { - // this.request() 参数与 axios 一致 - return this.request({ - url: "/product", - method: "POST", - data: { - id - } - }); - } -} - -export default Test; -``` - -在 `src/service/` 下的文件,框架会自动根据 `目录结构` 和 `文件名称` 格式化成对应的 `$service` 对象。你现在可以这么使用它: - -```js -this.$service.test.page({ page: 1 }); -this.$service.test.product(1); -``` - -`service` 编写好后,我们把它绑定在 `crud` 上: - -```js -export default { - methods: { - onLoad({ ctx, app }) { - // 绑定 service,这边指定到 test 即可 - ctx.service(this.$service.test).done(); - - // 发起 page 请求 - app.refresh({ - // 请求默认参数 - }); - } - } -}; -``` - -5. 效果预览 - -![](https://cool-show.oss-cn-shanghai.aliyuncs.com/admin/crud.png) diff --git a/babel.config.js b/babel.config.js deleted file mode 100644 index 32df09b97bb534a87a52d6a7aa38d4dfcd2704c5..0000000000000000000000000000000000000000 --- a/babel.config.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = { - presets: ["@vue/app"], - plugins: [ - ["jsx-v-model"], - [ - "component", - { - libraryName: "element-ui", - styleLibraryName: "theme-chalk" - } - ] - ] -}; diff --git a/public/index.html b/index.html similarity index 74% rename from public/index.html rename to index.html index 340e6c78ebd4649153cdf590e3e14251c96dba47..089bde0dfe921b70073a92afdbe0ec0d6679004b 100644 --- a/public/index.html +++ b/index.html @@ -9,11 +9,8 @@ name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0" /> - COOL-ADMIN - <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %> - - <% } %> + -
@@ -91,9 +82,6 @@
- - <% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.js) { %> - - <% } %> + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000000000000000000000000000000000000..8a533f6638d7e19ff61ac89e562c013bedce1843 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,4571 @@ +{ + "name": "front-next", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "dev": true, + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "@babel/compat-data": { + "version": "7.13.12", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz", + "integrity": "sha512-3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ==", + "dev": true + }, + "@babel/core": { + "version": "7.13.13", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.13.13.tgz", + "integrity": "sha512-1xEs9jZAyKIouOoCmpsgk/I26PoKyvzQ2ixdRpRzfbcp1fL+ozw7TUgdDgwonbTovqRaTfRh50IXuw4QrWO0GA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.13.9", + "@babel/helper-compilation-targets": "^7.13.13", + "@babel/helper-module-transforms": "^7.13.12", + "@babel/helpers": "^7.13.10", + "@babel/parser": "^7.13.13", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.13", + "@babel/types": "^7.13.13", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^6.3.0", + "source-map": "^0.5.0" + }, + "dependencies": { + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.13.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz", + "integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==", + "dev": true, + "requires": { + "@babel/types": "^7.13.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "@babel/helper-compilation-targets": { + "version": "7.13.13", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz", + "integrity": "sha512-q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.13.12", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.14.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz", + "integrity": "sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==", + "dev": true, + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13" + } + }, + "@babel/helper-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", + "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", + "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.13.12", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz", + "integrity": "sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw==", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-module-imports": { + "version": "7.13.12", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz", + "integrity": "sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA==", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-module-transforms": { + "version": "7.13.14", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.14.tgz", + "integrity": "sha512-QuU/OJ0iAOSIatyVZmfqB0lbkVP0kDRiKj34xy+QNsnVZi/PA6BoSoreeqnxxa9EHFAIL0R9XOaAR/G9WlIy5g==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.13.12", + "@babel/helper-replace-supers": "^7.13.12", + "@babel/helper-simple-access": "^7.13.12", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.13", + "@babel/types": "^7.13.14" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", + "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", + "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==", + "dev": true + }, + "@babel/helper-replace-supers": { + "version": "7.13.12", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz", + "integrity": "sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.13.12", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-simple-access": { + "version": "7.13.12", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz", + "integrity": "sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA==", + "dev": true, + "requires": { + "@babel/types": "^7.13.12" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", + "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "dev": true, + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" + }, + "@babel/helper-validator-option": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", + "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz", + "integrity": "sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==", + "dev": true, + "requires": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "@babel/highlight": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", + "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.13.13", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz", + "integrity": "sha512-OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw==" + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz", + "integrity": "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz", + "integrity": "sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-typescript": "^7.12.13" + } + }, + "@babel/template": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", + "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/traverse": { + "version": "7.13.13", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz", + "integrity": "sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.13.9", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.13.13", + "@babel/types": "^7.13.13", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.13.14", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz", + "integrity": "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + } + } + }, + "@eslint/eslintrc": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz", + "integrity": "sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, + "@popperjs/core": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.9.1.tgz", + "integrity": "sha512-DvJbbn3dUgMxDnJLH+RZQPnXak1h4ZVYQ7CWiFWjQwBFkVajT4rfw2PdpHLTSTwxrYfnoEXkuBiwkDm6tPMQeA==" + }, + "@types/component-emitter": { + "version": "1.2.10", + "resolved": "https://registry.npmjs.org/@types/component-emitter/-/component-emitter-1.2.10.tgz", + "integrity": "sha512-bsjleuRKWmGqajMerkzox19aGbscQX5rmmvvXl3wlIp5gMG1HgkiwPxsN5p070fBDKTNSPgojVbuY1+HWMbFhg==" + }, + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", + "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==", + "dev": true + }, + "@types/node": { + "version": "14.14.37", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz", + "integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.20.0", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.20.0", + "@typescript-eslint/scope-manager": "4.20.0", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "lodash": "^4.17.15", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.20.0.tgz", + "integrity": "sha512-sQNlf6rjLq2yB5lELl3gOE7OuoA/6IVXJUJ+Vs7emrQMva14CkOwyQwD7CW+TkmOJ4Q/YGmoDLmbfFrpGmbKng==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.20.0", + "@typescript-eslint/types": "4.20.0", + "@typescript-eslint/typescript-estree": "4.20.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.20.0", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.20.0", + "@typescript-eslint/types": "4.20.0", + "@typescript-eslint/typescript-estree": "4.20.0", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.20.0.tgz", + "integrity": "sha512-/zm6WR6iclD5HhGpcwl/GOYDTzrTHmvf8LLLkwKqqPKG6+KZt/CfSgPCiybshmck66M2L5fWSF/MKNuCwtKQSQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.20.0", + "@typescript-eslint/visitor-keys": "4.20.0" + } + }, + "@typescript-eslint/types": { + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.20.0.tgz", + "integrity": "sha512-cYY+1PIjei1nk49JAPnH1VEnu7OYdWRdJhYI5wiKOUMhLTG1qsx5cQxCUTuwWCmQoyriadz3Ni8HZmGSofeC+w==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.20.0.tgz", + "integrity": "sha512-Knpp0reOd4ZsyoEJdW8i/sK3mtZ47Ls7ZHvD8WVABNx5Xnn7KhenMTRGegoyMTx6TiXlOVgMz9r0pDgXTEEIHA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.20.0", + "@typescript-eslint/visitor-keys": "4.20.0", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.20.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.20.0.tgz", + "integrity": "sha512-NXKRM3oOVQL8yNFDNCZuieRIwZ5UtjNLYtmMx2PacEAGmbaEYtGgVHUHVyZvU/0rYZcizdrWjDo+WBtRPSgq+A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.20.0", + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "dev": true + } + } + }, + "@vitejs/plugin-vue": { + "version": "1.2.0", + "dev": true + }, + "@vitejs/plugin-vue-jsx": { + "version": "1.1.2", + "dev": true, + "requires": { + "@babel/core": "^7.12.10", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.12.1", + "@vue/babel-plugin-jsx": "^1.0.3", + "hash-sum": "^2.0.0" + } + }, + "@vue/babel-helper-vue-transform-on": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz", + "integrity": "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==", + "dev": true + }, + "@vue/babel-plugin-jsx": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.0.3.tgz", + "integrity": "sha512-+52ZQFmrM0yh61dQlgwQlfHZXmYbswbQEL25SOSt9QkjegAdfIGu87oELw0l8H6cuJYazZCiNjPR9eU++ZIbxg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.0.0", + "@babel/template": "^7.0.0", + "@babel/traverse": "^7.0.0", + "@babel/types": "^7.0.0", + "@vue/babel-helper-vue-transform-on": "^1.0.2", + "camelcase": "^6.0.0", + "html-tags": "^3.1.0", + "svg-tags": "^1.0.0" + } + }, + "@vue/compiler-core": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.0.9.tgz", + "integrity": "sha512-bHAPwfVoLhGx8d6KV/OfGf/3gwpymVirgfmSyhgv5YuXDybLa6BwjSLvhNMAyDP+4q4pp0p6g248LuoOy5W6OA==", + "requires": { + "@babel/parser": "^7.12.0", + "@babel/types": "^7.12.0", + "@vue/shared": "3.0.9", + "estree-walker": "^2.0.1", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-dom": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.0.9.tgz", + "integrity": "sha512-tkq6umPSELaghvOExWfGNwrCRc7FTul3RLykKzBZWhb87sSESq0XxiKELfBOfEbzdhWg6BJ1WXKDeq+al/viEQ==", + "requires": { + "@vue/compiler-core": "3.0.9", + "@vue/shared": "3.0.9" + } + }, + "@vue/compiler-sfc": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.0.9.tgz", + "integrity": "sha512-meneFRb9xIDgv/gYWCr9xKryvPi0tVffQzLjCkyN4RF1EndqLS71xugUX9wQsS4F1SAP+zlZbcgMFmTSC4OpHw==", + "dev": true, + "requires": { + "@babel/parser": "^7.13.9", + "@babel/types": "^7.13.0", + "@vue/compiler-core": "3.0.9", + "@vue/compiler-dom": "3.0.9", + "@vue/compiler-ssr": "3.0.9", + "@vue/shared": "3.0.9", + "consolidate": "^0.16.0", + "estree-walker": "^2.0.1", + "hash-sum": "^2.0.0", + "lru-cache": "^5.1.1", + "magic-string": "^0.25.7", + "merge-source-map": "^1.1.0", + "postcss": "^8.1.10", + "postcss-modules": "^4.0.0", + "postcss-selector-parser": "^6.0.4", + "source-map": "^0.6.1" + } + }, + "@vue/compiler-ssr": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.0.9.tgz", + "integrity": "sha512-99h5k6Up+s8AzTNH1ljtXE/QlnG8yaGLePwQ4XQaWfk23ESUnmGZWEC+y+ZXznf8pIfJ0uPeD9EVgQzQAyZ2aA==", + "dev": true, + "requires": { + "@vue/compiler-dom": "3.0.9", + "@vue/shared": "3.0.9" + } + }, + "@vue/reactivity": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.0.9.tgz", + "integrity": "sha512-W1AbGhzphVjY+TL32lQDwLDNvLzZKOcUgaIaLOoALWMtjzN4ExOUJzrR1FC3ynlpMHIEfcUo8GPgfnNmvMGdgQ==", + "requires": { + "@vue/shared": "3.0.9" + } + }, + "@vue/runtime-core": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.0.9.tgz", + "integrity": "sha512-j94xZ/wRZTVhqpoUgmxBTlojnPFu6TTXNw1Vw8oQkW1ZTGD0IwiJe3ycsKd1bpleXEMVt55GzGlCopI33/Gdmg==", + "requires": { + "@vue/reactivity": "3.0.9", + "@vue/shared": "3.0.9" + } + }, + "@vue/runtime-dom": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.0.9.tgz", + "integrity": "sha512-6NCjpwa5hNBFDdokquAgMl2tNEYyQD6kBy9Mh6M2776bxYLXZCqL4/e0UrpBuBiHTrkAlUGODD7PyYGaqH6fyA==", + "requires": { + "@vue/runtime-core": "3.0.9", + "@vue/shared": "3.0.9", + "csstype": "^2.6.8" + } + }, + "@vue/shared": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.0.9.tgz", + "integrity": "sha512-lv20q1O5dybwro+V+vnxHCmSIxi9mvTORSgAbGrANGYK8zF4K1S9TOankIvdkcvfZ88IR95O2pTI2Pb3c3BaNg==" + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "dev": true + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "array.prototype.flat": { + "version": "1.2.4", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async-validator": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-3.5.1.tgz", + "integrity": "sha512-DDmKA7sdSAJtTVeNZHrnr2yojfFaoeW8MfQN8CeuXg8DDQHTqKk9Fdv38dSvnesHoO8MUwMI2HphOeSyIF+wmQ==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "axios": { + "version": "0.21.1", + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "backo2": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", + "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + } + }, + "base64-arraybuffer": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.4.tgz", + "integrity": "sha1-mBjHngWbE1X5fgQooBfIOOkLqBI=" + }, + "big-integer": { + "version": "1.6.48", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz", + "integrity": "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=", + "dev": true, + "requires": { + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", + "dev": true, + "requires": { + "caniuse-lite": "^1.0.30001181", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.649", + "escalade": "^3.1.1", + "node-releases": "^1.1.70" + } + }, + "buffer-indexof-polyfill": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", + "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==", + "dev": true + }, + "buffers": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30001205", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001205.tgz", + "integrity": "sha512-TL1GrS5V6LElbitPazidkBMD9sa448bQDDLrumDqaggmKFcuU2JW1wTOHJPukAcOMtEmLcmDJEzfRrf+GjM0Og==", + "dev": true + }, + "chainsaw": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=", + "dev": true, + "requires": { + "traverse": ">=0.3.0 <0.4" + }, + "dependencies": { + "traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha1-cXuPIgzAu3tE5AUUwisui7xw2Lk=", + "dev": true + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + } + } + }, + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "clipboard": { + "version": "2.0.8", + "requires": { + "good-listener": "^1.2.2", + "select": "^1.1.2", + "tiny-emitter": "^2.0.0" + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + }, + "clone-deep": { + "version": "4.0.1", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "codemirror": { + "version": "5.60.0" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", + "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", + "dev": true + }, + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "config-chain": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz", + "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==", + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "consolidate": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.16.0.tgz", + "integrity": "sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==", + "dev": true, + "requires": { + "bluebird": "^3.7.2" + } + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-js": { + "version": "3.9.1" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true + }, + "csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + }, + "dayjs": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.4.tgz", + "integrity": "sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw==" + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "deepmerge": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-1.3.2.tgz", + "integrity": "sha1-FmNpFinU2/42T6EqKk8KqGqjoFA=", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "delegate": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", + "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "dev": true + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domready": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/domready/-/domready-1.0.8.tgz", + "integrity": "sha1-kfJS5Ze2Wvd+dFriTdAYXV4m1Yw=", + "dev": true + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "dev": true, + "requires": { + "readable-stream": "^2.0.2" + } + }, + "echarts": { + "version": "5.0.2", + "requires": { + "tslib": "2.0.3", + "zrender": "5.0.4" + } + }, + "editorconfig": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz", + "integrity": "sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==", + "requires": { + "commander": "^2.19.0", + "lru-cache": "^4.1.5", + "semver": "^5.6.0", + "sigmund": "^1.0.1" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + } + } + }, + "electron-to-chromium": { + "version": "1.3.704", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.704.tgz", + "integrity": "sha512-6cz0jvawlUe4h5AbfQWxPzb+8LzVyswGAWiGc32EJEmfj39HTQyNPkLXirc7+L4x5I6RgRkzua8Ryu5QZqc8cA==", + "dev": true + }, + "element-plus": { + "version": "1.0.2-beta.35", + "requires": { + "@popperjs/core": "^2.4.4", + "async-validator": "^3.4.0", + "dayjs": "1.x", + "lodash": "^4.17.20", + "mitt": "^2.1.0", + "normalize-wheel": "^1.0.1", + "resize-observer-polyfill": "^1.5.1" + }, + "dependencies": { + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "mitt": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-2.1.0.tgz", + "integrity": "sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg==" + } + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "engine.io-client": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-5.0.0.tgz", + "integrity": "sha512-e6GK0Fqvq45Nu/j7YdIVqXtDPvlsggAcfml3QiEiGdJ1qeh7IQU6knxSN3+yy9BmbnXtIfjo1hK4MFyHKdc9mQ==", + "requires": { + "base64-arraybuffer": "0.1.4", + "component-emitter": "~1.3.0", + "debug": "~4.3.1", + "engine.io-parser": "~4.0.1", + "has-cors": "1.1.0", + "parseqs": "0.0.6", + "parseuri": "0.0.6", + "ws": "~7.4.2", + "yeast": "0.1.2" + } + }, + "engine.io-parser": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-4.0.2.tgz", + "integrity": "sha512-sHfEQv6nmtJrq6TKuIz5kyEKH/qSdK56H/A+7DnAuUPWosnIZAS2NHNcPLmyjtY3cGS/MqJdZbUjW97JU72iYg==", + "requires": { + "base64-arraybuffer": "0.1.4" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "dev": true + }, + "es-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", + "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.2", + "is-string": "^1.0.5", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.0" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "esbuild": { + "version": "0.9.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.9.7.tgz", + "integrity": "sha512-VtUf6aQ89VTmMLKrWHYG50uByMF4JQlVysb8dmg6cOgW8JnFCipmz7p+HNBl+RR3LLCuBxFGVauAe2wfnF9bLg==", + "dev": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.23.0", + "dev": true, + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.21", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "eslint-config-prettier": { + "version": "8.1.0", + "dev": true + }, + "eslint-plugin-prettier": { + "version": "3.3.1", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-plugin-vue": { + "version": "7.8.0", + "dev": true, + "requires": { + "eslint-utils": "^2.1.0", + "natural-compare": "^1.4.0", + "semver": "^7.3.2", + "vue-eslint-parser": "^7.6.0" + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + } + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha1-teEHm1n7XhuidxwKmTvgYKWMmbo=" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, + "fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + }, + "dependencies": { + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + } + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastq": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", + "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", + "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==", + "dev": true + }, + "follow-redirects": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", + "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" + }, + "dependencies": { + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "generic-names": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generic-names/-/generic-names-2.0.1.tgz", + "integrity": "sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ==", + "dev": true, + "requires": { + "loader-utils": "^1.1.0" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "globals": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz", + "integrity": "sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==", + "dev": true, + "requires": { + "type-fest": "^0.20.2" + }, + "dependencies": { + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true + } + } + }, + "globby": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz", + "integrity": "sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + } + } + }, + "good-listener": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", + "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", + "requires": { + "delegate": "^3.1.2" + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", + "dev": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + }, + "has-cors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", + "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", + "dev": true + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "html-tags": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", + "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", + "dev": true + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", + "dev": true + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-bigint": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "dev": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==" + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.1" + } + }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "dev": true + }, + "js-beautify": { + "version": "1.13.5", + "requires": { + "config-chain": "^1.1.12", + "editorconfig": "^0.15.3", + "glob": "^7.1.3", + "mkdirp": "^1.0.4", + "nopt": "^5.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha1-hMinKrWcRyUyFIDJdeZQg0LnCTc=", + "dev": true + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", + "dev": true + }, + "lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", + "dev": true + }, + "lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=", + "dev": true + }, + "lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "dev": true, + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "merge": { + "version": "2.1.1" + }, + "merge-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-options/-/merge-options-1.0.1.tgz", + "integrity": "sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==", + "dev": true, + "requires": { + "is-plain-obj": "^1.1" + } + }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dev": true, + "requires": { + "source-map": "^0.6.1" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.0.tgz", + "integrity": "sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.2.2", + "define-property": "^1.0.0", + "extend-shallow": "^2.0.1", + "extglob": "^2.0.2", + "fragment-cache": "^0.2.1", + "kind-of": "^5.0.2", + "nanomatch": "^1.2.1", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "mockjs": { + "version": "1.1.0", + "requires": { + "commander": "*" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "nanoid": { + "version": "3.1.22", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz", + "integrity": "sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node-releases": { + "version": "1.1.71", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", + "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==", + "dev": true + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "requires": { + "abbrev": "1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-wheel": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/normalize-wheel/-/normalize-wheel-1.0.1.tgz", + "integrity": "sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=" + }, + "nprogress": { + "version": "0.2.0" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parseqs": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.6.tgz", + "integrity": "sha512-jeAGzMDbfSHHA091hr0r31eYfTig+29g3GKKE/PPbEQ65X0lmMwlEoqmhzu0iztID5uJpZsFlUPDP8ThPL7M8w==" + }, + "parseuri": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.6.tgz", + "integrity": "sha512-AUjen8sAkGgao7UyCX6Ahv0gIK2fABKmYjvP4xmy5JaKvcbTRueIqIPHLAfq30xJddqSE033IOMUSOMCcK3Sow==" + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "postcss": { + "version": "8.2.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz", + "integrity": "sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw==", + "dev": true, + "requires": { + "colorette": "^1.2.2", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + }, + "postcss-modules": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules/-/postcss-modules-4.0.0.tgz", + "integrity": "sha512-ghS/ovDzDqARm4Zj6L2ntadjyQMoyJmi0JkLlYtH2QFLrvNlxH5OAVRPWPeKilB0pY7SbuhO173KOWkPAxRJcw==", + "dev": true, + "requires": { + "generic-names": "^2.0.1", + "icss-replace-symbols": "^1.1.0", + "lodash.camelcase": "^4.3.0", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "string-hash": "^1.1.1" + } + }, + "postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true + }, + "postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dev": true, + "requires": { + "postcss-selector-parser": "^6.0.4" + } + }, + "postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "requires": { + "icss-utils": "^5.0.0" + } + }, + "postcss-prefix-selector": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/postcss-prefix-selector/-/postcss-prefix-selector-1.9.0.tgz", + "integrity": "sha512-tTUHUNP+/Qfgg+fvbljUIeLs1ijICWb8+CT3bZM2joE2pkd+EnuBzSfZNHY2RMmozNRp44yEFv+I+6IIiLcoCg==", + "dev": true, + "requires": { + "postcss": "^7.0.0" + }, + "dependencies": { + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "dev": true, + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "dev": true + }, + "posthtml": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.9.2.tgz", + "integrity": "sha1-9MBtufZ7Yf0XxOJW5+PZUVv3Jv0=", + "dev": true, + "requires": { + "posthtml-parser": "^0.2.0", + "posthtml-render": "^1.0.5" + } + }, + "posthtml-parser": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.2.1.tgz", + "integrity": "sha1-NdUw3jhnQMK6JP8usvrznM3ycd0=", + "dev": true, + "requires": { + "htmlparser2": "^3.8.3", + "isobject": "^2.1.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "posthtml-rename-id": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/posthtml-rename-id/-/posthtml-rename-id-1.0.12.tgz", + "integrity": "sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5" + } + }, + "posthtml-render": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-1.3.1.tgz", + "integrity": "sha512-eSToKjNLu0FiF76SSGMHjOFXYzAc/CJqi677Sq6hYvcvFCBtD6de/W5l+0IYPf7ypscqAfjCttxvTdMJt5Gj8Q==", + "dev": true + }, + "posthtml-svg-mode": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/posthtml-svg-mode/-/posthtml-svg-mode-1.0.3.tgz", + "integrity": "sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==", + "dev": true, + "requires": { + "merge-options": "1.0.1", + "posthtml": "^0.9.2", + "posthtml-parser": "^0.2.1", + "posthtml-render": "^1.0.6" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "prettier": { + "version": "2.2.1", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=" + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "dev": true, + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true + }, + "quill": { + "version": "1.3.7", + "requires": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.2", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + } + }, + "quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "requires": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "dev": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "resize-detector": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/resize-detector/-/resize-detector-0.3.0.tgz", + "integrity": "sha512-R/tCuvuOHQ8o2boRP6vgx8hXCCy87H1eY9V5imBYeVNyNVpuL9ciReSccLj2gDcax9+2weXy3bc8Vv+NRXeEvQ==" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dev": true, + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "rollup": { + "version": "2.43.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.43.1.tgz", + "integrity": "sha512-kvRE6VJbiv4d8m2nGeccc3qRpzOMghAhu2KeITjyZVCjneIFLPQ3zm2Wmqnl0LcUg3FvDaV0MfKnG4NCMbiSfw==", + "dev": true, + "requires": { + "fsevents": "~2.3.1" + } + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "sass": { + "version": "1.32.8", + "dev": true, + "requires": { + "chokidar": ">=2.0.0 <4.0.0" + } + }, + "sass-loader": { + "version": "11.0.1", + "dev": true, + "requires": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + } + }, + "select": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", + "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" + }, + "semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "sigmund": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "socket.io-client": { + "version": "4.0.0", + "requires": { + "@types/component-emitter": "^1.2.10", + "backo2": "~1.0.2", + "component-emitter": "~1.3.0", + "debug": "~4.3.1", + "engine.io-client": "~5.0.0", + "parseuri": "0.0.6", + "socket.io-parser": "~4.0.4" + } + }, + "socket.io-parser": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.0.4.tgz", + "integrity": "sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g==", + "requires": { + "@types/component-emitter": "^1.2.10", + "component-emitter": "~1.3.0", + "debug": "~4.3.1" + } + }, + "sortablejs": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.10.2.tgz", + "integrity": "sha512-YkPGufevysvfwn5rfdlGyrGjt7/CRHwvRPogD/lC+TnvcN29jDpCifKP+rBqf+LRldfXSTh+0CGLcSg0VIxq3A==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "store": { + "version": "2.0.12" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true + }, + "string-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/string-hash/-/string-hash-1.1.3.tgz", + "integrity": "sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=", + "dev": true + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + } + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "svg-baker": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/svg-baker/-/svg-baker-1.7.0.tgz", + "integrity": "sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==", + "dev": true, + "requires": { + "bluebird": "^3.5.0", + "clone": "^2.1.1", + "he": "^1.1.1", + "image-size": "^0.5.1", + "loader-utils": "^1.1.0", + "merge-options": "1.0.1", + "micromatch": "3.1.0", + "postcss": "^5.2.17", + "postcss-prefix-selector": "^1.6.0", + "posthtml-rename-id": "^1.0", + "posthtml-svg-mode": "^1.0.3", + "query-string": "^4.3.2", + "traverse": "^0.6.6" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "svg-baker-runtime": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/svg-baker-runtime/-/svg-baker-runtime-1.4.7.tgz", + "integrity": "sha512-Zorfwwj5+lWjk/oxwSMsRdS2sPQQdTmmsvaSpzU+i9ZWi3zugHLt6VckWfnswphQP0LmOel3nggpF5nETbt6xw==", + "dev": true, + "requires": { + "deepmerge": "1.3.2", + "mitt": "1.1.2", + "svg-baker": "^1.7.0" + }, + "dependencies": { + "mitt": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.1.2.tgz", + "integrity": "sha1-OA5hSA1qYVtmDwertg1R4KTkvtY=", + "dev": true + } + } + }, + "svg-sprite-loader": { + "version": "6.0.2", + "dev": true, + "requires": { + "bluebird": "^3.5.0", + "deepmerge": "1.3.2", + "domready": "1.0.8", + "escape-string-regexp": "1.0.5", + "loader-utils": "^1.1.0", + "svg-baker": "^1.5.0", + "svg-baker-runtime": "^1.4.7", + "url-slug": "2.0.0" + } + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", + "dev": true + }, + "table": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.9.tgz", + "integrity": "sha512-F3cLs9a3hL1Z7N4+EkSscsel3z55XT950AvB05bwayrNg5T1/gykXtigioTAjbltvbMSJvvhFCbnf6mX+ntnJQ==", + "dev": true, + "requires": { + "ajv": "^8.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "lodash.clonedeep": "^4.5.0", + "lodash.flatten": "^4.4.0", + "lodash.truncate": "^4.4.2", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ajv": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.0.3.tgz", + "integrity": "sha512-Df6NAivu9KpZw+q8ySijAgLvr1mUA5ihkRvCLCxpdYR21ann5yIuN+PpFxmweSj7i3yjJ0x5LN5KVs0RRzskAQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + }, + "dependencies": { + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + } + } + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", + "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=", + "dev": true + }, + "tslib": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.0.3.tgz", + "integrity": "sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "typescript": { + "version": "4.2.3", + "dev": true + }, + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" + } + }, + "unidecode": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/unidecode/-/unidecode-0.1.8.tgz", + "integrity": "sha1-77swFTi8RSRqmsjFWdcvAVMFBT4=", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url-slug": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/url-slug/-/url-slug-2.0.0.tgz", + "integrity": "sha1-p4nVrtSZXA2VrzM3etHVxo1NcCc=", + "dev": true, + "requires": { + "unidecode": "0.1.8" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "uuid": { + "version": "8.3.2" + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", + "dev": true + }, + "vite": { + "version": "2.1.3", + "dev": true, + "requires": { + "esbuild": "^0.9.3", + "fsevents": "~2.3.1", + "postcss": "^8.2.1", + "resolve": "^1.19.0", + "rollup": "^2.38.5" + } + }, + "vite-svg-loader": { + "version": "1.5.1", + "dev": true, + "requires": { + "@vue/compiler-sfc": "^3.0.5" + } + }, + "vue": { + "version": "3.0.9", + "requires": { + "@vue/compiler-dom": "3.0.9", + "@vue/runtime-dom": "3.0.9", + "@vue/shared": "3.0.9" + } + }, + "vue-demi": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.7.4.tgz", + "integrity": "sha512-PT0qzI9Rp8R8eUAsTPXADC+KAZdrMufmbZqEMMqvaiesWyjCpgyuuvS5Su8cvBjK9RevLT/YfFiKWxc8YB9/8g==" + }, + "vue-echarts": { + "version": "6.0.0-rc.3", + "requires": { + "resize-detector": "^0.3.0", + "vue-demi": "^0.7.1" + } + }, + "vue-eslint-parser": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-7.6.0.tgz", + "integrity": "sha512-QXxqH8ZevBrtiZMZK0LpwaMfevQi9UL7lY6Kcp+ogWHC88AuwUPwwCIzkOUc1LR4XsYAt/F9yHXAB/QoD17QXA==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "eslint-scope": "^5.0.0", + "eslint-visitor-keys": "^1.1.0", + "espree": "^6.2.1", + "esquery": "^1.4.0", + "lodash": "^4.17.15" + }, + "dependencies": { + "espree": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", + "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + } + } + }, + "vue-router": { + "version": "4.0.5" + }, + "vue-tsc": { + "version": "0.0.8", + "dev": true, + "requires": { + "unzipper": "^0.10.11" + }, + "dependencies": { + "bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM=", + "dev": true + }, + "unzipper": { + "version": "0.10.11", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.11.tgz", + "integrity": "sha512-+BrAq2oFqWod5IESRjL3S8baohbevGcVA+teAIOYWM3pDVdseogqbzhhvvmiyQrUNKFUnDMtELW3X8ykbyDCJw==", + "dev": true, + "requires": { + "big-integer": "^1.6.17", + "binary": "~0.3.0", + "bluebird": "~3.4.1", + "buffer-indexof-polyfill": "~1.0.0", + "duplexer2": "~0.1.4", + "fstream": "^1.0.12", + "graceful-fs": "^4.2.2", + "listenercount": "~1.0.1", + "readable-stream": "~2.3.6", + "setimmediate": "~1.0.4" + } + } + } + }, + "vuedraggable": { + "version": "4.0.1", + "requires": { + "sortablejs": "1.10.2" + } + }, + "vuex": { + "version": "4.0.0" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "ws": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz", + "integrity": "sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "yeast": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", + "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=" + }, + "zrender": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.0.4.tgz", + "integrity": "sha512-DJpy0yrHYY5CuH6vhb9IINWbjvBUe/56J8aH86Jb7O8rRPAYZ3M2E469Qf5B3EOIfM3o3aUrO5edRQfLJ+l1Qw==", + "requires": { + "tslib": "2.0.3" + } + } + } +} diff --git a/package.json b/package.json index bf06fb4c8df44af0d3db77b5e88f2e068afd5674..2ccdc049cada427d95864a9b2edb6b7a772aa83f 100644 --- a/package.json +++ b/package.json @@ -1,65 +1,62 @@ { - "name": "cool-admin-vue", - "version": "3.2.0", + "name": "front-next", + "version": "0.5.1", "scripts": { - "serve": "vue-cli-service serve", - "build": "vue-cli-service build", - "report": "vue-cli-service build --report", - "lint": "vue-cli-service lint", - "inspect": "vue inspect --mode=production > output.js" + "dev": "vite", + "build": "vue-tsc --noEmit --skipLibCheck && vite build", + "serve": "vite preview", + "lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", + "lint:eslint": "eslint \"{src,mock}/**/*.{vue,ts,tsx}\" --fix" }, "dependencies": { - "@vue/composition-api": "^1.0.0-rc.5", + "array.prototype.flat": "^1.2.4", "axios": "^0.21.1", - "cl-admin": "^1.5.3", - "cl-admin-crud": "^1.6.8", - "cl-admin-theme": "^0.0.5", - "clipboard": "^2.0.7", - "codemirror": "^5.59.4", + "cl-admin-crud-vue3": "^0.3.0", + "clipboard": "^2.0.8", + "clone-deep": "^4.0.1", + "codemirror": "^5.60.0", "core-js": "^3.6.5", - "dayjs": "^1.10.4", "echarts": "^5.0.2", - "element-ui": "^2.15.1", + "element-plus": "^1.0.2-beta.48", + "file-saver": "^2.0.5", + "glob": "^7.1.6", "js-beautify": "^1.13.5", + "merge": "^2.1.1", + "mitt": "^2.1.0", "mockjs": "^1.1.0", "nprogress": "^0.2.0", - "qs": "^6.9.1", "quill": "^1.3.7", - "socket.io-client": "2.3.1", + "socket.io-client": "^4.0.0", "store": "^2.0.12", "uuid": "^8.3.2", - "vue": "^2.6.11", - "vue-codemirror": "^4.0.6", - "vue-cron": "^1.0.9", + "vue": "^3.0.11", "vue-echarts": "^6.0.0-rc.3", - "vue-router": "^3.2.0", - "vuedraggable": "^2.24.3", - "vuex": "^3.4.0" + "vue-router": "^4.0.5", + "vuedraggable": "^4.0.1", + "vuex": "^4.0.0-0", + "xlsx": "^0.16.9" }, "devDependencies": { - "@typescript-eslint/parser": "^3.0.0", - "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0", - "@vue/babel-preset-jsx": "^1.1.2", - "@vue/cli-plugin-babel": "~4.5.0", - "@vue/cli-plugin-eslint": "~4.5.0", - "@vue/cli-plugin-router": "~4.5.0", - "@vue/cli-plugin-vuex": "~4.5.0", - "@vue/cli-service": "~4.5.0", - "@vue/eslint-config-prettier": "^6.0.0", - "babel-eslint": "^10.1.0", - "babel-plugin-component": "^1.1.1", - "babel-plugin-jsx-v-model": "^2.0.3", - "clean-webpack-plugin": "^3.0.0", - "eslint": "^6.7.2", - "eslint-plugin-prettier": "^3.1.3", - "eslint-plugin-vue": "^6.2.2", - "hard-source-webpack-plugin": "^0.13.1", - "node-sass": "^4.12.0", - "prettier": "^1.19.1", - "sass-loader": "^8.0.2", - "svg-sprite-loader": "^5.0.0", - "typescript": "^3.9.3", - "vue-template-compiler": "^2.6.11", - "webpack-cli": "^3.3.12" + "@types/lodash": "^4.14.168", + "@types/node": "^14.14.37", + "@typescript-eslint/eslint-plugin": "^4.20.0", + "@typescript-eslint/parser": "^4.20.0", + "@vitejs/plugin-vue": "^1.2.1", + "@vitejs/plugin-vue-jsx": "^1.1.3", + "@vue/compiler-sfc": "^3.0.5", + "@vue/composition-api": "^1.0.0-rc.6", + "eslint": "^7.23.0", + "eslint-config-prettier": "^8.1.0", + "eslint-plugin-prettier": "^3.3.1", + "eslint-plugin-vue": "^7.8.0", + "prettier": "^2.2.1", + "sass": "^1.34.0", + "sass-loader": "^11.1.1", + "svg-sprite-loader": "^6.0.2", + "typescript": "^4.1.3", + "vite": "^2.3.5", + "vite-plugin-style-import": "^0.9.1", + "vite-svg-loader": "^1.5.1", + "vue-tsc": "^0.0.8" } } diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 30803047c2b4c1aeed3052354af76ce3b4072967..0000000000000000000000000000000000000000 --- a/postcss.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - plugins: { - autoprefixer: {} - } -}; diff --git a/public/theme/black.css b/public/theme/black.css index 180f968ea761424f712c68fd4ce76c82a2419d5f..f9523a9c76ce7fa7a2353a5b43d699859a420a95 100644 --- a/public/theme/black.css +++ b/public/theme/black.css @@ -26,878 +26,6 @@ .el-upload-list__item.is-success:not(.focusing):focus { outline-width: 0; } -@font-face { - font-family: element-icons; - src: url(fonts/element-icons.woff) format("woff"), - url(fonts/element-icons.ttf) format("truetype"); - font-weight: 400; - font-display: "auto"; - font-style: normal; -} -[class*=" el-icon-"], -[class^="el-icon-"] { - font-family: element-icons !important; - speak: none; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: baseline; - display: inline-block; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.el-icon-ice-cream-round:before { - content: "\e6a0"; -} -.el-icon-ice-cream-square:before { - content: "\e6a3"; -} -.el-icon-lollipop:before { - content: "\e6a4"; -} -.el-icon-potato-strips:before { - content: "\e6a5"; -} -.el-icon-milk-tea:before { - content: "\e6a6"; -} -.el-icon-ice-drink:before { - content: "\e6a7"; -} -.el-icon-ice-tea:before { - content: "\e6a9"; -} -.el-icon-coffee:before { - content: "\e6aa"; -} -.el-icon-orange:before { - content: "\e6ab"; -} -.el-icon-pear:before { - content: "\e6ac"; -} -.el-icon-apple:before { - content: "\e6ad"; -} -.el-icon-cherry:before { - content: "\e6ae"; -} -.el-icon-watermelon:before { - content: "\e6af"; -} -.el-icon-grape:before { - content: "\e6b0"; -} -.el-icon-refrigerator:before { - content: "\e6b1"; -} -.el-icon-goblet-square-full:before { - content: "\e6b2"; -} -.el-icon-goblet-square:before { - content: "\e6b3"; -} -.el-icon-goblet-full:before { - content: "\e6b4"; -} -.el-icon-goblet:before { - content: "\e6b5"; -} -.el-icon-cold-drink:before { - content: "\e6b6"; -} -.el-icon-coffee-cup:before { - content: "\e6b8"; -} -.el-icon-water-cup:before { - content: "\e6b9"; -} -.el-icon-hot-water:before { - content: "\e6ba"; -} -.el-icon-ice-cream:before { - content: "\e6bb"; -} -.el-icon-dessert:before { - content: "\e6bc"; -} -.el-icon-sugar:before { - content: "\e6bd"; -} -.el-icon-tableware:before { - content: "\e6be"; -} -.el-icon-burger:before { - content: "\e6bf"; -} -.el-icon-knife-fork:before { - content: "\e6c1"; -} -.el-icon-fork-spoon:before { - content: "\e6c2"; -} -.el-icon-chicken:before { - content: "\e6c3"; -} -.el-icon-food:before { - content: "\e6c4"; -} -.el-icon-dish-1:before { - content: "\e6c5"; -} -.el-icon-dish:before { - content: "\e6c6"; -} -.el-icon-moon-night:before { - content: "\e6ee"; -} -.el-icon-moon:before { - content: "\e6f0"; -} -.el-icon-cloudy-and-sunny:before { - content: "\e6f1"; -} -.el-icon-partly-cloudy:before { - content: "\e6f2"; -} -.el-icon-cloudy:before { - content: "\e6f3"; -} -.el-icon-sunny:before { - content: "\e6f6"; -} -.el-icon-sunset:before { - content: "\e6f7"; -} -.el-icon-sunrise-1:before { - content: "\e6f8"; -} -.el-icon-sunrise:before { - content: "\e6f9"; -} -.el-icon-heavy-rain:before { - content: "\e6fa"; -} -.el-icon-lightning:before { - content: "\e6fb"; -} -.el-icon-light-rain:before { - content: "\e6fc"; -} -.el-icon-wind-power:before { - content: "\e6fd"; -} -.el-icon-baseball:before { - content: "\e712"; -} -.el-icon-soccer:before { - content: "\e713"; -} -.el-icon-football:before { - content: "\e715"; -} -.el-icon-basketball:before { - content: "\e716"; -} -.el-icon-ship:before { - content: "\e73f"; -} -.el-icon-truck:before { - content: "\e740"; -} -.el-icon-bicycle:before { - content: "\e741"; -} -.el-icon-mobile-phone:before { - content: "\e6d3"; -} -.el-icon-service:before { - content: "\e6d4"; -} -.el-icon-key:before { - content: "\e6e2"; -} -.el-icon-unlock:before { - content: "\e6e4"; -} -.el-icon-lock:before { - content: "\e6e5"; -} -.el-icon-watch:before { - content: "\e6fe"; -} -.el-icon-watch-1:before { - content: "\e6ff"; -} -.el-icon-timer:before { - content: "\e702"; -} -.el-icon-alarm-clock:before { - content: "\e703"; -} -.el-icon-map-location:before { - content: "\e704"; -} -.el-icon-delete-location:before { - content: "\e705"; -} -.el-icon-add-location:before { - content: "\e706"; -} -.el-icon-location-information:before { - content: "\e707"; -} -.el-icon-location-outline:before { - content: "\e708"; -} -.el-icon-location:before { - content: "\e79e"; -} -.el-icon-place:before { - content: "\e709"; -} -.el-icon-discover:before { - content: "\e70a"; -} -.el-icon-first-aid-kit:before { - content: "\e70b"; -} -.el-icon-trophy-1:before { - content: "\e70c"; -} -.el-icon-trophy:before { - content: "\e70d"; -} -.el-icon-medal:before { - content: "\e70e"; -} -.el-icon-medal-1:before { - content: "\e70f"; -} -.el-icon-stopwatch:before { - content: "\e710"; -} -.el-icon-mic:before { - content: "\e711"; -} -.el-icon-copy-document:before { - content: "\e718"; -} -.el-icon-full-screen:before { - content: "\e719"; -} -.el-icon-switch-button:before { - content: "\e71b"; -} -.el-icon-aim:before { - content: "\e71c"; -} -.el-icon-crop:before { - content: "\e71d"; -} -.el-icon-odometer:before { - content: "\e71e"; -} -.el-icon-time:before { - content: "\e71f"; -} -.el-icon-bangzhu:before { - content: "\e724"; -} -.el-icon-close-notification:before { - content: "\e726"; -} -.el-icon-microphone:before { - content: "\e727"; -} -.el-icon-turn-off-microphone:before { - content: "\e728"; -} -.el-icon-position:before { - content: "\e729"; -} -.el-icon-postcard:before { - content: "\e72a"; -} -.el-icon-message:before { - content: "\e72b"; -} -.el-icon-chat-line-square:before { - content: "\e72d"; -} -.el-icon-chat-dot-square:before { - content: "\e72e"; -} -.el-icon-chat-dot-round:before { - content: "\e72f"; -} -.el-icon-chat-square:before { - content: "\e730"; -} -.el-icon-chat-line-round:before { - content: "\e731"; -} -.el-icon-chat-round:before { - content: "\e732"; -} -.el-icon-set-up:before { - content: "\e733"; -} -.el-icon-turn-off:before { - content: "\e734"; -} -.el-icon-open:before { - content: "\e735"; -} -.el-icon-connection:before { - content: "\e736"; -} -.el-icon-link:before { - content: "\e737"; -} -.el-icon-cpu:before { - content: "\e738"; -} -.el-icon-thumb:before { - content: "\e739"; -} -.el-icon-female:before { - content: "\e73a"; -} -.el-icon-male:before { - content: "\e73b"; -} -.el-icon-guide:before { - content: "\e73c"; -} -.el-icon-news:before { - content: "\e73e"; -} -.el-icon-price-tag:before { - content: "\e744"; -} -.el-icon-discount:before { - content: "\e745"; -} -.el-icon-wallet:before { - content: "\e747"; -} -.el-icon-coin:before { - content: "\e748"; -} -.el-icon-money:before { - content: "\e749"; -} -.el-icon-bank-card:before { - content: "\e74a"; -} -.el-icon-box:before { - content: "\e74b"; -} -.el-icon-present:before { - content: "\e74c"; -} -.el-icon-sell:before { - content: "\e6d5"; -} -.el-icon-sold-out:before { - content: "\e6d6"; -} -.el-icon-shopping-bag-2:before { - content: "\e74d"; -} -.el-icon-shopping-bag-1:before { - content: "\e74e"; -} -.el-icon-shopping-cart-2:before { - content: "\e74f"; -} -.el-icon-shopping-cart-1:before { - content: "\e750"; -} -.el-icon-shopping-cart-full:before { - content: "\e751"; -} -.el-icon-smoking:before { - content: "\e752"; -} -.el-icon-no-smoking:before { - content: "\e753"; -} -.el-icon-house:before { - content: "\e754"; -} -.el-icon-table-lamp:before { - content: "\e755"; -} -.el-icon-school:before { - content: "\e756"; -} -.el-icon-office-building:before { - content: "\e757"; -} -.el-icon-toilet-paper:before { - content: "\e758"; -} -.el-icon-notebook-2:before { - content: "\e759"; -} -.el-icon-notebook-1:before { - content: "\e75a"; -} -.el-icon-files:before { - content: "\e75b"; -} -.el-icon-collection:before { - content: "\e75c"; -} -.el-icon-receiving:before { - content: "\e75d"; -} -.el-icon-suitcase-1:before { - content: "\e760"; -} -.el-icon-suitcase:before { - content: "\e761"; -} -.el-icon-film:before { - content: "\e763"; -} -.el-icon-collection-tag:before { - content: "\e765"; -} -.el-icon-data-analysis:before { - content: "\e766"; -} -.el-icon-pie-chart:before { - content: "\e767"; -} -.el-icon-data-board:before { - content: "\e768"; -} -.el-icon-data-line:before { - content: "\e76d"; -} -.el-icon-reading:before { - content: "\e769"; -} -.el-icon-magic-stick:before { - content: "\e76a"; -} -.el-icon-coordinate:before { - content: "\e76b"; -} -.el-icon-mouse:before { - content: "\e76c"; -} -.el-icon-brush:before { - content: "\e76e"; -} -.el-icon-headset:before { - content: "\e76f"; -} -.el-icon-umbrella:before { - content: "\e770"; -} -.el-icon-scissors:before { - content: "\e771"; -} -.el-icon-mobile:before { - content: "\e773"; -} -.el-icon-attract:before { - content: "\e774"; -} -.el-icon-monitor:before { - content: "\e775"; -} -.el-icon-search:before { - content: "\e778"; -} -.el-icon-takeaway-box:before { - content: "\e77a"; -} -.el-icon-paperclip:before { - content: "\e77d"; -} -.el-icon-printer:before { - content: "\e77e"; -} -.el-icon-document-add:before { - content: "\e782"; -} -.el-icon-document:before { - content: "\e785"; -} -.el-icon-document-checked:before { - content: "\e786"; -} -.el-icon-document-copy:before { - content: "\e787"; -} -.el-icon-document-delete:before { - content: "\e788"; -} -.el-icon-document-remove:before { - content: "\e789"; -} -.el-icon-tickets:before { - content: "\e78b"; -} -.el-icon-folder-checked:before { - content: "\e77f"; -} -.el-icon-folder-delete:before { - content: "\e780"; -} -.el-icon-folder-remove:before { - content: "\e781"; -} -.el-icon-folder-add:before { - content: "\e783"; -} -.el-icon-folder-opened:before { - content: "\e784"; -} -.el-icon-folder:before { - content: "\e78a"; -} -.el-icon-edit-outline:before { - content: "\e764"; -} -.el-icon-edit:before { - content: "\e78c"; -} -.el-icon-date:before { - content: "\e78e"; -} -.el-icon-c-scale-to-original:before { - content: "\e7c6"; -} -.el-icon-view:before { - content: "\e6ce"; -} -.el-icon-loading:before { - content: "\e6cf"; -} -.el-icon-rank:before { - content: "\e6d1"; -} -.el-icon-sort-down:before { - content: "\e7c4"; -} -.el-icon-sort-up:before { - content: "\e7c5"; -} -.el-icon-sort:before { - content: "\e6d2"; -} -.el-icon-finished:before { - content: "\e6cd"; -} -.el-icon-refresh-left:before { - content: "\e6c7"; -} -.el-icon-refresh-right:before { - content: "\e6c8"; -} -.el-icon-refresh:before { - content: "\e6d0"; -} -.el-icon-video-play:before { - content: "\e7c0"; -} -.el-icon-video-pause:before { - content: "\e7c1"; -} -.el-icon-d-arrow-right:before { - content: "\e6dc"; -} -.el-icon-d-arrow-left:before { - content: "\e6dd"; -} -.el-icon-arrow-up:before { - content: "\e6e1"; -} -.el-icon-arrow-down:before { - content: "\e6df"; -} -.el-icon-arrow-right:before { - content: "\e6e0"; -} -.el-icon-arrow-left:before { - content: "\e6de"; -} -.el-icon-top-right:before { - content: "\e6e7"; -} -.el-icon-top-left:before { - content: "\e6e8"; -} -.el-icon-top:before { - content: "\e6e6"; -} -.el-icon-bottom:before { - content: "\e6eb"; -} -.el-icon-right:before { - content: "\e6e9"; -} -.el-icon-back:before { - content: "\e6ea"; -} -.el-icon-bottom-right:before { - content: "\e6ec"; -} -.el-icon-bottom-left:before { - content: "\e6ed"; -} -.el-icon-caret-top:before { - content: "\e78f"; -} -.el-icon-caret-bottom:before { - content: "\e790"; -} -.el-icon-caret-right:before { - content: "\e791"; -} -.el-icon-caret-left:before { - content: "\e792"; -} -.el-icon-d-caret:before { - content: "\e79a"; -} -.el-icon-share:before { - content: "\e793"; -} -.el-icon-menu:before { - content: "\e798"; -} -.el-icon-s-grid:before { - content: "\e7a6"; -} -.el-icon-s-check:before { - content: "\e7a7"; -} -.el-icon-s-data:before { - content: "\e7a8"; -} -.el-icon-s-opportunity:before { - content: "\e7aa"; -} -.el-icon-s-custom:before { - content: "\e7ab"; -} -.el-icon-s-claim:before { - content: "\e7ad"; -} -.el-icon-s-finance:before { - content: "\e7ae"; -} -.el-icon-s-comment:before { - content: "\e7af"; -} -.el-icon-s-flag:before { - content: "\e7b0"; -} -.el-icon-s-marketing:before { - content: "\e7b1"; -} -.el-icon-s-shop:before { - content: "\e7b4"; -} -.el-icon-s-open:before { - content: "\e7b5"; -} -.el-icon-s-management:before { - content: "\e7b6"; -} -.el-icon-s-ticket:before { - content: "\e7b7"; -} -.el-icon-s-release:before { - content: "\e7b8"; -} -.el-icon-s-home:before { - content: "\e7b9"; -} -.el-icon-s-promotion:before { - content: "\e7ba"; -} -.el-icon-s-operation:before { - content: "\e7bb"; -} -.el-icon-s-unfold:before { - content: "\e7bc"; -} -.el-icon-s-fold:before { - content: "\e7a9"; -} -.el-icon-s-platform:before { - content: "\e7bd"; -} -.el-icon-s-order:before { - content: "\e7be"; -} -.el-icon-s-cooperation:before { - content: "\e7bf"; -} -.el-icon-bell:before { - content: "\e725"; -} -.el-icon-message-solid:before { - content: "\e799"; -} -.el-icon-video-camera:before { - content: "\e772"; -} -.el-icon-video-camera-solid:before { - content: "\e796"; -} -.el-icon-camera:before { - content: "\e779"; -} -.el-icon-camera-solid:before { - content: "\e79b"; -} -.el-icon-download:before { - content: "\e77c"; -} -.el-icon-upload2:before { - content: "\e77b"; -} -.el-icon-upload:before { - content: "\e7c3"; -} -.el-icon-picture-outline-round:before { - content: "\e75f"; -} -.el-icon-picture-outline:before { - content: "\e75e"; -} -.el-icon-picture:before { - content: "\e79f"; -} -.el-icon-close:before { - content: "\e6db"; -} -.el-icon-check:before { - content: "\e6da"; -} -.el-icon-plus:before { - content: "\e6d9"; -} -.el-icon-minus:before { - content: "\e6d8"; -} -.el-icon-help:before { - content: "\e73d"; -} -.el-icon-s-help:before { - content: "\e7b3"; -} -.el-icon-circle-close:before { - content: "\e78d"; -} -.el-icon-circle-check:before { - content: "\e720"; -} -.el-icon-circle-plus-outline:before { - content: "\e723"; -} -.el-icon-remove-outline:before { - content: "\e722"; -} -.el-icon-zoom-out:before { - content: "\e776"; -} -.el-icon-zoom-in:before { - content: "\e777"; -} -.el-icon-error:before { - content: "\e79d"; -} -.el-icon-success:before { - content: "\e79c"; -} -.el-icon-circle-plus:before { - content: "\e7a0"; -} -.el-icon-remove:before { - content: "\e7a2"; -} -.el-icon-info:before { - content: "\e7a1"; -} -.el-icon-question:before { - content: "\e7a4"; -} -.el-icon-warning-outline:before { - content: "\e6c9"; -} -.el-icon-warning:before { - content: "\e7a3"; -} -.el-icon-goods:before { - content: "\e7c2"; -} -.el-icon-s-goods:before { - content: "\e7b2"; -} -.el-icon-star-off:before { - content: "\e717"; -} -.el-icon-star-on:before { - content: "\e797"; -} -.el-icon-more-outline:before { - content: "\e6cc"; -} -.el-icon-more:before { - content: "\e794"; -} -.el-icon-phone-outline:before { - content: "\e6cb"; -} -.el-icon-phone:before { - content: "\e795"; -} -.el-icon-user:before { - content: "\e6e3"; -} -.el-icon-user-solid:before { - content: "\e7a5"; -} -.el-icon-setting:before { - content: "\e6ca"; -} -.el-icon-s-tools:before { - content: "\e7ac"; -} -.el-icon-delete:before { - content: "\e6d7"; -} -.el-icon-delete-solid:before { - content: "\e7c9"; -} -.el-icon-eleme:before { - content: "\e7c7"; -} -.el-icon-platform-eleme:before { - content: "\e7ca"; -} -.el-icon-loading { - -webkit-animation: rotating 2s linear infinite; - animation: rotating 2s linear infinite; -} -.el-icon--right { - margin-left: 5px; -} -.el-icon--left { - margin-right: 5px; -} @-webkit-keyframes rotating { 0% { -webkit-transform: rotateZ(0); @@ -970,7 +98,7 @@ outline: 0; } .el-pagination button:hover { - color: #2f3447; + color: #1d1a1a; } .el-pagination button:disabled { color: #c0c4cc; @@ -1041,7 +169,7 @@ padding-left: 8px; } .el-pagination__sizes .el-input .el-input__inner:hover { - border-color: #2f3447; + border-color: #1d1a1a; } .el-pagination__total { margin-right: 10px; @@ -1102,10 +230,10 @@ color: #c0c4cc; } .el-pagination.is-background .el-pager li:not(.disabled):hover { - color: #2f3447; + color: #1d1a1a; } .el-pagination.is-background .el-pager li:not(.disabled).active { - background-color: #2f3447; + background-color: #1d1a1a; color: #fff; } .el-dialog, @@ -1167,10 +295,10 @@ border-left: 0; } .el-pager li:hover { - color: #2f3447; + color: #1d1a1a; } .el-pager li.active { - color: #2f3447; + color: #1d1a1a; cursor: default; } @-webkit-keyframes v-modal-in { @@ -1227,7 +355,7 @@ } .el-dialog__headerbtn:focus .el-dialog__close, .el-dialog__headerbtn:hover .el-dialog__close { - color: #2f3447; + color: #1d1a1a; } .el-dialog__title { line-height: 24px; @@ -1426,15 +554,6 @@ margin: 0 3px; } .el-dropdown-menu { - position: absolute; - top: 0; - left: 0; - padding: 10px 0; - margin: 5px 0; - background-color: #fff; - border: 1px solid #ebeef5; - border-radius: 4px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-dropdown-menu__item { list-style: none; @@ -1448,8 +567,8 @@ } .el-dropdown-menu__item:focus, .el-dropdown-menu__item:not(.is-disabled):hover { - background-color: #eaebed; - color: #595d6c; + background-color: rgb(232, 232, 232); + color: rgb(74, 72, 72); } .el-dropdown-menu__item i { margin-right: 5px; @@ -1567,7 +686,7 @@ color: #303133; } .el-menu--horizontal > .el-submenu.is-active .el-submenu__title { - border-bottom: 2px solid #2f3447; + border-bottom: 2px solid #1d1a1a; color: #303133; } .el-menu--horizontal > .el-submenu .el-submenu__title { @@ -1601,7 +720,7 @@ color: #303133; } .el-menu--horizontal > .el-menu-item.is-active { - border-bottom: 2px solid #2f3447; + border-bottom: 2px solid #1d1a1a; color: #303133; } .el-menu--collapse { @@ -1687,7 +806,7 @@ .el-menu-item:focus, .el-menu-item:hover { outline: 0; - background-color: #eaebed; + background-color: rgb(232, 232, 232); } .el-menu-item.is-disabled { opacity: 0.25; @@ -1702,7 +821,7 @@ vertical-align: middle; } .el-menu-item.is-active { - color: #2f3447; + color: #1d1a1a; } .el-menu-item.is-active i { color: inherit; @@ -1730,7 +849,7 @@ .el-submenu__title:focus, .el-submenu__title:hover { outline: 0; - background-color: #eaebed; + background-color: rgb(232, 232, 232); } .el-submenu__title.is-disabled { opacity: 0.25; @@ -1738,7 +857,7 @@ background: 0 0 !important; } .el-submenu__title:hover { - background-color: #eaebed; + background-color: rgb(232, 232, 232); } .el-submenu .el-menu { border: none; @@ -1761,7 +880,7 @@ font-size: 12px; } .el-submenu.is-active .el-submenu__title { - border-bottom-color: #2f3447; + border-bottom-color: #1d1a1a; } .el-submenu.is-opened > .el-submenu__title .el-submenu__icon-arrow { -webkit-transform: rotateZ(180deg); @@ -1833,7 +952,7 @@ padding: 12px 20px; } .el-radio-button__inner:hover { - color: #2f3447; + color: #1d1a1a; } .el-radio-button__inner [class*="el-icon-"] { line-height: 0.9; @@ -1855,10 +974,10 @@ } .el-radio-button__orig-radio:checked + .el-radio-button__inner { color: #fff; - background-color: #2f3447; - border-color: #2f3447; - -webkit-box-shadow: -1px 0 0 0 #2f3447; - box-shadow: -1px 0 0 0 #2f3447; + background-color: #1d1a1a; + border-color: #1d1a1a; + -webkit-box-shadow: -1px 0 0 0 #1d1a1a; + box-shadow: -1px 0 0 0 #1d1a1a; } .el-radio-button__orig-radio:disabled + .el-radio-button__inner { color: #c0c4cc; @@ -1904,8 +1023,8 @@ padding: 7px 15px; } .el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled) { - -webkit-box-shadow: 0 0 2px 2px #2f3447; - box-shadow: 0 0 2px 2px #2f3447; + -webkit-box-shadow: 0 0 2px 2px #1d1a1a; + box-shadow: 0 0 2px 2px #1d1a1a; } .el-switch { display: -webkit-inline-box; @@ -1939,7 +1058,7 @@ color: #303133; } .el-switch__label.is-active { - color: #2f3447; + color: #1d1a1a; } .el-switch__label--left { margin-right: 10px; @@ -1987,8 +1106,8 @@ background-color: #fff; } .el-switch.is-checked .el-switch__core { - border-color: #2f3447; - background-color: #2f3447; + border-color: #1d1a1a; + background-color: #1d1a1a; } .el-switch.is-checked .el-switch__core::after { left: 100%; @@ -2008,19 +1127,9 @@ opacity: 0; } .el-select-dropdown { - position: absolute; - z-index: 1001; - border: 1px solid #e4e7ed; - border-radius: 4px; - background-color: #fff; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 5px 0; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected { - color: #2f3447; + color: #1d1a1a; background-color: #fff; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover { @@ -2082,7 +1191,7 @@ background-color: #f5f7fa; } .el-select-dropdown__item.selected { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .el-select-group { @@ -2132,7 +1241,7 @@ padding-right: 35px; } .el-select .el-input__inner:focus { - border-color: #2f3447; + border-color: #1d1a1a; } .el-select .el-input .el-select__caret { color: #c0c4cc; @@ -2169,7 +1278,7 @@ border-color: #e4e7ed; } .el-select .el-input.is-focus .el-input__inner { - border-color: #2f3447; + border-color: #1d1a1a; } .el-select > .el-input { display: block; @@ -2417,7 +1526,7 @@ width: 100%; } .el-table th > .cell.highlight { - color: #2f3447; + color: #1d1a1a; } .el-table th.required > div::before { display: inline-block; @@ -2635,10 +1744,10 @@ bottom: 7px; } .el-table .ascending .sort-caret.ascending { - border-bottom-color: #2f3447; + border-bottom-color: #1d1a1a; } .el-table .descending .sort-caret.descending { - border-top-color: #2f3447; + border-top-color: #1d1a1a; } .el-table .hidden-columns { position: absolute; @@ -2648,7 +1757,7 @@ background: #fafafa; } .el-table--striped .el-table__body tr.el-table__row--striped.current-row td { - background-color: #eaebed; + background-color: rgb(232, 232, 232); } .el-table__body tr.hover-row.current-row > td, .el-table__body tr.hover-row.el-table__row--striped.current-row > td, @@ -2657,7 +1766,7 @@ background-color: #f5f7fa; } .el-table__body tr.current-row > td { - background-color: #eaebed; + background-color: rgb(232, 232, 232); } .el-table__column-resize-proxy { position: absolute; @@ -2730,11 +1839,11 @@ font-size: 14px; } .el-table-filter__list-item:hover { - background-color: #eaebed; - color: #595d6c; + background-color: rgb(232, 232, 232); + color: rgb(74, 72, 72); } .el-table-filter__list-item.is-active { - background-color: #2f3447; + background-color: #1d1a1a; color: #fff; } .el-table-filter__content { @@ -2759,7 +1868,7 @@ background-color: #f2f6fc; } .el-table-filter__bottom button:hover { - color: #2f3447; + color: #1d1a1a; } .el-table-filter__bottom button:focus { outline: 0; @@ -2833,7 +1942,7 @@ position: relative; } .el-date-table td.today span { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .el-date-table td.today.end-date span, @@ -2841,11 +1950,11 @@ color: #fff; } .el-date-table td.available:hover { - color: #2f3447; + color: #1d1a1a; } .el-date-table td.current:not(.disabled) span { color: #fff; - background-color: #2f3447; + background-color: #1d1a1a; } .el-date-table td.end-date div, .el-date-table td.start-date div { @@ -2853,7 +1962,7 @@ } .el-date-table td.end-date span, .el-date-table td.start-date span { - background-color: #2f3447; + background-color: #1d1a1a; } .el-date-table td.start-date div { margin-left: 5px; @@ -2881,7 +1990,7 @@ background-color: #f2f6fc; } .el-date-table td.selected span { - background-color: #2f3447; + background-color: #1d1a1a; color: #fff; border-radius: 15px; } @@ -2915,7 +2024,7 @@ box-sizing: border-box; } .el-month-table td.today .cell { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .el-month-table td.today.end-date .cell, @@ -2940,7 +2049,7 @@ border-radius: 18px; } .el-month-table td .cell:hover { - color: #2f3447; + color: #1d1a1a; } .el-month-table td.in-range div, .el-month-table td.in-range div:hover { @@ -2953,7 +2062,7 @@ .el-month-table td.end-date .cell, .el-month-table td.start-date .cell { color: #fff; - background-color: #2f3447; + background-color: #1d1a1a; } .el-month-table td.start-date div { border-top-left-radius: 24px; @@ -2964,7 +2073,7 @@ border-bottom-right-radius: 24px; } .el-month-table td.current:not(.disabled) .cell { - color: #2f3447; + color: #1d1a1a; } .el-year-table { margin: -1px; @@ -2978,7 +2087,7 @@ cursor: pointer; } .el-year-table td.today .cell { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .el-year-table td.disabled .cell { @@ -2999,7 +2108,7 @@ } .el-year-table td .cell:hover, .el-year-table td.current:not(.disabled) .cell { - color: #2f3447; + color: #1d1a1a; } .el-date-range-picker { width: 646px; @@ -3141,7 +2250,7 @@ } .el-date-picker__header-label.active, .el-date-picker__header-label:hover { - color: #2f3447; + color: #1d1a1a; } .el-date-picker__prev-btn { float: left; @@ -3173,7 +2282,7 @@ line-height: 20px; } .time-select-item.selected:not(.disabled) { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .time-select-item.disabled { @@ -3243,6 +2352,9 @@ .el-date-editor .el-range-input::-webkit-input-placeholder { color: #c0c4cc; } +.el-date-editor .el-range-input:-ms-input-placeholder { + color: #c0c4cc; +} .el-date-editor .el-range-input::-ms-input-placeholder { color: #c0c4cc; } @@ -3277,7 +2389,7 @@ } .el-range-editor.is-active, .el-range-editor.is-active:hover { - border-color: #2f3447; + border-color: #1d1a1a; } .el-range-editor--medium.el-input__inner { height: 36px; @@ -3339,6 +2451,9 @@ .el-range-editor.is-disabled input::-webkit-input-placeholder { color: #c0c4cc; } +.el-range-editor.is-disabled input:-ms-input-placeholder { + color: #c0c4cc; +} .el-range-editor.is-disabled input::-ms-input-placeholder { color: #c0c4cc; } @@ -3393,11 +2508,11 @@ cursor: pointer; } .el-picker-panel__shortcut:hover { - color: #2f3447; + color: #1d1a1a; } .el-picker-panel__shortcut.active { background-color: #e6f1fe; - color: #2f3447; + color: #1d1a1a; } .el-picker-panel__btn { border: 1px solid #dcdcdc; @@ -3424,7 +2539,7 @@ margin-top: 8px; } .el-picker-panel__icon-btn:hover { - color: #2f3447; + color: #1d1a1a; } .el-picker-panel__icon-btn.is-disabled { color: #bbb; @@ -3498,7 +2613,7 @@ cursor: pointer; } .el-time-spinner__arrow:hover { - color: #2f3447; + color: #1d1a1a; } .el-time-spinner__arrow.el-icon-arrow-up { top: 10px; @@ -3621,7 +2736,7 @@ } .el-time-panel__btn.confirm { font-weight: 800; - color: #2f3447; + color: #1d1a1a; } .el-time-range-picker { width: 354px; @@ -3768,7 +2883,7 @@ } .el-message-box__headerbtn:focus .el-message-box__close, .el-message-box__headerbtn:hover .el-message-box__close { - color: #2f3447; + color: #1d1a1a; } .el-message-box__content { padding: 10px 15px; @@ -3963,7 +3078,7 @@ } .el-breadcrumb__inner a:hover, .el-breadcrumb__inner.is-link:hover { - color: #2f3447; + color: #1d1a1a; cursor: pointer; } .el-breadcrumb__item:last-child .el-breadcrumb__inner, @@ -4119,7 +3234,7 @@ bottom: 0; left: 0; height: 2px; - background-color: #2f3447; + background-color: #1d1a1a; z-index: 1; -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); @@ -4152,7 +3267,7 @@ transform: scale(0.8, 0.8); } .el-tabs__new-tab:hover { - color: #2f3447; + color: #1d1a1a; } .el-tabs__nav-wrap { overflow: hidden; @@ -4234,8 +3349,8 @@ outline: 0; } .el-tabs__item:focus.is-active.is-focus:not(:active) { - -webkit-box-shadow: 0 0 2px 2px #2f3447 inset; - box-shadow: 0 0 2px 2px #2f3447 inset; + -webkit-box-shadow: 0 0 2px 2px #1d1a1a inset; + box-shadow: 0 0 2px 2px #1d1a1a inset; border-radius: 3px; } .el-tabs__item .el-icon-close { @@ -4255,10 +3370,10 @@ color: #fff; } .el-tabs__item.is-active { - color: #2f3447; + color: #1d1a1a; } .el-tabs__item:hover { - color: #2f3447; + color: #1d1a1a; cursor: pointer; } .el-tabs__item.is-disabled { @@ -4347,13 +3462,13 @@ margin-left: -1px; } .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-active { - color: #2f3447; + color: #1d1a1a; background-color: #fff; border-right-color: #dcdfe6; border-left-color: #dcdfe6; } .el-tabs--border-card > .el-tabs__header .el-tabs__item:not(.is-disabled):hover { - color: #2f3447; + color: #1d1a1a; } .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-disabled { color: #c0c4cc; @@ -4800,7 +3915,7 @@ left: 0; right: 0; height: 1px; - background-color: #2f3447; + background-color: #1d1a1a; } .el-tree-node { white-space: nowrap; @@ -4810,7 +3925,7 @@ background-color: #f5f7fa; } .el-tree-node.is-drop-inner > .el-tree-node__content .el-tree-node__label { - background-color: #2f3447; + background-color: #1d1a1a; color: #fff; } .el-tree-node__content { @@ -4873,7 +3988,7 @@ display: block; } .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content { - background-color: #eeeff0; + background-color: #f0f7ff; } .el-alert { width: 100%; @@ -5110,11 +4225,11 @@ } .el-input-number__decrease:hover, .el-input-number__increase:hover { - color: #2f3447; + color: #1d1a1a; } .el-input-number__decrease:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled), .el-input-number__increase:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled) { - border-color: #2f3447; + border-color: #1d1a1a; } .el-input-number__decrease.is-disabled, .el-input-number__increase.is-disabled { @@ -5425,7 +4540,7 @@ } .el-slider__bar { height: 6px; - background-color: #2f3447; + background-color: #1d1a1a; border-top-left-radius: 3px; border-bottom-left-radius: 3px; position: absolute; @@ -5456,7 +4571,7 @@ .el-slider__button { width: 16px; height: 16px; - border: 2px solid #2f3447; + border: 2px solid #1d1a1a; background-color: #fff; border-radius: 50%; -webkit-transition: 0.2s; @@ -5578,7 +4693,7 @@ } .el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease, .el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase { - border-color: #2f3447; + border-color: #1d1a1a; } .el-slider.is-vertical .el-slider__marks-text { margin-top: 0; @@ -5674,7 +4789,7 @@ position: relative; } .el-loading-spinner .el-loading-text { - color: #2f3447; + color: #1d1a1a; margin: 3px 0; font-size: 14px; } @@ -5690,11 +4805,11 @@ stroke-dasharray: 90, 150; stroke-dashoffset: 0; stroke-width: 2; - stroke: #2f3447; + stroke: #1d1a1a; stroke-linecap: round; } .el-loading-spinner i { - color: #2f3447; + color: #1d1a1a; } @-webkit-keyframes loading-rotate { 100% { @@ -7908,11 +7023,11 @@ } .el-upload--picture-card:hover, .el-upload:focus { - border-color: #2f3447; - color: #2f3447; + border-color: #1d1a1a; + color: #1d1a1a; } .el-upload:focus .el-upload-dragger { - border-color: #2f3447; + border-color: #1d1a1a; } .el-upload-dragger { background-color: #fff; @@ -7945,15 +7060,15 @@ text-align: center; } .el-upload-dragger .el-upload__text em { - color: #2f3447; + color: #1d1a1a; font-style: normal; } .el-upload-dragger:hover { - border-color: #2f3447; + border-color: #1d1a1a; } .el-upload-dragger.is-dragover { background-color: rgba(32, 159, 255, 0.06); - border: 2px dashed #2f3447; + border: 2px dashed #1d1a1a; } .el-upload-list { margin: 0; @@ -8013,7 +7128,7 @@ font-size: 12px; cursor: pointer; opacity: 1; - color: #2f3447; + color: #1d1a1a; } .el-upload-list__item:hover { background-color: #f5f7fa; @@ -8029,7 +7144,7 @@ } .el-upload-list__item.is-success .el-upload-list__item-name:focus, .el-upload-list__item.is-success .el-upload-list__item-name:hover { - color: #2f3447; + color: #1d1a1a; cursor: pointer; } .el-upload-list__item.is-success:focus:not(:hover) .el-icon-close-tip { @@ -8077,7 +7192,7 @@ display: none; } .el-upload-list__item-delete:hover { - color: #2f3447; + color: #1d1a1a; } .el-upload-list--picture-card { margin: 0; @@ -8481,7 +7596,7 @@ left: 0; top: 0; height: 100%; - background-color: #2f3447; + background-color: #1d1a1a; text-align: right; border-radius: 100px; line-height: 1; @@ -8706,7 +7821,7 @@ border-radius: 50%; } .el-badge__content--primary { - background-color: #2f3447; + background-color: #1d1a1a; } .el-badge__content--success { background-color: #67c23a; @@ -8840,8 +7955,8 @@ border-color: #f56c6c; } .el-step__head.is-finish { - color: #2f3447; - border-color: #2f3447; + color: #1d1a1a; + border-color: #1d1a1a; } .el-step__icon { position: relative; @@ -8927,7 +8042,7 @@ color: #f56c6c; } .el-step__title.is-finish { - color: #2f3447; + color: #1d1a1a; } .el-step__description { padding-right: 10%; @@ -8949,7 +8064,7 @@ color: #f56c6c; } .el-step__description.is-finish { - color: #2f3447; + color: #1d1a1a; } .el-step.is-horizontal { display: inline-block; @@ -9298,86 +8413,6 @@ -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); } -.el-zoom-in-center-enter-active, -.el-zoom-in-center-leave-active { - -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); -} -.el-zoom-in-center-enter, -.el-zoom-in-center-leave-active { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); -} -.el-zoom-in-top-enter-active, -.el-zoom-in-top-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center top; - transform-origin: center top; -} -.el-zoom-in-top-enter, -.el-zoom-in-top-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-bottom-enter-active, -.el-zoom-in-bottom-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -.el-zoom-in-bottom-enter, -.el-zoom-in-bottom-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-left-enter-active, -.el-zoom-in-left-leave-active { - opacity: 1; - -webkit-transform: scale(1, 1); - transform: scale(1, 1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: top left; - transform-origin: top left; -} -.el-zoom-in-left-enter, -.el-zoom-in-left-leave-active { - opacity: 0; - -webkit-transform: scale(0.45, 0.45); - transform: scale(0.45, 0.45); -} .collapse-transition { -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out; @@ -9444,7 +8479,7 @@ transform: rotate(90deg); } .el-collapse-item__header.focusing:focus:not(:hover) { - color: #2f3447; + color: #1d1a1a; } .el-collapse-item__header.is-active { border-bottom-color: transparent; @@ -9554,14 +8589,14 @@ border-left-color: #fff; } .el-tag { - background-color: #eaebed; - border-color: #d5d6da; + background-color: rgb(232, 232, 232); + border-color: rgb(210, 209, 209); display: inline-block; height: 32px; padding: 0 10px; line-height: 30px; font-size: 12px; - color: #2f3447; + color: #1d1a1a; border-width: 1px; border-style: solid; border-radius: 4px; @@ -9569,14 +8604,14 @@ white-space: nowrap; } .el-tag.is-hit { - border-color: #2f3447; + border-color: #1d1a1a; } .el-tag .el-tag__close { - color: #2f3447; + color: #1d1a1a; } .el-tag .el-tag__close:hover { color: #fff; - background-color: #2f3447; + background-color: #1d1a1a; } .el-tag.el-tag--info { background-color: #f4f4f5; @@ -9655,19 +8690,19 @@ display: block; } .el-tag--dark { - background-color: #2f3447; - border-color: #2f3447; + background-color: #1d1a1a; + border-color: #1d1a1a; color: #fff; } .el-tag--dark.is-hit { - border-color: #2f3447; + border-color: #1d1a1a; } .el-tag--dark .el-tag__close { color: #fff; } .el-tag--dark .el-tag__close:hover { color: #fff; - background-color: #595d6c; + background-color: rgb(74, 72, 72); } .el-tag--dark.el-tag--info { background-color: #909399; @@ -9731,18 +8766,18 @@ } .el-tag--plain { background-color: #fff; - border-color: #acaeb5; - color: #2f3447; + border-color: rgb(165, 163, 163); + color: #1d1a1a; } .el-tag--plain.is-hit { - border-color: #2f3447; + border-color: #1d1a1a; } .el-tag--plain .el-tag__close { - color: #2f3447; + color: #1d1a1a; } .el-tag--plain .el-tag__close:hover { color: #fff; - background-color: #2f3447; + background-color: #1d1a1a; } .el-tag--plain.el-tag--info { background-color: #fff; @@ -9843,7 +8878,7 @@ } .el-cascader .el-input .el-input__inner:focus, .el-cascader .el-input.is-focus .el-input__inner { - border-color: #2f3447; + border-color: #1d1a1a; } .el-cascader .el-input { cursor: pointer; @@ -9970,7 +9005,7 @@ background: #f5f7fa; } .el-cascader__suggestion-item.is-checked { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .el-cascader__suggestion-item > span { @@ -9997,6 +9032,9 @@ .el-cascader__search-input::-webkit-input-placeholder { color: #c0c4cc; } +.el-cascader__search-input:-ms-input-placeholder { + color: #c0c4cc; +} .el-cascader__search-input::-ms-input-placeholder { color: #c0c4cc; } @@ -10032,8 +9070,8 @@ margin-left: 0; } .el-color-predefine__color-selector.selected { - -webkit-box-shadow: 0 0 3px 2px #2f3447; - box-shadow: 0 0 3px 2px #2f3447; + -webkit-box-shadow: 0 0 3px 2px #1d1a1a; + box-shadow: 0 0 3px 2px #1d1a1a; } .el-color-predefine__color-selector > div { display: -webkit-box; @@ -10267,18 +9305,18 @@ cursor: not-allowed; } .el-color-dropdown__btn:hover { - color: #2f3447; - border-color: #2f3447; + color: #1d1a1a; + border-color: #1d1a1a; } .el-color-dropdown__link-btn { cursor: pointer; - color: #2f3447; + color: #1d1a1a; text-decoration: none; padding: 15px; font-size: 12px; } .el-color-dropdown__link-btn:hover { - color: tint(#2f3447, 20%); + color: tint(primary, 20%); } .el-color-picker { display: inline-block; @@ -10436,6 +9474,9 @@ .el-textarea__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-textarea__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10447,7 +9488,7 @@ } .el-textarea__inner:focus { outline: 0; - border-color: #2f3447; + border-color: #1d1a1a; } .el-textarea .el-input__count { color: #909399; @@ -10466,6 +9507,9 @@ .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10564,6 +9608,9 @@ .el-input__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-input__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-input__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10575,7 +9622,7 @@ } .el-input.is-active .el-input__inner, .el-input__inner:focus { - border-color: #2f3447; + border-color: #1d1a1a; outline: 0; } .el-input__suffix { @@ -10616,6 +9663,9 @@ .el-input.is-disabled .el-input__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-input.is-disabled .el-input__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-input.is-disabled .el-input__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10763,7 +9813,7 @@ padding: 10px; border-radius: 50%; color: #fff; - background-color: #2f3447; + background-color: #1d1a1a; font-size: 0; } .el-transfer-panel__item + .el-transfer-panel__item, @@ -10831,7 +9881,7 @@ color: #606266; } .el-transfer-panel__item:hover { - color: #2f3447; + color: #1d1a1a; } .el-transfer-panel__item.el-checkbox .el-checkbox__label { width: 100%; @@ -11066,7 +10116,7 @@ height: 14px; } .el-timeline-item__node--primary { - background-color: #2f3447; + background-color: #1d1a1a; } .el-timeline-item__node--success { background-color: #67c23a; @@ -11132,12 +10182,12 @@ right: 0; height: 0; bottom: 0; - border-bottom: 1px solid #2f3447; + border-bottom: 1px solid #1d1a1a; } .el-link.el-link--default:after, .el-link.el-link--primary.is-underline:hover:after, .el-link.el-link--primary:after { - border-color: #2f3447; + border-color: #1d1a1a; } .el-link.is-disabled { cursor: not-allowed; @@ -11149,19 +10199,19 @@ color: #606266; } .el-link.el-link--default:hover { - color: #2f3447; + color: #1d1a1a; } .el-link.el-link--default.is-disabled { color: #c0c4cc; } .el-link.el-link--primary { - color: #2f3447; + color: #1d1a1a; } .el-link.el-link--primary:hover { - color: #595d6c; + color: rgb(74, 72, 72); } .el-link.el-link--primary.is-disabled { - color: #979aa3; + color: rgb(142, 141, 141); } .el-link.el-link--danger.is-underline:hover:after, .el-link.el-link--danger:after { @@ -11489,13 +10539,13 @@ } .el-button:focus, .el-button:hover { - color: #2f3447; - border-color: #c1c2c8; - background-color: #eaebed; + color: #1d1a1a; + border-color: rgb(187, 186, 186); + background-color: rgb(232, 232, 232); } .el-button:active { - color: #2a2f40; - border-color: #2a2f40; + color: rgb(26, 23, 23); + border-color: rgb(26, 23, 23); outline: 0; } .el-button::-moz-focus-inner { @@ -11507,13 +10557,13 @@ .el-button.is-plain:focus, .el-button.is-plain:hover { background: #fff; - border-color: #2f3447; - color: #2f3447; + border-color: #1d1a1a; + color: #1d1a1a; } .el-button.is-active, .el-button.is-plain:active { - color: #2a2f40; - border-color: #2a2f40; + color: rgb(26, 23, 23); + border-color: rgb(26, 23, 23); } .el-button.is-plain:active { background: #fff; @@ -11563,19 +10613,19 @@ } .el-button--primary { color: #fff; - background-color: #2f3447; - border-color: #2f3447; + background-color: #1d1a1a; + border-color: #1d1a1a; } .el-button--primary:focus, .el-button--primary:hover { - background: #595d6c; - border-color: #595d6c; + background: rgb(74, 72, 72); + border-color: rgb(74, 72, 72); color: #fff; } .el-button--primary.is-active, .el-button--primary:active { - background: #2a2f40; - border-color: #2a2f40; + background: rgb(26, 23, 23); + border-color: rgb(26, 23, 23); color: #fff; } .el-button--primary:active { @@ -11586,23 +10636,23 @@ .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:hover { color: #fff; - background-color: #979aa3; - border-color: #979aa3; + background-color: rgb(142, 141, 141); + border-color: rgb(142, 141, 141); } .el-button--primary.is-plain { - color: #2f3447; - background: #eaebed; - border-color: #acaeb5; + color: #1d1a1a; + background: rgb(232, 232, 232); + border-color: rgb(165, 163, 163); } .el-button--primary.is-plain:focus, .el-button--primary.is-plain:hover { - background: #2f3447; - border-color: #2f3447; + background: #1d1a1a; + border-color: #1d1a1a; color: #fff; } .el-button--primary.is-plain:active { - background: #2a2f40; - border-color: #2a2f40; + background: rgb(26, 23, 23); + border-color: rgb(26, 23, 23); color: #fff; outline: 0; } @@ -11610,9 +10660,9 @@ .el-button--primary.is-plain.is-disabled:active, .el-button--primary.is-plain.is-disabled:focus, .el-button--primary.is-plain.is-disabled:hover { - color: #828591; - background-color: #eaebed; - border-color: #d5d6da; + color: rgb(119, 118, 118); + background-color: rgb(232, 232, 232); + border-color: rgb(210, 209, 209); } .el-button--success { color: #fff; @@ -11864,19 +10914,19 @@ padding: 7px; } .el-button--text { - color: #2f3447; + color: #1d1a1a; background: 0 0; padding-left: 0; padding-right: 0; } .el-button--text:focus, .el-button--text:hover { - color: #595d6c; + color: rgb(74, 72, 72); border-color: transparent; background-color: transparent; } .el-button--text:active { - color: #2a2f40; + color: rgb(26, 23, 23); background-color: transparent; } .el-button-group { @@ -12026,7 +11076,7 @@ } .el-backtop, .el-calendar-table td.is-today { - color: #2f3447; + color: #1d1a1a; } .el-calendar-table td { border-bottom: 1px solid #ebeef5; @@ -12147,7 +11197,7 @@ height: 40px; } .el-checkbox.is-bordered.is-checked { - border-color: #2f3447; + border-color: #1d1a1a; } .el-checkbox.is-bordered.is-disabled { border-color: #ebeef5; @@ -12238,8 +11288,8 @@ } .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner { - background-color: #2f3447; - border-color: #2f3447; + background-color: #1d1a1a; + border-color: #1d1a1a; } .el-checkbox__input.is-disabled + span.el-checkbox__label { color: #c0c4cc; @@ -12250,10 +11300,10 @@ transform: rotate(45deg) scaleY(1); } .el-checkbox__input.is-checked + .el-checkbox__label { - color: #2f3447; + color: #1d1a1a; } .el-checkbox__input.is-focus .el-checkbox__inner { - border-color: #2f3447; + border-color: #1d1a1a; } .el-checkbox__input.is-indeterminate .el-checkbox__inner::before { content: ""; @@ -12287,7 +11337,7 @@ background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); } .el-checkbox__inner:hover { - border-color: #2f3447; + border-color: #1d1a1a; } .el-checkbox__inner::after { -webkit-box-sizing: content-box; @@ -12358,7 +11408,7 @@ padding: 12px 20px; } .el-checkbox-button__inner:hover { - color: #2f3447; + color: #1d1a1a; } .el-checkbox-button__inner [class*="el-icon-"] { line-height: 0.9; @@ -12387,13 +11437,13 @@ } .el-checkbox-button.is-checked .el-checkbox-button__inner { color: #fff; - background-color: #2f3447; - border-color: #2f3447; - -webkit-box-shadow: -1px 0 0 0 #828591; - box-shadow: -1px 0 0 0 #828591; + background-color: #1d1a1a; + border-color: #1d1a1a; + -webkit-box-shadow: -1px 0 0 0 rgb(119, 118, 118); + box-shadow: -1px 0 0 0 rgb(119, 118, 118); } .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner { - border-left-color: #2f3447; + border-left-color: #1d1a1a; } .el-checkbox-button.is-disabled .el-checkbox-button__inner { color: #c0c4cc; @@ -12414,7 +11464,7 @@ box-shadow: none !important; } .el-checkbox-button.is-focus .el-checkbox-button__inner { - border-color: #2f3447; + border-color: #1d1a1a; } .el-checkbox-button:last-child .el-checkbox-button__inner { border-radius: 0 4px 4px 0; @@ -12468,7 +11518,7 @@ height: 40px; } .el-radio.is-bordered.is-checked { - border-color: #2f3447; + border-color: #1d1a1a; } .el-radio.is-bordered.is-disabled { cursor: not-allowed; @@ -12535,18 +11585,18 @@ cursor: not-allowed; } .el-radio__input.is-checked .el-radio__inner { - border-color: #2f3447; - background: #2f3447; + border-color: #1d1a1a; + background: #1d1a1a; } .el-radio__input.is-checked .el-radio__inner::after { -webkit-transform: translate(-50%, -50%) scale(1); transform: translate(-50%, -50%) scale(1); } .el-radio__input.is-checked + .el-radio__label { - color: #2f3447; + color: #1d1a1a; } .el-radio__input.is-focus .el-radio__inner { - border-color: #2f3447; + border-color: #1d1a1a; } .el-radio__inner { border: 1px solid #dcdfe6; @@ -12559,7 +11609,7 @@ box-sizing: border-box; } .el-radio__inner:hover { - border-color: #2f3447; + border-color: #1d1a1a; } .el-radio__inner::after { width: 4px; @@ -12589,8 +11639,8 @@ margin: 0; } .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner { - -webkit-box-shadow: 0 0 2px 2px #2f3447; - box-shadow: 0 0 2px 2px #2f3447; + -webkit-box-shadow: 0 0 2px 2px #1d1a1a; + box-shadow: 0 0 2px 2px #1d1a1a; } .el-radio__label { font-size: 14px; @@ -12733,7 +11783,7 @@ .el-cascader-node.in-active-path, .el-cascader-node.is-active, .el-cascader-node.is-selectable.in-checked-path { - color: #2f3447; + color: #1d1a1a; font-weight: 700; } .el-cascader-node:not(.is-disabled) { @@ -12826,182 +11876,6 @@ bottom: 0; height: 100%; } -@-webkit-keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@-webkit-keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@-webkit-keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@-webkit-keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } -} -@keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } -} .el-drawer { position: absolute; box-sizing: border-box; @@ -13124,6 +11998,8 @@ margin: 0; } +/* custom */ + .app-slider .cl-slider-menu .el-menu .el-submenu__title:hover, .app-slider .cl-slider-menu .el-menu .el-submenu__title.is-active, .app-slider .cl-slider-menu .el-menu .el-menu-item:hover, @@ -13166,4 +12042,3 @@ .page-layout__topbar .cl-menu-topbar .el-menu .el-menu-item.is-active { background-color: rgba(47, 52, 71, 0.8) !important; } -/*# sourceMappingURL=index.css.map */ diff --git a/public/theme/blue.css b/public/theme/blue.css index d387a64b5ba95882423921095cd77a76aedebf60..7228ddae20999b7cd43bec11b1cb2a2929a12879 100644 --- a/public/theme/blue.css +++ b/public/theme/blue.css @@ -4,11 +4,11 @@ .el-table td.is-hidden > *, .el-table th.is-hidden > *, .el-table--hidden { - visibility: hidden; + visibility: hidden; } .el-input__suffix, .el-tree.is-dragging .el-tree-node__content * { - pointer-events: none; + pointer-events: none; } .el-dropdown .el-dropdown-selfdefine:focus:active, .el-dropdown .el-dropdown-selfdefine:focus:not(.focusing), @@ -24,987 +24,115 @@ .el-tooltip:focus:not(.focusing), .el-upload-list__item.is-success:active, .el-upload-list__item.is-success:not(.focusing):focus { - outline-width: 0; -} -@font-face { - font-family: element-icons; - src: url(fonts/element-icons.woff) format("woff"), - url(fonts/element-icons.ttf) format("truetype"); - font-weight: 400; - font-display: "auto"; - font-style: normal; -} -[class*=" el-icon-"], -[class^="el-icon-"] { - font-family: element-icons !important; - speak: none; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: baseline; - display: inline-block; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.el-icon-ice-cream-round:before { - content: "\e6a0"; -} -.el-icon-ice-cream-square:before { - content: "\e6a3"; -} -.el-icon-lollipop:before { - content: "\e6a4"; -} -.el-icon-potato-strips:before { - content: "\e6a5"; -} -.el-icon-milk-tea:before { - content: "\e6a6"; -} -.el-icon-ice-drink:before { - content: "\e6a7"; -} -.el-icon-ice-tea:before { - content: "\e6a9"; -} -.el-icon-coffee:before { - content: "\e6aa"; -} -.el-icon-orange:before { - content: "\e6ab"; -} -.el-icon-pear:before { - content: "\e6ac"; -} -.el-icon-apple:before { - content: "\e6ad"; -} -.el-icon-cherry:before { - content: "\e6ae"; -} -.el-icon-watermelon:before { - content: "\e6af"; -} -.el-icon-grape:before { - content: "\e6b0"; -} -.el-icon-refrigerator:before { - content: "\e6b1"; -} -.el-icon-goblet-square-full:before { - content: "\e6b2"; -} -.el-icon-goblet-square:before { - content: "\e6b3"; -} -.el-icon-goblet-full:before { - content: "\e6b4"; -} -.el-icon-goblet:before { - content: "\e6b5"; -} -.el-icon-cold-drink:before { - content: "\e6b6"; -} -.el-icon-coffee-cup:before { - content: "\e6b8"; -} -.el-icon-water-cup:before { - content: "\e6b9"; -} -.el-icon-hot-water:before { - content: "\e6ba"; -} -.el-icon-ice-cream:before { - content: "\e6bb"; -} -.el-icon-dessert:before { - content: "\e6bc"; -} -.el-icon-sugar:before { - content: "\e6bd"; -} -.el-icon-tableware:before { - content: "\e6be"; -} -.el-icon-burger:before { - content: "\e6bf"; -} -.el-icon-knife-fork:before { - content: "\e6c1"; -} -.el-icon-fork-spoon:before { - content: "\e6c2"; -} -.el-icon-chicken:before { - content: "\e6c3"; -} -.el-icon-food:before { - content: "\e6c4"; -} -.el-icon-dish-1:before { - content: "\e6c5"; -} -.el-icon-dish:before { - content: "\e6c6"; -} -.el-icon-moon-night:before { - content: "\e6ee"; -} -.el-icon-moon:before { - content: "\e6f0"; -} -.el-icon-cloudy-and-sunny:before { - content: "\e6f1"; -} -.el-icon-partly-cloudy:before { - content: "\e6f2"; -} -.el-icon-cloudy:before { - content: "\e6f3"; -} -.el-icon-sunny:before { - content: "\e6f6"; -} -.el-icon-sunset:before { - content: "\e6f7"; -} -.el-icon-sunrise-1:before { - content: "\e6f8"; -} -.el-icon-sunrise:before { - content: "\e6f9"; -} -.el-icon-heavy-rain:before { - content: "\e6fa"; -} -.el-icon-lightning:before { - content: "\e6fb"; -} -.el-icon-light-rain:before { - content: "\e6fc"; -} -.el-icon-wind-power:before { - content: "\e6fd"; -} -.el-icon-baseball:before { - content: "\e712"; -} -.el-icon-soccer:before { - content: "\e713"; -} -.el-icon-football:before { - content: "\e715"; -} -.el-icon-basketball:before { - content: "\e716"; -} -.el-icon-ship:before { - content: "\e73f"; -} -.el-icon-truck:before { - content: "\e740"; -} -.el-icon-bicycle:before { - content: "\e741"; -} -.el-icon-mobile-phone:before { - content: "\e6d3"; -} -.el-icon-service:before { - content: "\e6d4"; -} -.el-icon-key:before { - content: "\e6e2"; -} -.el-icon-unlock:before { - content: "\e6e4"; -} -.el-icon-lock:before { - content: "\e6e5"; -} -.el-icon-watch:before { - content: "\e6fe"; -} -.el-icon-watch-1:before { - content: "\e6ff"; -} -.el-icon-timer:before { - content: "\e702"; -} -.el-icon-alarm-clock:before { - content: "\e703"; -} -.el-icon-map-location:before { - content: "\e704"; -} -.el-icon-delete-location:before { - content: "\e705"; -} -.el-icon-add-location:before { - content: "\e706"; -} -.el-icon-location-information:before { - content: "\e707"; -} -.el-icon-location-outline:before { - content: "\e708"; -} -.el-icon-location:before { - content: "\e79e"; -} -.el-icon-place:before { - content: "\e709"; -} -.el-icon-discover:before { - content: "\e70a"; -} -.el-icon-first-aid-kit:before { - content: "\e70b"; -} -.el-icon-trophy-1:before { - content: "\e70c"; -} -.el-icon-trophy:before { - content: "\e70d"; -} -.el-icon-medal:before { - content: "\e70e"; -} -.el-icon-medal-1:before { - content: "\e70f"; -} -.el-icon-stopwatch:before { - content: "\e710"; -} -.el-icon-mic:before { - content: "\e711"; -} -.el-icon-copy-document:before { - content: "\e718"; -} -.el-icon-full-screen:before { - content: "\e719"; -} -.el-icon-switch-button:before { - content: "\e71b"; -} -.el-icon-aim:before { - content: "\e71c"; -} -.el-icon-crop:before { - content: "\e71d"; -} -.el-icon-odometer:before { - content: "\e71e"; -} -.el-icon-time:before { - content: "\e71f"; -} -.el-icon-bangzhu:before { - content: "\e724"; -} -.el-icon-close-notification:before { - content: "\e726"; -} -.el-icon-microphone:before { - content: "\e727"; -} -.el-icon-turn-off-microphone:before { - content: "\e728"; -} -.el-icon-position:before { - content: "\e729"; -} -.el-icon-postcard:before { - content: "\e72a"; -} -.el-icon-message:before { - content: "\e72b"; -} -.el-icon-chat-line-square:before { - content: "\e72d"; -} -.el-icon-chat-dot-square:before { - content: "\e72e"; -} -.el-icon-chat-dot-round:before { - content: "\e72f"; -} -.el-icon-chat-square:before { - content: "\e730"; -} -.el-icon-chat-line-round:before { - content: "\e731"; -} -.el-icon-chat-round:before { - content: "\e732"; -} -.el-icon-set-up:before { - content: "\e733"; -} -.el-icon-turn-off:before { - content: "\e734"; -} -.el-icon-open:before { - content: "\e735"; -} -.el-icon-connection:before { - content: "\e736"; -} -.el-icon-link:before { - content: "\e737"; -} -.el-icon-cpu:before { - content: "\e738"; -} -.el-icon-thumb:before { - content: "\e739"; -} -.el-icon-female:before { - content: "\e73a"; -} -.el-icon-male:before { - content: "\e73b"; -} -.el-icon-guide:before { - content: "\e73c"; -} -.el-icon-news:before { - content: "\e73e"; -} -.el-icon-price-tag:before { - content: "\e744"; -} -.el-icon-discount:before { - content: "\e745"; -} -.el-icon-wallet:before { - content: "\e747"; -} -.el-icon-coin:before { - content: "\e748"; -} -.el-icon-money:before { - content: "\e749"; -} -.el-icon-bank-card:before { - content: "\e74a"; -} -.el-icon-box:before { - content: "\e74b"; -} -.el-icon-present:before { - content: "\e74c"; -} -.el-icon-sell:before { - content: "\e6d5"; -} -.el-icon-sold-out:before { - content: "\e6d6"; -} -.el-icon-shopping-bag-2:before { - content: "\e74d"; -} -.el-icon-shopping-bag-1:before { - content: "\e74e"; -} -.el-icon-shopping-cart-2:before { - content: "\e74f"; -} -.el-icon-shopping-cart-1:before { - content: "\e750"; -} -.el-icon-shopping-cart-full:before { - content: "\e751"; -} -.el-icon-smoking:before { - content: "\e752"; -} -.el-icon-no-smoking:before { - content: "\e753"; -} -.el-icon-house:before { - content: "\e754"; -} -.el-icon-table-lamp:before { - content: "\e755"; -} -.el-icon-school:before { - content: "\e756"; -} -.el-icon-office-building:before { - content: "\e757"; -} -.el-icon-toilet-paper:before { - content: "\e758"; -} -.el-icon-notebook-2:before { - content: "\e759"; -} -.el-icon-notebook-1:before { - content: "\e75a"; -} -.el-icon-files:before { - content: "\e75b"; -} -.el-icon-collection:before { - content: "\e75c"; -} -.el-icon-receiving:before { - content: "\e75d"; -} -.el-icon-suitcase-1:before { - content: "\e760"; -} -.el-icon-suitcase:before { - content: "\e761"; -} -.el-icon-film:before { - content: "\e763"; -} -.el-icon-collection-tag:before { - content: "\e765"; -} -.el-icon-data-analysis:before { - content: "\e766"; -} -.el-icon-pie-chart:before { - content: "\e767"; -} -.el-icon-data-board:before { - content: "\e768"; -} -.el-icon-data-line:before { - content: "\e76d"; -} -.el-icon-reading:before { - content: "\e769"; -} -.el-icon-magic-stick:before { - content: "\e76a"; -} -.el-icon-coordinate:before { - content: "\e76b"; -} -.el-icon-mouse:before { - content: "\e76c"; -} -.el-icon-brush:before { - content: "\e76e"; -} -.el-icon-headset:before { - content: "\e76f"; -} -.el-icon-umbrella:before { - content: "\e770"; -} -.el-icon-scissors:before { - content: "\e771"; -} -.el-icon-mobile:before { - content: "\e773"; -} -.el-icon-attract:before { - content: "\e774"; -} -.el-icon-monitor:before { - content: "\e775"; -} -.el-icon-search:before { - content: "\e778"; -} -.el-icon-takeaway-box:before { - content: "\e77a"; -} -.el-icon-paperclip:before { - content: "\e77d"; -} -.el-icon-printer:before { - content: "\e77e"; -} -.el-icon-document-add:before { - content: "\e782"; -} -.el-icon-document:before { - content: "\e785"; -} -.el-icon-document-checked:before { - content: "\e786"; -} -.el-icon-document-copy:before { - content: "\e787"; -} -.el-icon-document-delete:before { - content: "\e788"; -} -.el-icon-document-remove:before { - content: "\e789"; -} -.el-icon-tickets:before { - content: "\e78b"; -} -.el-icon-folder-checked:before { - content: "\e77f"; -} -.el-icon-folder-delete:before { - content: "\e780"; -} -.el-icon-folder-remove:before { - content: "\e781"; -} -.el-icon-folder-add:before { - content: "\e783"; -} -.el-icon-folder-opened:before { - content: "\e784"; -} -.el-icon-folder:before { - content: "\e78a"; -} -.el-icon-edit-outline:before { - content: "\e764"; -} -.el-icon-edit:before { - content: "\e78c"; -} -.el-icon-date:before { - content: "\e78e"; -} -.el-icon-c-scale-to-original:before { - content: "\e7c6"; -} -.el-icon-view:before { - content: "\e6ce"; -} -.el-icon-loading:before { - content: "\e6cf"; -} -.el-icon-rank:before { - content: "\e6d1"; -} -.el-icon-sort-down:before { - content: "\e7c4"; -} -.el-icon-sort-up:before { - content: "\e7c5"; -} -.el-icon-sort:before { - content: "\e6d2"; -} -.el-icon-finished:before { - content: "\e6cd"; -} -.el-icon-refresh-left:before { - content: "\e6c7"; -} -.el-icon-refresh-right:before { - content: "\e6c8"; -} -.el-icon-refresh:before { - content: "\e6d0"; -} -.el-icon-video-play:before { - content: "\e7c0"; -} -.el-icon-video-pause:before { - content: "\e7c1"; -} -.el-icon-d-arrow-right:before { - content: "\e6dc"; -} -.el-icon-d-arrow-left:before { - content: "\e6dd"; -} -.el-icon-arrow-up:before { - content: "\e6e1"; -} -.el-icon-arrow-down:before { - content: "\e6df"; -} -.el-icon-arrow-right:before { - content: "\e6e0"; -} -.el-icon-arrow-left:before { - content: "\e6de"; -} -.el-icon-top-right:before { - content: "\e6e7"; -} -.el-icon-top-left:before { - content: "\e6e8"; -} -.el-icon-top:before { - content: "\e6e6"; -} -.el-icon-bottom:before { - content: "\e6eb"; -} -.el-icon-right:before { - content: "\e6e9"; -} -.el-icon-back:before { - content: "\e6ea"; -} -.el-icon-bottom-right:before { - content: "\e6ec"; -} -.el-icon-bottom-left:before { - content: "\e6ed"; -} -.el-icon-caret-top:before { - content: "\e78f"; -} -.el-icon-caret-bottom:before { - content: "\e790"; -} -.el-icon-caret-right:before { - content: "\e791"; -} -.el-icon-caret-left:before { - content: "\e792"; -} -.el-icon-d-caret:before { - content: "\e79a"; -} -.el-icon-share:before { - content: "\e793"; -} -.el-icon-menu:before { - content: "\e798"; -} -.el-icon-s-grid:before { - content: "\e7a6"; -} -.el-icon-s-check:before { - content: "\e7a7"; -} -.el-icon-s-data:before { - content: "\e7a8"; -} -.el-icon-s-opportunity:before { - content: "\e7aa"; -} -.el-icon-s-custom:before { - content: "\e7ab"; -} -.el-icon-s-claim:before { - content: "\e7ad"; -} -.el-icon-s-finance:before { - content: "\e7ae"; -} -.el-icon-s-comment:before { - content: "\e7af"; -} -.el-icon-s-flag:before { - content: "\e7b0"; -} -.el-icon-s-marketing:before { - content: "\e7b1"; -} -.el-icon-s-shop:before { - content: "\e7b4"; -} -.el-icon-s-open:before { - content: "\e7b5"; -} -.el-icon-s-management:before { - content: "\e7b6"; -} -.el-icon-s-ticket:before { - content: "\e7b7"; -} -.el-icon-s-release:before { - content: "\e7b8"; -} -.el-icon-s-home:before { - content: "\e7b9"; -} -.el-icon-s-promotion:before { - content: "\e7ba"; -} -.el-icon-s-operation:before { - content: "\e7bb"; -} -.el-icon-s-unfold:before { - content: "\e7bc"; -} -.el-icon-s-fold:before { - content: "\e7a9"; -} -.el-icon-s-platform:before { - content: "\e7bd"; -} -.el-icon-s-order:before { - content: "\e7be"; -} -.el-icon-s-cooperation:before { - content: "\e7bf"; -} -.el-icon-bell:before { - content: "\e725"; -} -.el-icon-message-solid:before { - content: "\e799"; -} -.el-icon-video-camera:before { - content: "\e772"; -} -.el-icon-video-camera-solid:before { - content: "\e796"; -} -.el-icon-camera:before { - content: "\e779"; -} -.el-icon-camera-solid:before { - content: "\e79b"; -} -.el-icon-download:before { - content: "\e77c"; -} -.el-icon-upload2:before { - content: "\e77b"; -} -.el-icon-upload:before { - content: "\e7c3"; -} -.el-icon-picture-outline-round:before { - content: "\e75f"; -} -.el-icon-picture-outline:before { - content: "\e75e"; -} -.el-icon-picture:before { - content: "\e79f"; -} -.el-icon-close:before { - content: "\e6db"; -} -.el-icon-check:before { - content: "\e6da"; -} -.el-icon-plus:before { - content: "\e6d9"; -} -.el-icon-minus:before { - content: "\e6d8"; -} -.el-icon-help:before { - content: "\e73d"; -} -.el-icon-s-help:before { - content: "\e7b3"; -} -.el-icon-circle-close:before { - content: "\e78d"; -} -.el-icon-circle-check:before { - content: "\e720"; -} -.el-icon-circle-plus-outline:before { - content: "\e723"; -} -.el-icon-remove-outline:before { - content: "\e722"; -} -.el-icon-zoom-out:before { - content: "\e776"; -} -.el-icon-zoom-in:before { - content: "\e777"; -} -.el-icon-error:before { - content: "\e79d"; -} -.el-icon-success:before { - content: "\e79c"; -} -.el-icon-circle-plus:before { - content: "\e7a0"; -} -.el-icon-remove:before { - content: "\e7a2"; -} -.el-icon-info:before { - content: "\e7a1"; -} -.el-icon-question:before { - content: "\e7a4"; -} -.el-icon-warning-outline:before { - content: "\e6c9"; -} -.el-icon-warning:before { - content: "\e7a3"; -} -.el-icon-goods:before { - content: "\e7c2"; -} -.el-icon-s-goods:before { - content: "\e7b2"; -} -.el-icon-star-off:before { - content: "\e717"; -} -.el-icon-star-on:before { - content: "\e797"; -} -.el-icon-more-outline:before { - content: "\e6cc"; -} -.el-icon-more:before { - content: "\e794"; -} -.el-icon-phone-outline:before { - content: "\e6cb"; -} -.el-icon-phone:before { - content: "\e795"; -} -.el-icon-user:before { - content: "\e6e3"; -} -.el-icon-user-solid:before { - content: "\e7a5"; -} -.el-icon-setting:before { - content: "\e6ca"; -} -.el-icon-s-tools:before { - content: "\e7ac"; -} -.el-icon-delete:before { - content: "\e6d7"; -} -.el-icon-delete-solid:before { - content: "\e7c9"; -} -.el-icon-eleme:before { - content: "\e7c7"; -} -.el-icon-platform-eleme:before { - content: "\e7ca"; -} -.el-icon-loading { - -webkit-animation: rotating 2s linear infinite; - animation: rotating 2s linear infinite; -} -.el-icon--right { - margin-left: 5px; -} -.el-icon--left { - margin-right: 5px; + outline-width: 0; } @-webkit-keyframes rotating { - 0% { - -webkit-transform: rotateZ(0); - transform: rotateZ(0); - } - 100% { - -webkit-transform: rotateZ(360deg); - transform: rotateZ(360deg); - } + 0% { + -webkit-transform: rotateZ(0); + transform: rotateZ(0); + } + 100% { + -webkit-transform: rotateZ(360deg); + transform: rotateZ(360deg); + } } @keyframes rotating { - 0% { - -webkit-transform: rotateZ(0); - transform: rotateZ(0); - } - 100% { - -webkit-transform: rotateZ(360deg); - transform: rotateZ(360deg); - } + 0% { + -webkit-transform: rotateZ(0); + transform: rotateZ(0); + } + 100% { + -webkit-transform: rotateZ(360deg); + transform: rotateZ(360deg); + } } .el-pagination { - white-space: nowrap; - padding: 2px 5px; - color: #303133; - font-weight: 700; + white-space: nowrap; + padding: 2px 5px; + color: #303133; + font-weight: 700; } .el-pagination::after, .el-pagination::before { - display: table; - content: ""; + display: table; + content: ""; } .el-pagination::after { - clear: both; + clear: both; } .el-pagination button, .el-pagination span:not([class*="suffix"]) { - display: inline-block; - font-size: 13px; - min-width: 35.5px; - height: 28px; - line-height: 28px; - vertical-align: top; - -webkit-box-sizing: border-box; - box-sizing: border-box; + display: inline-block; + font-size: 13px; + min-width: 35.5px; + height: 28px; + line-height: 28px; + vertical-align: top; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-pagination .el-input__inner { - text-align: center; - -moz-appearance: textfield; - line-height: normal; + text-align: center; + -moz-appearance: textfield; + line-height: normal; } .el-pagination .el-input__suffix { - right: 0; - -webkit-transform: scale(0.8); - transform: scale(0.8); + right: 0; + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-pagination .el-select .el-input { - width: 100px; - margin: 0 5px; + width: 100px; + margin: 0 5px; } .el-pagination .el-select .el-input .el-input__inner { - padding-right: 25px; - border-radius: 3px; + padding-right: 25px; + border-radius: 3px; } .el-pagination button { - border: none; - padding: 0 6px; - background: 0 0; + border: none; + padding: 0 6px; + background: 0 0; } .el-pagination button:focus { - outline: 0; + outline: 0; } .el-pagination button:hover { - color: #4165d7; + color: #4165d7; } .el-pagination button:disabled { - color: #c0c4cc; - background-color: #fff; - cursor: not-allowed; + color: #c0c4cc; + background-color: #fff; + cursor: not-allowed; } .el-pagination .btn-next, .el-pagination .btn-prev { - background: center center no-repeat #fff; - background-size: 16px; - cursor: pointer; - margin: 0; - color: #303133; + background: center center no-repeat #fff; + background-size: 16px; + cursor: pointer; + margin: 0; + color: #303133; } .el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon { - display: block; - font-size: 12px; - font-weight: 700; + display: block; + font-size: 12px; + font-weight: 700; } .el-pagination .btn-prev { - padding-right: 12px; + padding-right: 12px; } .el-pagination .btn-next { - padding-left: 12px; + padding-left: 12px; } .el-pagination .el-pager li.disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-pager li, .el-pager li.btn-quicknext:hover, .el-pager li.btn-quickprev:hover { - cursor: pointer; + cursor: pointer; } .el-pagination--small .btn-next, .el-pagination--small .btn-prev, @@ -1012,2761 +140,2735 @@ .el-pagination--small .el-pager li.btn-quicknext, .el-pagination--small .el-pager li.btn-quickprev, .el-pagination--small .el-pager li:last-child { - border-color: transparent; - font-size: 12px; - line-height: 22px; - height: 22px; - min-width: 22px; + border-color: transparent; + font-size: 12px; + line-height: 22px; + height: 22px; + min-width: 22px; } .el-pagination--small .more::before, .el-pagination--small li.more::before { - line-height: 24px; + line-height: 24px; } .el-pagination--small button, .el-pagination--small span:not([class*="suffix"]) { - height: 22px; - line-height: 22px; + height: 22px; + line-height: 22px; } .el-pagination--small .el-pagination__editor, .el-pagination--small .el-pagination__editor.el-input .el-input__inner { - height: 22px; + height: 22px; } .el-pagination__sizes { - margin: 0 10px 0 0; - font-weight: 400; - color: #606266; + margin: 0 10px 0 0; + font-weight: 400; + color: #606266; } .el-pagination__sizes .el-input .el-input__inner { - font-size: 13px; - padding-left: 8px; + font-size: 13px; + padding-left: 8px; } .el-pagination__sizes .el-input .el-input__inner:hover { - border-color: #4165d7; + border-color: #4165d7; } .el-pagination__total { - margin-right: 10px; - font-weight: 400; - color: #606266; + margin-right: 10px; + font-weight: 400; + color: #606266; } .el-pagination__jump { - margin-left: 24px; - font-weight: 400; - color: #606266; + margin-left: 24px; + font-weight: 400; + color: #606266; } .el-pagination__jump .el-input__inner { - padding: 0 3px; + padding: 0 3px; } .el-pagination__rightwrapper { - float: right; + float: right; } .el-pagination__editor { - line-height: 18px; - padding: 0 2px; - height: 28px; - text-align: center; - margin: 0 2px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 3px; + line-height: 18px; + padding: 0 2px; + height: 28px; + text-align: center; + margin: 0 2px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 3px; } .el-pager, .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev { - padding: 0; + padding: 0; } .el-pagination__editor.el-input { - width: 50px; + width: 50px; } .el-pagination__editor.el-input .el-input__inner { - height: 28px; + height: 28px; } .el-pagination__editor .el-input__inner::-webkit-inner-spin-button, .el-pagination__editor .el-input__inner::-webkit-outer-spin-button { - -webkit-appearance: none; - margin: 0; + -webkit-appearance: none; + margin: 0; } .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li { - margin: 0 5px; - background-color: #f4f4f5; - color: #606266; - min-width: 30px; - border-radius: 2px; + margin: 0 5px; + background-color: #f4f4f5; + color: #606266; + min-width: 30px; + border-radius: 2px; } .el-pagination.is-background .btn-next.disabled, .el-pagination.is-background .btn-next:disabled, .el-pagination.is-background .btn-prev.disabled, .el-pagination.is-background .btn-prev:disabled, .el-pagination.is-background .el-pager li.disabled { - color: #c0c4cc; + color: #c0c4cc; } .el-pagination.is-background .el-pager li:not(.disabled):hover { - color: #4165d7; + color: #4165d7; } .el-pagination.is-background .el-pager li:not(.disabled).active { - background-color: #4165d7; - color: #fff; + background-color: #4165d7; + color: #fff; } .el-dialog, .el-pager li { - background: #fff; - -webkit-box-sizing: border-box; + background: #fff; + -webkit-box-sizing: border-box; } .el-pagination.is-background.el-pagination--small .btn-next, .el-pagination.is-background.el-pagination--small .btn-prev, .el-pagination.is-background.el-pagination--small .el-pager li { - margin: 0 3px; - min-width: 22px; + margin: 0 3px; + min-width: 22px; } .el-pager, .el-pager li { - vertical-align: top; - margin: 0; - display: inline-block; + vertical-align: top; + margin: 0; + display: inline-block; } .el-pager { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - list-style: none; - font-size: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + list-style: none; + font-size: 0; } .el-date-table, .el-table th { - -webkit-user-select: none; - -moz-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; } .el-pager .more::before { - line-height: 30px; + line-height: 30px; } .el-pager li { - padding: 0 4px; - font-size: 13px; - min-width: 35.5px; - height: 28px; - line-height: 28px; - box-sizing: border-box; - text-align: center; + padding: 0 4px; + font-size: 13px; + min-width: 35.5px; + height: 28px; + line-height: 28px; + box-sizing: border-box; + text-align: center; } .el-menu--collapse .el-menu .el-submenu, .el-menu--popup { - min-width: 200px; + min-width: 200px; } .el-pager li.btn-quicknext, .el-pager li.btn-quickprev { - line-height: 28px; - color: #303133; + line-height: 28px; + color: #303133; } .el-pager li.btn-quicknext.disabled, .el-pager li.btn-quickprev.disabled { - color: #c0c4cc; + color: #c0c4cc; } .el-pager li.active + li { - border-left: 0; + border-left: 0; } .el-pager li:hover { - color: #4165d7; + color: #4165d7; } .el-pager li.active { - color: #4165d7; - cursor: default; + color: #4165d7; + cursor: default; } @-webkit-keyframes v-modal-in { - 0% { - opacity: 0; - } + 0% { + opacity: 0; + } } @-webkit-keyframes v-modal-out { - 100% { - opacity: 0; - } + 100% { + opacity: 0; + } } .el-dialog { - position: relative; - margin: 0 auto 50px; - border-radius: 2px; - -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); - box-sizing: border-box; - width: 50%; + position: relative; + margin: 0 auto 50px; + border-radius: 2px; + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); + box-sizing: border-box; + width: 50%; } .el-dialog.is-fullscreen { - width: 100%; - margin-top: 0; - margin-bottom: 0; - height: 100%; - overflow: auto; + width: 100%; + margin-top: 0; + margin-bottom: 0; + height: 100%; + overflow: auto; } .el-dialog__wrapper { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - overflow: auto; - margin: 0; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow: auto; + margin: 0; } .el-dialog__header { - padding: 20px 20px 10px; + padding: 20px 20px 10px; } .el-dialog__headerbtn { - position: absolute; - top: 20px; - right: 20px; - padding: 0; - background: 0 0; - border: none; - outline: 0; - cursor: pointer; - font-size: 16px; + position: absolute; + top: 20px; + right: 20px; + padding: 0; + background: 0 0; + border: none; + outline: 0; + cursor: pointer; + font-size: 16px; } .el-dialog__headerbtn .el-dialog__close { - color: #909399; + color: #909399; } .el-dialog__headerbtn:focus .el-dialog__close, .el-dialog__headerbtn:hover .el-dialog__close { - color: #4165d7; + color: #4165d7; } .el-dialog__title { - line-height: 24px; - font-size: 18px; - color: #303133; + line-height: 24px; + font-size: 18px; + color: #303133; } .el-dialog__body { - padding: 30px 20px; - color: #606266; - font-size: 14px; - word-break: break-all; + padding: 30px 20px; + color: #606266; + font-size: 14px; + word-break: break-all; } .el-dialog__footer { - padding: 10px 20px 20px; - text-align: right; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding: 10px 20px 20px; + text-align: right; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-dialog--center { - text-align: center; + text-align: center; } .el-dialog--center .el-dialog__body { - text-align: initial; - padding: 25px 25px 30px; + text-align: initial; + padding: 25px 25px 30px; } .el-dialog--center .el-dialog__footer { - text-align: inherit; + text-align: inherit; } .dialog-fade-enter-active { - -webkit-animation: dialog-fade-in 0.3s; - animation: dialog-fade-in 0.3s; + -webkit-animation: dialog-fade-in 0.3s; + animation: dialog-fade-in 0.3s; } .dialog-fade-leave-active { - -webkit-animation: dialog-fade-out 0.3s; - animation: dialog-fade-out 0.3s; + -webkit-animation: dialog-fade-out 0.3s; + animation: dialog-fade-out 0.3s; } @-webkit-keyframes dialog-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @keyframes dialog-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @-webkit-keyframes dialog-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } @keyframes dialog-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } .el-autocomplete { - position: relative; - display: inline-block; + position: relative; + display: inline-block; } .el-autocomplete-suggestion { - margin: 5px 0; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - border-radius: 4px; - border: 1px solid #e4e7ed; - -webkit-box-sizing: border-box; - box-sizing: border-box; - background-color: #fff; + margin: 5px 0; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + border-radius: 4px; + border: 1px solid #e4e7ed; + -webkit-box-sizing: border-box; + box-sizing: border-box; + background-color: #fff; } .el-dropdown-menu, .el-menu--collapse .el-submenu .el-menu { - z-index: 10; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + z-index: 10; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-autocomplete-suggestion__wrap { - max-height: 280px; - padding: 10px 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + max-height: 280px; + padding: 10px 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-autocomplete-suggestion__list { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } .el-autocomplete-suggestion li { - padding: 0 20px; - margin: 0; - line-height: 34px; - cursor: pointer; - color: #606266; - font-size: 14px; - list-style: none; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; + padding: 0 20px; + margin: 0; + line-height: 34px; + cursor: pointer; + color: #606266; + font-size: 14px; + list-style: none; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .el-autocomplete-suggestion li.highlighted, .el-autocomplete-suggestion li:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-autocomplete-suggestion li.divider { - margin-top: 6px; - border-top: 1px solid #000; + margin-top: 6px; + border-top: 1px solid #000; } .el-autocomplete-suggestion li.divider:last-child { - margin-bottom: -6px; + margin-bottom: -6px; } .el-autocomplete-suggestion.is-loading li { - text-align: center; - height: 100px; - line-height: 100px; - font-size: 20px; - color: #999; + text-align: center; + height: 100px; + line-height: 100px; + font-size: 20px; + color: #999; } .el-autocomplete-suggestion.is-loading li::after { - display: inline-block; - content: ""; - height: 100%; - vertical-align: middle; + display: inline-block; + content: ""; + height: 100%; + vertical-align: middle; } .el-autocomplete-suggestion.is-loading li:hover { - background-color: #fff; + background-color: #fff; } .el-autocomplete-suggestion.is-loading .el-icon-loading { - vertical-align: middle; + vertical-align: middle; } .el-dropdown { - display: inline-block; - position: relative; - color: #606266; - font-size: 14px; + display: inline-block; + position: relative; + color: #606266; + font-size: 14px; } .el-dropdown .el-button-group { - display: block; + display: block; } .el-dropdown .el-button-group .el-button { - float: none; + float: none; } .el-dropdown .el-dropdown__caret-button { - padding-left: 5px; - padding-right: 5px; - position: relative; - border-left: none; + padding-left: 5px; + padding-right: 5px; + position: relative; + border-left: none; } .el-dropdown .el-dropdown__caret-button::before { - content: ""; - position: absolute; - display: block; - width: 1px; - top: 5px; - bottom: 5px; - left: 0; - background: rgba(255, 255, 255, 0.5); + content: ""; + position: absolute; + display: block; + width: 1px; + top: 5px; + bottom: 5px; + left: 0; + background: rgba(255, 255, 255, 0.5); } .el-dropdown .el-dropdown__caret-button.el-button--default::before { - background: rgba(220, 223, 230, 0.5); + background: rgba(220, 223, 230, 0.5); } .el-dropdown .el-dropdown__caret-button:hover::before { - top: 0; - bottom: 0; + top: 0; + bottom: 0; } .el-dropdown .el-dropdown__caret-button .el-dropdown__icon { - padding-left: 0; + padding-left: 0; } .el-dropdown__icon { - font-size: 12px; - margin: 0 3px; + font-size: 12px; + margin: 0 3px; } .el-dropdown-menu { - position: absolute; - top: 0; - left: 0; - padding: 10px 0; - margin: 5px 0; - background-color: #fff; - border: 1px solid #ebeef5; - border-radius: 4px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-dropdown-menu__item { - list-style: none; - line-height: 36px; - padding: 0 20px; - margin: 0; - font-size: 14px; - color: #606266; - cursor: pointer; - outline: 0; + list-style: none; + line-height: 36px; + padding: 0 20px; + margin: 0; + font-size: 14px; + color: #606266; + cursor: pointer; + outline: 0; } .el-dropdown-menu__item:focus, .el-dropdown-menu__item:not(.is-disabled):hover { - background-color: #ecf0fb; - color: #6784df; + background-color: rgb(236, 240, 251); + color: rgb(103, 132, 223); } .el-dropdown-menu__item i { - margin-right: 5px; + margin-right: 5px; } .el-dropdown-menu__item--divided { - position: relative; - margin-top: 6px; - border-top: 1px solid #ebeef5; + position: relative; + margin-top: 6px; + border-top: 1px solid #ebeef5; } .el-dropdown-menu__item--divided:before { - content: ""; - height: 6px; - display: block; - margin: 0 -20px; - background-color: #fff; + content: ""; + height: 6px; + display: block; + margin: 0 -20px; + background-color: #fff; } .el-dropdown-menu__item.is-disabled { - cursor: default; - color: #bbb; - pointer-events: none; + cursor: default; + color: #bbb; + pointer-events: none; } .el-dropdown-menu--medium { - padding: 6px 0; + padding: 6px 0; } .el-dropdown-menu--medium .el-dropdown-menu__item { - line-height: 30px; - padding: 0 17px; - font-size: 14px; + line-height: 30px; + padding: 0 17px; + font-size: 14px; } -.el-dropdown-menu--medium - .el-dropdown-menu__item.el-dropdown-menu__item--divided { - margin-top: 6px; +.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided { + margin-top: 6px; } -.el-dropdown-menu--medium - .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { - height: 6px; - margin: 0 -17px; +.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { + height: 6px; + margin: 0 -17px; } .el-dropdown-menu--small { - padding: 6px 0; + padding: 6px 0; } .el-dropdown-menu--small .el-dropdown-menu__item { - line-height: 27px; - padding: 0 15px; - font-size: 13px; + line-height: 27px; + padding: 0 15px; + font-size: 13px; } -.el-dropdown-menu--small - .el-dropdown-menu__item.el-dropdown-menu__item--divided { - margin-top: 4px; +.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided { + margin-top: 4px; } -.el-dropdown-menu--small - .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { - height: 4px; - margin: 0 -15px; +.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { + height: 4px; + margin: 0 -15px; } .el-dropdown-menu--mini { - padding: 3px 0; + padding: 3px 0; } .el-dropdown-menu--mini .el-dropdown-menu__item { - line-height: 24px; - padding: 0 10px; - font-size: 12px; + line-height: 24px; + padding: 0 10px; + font-size: 12px; } -.el-dropdown-menu--mini - .el-dropdown-menu__item.el-dropdown-menu__item--divided { - margin-top: 3px; +.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided { + margin-top: 3px; } -.el-dropdown-menu--mini - .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { - height: 3px; - margin: 0 -10px; +.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { + height: 3px; + margin: 0 -10px; } .el-menu { - border-right: solid 1px #e6e6e6; - list-style: none; - position: relative; - margin: 0; - padding-left: 0; - background-color: #fff; + border-right: solid 1px #e6e6e6; + list-style: none; + position: relative; + margin: 0; + padding-left: 0; + background-color: #fff; } .el-menu--horizontal > .el-menu-item:not(.is-disabled):focus, .el-menu--horizontal > .el-menu-item:not(.is-disabled):hover, .el-menu--horizontal > .el-submenu .el-submenu__title:hover { - background-color: #fff; + background-color: #fff; } .el-menu::after, .el-menu::before { - display: table; - content: ""; + display: table; + content: ""; } .el-menu::after { - clear: both; + clear: both; } .el-menu.el-menu--horizontal { - border-bottom: solid 1px #e6e6e6; + border-bottom: solid 1px #e6e6e6; } .el-menu--horizontal { - border-right: none; + border-right: none; } .el-menu--horizontal > .el-menu-item { - float: left; - height: 60px; - line-height: 60px; - margin: 0; - border-bottom: 2px solid transparent; - color: #909399; + float: left; + height: 60px; + line-height: 60px; + margin: 0; + border-bottom: 2px solid transparent; + color: #909399; } .el-menu--horizontal > .el-menu-item a, .el-menu--horizontal > .el-menu-item a:hover { - color: inherit; + color: inherit; } .el-menu--horizontal > .el-submenu { - float: left; + float: left; } .el-menu--horizontal > .el-submenu:focus, .el-menu--horizontal > .el-submenu:hover { - outline: 0; + outline: 0; } .el-menu--horizontal > .el-submenu:focus .el-submenu__title, .el-menu--horizontal > .el-submenu:hover .el-submenu__title { - color: #303133; + color: #303133; } .el-menu--horizontal > .el-submenu.is-active .el-submenu__title { - border-bottom: 2px solid #4165d7; - color: #303133; + border-bottom: 2px solid #4165d7; + color: #303133; } .el-menu--horizontal > .el-submenu .el-submenu__title { - height: 60px; - line-height: 60px; - border-bottom: 2px solid transparent; - color: #909399; + height: 60px; + line-height: 60px; + border-bottom: 2px solid transparent; + color: #909399; } .el-menu--horizontal > .el-submenu .el-submenu__icon-arrow { - position: static; - vertical-align: middle; - margin-left: 8px; - margin-top: -3px; + position: static; + vertical-align: middle; + margin-left: 8px; + margin-top: -3px; } .el-menu--horizontal .el-menu .el-menu-item, .el-menu--horizontal .el-menu .el-submenu__title { - background-color: #fff; - float: none; - height: 36px; - line-height: 36px; - padding: 0 10px; - color: #909399; + background-color: #fff; + float: none; + height: 36px; + line-height: 36px; + padding: 0 10px; + color: #909399; } .el-menu--horizontal .el-menu .el-menu-item.is-active, .el-menu--horizontal .el-menu .el-submenu.is-active > .el-submenu__title { - color: #303133; + color: #303133; } .el-menu--horizontal .el-menu-item:not(.is-disabled):focus, .el-menu--horizontal .el-menu-item:not(.is-disabled):hover { - outline: 0; - color: #303133; + outline: 0; + color: #303133; } .el-menu--horizontal > .el-menu-item.is-active { - border-bottom: 2px solid #4165d7; - color: #303133; + border-bottom: 2px solid #4165d7; + color: #303133; } .el-menu--collapse { - width: 64px; + width: 64px; } .el-menu--collapse > .el-menu-item [class^="el-icon-"], .el-menu--collapse > .el-submenu > .el-submenu__title [class^="el-icon-"] { - margin: 0; - vertical-align: middle; - width: 24px; - text-align: center; + margin: 0; + vertical-align: middle; + width: 24px; + text-align: center; } .el-menu--collapse > .el-menu-item .el-submenu__icon-arrow, .el-menu--collapse > .el-submenu > .el-submenu__title .el-submenu__icon-arrow { - display: none; + display: none; } .el-menu--collapse > .el-menu-item span, .el-menu--collapse > .el-submenu > .el-submenu__title span { - height: 0; - width: 0; - overflow: hidden; - visibility: hidden; - display: inline-block; + height: 0; + width: 0; + overflow: hidden; + visibility: hidden; + display: inline-block; } .el-menu--collapse > .el-menu-item.is-active i { - color: inherit; + color: inherit; } .el-menu--collapse .el-submenu { - position: relative; + position: relative; } .el-menu--collapse .el-submenu .el-menu { - position: absolute; - margin-left: 5px; - top: 0; - left: 100%; - border: 1px solid #e4e7ed; - border-radius: 2px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + position: absolute; + margin-left: 5px; + top: 0; + left: 100%; + border: 1px solid #e4e7ed; + border-radius: 2px; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-menu-item, .el-submenu__title { - height: 56px; - line-height: 56px; - position: relative; - -webkit-box-sizing: border-box; - white-space: nowrap; - list-style: none; -} -.el-menu--collapse - .el-submenu.is-opened - > .el-submenu__title - .el-submenu__icon-arrow { - -webkit-transform: none; - transform: none; + height: 56px; + line-height: 56px; + position: relative; + -webkit-box-sizing: border-box; + white-space: nowrap; + list-style: none; +} +.el-menu--collapse .el-submenu.is-opened > .el-submenu__title .el-submenu__icon-arrow { + -webkit-transform: none; + transform: none; } .el-menu--popup { - z-index: 100; - border: none; - padding: 5px 0; - border-radius: 2px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + z-index: 100; + border: none; + padding: 5px 0; + border-radius: 2px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-menu--popup-bottom-start { - margin-top: 5px; + margin-top: 5px; } .el-menu--popup-right-start { - margin-left: 5px; - margin-right: 5px; + margin-left: 5px; + margin-right: 5px; } .el-menu-item { - font-size: 14px; - color: #303133; - padding: 0 20px; - cursor: pointer; - -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; - transition: border-color 0.3s, background-color 0.3s, color 0.3s; - box-sizing: border-box; + font-size: 14px; + color: #303133; + padding: 0 20px; + cursor: pointer; + -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; + transition: border-color 0.3s, background-color 0.3s, color 0.3s; + box-sizing: border-box; } .el-menu-item * { - vertical-align: middle; + vertical-align: middle; } .el-menu-item i { - color: #909399; + color: #909399; } .el-menu-item:focus, .el-menu-item:hover { - outline: 0; - background-color: #ecf0fb; + outline: 0; + background-color: rgb(236, 240, 251); } .el-menu-item.is-disabled { - opacity: 0.25; - cursor: not-allowed; - background: 0 0 !important; + opacity: 0.25; + cursor: not-allowed; + background: 0 0 !important; } .el-menu-item [class^="el-icon-"] { - margin-right: 5px; - width: 24px; - text-align: center; - font-size: 18px; - vertical-align: middle; + margin-right: 5px; + width: 24px; + text-align: center; + font-size: 18px; + vertical-align: middle; } .el-menu-item.is-active { - color: #4165d7; + color: #4165d7; } .el-menu-item.is-active i { - color: inherit; + color: inherit; } .el-submenu { - list-style: none; - margin: 0; - padding-left: 0; + list-style: none; + margin: 0; + padding-left: 0; } .el-submenu__title { - font-size: 14px; - color: #303133; - padding: 0 20px; - cursor: pointer; - -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; - transition: border-color 0.3s, background-color 0.3s, color 0.3s; - box-sizing: border-box; + font-size: 14px; + color: #303133; + padding: 0 20px; + cursor: pointer; + -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; + transition: border-color 0.3s, background-color 0.3s, color 0.3s; + box-sizing: border-box; } .el-submenu__title * { - vertical-align: middle; + vertical-align: middle; } .el-submenu__title i { - color: #909399; + color: #909399; } .el-submenu__title:focus, .el-submenu__title:hover { - outline: 0; - background-color: #ecf0fb; + outline: 0; + background-color: rgb(236, 240, 251); } .el-submenu__title.is-disabled { - opacity: 0.25; - cursor: not-allowed; - background: 0 0 !important; + opacity: 0.25; + cursor: not-allowed; + background: 0 0 !important; } .el-submenu__title:hover { - background-color: #ecf0fb; + background-color: rgb(236, 240, 251); } .el-submenu .el-menu { - border: none; + border: none; } .el-submenu .el-menu-item { - height: 50px; - line-height: 50px; - padding: 0 45px; - min-width: 200px; + height: 50px; + line-height: 50px; + padding: 0 45px; + min-width: 200px; } .el-submenu__icon-arrow { - position: absolute; - top: 50%; - right: 20px; - margin-top: -7px; - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - font-size: 12px; + position: absolute; + top: 50%; + right: 20px; + margin-top: -7px; + -webkit-transition: -webkit-transform 0.3s; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + font-size: 12px; } .el-submenu.is-active .el-submenu__title { - border-bottom-color: #4165d7; + border-bottom-color: #4165d7; } .el-submenu.is-opened > .el-submenu__title .el-submenu__icon-arrow { - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); } .el-submenu.is-disabled .el-menu-item, .el-submenu.is-disabled .el-submenu__title { - opacity: 0.25; - cursor: not-allowed; - background: 0 0 !important; + opacity: 0.25; + cursor: not-allowed; + background: 0 0 !important; } .el-submenu [class^="el-icon-"] { - vertical-align: middle; - margin-right: 5px; - width: 24px; - text-align: center; - font-size: 18px; + vertical-align: middle; + margin-right: 5px; + width: 24px; + text-align: center; + font-size: 18px; } .el-menu-item-group > ul { - padding: 0; + padding: 0; } .el-menu-item-group__title { - padding: 7px 0 7px 20px; - line-height: normal; - font-size: 12px; - color: #909399; + padding: 7px 0 7px 20px; + line-height: normal; + font-size: 12px; + color: #909399; } .el-radio-button__inner, .el-radio-group { - display: inline-block; - line-height: 1; - vertical-align: middle; + display: inline-block; + line-height: 1; + vertical-align: middle; } .horizontal-collapse-transition .el-submenu__title .el-submenu__icon-arrow { - -webkit-transition: 0.2s; - transition: 0.2s; - opacity: 0; + -webkit-transition: 0.2s; + transition: 0.2s; + opacity: 0; } .el-radio-group { - font-size: 0; + font-size: 0; } .el-radio-button { - position: relative; - display: inline-block; - outline: 0; + position: relative; + display: inline-block; + outline: 0; } .el-radio-button__inner { - white-space: nowrap; - background: #fff; - border: 1px solid #dcdfe6; - font-weight: 500; - border-left: 0; - color: #606266; - -webkit-appearance: none; - text-align: center; - -webkit-box-sizing: border-box; - box-sizing: border-box; - outline: 0; - margin: 0; - position: relative; - cursor: pointer; - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - padding: 12px 20px; - font-size: 14px; - border-radius: 0; + white-space: nowrap; + background: #fff; + border: 1px solid #dcdfe6; + font-weight: 500; + border-left: 0; + color: #606266; + -webkit-appearance: none; + text-align: center; + -webkit-box-sizing: border-box; + box-sizing: border-box; + outline: 0; + margin: 0; + position: relative; + cursor: pointer; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + padding: 12px 20px; + font-size: 14px; + border-radius: 0; } .el-radio-button__inner.is-round { - padding: 12px 20px; + padding: 12px 20px; } .el-radio-button__inner:hover { - color: #4165d7; + color: #4165d7; } .el-radio-button__inner [class*="el-icon-"] { - line-height: 0.9; + line-height: 0.9; } .el-radio-button__inner [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-radio-button:first-child .el-radio-button__inner { - border-left: 1px solid #dcdfe6; - border-radius: 4px 0 0 4px; - -webkit-box-shadow: none !important; - box-shadow: none !important; + border-left: 1px solid #dcdfe6; + border-radius: 4px 0 0 4px; + -webkit-box-shadow: none !important; + box-shadow: none !important; } .el-radio-button__orig-radio { - opacity: 0; - outline: 0; - position: absolute; - z-index: -1; + opacity: 0; + outline: 0; + position: absolute; + z-index: -1; } .el-radio-button__orig-radio:checked + .el-radio-button__inner { - color: #fff; - background-color: #4165d7; - border-color: #4165d7; - -webkit-box-shadow: -1px 0 0 0 #4165d7; - box-shadow: -1px 0 0 0 #4165d7; + color: #fff; + background-color: #4165d7; + border-color: #4165d7; + -webkit-box-shadow: -1px 0 0 0 #4165d7; + box-shadow: -1px 0 0 0 #4165d7; } .el-radio-button__orig-radio:disabled + .el-radio-button__inner { - color: #c0c4cc; - cursor: not-allowed; - background-image: none; - background-color: #fff; - border-color: #ebeef5; - -webkit-box-shadow: none; - box-shadow: none; + color: #c0c4cc; + cursor: not-allowed; + background-image: none; + background-color: #fff; + border-color: #ebeef5; + -webkit-box-shadow: none; + box-shadow: none; } .el-radio-button__orig-radio:disabled:checked + .el-radio-button__inner { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-radio-button:last-child .el-radio-button__inner { - border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; } .el-popover, .el-radio-button:first-child:last-child .el-radio-button__inner { - border-radius: 4px; + border-radius: 4px; } .el-radio-button--medium .el-radio-button__inner { - padding: 10px 20px; - font-size: 14px; - border-radius: 0; + padding: 10px 20px; + font-size: 14px; + border-radius: 0; } .el-radio-button--medium .el-radio-button__inner.is-round { - padding: 10px 20px; + padding: 10px 20px; } .el-radio-button--small .el-radio-button__inner { - padding: 9px 15px; - font-size: 12px; - border-radius: 0; + padding: 9px 15px; + font-size: 12px; + border-radius: 0; } .el-radio-button--small .el-radio-button__inner.is-round { - padding: 9px 15px; + padding: 9px 15px; } .el-radio-button--mini .el-radio-button__inner { - padding: 7px 15px; - font-size: 12px; - border-radius: 0; + padding: 7px 15px; + font-size: 12px; + border-radius: 0; } .el-radio-button--mini .el-radio-button__inner.is-round { - padding: 7px 15px; + padding: 7px 15px; } .el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled) { - -webkit-box-shadow: 0 0 2px 2px #4165d7; - box-shadow: 0 0 2px 2px #4165d7; + -webkit-box-shadow: 0 0 2px 2px #4165d7; + box-shadow: 0 0 2px 2px #4165d7; } .el-switch { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - font-size: 14px; - line-height: 20px; - height: 20px; - vertical-align: middle; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + position: relative; + font-size: 14px; + line-height: 20px; + height: 20px; + vertical-align: middle; } .el-switch__core, .el-switch__label { - display: inline-block; - cursor: pointer; + display: inline-block; + cursor: pointer; } .el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label { - cursor: not-allowed; + cursor: not-allowed; } .el-switch__label { - -webkit-transition: 0.2s; - transition: 0.2s; - height: 20px; - font-size: 14px; - font-weight: 500; - vertical-align: middle; - color: #303133; + -webkit-transition: 0.2s; + transition: 0.2s; + height: 20px; + font-size: 14px; + font-weight: 500; + vertical-align: middle; + color: #303133; } .el-switch__label.is-active { - color: #4165d7; + color: #4165d7; } .el-switch__label--left { - margin-right: 10px; + margin-right: 10px; } .el-switch__label--right { - margin-left: 10px; + margin-left: 10px; } .el-switch__label * { - line-height: 1; - font-size: 14px; - display: inline-block; + line-height: 1; + font-size: 14px; + display: inline-block; } .el-switch__input { - position: absolute; - width: 0; - height: 0; - opacity: 0; - margin: 0; + position: absolute; + width: 0; + height: 0; + opacity: 0; + margin: 0; } .el-switch__core { - margin: 0; - position: relative; - width: 40px; - height: 20px; - border: 1px solid #dcdfe6; - outline: 0; - border-radius: 10px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - background: #dcdfe6; - -webkit-transition: border-color 0.3s, background-color 0.3s; - transition: border-color 0.3s, background-color 0.3s; - vertical-align: middle; + margin: 0; + position: relative; + width: 40px; + height: 20px; + border: 1px solid #dcdfe6; + outline: 0; + border-radius: 10px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + background: #dcdfe6; + -webkit-transition: border-color 0.3s, background-color 0.3s; + transition: border-color 0.3s, background-color 0.3s; + vertical-align: middle; } .el-switch__core:after { - content: ""; - position: absolute; - top: 1px; - left: 1px; - border-radius: 100%; - -webkit-transition: all 0.3s; - transition: all 0.3s; - width: 16px; - height: 16px; - background-color: #fff; + content: ""; + position: absolute; + top: 1px; + left: 1px; + border-radius: 100%; + -webkit-transition: all 0.3s; + transition: all 0.3s; + width: 16px; + height: 16px; + background-color: #fff; } .el-switch.is-checked .el-switch__core { - border-color: #4165d7; - background-color: #4165d7; + border-color: #4165d7; + background-color: #4165d7; } .el-switch.is-checked .el-switch__core::after { - left: 100%; - margin-left: -17px; + left: 100%; + margin-left: -17px; } .el-switch.is-disabled { - opacity: 0.6; + opacity: 0.6; } .el-switch--wide .el-switch__label.el-switch__label--left span { - left: 10px; + left: 10px; } .el-switch--wide .el-switch__label.el-switch__label--right span { - right: 10px; + right: 10px; } .el-switch .label-fade-enter, .el-switch .label-fade-leave-active { - opacity: 0; + opacity: 0; } .el-select-dropdown { - position: absolute; - z-index: 1001; - border: 1px solid #e4e7ed; - border-radius: 4px; - background-color: #fff; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 5px 0; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected { - color: #4165d7; - background-color: #fff; + color: #4165d7; + background-color: #fff; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after { - position: absolute; - right: 20px; - font-family: element-icons; - content: "\e6da"; - font-size: 12px; - font-weight: 700; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + position: absolute; + right: 20px; + font-family: element-icons; + content: "\e6da"; + font-size: 12px; + font-weight: 700; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } .el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list { - padding: 0; + padding: 0; } .el-select-dropdown__empty { - padding: 10px 0; - margin: 0; - text-align: center; - color: #999; - font-size: 14px; + padding: 10px 0; + margin: 0; + text-align: center; + color: #999; + font-size: 14px; } .el-select-dropdown__wrap { - max-height: 274px; + max-height: 274px; } .el-select-dropdown__list { - list-style: none; - padding: 6px 0; - margin: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + list-style: none; + padding: 6px 0; + margin: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-select-dropdown__item { - font-size: 14px; - padding: 0 20px; - position: relative; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - color: #606266; - height: 34px; - line-height: 34px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - cursor: pointer; + font-size: 14px; + padding: 0 20px; + position: relative; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + color: #606266; + height: 34px; + line-height: 34px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + cursor: pointer; } .el-select-dropdown__item.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-select-dropdown__item.is-disabled:hover { - background-color: #fff; + background-color: #fff; } .el-select-dropdown__item.hover, .el-select-dropdown__item:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-select-dropdown__item.selected { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .el-select-group { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } .el-select-group__wrap { - position: relative; - list-style: none; - margin: 0; - padding: 0; + position: relative; + list-style: none; + margin: 0; + padding: 0; } .el-select-group__wrap:not(:last-of-type) { - padding-bottom: 24px; + padding-bottom: 24px; } .el-select-group__wrap:not(:last-of-type)::after { - content: ""; - position: absolute; - display: block; - left: 20px; - right: 20px; - bottom: 12px; - height: 1px; - background: #e4e7ed; + content: ""; + position: absolute; + display: block; + left: 20px; + right: 20px; + bottom: 12px; + height: 1px; + background: #e4e7ed; } .el-select-group__title { - padding-left: 20px; - font-size: 12px; - color: #909399; - line-height: 30px; + padding-left: 20px; + font-size: 12px; + color: #909399; + line-height: 30px; } .el-select-group .el-select-dropdown__item { - padding-left: 20px; + padding-left: 20px; } .el-select { - display: inline-block; - position: relative; + display: inline-block; + position: relative; } .el-select .el-select__tags > span { - display: contents; + display: contents; } .el-select:hover .el-input__inner { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-select .el-input__inner { - cursor: pointer; - padding-right: 35px; + cursor: pointer; + padding-right: 35px; } .el-select .el-input__inner:focus { - border-color: #4165d7; + border-color: #4165d7; } .el-select .el-input .el-select__caret { - color: #c0c4cc; - font-size: 14px; - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); - cursor: pointer; + color: #c0c4cc; + font-size: 14px; + -webkit-transition: -webkit-transform 0.3s; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); + cursor: pointer; } .el-select .el-input .el-select__caret.is-reverse { - -webkit-transform: rotateZ(0); - transform: rotateZ(0); + -webkit-transform: rotateZ(0); + transform: rotateZ(0); } .el-select .el-input .el-select__caret.is-show-close { - font-size: 14px; - text-align: center; - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); - border-radius: 100%; - color: #c0c4cc; - -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + font-size: 14px; + text-align: center; + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); + border-radius: 100%; + color: #c0c4cc; + -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-select .el-input .el-select__caret.is-show-close:hover { - color: #909399; + color: #909399; } .el-select .el-input.is-disabled .el-input__inner { - cursor: not-allowed; + cursor: not-allowed; } .el-select .el-input.is-disabled .el-input__inner:hover { - border-color: #e4e7ed; + border-color: #e4e7ed; } .el-select .el-input.is-focus .el-input__inner { - border-color: #4165d7; + border-color: #4165d7; } .el-select > .el-input { - display: block; + display: block; } .el-select__input { - border: none; - outline: 0; - padding: 0; - margin-left: 15px; - color: #666; - font-size: 14px; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - height: 28px; - background-color: transparent; + border: none; + outline: 0; + padding: 0; + margin-left: 15px; + color: #666; + font-size: 14px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + height: 28px; + background-color: transparent; } .el-select__input.is-mini { - height: 14px; + height: 14px; } .el-select__close { - cursor: pointer; - position: absolute; - top: 8px; - z-index: 1000; - right: 25px; - color: #c0c4cc; - line-height: 18px; - font-size: 14px; + cursor: pointer; + position: absolute; + top: 8px; + z-index: 1000; + right: 25px; + color: #c0c4cc; + line-height: 18px; + font-size: 14px; } .el-select__close:hover { - color: #909399; + color: #909399; } .el-select__tags { - position: absolute; - line-height: normal; - white-space: normal; - z-index: 1; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -ms-flex-wrap: wrap; - flex-wrap: wrap; + position: absolute; + line-height: normal; + white-space: normal; + z-index: 1; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } .el-select .el-tag__close { - margin-top: -2px; + margin-top: -2px; } .el-select .el-tag { - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-color: transparent; - margin: 2px 0 2px 6px; - background-color: #f0f2f5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-color: transparent; + margin: 2px 0 2px 6px; + background-color: #f0f2f5; } .el-select .el-tag__close.el-icon-close { - background-color: #c0c4cc; - right: -7px; - top: 0; - color: #fff; + background-color: #c0c4cc; + right: -7px; + top: 0; + color: #fff; } .el-select .el-tag__close.el-icon-close:hover { - background-color: #909399; + background-color: #909399; } .el-table, .el-table__expanded-cell { - background-color: #fff; + background-color: #fff; } .el-select .el-tag__close.el-icon-close::before { - display: block; - -webkit-transform: translate(0, 0.5px); - transform: translate(0, 0.5px); + display: block; + -webkit-transform: translate(0, 0.5px); + transform: translate(0, 0.5px); } .el-table { - position: relative; - overflow: hidden; - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - width: 100%; - max-width: 100%; - font-size: 14px; - color: #606266; + position: relative; + overflow: hidden; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + width: 100%; + max-width: 100%; + font-size: 14px; + color: #606266; } .el-table--mini, .el-table--small, .el-table__expand-icon { - font-size: 12px; + font-size: 12px; } .el-table__empty-block { - min-height: 60px; - text-align: center; - width: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + min-height: 60px; + text-align: center; + width: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-table__empty-text { - line-height: 60px; - width: 50%; - color: #909399; + line-height: 60px; + width: 50%; + color: #909399; } .el-table__expand-column .cell { - padding: 0; - text-align: center; + padding: 0; + text-align: center; } .el-table__expand-icon { - position: relative; - cursor: pointer; - color: #666; - -webkit-transition: -webkit-transform 0.2s ease-in-out; - transition: -webkit-transform 0.2s ease-in-out; - transition: transform 0.2s ease-in-out; - transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; - height: 20px; + position: relative; + cursor: pointer; + color: #666; + -webkit-transition: -webkit-transform 0.2s ease-in-out; + transition: -webkit-transform 0.2s ease-in-out; + transition: transform 0.2s ease-in-out; + transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; + height: 20px; } .el-table__expand-icon--expanded { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } .el-table__expand-icon > .el-icon { - position: absolute; - left: 50%; - top: 50%; - margin-left: -5px; - margin-top: -5px; + position: absolute; + left: 50%; + top: 50%; + margin-left: -5px; + margin-top: -5px; } .el-table__expanded-cell[class*="cell"] { - padding: 20px 50px; + padding: 20px 50px; } .el-table__expanded-cell:hover { - background-color: transparent !important; + background-color: transparent !important; } .el-table__placeholder { - display: inline-block; - width: 20px; + display: inline-block; + width: 20px; } .el-table__append-wrapper { - overflow: hidden; + overflow: hidden; } .el-table--fit { - border-right: 0; - border-bottom: 0; + border-right: 0; + border-bottom: 0; } .el-table--fit td.gutter, .el-table--fit th.gutter { - border-right-width: 1px; + border-right-width: 1px; } .el-table--scrollable-x .el-table__body-wrapper { - overflow-x: auto; + overflow-x: auto; } .el-table--scrollable-y .el-table__body-wrapper { - overflow-y: auto; + overflow-y: auto; } .el-table thead { - color: #909399; - font-weight: 500; + color: #909399; + font-weight: 500; } .el-table thead.is-group th { - background: #f5f7fa; + background: #f5f7fa; } .el-table th, .el-table tr { - background-color: #fff; + background-color: #fff; } .el-table td, .el-table th { - padding: 12px 0; - min-width: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; - text-overflow: ellipsis; - vertical-align: middle; - position: relative; - text-align: left; + padding: 12px 0; + min-width: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; + text-overflow: ellipsis; + vertical-align: middle; + position: relative; + text-align: left; } .el-table td.is-center, .el-table th.is-center { - text-align: center; + text-align: center; } .el-table td.is-right, .el-table th.is-right { - text-align: right; + text-align: right; } .el-table td.gutter, .el-table th.gutter { - width: 15px; - border-right-width: 0; - border-bottom-width: 0; - padding: 0; + width: 15px; + border-right-width: 0; + border-bottom-width: 0; + padding: 0; } .el-table--medium td, .el-table--medium th { - padding: 10px 0; + padding: 10px 0; } .el-table--small td, .el-table--small th { - padding: 8px 0; + padding: 8px 0; } .el-table--mini td, .el-table--mini th { - padding: 6px 0; + padding: 6px 0; } .el-table .cell, .el-table--border td:first-child .cell, .el-table--border th:first-child .cell { - padding-left: 10px; + padding-left: 10px; } .el-table tr input[type="checkbox"] { - margin: 0; + margin: 0; } .el-table td, .el-table th.is-leaf { - border-bottom: 1px solid #ebeef5; + border-bottom: 1px solid #ebeef5; } .el-table th.is-sortable { - cursor: pointer; + cursor: pointer; } .el-table th { - overflow: hidden; - -ms-user-select: none; - user-select: none; + overflow: hidden; + -ms-user-select: none; + user-select: none; } .el-table th > .cell { - display: inline-block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - position: relative; - vertical-align: middle; - padding-left: 10px; - padding-right: 10px; - width: 100%; + display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + position: relative; + vertical-align: middle; + padding-left: 10px; + padding-right: 10px; + width: 100%; } .el-table th > .cell.highlight { - color: #4165d7; + color: #4165d7; } .el-table th.required > div::before { - display: inline-block; - content: ""; - width: 8px; - height: 8px; - border-radius: 50%; - background: #ff4d51; - margin-right: 5px; - vertical-align: middle; + display: inline-block; + content: ""; + width: 8px; + height: 8px; + border-radius: 50%; + background: #ff4d51; + margin-right: 5px; + vertical-align: middle; } .el-table td div { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-table td.gutter { - width: 0; + width: 0; } .el-table .cell { - -webkit-box-sizing: border-box; - box-sizing: border-box; - overflow: hidden; - text-overflow: ellipsis; - white-space: normal; - word-break: break-all; - line-height: 23px; - padding-right: 10px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + overflow: hidden; + text-overflow: ellipsis; + white-space: normal; + word-break: break-all; + line-height: 23px; + padding-right: 10px; } .el-table .cell.el-tooltip { - white-space: nowrap; - min-width: 50px; + white-space: nowrap; + min-width: 50px; } .el-table--border, .el-table--group { - border: 1px solid #ebeef5; + border: 1px solid #ebeef5; } .el-table--border::after, .el-table--group::after, .el-table::before { - content: ""; - position: absolute; - background-color: #ebeef5; - z-index: 1; + content: ""; + position: absolute; + background-color: #ebeef5; + z-index: 1; } .el-table--border::after, .el-table--group::after { - top: 0; - right: 0; - width: 1px; - height: 100%; + top: 0; + right: 0; + width: 1px; + height: 100%; } .el-table::before { - left: 0; - bottom: 0; - width: 100%; - height: 1px; + left: 0; + bottom: 0; + width: 100%; + height: 1px; } .el-table--border { - border-right: none; - border-bottom: none; + border-right: none; + border-bottom: none; } .el-table--border.el-loading-parent--relative { - border-color: transparent; + border-color: transparent; } .el-table--border td, .el-table--border th, .el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed { - border-right: 1px solid #ebeef5; + border-right: 1px solid #ebeef5; } .el-table--border th.gutter:last-of-type { - border-bottom: 1px solid #ebeef5; - border-bottom-width: 1px; + border-bottom: 1px solid #ebeef5; + border-bottom-width: 1px; } .el-table--border th, .el-table__fixed-right-patch { - border-bottom: 1px solid #ebeef5; + border-bottom: 1px solid #ebeef5; } .el-table__fixed, .el-table__fixed-right { - position: absolute; - top: 0; - left: 0; - overflow-x: hidden; - overflow-y: hidden; - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); + position: absolute; + top: 0; + left: 0; + overflow-x: hidden; + overflow-y: hidden; + -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); + box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); } .el-table__fixed-right::before, .el-table__fixed::before { - content: ""; - position: absolute; - left: 0; - bottom: 0; - width: 100%; - height: 1px; - background-color: #ebeef5; - z-index: 4; + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 1px; + background-color: #ebeef5; + z-index: 4; } .el-table__fixed-right-patch { - position: absolute; - top: -1px; - right: 0; - background-color: #fff; + position: absolute; + top: -1px; + right: 0; + background-color: #fff; } .el-table__fixed-right { - top: 0; - left: auto; - right: 0; + top: 0; + left: auto; + right: 0; } .el-table__fixed-right .el-table__fixed-body-wrapper, .el-table__fixed-right .el-table__fixed-footer-wrapper, .el-table__fixed-right .el-table__fixed-header-wrapper { - left: auto; - right: 0; + left: auto; + right: 0; } .el-table__fixed-header-wrapper { - position: absolute; - left: 0; - top: 0; - z-index: 3; + position: absolute; + left: 0; + top: 0; + z-index: 3; } .el-table__fixed-footer-wrapper { - position: absolute; - left: 0; - bottom: 0; - z-index: 3; + position: absolute; + left: 0; + bottom: 0; + z-index: 3; } .el-table__fixed-footer-wrapper tbody td { - border-top: 1px solid #ebeef5; - background-color: #f5f7fa; - color: #606266; + border-top: 1px solid #ebeef5; + background-color: #f5f7fa; + color: #606266; } .el-table__fixed-body-wrapper { - position: absolute; - left: 0; - top: 37px; - overflow: hidden; - z-index: 3; + position: absolute; + left: 0; + top: 37px; + overflow: hidden; + z-index: 3; } .el-table__body-wrapper, .el-table__footer-wrapper, .el-table__header-wrapper { - width: 100%; + width: 100%; } .el-table__footer-wrapper { - margin-top: -1px; + margin-top: -1px; } .el-table__footer-wrapper td { - border-top: 1px solid #ebeef5; + border-top: 1px solid #ebeef5; } .el-table__body, .el-table__footer, .el-table__header { - table-layout: fixed; - border-collapse: separate; + table-layout: fixed; + border-collapse: separate; } .el-table__footer-wrapper, .el-table__header-wrapper { - overflow: hidden; + overflow: hidden; } .el-table__footer-wrapper tbody td, .el-table__header-wrapper tbody td { - background-color: #f5f7fa; - color: #606266; + background-color: #f5f7fa; + color: #606266; } .el-table__body-wrapper { - overflow: hidden; - position: relative; + overflow: hidden; + position: relative; } .el-table__body-wrapper.is-scrolling-left ~ .el-table__fixed, .el-table__body-wrapper.is-scrolling-none ~ .el-table__fixed, .el-table__body-wrapper.is-scrolling-none ~ .el-table__fixed-right, .el-table__body-wrapper.is-scrolling-right ~ .el-table__fixed-right { - -webkit-box-shadow: none; - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } .el-picker-panel, .el-table-filter { - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } -.el-table__body-wrapper - .el-table--border.is-scrolling-right - ~ .el-table__fixed-right { - border-left: 1px solid #ebeef5; +.el-table__body-wrapper .el-table--border.is-scrolling-right ~ .el-table__fixed-right { + border-left: 1px solid #ebeef5; } .el-table .caret-wrapper { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 34px; - width: 24px; - vertical-align: middle; - cursor: pointer; - overflow: initial; - position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 34px; + width: 24px; + vertical-align: middle; + cursor: pointer; + overflow: initial; + position: relative; } .el-table .sort-caret { - width: 0; - height: 0; - border: 5px solid transparent; - position: absolute; - left: 7px; + width: 0; + height: 0; + border: 5px solid transparent; + position: absolute; + left: 7px; } .el-table .sort-caret.ascending { - border-bottom-color: #c0c4cc; - top: 5px; + border-bottom-color: #c0c4cc; + top: 5px; } .el-table .sort-caret.descending { - border-top-color: #c0c4cc; - bottom: 7px; + border-top-color: #c0c4cc; + bottom: 7px; } .el-table .ascending .sort-caret.ascending { - border-bottom-color: #4165d7; + border-bottom-color: #4165d7; } .el-table .descending .sort-caret.descending { - border-top-color: #4165d7; + border-top-color: #4165d7; } .el-table .hidden-columns { - position: absolute; - z-index: -1; + position: absolute; + z-index: -1; } .el-table--striped .el-table__body tr.el-table__row--striped td { - background: #fafafa; + background: #fafafa; } .el-table--striped .el-table__body tr.el-table__row--striped.current-row td { - background-color: #ecf0fb; + background-color: rgb(236, 240, 251); } .el-table__body tr.hover-row.current-row > td, .el-table__body tr.hover-row.el-table__row--striped.current-row > td, .el-table__body tr.hover-row.el-table__row--striped > td, .el-table__body tr.hover-row > td { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-table__body tr.current-row > td { - background-color: #ecf0fb; + background-color: rgb(236, 240, 251); } .el-table__column-resize-proxy { - position: absolute; - left: 200px; - top: 0; - bottom: 0; - width: 0; - border-left: 1px solid #ebeef5; - z-index: 10; + position: absolute; + left: 200px; + top: 0; + bottom: 0; + width: 0; + border-left: 1px solid #ebeef5; + z-index: 10; } .el-table__column-filter-trigger { - display: inline-block; - line-height: 34px; - cursor: pointer; + display: inline-block; + line-height: 34px; + cursor: pointer; } .el-table__column-filter-trigger i { - color: #909399; - font-size: 12px; - -webkit-transform: scale(0.75); - transform: scale(0.75); + color: #909399; + font-size: 12px; + -webkit-transform: scale(0.75); + transform: scale(0.75); } .el-table--enable-row-transition .el-table__body td { - -webkit-transition: background-color 0.25s ease; - transition: background-color 0.25s ease; + -webkit-transition: background-color 0.25s ease; + transition: background-color 0.25s ease; } .el-table--enable-row-hover .el-table__body tr:hover > td { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-table--fluid-height .el-table__fixed, .el-table--fluid-height .el-table__fixed-right { - bottom: 0; - overflow: hidden; + bottom: 0; + overflow: hidden; } .el-table [class*="el-table__row--level"] .el-table__expand-icon { - display: inline-block; - width: 20px; - line-height: 20px; - height: 20px; - text-align: center; - margin-right: 3px; + display: inline-block; + width: 20px; + line-height: 20px; + height: 20px; + text-align: center; + margin-right: 3px; } .el-table-column--selection .cell { - padding-left: 14px; - padding-right: 14px; + padding-left: 14px; + padding-right: 14px; } .el-table-filter { - border: 1px solid #ebeef5; - border-radius: 2px; - background-color: #fff; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 2px 0; + border: 1px solid #ebeef5; + border-radius: 2px; + background-color: #fff; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 2px 0; } .el-date-table td, .el-date-table td div { - height: 30px; - -webkit-box-sizing: border-box; + height: 30px; + -webkit-box-sizing: border-box; } .el-table-filter__list { - padding: 5px 0; - margin: 0; - list-style: none; - min-width: 100px; + padding: 5px 0; + margin: 0; + list-style: none; + min-width: 100px; } .el-table-filter__list-item { - line-height: 36px; - padding: 0 10px; - cursor: pointer; - font-size: 14px; + line-height: 36px; + padding: 0 10px; + cursor: pointer; + font-size: 14px; } .el-table-filter__list-item:hover { - background-color: #ecf0fb; - color: #6784df; + background-color: rgb(236, 240, 251); + color: rgb(103, 132, 223); } .el-table-filter__list-item.is-active { - background-color: #4165d7; - color: #fff; + background-color: #4165d7; + color: #fff; } .el-table-filter__content { - min-width: 100px; + min-width: 100px; } .el-table-filter__bottom { - border-top: 1px solid #ebeef5; - padding: 8px; + border-top: 1px solid #ebeef5; + padding: 8px; } .el-table-filter__bottom button { - background: 0 0; - border: none; - color: #606266; - cursor: pointer; - font-size: 13px; - padding: 0 3px; + background: 0 0; + border: none; + color: #606266; + cursor: pointer; + font-size: 13px; + padding: 0 3px; } .el-date-table td.in-range div, .el-date-table td.in-range div:hover, .el-date-table.is-week-mode .el-date-table__row.current div, .el-date-table.is-week-mode .el-date-table__row:hover div { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-table-filter__bottom button:hover { - color: #4165d7; + color: #4165d7; } .el-table-filter__bottom button:focus { - outline: 0; + outline: 0; } .el-table-filter__bottom button.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-table-filter__wrap { - max-height: 280px; + max-height: 280px; } .el-table-filter__checkbox-group { - padding: 10px; + padding: 10px; } .el-table-filter__checkbox-group label.el-checkbox { - display: block; - margin-right: 5px; - margin-bottom: 8px; - margin-left: 5px; + display: block; + margin-right: 5px; + margin-bottom: 8px; + margin-left: 5px; } .el-table-filter__checkbox-group .el-checkbox:last-child { - margin-bottom: 0; + margin-bottom: 0; } .el-date-table { - font-size: 12px; - -ms-user-select: none; - user-select: none; + font-size: 12px; + -ms-user-select: none; + user-select: none; } .el-date-table.is-week-mode .el-date-table__row:hover td.available:hover { - color: #606266; + color: #606266; } .el-date-table.is-week-mode .el-date-table__row:hover td:first-child div { - margin-left: 5px; - border-top-left-radius: 15px; - border-bottom-left-radius: 15px; + margin-left: 5px; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; } .el-date-table.is-week-mode .el-date-table__row:hover td:last-child div { - margin-right: 5px; - border-top-right-radius: 15px; - border-bottom-right-radius: 15px; + margin-right: 5px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; } .el-date-table td { - width: 32px; - padding: 4px 0; - box-sizing: border-box; - text-align: center; - cursor: pointer; - position: relative; + width: 32px; + padding: 4px 0; + box-sizing: border-box; + text-align: center; + cursor: pointer; + position: relative; } .el-date-table td div { - padding: 3px 0; - box-sizing: border-box; + padding: 3px 0; + box-sizing: border-box; } .el-date-table td span { - width: 24px; - height: 24px; - display: block; - margin: 0 auto; - line-height: 24px; - position: absolute; - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - border-radius: 50%; + width: 24px; + height: 24px; + display: block; + margin: 0 auto; + line-height: 24px; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + border-radius: 50%; } .el-date-table td.next-month, .el-date-table td.prev-month { - color: #c0c4cc; + color: #c0c4cc; } .el-date-table td.today { - position: relative; + position: relative; } .el-date-table td.today span { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .el-date-table td.today.end-date span, .el-date-table td.today.start-date span { - color: #fff; + color: #fff; } .el-date-table td.available:hover { - color: #4165d7; + color: #4165d7; } .el-date-table td.current:not(.disabled) span { - color: #fff; - background-color: #4165d7; + color: #fff; + background-color: #4165d7; } .el-date-table td.end-date div, .el-date-table td.start-date div { - color: #fff; + color: #fff; } .el-date-table td.end-date span, .el-date-table td.start-date span { - background-color: #4165d7; + background-color: #4165d7; } .el-date-table td.start-date div { - margin-left: 5px; - border-top-left-radius: 15px; - border-bottom-left-radius: 15px; + margin-left: 5px; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; } .el-date-table td.end-date div { - margin-right: 5px; - border-top-right-radius: 15px; - border-bottom-right-radius: 15px; + margin-right: 5px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; } .el-date-table td.disabled div { - background-color: #f5f7fa; - opacity: 1; - cursor: not-allowed; - color: #c0c4cc; + background-color: #f5f7fa; + opacity: 1; + cursor: not-allowed; + color: #c0c4cc; } .el-date-table td.selected div { - margin-left: 5px; - margin-right: 5px; - background-color: #f2f6fc; - border-radius: 15px; + margin-left: 5px; + margin-right: 5px; + background-color: #f2f6fc; + border-radius: 15px; } .el-date-table td.selected div:hover { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-date-table td.selected span { - background-color: #4165d7; - color: #fff; - border-radius: 15px; + background-color: #4165d7; + color: #fff; + border-radius: 15px; } .el-date-table td.week { - font-size: 80%; - color: #606266; + font-size: 80%; + color: #606266; } .el-month-table, .el-year-table { - font-size: 12px; - border-collapse: collapse; + font-size: 12px; + border-collapse: collapse; } .el-date-table th { - padding: 5px; - color: #606266; - font-weight: 400; - border-bottom: solid 1px #ebeef5; + padding: 5px; + color: #606266; + font-weight: 400; + border-bottom: solid 1px #ebeef5; } .el-month-table { - margin: -1px; + margin: -1px; } .el-month-table td { - text-align: center; - padding: 8px 0; - cursor: pointer; + text-align: center; + padding: 8px 0; + cursor: pointer; } .el-month-table td div { - height: 48px; - padding: 6px 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + height: 48px; + padding: 6px 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-month-table td.today .cell { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .el-month-table td.today.end-date .cell, .el-month-table td.today.start-date .cell { - color: #fff; + color: #fff; } .el-month-table td.disabled .cell { - background-color: #f5f7fa; - cursor: not-allowed; - color: #c0c4cc; + background-color: #f5f7fa; + cursor: not-allowed; + color: #c0c4cc; } .el-month-table td.disabled .cell:hover { - color: #c0c4cc; + color: #c0c4cc; } .el-month-table td .cell { - width: 60px; - height: 36px; - display: block; - line-height: 36px; - color: #606266; - margin: 0 auto; - border-radius: 18px; + width: 60px; + height: 36px; + display: block; + line-height: 36px; + color: #606266; + margin: 0 auto; + border-radius: 18px; } .el-month-table td .cell:hover { - color: #4165d7; + color: #4165d7; } .el-month-table td.in-range div, .el-month-table td.in-range div:hover { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-month-table td.end-date div, .el-month-table td.start-date div { - color: #fff; + color: #fff; } .el-month-table td.end-date .cell, .el-month-table td.start-date .cell { - color: #fff; - background-color: #4165d7; + color: #fff; + background-color: #4165d7; } .el-month-table td.start-date div { - border-top-left-radius: 24px; - border-bottom-left-radius: 24px; + border-top-left-radius: 24px; + border-bottom-left-radius: 24px; } .el-month-table td.end-date div { - border-top-right-radius: 24px; - border-bottom-right-radius: 24px; + border-top-right-radius: 24px; + border-bottom-right-radius: 24px; } .el-month-table td.current:not(.disabled) .cell { - color: #4165d7; + color: #4165d7; } .el-year-table { - margin: -1px; + margin: -1px; } .el-year-table .el-icon { - color: #303133; + color: #303133; } .el-year-table td { - text-align: center; - padding: 20px 3px; - cursor: pointer; + text-align: center; + padding: 20px 3px; + cursor: pointer; } .el-year-table td.today .cell { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .el-year-table td.disabled .cell { - background-color: #f5f7fa; - cursor: not-allowed; - color: #c0c4cc; + background-color: #f5f7fa; + cursor: not-allowed; + color: #c0c4cc; } .el-year-table td.disabled .cell:hover { - color: #c0c4cc; + color: #c0c4cc; } .el-year-table td .cell { - width: 48px; - height: 32px; - display: block; - line-height: 32px; - color: #606266; - margin: 0 auto; + width: 48px; + height: 32px; + display: block; + line-height: 32px; + color: #606266; + margin: 0 auto; } .el-year-table td .cell:hover, .el-year-table td.current:not(.disabled) .cell { - color: #4165d7; + color: #4165d7; } .el-date-range-picker { - width: 646px; + width: 646px; } .el-date-range-picker.has-sidebar { - width: 756px; + width: 756px; } .el-date-range-picker table { - table-layout: fixed; - width: 100%; + table-layout: fixed; + width: 100%; } .el-date-range-picker .el-picker-panel__body { - min-width: 513px; + min-width: 513px; } .el-date-range-picker .el-picker-panel__content { - margin: 0; + margin: 0; } .el-date-range-picker__header { - position: relative; - text-align: center; - height: 28px; + position: relative; + text-align: center; + height: 28px; } .el-date-range-picker__header [class*="arrow-left"] { - float: left; + float: left; } .el-date-range-picker__header [class*="arrow-right"] { - float: right; + float: right; } .el-date-range-picker__header div { - font-size: 16px; - font-weight: 500; - margin-right: 50px; + font-size: 16px; + font-weight: 500; + margin-right: 50px; } .el-date-range-picker__content { - float: left; - width: 50%; - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 0; - padding: 16px; + float: left; + width: 50%; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + padding: 16px; } .el-date-range-picker__content.is-left { - border-right: 1px solid #e4e4e4; + border-right: 1px solid #e4e4e4; } .el-date-range-picker__content .el-date-range-picker__header div { - margin-left: 50px; - margin-right: 50px; + margin-left: 50px; + margin-right: 50px; } .el-date-range-picker__editors-wrap { - -webkit-box-sizing: border-box; - box-sizing: border-box; - display: table-cell; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: table-cell; } .el-date-range-picker__editors-wrap.is-right { - text-align: right; + text-align: right; } .el-date-range-picker__time-header { - position: relative; - border-bottom: 1px solid #e4e4e4; - font-size: 12px; - padding: 8px 5px 5px; - display: table; - width: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; + position: relative; + border-bottom: 1px solid #e4e4e4; + font-size: 12px; + padding: 8px 5px 5px; + display: table; + width: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-date-range-picker__time-header > .el-icon-arrow-right { - font-size: 20px; - vertical-align: middle; - display: table-cell; - color: #303133; + font-size: 20px; + vertical-align: middle; + display: table-cell; + color: #303133; } .el-date-range-picker__time-picker-wrap { - position: relative; - display: table-cell; - padding: 0 5px; + position: relative; + display: table-cell; + padding: 0 5px; } .el-date-range-picker__time-picker-wrap .el-picker-panel { - position: absolute; - top: 13px; - right: 0; - z-index: 1; - background: #fff; + position: absolute; + top: 13px; + right: 0; + z-index: 1; + background: #fff; } .el-date-picker { - width: 322px; + width: 322px; } .el-date-picker.has-sidebar.has-time { - width: 434px; + width: 434px; } .el-date-picker.has-sidebar { - width: 438px; + width: 438px; } .el-date-picker.has-time .el-picker-panel__body-wrapper { - position: relative; + position: relative; } .el-date-picker .el-picker-panel__content { - width: 292px; + width: 292px; } .el-date-picker table { - table-layout: fixed; - width: 100%; + table-layout: fixed; + width: 100%; } .el-date-picker__editor-wrap { - position: relative; - display: table-cell; - padding: 0 5px; + position: relative; + display: table-cell; + padding: 0 5px; } .el-date-picker__time-header { - position: relative; - border-bottom: 1px solid #e4e4e4; - font-size: 12px; - padding: 8px 5px 5px; - display: table; - width: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; + position: relative; + border-bottom: 1px solid #e4e4e4; + font-size: 12px; + padding: 8px 5px 5px; + display: table; + width: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-date-picker__header { - margin: 12px; - text-align: center; + margin: 12px; + text-align: center; } .el-date-picker__header--bordered { - margin-bottom: 0; - padding-bottom: 12px; - border-bottom: solid 1px #ebeef5; + margin-bottom: 0; + padding-bottom: 12px; + border-bottom: solid 1px #ebeef5; } .el-date-picker__header--bordered + .el-picker-panel__content { - margin-top: 0; + margin-top: 0; } .el-date-picker__header-label { - font-size: 16px; - font-weight: 500; - padding: 0 5px; - line-height: 22px; - text-align: center; - cursor: pointer; - color: #606266; + font-size: 16px; + font-weight: 500; + padding: 0 5px; + line-height: 22px; + text-align: center; + cursor: pointer; + color: #606266; } .el-date-picker__header-label.active, .el-date-picker__header-label:hover { - color: #4165d7; + color: #4165d7; } .el-date-picker__prev-btn { - float: left; + float: left; } .el-date-picker__next-btn { - float: right; + float: right; } .el-date-picker__time-wrap { - padding: 10px; - text-align: center; + padding: 10px; + text-align: center; } .el-date-picker__time-label { - float: left; - cursor: pointer; - line-height: 30px; - margin-left: 10px; + float: left; + cursor: pointer; + line-height: 30px; + margin-left: 10px; } .time-select { - margin: 5px 0; - min-width: 0; + margin: 5px 0; + min-width: 0; } .time-select .el-picker-panel__content { - max-height: 200px; - margin: 0; + max-height: 200px; + margin: 0; } .time-select-item { - padding: 8px 10px; - font-size: 14px; - line-height: 20px; + padding: 8px 10px; + font-size: 14px; + line-height: 20px; } .time-select-item.selected:not(.disabled) { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .time-select-item.disabled { - color: #e4e7ed; - cursor: not-allowed; + color: #e4e7ed; + cursor: not-allowed; } .time-select-item:hover { - background-color: #f5f7fa; - font-weight: 700; - cursor: pointer; + background-color: #f5f7fa; + font-weight: 700; + cursor: pointer; } .el-date-editor { - position: relative; - display: inline-block; - text-align: left; + position: relative; + display: inline-block; + text-align: left; } .el-date-editor.el-input, .el-date-editor.el-input__inner { - width: 220px; + width: 220px; } .el-date-editor--monthrange.el-input, .el-date-editor--monthrange.el-input__inner { - width: 300px; + width: 300px; } .el-date-editor--daterange.el-input, .el-date-editor--daterange.el-input__inner, .el-date-editor--timerange.el-input, .el-date-editor--timerange.el-input__inner { - width: 350px; + width: 350px; } .el-date-editor--datetimerange.el-input, .el-date-editor--datetimerange.el-input__inner { - width: 400px; + width: 400px; } .el-date-editor--dates .el-input__inner { - text-overflow: ellipsis; - white-space: nowrap; + text-overflow: ellipsis; + white-space: nowrap; } .el-date-editor .el-icon-circle-close { - cursor: pointer; + cursor: pointer; } .el-date-editor .el-range__icon { - font-size: 14px; - margin-left: -5px; - color: #c0c4cc; - float: left; - line-height: 32px; + font-size: 14px; + margin-left: -5px; + color: #c0c4cc; + float: left; + line-height: 32px; } .el-date-editor .el-range-input, .el-date-editor .el-range-separator { - height: 100%; - margin: 0; - text-align: center; - display: inline-block; - font-size: 14px; + height: 100%; + margin: 0; + text-align: center; + display: inline-block; + font-size: 14px; } .el-date-editor .el-range-input { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: none; - outline: 0; - padding: 0; - width: 39%; - color: #606266; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border: none; + outline: 0; + padding: 0; + width: 39%; + color: #606266; } .el-date-editor .el-range-input::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-date-editor .el-range-input:-ms-input-placeholder { + color: #c0c4cc; } .el-date-editor .el-range-input::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-date-editor .el-range-input::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-date-editor .el-range-separator { - padding: 0 5px; - line-height: 32px; - width: 5%; - color: #303133; + padding: 0 5px; + line-height: 32px; + width: 5%; + color: #303133; } .el-date-editor .el-range__close-icon { - font-size: 14px; - color: #c0c4cc; - width: 25px; - display: inline-block; - float: right; - line-height: 32px; + font-size: 14px; + color: #c0c4cc; + width: 25px; + display: inline-block; + float: right; + line-height: 32px; } .el-range-editor.el-input__inner { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 3px 10px; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 3px 10px; } .el-range-editor .el-range-input { - line-height: 1; + line-height: 1; } .el-range-editor.is-active, .el-range-editor.is-active:hover { - border-color: #4165d7; + border-color: #4165d7; } .el-range-editor--medium.el-input__inner { - height: 36px; + height: 36px; } .el-range-editor--medium .el-range-separator { - line-height: 28px; - font-size: 14px; + line-height: 28px; + font-size: 14px; } .el-range-editor--medium .el-range-input { - font-size: 14px; + font-size: 14px; } .el-range-editor--medium .el-range__close-icon, .el-range-editor--medium .el-range__icon { - line-height: 28px; + line-height: 28px; } .el-range-editor--small.el-input__inner { - height: 32px; + height: 32px; } .el-range-editor--small .el-range-separator { - line-height: 24px; - font-size: 13px; + line-height: 24px; + font-size: 13px; } .el-range-editor--small .el-range-input { - font-size: 13px; + font-size: 13px; } .el-range-editor--small .el-range__close-icon, .el-range-editor--small .el-range__icon { - line-height: 24px; + line-height: 24px; } .el-range-editor--mini.el-input__inner { - height: 28px; + height: 28px; } .el-range-editor--mini .el-range-separator { - line-height: 20px; - font-size: 12px; + line-height: 20px; + font-size: 12px; } .el-range-editor--mini .el-range-input { - font-size: 12px; + font-size: 12px; } .el-range-editor--mini .el-range__close-icon, .el-range-editor--mini .el-range__icon { - line-height: 20px; + line-height: 20px; } .el-range-editor.is-disabled { - background-color: #f5f7fa; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; } .el-range-editor.is-disabled:focus, .el-range-editor.is-disabled:hover { - border-color: #e4e7ed; + border-color: #e4e7ed; } .el-range-editor.is-disabled input { - background-color: #f5f7fa; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + color: #c0c4cc; + cursor: not-allowed; } .el-range-editor.is-disabled input::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-range-editor.is-disabled input:-ms-input-placeholder { + color: #c0c4cc; } .el-range-editor.is-disabled input::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-range-editor.is-disabled input::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-range-editor.is-disabled .el-range-separator { - color: #c0c4cc; + color: #c0c4cc; } .el-picker-panel { - color: #606266; - border: 1px solid #e4e7ed; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - background: #fff; - border-radius: 4px; - line-height: 30px; - margin: 5px 0; + color: #606266; + border: 1px solid #e4e7ed; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + background: #fff; + border-radius: 4px; + line-height: 30px; + margin: 5px 0; } .el-popover, .el-time-panel { - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-picker-panel__body-wrapper::after, .el-picker-panel__body::after { - content: ""; - display: table; - clear: both; + content: ""; + display: table; + clear: both; } .el-picker-panel__content { - position: relative; - margin: 15px; + position: relative; + margin: 15px; } .el-picker-panel__footer { - border-top: 1px solid #e4e4e4; - padding: 4px; - text-align: right; - background-color: #fff; - position: relative; - font-size: 0; + border-top: 1px solid #e4e4e4; + padding: 4px; + text-align: right; + background-color: #fff; + position: relative; + font-size: 0; } .el-picker-panel__shortcut { - display: block; - width: 100%; - border: 0; - background-color: transparent; - line-height: 28px; - font-size: 14px; - color: #606266; - padding-left: 12px; - text-align: left; - outline: 0; - cursor: pointer; + display: block; + width: 100%; + border: 0; + background-color: transparent; + line-height: 28px; + font-size: 14px; + color: #606266; + padding-left: 12px; + text-align: left; + outline: 0; + cursor: pointer; } .el-picker-panel__shortcut:hover { - color: #4165d7; + color: #4165d7; } .el-picker-panel__shortcut.active { - background-color: #e6f1fe; - color: #4165d7; + background-color: #e6f1fe; + color: #4165d7; } .el-picker-panel__btn { - border: 1px solid #dcdcdc; - color: #333; - line-height: 24px; - border-radius: 2px; - padding: 0 20px; - cursor: pointer; - background-color: transparent; - outline: 0; - font-size: 12px; + border: 1px solid #dcdcdc; + color: #333; + line-height: 24px; + border-radius: 2px; + padding: 0 20px; + cursor: pointer; + background-color: transparent; + outline: 0; + font-size: 12px; } .el-picker-panel__btn[disabled] { - color: #ccc; - cursor: not-allowed; + color: #ccc; + cursor: not-allowed; } .el-picker-panel__icon-btn { - font-size: 12px; - color: #303133; - border: 0; - background: 0 0; - cursor: pointer; - outline: 0; - margin-top: 8px; + font-size: 12px; + color: #303133; + border: 0; + background: 0 0; + cursor: pointer; + outline: 0; + margin-top: 8px; } .el-picker-panel__icon-btn:hover { - color: #4165d7; + color: #4165d7; } .el-picker-panel__icon-btn.is-disabled { - color: #bbb; + color: #bbb; } .el-picker-panel__icon-btn.is-disabled:hover { - cursor: not-allowed; + cursor: not-allowed; } .el-picker-panel__link-btn { - vertical-align: middle; + vertical-align: middle; } .el-picker-panel [slot="sidebar"], .el-picker-panel__sidebar { - position: absolute; - top: 0; - bottom: 0; - width: 110px; - border-right: 1px solid #e4e4e4; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-top: 6px; - background-color: #fff; - overflow: auto; + position: absolute; + top: 0; + bottom: 0; + width: 110px; + border-right: 1px solid #e4e4e4; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding-top: 6px; + background-color: #fff; + overflow: auto; } .el-picker-panel [slot="sidebar"] + .el-picker-panel__body, .el-picker-panel__sidebar + .el-picker-panel__body { - margin-left: 110px; + margin-left: 110px; } .el-time-spinner.has-seconds .el-time-spinner__wrapper { - width: 33.3%; + width: 33.3%; } .el-time-spinner__wrapper { - max-height: 190px; - overflow: auto; - display: inline-block; - width: 50%; - vertical-align: top; - position: relative; + max-height: 190px; + overflow: auto; + display: inline-block; + width: 50%; + vertical-align: top; + position: relative; } -.el-time-spinner__wrapper - .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) { - padding-bottom: 15px; +.el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) { + padding-bottom: 15px; } .el-time-spinner__input.el-input .el-input__inner, .el-time-spinner__list { - padding: 0; - text-align: center; + padding: 0; + text-align: center; } .el-time-spinner__wrapper.is-arrow { - -webkit-box-sizing: border-box; - box-sizing: border-box; - text-align: center; - overflow: hidden; + -webkit-box-sizing: border-box; + box-sizing: border-box; + text-align: center; + overflow: hidden; } .el-time-spinner__wrapper.is-arrow .el-time-spinner__list { - -webkit-transform: translateY(-32px); - transform: translateY(-32px); + -webkit-transform: translateY(-32px); + transform: translateY(-32px); } -.el-time-spinner__wrapper.is-arrow - .el-time-spinner__item:hover:not(.disabled):not(.active) { - background: #fff; - cursor: default; +.el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active) { + background: #fff; + cursor: default; } .el-time-spinner__arrow { - font-size: 12px; - color: #909399; - position: absolute; - left: 0; - width: 100%; - z-index: 1; - text-align: center; - height: 30px; - line-height: 30px; - cursor: pointer; + font-size: 12px; + color: #909399; + position: absolute; + left: 0; + width: 100%; + z-index: 1; + text-align: center; + height: 30px; + line-height: 30px; + cursor: pointer; } .el-time-spinner__arrow:hover { - color: #4165d7; + color: #4165d7; } .el-time-spinner__arrow.el-icon-arrow-up { - top: 10px; + top: 10px; } .el-time-spinner__arrow.el-icon-arrow-down { - bottom: 10px; + bottom: 10px; } .el-time-spinner__input.el-input { - width: 70%; + width: 70%; } .el-time-spinner__list { - margin: 0; - list-style: none; + margin: 0; + list-style: none; } .el-time-spinner__list::after, .el-time-spinner__list::before { - content: ""; - display: block; - width: 100%; - height: 80px; + content: ""; + display: block; + width: 100%; + height: 80px; } .el-time-spinner__item { - height: 32px; - line-height: 32px; - font-size: 12px; - color: #606266; + height: 32px; + line-height: 32px; + font-size: 12px; + color: #606266; } .el-time-spinner__item:hover:not(.disabled):not(.active) { - background: #f5f7fa; - cursor: pointer; + background: #f5f7fa; + cursor: pointer; } .el-time-spinner__item.active:not(.disabled) { - color: #303133; - font-weight: 700; + color: #303133; + font-weight: 700; } .el-time-spinner__item.disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-time-panel { - margin: 5px 0; - border: 1px solid #e4e7ed; - background-color: #fff; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - border-radius: 2px; - position: absolute; - width: 180px; - left: 0; - z-index: 1000; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-box-sizing: content-box; - box-sizing: content-box; + margin: 5px 0; + border: 1px solid #e4e7ed; + background-color: #fff; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + border-radius: 2px; + position: absolute; + width: 180px; + left: 0; + z-index: 1000; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .el-slider__button, .el-slider__button-wrapper { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; } .el-time-panel__content { - font-size: 0; - position: relative; - overflow: hidden; + font-size: 0; + position: relative; + overflow: hidden; } .el-time-panel__content::after, .el-time-panel__content::before { - content: ""; - top: 50%; - position: absolute; - margin-top: -15px; - height: 32px; - z-index: -1; - left: 0; - right: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-top: 6px; - text-align: left; - border-top: 1px solid #e4e7ed; - border-bottom: 1px solid #e4e7ed; + content: ""; + top: 50%; + position: absolute; + margin-top: -15px; + height: 32px; + z-index: -1; + left: 0; + right: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding-top: 6px; + text-align: left; + border-top: 1px solid #e4e7ed; + border-bottom: 1px solid #e4e7ed; } .el-time-panel__content::after { - left: 50%; - margin-left: 12%; - margin-right: 12%; + left: 50%; + margin-left: 12%; + margin-right: 12%; } .el-time-panel__content::before { - padding-left: 50%; - margin-right: 12%; - margin-left: 12%; + padding-left: 50%; + margin-right: 12%; + margin-left: 12%; } .el-time-panel__content.has-seconds::after { - left: calc(100% / 3 * 2); + left: calc(100% / 3 * 2); } .el-time-panel__content.has-seconds::before { - padding-left: calc(100% / 3); + padding-left: calc(100% / 3); } .el-time-panel__footer { - border-top: 1px solid #e4e4e4; - padding: 4px; - height: 36px; - line-height: 25px; - text-align: right; - -webkit-box-sizing: border-box; - box-sizing: border-box; + border-top: 1px solid #e4e4e4; + padding: 4px; + height: 36px; + line-height: 25px; + text-align: right; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-time-panel__btn { - border: none; - line-height: 28px; - padding: 0 5px; - margin: 0 5px; - cursor: pointer; - background-color: transparent; - outline: 0; - font-size: 12px; - color: #303133; + border: none; + line-height: 28px; + padding: 0 5px; + margin: 0 5px; + cursor: pointer; + background-color: transparent; + outline: 0; + font-size: 12px; + color: #303133; } .el-time-panel__btn.confirm { - font-weight: 800; - color: #4165d7; + font-weight: 800; + color: #4165d7; } .el-time-range-picker { - width: 354px; - overflow: visible; + width: 354px; + overflow: visible; } .el-time-range-picker__content { - position: relative; - text-align: center; - padding: 10px; + position: relative; + text-align: center; + padding: 10px; } .el-time-range-picker__cell { - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 0; - padding: 4px 7px 7px; - width: 50%; - display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + padding: 4px 7px 7px; + width: 50%; + display: inline-block; } .el-time-range-picker__header { - margin-bottom: 5px; - text-align: center; - font-size: 14px; + margin-bottom: 5px; + text-align: center; + font-size: 14px; } .el-time-range-picker__body { - border-radius: 2px; - border: 1px solid #e4e7ed; + border-radius: 2px; + border: 1px solid #e4e7ed; } .el-popover { - position: absolute; - background: #fff; - min-width: 150px; - border: 1px solid #ebeef5; - padding: 12px; - z-index: 2000; - color: #606266; - line-height: 1.4; - text-align: justify; - font-size: 14px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - word-break: break-all; + position: absolute; + background: #fff; + min-width: 150px; + border: 1px solid #ebeef5; + padding: 12px; + z-index: 2000; + color: #606266; + line-height: 1.4; + text-align: justify; + font-size: 14px; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + word-break: break-all; } .el-popover--plain { - padding: 18px 20px; + padding: 18px 20px; } .el-popover__title { - color: #303133; - font-size: 16px; - line-height: 1; - margin-bottom: 12px; + color: #303133; + font-size: 16px; + line-height: 1; + margin-bottom: 12px; } .v-modal-enter { - -webkit-animation: v-modal-in 0.2s ease; - animation: v-modal-in 0.2s ease; + -webkit-animation: v-modal-in 0.2s ease; + animation: v-modal-in 0.2s ease; } .v-modal-leave { - -webkit-animation: v-modal-out 0.2s ease forwards; - animation: v-modal-out 0.2s ease forwards; + -webkit-animation: v-modal-out 0.2s ease forwards; + animation: v-modal-out 0.2s ease forwards; } @keyframes v-modal-in { - 0% { - opacity: 0; - } + 0% { + opacity: 0; + } } @keyframes v-modal-out { - 100% { - opacity: 0; - } + 100% { + opacity: 0; + } } .v-modal { - position: fixed; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.5; - background: #000; + position: fixed; + left: 0; + top: 0; + width: 100%; + height: 100%; + opacity: 0.5; + background: #000; } .el-popup-parent--hidden { - overflow: hidden; + overflow: hidden; } .el-message-box { - display: inline-block; - width: 420px; - padding-bottom: 10px; - vertical-align: middle; - background-color: #fff; - border-radius: 4px; - border: 1px solid #ebeef5; - font-size: 18px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - text-align: left; - overflow: hidden; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; + display: inline-block; + width: 420px; + padding-bottom: 10px; + vertical-align: middle; + background-color: #fff; + border-radius: 4px; + border: 1px solid #ebeef5; + font-size: 18px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + text-align: left; + overflow: hidden; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } .el-message-box__wrapper { - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - text-align: center; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + text-align: center; } .el-message-box__wrapper::after { - content: ""; - display: inline-block; - height: 100%; - width: 0; - vertical-align: middle; + content: ""; + display: inline-block; + height: 100%; + width: 0; + vertical-align: middle; } .el-message-box__header { - position: relative; - padding: 15px 15px 10px; + position: relative; + padding: 15px 15px 10px; } .el-message-box__title { - padding-left: 0; - margin-bottom: 0; - font-size: 18px; - line-height: 1; - color: #303133; + padding-left: 0; + margin-bottom: 0; + font-size: 18px; + line-height: 1; + color: #303133; } .el-message-box__headerbtn { - position: absolute; - top: 15px; - right: 15px; - padding: 0; - border: none; - outline: 0; - background: 0 0; - font-size: 16px; - cursor: pointer; + position: absolute; + top: 15px; + right: 15px; + padding: 0; + border: none; + outline: 0; + background: 0 0; + font-size: 16px; + cursor: pointer; } .el-form-item.is-error .el-input__inner, .el-form-item.is-error .el-input__inner:focus, @@ -3774,678 +2876,659 @@ .el-form-item.is-error .el-textarea__inner:focus, .el-message-box__input input.invalid, .el-message-box__input input.invalid:focus { - border-color: #f56c6c; + border-color: #f56c6c; } .el-message-box__headerbtn .el-message-box__close { - color: #909399; + color: #909399; } .el-message-box__headerbtn:focus .el-message-box__close, .el-message-box__headerbtn:hover .el-message-box__close { - color: #4165d7; + color: #4165d7; } .el-message-box__content { - padding: 10px 15px; - color: #606266; - font-size: 14px; + padding: 10px 15px; + color: #606266; + font-size: 14px; } .el-message-box__container { - position: relative; + position: relative; } .el-message-box__input { - padding-top: 15px; + padding-top: 15px; } .el-message-box__status { - position: absolute; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - font-size: 24px !important; + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + font-size: 24px !important; } .el-message-box__status::before { - padding-left: 1px; + padding-left: 1px; } .el-message-box__status + .el-message-box__message { - padding-left: 36px; - padding-right: 12px; + padding-left: 36px; + padding-right: 12px; } .el-message-box__status.el-icon-success { - color: #67c23a; + color: #67c23a; } .el-message-box__status.el-icon-info { - color: #909399; + color: #909399; } .el-message-box__status.el-icon-warning { - color: #e6a23c; + color: #e6a23c; } .el-message-box__status.el-icon-error { - color: #f56c6c; + color: #f56c6c; } .el-message-box__message { - margin: 0; + margin: 0; } .el-message-box__message p { - margin: 0; - line-height: 24px; + margin: 0; + line-height: 24px; } .el-message-box__errormsg { - color: #f56c6c; - font-size: 12px; - min-height: 18px; - margin-top: 2px; + color: #f56c6c; + font-size: 12px; + min-height: 18px; + margin-top: 2px; } .el-message-box__btns { - padding: 5px 15px 0; - text-align: right; + padding: 5px 15px 0; + text-align: right; } .el-message-box__btns button:nth-child(2) { - margin-left: 10px; + margin-left: 10px; } .el-message-box__btns-reverse { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; + -webkit-box-orient: horizontal; + -webkit-box-direction: reverse; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; } .el-message-box--center { - padding-bottom: 30px; + padding-bottom: 30px; } .el-message-box--center .el-message-box__header { - padding-top: 30px; + padding-top: 30px; } .el-message-box--center .el-message-box__title { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-message-box--center .el-message-box__status { - position: relative; - top: auto; - padding-right: 5px; - text-align: center; - -webkit-transform: translateY(-1px); - transform: translateY(-1px); + position: relative; + top: auto; + padding-right: 5px; + text-align: center; + -webkit-transform: translateY(-1px); + transform: translateY(-1px); } .el-message-box--center .el-message-box__message { - margin-left: 0; + margin-left: 0; } .el-message-box--center .el-message-box__btns, .el-message-box--center .el-message-box__content { - text-align: center; + text-align: center; } .el-message-box--center .el-message-box__content { - padding-left: 27px; - padding-right: 27px; + padding-left: 27px; + padding-right: 27px; } .msgbox-fade-enter-active { - -webkit-animation: msgbox-fade-in 0.3s; - animation: msgbox-fade-in 0.3s; + -webkit-animation: msgbox-fade-in 0.3s; + animation: msgbox-fade-in 0.3s; } .msgbox-fade-leave-active { - -webkit-animation: msgbox-fade-out 0.3s; - animation: msgbox-fade-out 0.3s; + -webkit-animation: msgbox-fade-out 0.3s; + animation: msgbox-fade-out 0.3s; } @-webkit-keyframes msgbox-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @keyframes msgbox-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @-webkit-keyframes msgbox-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } @keyframes msgbox-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } .el-breadcrumb { - font-size: 14px; - line-height: 1; + font-size: 14px; + line-height: 1; } .el-breadcrumb::after, .el-breadcrumb::before { - display: table; - content: ""; + display: table; + content: ""; } .el-breadcrumb::after { - clear: both; + clear: both; } .el-breadcrumb__separator { - margin: 0 9px; - font-weight: 700; - color: #c0c4cc; + margin: 0 9px; + font-weight: 700; + color: #c0c4cc; } .el-breadcrumb__separator[class*="icon"] { - margin: 0 6px; - font-weight: 400; + margin: 0 6px; + font-weight: 400; } .el-breadcrumb__item { - float: left; + float: left; } .el-breadcrumb__inner { - color: #606266; + color: #606266; } .el-breadcrumb__inner a, .el-breadcrumb__inner.is-link { - font-weight: 700; - text-decoration: none; - -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - color: #303133; + font-weight: 700; + text-decoration: none; + -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + color: #303133; } .el-breadcrumb__inner a:hover, .el-breadcrumb__inner.is-link:hover { - color: #4165d7; - cursor: pointer; + color: #4165d7; + cursor: pointer; } .el-breadcrumb__item:last-child .el-breadcrumb__inner, .el-breadcrumb__item:last-child .el-breadcrumb__inner a, .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover, .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover { - font-weight: 400; - color: #606266; - cursor: text; + font-weight: 400; + color: #606266; + cursor: text; } .el-breadcrumb__item:last-child .el-breadcrumb__separator { - display: none; + display: none; } .el-form--label-left .el-form-item__label { - text-align: left; + text-align: left; } .el-form--label-top .el-form-item__label { - float: none; - display: inline-block; - text-align: left; - padding: 0 0 10px; + float: none; + display: inline-block; + text-align: left; + padding: 0 0 10px; } .el-form--inline .el-form-item { - display: inline-block; - margin-right: 10px; - vertical-align: top; + display: inline-block; + margin-right: 10px; + vertical-align: top; } .el-form--inline .el-form-item__label { - float: none; - display: inline-block; + float: none; + display: inline-block; } .el-form--inline .el-form-item__content { - display: inline-block; - vertical-align: top; + display: inline-block; + vertical-align: top; } .el-form--inline.el-form--label-top .el-form-item__content { - display: block; + display: block; } .el-form-item { - margin-bottom: 22px; + margin-bottom: 22px; } .el-form-item::after, .el-form-item::before { - display: table; - content: ""; + display: table; + content: ""; } .el-form-item::after { - clear: both; + clear: both; } .el-form-item .el-form-item { - margin-bottom: 0; + margin-bottom: 0; } .el-form-item--mini.el-form-item, .el-form-item--small.el-form-item { - margin-bottom: 18px; + margin-bottom: 18px; } .el-form-item .el-input__validateIcon { - display: none; + display: none; } .el-form-item--medium .el-form-item__content, .el-form-item--medium .el-form-item__label { - line-height: 36px; + line-height: 36px; } .el-form-item--small .el-form-item__content, .el-form-item--small .el-form-item__label { - line-height: 32px; + line-height: 32px; } .el-form-item--small .el-form-item__error { - padding-top: 2px; + padding-top: 2px; } .el-form-item--mini .el-form-item__content, .el-form-item--mini .el-form-item__label { - line-height: 28px; + line-height: 28px; } .el-form-item--mini .el-form-item__error { - padding-top: 1px; + padding-top: 1px; } .el-form-item__label-wrap { - float: left; + float: left; } .el-form-item__label-wrap .el-form-item__label { - display: inline-block; - float: none; + display: inline-block; + float: none; } .el-form-item__label { - text-align: right; - vertical-align: middle; - float: left; - font-size: 14px; - color: #606266; - line-height: 40px; - padding: 0 12px 0 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + text-align: right; + vertical-align: middle; + float: left; + font-size: 14px; + color: #606266; + line-height: 40px; + padding: 0 12px 0 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-form-item__content { - line-height: 40px; - position: relative; - font-size: 14px; + line-height: 40px; + position: relative; + font-size: 14px; } .el-form-item__content::after, .el-form-item__content::before { - display: table; - content: ""; + display: table; + content: ""; } .el-form-item__content::after { - clear: both; + clear: both; } .el-form-item__content .el-input-group { - vertical-align: top; + vertical-align: top; } .el-form-item__error { - color: #f56c6c; - font-size: 12px; - line-height: 1; - padding-top: 4px; - position: absolute; - top: 100%; - left: 0; + color: #f56c6c; + font-size: 12px; + line-height: 1; + padding-top: 4px; + position: absolute; + top: 100%; + left: 0; } .el-form-item__error--inline { - position: relative; - top: auto; - left: auto; - display: inline-block; - margin-left: 10px; + position: relative; + top: auto; + left: auto; + display: inline-block; + margin-left: 10px; } .el-form-item.is-required:not(.is-no-asterisk) - .el-form-item__label-wrap - > .el-form-item__label:before, + .el-form-item__label-wrap + > .el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before { - content: "*"; - color: #f56c6c; - margin-right: 4px; + content: "*"; + color: #f56c6c; + margin-right: 4px; } .el-form-item.is-error .el-input-group__append .el-input__inner, .el-form-item.is-error .el-input-group__prepend .el-input__inner { - border-color: transparent; + border-color: transparent; } .el-form-item.is-error .el-input__validateIcon { - color: #f56c6c; + color: #f56c6c; } .el-form-item--feedback .el-input__validateIcon { - display: inline-block; + display: inline-block; } .el-tabs__header { - padding: 0; - position: relative; - margin: 0 0 15px; + padding: 0; + position: relative; + margin: 0 0 15px; } .el-tabs__active-bar { - position: absolute; - bottom: 0; - left: 0; - height: 2px; - background-color: #4165d7; - z-index: 1; - -webkit-transition: -webkit-transform 0.3s - cubic-bezier(0.645, 0.045, 0.355, 1); - transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), - -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - list-style: none; + position: absolute; + bottom: 0; + left: 0; + height: 2px; + background-color: #4165d7; + z-index: 1; + -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + list-style: none; } .el-tabs__new-tab { - float: right; - border: 1px solid #d3dce6; - height: 18px; - width: 18px; - line-height: 18px; - margin: 12px 0 9px 10px; - border-radius: 3px; - text-align: center; - font-size: 12px; - color: #d3dce6; - cursor: pointer; - -webkit-transition: all 0.15s; - transition: all 0.15s; + float: right; + border: 1px solid #d3dce6; + height: 18px; + width: 18px; + line-height: 18px; + margin: 12px 0 9px 10px; + border-radius: 3px; + text-align: center; + font-size: 12px; + color: #d3dce6; + cursor: pointer; + -webkit-transition: all 0.15s; + transition: all 0.15s; } .el-collapse-item__arrow, .el-tabs__nav { - -webkit-transition: -webkit-transform 0.3s; + -webkit-transition: -webkit-transform 0.3s; } .el-tabs__new-tab .el-icon-plus { - -webkit-transform: scale(0.8, 0.8); - transform: scale(0.8, 0.8); + -webkit-transform: scale(0.8, 0.8); + transform: scale(0.8, 0.8); } .el-tabs__new-tab:hover { - color: #4165d7; + color: #4165d7; } .el-tabs__nav-wrap { - overflow: hidden; - margin-bottom: -1px; - position: relative; + overflow: hidden; + margin-bottom: -1px; + position: relative; } .el-tabs__nav-wrap::after { - content: ""; - position: absolute; - left: 0; - bottom: 0; - width: 100%; - height: 2px; - background-color: #e4e7ed; - z-index: 1; + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 2px; + background-color: #e4e7ed; + z-index: 1; } .el-tabs--border-card > .el-tabs__header .el-tabs__nav-wrap::after, .el-tabs--card > .el-tabs__header .el-tabs__nav-wrap::after { - content: none; + content: none; } .el-tabs__nav-wrap.is-scrollable { - padding: 0 20px; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding: 0 20px; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-tabs__nav-scroll { - overflow: hidden; + overflow: hidden; } .el-tabs__nav-next, .el-tabs__nav-prev { - position: absolute; - cursor: pointer; - line-height: 44px; - font-size: 12px; - color: #909399; + position: absolute; + cursor: pointer; + line-height: 44px; + font-size: 12px; + color: #909399; } .el-tabs__nav-next { - right: 0; + right: 0; } .el-tabs__nav-prev { - left: 0; + left: 0; } .el-tabs__nav { - white-space: nowrap; - position: relative; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - float: left; - z-index: 2; + white-space: nowrap; + position: relative; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + float: left; + z-index: 2; } .el-tabs__nav.is-stretch { - min-width: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; + min-width: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } .el-tabs__nav.is-stretch > * { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - text-align: center; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + text-align: center; } .el-tabs__item { - padding: 0 20px; - height: 40px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - line-height: 40px; - display: inline-block; - list-style: none; - font-size: 14px; - font-weight: 500; - color: #303133; - position: relative; + padding: 0 20px; + height: 40px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + line-height: 40px; + display: inline-block; + list-style: none; + font-size: 14px; + font-weight: 500; + color: #303133; + position: relative; } .el-tabs__item:focus, .el-tabs__item:focus:active { - outline: 0; + outline: 0; } .el-tabs__item:focus.is-active.is-focus:not(:active) { - -webkit-box-shadow: 0 0 2px 2px #4165d7 inset; - box-shadow: 0 0 2px 2px #4165d7 inset; - border-radius: 3px; + -webkit-box-shadow: 0 0 2px 2px #4165d7 inset; + box-shadow: 0 0 2px 2px #4165d7 inset; + border-radius: 3px; } .el-tabs__item .el-icon-close { - border-radius: 50%; - text-align: center; - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - margin-left: 5px; + border-radius: 50%; + text-align: center; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + margin-left: 5px; } .el-tabs__item .el-icon-close:before { - -webkit-transform: scale(0.9); - transform: scale(0.9); - display: inline-block; + -webkit-transform: scale(0.9); + transform: scale(0.9); + display: inline-block; } .el-tabs__item .el-icon-close:hover { - background-color: #c0c4cc; - color: #fff; + background-color: #c0c4cc; + color: #fff; } .el-tabs__item.is-active { - color: #4165d7; + color: #4165d7; } .el-tabs__item:hover { - color: #4165d7; - cursor: pointer; + color: #4165d7; + cursor: pointer; } .el-tabs__item.is-disabled { - color: #c0c4cc; - cursor: default; + color: #c0c4cc; + cursor: default; } .el-tabs__content { - overflow: hidden; - position: relative; + overflow: hidden; + position: relative; } .el-tabs--card > .el-tabs__header { - border-bottom: 1px solid #e4e7ed; + border-bottom: 1px solid #e4e7ed; } .el-tabs--card > .el-tabs__header .el-tabs__nav { - border: 1px solid #e4e7ed; - border-bottom: none; - border-radius: 4px 4px 0 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + border: 1px solid #e4e7ed; + border-bottom: none; + border-radius: 4px 4px 0 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-tabs--card > .el-tabs__header .el-tabs__active-bar { - display: none; + display: none; } .el-tabs--card > .el-tabs__header .el-tabs__item .el-icon-close { - position: relative; - font-size: 12px; - width: 0; - height: 14px; - vertical-align: middle; - line-height: 15px; - overflow: hidden; - top: -1px; - right: -2px; - -webkit-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} -.el-tabs--card - > .el-tabs__header - .el-tabs__item.is-active.is-closable - .el-icon-close, -.el-tabs--card - > .el-tabs__header - .el-tabs__item.is-closable:hover - .el-icon-close { - width: 14px; + position: relative; + font-size: 12px; + width: 0; + height: 14px; + vertical-align: middle; + line-height: 15px; + overflow: hidden; + top: -1px; + right: -2px; + -webkit-transform-origin: 100% 50%; + transform-origin: 100% 50%; +} +.el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable .el-icon-close, +.el-tabs--card > .el-tabs__header .el-tabs__item.is-closable:hover .el-icon-close { + width: 14px; } .el-tabs--card > .el-tabs__header .el-tabs__item { - border-bottom: 1px solid transparent; - border-left: 1px solid #e4e7ed; - -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), - padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), - padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + border-bottom: 1px solid transparent; + border-left: 1px solid #e4e7ed; + -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-tabs--card > .el-tabs__header .el-tabs__item:first-child { - border-left: none; + border-left: none; } .el-tabs--card > .el-tabs__header .el-tabs__item.is-closable:hover { - padding-left: 13px; - padding-right: 13px; + padding-left: 13px; + padding-right: 13px; } .el-tabs--card > .el-tabs__header .el-tabs__item.is-active { - border-bottom-color: #fff; + border-bottom-color: #fff; } .el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable { - padding-left: 20px; - padding-right: 20px; + padding-left: 20px; + padding-right: 20px; } .el-tabs--border-card { - background: #fff; - border: 1px solid #dcdfe6; - -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), - 0 0 6px 0 rgba(0, 0, 0, 0.04); - box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04); + background: #fff; + border: 1px solid #dcdfe6; + -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04); + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04); } .el-tabs--border-card > .el-tabs__content { - padding: 15px; + padding: 15px; } .el-tabs--border-card > .el-tabs__header { - background-color: #f5f7fa; - border-bottom: 1px solid #e4e7ed; - margin: 0; + background-color: #f5f7fa; + border-bottom: 1px solid #e4e7ed; + margin: 0; } .el-tabs--border-card > .el-tabs__header .el-tabs__item { - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - border: 1px solid transparent; - margin-top: -1px; - color: #909399; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + border: 1px solid transparent; + margin-top: -1px; + color: #909399; } .el-tabs--border-card > .el-tabs__header .el-tabs__item + .el-tabs__item, .el-tabs--border-card > .el-tabs__header .el-tabs__item:first-child { - margin-left: -1px; + margin-left: -1px; } .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-active { - color: #4165d7; - background-color: #fff; - border-right-color: #dcdfe6; - border-left-color: #dcdfe6; + color: #4165d7; + background-color: #fff; + border-right-color: #dcdfe6; + border-left-color: #dcdfe6; } -.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:not(.is-disabled):hover { - color: #4165d7; +.el-tabs--border-card > .el-tabs__header .el-tabs__item:not(.is-disabled):hover { + color: #4165d7; } .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-disabled { - color: #c0c4cc; + color: #c0c4cc; } -.el-tabs--border-card - > .el-tabs__header - .is-scrollable - .el-tabs__item:first-child { - margin-left: 0; +.el-tabs--border-card > .el-tabs__header .is-scrollable .el-tabs__item:first-child { + margin-left: 0; } .el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2), .el-tabs--bottom .el-tabs__item.is-top:nth-child(2), .el-tabs--top .el-tabs__item.is-bottom:nth-child(2), .el-tabs--top .el-tabs__item.is-top:nth-child(2) { - padding-left: 0; + padding-left: 0; } .el-tabs--bottom .el-tabs__item.is-bottom:last-child, .el-tabs--bottom .el-tabs__item.is-top:last-child, .el-tabs--top .el-tabs__item.is-bottom:last-child, .el-tabs--top .el-tabs__item.is-top:last-child { - padding-right: 0; + padding-right: 0; } .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), -.el-tabs--bottom.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:nth-child(2), +.el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), -.el-tabs--top.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:nth-child(2), +.el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2) { - padding-left: 20px; + padding-left: 20px; } .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, -.el-tabs--bottom.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:last-child, +.el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child { - padding-right: 20px; + padding-right: 20px; } .el-tabs--bottom .el-tabs__header.is-bottom { - margin-bottom: 0; - margin-top: 10px; + margin-bottom: 0; + margin-top: 10px; } .el-tabs--bottom.el-tabs--border-card .el-tabs__header.is-bottom { - border-bottom: 0; - border-top: 1px solid #dcdfe6; + border-bottom: 0; + border-top: 1px solid #dcdfe6; } .el-tabs--bottom.el-tabs--border-card .el-tabs__nav-wrap.is-bottom { - margin-top: -1px; - margin-bottom: 0; + margin-top: -1px; + margin-bottom: 0; } .el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom:not(.is-active) { - border: 1px solid transparent; + border: 1px solid transparent; } .el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom { - margin: 0 -1px -1px; + margin: 0 -1px -1px; } .el-tabs--left, .el-tabs--right { - overflow: hidden; + overflow: hidden; } .el-tabs--left .el-tabs__header.is-left, .el-tabs--left .el-tabs__header.is-right, @@ -4457,22 +3540,22 @@ .el-tabs--right .el-tabs__nav-scroll, .el-tabs--right .el-tabs__nav-wrap.is-left, .el-tabs--right .el-tabs__nav-wrap.is-right { - height: 100%; + height: 100%; } .el-tabs--left .el-tabs__active-bar.is-left, .el-tabs--left .el-tabs__active-bar.is-right, .el-tabs--right .el-tabs__active-bar.is-left, .el-tabs--right .el-tabs__active-bar.is-right { - top: 0; - bottom: auto; - width: 2px; - height: auto; + top: 0; + bottom: auto; + width: 2px; + height: auto; } .el-tabs--left .el-tabs__nav-wrap.is-left, .el-tabs--left .el-tabs__nav-wrap.is-right, .el-tabs--right .el-tabs__nav-wrap.is-left, .el-tabs--right .el-tabs__nav-wrap.is-right { - margin-bottom: 0; + margin-bottom: 0; } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-next, .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, @@ -4482,11 +3565,11 @@ .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-next, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev { - height: 30px; - line-height: 30px; - width: 100%; - text-align: center; - cursor: pointer; + height: 30px; + line-height: 30px; + width: 100%; + text-align: center; + cursor: pointer; } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-next i, .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev i, @@ -4496,810 +3579,800 @@ .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev i, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-next i, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev i { - -webkit-transform: rotateZ(90deg); - transform: rotateZ(90deg); + -webkit-transform: rotateZ(90deg); + transform: rotateZ(90deg); } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, .el-tabs--left .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev, .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev { - left: auto; - top: 0; + left: auto; + top: 0; } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-next, .el-tabs--left .el-tabs__nav-wrap.is-right > .el-tabs__nav-next, .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-next, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-next { - right: auto; - bottom: 0; + right: auto; + bottom: 0; } .el-tabs--left .el-tabs__active-bar.is-left, .el-tabs--left .el-tabs__nav-wrap.is-left::after { - right: 0; - left: auto; + right: 0; + left: auto; } .el-tabs--left .el-tabs__nav-wrap.is-left.is-scrollable, .el-tabs--left .el-tabs__nav-wrap.is-right.is-scrollable, .el-tabs--right .el-tabs__nav-wrap.is-left.is-scrollable, .el-tabs--right .el-tabs__nav-wrap.is-right.is-scrollable { - padding: 30px 0; + padding: 30px 0; } .el-tabs--left .el-tabs__nav-wrap.is-left::after, .el-tabs--left .el-tabs__nav-wrap.is-right::after, .el-tabs--right .el-tabs__nav-wrap.is-left::after, .el-tabs--right .el-tabs__nav-wrap.is-right::after { - height: 100%; - width: 2px; - bottom: auto; - top: 0; + height: 100%; + width: 2px; + bottom: auto; + top: 0; } .el-tabs--left .el-tabs__nav.is-left, .el-tabs--left .el-tabs__nav.is-right, .el-tabs--right .el-tabs__nav.is-left, .el-tabs--right .el-tabs__nav.is-right { - float: none; + float: none; } .el-tabs--left .el-tabs__item.is-left, .el-tabs--left .el-tabs__item.is-right, .el-tabs--right .el-tabs__item.is-left, .el-tabs--right .el-tabs__item.is-right { - display: block; + display: block; } .el-tabs--left.el-tabs--card .el-tabs__active-bar.is-left, .el-tabs--right.el-tabs--card .el-tabs__active-bar.is-right { - display: none; + display: none; } .el-tabs--left .el-tabs__header.is-left { - float: left; - margin-bottom: 0; - margin-right: 10px; + float: left; + margin-bottom: 0; + margin-right: 10px; } .el-tabs--left .el-tabs__nav-wrap.is-left { - margin-right: -1px; + margin-right: -1px; } .el-tabs--left .el-tabs__item.is-left { - text-align: right; + text-align: right; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left { - border-left: none; - border-right: 1px solid #e4e7ed; - border-bottom: none; - border-top: 1px solid #e4e7ed; - text-align: left; + border-left: none; + border-right: 1px solid #e4e7ed; + border-bottom: none; + border-top: 1px solid #e4e7ed; + text-align: left; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left:first-child { - border-right: 1px solid #e4e7ed; - border-top: none; + border-right: 1px solid #e4e7ed; + border-top: none; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active { - border: 1px solid #e4e7ed; - border-right-color: #fff; - border-left: none; - border-bottom: none; + border: 1px solid #e4e7ed; + border-right-color: #fff; + border-left: none; + border-bottom: none; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:first-child { - border-top: none; + border-top: none; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:last-child { - border-bottom: none; + border-bottom: none; } .el-tabs--left.el-tabs--card .el-tabs__nav { - border-radius: 4px 0 0 4px; - border-bottom: 1px solid #e4e7ed; - border-right: none; + border-radius: 4px 0 0 4px; + border-bottom: 1px solid #e4e7ed; + border-right: none; } .el-tabs--left.el-tabs--card .el-tabs__new-tab { - float: none; + float: none; } .el-tabs--left.el-tabs--border-card .el-tabs__header.is-left { - border-right: 1px solid #dfe4ed; + border-right: 1px solid #dfe4ed; } .el-tabs--left.el-tabs--border-card .el-tabs__item.is-left { - border: 1px solid transparent; - margin: -1px 0 -1px -1px; + border: 1px solid transparent; + margin: -1px 0 -1px -1px; } .el-tabs--left.el-tabs--border-card .el-tabs__item.is-left.is-active { - border-color: #d1dbe5 transparent; + border-color: #d1dbe5 transparent; } .el-tabs--right .el-tabs__header.is-right { - float: right; - margin-bottom: 0; - margin-left: 10px; + float: right; + margin-bottom: 0; + margin-left: 10px; } .el-tabs--right .el-tabs__nav-wrap.is-right { - margin-left: -1px; + margin-left: -1px; } .el-tabs--right .el-tabs__nav-wrap.is-right::after { - left: 0; - right: auto; + left: 0; + right: auto; } .el-tabs--right .el-tabs__active-bar.is-right { - left: 0; + left: 0; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right { - border-bottom: none; - border-top: 1px solid #e4e7ed; + border-bottom: none; + border-top: 1px solid #e4e7ed; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right:first-child { - border-left: 1px solid #e4e7ed; - border-top: none; + border-left: 1px solid #e4e7ed; + border-top: none; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active { - border: 1px solid #e4e7ed; - border-left-color: #fff; - border-right: none; - border-bottom: none; + border: 1px solid #e4e7ed; + border-left-color: #fff; + border-right: none; + border-bottom: none; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:first-child { - border-top: none; + border-top: none; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:last-child { - border-bottom: none; + border-bottom: none; } .el-tabs--right.el-tabs--card .el-tabs__nav { - border-radius: 0 4px 4px 0; - border-bottom: 1px solid #e4e7ed; - border-left: none; + border-radius: 0 4px 4px 0; + border-bottom: 1px solid #e4e7ed; + border-left: none; } .el-tabs--right.el-tabs--border-card .el-tabs__header.is-right { - border-left: 1px solid #dfe4ed; + border-left: 1px solid #dfe4ed; } .el-tabs--right.el-tabs--border-card .el-tabs__item.is-right { - border: 1px solid transparent; - margin: -1px -1px -1px 0; + border: 1px solid transparent; + margin: -1px -1px -1px 0; } .el-tabs--right.el-tabs--border-card .el-tabs__item.is-right.is-active { - border-color: #d1dbe5 transparent; + border-color: #d1dbe5 transparent; } .slideInLeft-transition, .slideInRight-transition { - display: inline-block; + display: inline-block; } .slideInRight-enter { - -webkit-animation: slideInRight-enter 0.3s; - animation: slideInRight-enter 0.3s; + -webkit-animation: slideInRight-enter 0.3s; + animation: slideInRight-enter 0.3s; } .slideInRight-leave { - position: absolute; - left: 0; - right: 0; - -webkit-animation: slideInRight-leave 0.3s; - animation: slideInRight-leave 0.3s; + position: absolute; + left: 0; + right: 0; + -webkit-animation: slideInRight-leave 0.3s; + animation: slideInRight-leave 0.3s; } .slideInLeft-enter { - -webkit-animation: slideInLeft-enter 0.3s; - animation: slideInLeft-enter 0.3s; + -webkit-animation: slideInLeft-enter 0.3s; + animation: slideInLeft-enter 0.3s; } .slideInLeft-leave { - position: absolute; - left: 0; - right: 0; - -webkit-animation: slideInLeft-leave 0.3s; - animation: slideInLeft-leave 0.3s; + position: absolute; + left: 0; + right: 0; + -webkit-animation: slideInLeft-leave 0.3s; + animation: slideInLeft-leave 0.3s; } @-webkit-keyframes slideInRight-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @keyframes slideInRight-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @-webkit-keyframes slideInRight-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + opacity: 0; + } } @keyframes slideInRight-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + opacity: 0; + } } @-webkit-keyframes slideInLeft-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @keyframes slideInLeft-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @-webkit-keyframes slideInLeft-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + opacity: 0; + } } @keyframes slideInLeft-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + opacity: 0; + } } .el-tree { - position: relative; - cursor: default; - background: #fff; - color: #606266; + position: relative; + cursor: default; + background: #fff; + color: #606266; } .el-tree__empty-block { - position: relative; - min-height: 60px; - text-align: center; - width: 100%; - height: 100%; + position: relative; + min-height: 60px; + text-align: center; + width: 100%; + height: 100%; } .el-tree__empty-text { - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - color: #909399; - font-size: 14px; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + color: #909399; + font-size: 14px; } .el-tree__drop-indicator { - position: absolute; - left: 0; - right: 0; - height: 1px; - background-color: #4165d7; + position: absolute; + left: 0; + right: 0; + height: 1px; + background-color: #4165d7; } .el-tree-node { - white-space: nowrap; - outline: 0; + white-space: nowrap; + outline: 0; } .el-tree-node:focus > .el-tree-node__content { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-tree-node.is-drop-inner > .el-tree-node__content .el-tree-node__label { - background-color: #4165d7; - color: #fff; + background-color: #4165d7; + color: #fff; } .el-tree-node__content { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 26px; - cursor: pointer; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 26px; + cursor: pointer; } .el-tree-node__content > .el-tree-node__expand-icon { - padding: 6px; + padding: 6px; } .el-tree-node__content > label.el-checkbox { - margin-right: 8px; + margin-right: 8px; } .el-tree-node__content:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-tree.is-dragging .el-tree-node__content { - cursor: move; + cursor: move; } .el-tree.is-dragging.is-drop-not-allow .el-tree-node__content { - cursor: not-allowed; + cursor: not-allowed; } .el-tree-node__expand-icon { - cursor: pointer; - color: #c0c4cc; - font-size: 12px; - -webkit-transform: rotate(0); - transform: rotate(0); - -webkit-transition: -webkit-transform 0.3s ease-in-out; - transition: -webkit-transform 0.3s ease-in-out; - transition: transform 0.3s ease-in-out; - transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; + cursor: pointer; + color: #c0c4cc; + font-size: 12px; + -webkit-transform: rotate(0); + transform: rotate(0); + -webkit-transition: -webkit-transform 0.3s ease-in-out; + transition: -webkit-transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; } .el-tree-node__expand-icon.expanded { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } .el-tree-node__expand-icon.is-leaf { - color: transparent; - cursor: default; + color: transparent; + cursor: default; } .el-tree-node__label { - font-size: 14px; + font-size: 14px; } .el-tree-node__loading-icon { - margin-right: 8px; - font-size: 14px; - color: #c0c4cc; + margin-right: 8px; + font-size: 14px; + color: #c0c4cc; } .el-tree-node > .el-tree-node__children { - overflow: hidden; - background-color: transparent; + overflow: hidden; + background-color: transparent; } .el-tree-node.is-expanded > .el-tree-node__children { - display: block; + display: block; } .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content { - background-color: #f0f3fc; + background-color: #f0f7ff; } .el-alert { - width: 100%; - padding: 8px 16px; - margin: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 4px; - position: relative; - background-color: #fff; - overflow: hidden; - opacity: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-transition: opacity 0.2s; - transition: opacity 0.2s; + width: 100%; + padding: 8px 16px; + margin: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 4px; + position: relative; + background-color: #fff; + overflow: hidden; + opacity: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-transition: opacity 0.2s; + transition: opacity 0.2s; } .el-alert.is-light .el-alert__closebtn { - color: #c0c4cc; + color: #c0c4cc; } .el-alert.is-dark .el-alert__closebtn, .el-alert.is-dark .el-alert__description { - color: #fff; + color: #fff; } .el-alert.is-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-alert--success.is-light { - background-color: #f0f9eb; - color: #67c23a; + background-color: #f0f9eb; + color: #67c23a; } .el-alert--success.is-light .el-alert__description { - color: #67c23a; + color: #67c23a; } .el-alert--success.is-dark { - background-color: #67c23a; - color: #fff; + background-color: #67c23a; + color: #fff; } .el-alert--info.is-light { - background-color: #f4f4f5; - color: #909399; + background-color: #f4f4f5; + color: #909399; } .el-alert--info.is-dark { - background-color: #909399; - color: #fff; + background-color: #909399; + color: #fff; } .el-alert--info .el-alert__description { - color: #909399; + color: #909399; } .el-alert--warning.is-light { - background-color: #fdf6ec; - color: #e6a23c; + background-color: #fdf6ec; + color: #e6a23c; } .el-alert--warning.is-light .el-alert__description { - color: #e6a23c; + color: #e6a23c; } .el-alert--warning.is-dark { - background-color: #e6a23c; - color: #fff; + background-color: #e6a23c; + color: #fff; } .el-alert--error.is-light { - background-color: #fef0f0; - color: #f56c6c; + background-color: #fef0f0; + color: #f56c6c; } .el-alert--error.is-light .el-alert__description { - color: #f56c6c; + color: #f56c6c; } .el-alert--error.is-dark { - background-color: #f56c6c; - color: #fff; + background-color: #f56c6c; + color: #fff; } .el-alert__content { - display: table-cell; - padding: 0 8px; + display: table-cell; + padding: 0 8px; } .el-alert__icon { - font-size: 16px; - width: 16px; + font-size: 16px; + width: 16px; } .el-alert__icon.is-big { - font-size: 28px; - width: 28px; + font-size: 28px; + width: 28px; } .el-alert__title { - font-size: 13px; - line-height: 18px; + font-size: 13px; + line-height: 18px; } .el-alert__title.is-bold { - font-weight: 700; + font-weight: 700; } .el-alert .el-alert__description { - font-size: 12px; - margin: 5px 0 0; + font-size: 12px; + margin: 5px 0 0; } .el-alert__closebtn { - font-size: 12px; - opacity: 1; - position: absolute; - top: 12px; - right: 15px; - cursor: pointer; + font-size: 12px; + opacity: 1; + position: absolute; + top: 12px; + right: 15px; + cursor: pointer; } .el-alert-fade-enter, .el-alert-fade-leave-active, .el-loading-fade-enter, .el-loading-fade-leave-active, .el-notification-fade-leave-active { - opacity: 0; + opacity: 0; } .el-alert__closebtn.is-customed { - font-style: normal; - font-size: 13px; - top: 9px; + font-style: normal; + font-size: 13px; + top: 9px; } .el-notification { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 330px; - padding: 14px 26px 14px 13px; - border-radius: 8px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border: 1px solid #ebeef5; - position: fixed; - background-color: #fff; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, - -webkit-transform 0.3s; - transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, - -webkit-transform 0.3s; - transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, - bottom 0.3s; - transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, - bottom 0.3s, -webkit-transform 0.3s; - overflow: hidden; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 330px; + padding: 14px 26px 14px 13px; + border-radius: 8px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border: 1px solid #ebeef5; + position: fixed; + background-color: #fff; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, + -webkit-transform 0.3s; + transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, -webkit-transform 0.3s; + transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s; + transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, + -webkit-transform 0.3s; + overflow: hidden; } .el-notification.right { - right: 16px; + right: 16px; } .el-notification.left { - left: 16px; + left: 16px; } .el-notification__group { - margin-left: 13px; - margin-right: 8px; + margin-left: 13px; + margin-right: 8px; } .el-notification__title { - font-weight: 700; - font-size: 16px; - color: #303133; - margin: 0; + font-weight: 700; + font-size: 16px; + color: #303133; + margin: 0; } .el-notification__content { - font-size: 14px; - line-height: 21px; - margin: 6px 0 0; - color: #606266; - text-align: justify; + font-size: 14px; + line-height: 21px; + margin: 6px 0 0; + color: #606266; + text-align: justify; } .el-notification__content p { - margin: 0; + margin: 0; } .el-notification__icon { - height: 24px; - width: 24px; - font-size: 24px; + height: 24px; + width: 24px; + font-size: 24px; } .el-notification__closeBtn { - position: absolute; - top: 18px; - right: 15px; - cursor: pointer; - color: #909399; - font-size: 16px; + position: absolute; + top: 18px; + right: 15px; + cursor: pointer; + color: #909399; + font-size: 16px; } .el-notification__closeBtn:hover { - color: #606266; + color: #606266; } .el-notification .el-icon-success { - color: #67c23a; + color: #67c23a; } .el-notification .el-icon-error { - color: #f56c6c; + color: #f56c6c; } .el-notification .el-icon-info { - color: #909399; + color: #909399; } .el-notification .el-icon-warning { - color: #e6a23c; + color: #e6a23c; } .el-notification-fade-enter.right { - right: 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); + right: 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); } .el-notification-fade-enter.left { - left: 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); + left: 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); } .el-input-number { - position: relative; - display: inline-block; - width: 180px; - line-height: 38px; + position: relative; + display: inline-block; + width: 180px; + line-height: 38px; } .el-input-number .el-input { - display: block; + display: block; } .el-input-number .el-input__inner { - -webkit-appearance: none; - padding-left: 50px; - padding-right: 50px; - text-align: center; + -webkit-appearance: none; + padding-left: 50px; + padding-right: 50px; + text-align: center; } .el-input-number__decrease, .el-input-number__increase { - position: absolute; - z-index: 1; - top: 1px; - width: 40px; - height: auto; - text-align: center; - background: #f5f7fa; - color: #606266; - cursor: pointer; - font-size: 13px; + position: absolute; + z-index: 1; + top: 1px; + width: 40px; + height: auto; + text-align: center; + background: #f5f7fa; + color: #606266; + cursor: pointer; + font-size: 13px; } .el-input-number__decrease:hover, .el-input-number__increase:hover { - color: #4165d7; + color: #4165d7; } -.el-input-number__decrease:hover:not(.is-disabled) - ~ .el-input - .el-input__inner:not(.is-disabled), -.el-input-number__increase:hover:not(.is-disabled) - ~ .el-input - .el-input__inner:not(.is-disabled) { - border-color: #4165d7; +.el-input-number__decrease:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled), +.el-input-number__increase:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled) { + border-color: #4165d7; } .el-input-number__decrease.is-disabled, .el-input-number__increase.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-input-number__increase { - right: 1px; - border-radius: 0 4px 4px 0; - border-left: 1px solid #dcdfe6; + right: 1px; + border-radius: 0 4px 4px 0; + border-left: 1px solid #dcdfe6; } .el-input-number__decrease { - left: 1px; - border-radius: 4px 0 0 4px; - border-right: 1px solid #dcdfe6; + left: 1px; + border-radius: 4px 0 0 4px; + border-right: 1px solid #dcdfe6; } .el-input-number.is-disabled .el-input-number__decrease, .el-input-number.is-disabled .el-input-number__increase { - border-color: #e4e7ed; - color: #e4e7ed; + border-color: #e4e7ed; + color: #e4e7ed; } .el-input-number.is-disabled .el-input-number__decrease:hover, .el-input-number.is-disabled .el-input-number__increase:hover { - color: #e4e7ed; - cursor: not-allowed; + color: #e4e7ed; + cursor: not-allowed; } .el-input-number--medium { - width: 200px; - line-height: 34px; + width: 200px; + line-height: 34px; } .el-input-number--medium .el-input-number__decrease, .el-input-number--medium .el-input-number__increase { - width: 36px; - font-size: 14px; + width: 36px; + font-size: 14px; } .el-input-number--medium .el-input__inner { - padding-left: 43px; - padding-right: 43px; + padding-left: 43px; + padding-right: 43px; } .el-input-number--small { - width: 130px; - line-height: 30px; + width: 130px; + line-height: 30px; } .el-input-number--small .el-input-number__decrease, .el-input-number--small .el-input-number__increase { - width: 32px; - font-size: 13px; + width: 32px; + font-size: 13px; } .el-input-number--small .el-input-number__decrease [class*="el-icon"], .el-input-number--small .el-input-number__increase [class*="el-icon"] { - -webkit-transform: scale(0.9); - transform: scale(0.9); + -webkit-transform: scale(0.9); + transform: scale(0.9); } .el-input-number--small .el-input__inner { - padding-left: 39px; - padding-right: 39px; + padding-left: 39px; + padding-right: 39px; } .el-input-number--mini { - width: 130px; - line-height: 26px; + width: 130px; + line-height: 26px; } .el-input-number--mini .el-input-number__decrease, .el-input-number--mini .el-input-number__increase { - width: 28px; - font-size: 12px; + width: 28px; + font-size: 12px; } .el-input-number--mini .el-input-number__decrease [class*="el-icon"], .el-input-number--mini .el-input-number__increase [class*="el-icon"] { - -webkit-transform: scale(0.8); - transform: scale(0.8); + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-input-number--mini .el-input__inner { - padding-left: 35px; - padding-right: 35px; + padding-left: 35px; + padding-right: 35px; } .el-input-number.is-without-controls .el-input__inner { - padding-left: 15px; - padding-right: 15px; + padding-left: 15px; + padding-right: 15px; } .el-input-number.is-controls-right .el-input__inner { - padding-left: 15px; - padding-right: 50px; + padding-left: 15px; + padding-right: 50px; } .el-input-number.is-controls-right .el-input-number__decrease, .el-input-number.is-controls-right .el-input-number__increase { - height: auto; - line-height: 19px; -} -.el-input-number.is-controls-right - .el-input-number__decrease - [class*="el-icon"], -.el-input-number.is-controls-right - .el-input-number__increase - [class*="el-icon"] { - -webkit-transform: scale(0.8); - transform: scale(0.8); + height: auto; + line-height: 19px; +} +.el-input-number.is-controls-right .el-input-number__decrease [class*="el-icon"], +.el-input-number.is-controls-right .el-input-number__increase [class*="el-icon"] { + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-input-number.is-controls-right .el-input-number__increase { - border-radius: 0 4px 0 0; - border-bottom: 1px solid #dcdfe6; + border-radius: 0 4px 0 0; + border-bottom: 1px solid #dcdfe6; } .el-input-number.is-controls-right .el-input-number__decrease { - right: 1px; - bottom: 1px; - top: auto; - left: auto; - border-right: none; - border-left: 1px solid #dcdfe6; - border-radius: 0 0 4px; + right: 1px; + bottom: 1px; + top: auto; + left: auto; + border-right: none; + border-left: 1px solid #dcdfe6; + border-radius: 0 0 4px; } .el-input-number.is-controls-right[class*="medium"] [class*="decrease"], .el-input-number.is-controls-right[class*="medium"] [class*="increase"] { - line-height: 17px; + line-height: 17px; } .el-input-number.is-controls-right[class*="small"] [class*="decrease"], .el-input-number.is-controls-right[class*="small"] [class*="increase"] { - line-height: 15px; + line-height: 15px; } .el-input-number.is-controls-right[class*="mini"] [class*="decrease"], .el-input-number.is-controls-right[class*="mini"] [class*="increase"] { - line-height: 13px; + line-height: 13px; } .el-tooltip__popper { - position: absolute; - border-radius: 4px; - padding: 10px; - z-index: 2000; - font-size: 12px; - line-height: 1.2; - min-width: 10px; - word-wrap: break-word; + position: absolute; + border-radius: 4px; + padding: 10px; + z-index: 2000; + font-size: 12px; + line-height: 1.2; + min-width: 10px; + word-wrap: break-word; } .el-tooltip__popper .popper__arrow, .el-tooltip__popper .popper__arrow::after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } .el-tooltip__popper .popper__arrow { - border-width: 6px; + border-width: 6px; } .el-tooltip__popper .popper__arrow::after { - content: " "; - border-width: 5px; + content: " "; + border-width: 5px; } .el-progress-bar__inner::after, .el-row::after, @@ -5308,378 +4381,360 @@ .el-slider::before, .el-slider__button-wrapper::after, .el-upload-cover::after { - content: ""; + content: ""; } .el-tooltip__popper[x-placement^="top"] { - margin-bottom: 12px; + margin-bottom: 12px; } .el-tooltip__popper[x-placement^="top"] .popper__arrow { - bottom: -6px; - border-top-color: #303133; - border-bottom-width: 0; + bottom: -6px; + border-top-color: #303133; + border-bottom-width: 0; } .el-tooltip__popper[x-placement^="top"] .popper__arrow::after { - bottom: 1px; - margin-left: -5px; - border-top-color: #303133; - border-bottom-width: 0; + bottom: 1px; + margin-left: -5px; + border-top-color: #303133; + border-bottom-width: 0; } .el-tooltip__popper[x-placement^="bottom"] { - margin-top: 12px; + margin-top: 12px; } .el-tooltip__popper[x-placement^="bottom"] .popper__arrow { - top: -6px; - border-top-width: 0; - border-bottom-color: #303133; + top: -6px; + border-top-width: 0; + border-bottom-color: #303133; } .el-tooltip__popper[x-placement^="bottom"] .popper__arrow::after { - top: 1px; - margin-left: -5px; - border-top-width: 0; - border-bottom-color: #303133; + top: 1px; + margin-left: -5px; + border-top-width: 0; + border-bottom-color: #303133; } .el-tooltip__popper[x-placement^="right"] { - margin-left: 12px; + margin-left: 12px; } .el-tooltip__popper[x-placement^="right"] .popper__arrow { - left: -6px; - border-right-color: #303133; - border-left-width: 0; + left: -6px; + border-right-color: #303133; + border-left-width: 0; } .el-tooltip__popper[x-placement^="right"] .popper__arrow::after { - bottom: -5px; - left: 1px; - border-right-color: #303133; - border-left-width: 0; + bottom: -5px; + left: 1px; + border-right-color: #303133; + border-left-width: 0; } .el-tooltip__popper[x-placement^="left"] { - margin-right: 12px; + margin-right: 12px; } .el-tooltip__popper[x-placement^="left"] .popper__arrow { - right: -6px; - border-right-width: 0; - border-left-color: #303133; + right: -6px; + border-right-width: 0; + border-left-color: #303133; } .el-tooltip__popper[x-placement^="left"] .popper__arrow::after { - right: 1px; - bottom: -5px; - margin-left: -5px; - border-right-width: 0; - border-left-color: #303133; + right: 1px; + bottom: -5px; + margin-left: -5px; + border-right-width: 0; + border-left-color: #303133; } .el-tooltip__popper.is-dark { - background: #303133; - color: #fff; + background: #303133; + color: #fff; } .el-tooltip__popper.is-light { - background: #fff; - border: 1px solid #303133; + background: #fff; + border: 1px solid #303133; } .el-tooltip__popper.is-light[x-placement^="top"] .popper__arrow { - border-top-color: #303133; + border-top-color: #303133; } .el-tooltip__popper.is-light[x-placement^="top"] .popper__arrow::after { - border-top-color: #fff; + border-top-color: #fff; } .el-tooltip__popper.is-light[x-placement^="bottom"] .popper__arrow { - border-bottom-color: #303133; + border-bottom-color: #303133; } .el-tooltip__popper.is-light[x-placement^="bottom"] .popper__arrow::after { - border-bottom-color: #fff; + border-bottom-color: #fff; } .el-tooltip__popper.is-light[x-placement^="left"] .popper__arrow { - border-left-color: #303133; + border-left-color: #303133; } .el-tooltip__popper.is-light[x-placement^="left"] .popper__arrow::after { - border-left-color: #fff; + border-left-color: #fff; } .el-tooltip__popper.is-light[x-placement^="right"] .popper__arrow { - border-right-color: #303133; + border-right-color: #303133; } .el-tooltip__popper.is-light[x-placement^="right"] .popper__arrow::after { - border-right-color: #fff; + border-right-color: #fff; } .el-slider::after, .el-slider::before { - display: table; + display: table; } .el-slider__button-wrapper .el-tooltip, .el-slider__button-wrapper::after { - vertical-align: middle; - display: inline-block; + vertical-align: middle; + display: inline-block; } .el-slider::after { - clear: both; + clear: both; } .el-slider__runway { - width: 100%; - height: 6px; - margin: 16px 0; - background-color: #e4e7ed; - border-radius: 3px; - position: relative; - cursor: pointer; - vertical-align: middle; + width: 100%; + height: 6px; + margin: 16px 0; + background-color: #e4e7ed; + border-radius: 3px; + position: relative; + cursor: pointer; + vertical-align: middle; } .el-slider__runway.show-input { - margin-right: 160px; - width: auto; + margin-right: 160px; + width: auto; } .el-slider__runway.disabled { - cursor: default; + cursor: default; } .el-slider__runway.disabled .el-slider__bar { - background-color: #c0c4cc; + background-color: #c0c4cc; } .el-slider__runway.disabled .el-slider__button { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-slider__runway.disabled .el-slider__button-wrapper.dragging, .el-slider__runway.disabled .el-slider__button-wrapper.hover, .el-slider__runway.disabled .el-slider__button-wrapper:hover { - cursor: not-allowed; + cursor: not-allowed; } .el-slider__runway.disabled .el-slider__button.dragging, .el-slider__runway.disabled .el-slider__button.hover, .el-slider__runway.disabled .el-slider__button:hover { - -webkit-transform: scale(1); - transform: scale(1); - cursor: not-allowed; + -webkit-transform: scale(1); + transform: scale(1); + cursor: not-allowed; } .el-slider__button-wrapper, .el-slider__stop { - -webkit-transform: translateX(-50%); - position: absolute; + -webkit-transform: translateX(-50%); + position: absolute; } .el-slider__input { - float: right; - margin-top: 3px; - width: 130px; + float: right; + margin-top: 3px; + width: 130px; } .el-slider__input.el-input-number--mini { - margin-top: 5px; + margin-top: 5px; } .el-slider__input.el-input-number--medium { - margin-top: 0; + margin-top: 0; } .el-slider__input.el-input-number--large { - margin-top: -2px; + margin-top: -2px; } .el-slider__bar { - height: 6px; - background-color: #4165d7; - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - position: absolute; + height: 6px; + background-color: #4165d7; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + position: absolute; } .el-slider__button-wrapper { - height: 36px; - width: 36px; - z-index: 1001; - top: -15px; - transform: translateX(-50%); - background-color: transparent; - text-align: center; - user-select: none; - line-height: normal; + height: 36px; + width: 36px; + z-index: 1001; + top: -15px; + transform: translateX(-50%); + background-color: transparent; + text-align: center; + user-select: none; + line-height: normal; } .el-slider__button-wrapper::after { - height: 100%; + height: 100%; } .el-slider__button-wrapper.hover, .el-slider__button-wrapper:hover { - cursor: -webkit-grab; - cursor: grab; + cursor: -webkit-grab; + cursor: grab; } .el-slider__button-wrapper.dragging { - cursor: -webkit-grabbing; - cursor: grabbing; + cursor: -webkit-grabbing; + cursor: grabbing; } .el-slider__button { - width: 16px; - height: 16px; - border: 2px solid #4165d7; - background-color: #fff; - border-radius: 50%; - -webkit-transition: 0.2s; - transition: 0.2s; - user-select: none; + width: 16px; + height: 16px; + border: 2px solid #4165d7; + background-color: #fff; + border-radius: 50%; + -webkit-transition: 0.2s; + transition: 0.2s; + user-select: none; } .el-image-viewer__btn, .el-step__icon-inner { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; } .el-slider__button.dragging, .el-slider__button.hover, .el-slider__button:hover { - -webkit-transform: scale(1.2); - transform: scale(1.2); + -webkit-transform: scale(1.2); + transform: scale(1.2); } .el-slider__button.hover, .el-slider__button:hover { - cursor: -webkit-grab; - cursor: grab; + cursor: -webkit-grab; + cursor: grab; } .el-slider__button.dragging { - cursor: -webkit-grabbing; - cursor: grabbing; + cursor: -webkit-grabbing; + cursor: grabbing; } .el-slider__stop { - height: 6px; - width: 6px; - border-radius: 100%; - background-color: #fff; - transform: translateX(-50%); + height: 6px; + width: 6px; + border-radius: 100%; + background-color: #fff; + transform: translateX(-50%); } .el-slider__marks { - top: 0; - left: 12px; - width: 18px; - height: 100%; + top: 0; + left: 12px; + width: 18px; + height: 100%; } .el-slider__marks-text { - position: absolute; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - font-size: 14px; - color: #909399; - margin-top: 15px; + position: absolute; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + font-size: 14px; + color: #909399; + margin-top: 15px; } .el-slider.is-vertical { - position: relative; + position: relative; } .el-slider.is-vertical .el-slider__runway { - width: 6px; - height: 100%; - margin: 0 16px; + width: 6px; + height: 100%; + margin: 0 16px; } .el-slider.is-vertical .el-slider__bar { - width: 6px; - height: auto; - border-radius: 0 0 3px 3px; + width: 6px; + height: auto; + border-radius: 0 0 3px 3px; } .el-slider.is-vertical .el-slider__button-wrapper { - top: auto; - left: -15px; - -webkit-transform: translateY(50%); - transform: translateY(50%); + top: auto; + left: -15px; + -webkit-transform: translateY(50%); + transform: translateY(50%); } .el-slider.is-vertical .el-slider__stop { - -webkit-transform: translateY(50%); - transform: translateY(50%); + -webkit-transform: translateY(50%); + transform: translateY(50%); } .el-slider.is-vertical.el-slider--with-input { - padding-bottom: 58px; + padding-bottom: 58px; } .el-slider.is-vertical.el-slider--with-input .el-slider__input { - overflow: visible; - float: none; - position: absolute; - bottom: 22px; - width: 36px; - margin-top: 15px; -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input__inner { - text-align: center; - padding-left: 5px; - padding-right: 5px; -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__decrease, -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__increase { - top: 32px; - margin-top: -1px; - border: 1px solid #dcdfe6; - line-height: 20px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__decrease { - width: 18px; - right: 18px; - border-bottom-left-radius: 4px; + overflow: visible; + float: none; + position: absolute; + bottom: 22px; + width: 36px; + margin-top: 15px; +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input__inner { + text-align: center; + padding-left: 5px; + padding-right: 5px; +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease, +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase { + top: 32px; + margin-top: -1px; + border: 1px solid #dcdfe6; + line-height: 20px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease { + width: 18px; + right: 18px; + border-bottom-left-radius: 4px; +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase { + width: 19px; + border-bottom-right-radius: 4px; } .el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__increase { - width: 19px; - border-bottom-right-radius: 4px; + .el-slider__input + .el-input-number__increase + ~ .el-input + .el-input__inner { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__increase - ~ .el-input - .el-input__inner { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; +.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__decrease, +.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__increase { + border-color: #c0c4cc; } -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:hover - .el-input-number__decrease, -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:hover - .el-input-number__increase { - border-color: #c0c4cc; -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:active - .el-input-number__decrease, -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:active - .el-input-number__increase { - border-color: #4165d7; +.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease, +.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase { + border-color: #4165d7; } .el-slider.is-vertical .el-slider__marks-text { - margin-top: 0; - left: 15px; - -webkit-transform: translateY(50%); - transform: translateY(50%); + margin-top: 0; + left: 15px; + -webkit-transform: translateY(50%); + transform: translateY(50%); } .el-loading-parent--relative { - position: relative !important; + position: relative !important; } .el-loading-parent--hidden { - overflow: hidden !important; + overflow: hidden !important; } .el-loading-mask { - position: absolute; - z-index: 2000; - background-color: rgba(255, 255, 255, 0.9); - margin: 0; - top: 0; - right: 0; - bottom: 0; - left: 0; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; + position: absolute; + z-index: 2000; + background-color: rgba(255, 255, 255, 0.9); + margin: 0; + top: 0; + right: 0; + bottom: 0; + left: 0; + -webkit-transition: opacity 0.3s; + transition: opacity 0.3s; } .el-loading-mask.is-fullscreen { - position: fixed; + position: fixed; } .el-loading-mask.is-fullscreen .el-loading-spinner { - margin-top: -25px; + margin-top: -25px; } .el-loading-mask.is-fullscreen .el-loading-spinner .circular { - height: 50px; - width: 50px; + height: 50px; + width: 50px; } .el-loading-spinner { - top: 50%; - margin-top: -21px; - width: 100%; - text-align: center; - position: absolute; + top: 50%; + margin-top: -21px; + width: 100%; + text-align: center; + position: absolute; } .el-col-pull-0, .el-col-pull-1, @@ -5731,3620 +4786,3607 @@ .el-col-push-8, .el-col-push-9, .el-row { - position: relative; + position: relative; } .el-loading-spinner .el-loading-text { - color: #4165d7; - margin: 3px 0; - font-size: 14px; + color: #4165d7; + margin: 3px 0; + font-size: 14px; } .el-loading-spinner .circular { - height: 42px; - width: 42px; - -webkit-animation: loading-rotate 2s linear infinite; - animation: loading-rotate 2s linear infinite; + height: 42px; + width: 42px; + -webkit-animation: loading-rotate 2s linear infinite; + animation: loading-rotate 2s linear infinite; } .el-loading-spinner .path { - -webkit-animation: loading-dash 1.5s ease-in-out infinite; - animation: loading-dash 1.5s ease-in-out infinite; - stroke-dasharray: 90, 150; - stroke-dashoffset: 0; - stroke-width: 2; - stroke: #4165d7; - stroke-linecap: round; + -webkit-animation: loading-dash 1.5s ease-in-out infinite; + animation: loading-dash 1.5s ease-in-out infinite; + stroke-dasharray: 90, 150; + stroke-dashoffset: 0; + stroke-width: 2; + stroke: #4165d7; + stroke-linecap: round; } .el-loading-spinner i { - color: #4165d7; + color: #4165d7; } @-webkit-keyframes loading-rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes loading-rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @-webkit-keyframes loading-dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -40px; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -120px; - } + 0% { + stroke-dasharray: 1, 200; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -40px; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -120px; + } } @keyframes loading-dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -40px; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -120px; - } + 0% { + stroke-dasharray: 1, 200; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -40px; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -120px; + } } .el-row { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-row::after, .el-row::before { - display: table; + display: table; } .el-row::after { - clear: both; + clear: both; } .el-row--flex { - display: -webkit-box; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } .el-col-0, .el-row--flex:after, .el-row--flex:before { - display: none; + display: none; } .el-row--flex.is-justify-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-row--flex.is-justify-end { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; } .el-row--flex.is-justify-space-between { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } .el-row--flex.is-justify-space-around { - -ms-flex-pack: distribute; - justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; } .el-row--flex.is-align-middle { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-row--flex.is-align-bottom { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; } [class*="el-col-"] { - float: left; - -webkit-box-sizing: border-box; - box-sizing: border-box; + float: left; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-upload--picture-card, .el-upload-dragger { - -webkit-box-sizing: border-box; - cursor: pointer; + -webkit-box-sizing: border-box; + cursor: pointer; } .el-col-0 { - width: 0%; + width: 0%; } .el-col-offset-0 { - margin-left: 0; + margin-left: 0; } .el-col-pull-0 { - right: 0; + right: 0; } .el-col-push-0 { - left: 0; + left: 0; } .el-col-1 { - width: 4.16667%; + width: 4.16667%; } .el-col-offset-1 { - margin-left: 4.16667%; + margin-left: 4.16667%; } .el-col-pull-1 { - right: 4.16667%; + right: 4.16667%; } .el-col-push-1 { - left: 4.16667%; + left: 4.16667%; } .el-col-2 { - width: 8.33333%; + width: 8.33333%; } .el-col-offset-2 { - margin-left: 8.33333%; + margin-left: 8.33333%; } .el-col-pull-2 { - right: 8.33333%; + right: 8.33333%; } .el-col-push-2 { - left: 8.33333%; + left: 8.33333%; } .el-col-3 { - width: 12.5%; + width: 12.5%; } .el-col-offset-3 { - margin-left: 12.5%; + margin-left: 12.5%; } .el-col-pull-3 { - right: 12.5%; + right: 12.5%; } .el-col-push-3 { - left: 12.5%; + left: 12.5%; } .el-col-4 { - width: 16.66667%; + width: 16.66667%; } .el-col-offset-4 { - margin-left: 16.66667%; + margin-left: 16.66667%; } .el-col-pull-4 { - right: 16.66667%; + right: 16.66667%; } .el-col-push-4 { - left: 16.66667%; + left: 16.66667%; } .el-col-5 { - width: 20.83333%; + width: 20.83333%; } .el-col-offset-5 { - margin-left: 20.83333%; + margin-left: 20.83333%; } .el-col-pull-5 { - right: 20.83333%; + right: 20.83333%; } .el-col-push-5 { - left: 20.83333%; + left: 20.83333%; } .el-col-6 { - width: 25%; + width: 25%; } .el-col-offset-6 { - margin-left: 25%; + margin-left: 25%; } .el-col-pull-6 { - right: 25%; + right: 25%; } .el-col-push-6 { - left: 25%; + left: 25%; } .el-col-7 { - width: 29.16667%; + width: 29.16667%; } .el-col-offset-7 { - margin-left: 29.16667%; + margin-left: 29.16667%; } .el-col-pull-7 { - right: 29.16667%; + right: 29.16667%; } .el-col-push-7 { - left: 29.16667%; + left: 29.16667%; } .el-col-8 { - width: 33.33333%; + width: 33.33333%; } .el-col-offset-8 { - margin-left: 33.33333%; + margin-left: 33.33333%; } .el-col-pull-8 { - right: 33.33333%; + right: 33.33333%; } .el-col-push-8 { - left: 33.33333%; + left: 33.33333%; } .el-col-9 { - width: 37.5%; + width: 37.5%; } .el-col-offset-9 { - margin-left: 37.5%; + margin-left: 37.5%; } .el-col-pull-9 { - right: 37.5%; + right: 37.5%; } .el-col-push-9 { - left: 37.5%; + left: 37.5%; } .el-col-10 { - width: 41.66667%; + width: 41.66667%; } .el-col-offset-10 { - margin-left: 41.66667%; + margin-left: 41.66667%; } .el-col-pull-10 { - right: 41.66667%; + right: 41.66667%; } .el-col-push-10 { - left: 41.66667%; + left: 41.66667%; } .el-col-11 { - width: 45.83333%; + width: 45.83333%; } .el-col-offset-11 { - margin-left: 45.83333%; + margin-left: 45.83333%; } .el-col-pull-11 { - right: 45.83333%; + right: 45.83333%; } .el-col-push-11 { - left: 45.83333%; + left: 45.83333%; } .el-col-12 { - width: 50%; + width: 50%; } .el-col-offset-12 { - margin-left: 50%; + margin-left: 50%; } .el-col-pull-12 { - position: relative; - right: 50%; + position: relative; + right: 50%; } .el-col-push-12 { - left: 50%; + left: 50%; } .el-col-13 { - width: 54.16667%; + width: 54.16667%; } .el-col-offset-13 { - margin-left: 54.16667%; + margin-left: 54.16667%; } .el-col-pull-13 { - right: 54.16667%; + right: 54.16667%; } .el-col-push-13 { - left: 54.16667%; + left: 54.16667%; } .el-col-14 { - width: 58.33333%; + width: 58.33333%; } .el-col-offset-14 { - margin-left: 58.33333%; + margin-left: 58.33333%; } .el-col-pull-14 { - right: 58.33333%; + right: 58.33333%; } .el-col-push-14 { - left: 58.33333%; + left: 58.33333%; } .el-col-15 { - width: 62.5%; + width: 62.5%; } .el-col-offset-15 { - margin-left: 62.5%; + margin-left: 62.5%; } .el-col-pull-15 { - right: 62.5%; + right: 62.5%; } .el-col-push-15 { - left: 62.5%; + left: 62.5%; } .el-col-16 { - width: 66.66667%; + width: 66.66667%; } .el-col-offset-16 { - margin-left: 66.66667%; + margin-left: 66.66667%; } .el-col-pull-16 { - right: 66.66667%; + right: 66.66667%; } .el-col-push-16 { - left: 66.66667%; + left: 66.66667%; } .el-col-17 { - width: 70.83333%; + width: 70.83333%; } .el-col-offset-17 { - margin-left: 70.83333%; + margin-left: 70.83333%; } .el-col-pull-17 { - right: 70.83333%; + right: 70.83333%; } .el-col-push-17 { - left: 70.83333%; + left: 70.83333%; } .el-col-18 { - width: 75%; + width: 75%; } .el-col-offset-18 { - margin-left: 75%; + margin-left: 75%; } .el-col-pull-18 { - right: 75%; + right: 75%; } .el-col-push-18 { - left: 75%; + left: 75%; } .el-col-19 { - width: 79.16667%; + width: 79.16667%; } .el-col-offset-19 { - margin-left: 79.16667%; + margin-left: 79.16667%; } .el-col-pull-19 { - right: 79.16667%; + right: 79.16667%; } .el-col-push-19 { - left: 79.16667%; + left: 79.16667%; } .el-col-20 { - width: 83.33333%; + width: 83.33333%; } .el-col-offset-20 { - margin-left: 83.33333%; + margin-left: 83.33333%; } .el-col-pull-20 { - right: 83.33333%; + right: 83.33333%; } .el-col-push-20 { - left: 83.33333%; + left: 83.33333%; } .el-col-21 { - width: 87.5%; + width: 87.5%; } .el-col-offset-21 { - margin-left: 87.5%; + margin-left: 87.5%; } .el-col-pull-21 { - right: 87.5%; + right: 87.5%; } .el-col-push-21 { - left: 87.5%; + left: 87.5%; } .el-col-22 { - width: 91.66667%; + width: 91.66667%; } .el-col-offset-22 { - margin-left: 91.66667%; + margin-left: 91.66667%; } .el-col-pull-22 { - right: 91.66667%; + right: 91.66667%; } .el-col-push-22 { - left: 91.66667%; + left: 91.66667%; } .el-col-23 { - width: 95.83333%; + width: 95.83333%; } .el-col-offset-23 { - margin-left: 95.83333%; + margin-left: 95.83333%; } .el-col-pull-23 { - right: 95.83333%; + right: 95.83333%; } .el-col-push-23 { - left: 95.83333%; + left: 95.83333%; } .el-col-24 { - width: 100%; + width: 100%; } .el-col-offset-24 { - margin-left: 100%; + margin-left: 100%; } .el-col-pull-24 { - right: 100%; + right: 100%; } .el-col-push-24 { - left: 100%; + left: 100%; } @media only screen and (max-width: 767px) { - .el-col-xs-0 { - display: none; - width: 0%; - } - .el-col-xs-offset-0 { - margin-left: 0; - } - .el-col-xs-pull-0 { - position: relative; - right: 0; - } - .el-col-xs-push-0 { - position: relative; - left: 0; - } - .el-col-xs-1 { - width: 4.16667%; - } - .el-col-xs-offset-1 { - margin-left: 4.16667%; - } - .el-col-xs-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-xs-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-xs-2 { - width: 8.33333%; - } - .el-col-xs-offset-2 { - margin-left: 8.33333%; - } - .el-col-xs-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-xs-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-xs-3 { - width: 12.5%; - } - .el-col-xs-offset-3 { - margin-left: 12.5%; - } - .el-col-xs-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-xs-push-3 { - position: relative; - left: 12.5%; - } - .el-col-xs-4 { - width: 16.66667%; - } - .el-col-xs-offset-4 { - margin-left: 16.66667%; - } - .el-col-xs-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-xs-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-xs-5 { - width: 20.83333%; - } - .el-col-xs-offset-5 { - margin-left: 20.83333%; - } - .el-col-xs-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-xs-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-xs-6 { - width: 25%; - } - .el-col-xs-offset-6 { - margin-left: 25%; - } - .el-col-xs-pull-6 { - position: relative; - right: 25%; - } - .el-col-xs-push-6 { - position: relative; - left: 25%; - } - .el-col-xs-7 { - width: 29.16667%; - } - .el-col-xs-offset-7 { - margin-left: 29.16667%; - } - .el-col-xs-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-xs-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-xs-8 { - width: 33.33333%; - } - .el-col-xs-offset-8 { - margin-left: 33.33333%; - } - .el-col-xs-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-xs-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-xs-9 { - width: 37.5%; - } - .el-col-xs-offset-9 { - margin-left: 37.5%; - } - .el-col-xs-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-xs-push-9 { - position: relative; - left: 37.5%; - } - .el-col-xs-10 { - width: 41.66667%; - } - .el-col-xs-offset-10 { - margin-left: 41.66667%; - } - .el-col-xs-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-xs-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-xs-11 { - width: 45.83333%; - } - .el-col-xs-offset-11 { - margin-left: 45.83333%; - } - .el-col-xs-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-xs-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-xs-12 { - width: 50%; - } - .el-col-xs-offset-12 { - margin-left: 50%; - } - .el-col-xs-pull-12 { - position: relative; - right: 50%; - } - .el-col-xs-push-12 { - position: relative; - left: 50%; - } - .el-col-xs-13 { - width: 54.16667%; - } - .el-col-xs-offset-13 { - margin-left: 54.16667%; - } - .el-col-xs-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-xs-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-xs-14 { - width: 58.33333%; - } - .el-col-xs-offset-14 { - margin-left: 58.33333%; - } - .el-col-xs-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-xs-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-xs-15 { - width: 62.5%; - } - .el-col-xs-offset-15 { - margin-left: 62.5%; - } - .el-col-xs-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-xs-push-15 { - position: relative; - left: 62.5%; - } - .el-col-xs-16 { - width: 66.66667%; - } - .el-col-xs-offset-16 { - margin-left: 66.66667%; - } - .el-col-xs-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-xs-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-xs-17 { - width: 70.83333%; - } - .el-col-xs-offset-17 { - margin-left: 70.83333%; - } - .el-col-xs-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-xs-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-xs-18 { - width: 75%; - } - .el-col-xs-offset-18 { - margin-left: 75%; - } - .el-col-xs-pull-18 { - position: relative; - right: 75%; - } - .el-col-xs-push-18 { - position: relative; - left: 75%; - } - .el-col-xs-19 { - width: 79.16667%; - } - .el-col-xs-offset-19 { - margin-left: 79.16667%; - } - .el-col-xs-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-xs-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-xs-20 { - width: 83.33333%; - } - .el-col-xs-offset-20 { - margin-left: 83.33333%; - } - .el-col-xs-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-xs-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-xs-21 { - width: 87.5%; - } - .el-col-xs-offset-21 { - margin-left: 87.5%; - } - .el-col-xs-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-xs-push-21 { - position: relative; - left: 87.5%; - } - .el-col-xs-22 { - width: 91.66667%; - } - .el-col-xs-offset-22 { - margin-left: 91.66667%; - } - .el-col-xs-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-xs-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-xs-23 { - width: 95.83333%; - } - .el-col-xs-offset-23 { - margin-left: 95.83333%; - } - .el-col-xs-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-xs-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-xs-24 { - width: 100%; - } - .el-col-xs-offset-24 { - margin-left: 100%; - } - .el-col-xs-pull-24 { - position: relative; - right: 100%; - } - .el-col-xs-push-24 { - position: relative; - left: 100%; - } + .el-col-xs-0 { + display: none; + width: 0%; + } + .el-col-xs-offset-0 { + margin-left: 0; + } + .el-col-xs-pull-0 { + position: relative; + right: 0; + } + .el-col-xs-push-0 { + position: relative; + left: 0; + } + .el-col-xs-1 { + width: 4.16667%; + } + .el-col-xs-offset-1 { + margin-left: 4.16667%; + } + .el-col-xs-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-xs-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-xs-2 { + width: 8.33333%; + } + .el-col-xs-offset-2 { + margin-left: 8.33333%; + } + .el-col-xs-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-xs-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-xs-3 { + width: 12.5%; + } + .el-col-xs-offset-3 { + margin-left: 12.5%; + } + .el-col-xs-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-xs-push-3 { + position: relative; + left: 12.5%; + } + .el-col-xs-4 { + width: 16.66667%; + } + .el-col-xs-offset-4 { + margin-left: 16.66667%; + } + .el-col-xs-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-xs-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-xs-5 { + width: 20.83333%; + } + .el-col-xs-offset-5 { + margin-left: 20.83333%; + } + .el-col-xs-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-xs-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-xs-6 { + width: 25%; + } + .el-col-xs-offset-6 { + margin-left: 25%; + } + .el-col-xs-pull-6 { + position: relative; + right: 25%; + } + .el-col-xs-push-6 { + position: relative; + left: 25%; + } + .el-col-xs-7 { + width: 29.16667%; + } + .el-col-xs-offset-7 { + margin-left: 29.16667%; + } + .el-col-xs-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-xs-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-xs-8 { + width: 33.33333%; + } + .el-col-xs-offset-8 { + margin-left: 33.33333%; + } + .el-col-xs-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-xs-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-xs-9 { + width: 37.5%; + } + .el-col-xs-offset-9 { + margin-left: 37.5%; + } + .el-col-xs-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-xs-push-9 { + position: relative; + left: 37.5%; + } + .el-col-xs-10 { + width: 41.66667%; + } + .el-col-xs-offset-10 { + margin-left: 41.66667%; + } + .el-col-xs-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-xs-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-xs-11 { + width: 45.83333%; + } + .el-col-xs-offset-11 { + margin-left: 45.83333%; + } + .el-col-xs-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-xs-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-xs-12 { + width: 50%; + } + .el-col-xs-offset-12 { + margin-left: 50%; + } + .el-col-xs-pull-12 { + position: relative; + right: 50%; + } + .el-col-xs-push-12 { + position: relative; + left: 50%; + } + .el-col-xs-13 { + width: 54.16667%; + } + .el-col-xs-offset-13 { + margin-left: 54.16667%; + } + .el-col-xs-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-xs-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-xs-14 { + width: 58.33333%; + } + .el-col-xs-offset-14 { + margin-left: 58.33333%; + } + .el-col-xs-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-xs-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-xs-15 { + width: 62.5%; + } + .el-col-xs-offset-15 { + margin-left: 62.5%; + } + .el-col-xs-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-xs-push-15 { + position: relative; + left: 62.5%; + } + .el-col-xs-16 { + width: 66.66667%; + } + .el-col-xs-offset-16 { + margin-left: 66.66667%; + } + .el-col-xs-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-xs-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-xs-17 { + width: 70.83333%; + } + .el-col-xs-offset-17 { + margin-left: 70.83333%; + } + .el-col-xs-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-xs-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-xs-18 { + width: 75%; + } + .el-col-xs-offset-18 { + margin-left: 75%; + } + .el-col-xs-pull-18 { + position: relative; + right: 75%; + } + .el-col-xs-push-18 { + position: relative; + left: 75%; + } + .el-col-xs-19 { + width: 79.16667%; + } + .el-col-xs-offset-19 { + margin-left: 79.16667%; + } + .el-col-xs-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-xs-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-xs-20 { + width: 83.33333%; + } + .el-col-xs-offset-20 { + margin-left: 83.33333%; + } + .el-col-xs-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-xs-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-xs-21 { + width: 87.5%; + } + .el-col-xs-offset-21 { + margin-left: 87.5%; + } + .el-col-xs-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-xs-push-21 { + position: relative; + left: 87.5%; + } + .el-col-xs-22 { + width: 91.66667%; + } + .el-col-xs-offset-22 { + margin-left: 91.66667%; + } + .el-col-xs-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-xs-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-xs-23 { + width: 95.83333%; + } + .el-col-xs-offset-23 { + margin-left: 95.83333%; + } + .el-col-xs-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-xs-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-xs-24 { + width: 100%; + } + .el-col-xs-offset-24 { + margin-left: 100%; + } + .el-col-xs-pull-24 { + position: relative; + right: 100%; + } + .el-col-xs-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 768px) { - .el-col-sm-0 { - display: none; - width: 0%; - } - .el-col-sm-offset-0 { - margin-left: 0; - } - .el-col-sm-pull-0 { - position: relative; - right: 0; - } - .el-col-sm-push-0 { - position: relative; - left: 0; - } - .el-col-sm-1 { - width: 4.16667%; - } - .el-col-sm-offset-1 { - margin-left: 4.16667%; - } - .el-col-sm-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-sm-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-sm-2 { - width: 8.33333%; - } - .el-col-sm-offset-2 { - margin-left: 8.33333%; - } - .el-col-sm-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-sm-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-sm-3 { - width: 12.5%; - } - .el-col-sm-offset-3 { - margin-left: 12.5%; - } - .el-col-sm-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-sm-push-3 { - position: relative; - left: 12.5%; - } - .el-col-sm-4 { - width: 16.66667%; - } - .el-col-sm-offset-4 { - margin-left: 16.66667%; - } - .el-col-sm-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-sm-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-sm-5 { - width: 20.83333%; - } - .el-col-sm-offset-5 { - margin-left: 20.83333%; - } - .el-col-sm-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-sm-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-sm-6 { - width: 25%; - } - .el-col-sm-offset-6 { - margin-left: 25%; - } - .el-col-sm-pull-6 { - position: relative; - right: 25%; - } - .el-col-sm-push-6 { - position: relative; - left: 25%; - } - .el-col-sm-7 { - width: 29.16667%; - } - .el-col-sm-offset-7 { - margin-left: 29.16667%; - } - .el-col-sm-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-sm-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-sm-8 { - width: 33.33333%; - } - .el-col-sm-offset-8 { - margin-left: 33.33333%; - } - .el-col-sm-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-sm-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-sm-9 { - width: 37.5%; - } - .el-col-sm-offset-9 { - margin-left: 37.5%; - } - .el-col-sm-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-sm-push-9 { - position: relative; - left: 37.5%; - } - .el-col-sm-10 { - width: 41.66667%; - } - .el-col-sm-offset-10 { - margin-left: 41.66667%; - } - .el-col-sm-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-sm-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-sm-11 { - width: 45.83333%; - } - .el-col-sm-offset-11 { - margin-left: 45.83333%; - } - .el-col-sm-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-sm-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-sm-12 { - width: 50%; - } - .el-col-sm-offset-12 { - margin-left: 50%; - } - .el-col-sm-pull-12 { - position: relative; - right: 50%; - } - .el-col-sm-push-12 { - position: relative; - left: 50%; - } - .el-col-sm-13 { - width: 54.16667%; - } - .el-col-sm-offset-13 { - margin-left: 54.16667%; - } - .el-col-sm-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-sm-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-sm-14 { - width: 58.33333%; - } - .el-col-sm-offset-14 { - margin-left: 58.33333%; - } - .el-col-sm-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-sm-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-sm-15 { - width: 62.5%; - } - .el-col-sm-offset-15 { - margin-left: 62.5%; - } - .el-col-sm-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-sm-push-15 { - position: relative; - left: 62.5%; - } - .el-col-sm-16 { - width: 66.66667%; - } - .el-col-sm-offset-16 { - margin-left: 66.66667%; - } - .el-col-sm-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-sm-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-sm-17 { - width: 70.83333%; - } - .el-col-sm-offset-17 { - margin-left: 70.83333%; - } - .el-col-sm-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-sm-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-sm-18 { - width: 75%; - } - .el-col-sm-offset-18 { - margin-left: 75%; - } - .el-col-sm-pull-18 { - position: relative; - right: 75%; - } - .el-col-sm-push-18 { - position: relative; - left: 75%; - } - .el-col-sm-19 { - width: 79.16667%; - } - .el-col-sm-offset-19 { - margin-left: 79.16667%; - } - .el-col-sm-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-sm-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-sm-20 { - width: 83.33333%; - } - .el-col-sm-offset-20 { - margin-left: 83.33333%; - } - .el-col-sm-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-sm-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-sm-21 { - width: 87.5%; - } - .el-col-sm-offset-21 { - margin-left: 87.5%; - } - .el-col-sm-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-sm-push-21 { - position: relative; - left: 87.5%; - } - .el-col-sm-22 { - width: 91.66667%; - } - .el-col-sm-offset-22 { - margin-left: 91.66667%; - } - .el-col-sm-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-sm-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-sm-23 { - width: 95.83333%; - } - .el-col-sm-offset-23 { - margin-left: 95.83333%; - } - .el-col-sm-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-sm-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-sm-24 { - width: 100%; - } - .el-col-sm-offset-24 { - margin-left: 100%; - } - .el-col-sm-pull-24 { - position: relative; - right: 100%; - } - .el-col-sm-push-24 { - position: relative; - left: 100%; - } + .el-col-sm-0 { + display: none; + width: 0%; + } + .el-col-sm-offset-0 { + margin-left: 0; + } + .el-col-sm-pull-0 { + position: relative; + right: 0; + } + .el-col-sm-push-0 { + position: relative; + left: 0; + } + .el-col-sm-1 { + width: 4.16667%; + } + .el-col-sm-offset-1 { + margin-left: 4.16667%; + } + .el-col-sm-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-sm-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-sm-2 { + width: 8.33333%; + } + .el-col-sm-offset-2 { + margin-left: 8.33333%; + } + .el-col-sm-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-sm-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-sm-3 { + width: 12.5%; + } + .el-col-sm-offset-3 { + margin-left: 12.5%; + } + .el-col-sm-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-sm-push-3 { + position: relative; + left: 12.5%; + } + .el-col-sm-4 { + width: 16.66667%; + } + .el-col-sm-offset-4 { + margin-left: 16.66667%; + } + .el-col-sm-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-sm-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-sm-5 { + width: 20.83333%; + } + .el-col-sm-offset-5 { + margin-left: 20.83333%; + } + .el-col-sm-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-sm-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-sm-6 { + width: 25%; + } + .el-col-sm-offset-6 { + margin-left: 25%; + } + .el-col-sm-pull-6 { + position: relative; + right: 25%; + } + .el-col-sm-push-6 { + position: relative; + left: 25%; + } + .el-col-sm-7 { + width: 29.16667%; + } + .el-col-sm-offset-7 { + margin-left: 29.16667%; + } + .el-col-sm-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-sm-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-sm-8 { + width: 33.33333%; + } + .el-col-sm-offset-8 { + margin-left: 33.33333%; + } + .el-col-sm-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-sm-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-sm-9 { + width: 37.5%; + } + .el-col-sm-offset-9 { + margin-left: 37.5%; + } + .el-col-sm-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-sm-push-9 { + position: relative; + left: 37.5%; + } + .el-col-sm-10 { + width: 41.66667%; + } + .el-col-sm-offset-10 { + margin-left: 41.66667%; + } + .el-col-sm-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-sm-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-sm-11 { + width: 45.83333%; + } + .el-col-sm-offset-11 { + margin-left: 45.83333%; + } + .el-col-sm-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-sm-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-sm-12 { + width: 50%; + } + .el-col-sm-offset-12 { + margin-left: 50%; + } + .el-col-sm-pull-12 { + position: relative; + right: 50%; + } + .el-col-sm-push-12 { + position: relative; + left: 50%; + } + .el-col-sm-13 { + width: 54.16667%; + } + .el-col-sm-offset-13 { + margin-left: 54.16667%; + } + .el-col-sm-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-sm-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-sm-14 { + width: 58.33333%; + } + .el-col-sm-offset-14 { + margin-left: 58.33333%; + } + .el-col-sm-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-sm-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-sm-15 { + width: 62.5%; + } + .el-col-sm-offset-15 { + margin-left: 62.5%; + } + .el-col-sm-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-sm-push-15 { + position: relative; + left: 62.5%; + } + .el-col-sm-16 { + width: 66.66667%; + } + .el-col-sm-offset-16 { + margin-left: 66.66667%; + } + .el-col-sm-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-sm-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-sm-17 { + width: 70.83333%; + } + .el-col-sm-offset-17 { + margin-left: 70.83333%; + } + .el-col-sm-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-sm-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-sm-18 { + width: 75%; + } + .el-col-sm-offset-18 { + margin-left: 75%; + } + .el-col-sm-pull-18 { + position: relative; + right: 75%; + } + .el-col-sm-push-18 { + position: relative; + left: 75%; + } + .el-col-sm-19 { + width: 79.16667%; + } + .el-col-sm-offset-19 { + margin-left: 79.16667%; + } + .el-col-sm-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-sm-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-sm-20 { + width: 83.33333%; + } + .el-col-sm-offset-20 { + margin-left: 83.33333%; + } + .el-col-sm-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-sm-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-sm-21 { + width: 87.5%; + } + .el-col-sm-offset-21 { + margin-left: 87.5%; + } + .el-col-sm-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-sm-push-21 { + position: relative; + left: 87.5%; + } + .el-col-sm-22 { + width: 91.66667%; + } + .el-col-sm-offset-22 { + margin-left: 91.66667%; + } + .el-col-sm-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-sm-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-sm-23 { + width: 95.83333%; + } + .el-col-sm-offset-23 { + margin-left: 95.83333%; + } + .el-col-sm-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-sm-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-sm-24 { + width: 100%; + } + .el-col-sm-offset-24 { + margin-left: 100%; + } + .el-col-sm-pull-24 { + position: relative; + right: 100%; + } + .el-col-sm-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 992px) { - .el-col-md-0 { - display: none; - width: 0%; - } - .el-col-md-offset-0 { - margin-left: 0; - } - .el-col-md-pull-0 { - position: relative; - right: 0; - } - .el-col-md-push-0 { - position: relative; - left: 0; - } - .el-col-md-1 { - width: 4.16667%; - } - .el-col-md-offset-1 { - margin-left: 4.16667%; - } - .el-col-md-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-md-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-md-2 { - width: 8.33333%; - } - .el-col-md-offset-2 { - margin-left: 8.33333%; - } - .el-col-md-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-md-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-md-3 { - width: 12.5%; - } - .el-col-md-offset-3 { - margin-left: 12.5%; - } - .el-col-md-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-md-push-3 { - position: relative; - left: 12.5%; - } - .el-col-md-4 { - width: 16.66667%; - } - .el-col-md-offset-4 { - margin-left: 16.66667%; - } - .el-col-md-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-md-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-md-5 { - width: 20.83333%; - } - .el-col-md-offset-5 { - margin-left: 20.83333%; - } - .el-col-md-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-md-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-md-6 { - width: 25%; - } - .el-col-md-offset-6 { - margin-left: 25%; - } - .el-col-md-pull-6 { - position: relative; - right: 25%; - } - .el-col-md-push-6 { - position: relative; - left: 25%; - } - .el-col-md-7 { - width: 29.16667%; - } - .el-col-md-offset-7 { - margin-left: 29.16667%; - } - .el-col-md-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-md-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-md-8 { - width: 33.33333%; - } - .el-col-md-offset-8 { - margin-left: 33.33333%; - } - .el-col-md-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-md-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-md-9 { - width: 37.5%; - } - .el-col-md-offset-9 { - margin-left: 37.5%; - } - .el-col-md-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-md-push-9 { - position: relative; - left: 37.5%; - } - .el-col-md-10 { - width: 41.66667%; - } - .el-col-md-offset-10 { - margin-left: 41.66667%; - } - .el-col-md-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-md-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-md-11 { - width: 45.83333%; - } - .el-col-md-offset-11 { - margin-left: 45.83333%; - } - .el-col-md-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-md-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-md-12 { - width: 50%; - } - .el-col-md-offset-12 { - margin-left: 50%; - } - .el-col-md-pull-12 { - position: relative; - right: 50%; - } - .el-col-md-push-12 { - position: relative; - left: 50%; - } - .el-col-md-13 { - width: 54.16667%; - } - .el-col-md-offset-13 { - margin-left: 54.16667%; - } - .el-col-md-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-md-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-md-14 { - width: 58.33333%; - } - .el-col-md-offset-14 { - margin-left: 58.33333%; - } - .el-col-md-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-md-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-md-15 { - width: 62.5%; - } - .el-col-md-offset-15 { - margin-left: 62.5%; - } - .el-col-md-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-md-push-15 { - position: relative; - left: 62.5%; - } - .el-col-md-16 { - width: 66.66667%; - } - .el-col-md-offset-16 { - margin-left: 66.66667%; - } - .el-col-md-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-md-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-md-17 { - width: 70.83333%; - } - .el-col-md-offset-17 { - margin-left: 70.83333%; - } - .el-col-md-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-md-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-md-18 { - width: 75%; - } - .el-col-md-offset-18 { - margin-left: 75%; - } - .el-col-md-pull-18 { - position: relative; - right: 75%; - } - .el-col-md-push-18 { - position: relative; - left: 75%; - } - .el-col-md-19 { - width: 79.16667%; - } - .el-col-md-offset-19 { - margin-left: 79.16667%; - } - .el-col-md-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-md-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-md-20 { - width: 83.33333%; - } - .el-col-md-offset-20 { - margin-left: 83.33333%; - } - .el-col-md-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-md-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-md-21 { - width: 87.5%; - } - .el-col-md-offset-21 { - margin-left: 87.5%; - } - .el-col-md-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-md-push-21 { - position: relative; - left: 87.5%; - } - .el-col-md-22 { - width: 91.66667%; - } - .el-col-md-offset-22 { - margin-left: 91.66667%; - } - .el-col-md-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-md-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-md-23 { - width: 95.83333%; - } - .el-col-md-offset-23 { - margin-left: 95.83333%; - } - .el-col-md-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-md-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-md-24 { - width: 100%; - } - .el-col-md-offset-24 { - margin-left: 100%; - } - .el-col-md-pull-24 { - position: relative; - right: 100%; - } - .el-col-md-push-24 { - position: relative; - left: 100%; - } + .el-col-md-0 { + display: none; + width: 0%; + } + .el-col-md-offset-0 { + margin-left: 0; + } + .el-col-md-pull-0 { + position: relative; + right: 0; + } + .el-col-md-push-0 { + position: relative; + left: 0; + } + .el-col-md-1 { + width: 4.16667%; + } + .el-col-md-offset-1 { + margin-left: 4.16667%; + } + .el-col-md-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-md-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-md-2 { + width: 8.33333%; + } + .el-col-md-offset-2 { + margin-left: 8.33333%; + } + .el-col-md-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-md-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-md-3 { + width: 12.5%; + } + .el-col-md-offset-3 { + margin-left: 12.5%; + } + .el-col-md-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-md-push-3 { + position: relative; + left: 12.5%; + } + .el-col-md-4 { + width: 16.66667%; + } + .el-col-md-offset-4 { + margin-left: 16.66667%; + } + .el-col-md-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-md-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-md-5 { + width: 20.83333%; + } + .el-col-md-offset-5 { + margin-left: 20.83333%; + } + .el-col-md-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-md-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-md-6 { + width: 25%; + } + .el-col-md-offset-6 { + margin-left: 25%; + } + .el-col-md-pull-6 { + position: relative; + right: 25%; + } + .el-col-md-push-6 { + position: relative; + left: 25%; + } + .el-col-md-7 { + width: 29.16667%; + } + .el-col-md-offset-7 { + margin-left: 29.16667%; + } + .el-col-md-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-md-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-md-8 { + width: 33.33333%; + } + .el-col-md-offset-8 { + margin-left: 33.33333%; + } + .el-col-md-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-md-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-md-9 { + width: 37.5%; + } + .el-col-md-offset-9 { + margin-left: 37.5%; + } + .el-col-md-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-md-push-9 { + position: relative; + left: 37.5%; + } + .el-col-md-10 { + width: 41.66667%; + } + .el-col-md-offset-10 { + margin-left: 41.66667%; + } + .el-col-md-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-md-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-md-11 { + width: 45.83333%; + } + .el-col-md-offset-11 { + margin-left: 45.83333%; + } + .el-col-md-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-md-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-md-12 { + width: 50%; + } + .el-col-md-offset-12 { + margin-left: 50%; + } + .el-col-md-pull-12 { + position: relative; + right: 50%; + } + .el-col-md-push-12 { + position: relative; + left: 50%; + } + .el-col-md-13 { + width: 54.16667%; + } + .el-col-md-offset-13 { + margin-left: 54.16667%; + } + .el-col-md-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-md-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-md-14 { + width: 58.33333%; + } + .el-col-md-offset-14 { + margin-left: 58.33333%; + } + .el-col-md-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-md-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-md-15 { + width: 62.5%; + } + .el-col-md-offset-15 { + margin-left: 62.5%; + } + .el-col-md-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-md-push-15 { + position: relative; + left: 62.5%; + } + .el-col-md-16 { + width: 66.66667%; + } + .el-col-md-offset-16 { + margin-left: 66.66667%; + } + .el-col-md-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-md-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-md-17 { + width: 70.83333%; + } + .el-col-md-offset-17 { + margin-left: 70.83333%; + } + .el-col-md-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-md-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-md-18 { + width: 75%; + } + .el-col-md-offset-18 { + margin-left: 75%; + } + .el-col-md-pull-18 { + position: relative; + right: 75%; + } + .el-col-md-push-18 { + position: relative; + left: 75%; + } + .el-col-md-19 { + width: 79.16667%; + } + .el-col-md-offset-19 { + margin-left: 79.16667%; + } + .el-col-md-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-md-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-md-20 { + width: 83.33333%; + } + .el-col-md-offset-20 { + margin-left: 83.33333%; + } + .el-col-md-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-md-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-md-21 { + width: 87.5%; + } + .el-col-md-offset-21 { + margin-left: 87.5%; + } + .el-col-md-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-md-push-21 { + position: relative; + left: 87.5%; + } + .el-col-md-22 { + width: 91.66667%; + } + .el-col-md-offset-22 { + margin-left: 91.66667%; + } + .el-col-md-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-md-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-md-23 { + width: 95.83333%; + } + .el-col-md-offset-23 { + margin-left: 95.83333%; + } + .el-col-md-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-md-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-md-24 { + width: 100%; + } + .el-col-md-offset-24 { + margin-left: 100%; + } + .el-col-md-pull-24 { + position: relative; + right: 100%; + } + .el-col-md-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 1200px) { - .el-col-lg-0 { - display: none; - width: 0%; - } - .el-col-lg-offset-0 { - margin-left: 0; - } - .el-col-lg-pull-0 { - position: relative; - right: 0; - } - .el-col-lg-push-0 { - position: relative; - left: 0; - } - .el-col-lg-1 { - width: 4.16667%; - } - .el-col-lg-offset-1 { - margin-left: 4.16667%; - } - .el-col-lg-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-lg-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-lg-2 { - width: 8.33333%; - } - .el-col-lg-offset-2 { - margin-left: 8.33333%; - } - .el-col-lg-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-lg-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-lg-3 { - width: 12.5%; - } - .el-col-lg-offset-3 { - margin-left: 12.5%; - } - .el-col-lg-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-lg-push-3 { - position: relative; - left: 12.5%; - } - .el-col-lg-4 { - width: 16.66667%; - } - .el-col-lg-offset-4 { - margin-left: 16.66667%; - } - .el-col-lg-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-lg-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-lg-5 { - width: 20.83333%; - } - .el-col-lg-offset-5 { - margin-left: 20.83333%; - } - .el-col-lg-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-lg-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-lg-6 { - width: 25%; - } - .el-col-lg-offset-6 { - margin-left: 25%; - } - .el-col-lg-pull-6 { - position: relative; - right: 25%; - } - .el-col-lg-push-6 { - position: relative; - left: 25%; - } - .el-col-lg-7 { - width: 29.16667%; - } - .el-col-lg-offset-7 { - margin-left: 29.16667%; - } - .el-col-lg-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-lg-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-lg-8 { - width: 33.33333%; - } - .el-col-lg-offset-8 { - margin-left: 33.33333%; - } - .el-col-lg-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-lg-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-lg-9 { - width: 37.5%; - } - .el-col-lg-offset-9 { - margin-left: 37.5%; - } - .el-col-lg-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-lg-push-9 { - position: relative; - left: 37.5%; - } - .el-col-lg-10 { - width: 41.66667%; - } - .el-col-lg-offset-10 { - margin-left: 41.66667%; - } - .el-col-lg-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-lg-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-lg-11 { - width: 45.83333%; - } - .el-col-lg-offset-11 { - margin-left: 45.83333%; - } - .el-col-lg-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-lg-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-lg-12 { - width: 50%; - } - .el-col-lg-offset-12 { - margin-left: 50%; - } - .el-col-lg-pull-12 { - position: relative; - right: 50%; - } - .el-col-lg-push-12 { - position: relative; - left: 50%; - } - .el-col-lg-13 { - width: 54.16667%; - } - .el-col-lg-offset-13 { - margin-left: 54.16667%; - } - .el-col-lg-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-lg-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-lg-14 { - width: 58.33333%; - } - .el-col-lg-offset-14 { - margin-left: 58.33333%; - } - .el-col-lg-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-lg-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-lg-15 { - width: 62.5%; - } - .el-col-lg-offset-15 { - margin-left: 62.5%; - } - .el-col-lg-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-lg-push-15 { - position: relative; - left: 62.5%; - } - .el-col-lg-16 { - width: 66.66667%; - } - .el-col-lg-offset-16 { - margin-left: 66.66667%; - } - .el-col-lg-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-lg-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-lg-17 { - width: 70.83333%; - } - .el-col-lg-offset-17 { - margin-left: 70.83333%; - } - .el-col-lg-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-lg-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-lg-18 { - width: 75%; - } - .el-col-lg-offset-18 { - margin-left: 75%; - } - .el-col-lg-pull-18 { - position: relative; - right: 75%; - } - .el-col-lg-push-18 { - position: relative; - left: 75%; - } - .el-col-lg-19 { - width: 79.16667%; - } - .el-col-lg-offset-19 { - margin-left: 79.16667%; - } - .el-col-lg-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-lg-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-lg-20 { - width: 83.33333%; - } - .el-col-lg-offset-20 { - margin-left: 83.33333%; - } - .el-col-lg-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-lg-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-lg-21 { - width: 87.5%; - } - .el-col-lg-offset-21 { - margin-left: 87.5%; - } - .el-col-lg-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-lg-push-21 { - position: relative; - left: 87.5%; - } - .el-col-lg-22 { - width: 91.66667%; - } - .el-col-lg-offset-22 { - margin-left: 91.66667%; - } - .el-col-lg-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-lg-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-lg-23 { - width: 95.83333%; - } - .el-col-lg-offset-23 { - margin-left: 95.83333%; - } - .el-col-lg-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-lg-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-lg-24 { - width: 100%; - } - .el-col-lg-offset-24 { - margin-left: 100%; - } - .el-col-lg-pull-24 { - position: relative; - right: 100%; - } - .el-col-lg-push-24 { - position: relative; - left: 100%; - } + .el-col-lg-0 { + display: none; + width: 0%; + } + .el-col-lg-offset-0 { + margin-left: 0; + } + .el-col-lg-pull-0 { + position: relative; + right: 0; + } + .el-col-lg-push-0 { + position: relative; + left: 0; + } + .el-col-lg-1 { + width: 4.16667%; + } + .el-col-lg-offset-1 { + margin-left: 4.16667%; + } + .el-col-lg-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-lg-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-lg-2 { + width: 8.33333%; + } + .el-col-lg-offset-2 { + margin-left: 8.33333%; + } + .el-col-lg-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-lg-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-lg-3 { + width: 12.5%; + } + .el-col-lg-offset-3 { + margin-left: 12.5%; + } + .el-col-lg-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-lg-push-3 { + position: relative; + left: 12.5%; + } + .el-col-lg-4 { + width: 16.66667%; + } + .el-col-lg-offset-4 { + margin-left: 16.66667%; + } + .el-col-lg-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-lg-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-lg-5 { + width: 20.83333%; + } + .el-col-lg-offset-5 { + margin-left: 20.83333%; + } + .el-col-lg-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-lg-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-lg-6 { + width: 25%; + } + .el-col-lg-offset-6 { + margin-left: 25%; + } + .el-col-lg-pull-6 { + position: relative; + right: 25%; + } + .el-col-lg-push-6 { + position: relative; + left: 25%; + } + .el-col-lg-7 { + width: 29.16667%; + } + .el-col-lg-offset-7 { + margin-left: 29.16667%; + } + .el-col-lg-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-lg-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-lg-8 { + width: 33.33333%; + } + .el-col-lg-offset-8 { + margin-left: 33.33333%; + } + .el-col-lg-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-lg-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-lg-9 { + width: 37.5%; + } + .el-col-lg-offset-9 { + margin-left: 37.5%; + } + .el-col-lg-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-lg-push-9 { + position: relative; + left: 37.5%; + } + .el-col-lg-10 { + width: 41.66667%; + } + .el-col-lg-offset-10 { + margin-left: 41.66667%; + } + .el-col-lg-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-lg-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-lg-11 { + width: 45.83333%; + } + .el-col-lg-offset-11 { + margin-left: 45.83333%; + } + .el-col-lg-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-lg-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-lg-12 { + width: 50%; + } + .el-col-lg-offset-12 { + margin-left: 50%; + } + .el-col-lg-pull-12 { + position: relative; + right: 50%; + } + .el-col-lg-push-12 { + position: relative; + left: 50%; + } + .el-col-lg-13 { + width: 54.16667%; + } + .el-col-lg-offset-13 { + margin-left: 54.16667%; + } + .el-col-lg-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-lg-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-lg-14 { + width: 58.33333%; + } + .el-col-lg-offset-14 { + margin-left: 58.33333%; + } + .el-col-lg-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-lg-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-lg-15 { + width: 62.5%; + } + .el-col-lg-offset-15 { + margin-left: 62.5%; + } + .el-col-lg-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-lg-push-15 { + position: relative; + left: 62.5%; + } + .el-col-lg-16 { + width: 66.66667%; + } + .el-col-lg-offset-16 { + margin-left: 66.66667%; + } + .el-col-lg-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-lg-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-lg-17 { + width: 70.83333%; + } + .el-col-lg-offset-17 { + margin-left: 70.83333%; + } + .el-col-lg-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-lg-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-lg-18 { + width: 75%; + } + .el-col-lg-offset-18 { + margin-left: 75%; + } + .el-col-lg-pull-18 { + position: relative; + right: 75%; + } + .el-col-lg-push-18 { + position: relative; + left: 75%; + } + .el-col-lg-19 { + width: 79.16667%; + } + .el-col-lg-offset-19 { + margin-left: 79.16667%; + } + .el-col-lg-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-lg-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-lg-20 { + width: 83.33333%; + } + .el-col-lg-offset-20 { + margin-left: 83.33333%; + } + .el-col-lg-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-lg-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-lg-21 { + width: 87.5%; + } + .el-col-lg-offset-21 { + margin-left: 87.5%; + } + .el-col-lg-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-lg-push-21 { + position: relative; + left: 87.5%; + } + .el-col-lg-22 { + width: 91.66667%; + } + .el-col-lg-offset-22 { + margin-left: 91.66667%; + } + .el-col-lg-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-lg-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-lg-23 { + width: 95.83333%; + } + .el-col-lg-offset-23 { + margin-left: 95.83333%; + } + .el-col-lg-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-lg-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-lg-24 { + width: 100%; + } + .el-col-lg-offset-24 { + margin-left: 100%; + } + .el-col-lg-pull-24 { + position: relative; + right: 100%; + } + .el-col-lg-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 1920px) { - .el-col-xl-0 { - display: none; - width: 0%; - } - .el-col-xl-offset-0 { - margin-left: 0; - } - .el-col-xl-pull-0 { - position: relative; - right: 0; - } - .el-col-xl-push-0 { - position: relative; - left: 0; - } - .el-col-xl-1 { - width: 4.16667%; - } - .el-col-xl-offset-1 { - margin-left: 4.16667%; - } - .el-col-xl-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-xl-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-xl-2 { - width: 8.33333%; - } - .el-col-xl-offset-2 { - margin-left: 8.33333%; - } - .el-col-xl-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-xl-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-xl-3 { - width: 12.5%; - } - .el-col-xl-offset-3 { - margin-left: 12.5%; - } - .el-col-xl-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-xl-push-3 { - position: relative; - left: 12.5%; - } - .el-col-xl-4 { - width: 16.66667%; - } - .el-col-xl-offset-4 { - margin-left: 16.66667%; - } - .el-col-xl-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-xl-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-xl-5 { - width: 20.83333%; - } - .el-col-xl-offset-5 { - margin-left: 20.83333%; - } - .el-col-xl-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-xl-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-xl-6 { - width: 25%; - } - .el-col-xl-offset-6 { - margin-left: 25%; - } - .el-col-xl-pull-6 { - position: relative; - right: 25%; - } - .el-col-xl-push-6 { - position: relative; - left: 25%; - } - .el-col-xl-7 { - width: 29.16667%; - } - .el-col-xl-offset-7 { - margin-left: 29.16667%; - } - .el-col-xl-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-xl-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-xl-8 { - width: 33.33333%; - } - .el-col-xl-offset-8 { - margin-left: 33.33333%; - } - .el-col-xl-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-xl-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-xl-9 { - width: 37.5%; - } - .el-col-xl-offset-9 { - margin-left: 37.5%; - } - .el-col-xl-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-xl-push-9 { - position: relative; - left: 37.5%; - } - .el-col-xl-10 { - width: 41.66667%; - } - .el-col-xl-offset-10 { - margin-left: 41.66667%; - } - .el-col-xl-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-xl-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-xl-11 { - width: 45.83333%; - } - .el-col-xl-offset-11 { - margin-left: 45.83333%; - } - .el-col-xl-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-xl-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-xl-12 { - width: 50%; - } - .el-col-xl-offset-12 { - margin-left: 50%; - } - .el-col-xl-pull-12 { - position: relative; - right: 50%; - } - .el-col-xl-push-12 { - position: relative; - left: 50%; - } - .el-col-xl-13 { - width: 54.16667%; - } - .el-col-xl-offset-13 { - margin-left: 54.16667%; - } - .el-col-xl-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-xl-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-xl-14 { - width: 58.33333%; - } - .el-col-xl-offset-14 { - margin-left: 58.33333%; - } - .el-col-xl-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-xl-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-xl-15 { - width: 62.5%; - } - .el-col-xl-offset-15 { - margin-left: 62.5%; - } - .el-col-xl-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-xl-push-15 { - position: relative; - left: 62.5%; - } - .el-col-xl-16 { - width: 66.66667%; - } - .el-col-xl-offset-16 { - margin-left: 66.66667%; - } - .el-col-xl-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-xl-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-xl-17 { - width: 70.83333%; - } - .el-col-xl-offset-17 { - margin-left: 70.83333%; - } - .el-col-xl-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-xl-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-xl-18 { - width: 75%; - } - .el-col-xl-offset-18 { - margin-left: 75%; - } - .el-col-xl-pull-18 { - position: relative; - right: 75%; - } - .el-col-xl-push-18 { - position: relative; - left: 75%; - } - .el-col-xl-19 { - width: 79.16667%; - } - .el-col-xl-offset-19 { - margin-left: 79.16667%; - } - .el-col-xl-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-xl-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-xl-20 { - width: 83.33333%; - } - .el-col-xl-offset-20 { - margin-left: 83.33333%; - } - .el-col-xl-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-xl-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-xl-21 { - width: 87.5%; - } - .el-col-xl-offset-21 { - margin-left: 87.5%; - } - .el-col-xl-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-xl-push-21 { - position: relative; - left: 87.5%; - } - .el-col-xl-22 { - width: 91.66667%; - } - .el-col-xl-offset-22 { - margin-left: 91.66667%; - } - .el-col-xl-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-xl-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-xl-23 { - width: 95.83333%; - } - .el-col-xl-offset-23 { - margin-left: 95.83333%; - } - .el-col-xl-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-xl-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-xl-24 { - width: 100%; - } - .el-col-xl-offset-24 { - margin-left: 100%; - } - .el-col-xl-pull-24 { - position: relative; - right: 100%; - } - .el-col-xl-push-24 { - position: relative; - left: 100%; - } + .el-col-xl-0 { + display: none; + width: 0%; + } + .el-col-xl-offset-0 { + margin-left: 0; + } + .el-col-xl-pull-0 { + position: relative; + right: 0; + } + .el-col-xl-push-0 { + position: relative; + left: 0; + } + .el-col-xl-1 { + width: 4.16667%; + } + .el-col-xl-offset-1 { + margin-left: 4.16667%; + } + .el-col-xl-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-xl-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-xl-2 { + width: 8.33333%; + } + .el-col-xl-offset-2 { + margin-left: 8.33333%; + } + .el-col-xl-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-xl-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-xl-3 { + width: 12.5%; + } + .el-col-xl-offset-3 { + margin-left: 12.5%; + } + .el-col-xl-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-xl-push-3 { + position: relative; + left: 12.5%; + } + .el-col-xl-4 { + width: 16.66667%; + } + .el-col-xl-offset-4 { + margin-left: 16.66667%; + } + .el-col-xl-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-xl-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-xl-5 { + width: 20.83333%; + } + .el-col-xl-offset-5 { + margin-left: 20.83333%; + } + .el-col-xl-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-xl-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-xl-6 { + width: 25%; + } + .el-col-xl-offset-6 { + margin-left: 25%; + } + .el-col-xl-pull-6 { + position: relative; + right: 25%; + } + .el-col-xl-push-6 { + position: relative; + left: 25%; + } + .el-col-xl-7 { + width: 29.16667%; + } + .el-col-xl-offset-7 { + margin-left: 29.16667%; + } + .el-col-xl-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-xl-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-xl-8 { + width: 33.33333%; + } + .el-col-xl-offset-8 { + margin-left: 33.33333%; + } + .el-col-xl-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-xl-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-xl-9 { + width: 37.5%; + } + .el-col-xl-offset-9 { + margin-left: 37.5%; + } + .el-col-xl-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-xl-push-9 { + position: relative; + left: 37.5%; + } + .el-col-xl-10 { + width: 41.66667%; + } + .el-col-xl-offset-10 { + margin-left: 41.66667%; + } + .el-col-xl-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-xl-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-xl-11 { + width: 45.83333%; + } + .el-col-xl-offset-11 { + margin-left: 45.83333%; + } + .el-col-xl-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-xl-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-xl-12 { + width: 50%; + } + .el-col-xl-offset-12 { + margin-left: 50%; + } + .el-col-xl-pull-12 { + position: relative; + right: 50%; + } + .el-col-xl-push-12 { + position: relative; + left: 50%; + } + .el-col-xl-13 { + width: 54.16667%; + } + .el-col-xl-offset-13 { + margin-left: 54.16667%; + } + .el-col-xl-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-xl-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-xl-14 { + width: 58.33333%; + } + .el-col-xl-offset-14 { + margin-left: 58.33333%; + } + .el-col-xl-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-xl-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-xl-15 { + width: 62.5%; + } + .el-col-xl-offset-15 { + margin-left: 62.5%; + } + .el-col-xl-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-xl-push-15 { + position: relative; + left: 62.5%; + } + .el-col-xl-16 { + width: 66.66667%; + } + .el-col-xl-offset-16 { + margin-left: 66.66667%; + } + .el-col-xl-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-xl-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-xl-17 { + width: 70.83333%; + } + .el-col-xl-offset-17 { + margin-left: 70.83333%; + } + .el-col-xl-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-xl-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-xl-18 { + width: 75%; + } + .el-col-xl-offset-18 { + margin-left: 75%; + } + .el-col-xl-pull-18 { + position: relative; + right: 75%; + } + .el-col-xl-push-18 { + position: relative; + left: 75%; + } + .el-col-xl-19 { + width: 79.16667%; + } + .el-col-xl-offset-19 { + margin-left: 79.16667%; + } + .el-col-xl-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-xl-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-xl-20 { + width: 83.33333%; + } + .el-col-xl-offset-20 { + margin-left: 83.33333%; + } + .el-col-xl-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-xl-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-xl-21 { + width: 87.5%; + } + .el-col-xl-offset-21 { + margin-left: 87.5%; + } + .el-col-xl-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-xl-push-21 { + position: relative; + left: 87.5%; + } + .el-col-xl-22 { + width: 91.66667%; + } + .el-col-xl-offset-22 { + margin-left: 91.66667%; + } + .el-col-xl-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-xl-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-xl-23 { + width: 95.83333%; + } + .el-col-xl-offset-23 { + margin-left: 95.83333%; + } + .el-col-xl-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-xl-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-xl-24 { + width: 100%; + } + .el-col-xl-offset-24 { + margin-left: 100%; + } + .el-col-xl-pull-24 { + position: relative; + right: 100%; + } + .el-col-xl-push-24 { + position: relative; + left: 100%; + } } @-webkit-keyframes progress { - 0% { - background-position: 0 0; - } - 100% { - background-position: 32px 0; - } + 0% { + background-position: 0 0; + } + 100% { + background-position: 32px 0; + } } .el-upload { - display: inline-block; - text-align: center; - cursor: pointer; - outline: 0; + display: inline-block; + text-align: center; + cursor: pointer; + outline: 0; } .el-upload__input { - display: none; + display: none; } .el-upload__tip { - font-size: 12px; - color: #606266; - margin-top: 7px; + font-size: 12px; + color: #606266; + margin-top: 7px; } .el-upload iframe { - position: absolute; - z-index: -1; - top: 0; - left: 0; - opacity: 0; - filter: alpha(opacity=0); + position: absolute; + z-index: -1; + top: 0; + left: 0; + opacity: 0; + filter: alpha(opacity=0); } .el-upload--picture-card { - background-color: #fbfdff; - border: 1px dashed #c0ccda; - border-radius: 6px; - box-sizing: border-box; - width: 148px; - height: 148px; - line-height: 146px; - vertical-align: top; + background-color: #fbfdff; + border: 1px dashed #c0ccda; + border-radius: 6px; + box-sizing: border-box; + width: 148px; + height: 148px; + line-height: 146px; + vertical-align: top; } .el-upload--picture-card i { - font-size: 28px; - color: #8c939d; + font-size: 28px; + color: #8c939d; } .el-upload--picture-card:hover, .el-upload:focus { - border-color: #4165d7; - color: #4165d7; + border-color: #4165d7; + color: #4165d7; } .el-upload:focus .el-upload-dragger { - border-color: #4165d7; + border-color: #4165d7; } .el-upload-dragger { - background-color: #fff; - border: 1px dashed #d9d9d9; - border-radius: 6px; - box-sizing: border-box; - width: 360px; - height: 180px; - text-align: center; - position: relative; - overflow: hidden; + background-color: #fff; + border: 1px dashed #d9d9d9; + border-radius: 6px; + box-sizing: border-box; + width: 360px; + height: 180px; + text-align: center; + position: relative; + overflow: hidden; } .el-upload-dragger .el-icon-upload { - font-size: 67px; - color: #c0c4cc; - margin: 40px 0 16px; - line-height: 50px; + font-size: 67px; + color: #c0c4cc; + margin: 40px 0 16px; + line-height: 50px; } .el-upload-dragger + .el-upload__tip { - text-align: center; + text-align: center; } .el-upload-dragger ~ .el-upload__files { - border-top: 1px solid #dcdfe6; - margin-top: 7px; - padding-top: 5px; + border-top: 1px solid #dcdfe6; + margin-top: 7px; + padding-top: 5px; } .el-upload-dragger .el-upload__text { - color: #606266; - font-size: 14px; - text-align: center; + color: #606266; + font-size: 14px; + text-align: center; } .el-upload-dragger .el-upload__text em { - color: #4165d7; - font-style: normal; + color: #4165d7; + font-style: normal; } .el-upload-dragger:hover { - border-color: #4165d7; + border-color: #4165d7; } .el-upload-dragger.is-dragover { - background-color: rgba(32, 159, 255, 0.06); - border: 2px dashed #4165d7; + background-color: rgba(32, 159, 255, 0.06); + border: 2px dashed #4165d7; } .el-upload-list { - margin: 0; - padding: 0; - list-style: none; + margin: 0; + padding: 0; + list-style: none; } .el-upload-list__item { - -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); - font-size: 14px; - color: #606266; - line-height: 1.8; - margin-top: 5px; - position: relative; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 4px; - width: 100%; + -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); + transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); + font-size: 14px; + color: #606266; + line-height: 1.8; + margin-top: 5px; + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 4px; + width: 100%; } .el-upload-list__item .el-progress { - position: absolute; - top: 20px; - width: 100%; + position: absolute; + top: 20px; + width: 100%; } .el-upload-list__item .el-progress__text { - position: absolute; - right: 0; - top: -13px; + position: absolute; + right: 0; + top: -13px; } .el-upload-list__item .el-progress-bar { - margin-right: 0; - padding-right: 0; + margin-right: 0; + padding-right: 0; } .el-upload-list__item:first-child { - margin-top: 10px; + margin-top: 10px; } .el-upload-list__item .el-icon-upload-success { - color: #67c23a; + color: #67c23a; } .el-upload-list__item .el-icon-close { - display: none; - position: absolute; - top: 5px; - right: 5px; - cursor: pointer; - opacity: 0.75; - color: #606266; + display: none; + position: absolute; + top: 5px; + right: 5px; + cursor: pointer; + opacity: 0.75; + color: #606266; } .el-upload-list__item .el-icon-close:hover { - opacity: 1; + opacity: 1; } .el-upload-list__item .el-icon-close-tip { - display: none; - position: absolute; - top: 5px; - right: 5px; - font-size: 12px; - cursor: pointer; - opacity: 1; - color: #4165d7; + display: none; + position: absolute; + top: 5px; + right: 5px; + font-size: 12px; + cursor: pointer; + opacity: 1; + color: #4165d7; } .el-upload-list__item:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-upload-list__item:hover .el-icon-close { - display: inline-block; + display: inline-block; } .el-upload-list__item:hover .el-progress__text { - display: none; + display: none; } .el-upload-list__item.is-success .el-upload-list__item-status-label { - display: block; + display: block; } .el-upload-list__item.is-success .el-upload-list__item-name:focus, .el-upload-list__item.is-success .el-upload-list__item-name:hover { - color: #4165d7; - cursor: pointer; + color: #4165d7; + cursor: pointer; } .el-upload-list__item.is-success:focus:not(:hover) .el-icon-close-tip { - display: inline-block; + display: inline-block; } .el-upload-list__item.is-success:active .el-icon-close-tip, .el-upload-list__item.is-success:focus .el-upload-list__item-status-label, .el-upload-list__item.is-success:hover .el-upload-list__item-status-label, .el-upload-list__item.is-success:not(.focusing):focus .el-icon-close-tip { - display: none; + display: none; } -.el-upload-list.is-disabled - .el-upload-list__item:hover - .el-upload-list__item-status-label { - display: block; +.el-upload-list.is-disabled .el-upload-list__item:hover .el-upload-list__item-status-label { + display: block; } .el-upload-list__item-name { - color: #606266; - display: block; - margin-right: 40px; - overflow: hidden; - padding-left: 4px; - text-overflow: ellipsis; - -webkit-transition: color 0.3s; - transition: color 0.3s; - white-space: nowrap; + color: #606266; + display: block; + margin-right: 40px; + overflow: hidden; + padding-left: 4px; + text-overflow: ellipsis; + -webkit-transition: color 0.3s; + transition: color 0.3s; + white-space: nowrap; } .el-upload-list__item-name [class^="el-icon"] { - height: 100%; - margin-right: 7px; - color: #909399; - line-height: inherit; + height: 100%; + margin-right: 7px; + color: #909399; + line-height: inherit; } .el-upload-list__item-status-label { - position: absolute; - right: 5px; - top: 0; - line-height: inherit; - display: none; + position: absolute; + right: 5px; + top: 0; + line-height: inherit; + display: none; } .el-upload-list__item-delete { - position: absolute; - right: 10px; - top: 0; - font-size: 12px; - color: #606266; - display: none; + position: absolute; + right: 10px; + top: 0; + font-size: 12px; + color: #606266; + display: none; } .el-upload-list__item-delete:hover { - color: #4165d7; + color: #4165d7; } .el-upload-list--picture-card { - margin: 0; - display: inline; - vertical-align: top; + margin: 0; + display: inline; + vertical-align: top; } .el-upload-list--picture-card .el-upload-list__item { - overflow: hidden; - background-color: #fff; - border: 1px solid #c0ccda; - border-radius: 6px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 148px; - height: 148px; - margin: 0 8px 8px 0; - display: inline-block; + overflow: hidden; + background-color: #fff; + border: 1px solid #c0ccda; + border-radius: 6px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 148px; + height: 148px; + margin: 0 8px 8px 0; + display: inline-block; } .el-upload-list--picture-card .el-upload-list__item .el-icon-check, .el-upload-list--picture-card .el-upload-list__item .el-icon-circle-check { - color: #fff; + color: #fff; } .el-upload-list--picture-card .el-upload-list__item .el-icon-close, -.el-upload-list--picture-card - .el-upload-list__item:hover - .el-upload-list__item-status-label { - display: none; +.el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label { + display: none; } .el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text { - display: block; + display: block; } .el-upload-list--picture-card .el-upload-list__item-name { - display: none; + display: none; } .el-upload-list--picture-card .el-upload-list__item-thumbnail { - width: 100%; - height: 100%; + width: 100%; + height: 100%; } .el-upload-list--picture-card .el-upload-list__item-status-label { - position: absolute; - right: -15px; - top: -6px; - width: 40px; - height: 24px; - background: #13ce66; - text-align: center; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + position: absolute; + right: -15px; + top: -6px; + width: 40px; + height: 24px; + background: #13ce66; + text-align: center; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); } .el-upload-list--picture-card .el-upload-list__item-status-label i { - font-size: 12px; - margin-top: 11px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); + font-size: 12px; + margin-top: 11px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); } .el-upload-list--picture-card .el-upload-list__item-actions { - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - cursor: default; - text-align: center; - color: #fff; - opacity: 0; - font-size: 20px; - background-color: rgba(0, 0, 0, 0.5); - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + cursor: default; + text-align: center; + color: #fff; + opacity: 0; + font-size: 20px; + background-color: rgba(0, 0, 0, 0.5); + -webkit-transition: opacity 0.3s; + transition: opacity 0.3s; } .el-upload-list--picture-card .el-upload-list__item-actions::after { - display: inline-block; - content: ""; - height: 100%; - vertical-align: middle; + display: inline-block; + content: ""; + height: 100%; + vertical-align: middle; } .el-upload-list--picture-card .el-upload-list__item-actions span { - display: none; - cursor: pointer; + display: none; + cursor: pointer; } .el-upload-list--picture-card .el-upload-list__item-actions span + span { - margin-left: 15px; + margin-left: 15px; } -.el-upload-list--picture-card - .el-upload-list__item-actions - .el-upload-list__item-delete { - position: static; - font-size: inherit; - color: inherit; +.el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete { + position: static; + font-size: inherit; + color: inherit; } .el-upload-list--picture-card .el-upload-list__item-actions:hover { - opacity: 1; + opacity: 1; } .el-upload-list--picture-card .el-upload-list__item-actions:hover span { - display: inline-block; + display: inline-block; } .el-upload-list--picture-card .el-progress { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - bottom: auto; - width: 126px; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + bottom: auto; + width: 126px; } .el-upload-list--picture-card .el-progress .el-progress__text { - top: 50%; + top: 50%; } .el-upload-list--picture .el-upload-list__item { - overflow: hidden; - z-index: 0; - background-color: #fff; - border: 1px solid #c0ccda; - border-radius: 6px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin-top: 10px; - padding: 10px 10px 10px 90px; - height: 92px; + overflow: hidden; + z-index: 0; + background-color: #fff; + border: 1px solid #c0ccda; + border-radius: 6px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin-top: 10px; + padding: 10px 10px 10px 90px; + height: 92px; } .el-upload-list--picture .el-upload-list__item .el-icon-check, .el-upload-list--picture .el-upload-list__item .el-icon-circle-check { - color: #fff; + color: #fff; } -.el-upload-list--picture - .el-upload-list__item:hover - .el-upload-list__item-status-label { - background: 0 0; - -webkit-box-shadow: none; - box-shadow: none; - top: -2px; - right: -12px; +.el-upload-list--picture .el-upload-list__item:hover .el-upload-list__item-status-label { + background: 0 0; + -webkit-box-shadow: none; + box-shadow: none; + top: -2px; + right: -12px; } .el-upload-list--picture .el-upload-list__item:hover .el-progress__text { - display: block; + display: block; } -.el-upload-list--picture - .el-upload-list__item.is-success - .el-upload-list__item-name { - line-height: 70px; - margin-top: 0; +.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name { + line-height: 70px; + margin-top: 0; } -.el-upload-list--picture - .el-upload-list__item.is-success - .el-upload-list__item-name - i { - display: none; +.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i { + display: none; } .el-upload-list--picture .el-upload-list__item-thumbnail { - vertical-align: middle; - display: inline-block; - width: 70px; - height: 70px; - float: left; - position: relative; - z-index: 1; - margin-left: -80px; - background-color: #fff; + vertical-align: middle; + display: inline-block; + width: 70px; + height: 70px; + float: left; + position: relative; + z-index: 1; + margin-left: -80px; + background-color: #fff; } .el-upload-list--picture .el-upload-list__item-name { - display: block; - margin-top: 20px; + display: block; + margin-top: 20px; } .el-upload-list--picture .el-upload-list__item-name i { - font-size: 70px; - line-height: 1; - position: absolute; - left: 9px; - top: 10px; + font-size: 70px; + line-height: 1; + position: absolute; + left: 9px; + top: 10px; } .el-upload-list--picture .el-upload-list__item-status-label { - position: absolute; - right: -17px; - top: -7px; - width: 46px; - height: 26px; - background: #13ce66; - text-align: center; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 1px 1px #ccc; - box-shadow: 0 1px 1px #ccc; + position: absolute; + right: -17px; + top: -7px; + width: 46px; + height: 26px; + background: #13ce66; + text-align: center; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 1px 1px #ccc; + box-shadow: 0 1px 1px #ccc; } .el-upload-list--picture .el-upload-list__item-status-label i { - font-size: 12px; - margin-top: 12px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); + font-size: 12px; + margin-top: 12px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); } .el-upload-list--picture .el-progress { - position: relative; - top: -7px; + position: relative; + top: -7px; } .el-upload-cover { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - overflow: hidden; - z-index: 10; - cursor: default; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: hidden; + z-index: 10; + cursor: default; } .el-upload-cover::after { - display: inline-block; - height: 100%; - vertical-align: middle; + display: inline-block; + height: 100%; + vertical-align: middle; } .el-upload-cover img { - display: block; - width: 100%; - height: 100%; + display: block; + width: 100%; + height: 100%; } .el-upload-cover__label { - position: absolute; - right: -15px; - top: -6px; - width: 40px; - height: 24px; - background: #13ce66; - text-align: center; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + position: absolute; + right: -15px; + top: -6px; + width: 40px; + height: 24px; + background: #13ce66; + text-align: center; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); } .el-upload-cover__label i { - font-size: 12px; - margin-top: 11px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - color: #fff; + font-size: 12px; + margin-top: 11px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + color: #fff; } .el-upload-cover__progress { - display: inline-block; - vertical-align: middle; - position: static; - width: 243px; + display: inline-block; + vertical-align: middle; + position: static; + width: 243px; } .el-upload-cover__progress + .el-upload__inner { - opacity: 0; + opacity: 0; } .el-upload-cover__content { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } .el-upload-cover__interact { - position: absolute; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.72); - text-align: center; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.72); + text-align: center; } .el-upload-cover__interact .btn { - display: inline-block; - color: #fff; - font-size: 14px; - cursor: pointer; - vertical-align: middle; - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - margin-top: 60px; + display: inline-block; + color: #fff; + font-size: 14px; + cursor: pointer; + vertical-align: middle; + -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), + -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); + transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), + -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); + transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), + opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); + transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), + opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), + -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); + margin-top: 60px; } .el-upload-cover__interact .btn span { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; + opacity: 0; + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } .el-upload-cover__interact .btn:not(:first-child) { - margin-left: 35px; + margin-left: 35px; } .el-upload-cover__interact .btn:hover { - -webkit-transform: translateY(-13px); - transform: translateY(-13px); + -webkit-transform: translateY(-13px); + transform: translateY(-13px); } .el-upload-cover__interact .btn:hover span { - opacity: 1; + opacity: 1; } .el-upload-cover__interact .btn i { - color: #fff; - display: block; - font-size: 24px; - line-height: inherit; - margin: 0 auto 5px; + color: #fff; + display: block; + font-size: 24px; + line-height: inherit; + margin: 0 auto 5px; } .el-upload-cover__title { - position: absolute; - bottom: 0; - left: 0; - background-color: #fff; - height: 36px; - width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-weight: 400; - text-align: left; - padding: 0 10px; - margin: 0; - line-height: 36px; - font-size: 14px; - color: #303133; + position: absolute; + bottom: 0; + left: 0; + background-color: #fff; + height: 36px; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + font-weight: 400; + text-align: left; + padding: 0 10px; + margin: 0; + line-height: 36px; + font-size: 14px; + color: #303133; } .el-upload-cover + .el-upload__inner { - opacity: 0; - position: relative; - z-index: 1; + opacity: 0; + position: relative; + z-index: 1; } .el-progress { - position: relative; - line-height: 1; + position: relative; + line-height: 1; } .el-progress__text { - font-size: 14px; - color: #606266; - display: inline-block; - vertical-align: middle; - margin-left: 10px; - line-height: 1; + font-size: 14px; + color: #606266; + display: inline-block; + vertical-align: middle; + margin-left: 10px; + line-height: 1; } .el-progress__text i { - vertical-align: middle; - display: block; + vertical-align: middle; + display: block; } .el-progress--circle, .el-progress--dashboard { - display: inline-block; + display: inline-block; } .el-progress--circle .el-progress__text, .el-progress--dashboard .el-progress__text { - position: absolute; - top: 50%; - left: 0; - width: 100%; - text-align: center; - margin: 0; - -webkit-transform: translate(0, -50%); - transform: translate(0, -50%); + position: absolute; + top: 50%; + left: 0; + width: 100%; + text-align: center; + margin: 0; + -webkit-transform: translate(0, -50%); + transform: translate(0, -50%); } .el-progress--circle .el-progress__text i, .el-progress--dashboard .el-progress__text i { - vertical-align: middle; - display: inline-block; + vertical-align: middle; + display: inline-block; } .el-progress--without-text .el-progress__text { - display: none; + display: none; } .el-progress--without-text .el-progress-bar { - padding-right: 0; - margin-right: 0; - display: block; + padding-right: 0; + margin-right: 0; + display: block; } .el-progress-bar, .el-progress-bar__inner::after, .el-progress-bar__innerText, .el-spinner { - display: inline-block; - vertical-align: middle; + display: inline-block; + vertical-align: middle; } .el-progress--text-inside .el-progress-bar { - padding-right: 0; - margin-right: 0; + padding-right: 0; + margin-right: 0; } .el-progress.is-success .el-progress-bar__inner { - background-color: #67c23a; + background-color: #67c23a; } .el-progress.is-success .el-progress__text { - color: #67c23a; + color: #67c23a; } .el-progress.is-warning .el-progress-bar__inner { - background-color: #e6a23c; + background-color: #e6a23c; } .el-progress.is-warning .el-progress__text { - color: #e6a23c; + color: #e6a23c; } .el-progress.is-exception .el-progress-bar__inner { - background-color: #f56c6c; + background-color: #f56c6c; } .el-progress.is-exception .el-progress__text { - color: #f56c6c; + color: #f56c6c; } .el-progress-bar { - padding-right: 50px; - width: 100%; - margin-right: -55px; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding-right: 50px; + width: 100%; + margin-right: -55px; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-progress-bar__outer { - height: 6px; - border-radius: 100px; - background-color: #ebeef5; - overflow: hidden; - position: relative; - vertical-align: middle; + height: 6px; + border-radius: 100px; + background-color: #ebeef5; + overflow: hidden; + position: relative; + vertical-align: middle; } .el-progress-bar__inner { - position: absolute; - left: 0; - top: 0; - height: 100%; - background-color: #4165d7; - text-align: right; - border-radius: 100px; - line-height: 1; - white-space: nowrap; - -webkit-transition: width 0.6s ease; - transition: width 0.6s ease; + position: absolute; + left: 0; + top: 0; + height: 100%; + background-color: #4165d7; + text-align: right; + border-radius: 100px; + line-height: 1; + white-space: nowrap; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; } .el-card, .el-message { - border-radius: 4px; - overflow: hidden; + border-radius: 4px; + overflow: hidden; } .el-progress-bar__inner::after { - height: 100%; + height: 100%; } .el-progress-bar__innerText { - color: #fff; - font-size: 12px; - margin: 0 5px; + color: #fff; + font-size: 12px; + margin: 0 5px; } @keyframes progress { - 0% { - background-position: 0 0; - } - 100% { - background-position: 32px 0; - } + 0% { + background-position: 0 0; + } + 100% { + background-position: 32px 0; + } } .el-time-spinner { - width: 100%; - white-space: nowrap; + width: 100%; + white-space: nowrap; } .el-spinner-inner { - -webkit-animation: rotate 2s linear infinite; - animation: rotate 2s linear infinite; - width: 50px; - height: 50px; + -webkit-animation: rotate 2s linear infinite; + animation: rotate 2s linear infinite; + width: 50px; + height: 50px; } .el-spinner-inner .path { - stroke: #ececec; - stroke-linecap: round; - -webkit-animation: dash 1.5s ease-in-out infinite; - animation: dash 1.5s ease-in-out infinite; + stroke: #ececec; + stroke-linecap: round; + -webkit-animation: dash 1.5s ease-in-out infinite; + animation: dash 1.5s ease-in-out infinite; } @-webkit-keyframes rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @-webkit-keyframes dash { - 0% { - stroke-dasharray: 1, 150; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -124; - } + 0% { + stroke-dasharray: 1, 150; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -35; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -124; + } } @keyframes dash { - 0% { - stroke-dasharray: 1, 150; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -124; - } + 0% { + stroke-dasharray: 1, 150; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -35; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -124; + } } .el-message { - min-width: 380px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-width: 1px; - border-style: solid; - border-color: #ebeef5; - position: fixed; - left: 50%; - top: 20px; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - background-color: #edf2fc; - -webkit-transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; - transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; - transition: opacity 0.3s, transform 0.4s, top 0.4s; - transition: opacity 0.3s, transform 0.4s, top 0.4s, -webkit-transform 0.4s; - padding: 15px 15px 15px 20px; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + min-width: 380px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-width: 1px; + border-style: solid; + border-color: #ebeef5; + position: fixed; + left: 50%; + top: 20px; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + background-color: #edf2fc; + -webkit-transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; + transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; + transition: opacity 0.3s, transform 0.4s, top 0.4s; + transition: opacity 0.3s, transform 0.4s, top 0.4s, -webkit-transform 0.4s; + padding: 15px 15px 15px 20px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-message.is-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-message.is-closable .el-message__content { - padding-right: 16px; + padding-right: 16px; } .el-message p { - margin: 0; + margin: 0; } .el-message--info .el-message__content { - color: #909399; + color: #909399; } .el-message--success { - background-color: #f0f9eb; - border-color: #e1f3d8; + background-color: #f0f9eb; + border-color: #e1f3d8; } .el-message--success .el-message__content { - color: #67c23a; + color: #67c23a; } .el-message--warning { - background-color: #fdf6ec; - border-color: #faecd8; + background-color: #fdf6ec; + border-color: #faecd8; } .el-message--warning .el-message__content { - color: #e6a23c; + color: #e6a23c; } .el-message--error { - background-color: #fef0f0; - border-color: #fde2e2; + background-color: #fef0f0; + border-color: #fde2e2; } .el-message--error .el-message__content { - color: #f56c6c; + color: #f56c6c; } .el-message__icon { - margin-right: 10px; + margin-right: 10px; } .el-message__content { - padding: 0; - font-size: 14px; - line-height: 1; + padding: 0; + font-size: 14px; + line-height: 1; } .el-message__closeBtn { - position: absolute; - top: 50%; - right: 15px; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - cursor: pointer; - color: #c0c4cc; - font-size: 16px; + position: absolute; + top: 50%; + right: 15px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + cursor: pointer; + color: #c0c4cc; + font-size: 16px; } .el-message__closeBtn:hover { - color: #909399; + color: #909399; } .el-message .el-icon-success { - color: #67c23a; + color: #67c23a; } .el-message .el-icon-error { - color: #f56c6c; + color: #f56c6c; } .el-message .el-icon-info { - color: #909399; + color: #909399; } .el-message .el-icon-warning { - color: #e6a23c; + color: #e6a23c; } .el-message-fade-enter, .el-message-fade-leave-active { - opacity: 0; - -webkit-transform: translate(-50%, -100%); - transform: translate(-50%, -100%); + opacity: 0; + -webkit-transform: translate(-50%, -100%); + transform: translate(-50%, -100%); } .el-badge { - position: relative; - vertical-align: middle; - display: inline-block; + position: relative; + vertical-align: middle; + display: inline-block; } .el-badge__content { - background-color: #f56c6c; - border-radius: 10px; - color: #fff; - display: inline-block; - font-size: 12px; - height: 18px; - line-height: 18px; - padding: 0 6px; - text-align: center; - white-space: nowrap; - border: 1px solid #fff; + background-color: #f56c6c; + border-radius: 10px; + color: #fff; + display: inline-block; + font-size: 12px; + height: 18px; + line-height: 18px; + padding: 0 6px; + text-align: center; + white-space: nowrap; + border: 1px solid #fff; } .el-badge__content.is-fixed { - position: absolute; - top: 0; - right: 10px; - -webkit-transform: translateY(-50%) translateX(100%); - transform: translateY(-50%) translateX(100%); + position: absolute; + top: 0; + right: 10px; + -webkit-transform: translateY(-50%) translateX(100%); + transform: translateY(-50%) translateX(100%); } .el-rate__icon, .el-rate__item { - position: relative; - display: inline-block; + position: relative; + display: inline-block; } .el-badge__content.is-fixed.is-dot { - right: 5px; + right: 5px; } .el-badge__content.is-dot { - height: 8px; - width: 8px; - padding: 0; - right: 0; - border-radius: 50%; + height: 8px; + width: 8px; + padding: 0; + right: 0; + border-radius: 50%; } .el-badge__content--primary { - background-color: #4165d7; + background-color: #4165d7; } .el-badge__content--success { - background-color: #67c23a; + background-color: #67c23a; } .el-badge__content--warning { - background-color: #e6a23c; + background-color: #e6a23c; } .el-badge__content--info { - background-color: #909399; + background-color: #909399; } .el-badge__content--danger { - background-color: #f56c6c; + background-color: #f56c6c; } .el-card { - border: 1px solid #ebeef5; - background-color: #fff; - color: #303133; - -webkit-transition: 0.3s; - transition: 0.3s; + border: 1px solid #ebeef5; + background-color: #fff; + color: #303133; + -webkit-transition: 0.3s; + transition: 0.3s; } .el-card.is-always-shadow, .el-card.is-hover-shadow:focus, .el-card.is-hover-shadow:hover { - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-card__header { - padding: 18px 20px; - border-bottom: 1px solid #ebeef5; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding: 18px 20px; + border-bottom: 1px solid #ebeef5; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-card__body { - padding: 20px; + padding: 20px; } .el-rate { - height: 20px; - line-height: 1; + height: 20px; + line-height: 1; } .el-rate__item { - font-size: 0; - vertical-align: middle; + font-size: 0; + vertical-align: middle; } .el-rate__icon { - font-size: 18px; - margin-right: 6px; - color: #c0c4cc; - -webkit-transition: 0.3s; - transition: 0.3s; + font-size: 18px; + margin-right: 6px; + color: #c0c4cc; + -webkit-transition: 0.3s; + transition: 0.3s; } .el-rate__decimal, .el-rate__icon .path2 { - position: absolute; - top: 0; - left: 0; + position: absolute; + top: 0; + left: 0; } .el-rate__icon.hover { - -webkit-transform: scale(1.15); - transform: scale(1.15); + -webkit-transform: scale(1.15); + transform: scale(1.15); } .el-rate__decimal { - display: inline-block; - overflow: hidden; + display: inline-block; + overflow: hidden; } .el-step.is-vertical, .el-steps { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-rate__text { - font-size: 14px; - vertical-align: middle; + font-size: 14px; + vertical-align: middle; } .el-steps { - display: flex; + display: flex; } .el-steps--simple { - padding: 13px 8%; - border-radius: 4px; - background: #f5f7fa; + padding: 13px 8%; + border-radius: 4px; + background: #f5f7fa; } .el-steps--horizontal { - white-space: nowrap; + white-space: nowrap; } .el-steps--vertical { - height: 100%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-flow: column; - flex-flow: column; + height: 100%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-flow: column; + flex-flow: column; } .el-step { - position: relative; - -ms-flex-negative: 1; - flex-shrink: 1; + position: relative; + -ms-flex-negative: 1; + flex-shrink: 1; } .el-step:last-of-type .el-step__line { - display: none; + display: none; } .el-step:last-of-type.is-flex { - -ms-flex-preferred-size: auto !important; - flex-basis: auto !important; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; + -ms-flex-preferred-size: auto !important; + flex-basis: auto !important; + -ms-flex-negative: 0; + flex-shrink: 0; + -webkit-box-flex: 0; + -ms-flex-positive: 0; + flex-grow: 0; } .el-step:last-of-type .el-step__description, .el-step:last-of-type .el-step__main { - padding-right: 0; + padding-right: 0; } .el-step__head { - position: relative; - width: 100%; + position: relative; + width: 100%; } .el-step__head.is-process { - color: #303133; - border-color: #303133; + color: #303133; + border-color: #303133; } .el-step__head.is-wait { - color: #c0c4cc; - border-color: #c0c4cc; + color: #c0c4cc; + border-color: #c0c4cc; } .el-step__head.is-success { - color: #67c23a; - border-color: #67c23a; + color: #67c23a; + border-color: #67c23a; } .el-step__head.is-error { - color: #f56c6c; - border-color: #f56c6c; + color: #f56c6c; + border-color: #f56c6c; } .el-step__head.is-finish { - color: #4165d7; - border-color: #4165d7; + color: #4165d7; + border-color: #4165d7; } .el-step__icon { - position: relative; - z-index: 1; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 24px; - height: 24px; - font-size: 14px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - background: #fff; - -webkit-transition: 0.15s ease-out; - transition: 0.15s ease-out; + position: relative; + z-index: 1; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 24px; + height: 24px; + font-size: 14px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + background: #fff; + -webkit-transition: 0.15s ease-out; + transition: 0.15s ease-out; } .el-step__icon.is-text { - border-radius: 50%; - border: 2px solid; - border-color: inherit; + border-radius: 50%; + border: 2px solid; + border-color: inherit; } .el-step__icon.is-icon { - width: 40px; + width: 40px; } .el-step__icon-inner { - display: inline-block; - user-select: none; - text-align: center; - font-weight: 700; - line-height: 1; - color: inherit; + display: inline-block; + user-select: none; + text-align: center; + font-weight: 700; + line-height: 1; + color: inherit; } .el-step__icon-inner[class*="el-icon"]:not(.is-status) { - font-size: 25px; - font-weight: 400; + font-size: 25px; + font-weight: 400; } .el-step__icon-inner.is-status { - -webkit-transform: translateY(1px); - transform: translateY(1px); + -webkit-transform: translateY(1px); + transform: translateY(1px); } .el-step__line { - position: absolute; - border-color: inherit; - background-color: #c0c4cc; + position: absolute; + border-color: inherit; + background-color: #c0c4cc; } .el-step__line-inner { - display: block; - border-width: 1px; - border-style: solid; - border-color: inherit; - -webkit-transition: 0.15s ease-out; - transition: 0.15s ease-out; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 0; - height: 0; + display: block; + border-width: 1px; + border-style: solid; + border-color: inherit; + -webkit-transition: 0.15s ease-out; + transition: 0.15s ease-out; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 0; + height: 0; } .el-step__main { - white-space: normal; - text-align: left; + white-space: normal; + text-align: left; } .el-step__title { - font-size: 16px; - line-height: 38px; + font-size: 16px; + line-height: 38px; } .el-step__title.is-process { - font-weight: 700; - color: #303133; + font-weight: 700; + color: #303133; } .el-step__title.is-wait { - color: #c0c4cc; + color: #c0c4cc; } .el-step__title.is-success { - color: #67c23a; + color: #67c23a; } .el-step__title.is-error { - color: #f56c6c; + color: #f56c6c; } .el-step__title.is-finish { - color: #4165d7; + color: #4165d7; } .el-step__description { - padding-right: 10%; - margin-top: -5px; - font-size: 12px; - line-height: 20px; - font-weight: 400; + padding-right: 10%; + margin-top: -5px; + font-size: 12px; + line-height: 20px; + font-weight: 400; } .el-step__description.is-process { - color: #303133; + color: #303133; } .el-step__description.is-wait { - color: #c0c4cc; + color: #c0c4cc; } .el-step__description.is-success { - color: #67c23a; + color: #67c23a; } .el-step__description.is-error { - color: #f56c6c; + color: #f56c6c; } .el-step__description.is-finish { - color: #4165d7; + color: #4165d7; } .el-step.is-horizontal { - display: inline-block; + display: inline-block; } .el-step.is-horizontal .el-step__line { - height: 2px; - top: 11px; - left: 0; - right: 0; + height: 2px; + top: 11px; + left: 0; + right: 0; } .el-step.is-vertical { - display: flex; + display: flex; } .el-step.is-vertical .el-step__head { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - width: 24px; + -webkit-box-flex: 0; + -ms-flex-positive: 0; + flex-grow: 0; + width: 24px; } .el-step.is-vertical .el-step__main { - padding-left: 10px; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; + padding-left: 10px; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } .el-step.is-vertical .el-step__title { - line-height: 24px; - padding-bottom: 8px; + line-height: 24px; + padding-bottom: 8px; } .el-step.is-vertical .el-step__line { - width: 2px; - top: 0; - bottom: 0; - left: 11px; + width: 2px; + top: 0; + bottom: 0; + left: 11px; } .el-step.is-vertical .el-step__icon.is-icon { - width: 24px; + width: 24px; } .el-step.is-center .el-step__head, .el-step.is-center .el-step__main { - text-align: center; + text-align: center; } .el-step.is-center .el-step__description { - padding-left: 20%; - padding-right: 20%; + padding-left: 20%; + padding-right: 20%; } .el-step.is-center .el-step__line { - left: 50%; - right: -50%; + left: 50%; + right: -50%; } .el-step.is-simple { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-step.is-simple .el-step__head { - width: auto; - font-size: 0; - padding-right: 10px; + width: auto; + font-size: 0; + padding-right: 10px; } .el-step.is-simple .el-step__icon { - background: 0 0; - width: 16px; - height: 16px; - font-size: 12px; + background: 0 0; + width: 16px; + height: 16px; + font-size: 12px; } .el-step.is-simple .el-step__icon-inner[class*="el-icon"]:not(.is-status) { - font-size: 18px; + font-size: 18px; } .el-step.is-simple .el-step__icon-inner.is-status { - -webkit-transform: scale(0.8) translateY(1px); - transform: scale(0.8) translateY(1px); + -webkit-transform: scale(0.8) translateY(1px); + transform: scale(0.8) translateY(1px); } .el-step.is-simple .el-step__main { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } .el-step.is-simple .el-step__title { - font-size: 16px; - line-height: 20px; + font-size: 16px; + line-height: 20px; } .el-step.is-simple:not(:last-of-type) .el-step__title { - max-width: 50%; - word-break: break-all; + max-width: 50%; + word-break: break-all; } .el-step.is-simple .el-step__arrow { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-step.is-simple .el-step__arrow::after, .el-step.is-simple .el-step__arrow::before { - content: ""; - display: inline-block; - position: absolute; - height: 15px; - width: 1px; - background: #c0c4cc; + content: ""; + display: inline-block; + position: absolute; + height: 15px; + width: 1px; + background: #c0c4cc; } .el-step.is-simple .el-step__arrow::before { - -webkit-transform: rotate(-45deg) translateY(-4px); - transform: rotate(-45deg) translateY(-4px); - -webkit-transform-origin: 0 0; - transform-origin: 0 0; + -webkit-transform: rotate(-45deg) translateY(-4px); + transform: rotate(-45deg) translateY(-4px); + -webkit-transform-origin: 0 0; + transform-origin: 0 0; } .el-step.is-simple .el-step__arrow::after { - -webkit-transform: rotate(45deg) translateY(4px); - transform: rotate(45deg) translateY(4px); - -webkit-transform-origin: 100% 100%; - transform-origin: 100% 100%; + -webkit-transform: rotate(45deg) translateY(4px); + transform: rotate(45deg) translateY(4px); + -webkit-transform-origin: 100% 100%; + transform-origin: 100% 100%; } .el-step.is-simple:last-of-type .el-step__arrow { - display: none; + display: none; } .el-carousel { - position: relative; + position: relative; } .el-carousel--horizontal { - overflow-x: hidden; + overflow-x: hidden; } .el-carousel--vertical { - overflow-y: hidden; + overflow-y: hidden; } .el-carousel__container { - position: relative; - height: 300px; + position: relative; + height: 300px; } .el-carousel__arrow { - border: none; - outline: 0; - padding: 0; - margin: 0; - height: 36px; - width: 36px; - cursor: pointer; - -webkit-transition: 0.3s; - transition: 0.3s; - border-radius: 50%; - background-color: rgba(31, 45, 61, 0.11); - color: #fff; - position: absolute; - top: 50%; - z-index: 10; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - text-align: center; - font-size: 12px; + border: none; + outline: 0; + padding: 0; + margin: 0; + height: 36px; + width: 36px; + cursor: pointer; + -webkit-transition: 0.3s; + transition: 0.3s; + border-radius: 50%; + background-color: rgba(31, 45, 61, 0.11); + color: #fff; + position: absolute; + top: 50%; + z-index: 10; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + text-align: center; + font-size: 12px; } .el-carousel__arrow--left { - left: 16px; + left: 16px; } .el-carousel__arrow--right { - right: 16px; + right: 16px; } .el-carousel__arrow:hover { - background-color: rgba(31, 45, 61, 0.23); + background-color: rgba(31, 45, 61, 0.23); } .el-carousel__arrow i { - cursor: pointer; + cursor: pointer; } .el-carousel__indicators { - position: absolute; - list-style: none; - margin: 0; - padding: 0; - z-index: 2; + position: absolute; + list-style: none; + margin: 0; + padding: 0; + z-index: 2; } .el-carousel__indicators--horizontal { - bottom: 0; - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); + bottom: 0; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); } .el-carousel__indicators--vertical { - right: 0; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); + right: 0; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } .el-carousel__indicators--outside { - bottom: 26px; - text-align: center; - position: static; - -webkit-transform: none; - transform: none; + bottom: 26px; + text-align: center; + position: static; + -webkit-transform: none; + transform: none; } .el-carousel__indicators--outside .el-carousel__indicator:hover button { - opacity: 0.64; + opacity: 0.64; } .el-carousel__indicators--outside button { - background-color: #c0c4cc; - opacity: 0.24; + background-color: #c0c4cc; + opacity: 0.24; } .el-carousel__indicators--labels { - left: 0; - right: 0; - -webkit-transform: none; - transform: none; - text-align: center; + left: 0; + right: 0; + -webkit-transform: none; + transform: none; + text-align: center; } .el-carousel__indicators--labels .el-carousel__button { - height: auto; - width: auto; - padding: 2px 18px; - font-size: 12px; + height: auto; + width: auto; + padding: 2px 18px; + font-size: 12px; } .el-carousel__indicators--labels .el-carousel__indicator { - padding: 6px 4px; + padding: 6px 4px; } .el-carousel__indicator { - background-color: transparent; - cursor: pointer; + background-color: transparent; + cursor: pointer; } .el-carousel__indicator:hover button { - opacity: 0.72; + opacity: 0.72; } .el-carousel__indicator--horizontal { - display: inline-block; - padding: 12px 4px; + display: inline-block; + padding: 12px 4px; } .el-carousel__indicator--vertical { - padding: 4px 12px; + padding: 4px 12px; } .el-carousel__indicator--vertical .el-carousel__button { - width: 2px; - height: 15px; + width: 2px; + height: 15px; } .el-carousel__indicator.is-active button { - opacity: 1; + opacity: 1; } .el-carousel__button { - display: block; - opacity: 0.48; - width: 30px; - height: 2px; - background-color: #fff; - border: none; - outline: 0; - padding: 0; - margin: 0; - cursor: pointer; - -webkit-transition: 0.3s; - transition: 0.3s; + display: block; + opacity: 0.48; + width: 30px; + height: 2px; + background-color: #fff; + border: none; + outline: 0; + padding: 0; + margin: 0; + cursor: pointer; + -webkit-transition: 0.3s; + transition: 0.3s; } .el-carousel__item, .el-carousel__mask { - height: 100%; - top: 0; - left: 0; - position: absolute; + height: 100%; + top: 0; + left: 0; + position: absolute; } .carousel-arrow-left-enter, .carousel-arrow-left-leave-active { - -webkit-transform: translateY(-50%) translateX(-10px); - transform: translateY(-50%) translateX(-10px); - opacity: 0; + -webkit-transform: translateY(-50%) translateX(-10px); + transform: translateY(-50%) translateX(-10px); + opacity: 0; } .carousel-arrow-right-enter, .carousel-arrow-right-leave-active { - -webkit-transform: translateY(-50%) translateX(10px); - transform: translateY(-50%) translateX(10px); - opacity: 0; + -webkit-transform: translateY(-50%) translateX(10px); + transform: translateY(-50%) translateX(10px); + opacity: 0; } .el-carousel__item { - width: 100%; - display: inline-block; - overflow: hidden; - z-index: 0; + width: 100%; + display: inline-block; + overflow: hidden; + z-index: 0; } .el-carousel__item.is-active { - z-index: 2; + z-index: 2; } .el-carousel__item.is-animating { - -webkit-transition: -webkit-transform 0.4s ease-in-out; - transition: -webkit-transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; + -webkit-transition: -webkit-transform 0.4s ease-in-out; + transition: -webkit-transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; } .el-carousel__item--card { - width: 50%; - -webkit-transition: -webkit-transform 0.4s ease-in-out; - transition: -webkit-transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; + width: 50%; + -webkit-transition: -webkit-transform 0.4s ease-in-out; + transition: -webkit-transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; } .el-carousel__item--card.is-in-stage { - cursor: pointer; - z-index: 1; + cursor: pointer; + z-index: 1; } .el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask, .el-carousel__item--card.is-in-stage:hover .el-carousel__mask { - opacity: 0.12; + opacity: 0.12; } .el-carousel__item--card.is-active { - z-index: 2; + z-index: 2; } .el-carousel__mask { - width: 100%; - background-color: #fff; - opacity: 0.24; - -webkit-transition: 0.2s; - transition: 0.2s; + width: 100%; + background-color: #fff; + opacity: 0.24; + -webkit-transition: 0.2s; + transition: 0.2s; } .el-fade-in-enter, .el-fade-in-leave-active, @@ -9354,1446 +8396,1375 @@ .fade-in-linear-enter, .fade-in-linear-leave, .fade-in-linear-leave-active { - opacity: 0; + opacity: 0; } .fade-in-linear-enter-active, .fade-in-linear-leave-active { - -webkit-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; + -webkit-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; } .el-fade-in-linear-enter-active, .el-fade-in-linear-leave-active { - -webkit-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; + -webkit-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; } .el-fade-in-enter-active, .el-fade-in-leave-active { - -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); -} -.el-zoom-in-center-enter-active, -.el-zoom-in-center-leave-active { - -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); -} -.el-zoom-in-center-enter, -.el-zoom-in-center-leave-active { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); -} -.el-zoom-in-top-enter-active, -.el-zoom-in-top-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center top; - transform-origin: center top; -} -.el-zoom-in-top-enter, -.el-zoom-in-top-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-bottom-enter-active, -.el-zoom-in-bottom-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -.el-zoom-in-bottom-enter, -.el-zoom-in-bottom-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-left-enter-active, -.el-zoom-in-left-leave-active { - opacity: 1; - -webkit-transform: scale(1, 1); - transform: scale(1, 1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: top left; - transform-origin: top left; -} -.el-zoom-in-left-enter, -.el-zoom-in-left-leave-active { - opacity: 0; - -webkit-transform: scale(0.45, 0.45); - transform: scale(0.45, 0.45); + -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); + transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); } .collapse-transition { - -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, - 0.3s padding-bottom ease-in-out; - transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, - 0.3s padding-bottom ease-in-out; + -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, + 0.3s padding-bottom ease-in-out; + transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, + 0.3s padding-bottom ease-in-out; } .horizontal-collapse-transition { - -webkit-transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, - 0.3s padding-right ease-in-out; - transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, - 0.3s padding-right ease-in-out; + -webkit-transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, + 0.3s padding-right ease-in-out; + transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, + 0.3s padding-right ease-in-out; } .el-list-enter-active, .el-list-leave-active { - -webkit-transition: all 1s; - transition: all 1s; + -webkit-transition: all 1s; + transition: all 1s; } .el-list-enter, .el-list-leave-active { - opacity: 0; - -webkit-transform: translateY(-30px); - transform: translateY(-30px); + opacity: 0; + -webkit-transform: translateY(-30px); + transform: translateY(-30px); } .el-opacity-transition { - -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); + -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); + transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); } .el-collapse { - border-top: 1px solid #ebeef5; - border-bottom: 1px solid #ebeef5; + border-top: 1px solid #ebeef5; + border-bottom: 1px solid #ebeef5; } .el-collapse-item.is-disabled .el-collapse-item__header { - color: #bbb; - cursor: not-allowed; + color: #bbb; + cursor: not-allowed; } .el-collapse-item__header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 48px; - line-height: 48px; - background-color: #fff; - color: #303133; - cursor: pointer; - border-bottom: 1px solid #ebeef5; - font-size: 13px; - font-weight: 500; - -webkit-transition: border-bottom-color 0.3s; - transition: border-bottom-color 0.3s; - outline: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 48px; + line-height: 48px; + background-color: #fff; + color: #303133; + cursor: pointer; + border-bottom: 1px solid #ebeef5; + font-size: 13px; + font-weight: 500; + -webkit-transition: border-bottom-color 0.3s; + transition: border-bottom-color 0.3s; + outline: 0; } .el-collapse-item__arrow { - margin: 0 8px 0 auto; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - font-weight: 300; + margin: 0 8px 0 auto; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + font-weight: 300; } .el-collapse-item__arrow.is-active { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } .el-collapse-item__header.focusing:focus:not(:hover) { - color: #4165d7; + color: #4165d7; } .el-collapse-item__header.is-active { - border-bottom-color: transparent; + border-bottom-color: transparent; } .el-collapse-item__wrap { - will-change: height; - background-color: #fff; - overflow: hidden; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-bottom: 1px solid #ebeef5; + will-change: height; + background-color: #fff; + overflow: hidden; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-bottom: 1px solid #ebeef5; } .el-cascader__tags, .el-tag { - -webkit-box-sizing: border-box; + -webkit-box-sizing: border-box; } .el-collapse-item__content { - padding-bottom: 25px; - font-size: 13px; - color: #303133; - line-height: 1.769230769230769; + padding-bottom: 25px; + font-size: 13px; + color: #303133; + line-height: 1.769230769230769; } .el-collapse-item:last-child { - margin-bottom: -1px; + margin-bottom: -1px; } .el-popper .popper__arrow, .el-popper .popper__arrow::after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } .el-popper .popper__arrow { - border-width: 6px; - -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); - filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); + border-width: 6px; + -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); + filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); } .el-popper .popper__arrow::after { - content: " "; - border-width: 6px; + content: " "; + border-width: 6px; } .el-popper[x-placement^="top"] { - margin-bottom: 12px; + margin-bottom: 12px; } .el-popper[x-placement^="top"] .popper__arrow { - bottom: -6px; - left: 50%; - margin-right: 3px; - border-top-color: #ebeef5; - border-bottom-width: 0; + bottom: -6px; + left: 50%; + margin-right: 3px; + border-top-color: #ebeef5; + border-bottom-width: 0; } .el-popper[x-placement^="top"] .popper__arrow::after { - bottom: 1px; - margin-left: -6px; - border-top-color: #fff; - border-bottom-width: 0; + bottom: 1px; + margin-left: -6px; + border-top-color: #fff; + border-bottom-width: 0; } .el-popper[x-placement^="bottom"] { - margin-top: 12px; + margin-top: 12px; } .el-popper[x-placement^="bottom"] .popper__arrow { - top: -6px; - left: 50%; - margin-right: 3px; - border-top-width: 0; - border-bottom-color: #ebeef5; + top: -6px; + left: 50%; + margin-right: 3px; + border-top-width: 0; + border-bottom-color: #ebeef5; } .el-popper[x-placement^="bottom"] .popper__arrow::after { - top: 1px; - margin-left: -6px; - border-top-width: 0; - border-bottom-color: #fff; + top: 1px; + margin-left: -6px; + border-top-width: 0; + border-bottom-color: #fff; } .el-popper[x-placement^="right"] { - margin-left: 12px; + margin-left: 12px; } .el-popper[x-placement^="right"] .popper__arrow { - top: 50%; - left: -6px; - margin-bottom: 3px; - border-right-color: #ebeef5; - border-left-width: 0; + top: 50%; + left: -6px; + margin-bottom: 3px; + border-right-color: #ebeef5; + border-left-width: 0; } .el-popper[x-placement^="right"] .popper__arrow::after { - bottom: -6px; - left: 1px; - border-right-color: #fff; - border-left-width: 0; + bottom: -6px; + left: 1px; + border-right-color: #fff; + border-left-width: 0; } .el-popper[x-placement^="left"] { - margin-right: 12px; + margin-right: 12px; } .el-popper[x-placement^="left"] .popper__arrow { - top: 50%; - right: -6px; - margin-bottom: 3px; - border-right-width: 0; - border-left-color: #ebeef5; + top: 50%; + right: -6px; + margin-bottom: 3px; + border-right-width: 0; + border-left-color: #ebeef5; } .el-popper[x-placement^="left"] .popper__arrow::after { - right: 1px; - bottom: -6px; - margin-left: -6px; - border-right-width: 0; - border-left-color: #fff; + right: 1px; + bottom: -6px; + margin-left: -6px; + border-right-width: 0; + border-left-color: #fff; } .el-tag { - background-color: #ecf0fb; - border-color: #d9e0f7; - display: inline-block; - height: 32px; - padding: 0 10px; - line-height: 30px; - font-size: 12px; - color: #4165d7; - border-width: 1px; - border-style: solid; - border-radius: 4px; - box-sizing: border-box; - white-space: nowrap; + background-color: rgb(236, 240, 251); + border-color: rgb(217, 224, 247); + display: inline-block; + height: 32px; + padding: 0 10px; + line-height: 30px; + font-size: 12px; + color: #4165d7; + border-width: 1px; + border-style: solid; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; } .el-tag.is-hit { - border-color: #4165d7; + border-color: #4165d7; } .el-tag .el-tag__close { - color: #4165d7; + color: #4165d7; } .el-tag .el-tag__close:hover { - color: #fff; - background-color: #4165d7; + color: #fff; + background-color: #4165d7; } .el-tag.el-tag--info { - background-color: #f4f4f5; - border-color: #e9e9eb; - color: #909399; + background-color: #f4f4f5; + border-color: #e9e9eb; + color: #909399; } .el-tag.el-tag--info.is-hit { - border-color: #909399; + border-color: #909399; } .el-tag.el-tag--info .el-tag__close { - color: #909399; + color: #909399; } .el-tag.el-tag--info .el-tag__close:hover { - color: #fff; - background-color: #909399; + color: #fff; + background-color: #909399; } .el-tag.el-tag--success { - background-color: #f0f9eb; - border-color: #e1f3d8; - color: #67c23a; + background-color: #f0f9eb; + border-color: #e1f3d8; + color: #67c23a; } .el-tag.el-tag--success.is-hit { - border-color: #67c23a; + border-color: #67c23a; } .el-tag.el-tag--success .el-tag__close { - color: #67c23a; + color: #67c23a; } .el-tag.el-tag--success .el-tag__close:hover { - color: #fff; - background-color: #67c23a; + color: #fff; + background-color: #67c23a; } .el-tag.el-tag--warning { - background-color: #fdf6ec; - border-color: #faecd8; - color: #e6a23c; + background-color: #fdf6ec; + border-color: #faecd8; + color: #e6a23c; } .el-tag.el-tag--warning.is-hit { - border-color: #e6a23c; + border-color: #e6a23c; } .el-tag.el-tag--warning .el-tag__close { - color: #e6a23c; + color: #e6a23c; } .el-tag.el-tag--warning .el-tag__close:hover { - color: #fff; - background-color: #e6a23c; + color: #fff; + background-color: #e6a23c; } .el-tag.el-tag--danger { - background-color: #fef0f0; - border-color: #fde2e2; - color: #f56c6c; + background-color: #fef0f0; + border-color: #fde2e2; + color: #f56c6c; } .el-tag.el-tag--danger.is-hit { - border-color: #f56c6c; + border-color: #f56c6c; } .el-tag.el-tag--danger .el-tag__close { - color: #f56c6c; + color: #f56c6c; } .el-tag.el-tag--danger .el-tag__close:hover { - color: #fff; - background-color: #f56c6c; + color: #fff; + background-color: #f56c6c; } .el-tag .el-icon-close { - border-radius: 50%; - text-align: center; - position: relative; - cursor: pointer; - font-size: 12px; - height: 16px; - width: 16px; - line-height: 16px; - vertical-align: middle; - top: -1px; - right: -5px; + border-radius: 50%; + text-align: center; + position: relative; + cursor: pointer; + font-size: 12px; + height: 16px; + width: 16px; + line-height: 16px; + vertical-align: middle; + top: -1px; + right: -5px; } .el-tag .el-icon-close::before { - display: block; + display: block; } .el-tag--dark { - background-color: #4165d7; - border-color: #4165d7; - color: #fff; + background-color: #4165d7; + border-color: #4165d7; + color: #fff; } .el-tag--dark.is-hit { - border-color: #4165d7; + border-color: #4165d7; } .el-tag--dark .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark .el-tag__close:hover { - color: #fff; - background-color: #6784df; + color: #fff; + background-color: rgb(103, 132, 223); } .el-tag--dark.el-tag--info { - background-color: #909399; - border-color: #909399; - color: #fff; + background-color: #909399; + border-color: #909399; + color: #fff; } .el-tag--dark.el-tag--info.is-hit { - border-color: #909399; + border-color: #909399; } .el-tag--dark.el-tag--info .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--info .el-tag__close:hover { - color: #fff; - background-color: #a6a9ad; + color: #fff; + background-color: #a6a9ad; } .el-tag--dark.el-tag--success { - background-color: #67c23a; - border-color: #67c23a; - color: #fff; + background-color: #67c23a; + border-color: #67c23a; + color: #fff; } .el-tag--dark.el-tag--success.is-hit { - border-color: #67c23a; + border-color: #67c23a; } .el-tag--dark.el-tag--success .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--success .el-tag__close:hover { - color: #fff; - background-color: #85ce61; + color: #fff; + background-color: #85ce61; } .el-tag--dark.el-tag--warning { - background-color: #e6a23c; - border-color: #e6a23c; - color: #fff; + background-color: #e6a23c; + border-color: #e6a23c; + color: #fff; } .el-tag--dark.el-tag--warning.is-hit { - border-color: #e6a23c; + border-color: #e6a23c; } .el-tag--dark.el-tag--warning .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--warning .el-tag__close:hover { - color: #fff; - background-color: #ebb563; + color: #fff; + background-color: #ebb563; } .el-tag--dark.el-tag--danger { - background-color: #f56c6c; - border-color: #f56c6c; - color: #fff; + background-color: #f56c6c; + border-color: #f56c6c; + color: #fff; } .el-tag--dark.el-tag--danger.is-hit { - border-color: #f56c6c; + border-color: #f56c6c; } .el-tag--dark.el-tag--danger .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--danger .el-tag__close:hover { - color: #fff; - background-color: #f78989; + color: #fff; + background-color: #f78989; } .el-tag--plain { - background-color: #fff; - border-color: #b3c1ef; - color: #4165d7; + background-color: #fff; + border-color: rgb(179, 193, 239); + color: #4165d7; } .el-tag--plain.is-hit { - border-color: #4165d7; + border-color: #4165d7; } .el-tag--plain .el-tag__close { - color: #4165d7; + color: #4165d7; } .el-tag--plain .el-tag__close:hover { - color: #fff; - background-color: #4165d7; + color: #fff; + background-color: #4165d7; } .el-tag--plain.el-tag--info { - background-color: #fff; - border-color: #d3d4d6; - color: #909399; + background-color: #fff; + border-color: #d3d4d6; + color: #909399; } .el-tag--plain.el-tag--info.is-hit { - border-color: #909399; + border-color: #909399; } .el-tag--plain.el-tag--info .el-tag__close { - color: #909399; + color: #909399; } .el-tag--plain.el-tag--info .el-tag__close:hover { - color: #fff; - background-color: #909399; + color: #fff; + background-color: #909399; } .el-tag--plain.el-tag--success { - background-color: #fff; - border-color: #c2e7b0; - color: #67c23a; + background-color: #fff; + border-color: #c2e7b0; + color: #67c23a; } .el-tag--plain.el-tag--success.is-hit { - border-color: #67c23a; + border-color: #67c23a; } .el-tag--plain.el-tag--success .el-tag__close { - color: #67c23a; + color: #67c23a; } .el-tag--plain.el-tag--success .el-tag__close:hover { - color: #fff; - background-color: #67c23a; + color: #fff; + background-color: #67c23a; } .el-tag--plain.el-tag--warning { - background-color: #fff; - border-color: #f5dab1; - color: #e6a23c; + background-color: #fff; + border-color: #f5dab1; + color: #e6a23c; } .el-tag--plain.el-tag--warning.is-hit { - border-color: #e6a23c; + border-color: #e6a23c; } .el-tag--plain.el-tag--warning .el-tag__close { - color: #e6a23c; + color: #e6a23c; } .el-tag--plain.el-tag--warning .el-tag__close:hover { - color: #fff; - background-color: #e6a23c; + color: #fff; + background-color: #e6a23c; } .el-tag--plain.el-tag--danger { - background-color: #fff; - border-color: #fbc4c4; - color: #f56c6c; + background-color: #fff; + border-color: #fbc4c4; + color: #f56c6c; } .el-tag--plain.el-tag--danger.is-hit { - border-color: #f56c6c; + border-color: #f56c6c; } .el-tag--plain.el-tag--danger .el-tag__close { - color: #f56c6c; + color: #f56c6c; } .el-tag--plain.el-tag--danger .el-tag__close:hover { - color: #fff; - background-color: #f56c6c; + color: #fff; + background-color: #f56c6c; } .el-tag--medium { - height: 28px; - line-height: 26px; + height: 28px; + line-height: 26px; } .el-tag--medium .el-icon-close { - -webkit-transform: scale(0.8); - transform: scale(0.8); + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-tag--small { - height: 24px; - padding: 0 8px; - line-height: 22px; + height: 24px; + padding: 0 8px; + line-height: 22px; } .el-tag--small .el-icon-close { - -webkit-transform: scale(0.8); - transform: scale(0.8); + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-tag--mini { - height: 20px; - padding: 0 5px; - line-height: 19px; + height: 20px; + padding: 0 5px; + line-height: 19px; } .el-tag--mini .el-icon-close { - margin-left: -3px; - -webkit-transform: scale(0.7); - transform: scale(0.7); + margin-left: -3px; + -webkit-transform: scale(0.7); + transform: scale(0.7); } .el-cascader { - display: inline-block; - position: relative; - font-size: 14px; - line-height: 40px; + display: inline-block; + position: relative; + font-size: 14px; + line-height: 40px; } .el-cascader:not(.is-disabled):hover .el-input__inner { - cursor: pointer; - border-color: #c0c4cc; + cursor: pointer; + border-color: #c0c4cc; } .el-cascader .el-input .el-input__inner:focus, .el-cascader .el-input.is-focus .el-input__inner { - border-color: #4165d7; + border-color: #4165d7; } .el-cascader .el-input { - cursor: pointer; + cursor: pointer; } .el-cascader .el-input .el-input__inner { - text-overflow: ellipsis; + text-overflow: ellipsis; } .el-cascader .el-input .el-icon-arrow-down { - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - font-size: 14px; + -webkit-transition: -webkit-transform 0.3s; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + font-size: 14px; } .el-cascader .el-input .el-icon-arrow-down.is-reverse { - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); } .el-cascader .el-input .el-icon-circle-close:hover { - color: #909399; + color: #909399; } .el-cascader--medium { - font-size: 14px; - line-height: 36px; + font-size: 14px; + line-height: 36px; } .el-cascader--small { - font-size: 13px; - line-height: 32px; + font-size: 13px; + line-height: 32px; } .el-cascader--mini { - font-size: 12px; - line-height: 28px; + font-size: 12px; + line-height: 28px; } .el-cascader.is-disabled .el-cascader__label { - z-index: 2; - color: #c0c4cc; + z-index: 2; + color: #c0c4cc; } .el-cascader__dropdown { - margin: 5px 0; - font-size: 14px; - background: #fff; - border: 1px solid #e4e7ed; - border-radius: 4px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + margin: 5px 0; + font-size: 14px; + background: #fff; + border: 1px solid #e4e7ed; + border-radius: 4px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-cascader__tags { - position: absolute; - left: 0; - right: 30px; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - line-height: normal; - text-align: left; - box-sizing: border-box; + position: absolute; + left: 0; + right: 30px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + line-height: normal; + text-align: left; + box-sizing: border-box; } .el-cascader__tags .el-tag { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - max-width: 100%; - margin: 2px 0 2px 6px; - text-overflow: ellipsis; - background: #f0f2f5; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + max-width: 100%; + margin: 2px 0 2px 6px; + text-overflow: ellipsis; + background: #f0f2f5; } .el-cascader__tags .el-tag:not(.is-hit) { - border-color: transparent; + border-color: transparent; } .el-cascader__tags .el-tag > span { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - overflow: hidden; - text-overflow: ellipsis; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + overflow: hidden; + text-overflow: ellipsis; } .el-cascader__tags .el-tag .el-icon-close { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - background-color: #c0c4cc; - color: #fff; + -webkit-box-flex: 0; + -ms-flex: none; + flex: none; + background-color: #c0c4cc; + color: #fff; } .el-cascader__tags .el-tag .el-icon-close:hover { - background-color: #909399; + background-color: #909399; } .el-cascader__suggestion-panel { - border-radius: 4px; + border-radius: 4px; } .el-cascader__suggestion-list { - max-height: 204px; - margin: 0; - padding: 6px 0; - font-size: 14px; - color: #606266; - text-align: center; + max-height: 204px; + margin: 0; + padding: 6px 0; + font-size: 14px; + color: #606266; + text-align: center; } .el-cascader__suggestion-item { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 34px; - padding: 0 15px; - text-align: left; - outline: 0; - cursor: pointer; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 34px; + padding: 0 15px; + text-align: left; + outline: 0; + cursor: pointer; } .el-cascader__suggestion-item:focus, .el-cascader__suggestion-item:hover { - background: #f5f7fa; + background: #f5f7fa; } .el-cascader__suggestion-item.is-checked { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .el-cascader__suggestion-item > span { - margin-right: 10px; + margin-right: 10px; } .el-cascader__empty-text { - margin: 10px 0; - color: #c0c4cc; + margin: 10px 0; + color: #c0c4cc; } .el-cascader__search-input { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - height: 24px; - min-width: 60px; - margin: 2px 0 2px 15px; - padding: 0; - color: #606266; - border: none; - outline: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + height: 24px; + min-width: 60px; + margin: 2px 0 2px 15px; + padding: 0; + color: #606266; + border: none; + outline: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-cascader__search-input::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-cascader__search-input:-ms-input-placeholder { + color: #c0c4cc; } .el-cascader__search-input::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-cascader__search-input::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-color-predefine { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - font-size: 12px; - margin-top: 8px; - width: 280px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + font-size: 12px; + margin-top: 8px; + width: 280px; } .el-color-predefine__colors { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -ms-flex-wrap: wrap; - flex-wrap: wrap; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } .el-color-predefine__color-selector { - margin: 0 0 8px 8px; - width: 20px; - height: 20px; - border-radius: 4px; - cursor: pointer; + margin: 0 0 8px 8px; + width: 20px; + height: 20px; + border-radius: 4px; + cursor: pointer; } .el-color-predefine__color-selector:nth-child(10n + 1) { - margin-left: 0; + margin-left: 0; } .el-color-predefine__color-selector.selected { - -webkit-box-shadow: 0 0 3px 2px #4165d7; - box-shadow: 0 0 3px 2px #4165d7; + -webkit-box-shadow: 0 0 3px 2px #4165d7; + box-shadow: 0 0 3px 2px #4165d7; } .el-color-predefine__color-selector > div { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 100%; - border-radius: 3px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 100%; + border-radius: 3px; } .el-color-predefine__color-selector.is-alpha { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .el-color-hue-slider { - position: relative; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 280px; - height: 12px; - background-color: red; - padding: 0 2px; + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 280px; + height: 12px; + background-color: red; + padding: 0 2px; } .el-color-hue-slider__bar { - position: relative; - background: -webkit-gradient( - linear, - left top, - right top, - from(red), - color-stop(17%, #ff0), - color-stop(33%, #0f0), - color-stop(50%, #0ff), - color-stop(67%, #00f), - color-stop(83%, #f0f), - to(red) - ); - background: linear-gradient( - to right, - red 0, - #ff0 17%, - #0f0 33%, - #0ff 50%, - #00f 67%, - #f0f 83%, - red 100% - ); - height: 100%; + position: relative; + background: -webkit-gradient( + linear, + left top, + right top, + from(red), + color-stop(17%, #ff0), + color-stop(33%, #0f0), + color-stop(50%, #0ff), + color-stop(67%, #00f), + color-stop(83%, #f0f), + to(red) + ); + background: linear-gradient( + to right, + red 0, + #ff0 17%, + #0f0 33%, + #0ff 50%, + #00f 67%, + #f0f 83%, + red 100% + ); + height: 100%; } .el-color-hue-slider__thumb { - position: absolute; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; - left: 0; - top: 0; - width: 4px; - height: 100%; - border-radius: 1px; - background: #fff; - border: 1px solid #f0f0f0; - -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - z-index: 1; + position: absolute; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; + left: 0; + top: 0; + width: 4px; + height: 100%; + border-radius: 1px; + background: #fff; + border: 1px solid #f0f0f0; + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + z-index: 1; } .el-color-hue-slider.is-vertical { - width: 12px; - height: 180px; - padding: 2px 0; + width: 12px; + height: 180px; + padding: 2px 0; } .el-color-hue-slider.is-vertical .el-color-hue-slider__bar { - background: -webkit-gradient( - linear, - left top, - left bottom, - from(red), - color-stop(17%, #ff0), - color-stop(33%, #0f0), - color-stop(50%, #0ff), - color-stop(67%, #00f), - color-stop(83%, #f0f), - to(red) - ); - background: linear-gradient( - to bottom, - red 0, - #ff0 17%, - #0f0 33%, - #0ff 50%, - #00f 67%, - #f0f 83%, - red 100% - ); + background: -webkit-gradient( + linear, + left top, + left bottom, + from(red), + color-stop(17%, #ff0), + color-stop(33%, #0f0), + color-stop(50%, #0ff), + color-stop(67%, #00f), + color-stop(83%, #f0f), + to(red) + ); + background: linear-gradient( + to bottom, + red 0, + #ff0 17%, + #0f0 33%, + #0ff 50%, + #00f 67%, + #f0f 83%, + red 100% + ); } .el-color-hue-slider.is-vertical .el-color-hue-slider__thumb { - left: 0; - top: 0; - width: 100%; - height: 4px; + left: 0; + top: 0; + width: 100%; + height: 4px; } .el-color-svpanel { - position: relative; - width: 280px; - height: 180px; + position: relative; + width: 280px; + height: 180px; } .el-color-svpanel__black, .el-color-svpanel__white { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; } .el-color-svpanel__white { - background: -webkit-gradient( - linear, - left top, - right top, - from(#fff), - to(rgba(255, 255, 255, 0)) - ); - background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); + background: -webkit-gradient( + linear, + left top, + right top, + from(#fff), + to(rgba(255, 255, 255, 0)) + ); + background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); } .el-color-svpanel__black { - background: -webkit-gradient( - linear, - left bottom, - left top, - from(#000), - to(rgba(0, 0, 0, 0)) - ); - background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); + background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0))); + background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); } .el-color-svpanel__cursor { - position: absolute; + position: absolute; } .el-color-svpanel__cursor > div { - cursor: head; - width: 4px; - height: 4px; - -webkit-box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), - 0 0 1px 2px rgba(0, 0, 0, 0.4); - box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), - 0 0 1px 2px rgba(0, 0, 0, 0.4); - border-radius: 50%; - -webkit-transform: translate(-2px, -2px); - transform: translate(-2px, -2px); + cursor: head; + width: 4px; + height: 4px; + -webkit-box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), + 0 0 1px 2px rgba(0, 0, 0, 0.4); + box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), + 0 0 1px 2px rgba(0, 0, 0, 0.4); + border-radius: 50%; + -webkit-transform: translate(-2px, -2px); + transform: translate(-2px, -2px); } .el-color-alpha-slider { - position: relative; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 280px; - height: 12px; - background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 280px; + height: 12px; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .el-color-alpha-slider__bar { - position: relative; - background: -webkit-gradient( - linear, - left top, - right top, - from(rgba(255, 255, 255, 0)), - to(white) - ); - background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%); - height: 100%; + position: relative; + background: -webkit-gradient( + linear, + left top, + right top, + from(rgba(255, 255, 255, 0)), + to(white) + ); + background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%); + height: 100%; } .el-color-alpha-slider__thumb { - position: absolute; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; - left: 0; - top: 0; - width: 4px; - height: 100%; - border-radius: 1px; - background: #fff; - border: 1px solid #f0f0f0; - -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - z-index: 1; + position: absolute; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; + left: 0; + top: 0; + width: 4px; + height: 100%; + border-radius: 1px; + background: #fff; + border: 1px solid #f0f0f0; + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + z-index: 1; } .el-color-alpha-slider.is-vertical { - width: 20px; - height: 180px; + width: 20px; + height: 180px; } .el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar { - background: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0)), - to(white) - ); - background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%); + background: -webkit-gradient( + linear, + left top, + left bottom, + from(rgba(255, 255, 255, 0)), + to(white) + ); + background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%); } .el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb { - left: 0; - top: 0; - width: 100%; - height: 4px; + left: 0; + top: 0; + width: 100%; + height: 4px; } .el-color-dropdown { - width: 300px; + width: 300px; } .el-color-dropdown__main-wrapper { - margin-bottom: 6px; + margin-bottom: 6px; } .el-color-dropdown__main-wrapper::after { - content: ""; - display: table; - clear: both; + content: ""; + display: table; + clear: both; } .el-color-dropdown__btns { - margin-top: 6px; - text-align: right; + margin-top: 6px; + text-align: right; } .el-color-dropdown__value { - float: left; - line-height: 26px; - font-size: 12px; - color: #000; - width: 160px; + float: left; + line-height: 26px; + font-size: 12px; + color: #000; + width: 160px; } .el-color-dropdown__btn { - border: 1px solid #dcdcdc; - color: #333; - line-height: 24px; - border-radius: 2px; - padding: 0 20px; - cursor: pointer; - background-color: transparent; - outline: 0; - font-size: 12px; + border: 1px solid #dcdcdc; + color: #333; + line-height: 24px; + border-radius: 2px; + padding: 0 20px; + cursor: pointer; + background-color: transparent; + outline: 0; + font-size: 12px; } .el-color-dropdown__btn[disabled] { - color: #ccc; - cursor: not-allowed; + color: #ccc; + cursor: not-allowed; } .el-color-dropdown__btn:hover { - color: #4165d7; - border-color: #4165d7; + color: #4165d7; + border-color: #4165d7; } .el-color-dropdown__link-btn { - cursor: pointer; - color: #4165d7; - text-decoration: none; - padding: 15px; - font-size: 12px; + cursor: pointer; + color: #4165d7; + text-decoration: none; + padding: 15px; + font-size: 12px; } .el-color-dropdown__link-btn:hover { - color: tint(#4165d7, 20%); + color: tint(primary, 20%); } .el-color-picker { - display: inline-block; - position: relative; - line-height: normal; - height: 40px; + display: inline-block; + position: relative; + line-height: normal; + height: 40px; } .el-color-picker.is-disabled .el-color-picker__trigger { - cursor: not-allowed; + cursor: not-allowed; } .el-color-picker--medium { - height: 36px; + height: 36px; } .el-color-picker--medium .el-color-picker__trigger { - height: 36px; - width: 36px; + height: 36px; + width: 36px; } .el-color-picker--medium .el-color-picker__mask { - height: 34px; - width: 34px; + height: 34px; + width: 34px; } .el-color-picker--small { - height: 32px; + height: 32px; } .el-color-picker--small .el-color-picker__trigger { - height: 32px; - width: 32px; + height: 32px; + width: 32px; } .el-color-picker--small .el-color-picker__mask { - height: 30px; - width: 30px; + height: 30px; + width: 30px; } .el-color-picker--small .el-color-picker__empty, .el-color-picker--small .el-color-picker__icon { - -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); - transform: translate3d(-50%, -50%, 0) scale(0.8); + -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); + transform: translate3d(-50%, -50%, 0) scale(0.8); } .el-color-picker--mini { - height: 28px; + height: 28px; } .el-color-picker--mini .el-color-picker__trigger { - height: 28px; - width: 28px; + height: 28px; + width: 28px; } .el-color-picker--mini .el-color-picker__mask { - height: 26px; - width: 26px; + height: 26px; + width: 26px; } .el-color-picker--mini .el-color-picker__empty, .el-color-picker--mini .el-color-picker__icon { - -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); - transform: translate3d(-50%, -50%, 0) scale(0.8); + -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); + transform: translate3d(-50%, -50%, 0) scale(0.8); } .el-color-picker__mask { - height: 38px; - width: 38px; - border-radius: 4px; - position: absolute; - top: 1px; - left: 1px; - z-index: 1; - cursor: not-allowed; - background-color: rgba(255, 255, 255, 0.7); + height: 38px; + width: 38px; + border-radius: 4px; + position: absolute; + top: 1px; + left: 1px; + z-index: 1; + cursor: not-allowed; + background-color: rgba(255, 255, 255, 0.7); } .el-color-picker__trigger { - display: inline-block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - height: 40px; - width: 40px; - padding: 4px; - border: 1px solid #e6e6e6; - border-radius: 4px; - font-size: 0; - position: relative; - cursor: pointer; + display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + height: 40px; + width: 40px; + padding: 4px; + border: 1px solid #e6e6e6; + border-radius: 4px; + font-size: 0; + position: relative; + cursor: pointer; } .el-color-picker__color { - position: relative; - display: block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border: 1px solid #999; - border-radius: 2px; - width: 100%; - height: 100%; - text-align: center; + position: relative; + display: block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border: 1px solid #999; + border-radius: 2px; + width: 100%; + height: 100%; + text-align: center; } .el-color-picker__color.is-alpha { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .el-color-picker__color-inner { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; } .el-color-picker__empty, .el-color-picker__icon { - top: 50%; - left: 50%; - font-size: 12px; - position: absolute; + top: 50%; + left: 50%; + font-size: 12px; + position: absolute; } .el-color-picker__empty { - color: #999; - -webkit-transform: translate3d(-50%, -50%, 0); - transform: translate3d(-50%, -50%, 0); + color: #999; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); } .el-color-picker__icon { - display: inline-block; - width: 100%; - -webkit-transform: translate3d(-50%, -50%, 0); - transform: translate3d(-50%, -50%, 0); - color: #fff; - text-align: center; + display: inline-block; + width: 100%; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); + color: #fff; + text-align: center; } .el-color-picker__panel { - position: absolute; - z-index: 10; - padding: 6px; - -webkit-box-sizing: content-box; - box-sizing: content-box; - background-color: #fff; - border: 1px solid #ebeef5; - border-radius: 4px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + position: absolute; + z-index: 10; + padding: 6px; + -webkit-box-sizing: content-box; + box-sizing: content-box; + background-color: #fff; + border: 1px solid #ebeef5; + border-radius: 4px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-textarea { - position: relative; - display: inline-block; - width: 100%; - vertical-align: bottom; - font-size: 14px; + position: relative; + display: inline-block; + width: 100%; + vertical-align: bottom; + font-size: 14px; } .el-textarea__inner { - display: block; - resize: vertical; - padding: 5px 15px; - line-height: 1.5; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 100%; - font-size: inherit; - color: #606266; - background-color: #fff; - background-image: none; - border: 1px solid #dcdfe6; - border-radius: 4px; - -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + display: block; + resize: vertical; + padding: 5px 15px; + line-height: 1.5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 100%; + font-size: inherit; + color: #606266; + background-color: #fff; + background-image: none; + border: 1px solid #dcdfe6; + border-radius: 4px; + -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-textarea__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-textarea__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea__inner:hover { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-textarea__inner:focus { - outline: 0; - border-color: #4165d7; + outline: 0; + border-color: #4165d7; } .el-textarea .el-input__count { - color: #909399; - background: #fff; - position: absolute; - font-size: 12px; - bottom: 5px; - right: 10px; + color: #909399; + background: #fff; + position: absolute; + font-size: 12px; + bottom: 5px; + right: 10px; } .el-textarea.is-disabled .el-textarea__inner { - background-color: #f5f7fa; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; } .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea.is-disabled .el-textarea__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea.is-exceed .el-textarea__inner { - border-color: #f56c6c; + border-color: #f56c6c; } .el-textarea.is-exceed .el-input__count { - color: #f56c6c; + color: #f56c6c; } .el-input { - position: relative; - font-size: 14px; - display: inline-block; - width: 100%; + position: relative; + font-size: 14px; + display: inline-block; + width: 100%; } .el-input::-webkit-scrollbar { - z-index: 11; - width: 6px; + z-index: 11; + width: 6px; } .el-input::-webkit-scrollbar:horizontal { - height: 6px; + height: 6px; } .el-input::-webkit-scrollbar-thumb { - border-radius: 5px; - width: 6px; - background: #b4bccc; + border-radius: 5px; + width: 6px; + background: #b4bccc; } .el-input::-webkit-scrollbar-corner { - background: #fff; + background: #fff; } .el-input::-webkit-scrollbar-track { - background: #fff; + background: #fff; } .el-input::-webkit-scrollbar-track-piece { - background: #fff; - width: 6px; + background: #fff; + width: 6px; } .el-input .el-input__clear { - color: #c0c4cc; - font-size: 14px; - cursor: pointer; - -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + color: #c0c4cc; + font-size: 14px; + cursor: pointer; + -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-input .el-input__clear:hover { - color: #909399; + color: #909399; } .el-input .el-input__count { - height: 100%; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #909399; - font-size: 12px; + height: 100%; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #909399; + font-size: 12px; } .el-input .el-input__count .el-input__count-inner { - background: #fff; - line-height: initial; - display: inline-block; - padding: 0 5px; + background: #fff; + line-height: initial; + display: inline-block; + padding: 0 5px; } .el-input__inner { - -webkit-appearance: none; - background-color: #fff; - background-image: none; - border-radius: 4px; - border: 1px solid #dcdfe6; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #606266; - display: inline-block; - font-size: inherit; - height: 40px; - line-height: 40px; - outline: 0; - padding: 0 15px; - -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - width: 100%; + -webkit-appearance: none; + background-color: #fff; + background-image: none; + border-radius: 4px; + border: 1px solid #dcdfe6; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #606266; + display: inline-block; + font-size: inherit; + height: 40px; + line-height: 40px; + outline: 0; + padding: 0 15px; + -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + width: 100%; } .el-input__prefix, .el-input__suffix { - position: absolute; - top: 0; - -webkit-transition: all 0.3s; - height: 100%; - color: #c0c4cc; - text-align: center; + position: absolute; + top: 0; + -webkit-transition: all 0.3s; + height: 100%; + color: #c0c4cc; + text-align: center; } .el-input__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-input__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-input__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input__inner:hover { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-input.is-active .el-input__inner, .el-input__inner:focus { - border-color: #4165d7; - outline: 0; + border-color: #4165d7; + outline: 0; } .el-input__suffix { - right: 5px; - transition: all 0.3s; + right: 5px; + transition: all 0.3s; } .el-input__suffix-inner { - pointer-events: all; + pointer-events: all; } .el-input__prefix { - left: 5px; - transition: all 0.3s; + left: 5px; + transition: all 0.3s; } .el-input__icon { - height: 100%; - width: 25px; - text-align: center; - -webkit-transition: all 0.3s; - transition: all 0.3s; - line-height: 40px; + height: 100%; + width: 25px; + text-align: center; + -webkit-transition: all 0.3s; + transition: all 0.3s; + line-height: 40px; } .el-input__icon:after { - content: ""; - height: 100%; - width: 0; - display: inline-block; - vertical-align: middle; + content: ""; + height: 100%; + width: 0; + display: inline-block; + vertical-align: middle; } .el-input__validateIcon { - pointer-events: none; + pointer-events: none; } .el-input.is-disabled .el-input__inner { - background-color: #f5f7fa; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; } .el-input.is-disabled .el-input__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-input.is-disabled .el-input__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-input.is-disabled .el-input__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input.is-disabled .el-input__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input.is-disabled .el-input__icon { - cursor: not-allowed; + cursor: not-allowed; } .el-link, .el-transfer-panel__filter .el-icon-circle-close { - cursor: pointer; + cursor: pointer; } .el-input.is-exceed .el-input__inner { - border-color: #f56c6c; + border-color: #f56c6c; } .el-input.is-exceed .el-input__suffix .el-input__count { - color: #f56c6c; + color: #f56c6c; } .el-input--suffix .el-input__inner { - padding-right: 30px; + padding-right: 30px; } .el-input--prefix .el-input__inner { - padding-left: 30px; + padding-left: 30px; } .el-input--medium { - font-size: 14px; + font-size: 14px; } .el-input--medium .el-input__inner { - height: 36px; - line-height: 36px; + height: 36px; + line-height: 36px; } .el-input--medium .el-input__icon { - line-height: 36px; + line-height: 36px; } .el-input--small { - font-size: 13px; + font-size: 13px; } .el-input--small .el-input__inner { - height: 32px; - line-height: 32px; + height: 32px; + line-height: 32px; } .el-input--small .el-input__icon { - line-height: 32px; + line-height: 32px; } .el-input--mini { - font-size: 12px; + font-size: 12px; } .el-input--mini .el-input__inner { - height: 28px; - line-height: 28px; + height: 28px; + line-height: 28px; } .el-input--mini .el-input__icon { - line-height: 28px; + line-height: 28px; } .el-input-group { - line-height: normal; - display: inline-table; - width: 100%; - border-collapse: separate; - border-spacing: 0; + line-height: normal; + display: inline-table; + width: 100%; + border-collapse: separate; + border-spacing: 0; } .el-input-group > .el-input__inner { - vertical-align: middle; - display: table-cell; + vertical-align: middle; + display: table-cell; } .el-input-group__append, .el-input-group__prepend { - background-color: #f5f7fa; - color: #909399; - vertical-align: middle; - display: table-cell; - position: relative; - border: 1px solid #dcdfe6; - border-radius: 4px; - padding: 0 20px; - width: 1px; - white-space: nowrap; + background-color: #f5f7fa; + color: #909399; + vertical-align: middle; + display: table-cell; + position: relative; + border: 1px solid #dcdfe6; + border-radius: 4px; + padding: 0 20px; + width: 1px; + white-space: nowrap; } .el-input-group--prepend .el-input__inner, .el-input-group__append { - border-top-left-radius: 0; - border-bottom-left-radius: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } .el-input-group--append .el-input__inner, .el-input-group__prepend { - border-top-right-radius: 0; - border-bottom-right-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 0; } .el-input-group__append:focus, .el-input-group__prepend:focus { - outline: 0; + outline: 0; } .el-input-group__append .el-button, .el-input-group__append .el-select, .el-input-group__prepend .el-button, .el-input-group__prepend .el-select { - display: inline-block; - margin: -10px -20px; + display: inline-block; + margin: -10px -20px; } .el-input-group__append button.el-button, .el-input-group__append div.el-select .el-input__inner, @@ -10801,2415 +9772,2237 @@ .el-input-group__prepend button.el-button, .el-input-group__prepend div.el-select .el-input__inner, .el-input-group__prepend div.el-select:hover .el-input__inner { - border-color: transparent; - background-color: transparent; - color: inherit; - border-top: 0; - border-bottom: 0; + border-color: transparent; + background-color: transparent; + color: inherit; + border-top: 0; + border-bottom: 0; } .el-input-group__append .el-button, .el-input-group__append .el-input, .el-input-group__prepend .el-button, .el-input-group__prepend .el-input { - font-size: inherit; + font-size: inherit; } .el-input-group__prepend { - border-right: 0; + border-right: 0; } .el-input-group__append { - border-left: 0; + border-left: 0; } .el-input-group--append .el-select .el-input.is-focus .el-input__inner, .el-input-group--prepend .el-select .el-input.is-focus .el-input__inner { - border-color: transparent; + border-color: transparent; } .el-input__inner::-ms-clear { - display: none; - width: 0; - height: 0; + display: none; + width: 0; + height: 0; } .el-transfer { - font-size: 14px; + font-size: 14px; } .el-transfer__buttons { - display: inline-block; - vertical-align: middle; - padding: 0 30px; + display: inline-block; + vertical-align: middle; + padding: 0 30px; } .el-transfer__button { - display: block; - margin: 0 auto; - padding: 10px; - border-radius: 50%; - color: #fff; - background-color: #4165d7; - font-size: 0; + display: block; + margin: 0 auto; + padding: 10px; + border-radius: 50%; + color: #fff; + background-color: #4165d7; + font-size: 0; } .el-transfer-panel__item + .el-transfer-panel__item, .el-transfer__button [class*="el-icon-"] + span { - margin-left: 0; + margin-left: 0; } .el-transfer__button.is-with-texts { - border-radius: 4px; + border-radius: 4px; } .el-transfer__button.is-disabled, .el-transfer__button.is-disabled:hover { - border: 1px solid #dcdfe6; - background-color: #f5f7fa; - color: #c0c4cc; + border: 1px solid #dcdfe6; + background-color: #f5f7fa; + color: #c0c4cc; } .el-transfer__button:first-child { - margin-bottom: 10px; + margin-bottom: 10px; } .el-transfer__button:nth-child(2) { - margin: 0; + margin: 0; } .el-transfer__button i, .el-transfer__button span { - font-size: 14px; + font-size: 14px; } .el-transfer-panel { - border: 1px solid #ebeef5; - border-radius: 4px; - overflow: hidden; - background: #fff; - display: inline-block; - vertical-align: middle; - width: 200px; - max-height: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; - position: relative; + border: 1px solid #ebeef5; + border-radius: 4px; + overflow: hidden; + background: #fff; + display: inline-block; + vertical-align: middle; + width: 200px; + max-height: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; + position: relative; } .el-transfer-panel__body { - height: 246px; + height: 246px; } .el-transfer-panel__body.is-with-footer { - padding-bottom: 40px; + padding-bottom: 40px; } .el-transfer-panel__list { - margin: 0; - padding: 6px 0; - list-style: none; - height: 246px; - overflow: auto; - -webkit-box-sizing: border-box; - box-sizing: border-box; + margin: 0; + padding: 6px 0; + list-style: none; + height: 246px; + overflow: auto; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-transfer-panel__list.is-filterable { - height: 194px; - padding-top: 0; + height: 194px; + padding-top: 0; } .el-transfer-panel__item { - height: 30px; - line-height: 30px; - padding-left: 15px; - display: block !important; + height: 30px; + line-height: 30px; + padding-left: 15px; + display: block !important; } .el-transfer-panel__item.el-checkbox { - color: #606266; + color: #606266; } .el-transfer-panel__item:hover { - color: #4165d7; + color: #4165d7; } .el-transfer-panel__item.el-checkbox .el-checkbox__label { - width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - display: block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-left: 24px; - line-height: 30px; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + display: block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding-left: 24px; + line-height: 30px; } .el-transfer-panel__item .el-checkbox__input { - position: absolute; - top: 8px; + position: absolute; + top: 8px; } .el-transfer-panel__filter { - text-align: center; - margin: 15px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - display: block; - width: auto; + text-align: center; + margin: 15px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: block; + width: auto; } .el-transfer-panel__filter .el-input__inner { - height: 32px; - width: 100%; - font-size: 12px; - display: inline-block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 16px; - padding-right: 10px; - padding-left: 30px; + height: 32px; + width: 100%; + font-size: 12px; + display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 16px; + padding-right: 10px; + padding-left: 30px; } .el-transfer-panel__filter .el-input__icon { - margin-left: 5px; + margin-left: 5px; } .el-transfer-panel .el-transfer-panel__header { - height: 40px; - line-height: 40px; - background: #f5f7fa; - margin: 0; - padding-left: 15px; - border-bottom: 1px solid #ebeef5; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #000; + height: 40px; + line-height: 40px; + background: #f5f7fa; + margin: 0; + padding-left: 15px; + border-bottom: 1px solid #ebeef5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #000; } .el-transfer-panel .el-transfer-panel__header .el-checkbox { - display: block; - line-height: 40px; + display: block; + line-height: 40px; } .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label { - font-size: 16px; - color: #303133; - font-weight: 400; -} -.el-transfer-panel - .el-transfer-panel__header - .el-checkbox - .el-checkbox__label - span { - position: absolute; - right: 15px; - color: #909399; - font-size: 12px; - font-weight: 400; + font-size: 16px; + color: #303133; + font-weight: 400; +} +.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span { + position: absolute; + right: 15px; + color: #909399; + font-size: 12px; + font-weight: 400; } .el-divider__text, .el-link { - font-weight: 500; - font-size: 14px; + font-weight: 500; + font-size: 14px; } .el-transfer-panel .el-transfer-panel__footer { - height: 40px; - background: #fff; - margin: 0; - padding: 0; - border-top: 1px solid #ebeef5; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - z-index: 1; + height: 40px; + background: #fff; + margin: 0; + padding: 0; + border-top: 1px solid #ebeef5; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + z-index: 1; } .el-transfer-panel .el-transfer-panel__footer::after { - display: inline-block; - content: ""; - height: 100%; - vertical-align: middle; + display: inline-block; + content: ""; + height: 100%; + vertical-align: middle; } .el-container, .el-timeline-item__node { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-transfer-panel .el-transfer-panel__footer .el-checkbox { - padding-left: 20px; - color: #606266; + padding-left: 20px; + color: #606266; } .el-transfer-panel .el-transfer-panel__empty { - margin: 0; - height: 30px; - line-height: 30px; - padding: 6px 15px 0; - color: #909399; - text-align: center; + margin: 0; + height: 30px; + line-height: 30px; + padding: 6px 15px 0; + color: #909399; + text-align: center; } .el-transfer-panel .el-checkbox__label { - padding-left: 8px; + padding-left: 8px; } .el-transfer-panel .el-checkbox__inner { - height: 14px; - width: 14px; - border-radius: 3px; + height: 14px; + width: 14px; + border-radius: 3px; } .el-transfer-panel .el-checkbox__inner::after { - height: 6px; - width: 3px; - left: 4px; + height: 6px; + width: 3px; + left: 4px; } .el-container { - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -ms-flex-preferred-size: auto; - flex-basis: auto; - -webkit-box-sizing: border-box; - box-sizing: border-box; - min-width: 0; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -ms-flex-preferred-size: auto; + flex-basis: auto; + -webkit-box-sizing: border-box; + box-sizing: border-box; + min-width: 0; } .el-container.is-vertical, .el-drawer { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; } .el-aside, .el-header { - -webkit-box-sizing: border-box; + -webkit-box-sizing: border-box; } .el-container.is-vertical { - -ms-flex-direction: column; - flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; } .el-header { - padding: 0 20px; - box-sizing: border-box; - -ms-flex-negative: 0; - flex-shrink: 0; + padding: 0 20px; + box-sizing: border-box; + -ms-flex-negative: 0; + flex-shrink: 0; } .el-aside { - overflow: auto; - box-sizing: border-box; - -ms-flex-negative: 0; - flex-shrink: 0; + overflow: auto; + box-sizing: border-box; + -ms-flex-negative: 0; + flex-shrink: 0; } .el-footer, .el-main { - -webkit-box-sizing: border-box; + -webkit-box-sizing: border-box; } .el-main { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -ms-flex-preferred-size: auto; - flex-basis: auto; - overflow: auto; - box-sizing: border-box; - padding: 20px; + display: block; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -ms-flex-preferred-size: auto; + flex-basis: auto; + overflow: auto; + box-sizing: border-box; + padding: 20px; } .el-footer { - padding: 0 20px; - box-sizing: border-box; - -ms-flex-negative: 0; - flex-shrink: 0; + padding: 0 20px; + box-sizing: border-box; + -ms-flex-negative: 0; + flex-shrink: 0; } .el-timeline { - margin: 0; - font-size: 14px; - list-style: none; + margin: 0; + font-size: 14px; + list-style: none; } .el-timeline .el-timeline-item:last-child .el-timeline-item__tail { - display: none; + display: none; } .el-timeline-item { - position: relative; - padding-bottom: 20px; + position: relative; + padding-bottom: 20px; } .el-timeline-item__wrapper { - position: relative; - padding-left: 28px; - top: -3px; + position: relative; + padding-left: 28px; + top: -3px; } .el-timeline-item__tail { - position: absolute; - left: 4px; - height: 100%; - border-left: 2px solid #e4e7ed; + position: absolute; + left: 4px; + height: 100%; + border-left: 2px solid #e4e7ed; } .el-timeline-item__icon { - color: #fff; - font-size: 13px; + color: #fff; + font-size: 13px; } .el-timeline-item__node { - position: absolute; - background-color: #e4e7ed; - border-radius: 50%; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + position: absolute; + background-color: #e4e7ed; + border-radius: 50%; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-image__error, .el-timeline-item__dot { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-timeline-item__node--normal { - left: -1px; - width: 12px; - height: 12px; + left: -1px; + width: 12px; + height: 12px; } .el-timeline-item__node--large { - left: -2px; - width: 14px; - height: 14px; + left: -2px; + width: 14px; + height: 14px; } .el-timeline-item__node--primary { - background-color: #4165d7; + background-color: #4165d7; } .el-timeline-item__node--success { - background-color: #67c23a; + background-color: #67c23a; } .el-timeline-item__node--warning { - background-color: #e6a23c; + background-color: #e6a23c; } .el-timeline-item__node--danger { - background-color: #f56c6c; + background-color: #f56c6c; } .el-timeline-item__node--info { - background-color: #909399; + background-color: #909399; } .el-timeline-item__dot { - position: absolute; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + position: absolute; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-timeline-item__content { - color: #303133; + color: #303133; } .el-timeline-item__timestamp { - color: #909399; - line-height: 1; - font-size: 13px; + color: #909399; + line-height: 1; + font-size: 13px; } .el-timeline-item__timestamp.is-top { - margin-bottom: 8px; - padding-top: 4px; + margin-bottom: 8px; + padding-top: 4px; } .el-timeline-item__timestamp.is-bottom { - margin-top: 8px; + margin-top: 8px; } .el-link { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - vertical-align: middle; - position: relative; - text-decoration: none; - outline: 0; - padding: 0; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + vertical-align: middle; + position: relative; + text-decoration: none; + outline: 0; + padding: 0; } .el-link.is-underline:hover:after { - content: ""; - position: absolute; - left: 0; - right: 0; - height: 0; - bottom: 0; - border-bottom: 1px solid #4165d7; + content: ""; + position: absolute; + left: 0; + right: 0; + height: 0; + bottom: 0; + border-bottom: 1px solid #4165d7; } .el-link.el-link--default:after, .el-link.el-link--primary.is-underline:hover:after, .el-link.el-link--primary:after { - border-color: #4165d7; + border-color: #4165d7; } .el-link.is-disabled { - cursor: not-allowed; + cursor: not-allowed; } .el-link [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-link.el-link--default { - color: #606266; + color: #606266; } .el-link.el-link--default:hover { - color: #4165d7; + color: #4165d7; } .el-link.el-link--default.is-disabled { - color: #c0c4cc; + color: #c0c4cc; } .el-link.el-link--primary { - color: #4165d7; + color: #4165d7; } .el-link.el-link--primary:hover { - color: #6784df; + color: rgb(103, 132, 223); } .el-link.el-link--primary.is-disabled { - color: #a0b2eb; + color: rgb(160, 178, 235); } .el-link.el-link--danger.is-underline:hover:after, .el-link.el-link--danger:after { - border-color: #f56c6c; + border-color: #f56c6c; } .el-link.el-link--danger { - color: #f56c6c; + color: #f56c6c; } .el-link.el-link--danger:hover { - color: #f78989; + color: #f78989; } .el-link.el-link--danger.is-disabled { - color: #fab6b6; + color: #fab6b6; } .el-link.el-link--success.is-underline:hover:after, .el-link.el-link--success:after { - border-color: #67c23a; + border-color: #67c23a; } .el-link.el-link--success { - color: #67c23a; + color: #67c23a; } .el-link.el-link--success:hover { - color: #85ce61; + color: #85ce61; } .el-link.el-link--success.is-disabled { - color: #b3e19d; + color: #b3e19d; } .el-link.el-link--warning.is-underline:hover:after, .el-link.el-link--warning:after { - border-color: #e6a23c; + border-color: #e6a23c; } .el-link.el-link--warning { - color: #e6a23c; + color: #e6a23c; } .el-link.el-link--warning:hover { - color: #ebb563; + color: #ebb563; } .el-link.el-link--warning.is-disabled { - color: #f3d19e; + color: #f3d19e; } .el-link.el-link--info.is-underline:hover:after, .el-link.el-link--info:after { - border-color: #909399; + border-color: #909399; } .el-link.el-link--info { - color: #909399; + color: #909399; } .el-link.el-link--info:hover { - color: #a6a9ad; + color: #a6a9ad; } .el-link.el-link--info.is-disabled { - color: #c8c9cc; + color: #c8c9cc; } .el-divider { - background-color: #dcdfe6; - position: relative; + background-color: #dcdfe6; + position: relative; } .el-divider--horizontal { - display: block; - height: 1px; - width: 100%; - margin: 24px 0; + display: block; + height: 1px; + width: 100%; + margin: 24px 0; } .el-divider--vertical { - display: inline-block; - width: 1px; - height: 1em; - margin: 0 8px; - vertical-align: middle; - position: relative; + display: inline-block; + width: 1px; + height: 1em; + margin: 0 8px; + vertical-align: middle; + position: relative; } .el-divider__text { - position: absolute; - background-color: #fff; - padding: 0 20px; - color: #303133; + position: absolute; + background-color: #fff; + padding: 0 20px; + color: #303133; } .el-image__error, .el-image__placeholder { - background: #f5f7fa; + background: #f5f7fa; } .el-divider__text.is-left { - left: 20px; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); + left: 20px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } .el-divider__text.is-center { - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); + left: 50%; + -webkit-transform: translateX(-50%) translateY(-50%); + transform: translateX(-50%) translateY(-50%); } .el-divider__text.is-right { - right: 20px; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); + right: 20px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } .el-image__error, .el-image__inner, .el-image__placeholder { - width: 100%; - height: 100%; + width: 100%; + height: 100%; } .el-image { - position: relative; - display: inline-block; - overflow: hidden; + position: relative; + display: inline-block; + overflow: hidden; } .el-image__inner { - vertical-align: top; + vertical-align: top; } .el-image__inner--center { - position: relative; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - display: block; + position: relative; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + display: block; } .el-image__error { - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - font-size: 14px; - color: #c0c4cc; - vertical-align: middle; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-size: 14px; + color: #c0c4cc; + vertical-align: middle; } .el-image__preview { - cursor: pointer; + cursor: pointer; } .el-image-viewer__wrapper { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; } .el-image-viewer__btn { - position: absolute; - z-index: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - border-radius: 50%; - opacity: 0.8; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; - user-select: none; + position: absolute; + z-index: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + border-radius: 50%; + opacity: 0.8; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; + user-select: none; } .el-button, .el-checkbox { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; } .el-image-viewer__close { - top: 40px; - right: 40px; - width: 40px; - height: 40px; - font-size: 24px; - color: #fff; - background-color: #606266; + top: 40px; + right: 40px; + width: 40px; + height: 40px; + font-size: 24px; + color: #fff; + background-color: #606266; } .el-image-viewer__canvas { - width: 100%; - height: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + width: 100%; + height: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-image-viewer__actions { - left: 50%; - bottom: 30px; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - width: 282px; - height: 44px; - padding: 0 23px; - background-color: #606266; - border-color: #fff; - border-radius: 22px; + left: 50%; + bottom: 30px; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + width: 282px; + height: 44px; + padding: 0 23px; + background-color: #606266; + border-color: #fff; + border-radius: 22px; } .el-image-viewer__actions__inner { - width: 100%; - height: 100%; - text-align: justify; - cursor: default; - font-size: 23px; - color: #fff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: distribute; - justify-content: space-around; + width: 100%; + height: 100%; + text-align: justify; + cursor: default; + font-size: 23px; + color: #fff; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: distribute; + justify-content: space-around; } .el-image-viewer__next, .el-image-viewer__prev { - top: 50%; - width: 44px; - height: 44px; - font-size: 24px; - color: #fff; - background-color: #606266; - border-color: #fff; + top: 50%; + width: 44px; + height: 44px; + font-size: 24px; + color: #fff; + background-color: #606266; + border-color: #fff; } .el-image-viewer__prev { - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - left: 40px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + left: 40px; } .el-image-viewer__next { - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - right: 40px; - text-indent: 2px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + right: 40px; + text-indent: 2px; } .el-image-viewer__mask { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - opacity: 0.5; - background: #000; + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + opacity: 0.5; + background: #000; } .viewer-fade-enter-active { - -webkit-animation: viewer-fade-in 0.3s; - animation: viewer-fade-in 0.3s; + -webkit-animation: viewer-fade-in 0.3s; + animation: viewer-fade-in 0.3s; } .viewer-fade-leave-active { - -webkit-animation: viewer-fade-out 0.3s; - animation: viewer-fade-out 0.3s; + -webkit-animation: viewer-fade-out 0.3s; + animation: viewer-fade-out 0.3s; } @-webkit-keyframes viewer-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @keyframes viewer-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @-webkit-keyframes viewer-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } @keyframes viewer-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } .el-button { - display: inline-block; - line-height: 1; - white-space: nowrap; - cursor: pointer; - background: #fff; - border: 1px solid #dcdfe6; - color: #606266; - -webkit-appearance: none; - text-align: center; - -webkit-box-sizing: border-box; - box-sizing: border-box; - outline: 0; - margin: 0; - -webkit-transition: 0.1s; - transition: 0.1s; - font-weight: 500; - padding: 12px 20px; - font-size: 14px; - border-radius: 4px; + display: inline-block; + line-height: 1; + white-space: nowrap; + cursor: pointer; + background: #fff; + border: 1px solid #dcdfe6; + color: #606266; + -webkit-appearance: none; + text-align: center; + -webkit-box-sizing: border-box; + box-sizing: border-box; + outline: 0; + margin: 0; + -webkit-transition: 0.1s; + transition: 0.1s; + font-weight: 500; + padding: 12px 20px; + font-size: 14px; + border-radius: 4px; } .el-button + .el-button { - margin-left: 10px; + margin-left: 10px; } .el-button:focus, .el-button:hover { - color: #4165d7; - border-color: #c6d1f3; - background-color: #ecf0fb; + color: #4165d7; + border-color: rgb(198, 209, 243); + background-color: rgb(236, 240, 251); } .el-button:active { - color: #3b5bc2; - border-color: #3b5bc2; - outline: 0; + color: rgb(59, 91, 194); + border-color: rgb(59, 91, 194); + outline: 0; } .el-button::-moz-focus-inner { - border: 0; + border: 0; } .el-button [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-button.is-plain:focus, .el-button.is-plain:hover { - background: #fff; - border-color: #4165d7; - color: #4165d7; + background: #fff; + border-color: #4165d7; + color: #4165d7; } .el-button.is-active, .el-button.is-plain:active { - color: #3b5bc2; - border-color: #3b5bc2; + color: rgb(59, 91, 194); + border-color: rgb(59, 91, 194); } .el-button.is-plain:active { - background: #fff; - outline: 0; + background: #fff; + outline: 0; } .el-button.is-disabled, .el-button.is-disabled:focus, .el-button.is-disabled:hover { - color: #c0c4cc; - cursor: not-allowed; - background-image: none; - background-color: #fff; - border-color: #ebeef5; + color: #c0c4cc; + cursor: not-allowed; + background-image: none; + background-color: #fff; + border-color: #ebeef5; } .el-button.is-disabled.el-button--text { - background-color: transparent; + background-color: transparent; } .el-button.is-disabled.is-plain, .el-button.is-disabled.is-plain:focus, .el-button.is-disabled.is-plain:hover { - background-color: #fff; - border-color: #ebeef5; - color: #c0c4cc; + background-color: #fff; + border-color: #ebeef5; + color: #c0c4cc; } .el-button.is-loading { - position: relative; - pointer-events: none; + position: relative; + pointer-events: none; } .el-button.is-loading:before { - pointer-events: none; - content: ""; - position: absolute; - left: -1px; - top: -1px; - right: -1px; - bottom: -1px; - border-radius: inherit; - background-color: rgba(255, 255, 255, 0.35); + pointer-events: none; + content: ""; + position: absolute; + left: -1px; + top: -1px; + right: -1px; + bottom: -1px; + border-radius: inherit; + background-color: rgba(255, 255, 255, 0.35); } .el-button.is-round { - border-radius: 20px; - padding: 12px 23px; + border-radius: 20px; + padding: 12px 23px; } .el-button.is-circle { - border-radius: 50%; - padding: 12px; + border-radius: 50%; + padding: 12px; } .el-button--primary { - color: #fff; - background-color: #4165d7; - border-color: #4165d7; + color: #fff; + background-color: #4165d7; + border-color: #4165d7; } .el-button--primary:focus, .el-button--primary:hover { - background: #6784df; - border-color: #6784df; - color: #fff; + background: rgb(103, 132, 223); + border-color: rgb(103, 132, 223); + color: #fff; } .el-button--primary.is-active, .el-button--primary:active { - background: #3b5bc2; - border-color: #3b5bc2; - color: #fff; + background: rgb(59, 91, 194); + border-color: rgb(59, 91, 194); + color: #fff; } .el-button--primary:active { - outline: 0; + outline: 0; } .el-button--primary.is-disabled, .el-button--primary.is-disabled:active, .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:hover { - color: #fff; - background-color: #a0b2eb; - border-color: #a0b2eb; + color: #fff; + background-color: rgb(160, 178, 235); + border-color: rgb(160, 178, 235); } .el-button--primary.is-plain { - color: #4165d7; - background: #ecf0fb; - border-color: #b3c1ef; + color: #4165d7; + background: rgb(236, 240, 251); + border-color: rgb(179, 193, 239); } .el-button--primary.is-plain:focus, .el-button--primary.is-plain:hover { - background: #4165d7; - border-color: #4165d7; - color: #fff; + background: #4165d7; + border-color: #4165d7; + color: #fff; } .el-button--primary.is-plain:active { - background: #3b5bc2; - border-color: #3b5bc2; - color: #fff; - outline: 0; + background: rgb(59, 91, 194); + border-color: rgb(59, 91, 194); + color: #fff; + outline: 0; } .el-button--primary.is-plain.is-disabled, .el-button--primary.is-plain.is-disabled:active, .el-button--primary.is-plain.is-disabled:focus, .el-button--primary.is-plain.is-disabled:hover { - color: #8da3e7; - background-color: #ecf0fb; - border-color: #d9e0f7; + color: rgb(141, 163, 231); + background-color: rgb(236, 240, 251); + border-color: rgb(217, 224, 247); } .el-button--success { - color: #fff; - background-color: #67c23a; - border-color: #67c23a; + color: #fff; + background-color: #67c23a; + border-color: #67c23a; } .el-button--success:focus, .el-button--success:hover { - background: #85ce61; - border-color: #85ce61; - color: #fff; + background: #85ce61; + border-color: #85ce61; + color: #fff; } .el-button--success.is-active, .el-button--success:active { - background: #5daf34; - border-color: #5daf34; - color: #fff; + background: #5daf34; + border-color: #5daf34; + color: #fff; } .el-button--success:active { - outline: 0; + outline: 0; } .el-button--success.is-disabled, .el-button--success.is-disabled:active, .el-button--success.is-disabled:focus, .el-button--success.is-disabled:hover { - color: #fff; - background-color: #b3e19d; - border-color: #b3e19d; + color: #fff; + background-color: #b3e19d; + border-color: #b3e19d; } .el-button--success.is-plain { - color: #67c23a; - background: #f0f9eb; - border-color: #c2e7b0; + color: #67c23a; + background: #f0f9eb; + border-color: #c2e7b0; } .el-button--success.is-plain:focus, .el-button--success.is-plain:hover { - background: #67c23a; - border-color: #67c23a; - color: #fff; + background: #67c23a; + border-color: #67c23a; + color: #fff; } .el-button--success.is-plain:active { - background: #5daf34; - border-color: #5daf34; - color: #fff; - outline: 0; + background: #5daf34; + border-color: #5daf34; + color: #fff; + outline: 0; } .el-button--success.is-plain.is-disabled, .el-button--success.is-plain.is-disabled:active, .el-button--success.is-plain.is-disabled:focus, .el-button--success.is-plain.is-disabled:hover { - color: #a4da89; - background-color: #f0f9eb; - border-color: #e1f3d8; + color: #a4da89; + background-color: #f0f9eb; + border-color: #e1f3d8; } .el-button--warning { - color: #fff; - background-color: #e6a23c; - border-color: #e6a23c; + color: #fff; + background-color: #e6a23c; + border-color: #e6a23c; } .el-button--warning:focus, .el-button--warning:hover { - background: #ebb563; - border-color: #ebb563; - color: #fff; + background: #ebb563; + border-color: #ebb563; + color: #fff; } .el-button--warning.is-active, .el-button--warning:active { - background: #cf9236; - border-color: #cf9236; - color: #fff; + background: #cf9236; + border-color: #cf9236; + color: #fff; } .el-button--warning:active { - outline: 0; + outline: 0; } .el-button--warning.is-disabled, .el-button--warning.is-disabled:active, .el-button--warning.is-disabled:focus, .el-button--warning.is-disabled:hover { - color: #fff; - background-color: #f3d19e; - border-color: #f3d19e; + color: #fff; + background-color: #f3d19e; + border-color: #f3d19e; } .el-button--warning.is-plain { - color: #e6a23c; - background: #fdf6ec; - border-color: #f5dab1; + color: #e6a23c; + background: #fdf6ec; + border-color: #f5dab1; } .el-button--warning.is-plain:focus, .el-button--warning.is-plain:hover { - background: #e6a23c; - border-color: #e6a23c; - color: #fff; + background: #e6a23c; + border-color: #e6a23c; + color: #fff; } .el-button--warning.is-plain:active { - background: #cf9236; - border-color: #cf9236; - color: #fff; - outline: 0; + background: #cf9236; + border-color: #cf9236; + color: #fff; + outline: 0; } .el-button--warning.is-plain.is-disabled, .el-button--warning.is-plain.is-disabled:active, .el-button--warning.is-plain.is-disabled:focus, .el-button--warning.is-plain.is-disabled:hover { - color: #f0c78a; - background-color: #fdf6ec; - border-color: #faecd8; + color: #f0c78a; + background-color: #fdf6ec; + border-color: #faecd8; } .el-button--danger { - color: #fff; - background-color: #f56c6c; - border-color: #f56c6c; + color: #fff; + background-color: #f56c6c; + border-color: #f56c6c; } .el-button--danger:focus, .el-button--danger:hover { - background: #f78989; - border-color: #f78989; - color: #fff; + background: #f78989; + border-color: #f78989; + color: #fff; } .el-button--danger.is-active, .el-button--danger:active { - background: #dd6161; - border-color: #dd6161; - color: #fff; + background: #dd6161; + border-color: #dd6161; + color: #fff; } .el-button--danger:active { - outline: 0; + outline: 0; } .el-button--danger.is-disabled, .el-button--danger.is-disabled:active, .el-button--danger.is-disabled:focus, .el-button--danger.is-disabled:hover { - color: #fff; - background-color: #fab6b6; - border-color: #fab6b6; + color: #fff; + background-color: #fab6b6; + border-color: #fab6b6; } .el-button--danger.is-plain { - color: #f56c6c; - background: #fef0f0; - border-color: #fbc4c4; + color: #f56c6c; + background: #fef0f0; + border-color: #fbc4c4; } .el-button--danger.is-plain:focus, .el-button--danger.is-plain:hover { - background: #f56c6c; - border-color: #f56c6c; - color: #fff; + background: #f56c6c; + border-color: #f56c6c; + color: #fff; } .el-button--danger.is-plain:active { - background: #dd6161; - border-color: #dd6161; - color: #fff; - outline: 0; + background: #dd6161; + border-color: #dd6161; + color: #fff; + outline: 0; } .el-button--danger.is-plain.is-disabled, .el-button--danger.is-plain.is-disabled:active, .el-button--danger.is-plain.is-disabled:focus, .el-button--danger.is-plain.is-disabled:hover { - color: #f9a7a7; - background-color: #fef0f0; - border-color: #fde2e2; + color: #f9a7a7; + background-color: #fef0f0; + border-color: #fde2e2; } .el-button--info { - color: #fff; - background-color: #909399; - border-color: #909399; + color: #fff; + background-color: #909399; + border-color: #909399; } .el-button--info:focus, .el-button--info:hover { - background: #a6a9ad; - border-color: #a6a9ad; - color: #fff; + background: #a6a9ad; + border-color: #a6a9ad; + color: #fff; } .el-button--info.is-active, .el-button--info:active { - background: #82848a; - border-color: #82848a; - color: #fff; + background: #82848a; + border-color: #82848a; + color: #fff; } .el-button--info:active { - outline: 0; + outline: 0; } .el-button--info.is-disabled, .el-button--info.is-disabled:active, .el-button--info.is-disabled:focus, .el-button--info.is-disabled:hover { - color: #fff; - background-color: #c8c9cc; - border-color: #c8c9cc; + color: #fff; + background-color: #c8c9cc; + border-color: #c8c9cc; } .el-button--info.is-plain { - color: #909399; - background: #f4f4f5; - border-color: #d3d4d6; + color: #909399; + background: #f4f4f5; + border-color: #d3d4d6; } .el-button--info.is-plain:focus, .el-button--info.is-plain:hover { - background: #909399; - border-color: #909399; - color: #fff; + background: #909399; + border-color: #909399; + color: #fff; } .el-button--info.is-plain:active { - background: #82848a; - border-color: #82848a; - color: #fff; - outline: 0; + background: #82848a; + border-color: #82848a; + color: #fff; + outline: 0; } .el-button--info.is-plain.is-disabled, .el-button--info.is-plain.is-disabled:active, .el-button--info.is-plain.is-disabled:focus, .el-button--info.is-plain.is-disabled:hover { - color: #bcbec2; - background-color: #f4f4f5; - border-color: #e9e9eb; + color: #bcbec2; + background-color: #f4f4f5; + border-color: #e9e9eb; } .el-button--text, .el-button--text.is-disabled, .el-button--text.is-disabled:focus, .el-button--text.is-disabled:hover, .el-button--text:active { - border-color: transparent; + border-color: transparent; } .el-button--medium { - padding: 10px 20px; - font-size: 14px; - border-radius: 4px; + padding: 10px 20px; + font-size: 14px; + border-radius: 4px; } .el-button--mini, .el-button--small { - font-size: 12px; - border-radius: 3px; + font-size: 12px; + border-radius: 3px; } .el-button--medium.is-round { - padding: 10px 20px; + padding: 10px 20px; } .el-button--medium.is-circle { - padding: 10px; + padding: 10px; } .el-button--small, .el-button--small.is-round { - padding: 9px 15px; + padding: 9px 15px; } .el-button--small.is-circle { - padding: 9px; + padding: 9px; } .el-button--mini, .el-button--mini.is-round { - padding: 7px 15px; + padding: 7px 15px; } .el-button--mini.is-circle { - padding: 7px; + padding: 7px; } .el-button--text { - color: #4165d7; - background: 0 0; - padding-left: 0; - padding-right: 0; + color: #4165d7; + background: 0 0; + padding-left: 0; + padding-right: 0; } .el-button--text:focus, .el-button--text:hover { - color: #6784df; - border-color: transparent; - background-color: transparent; + color: rgb(103, 132, 223); + border-color: transparent; + background-color: transparent; } .el-button--text:active { - color: #3b5bc2; - background-color: transparent; + color: rgb(59, 91, 194); + background-color: transparent; } .el-button-group { - display: inline-block; - vertical-align: middle; + display: inline-block; + vertical-align: middle; } .el-button-group::after, .el-button-group::before { - display: table; - content: ""; + display: table; + content: ""; } .el-button-group::after { - clear: both; + clear: both; } .el-button-group > .el-button { - float: left; - position: relative; + float: left; + position: relative; } .el-button-group > .el-button + .el-button { - margin-left: 0; + margin-left: 0; } .el-button-group > .el-button.is-disabled { - z-index: 1; + z-index: 1; } .el-button-group > .el-button:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 0; } .el-button-group > .el-button:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } .el-button-group > .el-button:first-child:last-child { - border-radius: 4px; + border-radius: 4px; } .el-button-group > .el-button:first-child:last-child.is-round { - border-radius: 20px; + border-radius: 20px; } .el-button-group > .el-button:first-child:last-child.is-circle { - border-radius: 50%; + border-radius: 50%; } .el-button-group > .el-button:not(:first-child):not(:last-child) { - border-radius: 0; + border-radius: 0; } .el-button-group > .el-button:not(:last-child) { - margin-right: -1px; + margin-right: -1px; } .el-button-group > .el-button.is-active, .el-button-group > .el-button:active, .el-button-group > .el-button:focus, .el-button-group > .el-button:hover { - z-index: 1; + z-index: 1; } .el-button-group > .el-dropdown > .el-button { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-color: rgba(255, 255, 255, 0.5); + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--primary:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--primary:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--primary:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--success:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--success:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--success:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--warning:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--warning:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--warning:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--danger:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--danger:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--danger:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--info:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--info:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--info:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-calendar { - background-color: #fff; + background-color: #fff; } .el-calendar__header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 12px 20px; - border-bottom: 1px solid #ebeef5; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 12px 20px; + border-bottom: 1px solid #ebeef5; } .el-backtop, .el-page-header { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-calendar__title { - color: #000; - -ms-flex-item-align: center; - align-self: center; + color: #000; + -ms-flex-item-align: center; + align-self: center; } .el-calendar__body { - padding: 12px 20px 35px; + padding: 12px 20px 35px; } .el-calendar-table { - table-layout: fixed; - width: 100%; + table-layout: fixed; + width: 100%; } .el-calendar-table thead th { - padding: 12px 0; - color: #606266; - font-weight: 400; + padding: 12px 0; + color: #606266; + font-weight: 400; } .el-calendar-table:not(.is-range) td.next, .el-calendar-table:not(.is-range) td.prev { - color: #c0c4cc; + color: #c0c4cc; } .el-backtop, .el-calendar-table td.is-today { - color: #4165d7; + color: #4165d7; } .el-calendar-table td { - border-bottom: 1px solid #ebeef5; - border-right: 1px solid #ebeef5; - vertical-align: top; - -webkit-transition: background-color 0.2s ease; - transition: background-color 0.2s ease; + border-bottom: 1px solid #ebeef5; + border-right: 1px solid #ebeef5; + vertical-align: top; + -webkit-transition: background-color 0.2s ease; + transition: background-color 0.2s ease; } .el-calendar-table td.is-selected { - background-color: #f2f8fe; + background-color: #f2f8fe; } .el-calendar-table tr:first-child td { - border-top: 1px solid #ebeef5; + border-top: 1px solid #ebeef5; } .el-calendar-table tr td:first-child { - border-left: 1px solid #ebeef5; + border-left: 1px solid #ebeef5; } .el-calendar-table tr.el-calendar-table__row--hide-border td { - border-top: none; + border-top: none; } .el-calendar-table .el-calendar-day { - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding: 8px; - height: 85px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 8px; + height: 85px; } .el-calendar-table .el-calendar-day:hover { - cursor: pointer; - background-color: #f2f8fe; + cursor: pointer; + background-color: #f2f8fe; } .el-backtop { - position: fixed; - background-color: #fff; - width: 40px; - height: 40px; - border-radius: 50%; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - font-size: 20px; - -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); - box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); - cursor: pointer; - z-index: 5; + position: fixed; + background-color: #fff; + width: 40px; + height: 40px; + border-radius: 50%; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + font-size: 20px; + -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); + box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); + cursor: pointer; + z-index: 5; } .el-backtop:hover { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-page-header { - display: flex; - line-height: 24px; + display: flex; + line-height: 24px; } .el-page-header__left { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - cursor: pointer; - margin-right: 40px; - position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + cursor: pointer; + margin-right: 40px; + position: relative; } .el-page-header__left::after { - content: ""; - position: absolute; - width: 1px; - height: 16px; - right: -20px; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - background-color: #dcdfe6; + content: ""; + position: absolute; + width: 1px; + height: 16px; + right: -20px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + background-color: #dcdfe6; } .el-checkbox, .el-checkbox__input { - display: inline-block; - position: relative; - white-space: nowrap; + display: inline-block; + position: relative; + white-space: nowrap; } .el-page-header__left .el-icon-back { - font-size: 18px; - margin-right: 6px; - -ms-flex-item-align: center; - align-self: center; + font-size: 18px; + margin-right: 6px; + -ms-flex-item-align: center; + align-self: center; } .el-page-header__title { - font-size: 14px; - font-weight: 500; + font-size: 14px; + font-weight: 500; } .el-page-header__content { - font-size: 18px; - color: #303133; + font-size: 18px; + color: #303133; } .el-checkbox { - color: #606266; - font-weight: 500; - font-size: 14px; - cursor: pointer; - user-select: none; - margin-right: 30px; + color: #606266; + font-weight: 500; + font-size: 14px; + cursor: pointer; + user-select: none; + margin-right: 30px; } .el-checkbox-button__inner, .el-radio { - font-weight: 500; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; + font-weight: 500; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } .el-checkbox.is-bordered { - padding: 9px 20px 9px 10px; - border-radius: 4px; - border: 1px solid #dcdfe6; - -webkit-box-sizing: border-box; - box-sizing: border-box; - line-height: normal; - height: 40px; + padding: 9px 20px 9px 10px; + border-radius: 4px; + border: 1px solid #dcdfe6; + -webkit-box-sizing: border-box; + box-sizing: border-box; + line-height: normal; + height: 40px; } .el-checkbox.is-bordered.is-checked { - border-color: #4165d7; + border-color: #4165d7; } .el-checkbox.is-bordered.is-disabled { - border-color: #ebeef5; - cursor: not-allowed; + border-color: #ebeef5; + cursor: not-allowed; } .el-checkbox.is-bordered + .el-checkbox.is-bordered { - margin-left: 10px; + margin-left: 10px; } .el-checkbox.is-bordered.el-checkbox--medium { - padding: 7px 20px 7px 10px; - border-radius: 4px; - height: 36px; + padding: 7px 20px 7px 10px; + border-radius: 4px; + height: 36px; } .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label { - line-height: 17px; - font-size: 14px; + line-height: 17px; + font-size: 14px; } .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner { - height: 14px; - width: 14px; + height: 14px; + width: 14px; } .el-checkbox.is-bordered.el-checkbox--small { - padding: 5px 15px 5px 10px; - border-radius: 3px; - height: 32px; + padding: 5px 15px 5px 10px; + border-radius: 3px; + height: 32px; } .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label { - line-height: 15px; - font-size: 12px; + line-height: 15px; + font-size: 12px; } .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after { - height: 6px; - width: 2px; + height: 6px; + width: 2px; } .el-checkbox.is-bordered.el-checkbox--mini { - padding: 3px 15px 3px 10px; - border-radius: 3px; - height: 28px; + padding: 3px 15px 3px 10px; + border-radius: 3px; + height: 28px; } .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label { - line-height: 12px; - font-size: 12px; + line-height: 12px; + font-size: 12px; } .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after { - height: 6px; - width: 2px; + height: 6px; + width: 2px; } .el-checkbox__input { - cursor: pointer; - outline: 0; - line-height: 1; - vertical-align: middle; + cursor: pointer; + outline: 0; + line-height: 1; + vertical-align: middle; } .el-checkbox__input.is-disabled .el-checkbox__inner { - background-color: #edf2fc; - border-color: #dcdfe6; - cursor: not-allowed; + background-color: #edf2fc; + border-color: #dcdfe6; + cursor: not-allowed; } .el-checkbox__input.is-disabled .el-checkbox__inner::after { - cursor: not-allowed; - border-color: #c0c4cc; + cursor: not-allowed; + border-color: #c0c4cc; } .el-checkbox__input.is-disabled .el-checkbox__inner + .el-checkbox__label { - cursor: not-allowed; + cursor: not-allowed; } .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner { - background-color: #f2f6fc; - border-color: #dcdfe6; + background-color: #f2f6fc; + border-color: #dcdfe6; } .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner { - background-color: #f2f6fc; - border-color: #dcdfe6; + background-color: #f2f6fc; + border-color: #dcdfe6; } .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before { - background-color: #c0c4cc; - border-color: #c0c4cc; + background-color: #c0c4cc; + border-color: #c0c4cc; } .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner { - background-color: #4165d7; - border-color: #4165d7; + background-color: #4165d7; + border-color: #4165d7; } .el-checkbox__input.is-disabled + span.el-checkbox__label { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-checkbox__input.is-checked .el-checkbox__inner::after { - -webkit-transform: rotate(45deg) scaleY(1); - transform: rotate(45deg) scaleY(1); + -webkit-transform: rotate(45deg) scaleY(1); + transform: rotate(45deg) scaleY(1); } .el-checkbox__input.is-checked + .el-checkbox__label { - color: #4165d7; + color: #4165d7; } .el-checkbox__input.is-focus .el-checkbox__inner { - border-color: #4165d7; + border-color: #4165d7; } .el-checkbox__input.is-indeterminate .el-checkbox__inner::before { - content: ""; - position: absolute; - display: block; - background-color: #fff; - height: 2px; - -webkit-transform: scale(0.5); - transform: scale(0.5); - left: 0; - right: 0; - top: 5px; + content: ""; + position: absolute; + display: block; + background-color: #fff; + height: 2px; + -webkit-transform: scale(0.5); + transform: scale(0.5); + left: 0; + right: 0; + top: 5px; } .el-checkbox__input.is-indeterminate .el-checkbox__inner::after { - display: none; + display: none; } .el-checkbox__inner { - display: inline-block; - position: relative; - border: 1px solid #dcdfe6; - border-radius: 2px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 14px; - height: 14px; - background-color: #fff; - z-index: 1; - -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), - background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); - transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), - background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); + display: inline-block; + position: relative; + border: 1px solid #dcdfe6; + border-radius: 2px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 14px; + height: 14px; + background-color: #fff; + z-index: 1; + -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), + background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); + transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), + background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); } .el-checkbox__inner:hover { - border-color: #4165d7; + border-color: #4165d7; } .el-checkbox__inner::after { - -webkit-box-sizing: content-box; - box-sizing: content-box; - content: ""; - border: 1px solid #fff; - border-left: 0; - border-top: 0; - height: 7px; - left: 4px; - position: absolute; - top: 1px; - -webkit-transform: rotate(45deg) scaleY(0); - transform: rotate(45deg) scaleY(0); - width: 3px; - -webkit-transition: -webkit-transform 0.15s ease-in 0.05s; - transition: -webkit-transform 0.15s ease-in 0.05s; - transition: transform 0.15s ease-in 0.05s; - transition: transform 0.15s ease-in 0.05s, - -webkit-transform 0.15s ease-in 0.05s; - -webkit-transform-origin: center; - transform-origin: center; + -webkit-box-sizing: content-box; + box-sizing: content-box; + content: ""; + border: 1px solid #fff; + border-left: 0; + border-top: 0; + height: 7px; + left: 4px; + position: absolute; + top: 1px; + -webkit-transform: rotate(45deg) scaleY(0); + transform: rotate(45deg) scaleY(0); + width: 3px; + -webkit-transition: -webkit-transform 0.15s ease-in 0.05s; + transition: -webkit-transform 0.15s ease-in 0.05s; + transition: transform 0.15s ease-in 0.05s; + transition: transform 0.15s ease-in 0.05s, -webkit-transform 0.15s ease-in 0.05s; + -webkit-transform-origin: center; + transform-origin: center; } .el-checkbox__original { - opacity: 0; - outline: 0; - position: absolute; - margin: 0; - width: 0; - height: 0; - z-index: -1; + opacity: 0; + outline: 0; + position: absolute; + margin: 0; + width: 0; + height: 0; + z-index: -1; } .el-checkbox-button, .el-checkbox-button__inner { - display: inline-block; - position: relative; + display: inline-block; + position: relative; } .el-checkbox__label { - display: inline-block; - padding-left: 10px; - line-height: 19px; - font-size: 14px; + display: inline-block; + padding-left: 10px; + line-height: 19px; + font-size: 14px; } .el-checkbox:last-of-type { - margin-right: 0; + margin-right: 0; } .el-checkbox-button__inner { - line-height: 1; - white-space: nowrap; - vertical-align: middle; - cursor: pointer; - background: #fff; - border: 1px solid #dcdfe6; - border-left: 0; - color: #606266; - -webkit-appearance: none; - text-align: center; - -webkit-box-sizing: border-box; - box-sizing: border-box; - outline: 0; - margin: 0; - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - padding: 12px 20px; - font-size: 14px; - border-radius: 0; + line-height: 1; + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + background: #fff; + border: 1px solid #dcdfe6; + border-left: 0; + color: #606266; + -webkit-appearance: none; + text-align: center; + -webkit-box-sizing: border-box; + box-sizing: border-box; + outline: 0; + margin: 0; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + padding: 12px 20px; + font-size: 14px; + border-radius: 0; } .el-checkbox-button__inner.is-round { - padding: 12px 20px; + padding: 12px 20px; } .el-checkbox-button__inner:hover { - color: #4165d7; + color: #4165d7; } .el-checkbox-button__inner [class*="el-icon-"] { - line-height: 0.9; + line-height: 0.9; } .el-radio, .el-radio__input { - line-height: 1; - white-space: nowrap; - outline: 0; + line-height: 1; + white-space: nowrap; + outline: 0; } .el-checkbox-button__inner [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-checkbox-button__original { - opacity: 0; - outline: 0; - position: absolute; - margin: 0; - z-index: -1; + opacity: 0; + outline: 0; + position: absolute; + margin: 0; + z-index: -1; } .el-radio, .el-radio__inner, .el-radio__input { - position: relative; - display: inline-block; + position: relative; + display: inline-block; } .el-checkbox-button.is-checked .el-checkbox-button__inner { - color: #fff; - background-color: #4165d7; - border-color: #4165d7; - -webkit-box-shadow: -1px 0 0 0 #8da3e7; - box-shadow: -1px 0 0 0 #8da3e7; + color: #fff; + background-color: #4165d7; + border-color: #4165d7; + -webkit-box-shadow: -1px 0 0 0 rgb(141, 163, 231); + box-shadow: -1px 0 0 0 rgb(141, 163, 231); } .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner { - border-left-color: #4165d7; + border-left-color: #4165d7; } .el-checkbox-button.is-disabled .el-checkbox-button__inner { - color: #c0c4cc; - cursor: not-allowed; - background-image: none; - background-color: #fff; - border-color: #ebeef5; - -webkit-box-shadow: none; - box-shadow: none; + color: #c0c4cc; + cursor: not-allowed; + background-image: none; + background-color: #fff; + border-color: #ebeef5; + -webkit-box-shadow: none; + box-shadow: none; } .el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner { - border-left-color: #ebeef5; + border-left-color: #ebeef5; } .el-checkbox-button:first-child .el-checkbox-button__inner { - border-left: 1px solid #dcdfe6; - border-radius: 4px 0 0 4px; - -webkit-box-shadow: none !important; - box-shadow: none !important; + border-left: 1px solid #dcdfe6; + border-radius: 4px 0 0 4px; + -webkit-box-shadow: none !important; + box-shadow: none !important; } .el-checkbox-button.is-focus .el-checkbox-button__inner { - border-color: #4165d7; + border-color: #4165d7; } .el-checkbox-button:last-child .el-checkbox-button__inner { - border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; } .el-checkbox-button--medium .el-checkbox-button__inner { - padding: 10px 20px; - font-size: 14px; - border-radius: 0; + padding: 10px 20px; + font-size: 14px; + border-radius: 0; } .el-checkbox-button--medium .el-checkbox-button__inner.is-round { - padding: 10px 20px; + padding: 10px 20px; } .el-checkbox-button--small .el-checkbox-button__inner { - padding: 9px 15px; - font-size: 12px; - border-radius: 0; + padding: 9px 15px; + font-size: 12px; + border-radius: 0; } .el-checkbox-button--small .el-checkbox-button__inner.is-round { - padding: 9px 15px; + padding: 9px 15px; } .el-checkbox-button--mini .el-checkbox-button__inner { - padding: 7px 15px; - font-size: 12px; - border-radius: 0; + padding: 7px 15px; + font-size: 12px; + border-radius: 0; } .el-checkbox-button--mini .el-checkbox-button__inner.is-round { - padding: 7px 15px; + padding: 7px 15px; } .el-checkbox-group { - font-size: 0; + font-size: 0; } .el-radio, .el-radio--medium.is-bordered .el-radio__label { - font-size: 14px; + font-size: 14px; } .el-radio { - color: #606266; - cursor: pointer; - margin-right: 30px; + color: #606266; + cursor: pointer; + margin-right: 30px; } .el-cascader-node > .el-radio, .el-radio:last-child { - margin-right: 0; + margin-right: 0; } .el-radio.is-bordered { - padding: 12px 20px 0 10px; - border-radius: 4px; - border: 1px solid #dcdfe6; - -webkit-box-sizing: border-box; - box-sizing: border-box; - height: 40px; + padding: 12px 20px 0 10px; + border-radius: 4px; + border: 1px solid #dcdfe6; + -webkit-box-sizing: border-box; + box-sizing: border-box; + height: 40px; } .el-radio.is-bordered.is-checked { - border-color: #4165d7; + border-color: #4165d7; } .el-radio.is-bordered.is-disabled { - cursor: not-allowed; - border-color: #ebeef5; + cursor: not-allowed; + border-color: #ebeef5; } .el-radio__input.is-disabled .el-radio__inner, .el-radio__input.is-disabled.is-checked .el-radio__inner { - background-color: #f5f7fa; - border-color: #e4e7ed; + background-color: #f5f7fa; + border-color: #e4e7ed; } .el-radio.is-bordered + .el-radio.is-bordered { - margin-left: 10px; + margin-left: 10px; } .el-radio--medium.is-bordered { - padding: 10px 20px 0 10px; - border-radius: 4px; - height: 36px; + padding: 10px 20px 0 10px; + border-radius: 4px; + height: 36px; } .el-radio--mini.is-bordered .el-radio__label, .el-radio--small.is-bordered .el-radio__label { - font-size: 12px; + font-size: 12px; } .el-radio--medium.is-bordered .el-radio__inner { - height: 14px; - width: 14px; + height: 14px; + width: 14px; } .el-radio--small.is-bordered { - padding: 8px 15px 0 10px; - border-radius: 3px; - height: 32px; + padding: 8px 15px 0 10px; + border-radius: 3px; + height: 32px; } .el-radio--small.is-bordered .el-radio__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-radio--mini.is-bordered { - padding: 6px 15px 0 10px; - border-radius: 3px; - height: 28px; + padding: 6px 15px 0 10px; + border-radius: 3px; + height: 28px; } .el-radio--mini.is-bordered .el-radio__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-radio__input { - cursor: pointer; - vertical-align: middle; + cursor: pointer; + vertical-align: middle; } .el-radio__input.is-disabled .el-radio__inner { - cursor: not-allowed; + cursor: not-allowed; } .el-radio__input.is-disabled .el-radio__inner::after { - cursor: not-allowed; - background-color: #f5f7fa; + cursor: not-allowed; + background-color: #f5f7fa; } .el-radio__input.is-disabled .el-radio__inner + .el-radio__label { - cursor: not-allowed; + cursor: not-allowed; } .el-radio__input.is-disabled.is-checked .el-radio__inner::after { - background-color: #c0c4cc; + background-color: #c0c4cc; } .el-radio__input.is-disabled + span.el-radio__label { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-radio__input.is-checked .el-radio__inner { - border-color: #4165d7; - background: #4165d7; + border-color: #4165d7; + background: #4165d7; } .el-radio__input.is-checked .el-radio__inner::after { - -webkit-transform: translate(-50%, -50%) scale(1); - transform: translate(-50%, -50%) scale(1); + -webkit-transform: translate(-50%, -50%) scale(1); + transform: translate(-50%, -50%) scale(1); } .el-radio__input.is-checked + .el-radio__label { - color: #4165d7; + color: #4165d7; } .el-radio__input.is-focus .el-radio__inner { - border-color: #4165d7; + border-color: #4165d7; } .el-radio__inner { - border: 1px solid #dcdfe6; - border-radius: 100%; - width: 14px; - height: 14px; - background-color: #fff; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; + border: 1px solid #dcdfe6; + border-radius: 100%; + width: 14px; + height: 14px; + background-color: #fff; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-radio__inner:hover { - border-color: #4165d7; + border-color: #4165d7; } .el-radio__inner::after { - width: 4px; - height: 4px; - border-radius: 100%; - background-color: #fff; - content: ""; - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%) scale(0); - transform: translate(-50%, -50%) scale(0); - -webkit-transition: -webkit-transform 0.15s ease-in; - transition: -webkit-transform 0.15s ease-in; - transition: transform 0.15s ease-in; - transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in; + width: 4px; + height: 4px; + border-radius: 100%; + background-color: #fff; + content: ""; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%) scale(0); + transform: translate(-50%, -50%) scale(0); + -webkit-transition: -webkit-transform 0.15s ease-in; + transition: -webkit-transform 0.15s ease-in; + transition: transform 0.15s ease-in; + transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in; } .el-radio__original { - opacity: 0; - outline: 0; - position: absolute; - z-index: -1; - top: 0; - left: 0; - right: 0; - bottom: 0; - margin: 0; + opacity: 0; + outline: 0; + position: absolute; + z-index: -1; + top: 0; + left: 0; + right: 0; + bottom: 0; + margin: 0; } .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner { - -webkit-box-shadow: 0 0 2px 2px #4165d7; - box-shadow: 0 0 2px 2px #4165d7; + -webkit-box-shadow: 0 0 2px 2px #4165d7; + box-shadow: 0 0 2px 2px #4165d7; } .el-radio__label { - font-size: 14px; - padding-left: 10px; + font-size: 14px; + padding-left: 10px; } .el-scrollbar { - overflow: hidden; - position: relative; + overflow: hidden; + position: relative; } .el-scrollbar:active > .el-scrollbar__bar, .el-scrollbar:focus > .el-scrollbar__bar, .el-scrollbar:hover > .el-scrollbar__bar { - opacity: 1; - -webkit-transition: opacity 340ms ease-out; - transition: opacity 340ms ease-out; + opacity: 1; + -webkit-transition: opacity 340ms ease-out; + transition: opacity 340ms ease-out; } .el-scrollbar__wrap { - overflow: scroll; - height: 100%; + overflow: scroll; + height: 100%; } .el-scrollbar__wrap--hidden-default { - scrollbar-width: none; + scrollbar-width: none; } .el-scrollbar__wrap--hidden-default::-webkit-scrollbar { - width: 0; - height: 0; + width: 0; + height: 0; } .el-scrollbar__thumb { - position: relative; - display: block; - width: 0; - height: 0; - cursor: pointer; - border-radius: inherit; - background-color: rgba(144, 147, 153, 0.3); - -webkit-transition: 0.3s background-color; - transition: 0.3s background-color; + position: relative; + display: block; + width: 0; + height: 0; + cursor: pointer; + border-radius: inherit; + background-color: rgba(144, 147, 153, 0.3); + -webkit-transition: 0.3s background-color; + transition: 0.3s background-color; } .el-scrollbar__thumb:hover { - background-color: rgba(144, 147, 153, 0.5); + background-color: rgba(144, 147, 153, 0.5); } .el-scrollbar__bar { - position: absolute; - right: 2px; - bottom: 2px; - z-index: 1; - border-radius: 4px; - opacity: 0; - -webkit-transition: opacity 120ms ease-out; - transition: opacity 120ms ease-out; + position: absolute; + right: 2px; + bottom: 2px; + z-index: 1; + border-radius: 4px; + opacity: 0; + -webkit-transition: opacity 120ms ease-out; + transition: opacity 120ms ease-out; } .el-scrollbar__bar.is-vertical { - width: 6px; - top: 2px; + width: 6px; + top: 2px; } .el-scrollbar__bar.is-vertical > div { - width: 100%; + width: 100%; } .el-scrollbar__bar.is-horizontal { - height: 6px; - left: 2px; + height: 6px; + left: 2px; } .el-scrollbar__bar.is-horizontal > div { - height: 100%; + height: 100%; } .el-cascader-panel { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - border-radius: 4px; - font-size: 14px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + border-radius: 4px; + font-size: 14px; } .el-cascader-panel.is-bordered { - border: 1px solid #e4e7ed; - border-radius: 4px; + border: 1px solid #e4e7ed; + border-radius: 4px; } .el-cascader-menu { - min-width: 180px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #606266; - border-right: solid 1px #e4e7ed; + min-width: 180px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #606266; + border-right: solid 1px #e4e7ed; } .el-cascader-menu:last-child { - border-right: none; + border-right: none; } .el-cascader-menu:last-child .el-cascader-node { - padding-right: 20px; + padding-right: 20px; } .el-cascader-menu__wrap { - height: 204px; + height: 204px; } .el-cascader-menu__list { - position: relative; - min-height: 100%; - margin: 0; - padding: 6px 0; - list-style: none; - -webkit-box-sizing: border-box; - box-sizing: border-box; + position: relative; + min-height: 100%; + margin: 0; + padding: 6px 0; + list-style: none; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-avatar, .el-drawer { - -webkit-box-sizing: border-box; - overflow: hidden; + -webkit-box-sizing: border-box; + overflow: hidden; } .el-cascader-menu__hover-zone { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; } .el-cascader-menu__empty-text { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - text-align: center; - color: #c0c4cc; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + text-align: center; + color: #c0c4cc; } .el-cascader-node { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0 30px 0 20px; - height: 34px; - line-height: 34px; - outline: 0; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0 30px 0 20px; + height: 34px; + line-height: 34px; + outline: 0; } .el-cascader-node.is-selectable.in-active-path { - color: #606266; + color: #606266; } .el-cascader-node.in-active-path, .el-cascader-node.is-active, .el-cascader-node.is-selectable.in-checked-path { - color: #4165d7; - font-weight: 700; + color: #4165d7; + font-weight: 700; } .el-cascader-node:not(.is-disabled) { - cursor: pointer; + cursor: pointer; } .el-cascader-node:not(.is-disabled):focus, .el-cascader-node:not(.is-disabled):hover { - background: #f5f7fa; + background: #f5f7fa; } .el-cascader-node.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-cascader-node__prefix { - position: absolute; - left: 10px; + position: absolute; + left: 10px; } .el-cascader-node__postfix { - position: absolute; - right: 10px; + position: absolute; + right: 10px; } .el-cascader-node__label { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - padding: 0 10px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 0 10px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .el-cascader-node > .el-radio .el-radio__label { - padding-left: 0; + padding-left: 0; } .el-avatar { - display: inline-block; - box-sizing: border-box; - text-align: center; - color: #fff; - background: #c0c4cc; - width: 40px; - height: 40px; - line-height: 40px; - font-size: 14px; + display: inline-block; + box-sizing: border-box; + text-align: center; + color: #fff; + background: #c0c4cc; + width: 40px; + height: 40px; + line-height: 40px; + font-size: 14px; } .el-avatar > img { - display: block; - height: 100%; - vertical-align: middle; + display: block; + height: 100%; + vertical-align: middle; } .el-drawer, .el-drawer__header { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-avatar--circle { - border-radius: 50%; + border-radius: 50%; } .el-avatar--square { - border-radius: 4px; + border-radius: 4px; } .el-avatar--icon { - font-size: 18px; + font-size: 18px; } .el-avatar--large { - width: 40px; - height: 40px; - line-height: 40px; + width: 40px; + height: 40px; + line-height: 40px; } .el-avatar--medium { - width: 36px; - height: 36px; - line-height: 36px; + width: 36px; + height: 36px; + line-height: 36px; } .el-avatar--small { - width: 28px; - height: 28px; - line-height: 28px; + width: 28px; + height: 28px; + line-height: 28px; } .el-drawer.btt, .el-drawer.ttb, .el-drawer__container { - left: 0; - right: 0; - width: 100%; + left: 0; + right: 0; + width: 100%; } .el-drawer.ltr, .el-drawer.rtl, .el-drawer__container { - top: 0; - bottom: 0; - height: 100%; -} -@-webkit-keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@-webkit-keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@-webkit-keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@-webkit-keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } -} -@keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } + top: 0; + bottom: 0; + height: 100%; } .el-drawer { - position: absolute; - box-sizing: border-box; - background-color: #fff; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), - 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12); - box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), - 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12); - outline: 0; + position: absolute; + box-sizing: border-box; + background-color: #fff; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), + 0 6px 30px 5px rgba(0, 0, 0, 0.12); + box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), + 0 6px 30px 5px rgba(0, 0, 0, 0.12); + outline: 0; } .el-drawer.rtl { - -webkit-animation: rtl-drawer-out 0.3s; - animation: rtl-drawer-out 0.3s; - right: 0; + -webkit-animation: rtl-drawer-out 0.3s; + animation: rtl-drawer-out 0.3s; + right: 0; } .el-drawer__open .el-drawer.rtl { - -webkit-animation: rtl-drawer-in 0.3s 1ms; - animation: rtl-drawer-in 0.3s 1ms; + -webkit-animation: rtl-drawer-in 0.3s 1ms; + animation: rtl-drawer-in 0.3s 1ms; } .el-drawer.ltr { - -webkit-animation: ltr-drawer-out 0.3s; - animation: ltr-drawer-out 0.3s; - left: 0; + -webkit-animation: ltr-drawer-out 0.3s; + animation: ltr-drawer-out 0.3s; + left: 0; } .el-drawer__open .el-drawer.ltr { - -webkit-animation: ltr-drawer-in 0.3s 1ms; - animation: ltr-drawer-in 0.3s 1ms; + -webkit-animation: ltr-drawer-in 0.3s 1ms; + animation: ltr-drawer-in 0.3s 1ms; } .el-drawer.ttb { - -webkit-animation: ttb-drawer-out 0.3s; - animation: ttb-drawer-out 0.3s; - top: 0; + -webkit-animation: ttb-drawer-out 0.3s; + animation: ttb-drawer-out 0.3s; + top: 0; } .el-drawer__open .el-drawer.ttb { - -webkit-animation: ttb-drawer-in 0.3s 1ms; - animation: ttb-drawer-in 0.3s 1ms; + -webkit-animation: ttb-drawer-in 0.3s 1ms; + animation: ttb-drawer-in 0.3s 1ms; } .el-drawer.btt { - -webkit-animation: btt-drawer-out 0.3s; - animation: btt-drawer-out 0.3s; - bottom: 0; + -webkit-animation: btt-drawer-out 0.3s; + animation: btt-drawer-out 0.3s; + bottom: 0; } .el-drawer__open .el-drawer.btt { - -webkit-animation: btt-drawer-in 0.3s 1ms; - animation: btt-drawer-in 0.3s 1ms; + -webkit-animation: btt-drawer-in 0.3s 1ms; + animation: btt-drawer-in 0.3s 1ms; } .el-drawer__wrapper { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - overflow: hidden; - margin: 0; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow: hidden; + margin: 0; } .el-drawer__header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #72767b; - display: flex; - margin-bottom: 32px; - padding: 20px 20px 0; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #72767b; + display: flex; + margin-bottom: 32px; + padding: 20px 20px 0; } .el-drawer__header > :first-child { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } .el-drawer__title { - margin: 0; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - line-height: inherit; - font-size: 1rem; + margin: 0; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + line-height: inherit; + font-size: 1rem; } .el-drawer__close-btn { - border: none; - cursor: pointer; - font-size: 20px; - color: inherit; - background-color: transparent; + border: none; + cursor: pointer; + font-size: 20px; + color: inherit; + background-color: transparent; } .el-drawer__body { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } .el-drawer__body > * { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-drawer__container { - position: relative; + position: relative; } .el-drawer-fade-enter-active { - -webkit-animation: el-drawer-fade-in 0.3s; - animation: el-drawer-fade-in 0.3s; + -webkit-animation: el-drawer-fade-in 0.3s; + animation: el-drawer-fade-in 0.3s; } .el-drawer-fade-leave-active { - animation: el-drawer-fade-in 0.3s reverse; + animation: el-drawer-fade-in 0.3s reverse; } .el-popconfirm__main { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-popconfirm__icon { - margin-right: 5px; + margin-right: 5px; } .el-popconfirm__action { - text-align: right; - margin: 0; + text-align: right; + margin: 0; } -.cl-slider-menu .el-menu-item.is-active, -.cl-slider-menu .el-menu-item:hover, -.cl-slider-menu .el-menu .el-submenu__title:hover { - background-color: #4165d7 !important; +/* custom */ + +.app-slider .cl-slider-menu .el-menu .el-submenu__title:hover, +.app-slider .cl-slider-menu .el-menu .el-submenu__title.is-active, +.app-slider .cl-slider-menu .el-menu .el-menu-item:hover, +.app-slider .cl-slider-menu .el-menu .el-menu-item.is-active { + background-color: #4165d7 !important; } diff --git a/public/theme/green.css b/public/theme/green.css index 5cb80a1f0a2dbda8718a222311769dcc4f476481..5a165891f0fbb50ed2be8b5db4862c64cfb799ed 100644 --- a/public/theme/green.css +++ b/public/theme/green.css @@ -4,11 +4,11 @@ .el-table td.is-hidden > *, .el-table th.is-hidden > *, .el-table--hidden { - visibility: hidden; + visibility: hidden; } .el-input__suffix, .el-tree.is-dragging .el-tree-node__content * { - pointer-events: none; + pointer-events: none; } .el-dropdown .el-dropdown-selfdefine:focus:active, .el-dropdown .el-dropdown-selfdefine:focus:not(.focusing), @@ -24,987 +24,115 @@ .el-tooltip:focus:not(.focusing), .el-upload-list__item.is-success:active, .el-upload-list__item.is-success:not(.focusing):focus { - outline-width: 0; -} -@font-face { - font-family: element-icons; - src: url(fonts/element-icons.woff) format("woff"), - url(fonts/element-icons.ttf) format("truetype"); - font-weight: 400; - font-display: "auto"; - font-style: normal; -} -[class*=" el-icon-"], -[class^="el-icon-"] { - font-family: element-icons !important; - speak: none; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: baseline; - display: inline-block; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.el-icon-ice-cream-round:before { - content: "\e6a0"; -} -.el-icon-ice-cream-square:before { - content: "\e6a3"; -} -.el-icon-lollipop:before { - content: "\e6a4"; -} -.el-icon-potato-strips:before { - content: "\e6a5"; -} -.el-icon-milk-tea:before { - content: "\e6a6"; -} -.el-icon-ice-drink:before { - content: "\e6a7"; -} -.el-icon-ice-tea:before { - content: "\e6a9"; -} -.el-icon-coffee:before { - content: "\e6aa"; -} -.el-icon-orange:before { - content: "\e6ab"; -} -.el-icon-pear:before { - content: "\e6ac"; -} -.el-icon-apple:before { - content: "\e6ad"; -} -.el-icon-cherry:before { - content: "\e6ae"; -} -.el-icon-watermelon:before { - content: "\e6af"; -} -.el-icon-grape:before { - content: "\e6b0"; -} -.el-icon-refrigerator:before { - content: "\e6b1"; -} -.el-icon-goblet-square-full:before { - content: "\e6b2"; -} -.el-icon-goblet-square:before { - content: "\e6b3"; -} -.el-icon-goblet-full:before { - content: "\e6b4"; -} -.el-icon-goblet:before { - content: "\e6b5"; -} -.el-icon-cold-drink:before { - content: "\e6b6"; -} -.el-icon-coffee-cup:before { - content: "\e6b8"; -} -.el-icon-water-cup:before { - content: "\e6b9"; -} -.el-icon-hot-water:before { - content: "\e6ba"; -} -.el-icon-ice-cream:before { - content: "\e6bb"; -} -.el-icon-dessert:before { - content: "\e6bc"; -} -.el-icon-sugar:before { - content: "\e6bd"; -} -.el-icon-tableware:before { - content: "\e6be"; -} -.el-icon-burger:before { - content: "\e6bf"; -} -.el-icon-knife-fork:before { - content: "\e6c1"; -} -.el-icon-fork-spoon:before { - content: "\e6c2"; -} -.el-icon-chicken:before { - content: "\e6c3"; -} -.el-icon-food:before { - content: "\e6c4"; -} -.el-icon-dish-1:before { - content: "\e6c5"; -} -.el-icon-dish:before { - content: "\e6c6"; -} -.el-icon-moon-night:before { - content: "\e6ee"; -} -.el-icon-moon:before { - content: "\e6f0"; -} -.el-icon-cloudy-and-sunny:before { - content: "\e6f1"; -} -.el-icon-partly-cloudy:before { - content: "\e6f2"; -} -.el-icon-cloudy:before { - content: "\e6f3"; -} -.el-icon-sunny:before { - content: "\e6f6"; -} -.el-icon-sunset:before { - content: "\e6f7"; -} -.el-icon-sunrise-1:before { - content: "\e6f8"; -} -.el-icon-sunrise:before { - content: "\e6f9"; -} -.el-icon-heavy-rain:before { - content: "\e6fa"; -} -.el-icon-lightning:before { - content: "\e6fb"; -} -.el-icon-light-rain:before { - content: "\e6fc"; -} -.el-icon-wind-power:before { - content: "\e6fd"; -} -.el-icon-baseball:before { - content: "\e712"; -} -.el-icon-soccer:before { - content: "\e713"; -} -.el-icon-football:before { - content: "\e715"; -} -.el-icon-basketball:before { - content: "\e716"; -} -.el-icon-ship:before { - content: "\e73f"; -} -.el-icon-truck:before { - content: "\e740"; -} -.el-icon-bicycle:before { - content: "\e741"; -} -.el-icon-mobile-phone:before { - content: "\e6d3"; -} -.el-icon-service:before { - content: "\e6d4"; -} -.el-icon-key:before { - content: "\e6e2"; -} -.el-icon-unlock:before { - content: "\e6e4"; -} -.el-icon-lock:before { - content: "\e6e5"; -} -.el-icon-watch:before { - content: "\e6fe"; -} -.el-icon-watch-1:before { - content: "\e6ff"; -} -.el-icon-timer:before { - content: "\e702"; -} -.el-icon-alarm-clock:before { - content: "\e703"; -} -.el-icon-map-location:before { - content: "\e704"; -} -.el-icon-delete-location:before { - content: "\e705"; -} -.el-icon-add-location:before { - content: "\e706"; -} -.el-icon-location-information:before { - content: "\e707"; -} -.el-icon-location-outline:before { - content: "\e708"; -} -.el-icon-location:before { - content: "\e79e"; -} -.el-icon-place:before { - content: "\e709"; -} -.el-icon-discover:before { - content: "\e70a"; -} -.el-icon-first-aid-kit:before { - content: "\e70b"; -} -.el-icon-trophy-1:before { - content: "\e70c"; -} -.el-icon-trophy:before { - content: "\e70d"; -} -.el-icon-medal:before { - content: "\e70e"; -} -.el-icon-medal-1:before { - content: "\e70f"; -} -.el-icon-stopwatch:before { - content: "\e710"; -} -.el-icon-mic:before { - content: "\e711"; -} -.el-icon-copy-document:before { - content: "\e718"; -} -.el-icon-full-screen:before { - content: "\e719"; -} -.el-icon-switch-button:before { - content: "\e71b"; -} -.el-icon-aim:before { - content: "\e71c"; -} -.el-icon-crop:before { - content: "\e71d"; -} -.el-icon-odometer:before { - content: "\e71e"; -} -.el-icon-time:before { - content: "\e71f"; -} -.el-icon-bangzhu:before { - content: "\e724"; -} -.el-icon-close-notification:before { - content: "\e726"; -} -.el-icon-microphone:before { - content: "\e727"; -} -.el-icon-turn-off-microphone:before { - content: "\e728"; -} -.el-icon-position:before { - content: "\e729"; -} -.el-icon-postcard:before { - content: "\e72a"; -} -.el-icon-message:before { - content: "\e72b"; -} -.el-icon-chat-line-square:before { - content: "\e72d"; -} -.el-icon-chat-dot-square:before { - content: "\e72e"; -} -.el-icon-chat-dot-round:before { - content: "\e72f"; -} -.el-icon-chat-square:before { - content: "\e730"; -} -.el-icon-chat-line-round:before { - content: "\e731"; -} -.el-icon-chat-round:before { - content: "\e732"; -} -.el-icon-set-up:before { - content: "\e733"; -} -.el-icon-turn-off:before { - content: "\e734"; -} -.el-icon-open:before { - content: "\e735"; -} -.el-icon-connection:before { - content: "\e736"; -} -.el-icon-link:before { - content: "\e737"; -} -.el-icon-cpu:before { - content: "\e738"; -} -.el-icon-thumb:before { - content: "\e739"; -} -.el-icon-female:before { - content: "\e73a"; -} -.el-icon-male:before { - content: "\e73b"; -} -.el-icon-guide:before { - content: "\e73c"; -} -.el-icon-news:before { - content: "\e73e"; -} -.el-icon-price-tag:before { - content: "\e744"; -} -.el-icon-discount:before { - content: "\e745"; -} -.el-icon-wallet:before { - content: "\e747"; -} -.el-icon-coin:before { - content: "\e748"; -} -.el-icon-money:before { - content: "\e749"; -} -.el-icon-bank-card:before { - content: "\e74a"; -} -.el-icon-box:before { - content: "\e74b"; -} -.el-icon-present:before { - content: "\e74c"; -} -.el-icon-sell:before { - content: "\e6d5"; -} -.el-icon-sold-out:before { - content: "\e6d6"; -} -.el-icon-shopping-bag-2:before { - content: "\e74d"; -} -.el-icon-shopping-bag-1:before { - content: "\e74e"; -} -.el-icon-shopping-cart-2:before { - content: "\e74f"; -} -.el-icon-shopping-cart-1:before { - content: "\e750"; -} -.el-icon-shopping-cart-full:before { - content: "\e751"; -} -.el-icon-smoking:before { - content: "\e752"; -} -.el-icon-no-smoking:before { - content: "\e753"; -} -.el-icon-house:before { - content: "\e754"; -} -.el-icon-table-lamp:before { - content: "\e755"; -} -.el-icon-school:before { - content: "\e756"; -} -.el-icon-office-building:before { - content: "\e757"; -} -.el-icon-toilet-paper:before { - content: "\e758"; -} -.el-icon-notebook-2:before { - content: "\e759"; -} -.el-icon-notebook-1:before { - content: "\e75a"; -} -.el-icon-files:before { - content: "\e75b"; -} -.el-icon-collection:before { - content: "\e75c"; -} -.el-icon-receiving:before { - content: "\e75d"; -} -.el-icon-suitcase-1:before { - content: "\e760"; -} -.el-icon-suitcase:before { - content: "\e761"; -} -.el-icon-film:before { - content: "\e763"; -} -.el-icon-collection-tag:before { - content: "\e765"; -} -.el-icon-data-analysis:before { - content: "\e766"; -} -.el-icon-pie-chart:before { - content: "\e767"; -} -.el-icon-data-board:before { - content: "\e768"; -} -.el-icon-data-line:before { - content: "\e76d"; -} -.el-icon-reading:before { - content: "\e769"; -} -.el-icon-magic-stick:before { - content: "\e76a"; -} -.el-icon-coordinate:before { - content: "\e76b"; -} -.el-icon-mouse:before { - content: "\e76c"; -} -.el-icon-brush:before { - content: "\e76e"; -} -.el-icon-headset:before { - content: "\e76f"; -} -.el-icon-umbrella:before { - content: "\e770"; -} -.el-icon-scissors:before { - content: "\e771"; -} -.el-icon-mobile:before { - content: "\e773"; -} -.el-icon-attract:before { - content: "\e774"; -} -.el-icon-monitor:before { - content: "\e775"; -} -.el-icon-search:before { - content: "\e778"; -} -.el-icon-takeaway-box:before { - content: "\e77a"; -} -.el-icon-paperclip:before { - content: "\e77d"; -} -.el-icon-printer:before { - content: "\e77e"; -} -.el-icon-document-add:before { - content: "\e782"; -} -.el-icon-document:before { - content: "\e785"; -} -.el-icon-document-checked:before { - content: "\e786"; -} -.el-icon-document-copy:before { - content: "\e787"; -} -.el-icon-document-delete:before { - content: "\e788"; -} -.el-icon-document-remove:before { - content: "\e789"; -} -.el-icon-tickets:before { - content: "\e78b"; -} -.el-icon-folder-checked:before { - content: "\e77f"; -} -.el-icon-folder-delete:before { - content: "\e780"; -} -.el-icon-folder-remove:before { - content: "\e781"; -} -.el-icon-folder-add:before { - content: "\e783"; -} -.el-icon-folder-opened:before { - content: "\e784"; -} -.el-icon-folder:before { - content: "\e78a"; -} -.el-icon-edit-outline:before { - content: "\e764"; -} -.el-icon-edit:before { - content: "\e78c"; -} -.el-icon-date:before { - content: "\e78e"; -} -.el-icon-c-scale-to-original:before { - content: "\e7c6"; -} -.el-icon-view:before { - content: "\e6ce"; -} -.el-icon-loading:before { - content: "\e6cf"; -} -.el-icon-rank:before { - content: "\e6d1"; -} -.el-icon-sort-down:before { - content: "\e7c4"; -} -.el-icon-sort-up:before { - content: "\e7c5"; -} -.el-icon-sort:before { - content: "\e6d2"; -} -.el-icon-finished:before { - content: "\e6cd"; -} -.el-icon-refresh-left:before { - content: "\e6c7"; -} -.el-icon-refresh-right:before { - content: "\e6c8"; -} -.el-icon-refresh:before { - content: "\e6d0"; -} -.el-icon-video-play:before { - content: "\e7c0"; -} -.el-icon-video-pause:before { - content: "\e7c1"; -} -.el-icon-d-arrow-right:before { - content: "\e6dc"; -} -.el-icon-d-arrow-left:before { - content: "\e6dd"; -} -.el-icon-arrow-up:before { - content: "\e6e1"; -} -.el-icon-arrow-down:before { - content: "\e6df"; -} -.el-icon-arrow-right:before { - content: "\e6e0"; -} -.el-icon-arrow-left:before { - content: "\e6de"; -} -.el-icon-top-right:before { - content: "\e6e7"; -} -.el-icon-top-left:before { - content: "\e6e8"; -} -.el-icon-top:before { - content: "\e6e6"; -} -.el-icon-bottom:before { - content: "\e6eb"; -} -.el-icon-right:before { - content: "\e6e9"; -} -.el-icon-back:before { - content: "\e6ea"; -} -.el-icon-bottom-right:before { - content: "\e6ec"; -} -.el-icon-bottom-left:before { - content: "\e6ed"; -} -.el-icon-caret-top:before { - content: "\e78f"; -} -.el-icon-caret-bottom:before { - content: "\e790"; -} -.el-icon-caret-right:before { - content: "\e791"; -} -.el-icon-caret-left:before { - content: "\e792"; -} -.el-icon-d-caret:before { - content: "\e79a"; -} -.el-icon-share:before { - content: "\e793"; -} -.el-icon-menu:before { - content: "\e798"; -} -.el-icon-s-grid:before { - content: "\e7a6"; -} -.el-icon-s-check:before { - content: "\e7a7"; -} -.el-icon-s-data:before { - content: "\e7a8"; -} -.el-icon-s-opportunity:before { - content: "\e7aa"; -} -.el-icon-s-custom:before { - content: "\e7ab"; -} -.el-icon-s-claim:before { - content: "\e7ad"; -} -.el-icon-s-finance:before { - content: "\e7ae"; -} -.el-icon-s-comment:before { - content: "\e7af"; -} -.el-icon-s-flag:before { - content: "\e7b0"; -} -.el-icon-s-marketing:before { - content: "\e7b1"; -} -.el-icon-s-shop:before { - content: "\e7b4"; -} -.el-icon-s-open:before { - content: "\e7b5"; -} -.el-icon-s-management:before { - content: "\e7b6"; -} -.el-icon-s-ticket:before { - content: "\e7b7"; -} -.el-icon-s-release:before { - content: "\e7b8"; -} -.el-icon-s-home:before { - content: "\e7b9"; -} -.el-icon-s-promotion:before { - content: "\e7ba"; -} -.el-icon-s-operation:before { - content: "\e7bb"; -} -.el-icon-s-unfold:before { - content: "\e7bc"; -} -.el-icon-s-fold:before { - content: "\e7a9"; -} -.el-icon-s-platform:before { - content: "\e7bd"; -} -.el-icon-s-order:before { - content: "\e7be"; -} -.el-icon-s-cooperation:before { - content: "\e7bf"; -} -.el-icon-bell:before { - content: "\e725"; -} -.el-icon-message-solid:before { - content: "\e799"; -} -.el-icon-video-camera:before { - content: "\e772"; -} -.el-icon-video-camera-solid:before { - content: "\e796"; -} -.el-icon-camera:before { - content: "\e779"; -} -.el-icon-camera-solid:before { - content: "\e79b"; -} -.el-icon-download:before { - content: "\e77c"; -} -.el-icon-upload2:before { - content: "\e77b"; -} -.el-icon-upload:before { - content: "\e7c3"; -} -.el-icon-picture-outline-round:before { - content: "\e75f"; -} -.el-icon-picture-outline:before { - content: "\e75e"; -} -.el-icon-picture:before { - content: "\e79f"; -} -.el-icon-close:before { - content: "\e6db"; -} -.el-icon-check:before { - content: "\e6da"; -} -.el-icon-plus:before { - content: "\e6d9"; -} -.el-icon-minus:before { - content: "\e6d8"; -} -.el-icon-help:before { - content: "\e73d"; -} -.el-icon-s-help:before { - content: "\e7b3"; -} -.el-icon-circle-close:before { - content: "\e78d"; -} -.el-icon-circle-check:before { - content: "\e720"; -} -.el-icon-circle-plus-outline:before { - content: "\e723"; -} -.el-icon-remove-outline:before { - content: "\e722"; -} -.el-icon-zoom-out:before { - content: "\e776"; -} -.el-icon-zoom-in:before { - content: "\e777"; -} -.el-icon-error:before { - content: "\e79d"; -} -.el-icon-success:before { - content: "\e79c"; -} -.el-icon-circle-plus:before { - content: "\e7a0"; -} -.el-icon-remove:before { - content: "\e7a2"; -} -.el-icon-info:before { - content: "\e7a1"; -} -.el-icon-question:before { - content: "\e7a4"; -} -.el-icon-warning-outline:before { - content: "\e6c9"; -} -.el-icon-warning:before { - content: "\e7a3"; -} -.el-icon-goods:before { - content: "\e7c2"; -} -.el-icon-s-goods:before { - content: "\e7b2"; -} -.el-icon-star-off:before { - content: "\e717"; -} -.el-icon-star-on:before { - content: "\e797"; -} -.el-icon-more-outline:before { - content: "\e6cc"; -} -.el-icon-more:before { - content: "\e794"; -} -.el-icon-phone-outline:before { - content: "\e6cb"; -} -.el-icon-phone:before { - content: "\e795"; -} -.el-icon-user:before { - content: "\e6e3"; -} -.el-icon-user-solid:before { - content: "\e7a5"; -} -.el-icon-setting:before { - content: "\e6ca"; -} -.el-icon-s-tools:before { - content: "\e7ac"; -} -.el-icon-delete:before { - content: "\e6d7"; -} -.el-icon-delete-solid:before { - content: "\e7c9"; -} -.el-icon-eleme:before { - content: "\e7c7"; -} -.el-icon-platform-eleme:before { - content: "\e7ca"; -} -.el-icon-loading { - -webkit-animation: rotating 2s linear infinite; - animation: rotating 2s linear infinite; -} -.el-icon--right { - margin-left: 5px; -} -.el-icon--left { - margin-right: 5px; + outline-width: 0; } @-webkit-keyframes rotating { - 0% { - -webkit-transform: rotateZ(0); - transform: rotateZ(0); - } - 100% { - -webkit-transform: rotateZ(360deg); - transform: rotateZ(360deg); - } + 0% { + -webkit-transform: rotateZ(0); + transform: rotateZ(0); + } + 100% { + -webkit-transform: rotateZ(360deg); + transform: rotateZ(360deg); + } } @keyframes rotating { - 0% { - -webkit-transform: rotateZ(0); - transform: rotateZ(0); - } - 100% { - -webkit-transform: rotateZ(360deg); - transform: rotateZ(360deg); - } + 0% { + -webkit-transform: rotateZ(0); + transform: rotateZ(0); + } + 100% { + -webkit-transform: rotateZ(360deg); + transform: rotateZ(360deg); + } } .el-pagination { - white-space: nowrap; - padding: 2px 5px; - color: #303133; - font-weight: 700; + white-space: nowrap; + padding: 2px 5px; + color: #303133; + font-weight: 700; } .el-pagination::after, .el-pagination::before { - display: table; - content: ""; + display: table; + content: ""; } .el-pagination::after { - clear: both; + clear: both; } .el-pagination button, .el-pagination span:not([class*="suffix"]) { - display: inline-block; - font-size: 13px; - min-width: 35.5px; - height: 28px; - line-height: 28px; - vertical-align: top; - -webkit-box-sizing: border-box; - box-sizing: border-box; + display: inline-block; + font-size: 13px; + min-width: 35.5px; + height: 28px; + line-height: 28px; + vertical-align: top; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-pagination .el-input__inner { - text-align: center; - -moz-appearance: textfield; - line-height: normal; + text-align: center; + -moz-appearance: textfield; + line-height: normal; } .el-pagination .el-input__suffix { - right: 0; - -webkit-transform: scale(0.8); - transform: scale(0.8); + right: 0; + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-pagination .el-select .el-input { - width: 100px; - margin: 0 5px; + width: 100px; + margin: 0 5px; } .el-pagination .el-select .el-input .el-input__inner { - padding-right: 25px; - border-radius: 3px; + padding-right: 25px; + border-radius: 3px; } .el-pagination button { - border: none; - padding: 0 6px; - background: 0 0; + border: none; + padding: 0 6px; + background: 0 0; } .el-pagination button:focus { - outline: 0; + outline: 0; } .el-pagination button:hover { - color: #51c21a; + color: #51c21a; } .el-pagination button:disabled { - color: #c0c4cc; - background-color: #fff; - cursor: not-allowed; + color: #c0c4cc; + background-color: #fff; + cursor: not-allowed; } .el-pagination .btn-next, .el-pagination .btn-prev { - background: center center no-repeat #fff; - background-size: 16px; - cursor: pointer; - margin: 0; - color: #303133; + background: center center no-repeat #fff; + background-size: 16px; + cursor: pointer; + margin: 0; + color: #303133; } .el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon { - display: block; - font-size: 12px; - font-weight: 700; + display: block; + font-size: 12px; + font-weight: 700; } .el-pagination .btn-prev { - padding-right: 12px; + padding-right: 12px; } .el-pagination .btn-next { - padding-left: 12px; + padding-left: 12px; } .el-pagination .el-pager li.disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-pager li, .el-pager li.btn-quicknext:hover, .el-pager li.btn-quickprev:hover { - cursor: pointer; + cursor: pointer; } .el-pagination--small .btn-next, .el-pagination--small .btn-prev, @@ -1012,2761 +140,2735 @@ .el-pagination--small .el-pager li.btn-quicknext, .el-pagination--small .el-pager li.btn-quickprev, .el-pagination--small .el-pager li:last-child { - border-color: transparent; - font-size: 12px; - line-height: 22px; - height: 22px; - min-width: 22px; + border-color: transparent; + font-size: 12px; + line-height: 22px; + height: 22px; + min-width: 22px; } .el-pagination--small .more::before, .el-pagination--small li.more::before { - line-height: 24px; + line-height: 24px; } .el-pagination--small button, .el-pagination--small span:not([class*="suffix"]) { - height: 22px; - line-height: 22px; + height: 22px; + line-height: 22px; } .el-pagination--small .el-pagination__editor, .el-pagination--small .el-pagination__editor.el-input .el-input__inner { - height: 22px; + height: 22px; } .el-pagination__sizes { - margin: 0 10px 0 0; - font-weight: 400; - color: #606266; + margin: 0 10px 0 0; + font-weight: 400; + color: #606266; } .el-pagination__sizes .el-input .el-input__inner { - font-size: 13px; - padding-left: 8px; + font-size: 13px; + padding-left: 8px; } .el-pagination__sizes .el-input .el-input__inner:hover { - border-color: #51c21a; + border-color: #51c21a; } .el-pagination__total { - margin-right: 10px; - font-weight: 400; - color: #606266; + margin-right: 10px; + font-weight: 400; + color: #606266; } .el-pagination__jump { - margin-left: 24px; - font-weight: 400; - color: #606266; + margin-left: 24px; + font-weight: 400; + color: #606266; } .el-pagination__jump .el-input__inner { - padding: 0 3px; + padding: 0 3px; } .el-pagination__rightwrapper { - float: right; + float: right; } .el-pagination__editor { - line-height: 18px; - padding: 0 2px; - height: 28px; - text-align: center; - margin: 0 2px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 3px; + line-height: 18px; + padding: 0 2px; + height: 28px; + text-align: center; + margin: 0 2px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 3px; } .el-pager, .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev { - padding: 0; + padding: 0; } .el-pagination__editor.el-input { - width: 50px; + width: 50px; } .el-pagination__editor.el-input .el-input__inner { - height: 28px; + height: 28px; } .el-pagination__editor .el-input__inner::-webkit-inner-spin-button, .el-pagination__editor .el-input__inner::-webkit-outer-spin-button { - -webkit-appearance: none; - margin: 0; + -webkit-appearance: none; + margin: 0; } .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li { - margin: 0 5px; - background-color: #f4f4f5; - color: #606266; - min-width: 30px; - border-radius: 2px; + margin: 0 5px; + background-color: #f4f4f5; + color: #606266; + min-width: 30px; + border-radius: 2px; } .el-pagination.is-background .btn-next.disabled, .el-pagination.is-background .btn-next:disabled, .el-pagination.is-background .btn-prev.disabled, .el-pagination.is-background .btn-prev:disabled, .el-pagination.is-background .el-pager li.disabled { - color: #c0c4cc; + color: #c0c4cc; } .el-pagination.is-background .el-pager li:not(.disabled):hover { - color: #51c21a; + color: #51c21a; } .el-pagination.is-background .el-pager li:not(.disabled).active { - background-color: #51c21a; - color: #fff; + background-color: #51c21a; + color: #fff; } .el-dialog, .el-pager li { - background: #fff; - -webkit-box-sizing: border-box; + background: #fff; + -webkit-box-sizing: border-box; } .el-pagination.is-background.el-pagination--small .btn-next, .el-pagination.is-background.el-pagination--small .btn-prev, .el-pagination.is-background.el-pagination--small .el-pager li { - margin: 0 3px; - min-width: 22px; + margin: 0 3px; + min-width: 22px; } .el-pager, .el-pager li { - vertical-align: top; - margin: 0; - display: inline-block; + vertical-align: top; + margin: 0; + display: inline-block; } .el-pager { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - list-style: none; - font-size: 0; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + list-style: none; + font-size: 0; } .el-date-table, .el-table th { - -webkit-user-select: none; - -moz-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; } .el-pager .more::before { - line-height: 30px; + line-height: 30px; } .el-pager li { - padding: 0 4px; - font-size: 13px; - min-width: 35.5px; - height: 28px; - line-height: 28px; - box-sizing: border-box; - text-align: center; + padding: 0 4px; + font-size: 13px; + min-width: 35.5px; + height: 28px; + line-height: 28px; + box-sizing: border-box; + text-align: center; } .el-menu--collapse .el-menu .el-submenu, .el-menu--popup { - min-width: 200px; + min-width: 200px; } .el-pager li.btn-quicknext, .el-pager li.btn-quickprev { - line-height: 28px; - color: #303133; + line-height: 28px; + color: #303133; } .el-pager li.btn-quicknext.disabled, .el-pager li.btn-quickprev.disabled { - color: #c0c4cc; + color: #c0c4cc; } .el-pager li.active + li { - border-left: 0; + border-left: 0; } .el-pager li:hover { - color: #51c21a; + color: #51c21a; } .el-pager li.active { - color: #51c21a; - cursor: default; + color: #51c21a; + cursor: default; } @-webkit-keyframes v-modal-in { - 0% { - opacity: 0; - } + 0% { + opacity: 0; + } } @-webkit-keyframes v-modal-out { - 100% { - opacity: 0; - } + 100% { + opacity: 0; + } } .el-dialog { - position: relative; - margin: 0 auto 50px; - border-radius: 2px; - -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); - box-sizing: border-box; - width: 50%; + position: relative; + margin: 0 auto 50px; + border-radius: 2px; + -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); + box-sizing: border-box; + width: 50%; } .el-dialog.is-fullscreen { - width: 100%; - margin-top: 0; - margin-bottom: 0; - height: 100%; - overflow: auto; + width: 100%; + margin-top: 0; + margin-bottom: 0; + height: 100%; + overflow: auto; } .el-dialog__wrapper { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - overflow: auto; - margin: 0; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow: auto; + margin: 0; } .el-dialog__header { - padding: 20px 20px 10px; + padding: 20px 20px 10px; } .el-dialog__headerbtn { - position: absolute; - top: 20px; - right: 20px; - padding: 0; - background: 0 0; - border: none; - outline: 0; - cursor: pointer; - font-size: 16px; + position: absolute; + top: 20px; + right: 20px; + padding: 0; + background: 0 0; + border: none; + outline: 0; + cursor: pointer; + font-size: 16px; } .el-dialog__headerbtn .el-dialog__close { - color: #909399; + color: #909399; } .el-dialog__headerbtn:focus .el-dialog__close, .el-dialog__headerbtn:hover .el-dialog__close { - color: #51c21a; + color: #51c21a; } .el-dialog__title { - line-height: 24px; - font-size: 18px; - color: #303133; + line-height: 24px; + font-size: 18px; + color: #303133; } .el-dialog__body { - padding: 30px 20px; - color: #606266; - font-size: 14px; - word-break: break-all; + padding: 30px 20px; + color: #606266; + font-size: 14px; + word-break: break-all; } .el-dialog__footer { - padding: 10px 20px 20px; - text-align: right; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding: 10px 20px 20px; + text-align: right; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-dialog--center { - text-align: center; + text-align: center; } .el-dialog--center .el-dialog__body { - text-align: initial; - padding: 25px 25px 30px; + text-align: initial; + padding: 25px 25px 30px; } .el-dialog--center .el-dialog__footer { - text-align: inherit; + text-align: inherit; } .dialog-fade-enter-active { - -webkit-animation: dialog-fade-in 0.3s; - animation: dialog-fade-in 0.3s; + -webkit-animation: dialog-fade-in 0.3s; + animation: dialog-fade-in 0.3s; } .dialog-fade-leave-active { - -webkit-animation: dialog-fade-out 0.3s; - animation: dialog-fade-out 0.3s; + -webkit-animation: dialog-fade-out 0.3s; + animation: dialog-fade-out 0.3s; } @-webkit-keyframes dialog-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @keyframes dialog-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @-webkit-keyframes dialog-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } @keyframes dialog-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } .el-autocomplete { - position: relative; - display: inline-block; + position: relative; + display: inline-block; } .el-autocomplete-suggestion { - margin: 5px 0; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - border-radius: 4px; - border: 1px solid #e4e7ed; - -webkit-box-sizing: border-box; - box-sizing: border-box; - background-color: #fff; + margin: 5px 0; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + border-radius: 4px; + border: 1px solid #e4e7ed; + -webkit-box-sizing: border-box; + box-sizing: border-box; + background-color: #fff; } .el-dropdown-menu, .el-menu--collapse .el-submenu .el-menu { - z-index: 10; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + z-index: 10; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-autocomplete-suggestion__wrap { - max-height: 280px; - padding: 10px 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + max-height: 280px; + padding: 10px 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-autocomplete-suggestion__list { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } .el-autocomplete-suggestion li { - padding: 0 20px; - margin: 0; - line-height: 34px; - cursor: pointer; - color: #606266; - font-size: 14px; - list-style: none; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; + padding: 0 20px; + margin: 0; + line-height: 34px; + cursor: pointer; + color: #606266; + font-size: 14px; + list-style: none; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .el-autocomplete-suggestion li.highlighted, .el-autocomplete-suggestion li:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-autocomplete-suggestion li.divider { - margin-top: 6px; - border-top: 1px solid #000; + margin-top: 6px; + border-top: 1px solid #000; } .el-autocomplete-suggestion li.divider:last-child { - margin-bottom: -6px; + margin-bottom: -6px; } .el-autocomplete-suggestion.is-loading li { - text-align: center; - height: 100px; - line-height: 100px; - font-size: 20px; - color: #999; + text-align: center; + height: 100px; + line-height: 100px; + font-size: 20px; + color: #999; } .el-autocomplete-suggestion.is-loading li::after { - display: inline-block; - content: ""; - height: 100%; - vertical-align: middle; + display: inline-block; + content: ""; + height: 100%; + vertical-align: middle; } .el-autocomplete-suggestion.is-loading li:hover { - background-color: #fff; + background-color: #fff; } .el-autocomplete-suggestion.is-loading .el-icon-loading { - vertical-align: middle; + vertical-align: middle; } .el-dropdown { - display: inline-block; - position: relative; - color: #606266; - font-size: 14px; + display: inline-block; + position: relative; + color: #606266; + font-size: 14px; } .el-dropdown .el-button-group { - display: block; + display: block; } .el-dropdown .el-button-group .el-button { - float: none; + float: none; } .el-dropdown .el-dropdown__caret-button { - padding-left: 5px; - padding-right: 5px; - position: relative; - border-left: none; + padding-left: 5px; + padding-right: 5px; + position: relative; + border-left: none; } .el-dropdown .el-dropdown__caret-button::before { - content: ""; - position: absolute; - display: block; - width: 1px; - top: 5px; - bottom: 5px; - left: 0; - background: rgba(255, 255, 255, 0.5); + content: ""; + position: absolute; + display: block; + width: 1px; + top: 5px; + bottom: 5px; + left: 0; + background: rgba(255, 255, 255, 0.5); } .el-dropdown .el-dropdown__caret-button.el-button--default::before { - background: rgba(220, 223, 230, 0.5); + background: rgba(220, 223, 230, 0.5); } .el-dropdown .el-dropdown__caret-button:hover::before { - top: 0; - bottom: 0; + top: 0; + bottom: 0; } .el-dropdown .el-dropdown__caret-button .el-dropdown__icon { - padding-left: 0; + padding-left: 0; } .el-dropdown__icon { - font-size: 12px; - margin: 0 3px; + font-size: 12px; + margin: 0 3px; } .el-dropdown-menu { - position: absolute; - top: 0; - left: 0; - padding: 10px 0; - margin: 5px 0; - background-color: #fff; - border: 1px solid #ebeef5; - border-radius: 4px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-dropdown-menu__item { - list-style: none; - line-height: 36px; - padding: 0 20px; - margin: 0; - font-size: 14px; - color: #606266; - cursor: pointer; - outline: 0; + list-style: none; + line-height: 36px; + padding: 0 20px; + margin: 0; + font-size: 14px; + color: #606266; + cursor: pointer; + outline: 0; } .el-dropdown-menu__item:focus, .el-dropdown-menu__item:not(.is-disabled):hover { - background-color: #eef9e8; - color: #74ce48; + background-color: rgb(238, 249, 232); + color: rgb(116, 206, 72); } .el-dropdown-menu__item i { - margin-right: 5px; + margin-right: 5px; } .el-dropdown-menu__item--divided { - position: relative; - margin-top: 6px; - border-top: 1px solid #ebeef5; + position: relative; + margin-top: 6px; + border-top: 1px solid #ebeef5; } .el-dropdown-menu__item--divided:before { - content: ""; - height: 6px; - display: block; - margin: 0 -20px; - background-color: #fff; + content: ""; + height: 6px; + display: block; + margin: 0 -20px; + background-color: #fff; } .el-dropdown-menu__item.is-disabled { - cursor: default; - color: #bbb; - pointer-events: none; + cursor: default; + color: #bbb; + pointer-events: none; } .el-dropdown-menu--medium { - padding: 6px 0; + padding: 6px 0; } .el-dropdown-menu--medium .el-dropdown-menu__item { - line-height: 30px; - padding: 0 17px; - font-size: 14px; + line-height: 30px; + padding: 0 17px; + font-size: 14px; } -.el-dropdown-menu--medium - .el-dropdown-menu__item.el-dropdown-menu__item--divided { - margin-top: 6px; +.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided { + margin-top: 6px; } -.el-dropdown-menu--medium - .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { - height: 6px; - margin: 0 -17px; +.el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { + height: 6px; + margin: 0 -17px; } .el-dropdown-menu--small { - padding: 6px 0; + padding: 6px 0; } .el-dropdown-menu--small .el-dropdown-menu__item { - line-height: 27px; - padding: 0 15px; - font-size: 13px; + line-height: 27px; + padding: 0 15px; + font-size: 13px; } -.el-dropdown-menu--small - .el-dropdown-menu__item.el-dropdown-menu__item--divided { - margin-top: 4px; +.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided { + margin-top: 4px; } -.el-dropdown-menu--small - .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { - height: 4px; - margin: 0 -15px; +.el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { + height: 4px; + margin: 0 -15px; } .el-dropdown-menu--mini { - padding: 3px 0; + padding: 3px 0; } .el-dropdown-menu--mini .el-dropdown-menu__item { - line-height: 24px; - padding: 0 10px; - font-size: 12px; + line-height: 24px; + padding: 0 10px; + font-size: 12px; } -.el-dropdown-menu--mini - .el-dropdown-menu__item.el-dropdown-menu__item--divided { - margin-top: 3px; +.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided { + margin-top: 3px; } -.el-dropdown-menu--mini - .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { - height: 3px; - margin: 0 -10px; +.el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided:before { + height: 3px; + margin: 0 -10px; } .el-menu { - border-right: solid 1px #e6e6e6; - list-style: none; - position: relative; - margin: 0; - padding-left: 0; - background-color: #fff; + border-right: solid 1px #e6e6e6; + list-style: none; + position: relative; + margin: 0; + padding-left: 0; + background-color: #fff; } .el-menu--horizontal > .el-menu-item:not(.is-disabled):focus, .el-menu--horizontal > .el-menu-item:not(.is-disabled):hover, .el-menu--horizontal > .el-submenu .el-submenu__title:hover { - background-color: #fff; + background-color: #fff; } .el-menu::after, .el-menu::before { - display: table; - content: ""; + display: table; + content: ""; } .el-menu::after { - clear: both; + clear: both; } .el-menu.el-menu--horizontal { - border-bottom: solid 1px #e6e6e6; + border-bottom: solid 1px #e6e6e6; } .el-menu--horizontal { - border-right: none; + border-right: none; } .el-menu--horizontal > .el-menu-item { - float: left; - height: 60px; - line-height: 60px; - margin: 0; - border-bottom: 2px solid transparent; - color: #909399; + float: left; + height: 60px; + line-height: 60px; + margin: 0; + border-bottom: 2px solid transparent; + color: #909399; } .el-menu--horizontal > .el-menu-item a, .el-menu--horizontal > .el-menu-item a:hover { - color: inherit; + color: inherit; } .el-menu--horizontal > .el-submenu { - float: left; + float: left; } .el-menu--horizontal > .el-submenu:focus, .el-menu--horizontal > .el-submenu:hover { - outline: 0; + outline: 0; } .el-menu--horizontal > .el-submenu:focus .el-submenu__title, .el-menu--horizontal > .el-submenu:hover .el-submenu__title { - color: #303133; + color: #303133; } .el-menu--horizontal > .el-submenu.is-active .el-submenu__title { - border-bottom: 2px solid #51c21a; - color: #303133; + border-bottom: 2px solid #51c21a; + color: #303133; } .el-menu--horizontal > .el-submenu .el-submenu__title { - height: 60px; - line-height: 60px; - border-bottom: 2px solid transparent; - color: #909399; + height: 60px; + line-height: 60px; + border-bottom: 2px solid transparent; + color: #909399; } .el-menu--horizontal > .el-submenu .el-submenu__icon-arrow { - position: static; - vertical-align: middle; - margin-left: 8px; - margin-top: -3px; + position: static; + vertical-align: middle; + margin-left: 8px; + margin-top: -3px; } .el-menu--horizontal .el-menu .el-menu-item, .el-menu--horizontal .el-menu .el-submenu__title { - background-color: #fff; - float: none; - height: 36px; - line-height: 36px; - padding: 0 10px; - color: #909399; + background-color: #fff; + float: none; + height: 36px; + line-height: 36px; + padding: 0 10px; + color: #909399; } .el-menu--horizontal .el-menu .el-menu-item.is-active, .el-menu--horizontal .el-menu .el-submenu.is-active > .el-submenu__title { - color: #303133; + color: #303133; } .el-menu--horizontal .el-menu-item:not(.is-disabled):focus, .el-menu--horizontal .el-menu-item:not(.is-disabled):hover { - outline: 0; - color: #303133; + outline: 0; + color: #303133; } .el-menu--horizontal > .el-menu-item.is-active { - border-bottom: 2px solid #51c21a; - color: #303133; + border-bottom: 2px solid #51c21a; + color: #303133; } .el-menu--collapse { - width: 64px; + width: 64px; } .el-menu--collapse > .el-menu-item [class^="el-icon-"], .el-menu--collapse > .el-submenu > .el-submenu__title [class^="el-icon-"] { - margin: 0; - vertical-align: middle; - width: 24px; - text-align: center; + margin: 0; + vertical-align: middle; + width: 24px; + text-align: center; } .el-menu--collapse > .el-menu-item .el-submenu__icon-arrow, .el-menu--collapse > .el-submenu > .el-submenu__title .el-submenu__icon-arrow { - display: none; + display: none; } .el-menu--collapse > .el-menu-item span, .el-menu--collapse > .el-submenu > .el-submenu__title span { - height: 0; - width: 0; - overflow: hidden; - visibility: hidden; - display: inline-block; + height: 0; + width: 0; + overflow: hidden; + visibility: hidden; + display: inline-block; } .el-menu--collapse > .el-menu-item.is-active i { - color: inherit; + color: inherit; } .el-menu--collapse .el-submenu { - position: relative; + position: relative; } .el-menu--collapse .el-submenu .el-menu { - position: absolute; - margin-left: 5px; - top: 0; - left: 100%; - border: 1px solid #e4e7ed; - border-radius: 2px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + position: absolute; + margin-left: 5px; + top: 0; + left: 100%; + border: 1px solid #e4e7ed; + border-radius: 2px; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-menu-item, .el-submenu__title { - height: 56px; - line-height: 56px; - position: relative; - -webkit-box-sizing: border-box; - white-space: nowrap; - list-style: none; -} -.el-menu--collapse - .el-submenu.is-opened - > .el-submenu__title - .el-submenu__icon-arrow { - -webkit-transform: none; - transform: none; + height: 56px; + line-height: 56px; + position: relative; + -webkit-box-sizing: border-box; + white-space: nowrap; + list-style: none; +} +.el-menu--collapse .el-submenu.is-opened > .el-submenu__title .el-submenu__icon-arrow { + -webkit-transform: none; + transform: none; } .el-menu--popup { - z-index: 100; - border: none; - padding: 5px 0; - border-radius: 2px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + z-index: 100; + border: none; + padding: 5px 0; + border-radius: 2px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-menu--popup-bottom-start { - margin-top: 5px; + margin-top: 5px; } .el-menu--popup-right-start { - margin-left: 5px; - margin-right: 5px; + margin-left: 5px; + margin-right: 5px; } .el-menu-item { - font-size: 14px; - color: #303133; - padding: 0 20px; - cursor: pointer; - -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; - transition: border-color 0.3s, background-color 0.3s, color 0.3s; - box-sizing: border-box; + font-size: 14px; + color: #303133; + padding: 0 20px; + cursor: pointer; + -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; + transition: border-color 0.3s, background-color 0.3s, color 0.3s; + box-sizing: border-box; } .el-menu-item * { - vertical-align: middle; + vertical-align: middle; } .el-menu-item i { - color: #909399; + color: #909399; } .el-menu-item:focus, .el-menu-item:hover { - outline: 0; - background-color: #eef9e8; + outline: 0; + background-color: rgb(238, 249, 232); } .el-menu-item.is-disabled { - opacity: 0.25; - cursor: not-allowed; - background: 0 0 !important; + opacity: 0.25; + cursor: not-allowed; + background: 0 0 !important; } .el-menu-item [class^="el-icon-"] { - margin-right: 5px; - width: 24px; - text-align: center; - font-size: 18px; - vertical-align: middle; + margin-right: 5px; + width: 24px; + text-align: center; + font-size: 18px; + vertical-align: middle; } .el-menu-item.is-active { - color: #51c21a; + color: #51c21a; } .el-menu-item.is-active i { - color: inherit; + color: inherit; } .el-submenu { - list-style: none; - margin: 0; - padding-left: 0; + list-style: none; + margin: 0; + padding-left: 0; } .el-submenu__title { - font-size: 14px; - color: #303133; - padding: 0 20px; - cursor: pointer; - -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; - transition: border-color 0.3s, background-color 0.3s, color 0.3s; - box-sizing: border-box; + font-size: 14px; + color: #303133; + padding: 0 20px; + cursor: pointer; + -webkit-transition: border-color 0.3s, background-color 0.3s, color 0.3s; + transition: border-color 0.3s, background-color 0.3s, color 0.3s; + box-sizing: border-box; } .el-submenu__title * { - vertical-align: middle; + vertical-align: middle; } .el-submenu__title i { - color: #909399; + color: #909399; } .el-submenu__title:focus, .el-submenu__title:hover { - outline: 0; - background-color: #eef9e8; + outline: 0; + background-color: rgb(238, 249, 232); } .el-submenu__title.is-disabled { - opacity: 0.25; - cursor: not-allowed; - background: 0 0 !important; + opacity: 0.25; + cursor: not-allowed; + background: 0 0 !important; } .el-submenu__title:hover { - background-color: #eef9e8; + background-color: rgb(238, 249, 232); } .el-submenu .el-menu { - border: none; + border: none; } .el-submenu .el-menu-item { - height: 50px; - line-height: 50px; - padding: 0 45px; - min-width: 200px; + height: 50px; + line-height: 50px; + padding: 0 45px; + min-width: 200px; } .el-submenu__icon-arrow { - position: absolute; - top: 50%; - right: 20px; - margin-top: -7px; - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - font-size: 12px; + position: absolute; + top: 50%; + right: 20px; + margin-top: -7px; + -webkit-transition: -webkit-transform 0.3s; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + font-size: 12px; } .el-submenu.is-active .el-submenu__title { - border-bottom-color: #51c21a; + border-bottom-color: #51c21a; } .el-submenu.is-opened > .el-submenu__title .el-submenu__icon-arrow { - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); } .el-submenu.is-disabled .el-menu-item, .el-submenu.is-disabled .el-submenu__title { - opacity: 0.25; - cursor: not-allowed; - background: 0 0 !important; + opacity: 0.25; + cursor: not-allowed; + background: 0 0 !important; } .el-submenu [class^="el-icon-"] { - vertical-align: middle; - margin-right: 5px; - width: 24px; - text-align: center; - font-size: 18px; + vertical-align: middle; + margin-right: 5px; + width: 24px; + text-align: center; + font-size: 18px; } .el-menu-item-group > ul { - padding: 0; + padding: 0; } .el-menu-item-group__title { - padding: 7px 0 7px 20px; - line-height: normal; - font-size: 12px; - color: #909399; + padding: 7px 0 7px 20px; + line-height: normal; + font-size: 12px; + color: #909399; } .el-radio-button__inner, .el-radio-group { - display: inline-block; - line-height: 1; - vertical-align: middle; + display: inline-block; + line-height: 1; + vertical-align: middle; } .horizontal-collapse-transition .el-submenu__title .el-submenu__icon-arrow { - -webkit-transition: 0.2s; - transition: 0.2s; - opacity: 0; + -webkit-transition: 0.2s; + transition: 0.2s; + opacity: 0; } .el-radio-group { - font-size: 0; + font-size: 0; } .el-radio-button { - position: relative; - display: inline-block; - outline: 0; + position: relative; + display: inline-block; + outline: 0; } .el-radio-button__inner { - white-space: nowrap; - background: #fff; - border: 1px solid #dcdfe6; - font-weight: 500; - border-left: 0; - color: #606266; - -webkit-appearance: none; - text-align: center; - -webkit-box-sizing: border-box; - box-sizing: border-box; - outline: 0; - margin: 0; - position: relative; - cursor: pointer; - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - padding: 12px 20px; - font-size: 14px; - border-radius: 0; + white-space: nowrap; + background: #fff; + border: 1px solid #dcdfe6; + font-weight: 500; + border-left: 0; + color: #606266; + -webkit-appearance: none; + text-align: center; + -webkit-box-sizing: border-box; + box-sizing: border-box; + outline: 0; + margin: 0; + position: relative; + cursor: pointer; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + padding: 12px 20px; + font-size: 14px; + border-radius: 0; } .el-radio-button__inner.is-round { - padding: 12px 20px; + padding: 12px 20px; } .el-radio-button__inner:hover { - color: #51c21a; + color: #51c21a; } .el-radio-button__inner [class*="el-icon-"] { - line-height: 0.9; + line-height: 0.9; } .el-radio-button__inner [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-radio-button:first-child .el-radio-button__inner { - border-left: 1px solid #dcdfe6; - border-radius: 4px 0 0 4px; - -webkit-box-shadow: none !important; - box-shadow: none !important; + border-left: 1px solid #dcdfe6; + border-radius: 4px 0 0 4px; + -webkit-box-shadow: none !important; + box-shadow: none !important; } .el-radio-button__orig-radio { - opacity: 0; - outline: 0; - position: absolute; - z-index: -1; + opacity: 0; + outline: 0; + position: absolute; + z-index: -1; } .el-radio-button__orig-radio:checked + .el-radio-button__inner { - color: #fff; - background-color: #51c21a; - border-color: #51c21a; - -webkit-box-shadow: -1px 0 0 0 #51c21a; - box-shadow: -1px 0 0 0 #51c21a; + color: #fff; + background-color: #51c21a; + border-color: #51c21a; + -webkit-box-shadow: -1px 0 0 0 #51c21a; + box-shadow: -1px 0 0 0 #51c21a; } .el-radio-button__orig-radio:disabled + .el-radio-button__inner { - color: #c0c4cc; - cursor: not-allowed; - background-image: none; - background-color: #fff; - border-color: #ebeef5; - -webkit-box-shadow: none; - box-shadow: none; + color: #c0c4cc; + cursor: not-allowed; + background-image: none; + background-color: #fff; + border-color: #ebeef5; + -webkit-box-shadow: none; + box-shadow: none; } .el-radio-button__orig-radio:disabled:checked + .el-radio-button__inner { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-radio-button:last-child .el-radio-button__inner { - border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; } .el-popover, .el-radio-button:first-child:last-child .el-radio-button__inner { - border-radius: 4px; + border-radius: 4px; } .el-radio-button--medium .el-radio-button__inner { - padding: 10px 20px; - font-size: 14px; - border-radius: 0; + padding: 10px 20px; + font-size: 14px; + border-radius: 0; } .el-radio-button--medium .el-radio-button__inner.is-round { - padding: 10px 20px; + padding: 10px 20px; } .el-radio-button--small .el-radio-button__inner { - padding: 9px 15px; - font-size: 12px; - border-radius: 0; + padding: 9px 15px; + font-size: 12px; + border-radius: 0; } .el-radio-button--small .el-radio-button__inner.is-round { - padding: 9px 15px; + padding: 9px 15px; } .el-radio-button--mini .el-radio-button__inner { - padding: 7px 15px; - font-size: 12px; - border-radius: 0; + padding: 7px 15px; + font-size: 12px; + border-radius: 0; } .el-radio-button--mini .el-radio-button__inner.is-round { - padding: 7px 15px; + padding: 7px 15px; } .el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled) { - -webkit-box-shadow: 0 0 2px 2px #51c21a; - box-shadow: 0 0 2px 2px #51c21a; + -webkit-box-shadow: 0 0 2px 2px #51c21a; + box-shadow: 0 0 2px 2px #51c21a; } .el-switch { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - position: relative; - font-size: 14px; - line-height: 20px; - height: 20px; - vertical-align: middle; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + position: relative; + font-size: 14px; + line-height: 20px; + height: 20px; + vertical-align: middle; } .el-switch__core, .el-switch__label { - display: inline-block; - cursor: pointer; + display: inline-block; + cursor: pointer; } .el-switch.is-disabled .el-switch__core, .el-switch.is-disabled .el-switch__label { - cursor: not-allowed; + cursor: not-allowed; } .el-switch__label { - -webkit-transition: 0.2s; - transition: 0.2s; - height: 20px; - font-size: 14px; - font-weight: 500; - vertical-align: middle; - color: #303133; + -webkit-transition: 0.2s; + transition: 0.2s; + height: 20px; + font-size: 14px; + font-weight: 500; + vertical-align: middle; + color: #303133; } .el-switch__label.is-active { - color: #51c21a; + color: #51c21a; } .el-switch__label--left { - margin-right: 10px; + margin-right: 10px; } .el-switch__label--right { - margin-left: 10px; + margin-left: 10px; } .el-switch__label * { - line-height: 1; - font-size: 14px; - display: inline-block; + line-height: 1; + font-size: 14px; + display: inline-block; } .el-switch__input { - position: absolute; - width: 0; - height: 0; - opacity: 0; - margin: 0; + position: absolute; + width: 0; + height: 0; + opacity: 0; + margin: 0; } .el-switch__core { - margin: 0; - position: relative; - width: 40px; - height: 20px; - border: 1px solid #dcdfe6; - outline: 0; - border-radius: 10px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - background: #dcdfe6; - -webkit-transition: border-color 0.3s, background-color 0.3s; - transition: border-color 0.3s, background-color 0.3s; - vertical-align: middle; + margin: 0; + position: relative; + width: 40px; + height: 20px; + border: 1px solid #dcdfe6; + outline: 0; + border-radius: 10px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + background: #dcdfe6; + -webkit-transition: border-color 0.3s, background-color 0.3s; + transition: border-color 0.3s, background-color 0.3s; + vertical-align: middle; } .el-switch__core:after { - content: ""; - position: absolute; - top: 1px; - left: 1px; - border-radius: 100%; - -webkit-transition: all 0.3s; - transition: all 0.3s; - width: 16px; - height: 16px; - background-color: #fff; + content: ""; + position: absolute; + top: 1px; + left: 1px; + border-radius: 100%; + -webkit-transition: all 0.3s; + transition: all 0.3s; + width: 16px; + height: 16px; + background-color: #fff; } .el-switch.is-checked .el-switch__core { - border-color: #51c21a; - background-color: #51c21a; + border-color: #51c21a; + background-color: #51c21a; } .el-switch.is-checked .el-switch__core::after { - left: 100%; - margin-left: -17px; + left: 100%; + margin-left: -17px; } .el-switch.is-disabled { - opacity: 0.6; + opacity: 0.6; } .el-switch--wide .el-switch__label.el-switch__label--left span { - left: 10px; + left: 10px; } .el-switch--wide .el-switch__label.el-switch__label--right span { - right: 10px; + right: 10px; } .el-switch .label-fade-enter, .el-switch .label-fade-leave-active { - opacity: 0; + opacity: 0; } .el-select-dropdown { - position: absolute; - z-index: 1001; - border: 1px solid #e4e7ed; - border-radius: 4px; - background-color: #fff; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 5px 0; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected { - color: #51c21a; - background-color: #fff; + color: #51c21a; + background-color: #fff; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after { - position: absolute; - right: 20px; - font-family: element-icons; - content: "\e6da"; - font-size: 12px; - font-weight: 700; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + position: absolute; + right: 20px; + font-family: element-icons; + content: "\e6da"; + font-size: 12px; + font-weight: 700; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } .el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list { - padding: 0; + padding: 0; } .el-select-dropdown__empty { - padding: 10px 0; - margin: 0; - text-align: center; - color: #999; - font-size: 14px; + padding: 10px 0; + margin: 0; + text-align: center; + color: #999; + font-size: 14px; } .el-select-dropdown__wrap { - max-height: 274px; + max-height: 274px; } .el-select-dropdown__list { - list-style: none; - padding: 6px 0; - margin: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + list-style: none; + padding: 6px 0; + margin: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-select-dropdown__item { - font-size: 14px; - padding: 0 20px; - position: relative; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - color: #606266; - height: 34px; - line-height: 34px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - cursor: pointer; + font-size: 14px; + padding: 0 20px; + position: relative; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + color: #606266; + height: 34px; + line-height: 34px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + cursor: pointer; } .el-select-dropdown__item.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-select-dropdown__item.is-disabled:hover { - background-color: #fff; + background-color: #fff; } .el-select-dropdown__item.hover, .el-select-dropdown__item:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-select-dropdown__item.selected { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .el-select-group { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } .el-select-group__wrap { - position: relative; - list-style: none; - margin: 0; - padding: 0; + position: relative; + list-style: none; + margin: 0; + padding: 0; } .el-select-group__wrap:not(:last-of-type) { - padding-bottom: 24px; + padding-bottom: 24px; } .el-select-group__wrap:not(:last-of-type)::after { - content: ""; - position: absolute; - display: block; - left: 20px; - right: 20px; - bottom: 12px; - height: 1px; - background: #e4e7ed; + content: ""; + position: absolute; + display: block; + left: 20px; + right: 20px; + bottom: 12px; + height: 1px; + background: #e4e7ed; } .el-select-group__title { - padding-left: 20px; - font-size: 12px; - color: #909399; - line-height: 30px; + padding-left: 20px; + font-size: 12px; + color: #909399; + line-height: 30px; } .el-select-group .el-select-dropdown__item { - padding-left: 20px; + padding-left: 20px; } .el-select { - display: inline-block; - position: relative; + display: inline-block; + position: relative; } .el-select .el-select__tags > span { - display: contents; + display: contents; } .el-select:hover .el-input__inner { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-select .el-input__inner { - cursor: pointer; - padding-right: 35px; + cursor: pointer; + padding-right: 35px; } .el-select .el-input__inner:focus { - border-color: #51c21a; + border-color: #51c21a; } .el-select .el-input .el-select__caret { - color: #c0c4cc; - font-size: 14px; - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); - cursor: pointer; + color: #c0c4cc; + font-size: 14px; + -webkit-transition: -webkit-transform 0.3s; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); + cursor: pointer; } .el-select .el-input .el-select__caret.is-reverse { - -webkit-transform: rotateZ(0); - transform: rotateZ(0); + -webkit-transform: rotateZ(0); + transform: rotateZ(0); } .el-select .el-input .el-select__caret.is-show-close { - font-size: 14px; - text-align: center; - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); - border-radius: 100%; - color: #c0c4cc; - -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + font-size: 14px; + text-align: center; + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); + border-radius: 100%; + color: #c0c4cc; + -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-select .el-input .el-select__caret.is-show-close:hover { - color: #909399; + color: #909399; } .el-select .el-input.is-disabled .el-input__inner { - cursor: not-allowed; + cursor: not-allowed; } .el-select .el-input.is-disabled .el-input__inner:hover { - border-color: #e4e7ed; + border-color: #e4e7ed; } .el-select .el-input.is-focus .el-input__inner { - border-color: #51c21a; + border-color: #51c21a; } .el-select > .el-input { - display: block; + display: block; } .el-select__input { - border: none; - outline: 0; - padding: 0; - margin-left: 15px; - color: #666; - font-size: 14px; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - height: 28px; - background-color: transparent; + border: none; + outline: 0; + padding: 0; + margin-left: 15px; + color: #666; + font-size: 14px; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + height: 28px; + background-color: transparent; } .el-select__input.is-mini { - height: 14px; + height: 14px; } .el-select__close { - cursor: pointer; - position: absolute; - top: 8px; - z-index: 1000; - right: 25px; - color: #c0c4cc; - line-height: 18px; - font-size: 14px; + cursor: pointer; + position: absolute; + top: 8px; + z-index: 1000; + right: 25px; + color: #c0c4cc; + line-height: 18px; + font-size: 14px; } .el-select__close:hover { - color: #909399; + color: #909399; } .el-select__tags { - position: absolute; - line-height: normal; - white-space: normal; - z-index: 1; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -ms-flex-wrap: wrap; - flex-wrap: wrap; + position: absolute; + line-height: normal; + white-space: normal; + z-index: 1; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } .el-select .el-tag__close { - margin-top: -2px; + margin-top: -2px; } .el-select .el-tag { - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-color: transparent; - margin: 2px 0 2px 6px; - background-color: #f0f2f5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-color: transparent; + margin: 2px 0 2px 6px; + background-color: #f0f2f5; } .el-select .el-tag__close.el-icon-close { - background-color: #c0c4cc; - right: -7px; - top: 0; - color: #fff; + background-color: #c0c4cc; + right: -7px; + top: 0; + color: #fff; } .el-select .el-tag__close.el-icon-close:hover { - background-color: #909399; + background-color: #909399; } .el-table, .el-table__expanded-cell { - background-color: #fff; + background-color: #fff; } .el-select .el-tag__close.el-icon-close::before { - display: block; - -webkit-transform: translate(0, 0.5px); - transform: translate(0, 0.5px); + display: block; + -webkit-transform: translate(0, 0.5px); + transform: translate(0, 0.5px); } .el-table { - position: relative; - overflow: hidden; - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - width: 100%; - max-width: 100%; - font-size: 14px; - color: #606266; + position: relative; + overflow: hidden; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + width: 100%; + max-width: 100%; + font-size: 14px; + color: #606266; } .el-table--mini, .el-table--small, .el-table__expand-icon { - font-size: 12px; + font-size: 12px; } .el-table__empty-block { - min-height: 60px; - text-align: center; - width: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + min-height: 60px; + text-align: center; + width: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-table__empty-text { - line-height: 60px; - width: 50%; - color: #909399; + line-height: 60px; + width: 50%; + color: #909399; } .el-table__expand-column .cell { - padding: 0; - text-align: center; + padding: 0; + text-align: center; } .el-table__expand-icon { - position: relative; - cursor: pointer; - color: #666; - -webkit-transition: -webkit-transform 0.2s ease-in-out; - transition: -webkit-transform 0.2s ease-in-out; - transition: transform 0.2s ease-in-out; - transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; - height: 20px; + position: relative; + cursor: pointer; + color: #666; + -webkit-transition: -webkit-transform 0.2s ease-in-out; + transition: -webkit-transform 0.2s ease-in-out; + transition: transform 0.2s ease-in-out; + transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out; + height: 20px; } .el-table__expand-icon--expanded { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } .el-table__expand-icon > .el-icon { - position: absolute; - left: 50%; - top: 50%; - margin-left: -5px; - margin-top: -5px; + position: absolute; + left: 50%; + top: 50%; + margin-left: -5px; + margin-top: -5px; } .el-table__expanded-cell[class*="cell"] { - padding: 20px 50px; + padding: 20px 50px; } .el-table__expanded-cell:hover { - background-color: transparent !important; + background-color: transparent !important; } .el-table__placeholder { - display: inline-block; - width: 20px; + display: inline-block; + width: 20px; } .el-table__append-wrapper { - overflow: hidden; + overflow: hidden; } .el-table--fit { - border-right: 0; - border-bottom: 0; + border-right: 0; + border-bottom: 0; } .el-table--fit td.gutter, .el-table--fit th.gutter { - border-right-width: 1px; + border-right-width: 1px; } .el-table--scrollable-x .el-table__body-wrapper { - overflow-x: auto; + overflow-x: auto; } .el-table--scrollable-y .el-table__body-wrapper { - overflow-y: auto; + overflow-y: auto; } .el-table thead { - color: #909399; - font-weight: 500; + color: #909399; + font-weight: 500; } .el-table thead.is-group th { - background: #f5f7fa; + background: #f5f7fa; } .el-table th, .el-table tr { - background-color: #fff; + background-color: #fff; } .el-table td, .el-table th { - padding: 12px 0; - min-width: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; - text-overflow: ellipsis; - vertical-align: middle; - position: relative; - text-align: left; + padding: 12px 0; + min-width: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; + text-overflow: ellipsis; + vertical-align: middle; + position: relative; + text-align: left; } .el-table td.is-center, .el-table th.is-center { - text-align: center; + text-align: center; } .el-table td.is-right, .el-table th.is-right { - text-align: right; + text-align: right; } .el-table td.gutter, .el-table th.gutter { - width: 15px; - border-right-width: 0; - border-bottom-width: 0; - padding: 0; + width: 15px; + border-right-width: 0; + border-bottom-width: 0; + padding: 0; } .el-table--medium td, .el-table--medium th { - padding: 10px 0; + padding: 10px 0; } .el-table--small td, .el-table--small th { - padding: 8px 0; + padding: 8px 0; } .el-table--mini td, .el-table--mini th { - padding: 6px 0; + padding: 6px 0; } .el-table .cell, .el-table--border td:first-child .cell, .el-table--border th:first-child .cell { - padding-left: 10px; + padding-left: 10px; } .el-table tr input[type="checkbox"] { - margin: 0; + margin: 0; } .el-table td, .el-table th.is-leaf { - border-bottom: 1px solid #ebeef5; + border-bottom: 1px solid #ebeef5; } .el-table th.is-sortable { - cursor: pointer; + cursor: pointer; } .el-table th { - overflow: hidden; - -ms-user-select: none; - user-select: none; + overflow: hidden; + -ms-user-select: none; + user-select: none; } .el-table th > .cell { - display: inline-block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - position: relative; - vertical-align: middle; - padding-left: 10px; - padding-right: 10px; - width: 100%; + display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + position: relative; + vertical-align: middle; + padding-left: 10px; + padding-right: 10px; + width: 100%; } .el-table th > .cell.highlight { - color: #51c21a; + color: #51c21a; } .el-table th.required > div::before { - display: inline-block; - content: ""; - width: 8px; - height: 8px; - border-radius: 50%; - background: #ff4d51; - margin-right: 5px; - vertical-align: middle; + display: inline-block; + content: ""; + width: 8px; + height: 8px; + border-radius: 50%; + background: #ff4d51; + margin-right: 5px; + vertical-align: middle; } .el-table td div { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-table td.gutter { - width: 0; + width: 0; } .el-table .cell { - -webkit-box-sizing: border-box; - box-sizing: border-box; - overflow: hidden; - text-overflow: ellipsis; - white-space: normal; - word-break: break-all; - line-height: 23px; - padding-right: 10px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + overflow: hidden; + text-overflow: ellipsis; + white-space: normal; + word-break: break-all; + line-height: 23px; + padding-right: 10px; } .el-table .cell.el-tooltip { - white-space: nowrap; - min-width: 50px; + white-space: nowrap; + min-width: 50px; } .el-table--border, .el-table--group { - border: 1px solid #ebeef5; + border: 1px solid #ebeef5; } .el-table--border::after, .el-table--group::after, .el-table::before { - content: ""; - position: absolute; - background-color: #ebeef5; - z-index: 1; + content: ""; + position: absolute; + background-color: #ebeef5; + z-index: 1; } .el-table--border::after, .el-table--group::after { - top: 0; - right: 0; - width: 1px; - height: 100%; + top: 0; + right: 0; + width: 1px; + height: 100%; } .el-table::before { - left: 0; - bottom: 0; - width: 100%; - height: 1px; + left: 0; + bottom: 0; + width: 100%; + height: 1px; } .el-table--border { - border-right: none; - border-bottom: none; + border-right: none; + border-bottom: none; } .el-table--border.el-loading-parent--relative { - border-color: transparent; + border-color: transparent; } .el-table--border td, .el-table--border th, .el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed { - border-right: 1px solid #ebeef5; + border-right: 1px solid #ebeef5; } .el-table--border th.gutter:last-of-type { - border-bottom: 1px solid #ebeef5; - border-bottom-width: 1px; + border-bottom: 1px solid #ebeef5; + border-bottom-width: 1px; } .el-table--border th, .el-table__fixed-right-patch { - border-bottom: 1px solid #ebeef5; + border-bottom: 1px solid #ebeef5; } .el-table__fixed, .el-table__fixed-right { - position: absolute; - top: 0; - left: 0; - overflow-x: hidden; - overflow-y: hidden; - -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); + position: absolute; + top: 0; + left: 0; + overflow-x: hidden; + overflow-y: hidden; + -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); + box-shadow: 0 0 10px rgba(0, 0, 0, 0.12); } .el-table__fixed-right::before, .el-table__fixed::before { - content: ""; - position: absolute; - left: 0; - bottom: 0; - width: 100%; - height: 1px; - background-color: #ebeef5; - z-index: 4; + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 1px; + background-color: #ebeef5; + z-index: 4; } .el-table__fixed-right-patch { - position: absolute; - top: -1px; - right: 0; - background-color: #fff; + position: absolute; + top: -1px; + right: 0; + background-color: #fff; } .el-table__fixed-right { - top: 0; - left: auto; - right: 0; + top: 0; + left: auto; + right: 0; } .el-table__fixed-right .el-table__fixed-body-wrapper, .el-table__fixed-right .el-table__fixed-footer-wrapper, .el-table__fixed-right .el-table__fixed-header-wrapper { - left: auto; - right: 0; + left: auto; + right: 0; } .el-table__fixed-header-wrapper { - position: absolute; - left: 0; - top: 0; - z-index: 3; + position: absolute; + left: 0; + top: 0; + z-index: 3; } .el-table__fixed-footer-wrapper { - position: absolute; - left: 0; - bottom: 0; - z-index: 3; + position: absolute; + left: 0; + bottom: 0; + z-index: 3; } .el-table__fixed-footer-wrapper tbody td { - border-top: 1px solid #ebeef5; - background-color: #f5f7fa; - color: #606266; + border-top: 1px solid #ebeef5; + background-color: #f5f7fa; + color: #606266; } .el-table__fixed-body-wrapper { - position: absolute; - left: 0; - top: 37px; - overflow: hidden; - z-index: 3; + position: absolute; + left: 0; + top: 37px; + overflow: hidden; + z-index: 3; } .el-table__body-wrapper, .el-table__footer-wrapper, .el-table__header-wrapper { - width: 100%; + width: 100%; } .el-table__footer-wrapper { - margin-top: -1px; + margin-top: -1px; } .el-table__footer-wrapper td { - border-top: 1px solid #ebeef5; + border-top: 1px solid #ebeef5; } .el-table__body, .el-table__footer, .el-table__header { - table-layout: fixed; - border-collapse: separate; + table-layout: fixed; + border-collapse: separate; } .el-table__footer-wrapper, .el-table__header-wrapper { - overflow: hidden; + overflow: hidden; } .el-table__footer-wrapper tbody td, .el-table__header-wrapper tbody td { - background-color: #f5f7fa; - color: #606266; + background-color: #f5f7fa; + color: #606266; } .el-table__body-wrapper { - overflow: hidden; - position: relative; + overflow: hidden; + position: relative; } .el-table__body-wrapper.is-scrolling-left ~ .el-table__fixed, .el-table__body-wrapper.is-scrolling-none ~ .el-table__fixed, .el-table__body-wrapper.is-scrolling-none ~ .el-table__fixed-right, .el-table__body-wrapper.is-scrolling-right ~ .el-table__fixed-right { - -webkit-box-shadow: none; - box-shadow: none; + -webkit-box-shadow: none; + box-shadow: none; } .el-picker-panel, .el-table-filter { - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } -.el-table__body-wrapper - .el-table--border.is-scrolling-right - ~ .el-table__fixed-right { - border-left: 1px solid #ebeef5; +.el-table__body-wrapper .el-table--border.is-scrolling-right ~ .el-table__fixed-right { + border-left: 1px solid #ebeef5; } .el-table .caret-wrapper { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 34px; - width: 24px; - vertical-align: middle; - cursor: pointer; - overflow: initial; - position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 34px; + width: 24px; + vertical-align: middle; + cursor: pointer; + overflow: initial; + position: relative; } .el-table .sort-caret { - width: 0; - height: 0; - border: 5px solid transparent; - position: absolute; - left: 7px; + width: 0; + height: 0; + border: 5px solid transparent; + position: absolute; + left: 7px; } .el-table .sort-caret.ascending { - border-bottom-color: #c0c4cc; - top: 5px; + border-bottom-color: #c0c4cc; + top: 5px; } .el-table .sort-caret.descending { - border-top-color: #c0c4cc; - bottom: 7px; + border-top-color: #c0c4cc; + bottom: 7px; } .el-table .ascending .sort-caret.ascending { - border-bottom-color: #51c21a; + border-bottom-color: #51c21a; } .el-table .descending .sort-caret.descending { - border-top-color: #51c21a; + border-top-color: #51c21a; } .el-table .hidden-columns { - position: absolute; - z-index: -1; + position: absolute; + z-index: -1; } .el-table--striped .el-table__body tr.el-table__row--striped td { - background: #fafafa; + background: #fafafa; } .el-table--striped .el-table__body tr.el-table__row--striped.current-row td { - background-color: #eef9e8; + background-color: rgb(238, 249, 232); } .el-table__body tr.hover-row.current-row > td, .el-table__body tr.hover-row.el-table__row--striped.current-row > td, .el-table__body tr.hover-row.el-table__row--striped > td, .el-table__body tr.hover-row > td { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-table__body tr.current-row > td { - background-color: #eef9e8; + background-color: rgb(238, 249, 232); } .el-table__column-resize-proxy { - position: absolute; - left: 200px; - top: 0; - bottom: 0; - width: 0; - border-left: 1px solid #ebeef5; - z-index: 10; + position: absolute; + left: 200px; + top: 0; + bottom: 0; + width: 0; + border-left: 1px solid #ebeef5; + z-index: 10; } .el-table__column-filter-trigger { - display: inline-block; - line-height: 34px; - cursor: pointer; + display: inline-block; + line-height: 34px; + cursor: pointer; } .el-table__column-filter-trigger i { - color: #909399; - font-size: 12px; - -webkit-transform: scale(0.75); - transform: scale(0.75); + color: #909399; + font-size: 12px; + -webkit-transform: scale(0.75); + transform: scale(0.75); } .el-table--enable-row-transition .el-table__body td { - -webkit-transition: background-color 0.25s ease; - transition: background-color 0.25s ease; + -webkit-transition: background-color 0.25s ease; + transition: background-color 0.25s ease; } .el-table--enable-row-hover .el-table__body tr:hover > td { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-table--fluid-height .el-table__fixed, .el-table--fluid-height .el-table__fixed-right { - bottom: 0; - overflow: hidden; + bottom: 0; + overflow: hidden; } .el-table [class*="el-table__row--level"] .el-table__expand-icon { - display: inline-block; - width: 20px; - line-height: 20px; - height: 20px; - text-align: center; - margin-right: 3px; + display: inline-block; + width: 20px; + line-height: 20px; + height: 20px; + text-align: center; + margin-right: 3px; } .el-table-column--selection .cell { - padding-left: 14px; - padding-right: 14px; + padding-left: 14px; + padding-right: 14px; } .el-table-filter { - border: 1px solid #ebeef5; - border-radius: 2px; - background-color: #fff; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 2px 0; + border: 1px solid #ebeef5; + border-radius: 2px; + background-color: #fff; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 2px 0; } .el-date-table td, .el-date-table td div { - height: 30px; - -webkit-box-sizing: border-box; + height: 30px; + -webkit-box-sizing: border-box; } .el-table-filter__list { - padding: 5px 0; - margin: 0; - list-style: none; - min-width: 100px; + padding: 5px 0; + margin: 0; + list-style: none; + min-width: 100px; } .el-table-filter__list-item { - line-height: 36px; - padding: 0 10px; - cursor: pointer; - font-size: 14px; + line-height: 36px; + padding: 0 10px; + cursor: pointer; + font-size: 14px; } .el-table-filter__list-item:hover { - background-color: #eef9e8; - color: #74ce48; + background-color: rgb(238, 249, 232); + color: rgb(116, 206, 72); } .el-table-filter__list-item.is-active { - background-color: #51c21a; - color: #fff; + background-color: #51c21a; + color: #fff; } .el-table-filter__content { - min-width: 100px; + min-width: 100px; } .el-table-filter__bottom { - border-top: 1px solid #ebeef5; - padding: 8px; + border-top: 1px solid #ebeef5; + padding: 8px; } .el-table-filter__bottom button { - background: 0 0; - border: none; - color: #606266; - cursor: pointer; - font-size: 13px; - padding: 0 3px; + background: 0 0; + border: none; + color: #606266; + cursor: pointer; + font-size: 13px; + padding: 0 3px; } .el-date-table td.in-range div, .el-date-table td.in-range div:hover, .el-date-table.is-week-mode .el-date-table__row.current div, .el-date-table.is-week-mode .el-date-table__row:hover div { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-table-filter__bottom button:hover { - color: #51c21a; + color: #51c21a; } .el-table-filter__bottom button:focus { - outline: 0; + outline: 0; } .el-table-filter__bottom button.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-table-filter__wrap { - max-height: 280px; + max-height: 280px; } .el-table-filter__checkbox-group { - padding: 10px; + padding: 10px; } .el-table-filter__checkbox-group label.el-checkbox { - display: block; - margin-right: 5px; - margin-bottom: 8px; - margin-left: 5px; + display: block; + margin-right: 5px; + margin-bottom: 8px; + margin-left: 5px; } .el-table-filter__checkbox-group .el-checkbox:last-child { - margin-bottom: 0; + margin-bottom: 0; } .el-date-table { - font-size: 12px; - -ms-user-select: none; - user-select: none; + font-size: 12px; + -ms-user-select: none; + user-select: none; } .el-date-table.is-week-mode .el-date-table__row:hover td.available:hover { - color: #606266; + color: #606266; } .el-date-table.is-week-mode .el-date-table__row:hover td:first-child div { - margin-left: 5px; - border-top-left-radius: 15px; - border-bottom-left-radius: 15px; + margin-left: 5px; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; } .el-date-table.is-week-mode .el-date-table__row:hover td:last-child div { - margin-right: 5px; - border-top-right-radius: 15px; - border-bottom-right-radius: 15px; + margin-right: 5px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; } .el-date-table td { - width: 32px; - padding: 4px 0; - box-sizing: border-box; - text-align: center; - cursor: pointer; - position: relative; + width: 32px; + padding: 4px 0; + box-sizing: border-box; + text-align: center; + cursor: pointer; + position: relative; } .el-date-table td div { - padding: 3px 0; - box-sizing: border-box; + padding: 3px 0; + box-sizing: border-box; } .el-date-table td span { - width: 24px; - height: 24px; - display: block; - margin: 0 auto; - line-height: 24px; - position: absolute; - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - border-radius: 50%; + width: 24px; + height: 24px; + display: block; + margin: 0 auto; + line-height: 24px; + position: absolute; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + border-radius: 50%; } .el-date-table td.next-month, .el-date-table td.prev-month { - color: #c0c4cc; + color: #c0c4cc; } .el-date-table td.today { - position: relative; + position: relative; } .el-date-table td.today span { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .el-date-table td.today.end-date span, .el-date-table td.today.start-date span { - color: #fff; + color: #fff; } .el-date-table td.available:hover { - color: #51c21a; + color: #51c21a; } .el-date-table td.current:not(.disabled) span { - color: #fff; - background-color: #51c21a; + color: #fff; + background-color: #51c21a; } .el-date-table td.end-date div, .el-date-table td.start-date div { - color: #fff; + color: #fff; } .el-date-table td.end-date span, .el-date-table td.start-date span { - background-color: #51c21a; + background-color: #51c21a; } .el-date-table td.start-date div { - margin-left: 5px; - border-top-left-radius: 15px; - border-bottom-left-radius: 15px; + margin-left: 5px; + border-top-left-radius: 15px; + border-bottom-left-radius: 15px; } .el-date-table td.end-date div { - margin-right: 5px; - border-top-right-radius: 15px; - border-bottom-right-radius: 15px; + margin-right: 5px; + border-top-right-radius: 15px; + border-bottom-right-radius: 15px; } .el-date-table td.disabled div { - background-color: #f5f7fa; - opacity: 1; - cursor: not-allowed; - color: #c0c4cc; + background-color: #f5f7fa; + opacity: 1; + cursor: not-allowed; + color: #c0c4cc; } .el-date-table td.selected div { - margin-left: 5px; - margin-right: 5px; - background-color: #f2f6fc; - border-radius: 15px; + margin-left: 5px; + margin-right: 5px; + background-color: #f2f6fc; + border-radius: 15px; } .el-date-table td.selected div:hover { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-date-table td.selected span { - background-color: #51c21a; - color: #fff; - border-radius: 15px; + background-color: #51c21a; + color: #fff; + border-radius: 15px; } .el-date-table td.week { - font-size: 80%; - color: #606266; + font-size: 80%; + color: #606266; } .el-month-table, .el-year-table { - font-size: 12px; - border-collapse: collapse; + font-size: 12px; + border-collapse: collapse; } .el-date-table th { - padding: 5px; - color: #606266; - font-weight: 400; - border-bottom: solid 1px #ebeef5; + padding: 5px; + color: #606266; + font-weight: 400; + border-bottom: solid 1px #ebeef5; } .el-month-table { - margin: -1px; + margin: -1px; } .el-month-table td { - text-align: center; - padding: 8px 0; - cursor: pointer; + text-align: center; + padding: 8px 0; + cursor: pointer; } .el-month-table td div { - height: 48px; - padding: 6px 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + height: 48px; + padding: 6px 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-month-table td.today .cell { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .el-month-table td.today.end-date .cell, .el-month-table td.today.start-date .cell { - color: #fff; + color: #fff; } .el-month-table td.disabled .cell { - background-color: #f5f7fa; - cursor: not-allowed; - color: #c0c4cc; + background-color: #f5f7fa; + cursor: not-allowed; + color: #c0c4cc; } .el-month-table td.disabled .cell:hover { - color: #c0c4cc; + color: #c0c4cc; } .el-month-table td .cell { - width: 60px; - height: 36px; - display: block; - line-height: 36px; - color: #606266; - margin: 0 auto; - border-radius: 18px; + width: 60px; + height: 36px; + display: block; + line-height: 36px; + color: #606266; + margin: 0 auto; + border-radius: 18px; } .el-month-table td .cell:hover { - color: #51c21a; + color: #51c21a; } .el-month-table td.in-range div, .el-month-table td.in-range div:hover { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-month-table td.end-date div, .el-month-table td.start-date div { - color: #fff; + color: #fff; } .el-month-table td.end-date .cell, .el-month-table td.start-date .cell { - color: #fff; - background-color: #51c21a; + color: #fff; + background-color: #51c21a; } .el-month-table td.start-date div { - border-top-left-radius: 24px; - border-bottom-left-radius: 24px; + border-top-left-radius: 24px; + border-bottom-left-radius: 24px; } .el-month-table td.end-date div { - border-top-right-radius: 24px; - border-bottom-right-radius: 24px; + border-top-right-radius: 24px; + border-bottom-right-radius: 24px; } .el-month-table td.current:not(.disabled) .cell { - color: #51c21a; + color: #51c21a; } .el-year-table { - margin: -1px; + margin: -1px; } .el-year-table .el-icon { - color: #303133; + color: #303133; } .el-year-table td { - text-align: center; - padding: 20px 3px; - cursor: pointer; + text-align: center; + padding: 20px 3px; + cursor: pointer; } .el-year-table td.today .cell { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .el-year-table td.disabled .cell { - background-color: #f5f7fa; - cursor: not-allowed; - color: #c0c4cc; + background-color: #f5f7fa; + cursor: not-allowed; + color: #c0c4cc; } .el-year-table td.disabled .cell:hover { - color: #c0c4cc; + color: #c0c4cc; } .el-year-table td .cell { - width: 48px; - height: 32px; - display: block; - line-height: 32px; - color: #606266; - margin: 0 auto; + width: 48px; + height: 32px; + display: block; + line-height: 32px; + color: #606266; + margin: 0 auto; } .el-year-table td .cell:hover, .el-year-table td.current:not(.disabled) .cell { - color: #51c21a; + color: #51c21a; } .el-date-range-picker { - width: 646px; + width: 646px; } .el-date-range-picker.has-sidebar { - width: 756px; + width: 756px; } .el-date-range-picker table { - table-layout: fixed; - width: 100%; + table-layout: fixed; + width: 100%; } .el-date-range-picker .el-picker-panel__body { - min-width: 513px; + min-width: 513px; } .el-date-range-picker .el-picker-panel__content { - margin: 0; + margin: 0; } .el-date-range-picker__header { - position: relative; - text-align: center; - height: 28px; + position: relative; + text-align: center; + height: 28px; } .el-date-range-picker__header [class*="arrow-left"] { - float: left; + float: left; } .el-date-range-picker__header [class*="arrow-right"] { - float: right; + float: right; } .el-date-range-picker__header div { - font-size: 16px; - font-weight: 500; - margin-right: 50px; + font-size: 16px; + font-weight: 500; + margin-right: 50px; } .el-date-range-picker__content { - float: left; - width: 50%; - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 0; - padding: 16px; + float: left; + width: 50%; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + padding: 16px; } .el-date-range-picker__content.is-left { - border-right: 1px solid #e4e4e4; + border-right: 1px solid #e4e4e4; } .el-date-range-picker__content .el-date-range-picker__header div { - margin-left: 50px; - margin-right: 50px; + margin-left: 50px; + margin-right: 50px; } .el-date-range-picker__editors-wrap { - -webkit-box-sizing: border-box; - box-sizing: border-box; - display: table-cell; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: table-cell; } .el-date-range-picker__editors-wrap.is-right { - text-align: right; + text-align: right; } .el-date-range-picker__time-header { - position: relative; - border-bottom: 1px solid #e4e4e4; - font-size: 12px; - padding: 8px 5px 5px; - display: table; - width: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; + position: relative; + border-bottom: 1px solid #e4e4e4; + font-size: 12px; + padding: 8px 5px 5px; + display: table; + width: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-date-range-picker__time-header > .el-icon-arrow-right { - font-size: 20px; - vertical-align: middle; - display: table-cell; - color: #303133; + font-size: 20px; + vertical-align: middle; + display: table-cell; + color: #303133; } .el-date-range-picker__time-picker-wrap { - position: relative; - display: table-cell; - padding: 0 5px; + position: relative; + display: table-cell; + padding: 0 5px; } .el-date-range-picker__time-picker-wrap .el-picker-panel { - position: absolute; - top: 13px; - right: 0; - z-index: 1; - background: #fff; + position: absolute; + top: 13px; + right: 0; + z-index: 1; + background: #fff; } .el-date-picker { - width: 322px; + width: 322px; } .el-date-picker.has-sidebar.has-time { - width: 434px; + width: 434px; } .el-date-picker.has-sidebar { - width: 438px; + width: 438px; } .el-date-picker.has-time .el-picker-panel__body-wrapper { - position: relative; + position: relative; } .el-date-picker .el-picker-panel__content { - width: 292px; + width: 292px; } .el-date-picker table { - table-layout: fixed; - width: 100%; + table-layout: fixed; + width: 100%; } .el-date-picker__editor-wrap { - position: relative; - display: table-cell; - padding: 0 5px; + position: relative; + display: table-cell; + padding: 0 5px; } .el-date-picker__time-header { - position: relative; - border-bottom: 1px solid #e4e4e4; - font-size: 12px; - padding: 8px 5px 5px; - display: table; - width: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; + position: relative; + border-bottom: 1px solid #e4e4e4; + font-size: 12px; + padding: 8px 5px 5px; + display: table; + width: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-date-picker__header { - margin: 12px; - text-align: center; + margin: 12px; + text-align: center; } .el-date-picker__header--bordered { - margin-bottom: 0; - padding-bottom: 12px; - border-bottom: solid 1px #ebeef5; + margin-bottom: 0; + padding-bottom: 12px; + border-bottom: solid 1px #ebeef5; } .el-date-picker__header--bordered + .el-picker-panel__content { - margin-top: 0; + margin-top: 0; } .el-date-picker__header-label { - font-size: 16px; - font-weight: 500; - padding: 0 5px; - line-height: 22px; - text-align: center; - cursor: pointer; - color: #606266; + font-size: 16px; + font-weight: 500; + padding: 0 5px; + line-height: 22px; + text-align: center; + cursor: pointer; + color: #606266; } .el-date-picker__header-label.active, .el-date-picker__header-label:hover { - color: #51c21a; + color: #51c21a; } .el-date-picker__prev-btn { - float: left; + float: left; } .el-date-picker__next-btn { - float: right; + float: right; } .el-date-picker__time-wrap { - padding: 10px; - text-align: center; + padding: 10px; + text-align: center; } .el-date-picker__time-label { - float: left; - cursor: pointer; - line-height: 30px; - margin-left: 10px; + float: left; + cursor: pointer; + line-height: 30px; + margin-left: 10px; } .time-select { - margin: 5px 0; - min-width: 0; + margin: 5px 0; + min-width: 0; } .time-select .el-picker-panel__content { - max-height: 200px; - margin: 0; + max-height: 200px; + margin: 0; } .time-select-item { - padding: 8px 10px; - font-size: 14px; - line-height: 20px; + padding: 8px 10px; + font-size: 14px; + line-height: 20px; } .time-select-item.selected:not(.disabled) { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .time-select-item.disabled { - color: #e4e7ed; - cursor: not-allowed; + color: #e4e7ed; + cursor: not-allowed; } .time-select-item:hover { - background-color: #f5f7fa; - font-weight: 700; - cursor: pointer; + background-color: #f5f7fa; + font-weight: 700; + cursor: pointer; } .el-date-editor { - position: relative; - display: inline-block; - text-align: left; + position: relative; + display: inline-block; + text-align: left; } .el-date-editor.el-input, .el-date-editor.el-input__inner { - width: 220px; + width: 220px; } .el-date-editor--monthrange.el-input, .el-date-editor--monthrange.el-input__inner { - width: 300px; + width: 300px; } .el-date-editor--daterange.el-input, .el-date-editor--daterange.el-input__inner, .el-date-editor--timerange.el-input, .el-date-editor--timerange.el-input__inner { - width: 350px; + width: 350px; } .el-date-editor--datetimerange.el-input, .el-date-editor--datetimerange.el-input__inner { - width: 400px; + width: 400px; } .el-date-editor--dates .el-input__inner { - text-overflow: ellipsis; - white-space: nowrap; + text-overflow: ellipsis; + white-space: nowrap; } .el-date-editor .el-icon-circle-close { - cursor: pointer; + cursor: pointer; } .el-date-editor .el-range__icon { - font-size: 14px; - margin-left: -5px; - color: #c0c4cc; - float: left; - line-height: 32px; + font-size: 14px; + margin-left: -5px; + color: #c0c4cc; + float: left; + line-height: 32px; } .el-date-editor .el-range-input, .el-date-editor .el-range-separator { - height: 100%; - margin: 0; - text-align: center; - display: inline-block; - font-size: 14px; + height: 100%; + margin: 0; + text-align: center; + display: inline-block; + font-size: 14px; } .el-date-editor .el-range-input { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - border: none; - outline: 0; - padding: 0; - width: 39%; - color: #606266; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border: none; + outline: 0; + padding: 0; + width: 39%; + color: #606266; } .el-date-editor .el-range-input::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-date-editor .el-range-input:-ms-input-placeholder { + color: #c0c4cc; } .el-date-editor .el-range-input::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-date-editor .el-range-input::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-date-editor .el-range-separator { - padding: 0 5px; - line-height: 32px; - width: 5%; - color: #303133; + padding: 0 5px; + line-height: 32px; + width: 5%; + color: #303133; } .el-date-editor .el-range__close-icon { - font-size: 14px; - color: #c0c4cc; - width: 25px; - display: inline-block; - float: right; - line-height: 32px; + font-size: 14px; + color: #c0c4cc; + width: 25px; + display: inline-block; + float: right; + line-height: 32px; } .el-range-editor.el-input__inner { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 3px 10px; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 3px 10px; } .el-range-editor .el-range-input { - line-height: 1; + line-height: 1; } .el-range-editor.is-active, .el-range-editor.is-active:hover { - border-color: #51c21a; + border-color: #51c21a; } .el-range-editor--medium.el-input__inner { - height: 36px; + height: 36px; } .el-range-editor--medium .el-range-separator { - line-height: 28px; - font-size: 14px; + line-height: 28px; + font-size: 14px; } .el-range-editor--medium .el-range-input { - font-size: 14px; + font-size: 14px; } .el-range-editor--medium .el-range__close-icon, .el-range-editor--medium .el-range__icon { - line-height: 28px; + line-height: 28px; } .el-range-editor--small.el-input__inner { - height: 32px; + height: 32px; } .el-range-editor--small .el-range-separator { - line-height: 24px; - font-size: 13px; + line-height: 24px; + font-size: 13px; } .el-range-editor--small .el-range-input { - font-size: 13px; + font-size: 13px; } .el-range-editor--small .el-range__close-icon, .el-range-editor--small .el-range__icon { - line-height: 24px; + line-height: 24px; } .el-range-editor--mini.el-input__inner { - height: 28px; + height: 28px; } .el-range-editor--mini .el-range-separator { - line-height: 20px; - font-size: 12px; + line-height: 20px; + font-size: 12px; } .el-range-editor--mini .el-range-input { - font-size: 12px; + font-size: 12px; } .el-range-editor--mini .el-range__close-icon, .el-range-editor--mini .el-range__icon { - line-height: 20px; + line-height: 20px; } .el-range-editor.is-disabled { - background-color: #f5f7fa; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; } .el-range-editor.is-disabled:focus, .el-range-editor.is-disabled:hover { - border-color: #e4e7ed; + border-color: #e4e7ed; } .el-range-editor.is-disabled input { - background-color: #f5f7fa; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + color: #c0c4cc; + cursor: not-allowed; } .el-range-editor.is-disabled input::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-range-editor.is-disabled input:-ms-input-placeholder { + color: #c0c4cc; } .el-range-editor.is-disabled input::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-range-editor.is-disabled input::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-range-editor.is-disabled .el-range-separator { - color: #c0c4cc; + color: #c0c4cc; } .el-picker-panel { - color: #606266; - border: 1px solid #e4e7ed; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - background: #fff; - border-radius: 4px; - line-height: 30px; - margin: 5px 0; + color: #606266; + border: 1px solid #e4e7ed; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + background: #fff; + border-radius: 4px; + line-height: 30px; + margin: 5px 0; } .el-popover, .el-time-panel { - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-picker-panel__body-wrapper::after, .el-picker-panel__body::after { - content: ""; - display: table; - clear: both; + content: ""; + display: table; + clear: both; } .el-picker-panel__content { - position: relative; - margin: 15px; + position: relative; + margin: 15px; } .el-picker-panel__footer { - border-top: 1px solid #e4e4e4; - padding: 4px; - text-align: right; - background-color: #fff; - position: relative; - font-size: 0; + border-top: 1px solid #e4e4e4; + padding: 4px; + text-align: right; + background-color: #fff; + position: relative; + font-size: 0; } .el-picker-panel__shortcut { - display: block; - width: 100%; - border: 0; - background-color: transparent; - line-height: 28px; - font-size: 14px; - color: #606266; - padding-left: 12px; - text-align: left; - outline: 0; - cursor: pointer; + display: block; + width: 100%; + border: 0; + background-color: transparent; + line-height: 28px; + font-size: 14px; + color: #606266; + padding-left: 12px; + text-align: left; + outline: 0; + cursor: pointer; } .el-picker-panel__shortcut:hover { - color: #51c21a; + color: #51c21a; } .el-picker-panel__shortcut.active { - background-color: #e6f1fe; - color: #51c21a; + background-color: #e6f1fe; + color: #51c21a; } .el-picker-panel__btn { - border: 1px solid #dcdcdc; - color: #333; - line-height: 24px; - border-radius: 2px; - padding: 0 20px; - cursor: pointer; - background-color: transparent; - outline: 0; - font-size: 12px; + border: 1px solid #dcdcdc; + color: #333; + line-height: 24px; + border-radius: 2px; + padding: 0 20px; + cursor: pointer; + background-color: transparent; + outline: 0; + font-size: 12px; } .el-picker-panel__btn[disabled] { - color: #ccc; - cursor: not-allowed; + color: #ccc; + cursor: not-allowed; } .el-picker-panel__icon-btn { - font-size: 12px; - color: #303133; - border: 0; - background: 0 0; - cursor: pointer; - outline: 0; - margin-top: 8px; + font-size: 12px; + color: #303133; + border: 0; + background: 0 0; + cursor: pointer; + outline: 0; + margin-top: 8px; } .el-picker-panel__icon-btn:hover { - color: #51c21a; + color: #51c21a; } .el-picker-panel__icon-btn.is-disabled { - color: #bbb; + color: #bbb; } .el-picker-panel__icon-btn.is-disabled:hover { - cursor: not-allowed; + cursor: not-allowed; } .el-picker-panel__link-btn { - vertical-align: middle; + vertical-align: middle; } .el-picker-panel [slot="sidebar"], .el-picker-panel__sidebar { - position: absolute; - top: 0; - bottom: 0; - width: 110px; - border-right: 1px solid #e4e4e4; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-top: 6px; - background-color: #fff; - overflow: auto; + position: absolute; + top: 0; + bottom: 0; + width: 110px; + border-right: 1px solid #e4e4e4; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding-top: 6px; + background-color: #fff; + overflow: auto; } .el-picker-panel [slot="sidebar"] + .el-picker-panel__body, .el-picker-panel__sidebar + .el-picker-panel__body { - margin-left: 110px; + margin-left: 110px; } .el-time-spinner.has-seconds .el-time-spinner__wrapper { - width: 33.3%; + width: 33.3%; } .el-time-spinner__wrapper { - max-height: 190px; - overflow: auto; - display: inline-block; - width: 50%; - vertical-align: top; - position: relative; + max-height: 190px; + overflow: auto; + display: inline-block; + width: 50%; + vertical-align: top; + position: relative; } -.el-time-spinner__wrapper - .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) { - padding-bottom: 15px; +.el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default) { + padding-bottom: 15px; } .el-time-spinner__input.el-input .el-input__inner, .el-time-spinner__list { - padding: 0; - text-align: center; + padding: 0; + text-align: center; } .el-time-spinner__wrapper.is-arrow { - -webkit-box-sizing: border-box; - box-sizing: border-box; - text-align: center; - overflow: hidden; + -webkit-box-sizing: border-box; + box-sizing: border-box; + text-align: center; + overflow: hidden; } .el-time-spinner__wrapper.is-arrow .el-time-spinner__list { - -webkit-transform: translateY(-32px); - transform: translateY(-32px); + -webkit-transform: translateY(-32px); + transform: translateY(-32px); } -.el-time-spinner__wrapper.is-arrow - .el-time-spinner__item:hover:not(.disabled):not(.active) { - background: #fff; - cursor: default; +.el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active) { + background: #fff; + cursor: default; } .el-time-spinner__arrow { - font-size: 12px; - color: #909399; - position: absolute; - left: 0; - width: 100%; - z-index: 1; - text-align: center; - height: 30px; - line-height: 30px; - cursor: pointer; + font-size: 12px; + color: #909399; + position: absolute; + left: 0; + width: 100%; + z-index: 1; + text-align: center; + height: 30px; + line-height: 30px; + cursor: pointer; } .el-time-spinner__arrow:hover { - color: #51c21a; + color: #51c21a; } .el-time-spinner__arrow.el-icon-arrow-up { - top: 10px; + top: 10px; } .el-time-spinner__arrow.el-icon-arrow-down { - bottom: 10px; + bottom: 10px; } .el-time-spinner__input.el-input { - width: 70%; + width: 70%; } .el-time-spinner__list { - margin: 0; - list-style: none; + margin: 0; + list-style: none; } .el-time-spinner__list::after, .el-time-spinner__list::before { - content: ""; - display: block; - width: 100%; - height: 80px; + content: ""; + display: block; + width: 100%; + height: 80px; } .el-time-spinner__item { - height: 32px; - line-height: 32px; - font-size: 12px; - color: #606266; + height: 32px; + line-height: 32px; + font-size: 12px; + color: #606266; } .el-time-spinner__item:hover:not(.disabled):not(.active) { - background: #f5f7fa; - cursor: pointer; + background: #f5f7fa; + cursor: pointer; } .el-time-spinner__item.active:not(.disabled) { - color: #303133; - font-weight: 700; + color: #303133; + font-weight: 700; } .el-time-spinner__item.disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-time-panel { - margin: 5px 0; - border: 1px solid #e4e7ed; - background-color: #fff; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - border-radius: 2px; - position: absolute; - width: 180px; - left: 0; - z-index: 1000; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-box-sizing: content-box; - box-sizing: content-box; + margin: 5px 0; + border: 1px solid #e4e7ed; + background-color: #fff; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + border-radius: 2px; + position: absolute; + width: 180px; + left: 0; + z-index: 1000; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + -webkit-box-sizing: content-box; + box-sizing: content-box; } .el-slider__button, .el-slider__button-wrapper { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; } .el-time-panel__content { - font-size: 0; - position: relative; - overflow: hidden; + font-size: 0; + position: relative; + overflow: hidden; } .el-time-panel__content::after, .el-time-panel__content::before { - content: ""; - top: 50%; - position: absolute; - margin-top: -15px; - height: 32px; - z-index: -1; - left: 0; - right: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-top: 6px; - text-align: left; - border-top: 1px solid #e4e7ed; - border-bottom: 1px solid #e4e7ed; + content: ""; + top: 50%; + position: absolute; + margin-top: -15px; + height: 32px; + z-index: -1; + left: 0; + right: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding-top: 6px; + text-align: left; + border-top: 1px solid #e4e7ed; + border-bottom: 1px solid #e4e7ed; } .el-time-panel__content::after { - left: 50%; - margin-left: 12%; - margin-right: 12%; + left: 50%; + margin-left: 12%; + margin-right: 12%; } .el-time-panel__content::before { - padding-left: 50%; - margin-right: 12%; - margin-left: 12%; + padding-left: 50%; + margin-right: 12%; + margin-left: 12%; } .el-time-panel__content.has-seconds::after { - left: calc(100% / 3 * 2); + left: calc(100% / 3 * 2); } .el-time-panel__content.has-seconds::before { - padding-left: calc(100% / 3); + padding-left: calc(100% / 3); } .el-time-panel__footer { - border-top: 1px solid #e4e4e4; - padding: 4px; - height: 36px; - line-height: 25px; - text-align: right; - -webkit-box-sizing: border-box; - box-sizing: border-box; + border-top: 1px solid #e4e4e4; + padding: 4px; + height: 36px; + line-height: 25px; + text-align: right; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-time-panel__btn { - border: none; - line-height: 28px; - padding: 0 5px; - margin: 0 5px; - cursor: pointer; - background-color: transparent; - outline: 0; - font-size: 12px; - color: #303133; + border: none; + line-height: 28px; + padding: 0 5px; + margin: 0 5px; + cursor: pointer; + background-color: transparent; + outline: 0; + font-size: 12px; + color: #303133; } .el-time-panel__btn.confirm { - font-weight: 800; - color: #51c21a; + font-weight: 800; + color: #51c21a; } .el-time-range-picker { - width: 354px; - overflow: visible; + width: 354px; + overflow: visible; } .el-time-range-picker__content { - position: relative; - text-align: center; - padding: 10px; + position: relative; + text-align: center; + padding: 10px; } .el-time-range-picker__cell { - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 0; - padding: 4px 7px 7px; - width: 50%; - display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + padding: 4px 7px 7px; + width: 50%; + display: inline-block; } .el-time-range-picker__header { - margin-bottom: 5px; - text-align: center; - font-size: 14px; + margin-bottom: 5px; + text-align: center; + font-size: 14px; } .el-time-range-picker__body { - border-radius: 2px; - border: 1px solid #e4e7ed; + border-radius: 2px; + border: 1px solid #e4e7ed; } .el-popover { - position: absolute; - background: #fff; - min-width: 150px; - border: 1px solid #ebeef5; - padding: 12px; - z-index: 2000; - color: #606266; - line-height: 1.4; - text-align: justify; - font-size: 14px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - word-break: break-all; + position: absolute; + background: #fff; + min-width: 150px; + border: 1px solid #ebeef5; + padding: 12px; + z-index: 2000; + color: #606266; + line-height: 1.4; + text-align: justify; + font-size: 14px; + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + word-break: break-all; } .el-popover--plain { - padding: 18px 20px; + padding: 18px 20px; } .el-popover__title { - color: #303133; - font-size: 16px; - line-height: 1; - margin-bottom: 12px; + color: #303133; + font-size: 16px; + line-height: 1; + margin-bottom: 12px; } .v-modal-enter { - -webkit-animation: v-modal-in 0.2s ease; - animation: v-modal-in 0.2s ease; + -webkit-animation: v-modal-in 0.2s ease; + animation: v-modal-in 0.2s ease; } .v-modal-leave { - -webkit-animation: v-modal-out 0.2s ease forwards; - animation: v-modal-out 0.2s ease forwards; + -webkit-animation: v-modal-out 0.2s ease forwards; + animation: v-modal-out 0.2s ease forwards; } @keyframes v-modal-in { - 0% { - opacity: 0; - } + 0% { + opacity: 0; + } } @keyframes v-modal-out { - 100% { - opacity: 0; - } + 100% { + opacity: 0; + } } .v-modal { - position: fixed; - left: 0; - top: 0; - width: 100%; - height: 100%; - opacity: 0.5; - background: #000; + position: fixed; + left: 0; + top: 0; + width: 100%; + height: 100%; + opacity: 0.5; + background: #000; } .el-popup-parent--hidden { - overflow: hidden; + overflow: hidden; } .el-message-box { - display: inline-block; - width: 420px; - padding-bottom: 10px; - vertical-align: middle; - background-color: #fff; - border-radius: 4px; - border: 1px solid #ebeef5; - font-size: 18px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - text-align: left; - overflow: hidden; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; + display: inline-block; + width: 420px; + padding-bottom: 10px; + vertical-align: middle; + background-color: #fff; + border-radius: 4px; + border: 1px solid #ebeef5; + font-size: 18px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + text-align: left; + overflow: hidden; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; } .el-message-box__wrapper { - position: fixed; - top: 0; - bottom: 0; - left: 0; - right: 0; - text-align: center; + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + text-align: center; } .el-message-box__wrapper::after { - content: ""; - display: inline-block; - height: 100%; - width: 0; - vertical-align: middle; + content: ""; + display: inline-block; + height: 100%; + width: 0; + vertical-align: middle; } .el-message-box__header { - position: relative; - padding: 15px 15px 10px; + position: relative; + padding: 15px 15px 10px; } .el-message-box__title { - padding-left: 0; - margin-bottom: 0; - font-size: 18px; - line-height: 1; - color: #303133; + padding-left: 0; + margin-bottom: 0; + font-size: 18px; + line-height: 1; + color: #303133; } .el-message-box__headerbtn { - position: absolute; - top: 15px; - right: 15px; - padding: 0; - border: none; - outline: 0; - background: 0 0; - font-size: 16px; - cursor: pointer; + position: absolute; + top: 15px; + right: 15px; + padding: 0; + border: none; + outline: 0; + background: 0 0; + font-size: 16px; + cursor: pointer; } .el-form-item.is-error .el-input__inner, .el-form-item.is-error .el-input__inner:focus, @@ -3774,678 +2876,659 @@ .el-form-item.is-error .el-textarea__inner:focus, .el-message-box__input input.invalid, .el-message-box__input input.invalid:focus { - border-color: #f56c6c; + border-color: #f56c6c; } .el-message-box__headerbtn .el-message-box__close { - color: #909399; + color: #909399; } .el-message-box__headerbtn:focus .el-message-box__close, .el-message-box__headerbtn:hover .el-message-box__close { - color: #51c21a; + color: #51c21a; } .el-message-box__content { - padding: 10px 15px; - color: #606266; - font-size: 14px; + padding: 10px 15px; + color: #606266; + font-size: 14px; } .el-message-box__container { - position: relative; + position: relative; } .el-message-box__input { - padding-top: 15px; + padding-top: 15px; } .el-message-box__status { - position: absolute; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - font-size: 24px !important; + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + font-size: 24px !important; } .el-message-box__status::before { - padding-left: 1px; + padding-left: 1px; } .el-message-box__status + .el-message-box__message { - padding-left: 36px; - padding-right: 12px; + padding-left: 36px; + padding-right: 12px; } .el-message-box__status.el-icon-success { - color: #67c23a; + color: #67c23a; } .el-message-box__status.el-icon-info { - color: #909399; + color: #909399; } .el-message-box__status.el-icon-warning { - color: #e6a23c; + color: #e6a23c; } .el-message-box__status.el-icon-error { - color: #f56c6c; + color: #f56c6c; } .el-message-box__message { - margin: 0; + margin: 0; } .el-message-box__message p { - margin: 0; - line-height: 24px; + margin: 0; + line-height: 24px; } .el-message-box__errormsg { - color: #f56c6c; - font-size: 12px; - min-height: 18px; - margin-top: 2px; + color: #f56c6c; + font-size: 12px; + min-height: 18px; + margin-top: 2px; } .el-message-box__btns { - padding: 5px 15px 0; - text-align: right; + padding: 5px 15px 0; + text-align: right; } .el-message-box__btns button:nth-child(2) { - margin-left: 10px; + margin-left: 10px; } .el-message-box__btns-reverse { - -webkit-box-orient: horizontal; - -webkit-box-direction: reverse; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; + -webkit-box-orient: horizontal; + -webkit-box-direction: reverse; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; } .el-message-box--center { - padding-bottom: 30px; + padding-bottom: 30px; } .el-message-box--center .el-message-box__header { - padding-top: 30px; + padding-top: 30px; } .el-message-box--center .el-message-box__title { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-message-box--center .el-message-box__status { - position: relative; - top: auto; - padding-right: 5px; - text-align: center; - -webkit-transform: translateY(-1px); - transform: translateY(-1px); + position: relative; + top: auto; + padding-right: 5px; + text-align: center; + -webkit-transform: translateY(-1px); + transform: translateY(-1px); } .el-message-box--center .el-message-box__message { - margin-left: 0; + margin-left: 0; } .el-message-box--center .el-message-box__btns, .el-message-box--center .el-message-box__content { - text-align: center; + text-align: center; } .el-message-box--center .el-message-box__content { - padding-left: 27px; - padding-right: 27px; + padding-left: 27px; + padding-right: 27px; } .msgbox-fade-enter-active { - -webkit-animation: msgbox-fade-in 0.3s; - animation: msgbox-fade-in 0.3s; + -webkit-animation: msgbox-fade-in 0.3s; + animation: msgbox-fade-in 0.3s; } .msgbox-fade-leave-active { - -webkit-animation: msgbox-fade-out 0.3s; - animation: msgbox-fade-out 0.3s; + -webkit-animation: msgbox-fade-out 0.3s; + animation: msgbox-fade-out 0.3s; } @-webkit-keyframes msgbox-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @keyframes msgbox-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @-webkit-keyframes msgbox-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } @keyframes msgbox-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } .el-breadcrumb { - font-size: 14px; - line-height: 1; + font-size: 14px; + line-height: 1; } .el-breadcrumb::after, .el-breadcrumb::before { - display: table; - content: ""; + display: table; + content: ""; } .el-breadcrumb::after { - clear: both; + clear: both; } .el-breadcrumb__separator { - margin: 0 9px; - font-weight: 700; - color: #c0c4cc; + margin: 0 9px; + font-weight: 700; + color: #c0c4cc; } .el-breadcrumb__separator[class*="icon"] { - margin: 0 6px; - font-weight: 400; + margin: 0 6px; + font-weight: 400; } .el-breadcrumb__item { - float: left; + float: left; } .el-breadcrumb__inner { - color: #606266; + color: #606266; } .el-breadcrumb__inner a, .el-breadcrumb__inner.is-link { - font-weight: 700; - text-decoration: none; - -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - color: #303133; + font-weight: 700; + text-decoration: none; + -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + color: #303133; } .el-breadcrumb__inner a:hover, .el-breadcrumb__inner.is-link:hover { - color: #51c21a; - cursor: pointer; + color: #51c21a; + cursor: pointer; } .el-breadcrumb__item:last-child .el-breadcrumb__inner, .el-breadcrumb__item:last-child .el-breadcrumb__inner a, .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover, .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover { - font-weight: 400; - color: #606266; - cursor: text; + font-weight: 400; + color: #606266; + cursor: text; } .el-breadcrumb__item:last-child .el-breadcrumb__separator { - display: none; + display: none; } .el-form--label-left .el-form-item__label { - text-align: left; + text-align: left; } .el-form--label-top .el-form-item__label { - float: none; - display: inline-block; - text-align: left; - padding: 0 0 10px; + float: none; + display: inline-block; + text-align: left; + padding: 0 0 10px; } .el-form--inline .el-form-item { - display: inline-block; - margin-right: 10px; - vertical-align: top; + display: inline-block; + margin-right: 10px; + vertical-align: top; } .el-form--inline .el-form-item__label { - float: none; - display: inline-block; + float: none; + display: inline-block; } .el-form--inline .el-form-item__content { - display: inline-block; - vertical-align: top; + display: inline-block; + vertical-align: top; } .el-form--inline.el-form--label-top .el-form-item__content { - display: block; + display: block; } .el-form-item { - margin-bottom: 22px; + margin-bottom: 22px; } .el-form-item::after, .el-form-item::before { - display: table; - content: ""; + display: table; + content: ""; } .el-form-item::after { - clear: both; + clear: both; } .el-form-item .el-form-item { - margin-bottom: 0; + margin-bottom: 0; } .el-form-item--mini.el-form-item, .el-form-item--small.el-form-item { - margin-bottom: 18px; + margin-bottom: 18px; } .el-form-item .el-input__validateIcon { - display: none; + display: none; } .el-form-item--medium .el-form-item__content, .el-form-item--medium .el-form-item__label { - line-height: 36px; + line-height: 36px; } .el-form-item--small .el-form-item__content, .el-form-item--small .el-form-item__label { - line-height: 32px; + line-height: 32px; } .el-form-item--small .el-form-item__error { - padding-top: 2px; + padding-top: 2px; } .el-form-item--mini .el-form-item__content, .el-form-item--mini .el-form-item__label { - line-height: 28px; + line-height: 28px; } .el-form-item--mini .el-form-item__error { - padding-top: 1px; + padding-top: 1px; } .el-form-item__label-wrap { - float: left; + float: left; } .el-form-item__label-wrap .el-form-item__label { - display: inline-block; - float: none; + display: inline-block; + float: none; } .el-form-item__label { - text-align: right; - vertical-align: middle; - float: left; - font-size: 14px; - color: #606266; - line-height: 40px; - padding: 0 12px 0 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + text-align: right; + vertical-align: middle; + float: left; + font-size: 14px; + color: #606266; + line-height: 40px; + padding: 0 12px 0 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-form-item__content { - line-height: 40px; - position: relative; - font-size: 14px; + line-height: 40px; + position: relative; + font-size: 14px; } .el-form-item__content::after, .el-form-item__content::before { - display: table; - content: ""; + display: table; + content: ""; } .el-form-item__content::after { - clear: both; + clear: both; } .el-form-item__content .el-input-group { - vertical-align: top; + vertical-align: top; } .el-form-item__error { - color: #f56c6c; - font-size: 12px; - line-height: 1; - padding-top: 4px; - position: absolute; - top: 100%; - left: 0; + color: #f56c6c; + font-size: 12px; + line-height: 1; + padding-top: 4px; + position: absolute; + top: 100%; + left: 0; } .el-form-item__error--inline { - position: relative; - top: auto; - left: auto; - display: inline-block; - margin-left: 10px; + position: relative; + top: auto; + left: auto; + display: inline-block; + margin-left: 10px; } .el-form-item.is-required:not(.is-no-asterisk) - .el-form-item__label-wrap - > .el-form-item__label:before, + .el-form-item__label-wrap + > .el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before { - content: "*"; - color: #f56c6c; - margin-right: 4px; + content: "*"; + color: #f56c6c; + margin-right: 4px; } .el-form-item.is-error .el-input-group__append .el-input__inner, .el-form-item.is-error .el-input-group__prepend .el-input__inner { - border-color: transparent; + border-color: transparent; } .el-form-item.is-error .el-input__validateIcon { - color: #f56c6c; + color: #f56c6c; } .el-form-item--feedback .el-input__validateIcon { - display: inline-block; + display: inline-block; } .el-tabs__header { - padding: 0; - position: relative; - margin: 0 0 15px; + padding: 0; + position: relative; + margin: 0 0 15px; } .el-tabs__active-bar { - position: absolute; - bottom: 0; - left: 0; - height: 2px; - background-color: #51c21a; - z-index: 1; - -webkit-transition: -webkit-transform 0.3s - cubic-bezier(0.645, 0.045, 0.355, 1); - transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), - -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - list-style: none; + position: absolute; + bottom: 0; + left: 0; + height: 2px; + background-color: #51c21a; + z-index: 1; + -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + list-style: none; } .el-tabs__new-tab { - float: right; - border: 1px solid #d3dce6; - height: 18px; - width: 18px; - line-height: 18px; - margin: 12px 0 9px 10px; - border-radius: 3px; - text-align: center; - font-size: 12px; - color: #d3dce6; - cursor: pointer; - -webkit-transition: all 0.15s; - transition: all 0.15s; + float: right; + border: 1px solid #d3dce6; + height: 18px; + width: 18px; + line-height: 18px; + margin: 12px 0 9px 10px; + border-radius: 3px; + text-align: center; + font-size: 12px; + color: #d3dce6; + cursor: pointer; + -webkit-transition: all 0.15s; + transition: all 0.15s; } .el-collapse-item__arrow, .el-tabs__nav { - -webkit-transition: -webkit-transform 0.3s; + -webkit-transition: -webkit-transform 0.3s; } .el-tabs__new-tab .el-icon-plus { - -webkit-transform: scale(0.8, 0.8); - transform: scale(0.8, 0.8); + -webkit-transform: scale(0.8, 0.8); + transform: scale(0.8, 0.8); } .el-tabs__new-tab:hover { - color: #51c21a; + color: #51c21a; } .el-tabs__nav-wrap { - overflow: hidden; - margin-bottom: -1px; - position: relative; + overflow: hidden; + margin-bottom: -1px; + position: relative; } .el-tabs__nav-wrap::after { - content: ""; - position: absolute; - left: 0; - bottom: 0; - width: 100%; - height: 2px; - background-color: #e4e7ed; - z-index: 1; + content: ""; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 2px; + background-color: #e4e7ed; + z-index: 1; } .el-tabs--border-card > .el-tabs__header .el-tabs__nav-wrap::after, .el-tabs--card > .el-tabs__header .el-tabs__nav-wrap::after { - content: none; + content: none; } .el-tabs__nav-wrap.is-scrollable { - padding: 0 20px; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding: 0 20px; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-tabs__nav-scroll { - overflow: hidden; + overflow: hidden; } .el-tabs__nav-next, .el-tabs__nav-prev { - position: absolute; - cursor: pointer; - line-height: 44px; - font-size: 12px; - color: #909399; + position: absolute; + cursor: pointer; + line-height: 44px; + font-size: 12px; + color: #909399; } .el-tabs__nav-next { - right: 0; + right: 0; } .el-tabs__nav-prev { - left: 0; + left: 0; } .el-tabs__nav { - white-space: nowrap; - position: relative; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - float: left; - z-index: 2; + white-space: nowrap; + position: relative; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + float: left; + z-index: 2; } .el-tabs__nav.is-stretch { - min-width: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; + min-width: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } .el-tabs__nav.is-stretch > * { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - text-align: center; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + text-align: center; } .el-tabs__item { - padding: 0 20px; - height: 40px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - line-height: 40px; - display: inline-block; - list-style: none; - font-size: 14px; - font-weight: 500; - color: #303133; - position: relative; + padding: 0 20px; + height: 40px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + line-height: 40px; + display: inline-block; + list-style: none; + font-size: 14px; + font-weight: 500; + color: #303133; + position: relative; } .el-tabs__item:focus, .el-tabs__item:focus:active { - outline: 0; + outline: 0; } .el-tabs__item:focus.is-active.is-focus:not(:active) { - -webkit-box-shadow: 0 0 2px 2px #51c21a inset; - box-shadow: 0 0 2px 2px #51c21a inset; - border-radius: 3px; + -webkit-box-shadow: 0 0 2px 2px #51c21a inset; + box-shadow: 0 0 2px 2px #51c21a inset; + border-radius: 3px; } .el-tabs__item .el-icon-close { - border-radius: 50%; - text-align: center; - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - margin-left: 5px; + border-radius: 50%; + text-align: center; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + margin-left: 5px; } .el-tabs__item .el-icon-close:before { - -webkit-transform: scale(0.9); - transform: scale(0.9); - display: inline-block; + -webkit-transform: scale(0.9); + transform: scale(0.9); + display: inline-block; } .el-tabs__item .el-icon-close:hover { - background-color: #c0c4cc; - color: #fff; + background-color: #c0c4cc; + color: #fff; } .el-tabs__item.is-active { - color: #51c21a; + color: #51c21a; } .el-tabs__item:hover { - color: #51c21a; - cursor: pointer; + color: #51c21a; + cursor: pointer; } .el-tabs__item.is-disabled { - color: #c0c4cc; - cursor: default; + color: #c0c4cc; + cursor: default; } .el-tabs__content { - overflow: hidden; - position: relative; + overflow: hidden; + position: relative; } .el-tabs--card > .el-tabs__header { - border-bottom: 1px solid #e4e7ed; + border-bottom: 1px solid #e4e7ed; } .el-tabs--card > .el-tabs__header .el-tabs__nav { - border: 1px solid #e4e7ed; - border-bottom: none; - border-radius: 4px 4px 0 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + border: 1px solid #e4e7ed; + border-bottom: none; + border-radius: 4px 4px 0 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-tabs--card > .el-tabs__header .el-tabs__active-bar { - display: none; + display: none; } .el-tabs--card > .el-tabs__header .el-tabs__item .el-icon-close { - position: relative; - font-size: 12px; - width: 0; - height: 14px; - vertical-align: middle; - line-height: 15px; - overflow: hidden; - top: -1px; - right: -2px; - -webkit-transform-origin: 100% 50%; - transform-origin: 100% 50%; -} -.el-tabs--card - > .el-tabs__header - .el-tabs__item.is-active.is-closable - .el-icon-close, -.el-tabs--card - > .el-tabs__header - .el-tabs__item.is-closable:hover - .el-icon-close { - width: 14px; + position: relative; + font-size: 12px; + width: 0; + height: 14px; + vertical-align: middle; + line-height: 15px; + overflow: hidden; + top: -1px; + right: -2px; + -webkit-transform-origin: 100% 50%; + transform-origin: 100% 50%; +} +.el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable .el-icon-close, +.el-tabs--card > .el-tabs__header .el-tabs__item.is-closable:hover .el-icon-close { + width: 14px; } .el-tabs--card > .el-tabs__header .el-tabs__item { - border-bottom: 1px solid transparent; - border-left: 1px solid #e4e7ed; - -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), - padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), - padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + border-bottom: 1px solid transparent; + border-left: 1px solid #e4e7ed; + -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-tabs--card > .el-tabs__header .el-tabs__item:first-child { - border-left: none; + border-left: none; } .el-tabs--card > .el-tabs__header .el-tabs__item.is-closable:hover { - padding-left: 13px; - padding-right: 13px; + padding-left: 13px; + padding-right: 13px; } .el-tabs--card > .el-tabs__header .el-tabs__item.is-active { - border-bottom-color: #fff; + border-bottom-color: #fff; } .el-tabs--card > .el-tabs__header .el-tabs__item.is-active.is-closable { - padding-left: 20px; - padding-right: 20px; + padding-left: 20px; + padding-right: 20px; } .el-tabs--border-card { - background: #fff; - border: 1px solid #dcdfe6; - -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), - 0 0 6px 0 rgba(0, 0, 0, 0.04); - box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04); + background: #fff; + border: 1px solid #dcdfe6; + -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04); + box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04); } .el-tabs--border-card > .el-tabs__content { - padding: 15px; + padding: 15px; } .el-tabs--border-card > .el-tabs__header { - background-color: #f5f7fa; - border-bottom: 1px solid #e4e7ed; - margin: 0; + background-color: #f5f7fa; + border-bottom: 1px solid #e4e7ed; + margin: 0; } .el-tabs--border-card > .el-tabs__header .el-tabs__item { - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - border: 1px solid transparent; - margin-top: -1px; - color: #909399; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + border: 1px solid transparent; + margin-top: -1px; + color: #909399; } .el-tabs--border-card > .el-tabs__header .el-tabs__item + .el-tabs__item, .el-tabs--border-card > .el-tabs__header .el-tabs__item:first-child { - margin-left: -1px; + margin-left: -1px; } .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-active { - color: #51c21a; - background-color: #fff; - border-right-color: #dcdfe6; - border-left-color: #dcdfe6; + color: #51c21a; + background-color: #fff; + border-right-color: #dcdfe6; + border-left-color: #dcdfe6; } -.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:not(.is-disabled):hover { - color: #51c21a; +.el-tabs--border-card > .el-tabs__header .el-tabs__item:not(.is-disabled):hover { + color: #51c21a; } .el-tabs--border-card > .el-tabs__header .el-tabs__item.is-disabled { - color: #c0c4cc; + color: #c0c4cc; } -.el-tabs--border-card - > .el-tabs__header - .is-scrollable - .el-tabs__item:first-child { - margin-left: 0; +.el-tabs--border-card > .el-tabs__header .is-scrollable .el-tabs__item:first-child { + margin-left: 0; } .el-tabs--bottom .el-tabs__item.is-bottom:nth-child(2), .el-tabs--bottom .el-tabs__item.is-top:nth-child(2), .el-tabs--top .el-tabs__item.is-bottom:nth-child(2), .el-tabs--top .el-tabs__item.is-top:nth-child(2) { - padding-left: 0; + padding-left: 0; } .el-tabs--bottom .el-tabs__item.is-bottom:last-child, .el-tabs--bottom .el-tabs__item.is-top:last-child, .el-tabs--top .el-tabs__item.is-bottom:last-child, .el-tabs--top .el-tabs__item.is-top:last-child { - padding-right: 0; + padding-right: 0; } .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), -.el-tabs--bottom.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:nth-child(2), +.el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:nth-child(2), -.el-tabs--top.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:nth-child(2), +.el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:nth-child(2) { - padding-left: 20px; + padding-left: 20px; } .el-tabs--bottom .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, -.el-tabs--bottom.el-tabs--border-card - > .el-tabs__header - .el-tabs__item:last-child, +.el-tabs--bottom.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--bottom.el-tabs--card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--left > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top .el-tabs--right > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child { - padding-right: 20px; + padding-right: 20px; } .el-tabs--bottom .el-tabs__header.is-bottom { - margin-bottom: 0; - margin-top: 10px; + margin-bottom: 0; + margin-top: 10px; } .el-tabs--bottom.el-tabs--border-card .el-tabs__header.is-bottom { - border-bottom: 0; - border-top: 1px solid #dcdfe6; + border-bottom: 0; + border-top: 1px solid #dcdfe6; } .el-tabs--bottom.el-tabs--border-card .el-tabs__nav-wrap.is-bottom { - margin-top: -1px; - margin-bottom: 0; + margin-top: -1px; + margin-bottom: 0; } .el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom:not(.is-active) { - border: 1px solid transparent; + border: 1px solid transparent; } .el-tabs--bottom.el-tabs--border-card .el-tabs__item.is-bottom { - margin: 0 -1px -1px; + margin: 0 -1px -1px; } .el-tabs--left, .el-tabs--right { - overflow: hidden; + overflow: hidden; } .el-tabs--left .el-tabs__header.is-left, .el-tabs--left .el-tabs__header.is-right, @@ -4457,22 +3540,22 @@ .el-tabs--right .el-tabs__nav-scroll, .el-tabs--right .el-tabs__nav-wrap.is-left, .el-tabs--right .el-tabs__nav-wrap.is-right { - height: 100%; + height: 100%; } .el-tabs--left .el-tabs__active-bar.is-left, .el-tabs--left .el-tabs__active-bar.is-right, .el-tabs--right .el-tabs__active-bar.is-left, .el-tabs--right .el-tabs__active-bar.is-right { - top: 0; - bottom: auto; - width: 2px; - height: auto; + top: 0; + bottom: auto; + width: 2px; + height: auto; } .el-tabs--left .el-tabs__nav-wrap.is-left, .el-tabs--left .el-tabs__nav-wrap.is-right, .el-tabs--right .el-tabs__nav-wrap.is-left, .el-tabs--right .el-tabs__nav-wrap.is-right { - margin-bottom: 0; + margin-bottom: 0; } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-next, .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, @@ -4482,11 +3565,11 @@ .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-next, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev { - height: 30px; - line-height: 30px; - width: 100%; - text-align: center; - cursor: pointer; + height: 30px; + line-height: 30px; + width: 100%; + text-align: center; + cursor: pointer; } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-next i, .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev i, @@ -4496,810 +3579,800 @@ .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev i, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-next i, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev i { - -webkit-transform: rotateZ(90deg); - transform: rotateZ(90deg); + -webkit-transform: rotateZ(90deg); + transform: rotateZ(90deg); } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, .el-tabs--left .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev, .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-prev, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-prev { - left: auto; - top: 0; + left: auto; + top: 0; } .el-tabs--left .el-tabs__nav-wrap.is-left > .el-tabs__nav-next, .el-tabs--left .el-tabs__nav-wrap.is-right > .el-tabs__nav-next, .el-tabs--right .el-tabs__nav-wrap.is-left > .el-tabs__nav-next, .el-tabs--right .el-tabs__nav-wrap.is-right > .el-tabs__nav-next { - right: auto; - bottom: 0; + right: auto; + bottom: 0; } .el-tabs--left .el-tabs__active-bar.is-left, .el-tabs--left .el-tabs__nav-wrap.is-left::after { - right: 0; - left: auto; + right: 0; + left: auto; } .el-tabs--left .el-tabs__nav-wrap.is-left.is-scrollable, .el-tabs--left .el-tabs__nav-wrap.is-right.is-scrollable, .el-tabs--right .el-tabs__nav-wrap.is-left.is-scrollable, .el-tabs--right .el-tabs__nav-wrap.is-right.is-scrollable { - padding: 30px 0; + padding: 30px 0; } .el-tabs--left .el-tabs__nav-wrap.is-left::after, .el-tabs--left .el-tabs__nav-wrap.is-right::after, .el-tabs--right .el-tabs__nav-wrap.is-left::after, .el-tabs--right .el-tabs__nav-wrap.is-right::after { - height: 100%; - width: 2px; - bottom: auto; - top: 0; + height: 100%; + width: 2px; + bottom: auto; + top: 0; } .el-tabs--left .el-tabs__nav.is-left, .el-tabs--left .el-tabs__nav.is-right, .el-tabs--right .el-tabs__nav.is-left, .el-tabs--right .el-tabs__nav.is-right { - float: none; + float: none; } .el-tabs--left .el-tabs__item.is-left, .el-tabs--left .el-tabs__item.is-right, .el-tabs--right .el-tabs__item.is-left, .el-tabs--right .el-tabs__item.is-right { - display: block; + display: block; } .el-tabs--left.el-tabs--card .el-tabs__active-bar.is-left, .el-tabs--right.el-tabs--card .el-tabs__active-bar.is-right { - display: none; + display: none; } .el-tabs--left .el-tabs__header.is-left { - float: left; - margin-bottom: 0; - margin-right: 10px; + float: left; + margin-bottom: 0; + margin-right: 10px; } .el-tabs--left .el-tabs__nav-wrap.is-left { - margin-right: -1px; + margin-right: -1px; } .el-tabs--left .el-tabs__item.is-left { - text-align: right; + text-align: right; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left { - border-left: none; - border-right: 1px solid #e4e7ed; - border-bottom: none; - border-top: 1px solid #e4e7ed; - text-align: left; + border-left: none; + border-right: 1px solid #e4e7ed; + border-bottom: none; + border-top: 1px solid #e4e7ed; + text-align: left; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left:first-child { - border-right: 1px solid #e4e7ed; - border-top: none; + border-right: 1px solid #e4e7ed; + border-top: none; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active { - border: 1px solid #e4e7ed; - border-right-color: #fff; - border-left: none; - border-bottom: none; + border: 1px solid #e4e7ed; + border-right-color: #fff; + border-left: none; + border-bottom: none; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:first-child { - border-top: none; + border-top: none; } .el-tabs--left.el-tabs--card .el-tabs__item.is-left.is-active:last-child { - border-bottom: none; + border-bottom: none; } .el-tabs--left.el-tabs--card .el-tabs__nav { - border-radius: 4px 0 0 4px; - border-bottom: 1px solid #e4e7ed; - border-right: none; + border-radius: 4px 0 0 4px; + border-bottom: 1px solid #e4e7ed; + border-right: none; } .el-tabs--left.el-tabs--card .el-tabs__new-tab { - float: none; + float: none; } .el-tabs--left.el-tabs--border-card .el-tabs__header.is-left { - border-right: 1px solid #dfe4ed; + border-right: 1px solid #dfe4ed; } .el-tabs--left.el-tabs--border-card .el-tabs__item.is-left { - border: 1px solid transparent; - margin: -1px 0 -1px -1px; + border: 1px solid transparent; + margin: -1px 0 -1px -1px; } .el-tabs--left.el-tabs--border-card .el-tabs__item.is-left.is-active { - border-color: #d1dbe5 transparent; + border-color: #d1dbe5 transparent; } .el-tabs--right .el-tabs__header.is-right { - float: right; - margin-bottom: 0; - margin-left: 10px; + float: right; + margin-bottom: 0; + margin-left: 10px; } .el-tabs--right .el-tabs__nav-wrap.is-right { - margin-left: -1px; + margin-left: -1px; } .el-tabs--right .el-tabs__nav-wrap.is-right::after { - left: 0; - right: auto; + left: 0; + right: auto; } .el-tabs--right .el-tabs__active-bar.is-right { - left: 0; + left: 0; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right { - border-bottom: none; - border-top: 1px solid #e4e7ed; + border-bottom: none; + border-top: 1px solid #e4e7ed; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right:first-child { - border-left: 1px solid #e4e7ed; - border-top: none; + border-left: 1px solid #e4e7ed; + border-top: none; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active { - border: 1px solid #e4e7ed; - border-left-color: #fff; - border-right: none; - border-bottom: none; + border: 1px solid #e4e7ed; + border-left-color: #fff; + border-right: none; + border-bottom: none; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:first-child { - border-top: none; + border-top: none; } .el-tabs--right.el-tabs--card .el-tabs__item.is-right.is-active:last-child { - border-bottom: none; + border-bottom: none; } .el-tabs--right.el-tabs--card .el-tabs__nav { - border-radius: 0 4px 4px 0; - border-bottom: 1px solid #e4e7ed; - border-left: none; + border-radius: 0 4px 4px 0; + border-bottom: 1px solid #e4e7ed; + border-left: none; } .el-tabs--right.el-tabs--border-card .el-tabs__header.is-right { - border-left: 1px solid #dfe4ed; + border-left: 1px solid #dfe4ed; } .el-tabs--right.el-tabs--border-card .el-tabs__item.is-right { - border: 1px solid transparent; - margin: -1px -1px -1px 0; + border: 1px solid transparent; + margin: -1px -1px -1px 0; } .el-tabs--right.el-tabs--border-card .el-tabs__item.is-right.is-active { - border-color: #d1dbe5 transparent; + border-color: #d1dbe5 transparent; } .slideInLeft-transition, .slideInRight-transition { - display: inline-block; + display: inline-block; } .slideInRight-enter { - -webkit-animation: slideInRight-enter 0.3s; - animation: slideInRight-enter 0.3s; + -webkit-animation: slideInRight-enter 0.3s; + animation: slideInRight-enter 0.3s; } .slideInRight-leave { - position: absolute; - left: 0; - right: 0; - -webkit-animation: slideInRight-leave 0.3s; - animation: slideInRight-leave 0.3s; + position: absolute; + left: 0; + right: 0; + -webkit-animation: slideInRight-leave 0.3s; + animation: slideInRight-leave 0.3s; } .slideInLeft-enter { - -webkit-animation: slideInLeft-enter 0.3s; - animation: slideInLeft-enter 0.3s; + -webkit-animation: slideInLeft-enter 0.3s; + animation: slideInLeft-enter 0.3s; } .slideInLeft-leave { - position: absolute; - left: 0; - right: 0; - -webkit-animation: slideInLeft-leave 0.3s; - animation: slideInLeft-leave 0.3s; + position: absolute; + left: 0; + right: 0; + -webkit-animation: slideInLeft-leave 0.3s; + animation: slideInLeft-leave 0.3s; } @-webkit-keyframes slideInRight-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @keyframes slideInRight-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @-webkit-keyframes slideInRight-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + opacity: 0; + } } @keyframes slideInRight-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); + opacity: 0; + } } @-webkit-keyframes slideInLeft-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @keyframes slideInLeft-enter { - 0% { - opacity: 0; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - } - to { - opacity: 1; - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - } + 0% { + opacity: 0; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + } + to { + opacity: 1; + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + } } @-webkit-keyframes slideInLeft-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + opacity: 0; + } } @keyframes slideInLeft-leave { - 0% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(0); - transform: translateX(0); - opacity: 1; - } - 100% { - -webkit-transform-origin: 0 0; - transform-origin: 0 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); - opacity: 0; - } + 0% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; + } + 100% { + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); + opacity: 0; + } } .el-tree { - position: relative; - cursor: default; - background: #fff; - color: #606266; + position: relative; + cursor: default; + background: #fff; + color: #606266; } .el-tree__empty-block { - position: relative; - min-height: 60px; - text-align: center; - width: 100%; - height: 100%; + position: relative; + min-height: 60px; + text-align: center; + width: 100%; + height: 100%; } .el-tree__empty-text { - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - color: #909399; - font-size: 14px; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + color: #909399; + font-size: 14px; } .el-tree__drop-indicator { - position: absolute; - left: 0; - right: 0; - height: 1px; - background-color: #51c21a; + position: absolute; + left: 0; + right: 0; + height: 1px; + background-color: #51c21a; } .el-tree-node { - white-space: nowrap; - outline: 0; + white-space: nowrap; + outline: 0; } .el-tree-node:focus > .el-tree-node__content { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-tree-node.is-drop-inner > .el-tree-node__content .el-tree-node__label { - background-color: #51c21a; - color: #fff; + background-color: #51c21a; + color: #fff; } .el-tree-node__content { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 26px; - cursor: pointer; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 26px; + cursor: pointer; } .el-tree-node__content > .el-tree-node__expand-icon { - padding: 6px; + padding: 6px; } .el-tree-node__content > label.el-checkbox { - margin-right: 8px; + margin-right: 8px; } .el-tree-node__content:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-tree.is-dragging .el-tree-node__content { - cursor: move; + cursor: move; } .el-tree.is-dragging.is-drop-not-allow .el-tree-node__content { - cursor: not-allowed; + cursor: not-allowed; } .el-tree-node__expand-icon { - cursor: pointer; - color: #c0c4cc; - font-size: 12px; - -webkit-transform: rotate(0); - transform: rotate(0); - -webkit-transition: -webkit-transform 0.3s ease-in-out; - transition: -webkit-transform 0.3s ease-in-out; - transition: transform 0.3s ease-in-out; - transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; + cursor: pointer; + color: #c0c4cc; + font-size: 12px; + -webkit-transform: rotate(0); + transform: rotate(0); + -webkit-transition: -webkit-transform 0.3s ease-in-out; + transition: -webkit-transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out; + transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; } .el-tree-node__expand-icon.expanded { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } .el-tree-node__expand-icon.is-leaf { - color: transparent; - cursor: default; + color: transparent; + cursor: default; } .el-tree-node__label { - font-size: 14px; + font-size: 14px; } .el-tree-node__loading-icon { - margin-right: 8px; - font-size: 14px; - color: #c0c4cc; + margin-right: 8px; + font-size: 14px; + color: #c0c4cc; } .el-tree-node > .el-tree-node__children { - overflow: hidden; - background-color: transparent; + overflow: hidden; + background-color: transparent; } .el-tree-node.is-expanded > .el-tree-node__children { - display: block; + display: block; } .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content { - background-color: #f1faed; + background-color: #f0f7ff; } .el-alert { - width: 100%; - padding: 8px 16px; - margin: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 4px; - position: relative; - background-color: #fff; - overflow: hidden; - opacity: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-transition: opacity 0.2s; - transition: opacity 0.2s; + width: 100%; + padding: 8px 16px; + margin: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 4px; + position: relative; + background-color: #fff; + overflow: hidden; + opacity: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-transition: opacity 0.2s; + transition: opacity 0.2s; } .el-alert.is-light .el-alert__closebtn { - color: #c0c4cc; + color: #c0c4cc; } .el-alert.is-dark .el-alert__closebtn, .el-alert.is-dark .el-alert__description { - color: #fff; + color: #fff; } .el-alert.is-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-alert--success.is-light { - background-color: #f0f9eb; - color: #67c23a; + background-color: #f0f9eb; + color: #67c23a; } .el-alert--success.is-light .el-alert__description { - color: #67c23a; + color: #67c23a; } .el-alert--success.is-dark { - background-color: #67c23a; - color: #fff; + background-color: #67c23a; + color: #fff; } .el-alert--info.is-light { - background-color: #f4f4f5; - color: #909399; + background-color: #f4f4f5; + color: #909399; } .el-alert--info.is-dark { - background-color: #909399; - color: #fff; + background-color: #909399; + color: #fff; } .el-alert--info .el-alert__description { - color: #909399; + color: #909399; } .el-alert--warning.is-light { - background-color: #fdf6ec; - color: #e6a23c; + background-color: #fdf6ec; + color: #e6a23c; } .el-alert--warning.is-light .el-alert__description { - color: #e6a23c; + color: #e6a23c; } .el-alert--warning.is-dark { - background-color: #e6a23c; - color: #fff; + background-color: #e6a23c; + color: #fff; } .el-alert--error.is-light { - background-color: #fef0f0; - color: #f56c6c; + background-color: #fef0f0; + color: #f56c6c; } .el-alert--error.is-light .el-alert__description { - color: #f56c6c; + color: #f56c6c; } .el-alert--error.is-dark { - background-color: #f56c6c; - color: #fff; + background-color: #f56c6c; + color: #fff; } .el-alert__content { - display: table-cell; - padding: 0 8px; + display: table-cell; + padding: 0 8px; } .el-alert__icon { - font-size: 16px; - width: 16px; + font-size: 16px; + width: 16px; } .el-alert__icon.is-big { - font-size: 28px; - width: 28px; + font-size: 28px; + width: 28px; } .el-alert__title { - font-size: 13px; - line-height: 18px; + font-size: 13px; + line-height: 18px; } .el-alert__title.is-bold { - font-weight: 700; + font-weight: 700; } .el-alert .el-alert__description { - font-size: 12px; - margin: 5px 0 0; + font-size: 12px; + margin: 5px 0 0; } .el-alert__closebtn { - font-size: 12px; - opacity: 1; - position: absolute; - top: 12px; - right: 15px; - cursor: pointer; + font-size: 12px; + opacity: 1; + position: absolute; + top: 12px; + right: 15px; + cursor: pointer; } .el-alert-fade-enter, .el-alert-fade-leave-active, .el-loading-fade-enter, .el-loading-fade-leave-active, .el-notification-fade-leave-active { - opacity: 0; + opacity: 0; } .el-alert__closebtn.is-customed { - font-style: normal; - font-size: 13px; - top: 9px; + font-style: normal; + font-size: 13px; + top: 9px; } .el-notification { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - width: 330px; - padding: 14px 26px 14px 13px; - border-radius: 8px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border: 1px solid #ebeef5; - position: fixed; - background-color: #fff; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, - -webkit-transform 0.3s; - transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, - -webkit-transform 0.3s; - transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, - bottom 0.3s; - transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, - bottom 0.3s, -webkit-transform 0.3s; - overflow: hidden; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 330px; + padding: 14px 26px 14px 13px; + border-radius: 8px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border: 1px solid #ebeef5; + position: fixed; + background-color: #fff; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, + -webkit-transform 0.3s; + transition: opacity 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, -webkit-transform 0.3s; + transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s; + transition: opacity 0.3s, transform 0.3s, left 0.3s, right 0.3s, top 0.4s, bottom 0.3s, + -webkit-transform 0.3s; + overflow: hidden; } .el-notification.right { - right: 16px; + right: 16px; } .el-notification.left { - left: 16px; + left: 16px; } .el-notification__group { - margin-left: 13px; - margin-right: 8px; + margin-left: 13px; + margin-right: 8px; } .el-notification__title { - font-weight: 700; - font-size: 16px; - color: #303133; - margin: 0; + font-weight: 700; + font-size: 16px; + color: #303133; + margin: 0; } .el-notification__content { - font-size: 14px; - line-height: 21px; - margin: 6px 0 0; - color: #606266; - text-align: justify; + font-size: 14px; + line-height: 21px; + margin: 6px 0 0; + color: #606266; + text-align: justify; } .el-notification__content p { - margin: 0; + margin: 0; } .el-notification__icon { - height: 24px; - width: 24px; - font-size: 24px; + height: 24px; + width: 24px; + font-size: 24px; } .el-notification__closeBtn { - position: absolute; - top: 18px; - right: 15px; - cursor: pointer; - color: #909399; - font-size: 16px; + position: absolute; + top: 18px; + right: 15px; + cursor: pointer; + color: #909399; + font-size: 16px; } .el-notification__closeBtn:hover { - color: #606266; + color: #606266; } .el-notification .el-icon-success { - color: #67c23a; + color: #67c23a; } .el-notification .el-icon-error { - color: #f56c6c; + color: #f56c6c; } .el-notification .el-icon-info { - color: #909399; + color: #909399; } .el-notification .el-icon-warning { - color: #e6a23c; + color: #e6a23c; } .el-notification-fade-enter.right { - right: 0; - -webkit-transform: translateX(100%); - transform: translateX(100%); + right: 0; + -webkit-transform: translateX(100%); + transform: translateX(100%); } .el-notification-fade-enter.left { - left: 0; - -webkit-transform: translateX(-100%); - transform: translateX(-100%); + left: 0; + -webkit-transform: translateX(-100%); + transform: translateX(-100%); } .el-input-number { - position: relative; - display: inline-block; - width: 180px; - line-height: 38px; + position: relative; + display: inline-block; + width: 180px; + line-height: 38px; } .el-input-number .el-input { - display: block; + display: block; } .el-input-number .el-input__inner { - -webkit-appearance: none; - padding-left: 50px; - padding-right: 50px; - text-align: center; + -webkit-appearance: none; + padding-left: 50px; + padding-right: 50px; + text-align: center; } .el-input-number__decrease, .el-input-number__increase { - position: absolute; - z-index: 1; - top: 1px; - width: 40px; - height: auto; - text-align: center; - background: #f5f7fa; - color: #606266; - cursor: pointer; - font-size: 13px; + position: absolute; + z-index: 1; + top: 1px; + width: 40px; + height: auto; + text-align: center; + background: #f5f7fa; + color: #606266; + cursor: pointer; + font-size: 13px; } .el-input-number__decrease:hover, .el-input-number__increase:hover { - color: #51c21a; + color: #51c21a; } -.el-input-number__decrease:hover:not(.is-disabled) - ~ .el-input - .el-input__inner:not(.is-disabled), -.el-input-number__increase:hover:not(.is-disabled) - ~ .el-input - .el-input__inner:not(.is-disabled) { - border-color: #51c21a; +.el-input-number__decrease:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled), +.el-input-number__increase:hover:not(.is-disabled) ~ .el-input .el-input__inner:not(.is-disabled) { + border-color: #51c21a; } .el-input-number__decrease.is-disabled, .el-input-number__increase.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-input-number__increase { - right: 1px; - border-radius: 0 4px 4px 0; - border-left: 1px solid #dcdfe6; + right: 1px; + border-radius: 0 4px 4px 0; + border-left: 1px solid #dcdfe6; } .el-input-number__decrease { - left: 1px; - border-radius: 4px 0 0 4px; - border-right: 1px solid #dcdfe6; + left: 1px; + border-radius: 4px 0 0 4px; + border-right: 1px solid #dcdfe6; } .el-input-number.is-disabled .el-input-number__decrease, .el-input-number.is-disabled .el-input-number__increase { - border-color: #e4e7ed; - color: #e4e7ed; + border-color: #e4e7ed; + color: #e4e7ed; } .el-input-number.is-disabled .el-input-number__decrease:hover, .el-input-number.is-disabled .el-input-number__increase:hover { - color: #e4e7ed; - cursor: not-allowed; + color: #e4e7ed; + cursor: not-allowed; } .el-input-number--medium { - width: 200px; - line-height: 34px; + width: 200px; + line-height: 34px; } .el-input-number--medium .el-input-number__decrease, .el-input-number--medium .el-input-number__increase { - width: 36px; - font-size: 14px; + width: 36px; + font-size: 14px; } .el-input-number--medium .el-input__inner { - padding-left: 43px; - padding-right: 43px; + padding-left: 43px; + padding-right: 43px; } .el-input-number--small { - width: 130px; - line-height: 30px; + width: 130px; + line-height: 30px; } .el-input-number--small .el-input-number__decrease, .el-input-number--small .el-input-number__increase { - width: 32px; - font-size: 13px; + width: 32px; + font-size: 13px; } .el-input-number--small .el-input-number__decrease [class*="el-icon"], .el-input-number--small .el-input-number__increase [class*="el-icon"] { - -webkit-transform: scale(0.9); - transform: scale(0.9); + -webkit-transform: scale(0.9); + transform: scale(0.9); } .el-input-number--small .el-input__inner { - padding-left: 39px; - padding-right: 39px; + padding-left: 39px; + padding-right: 39px; } .el-input-number--mini { - width: 130px; - line-height: 26px; + width: 130px; + line-height: 26px; } .el-input-number--mini .el-input-number__decrease, .el-input-number--mini .el-input-number__increase { - width: 28px; - font-size: 12px; + width: 28px; + font-size: 12px; } .el-input-number--mini .el-input-number__decrease [class*="el-icon"], .el-input-number--mini .el-input-number__increase [class*="el-icon"] { - -webkit-transform: scale(0.8); - transform: scale(0.8); + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-input-number--mini .el-input__inner { - padding-left: 35px; - padding-right: 35px; + padding-left: 35px; + padding-right: 35px; } .el-input-number.is-without-controls .el-input__inner { - padding-left: 15px; - padding-right: 15px; + padding-left: 15px; + padding-right: 15px; } .el-input-number.is-controls-right .el-input__inner { - padding-left: 15px; - padding-right: 50px; + padding-left: 15px; + padding-right: 50px; } .el-input-number.is-controls-right .el-input-number__decrease, .el-input-number.is-controls-right .el-input-number__increase { - height: auto; - line-height: 19px; -} -.el-input-number.is-controls-right - .el-input-number__decrease - [class*="el-icon"], -.el-input-number.is-controls-right - .el-input-number__increase - [class*="el-icon"] { - -webkit-transform: scale(0.8); - transform: scale(0.8); + height: auto; + line-height: 19px; +} +.el-input-number.is-controls-right .el-input-number__decrease [class*="el-icon"], +.el-input-number.is-controls-right .el-input-number__increase [class*="el-icon"] { + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-input-number.is-controls-right .el-input-number__increase { - border-radius: 0 4px 0 0; - border-bottom: 1px solid #dcdfe6; + border-radius: 0 4px 0 0; + border-bottom: 1px solid #dcdfe6; } .el-input-number.is-controls-right .el-input-number__decrease { - right: 1px; - bottom: 1px; - top: auto; - left: auto; - border-right: none; - border-left: 1px solid #dcdfe6; - border-radius: 0 0 4px; + right: 1px; + bottom: 1px; + top: auto; + left: auto; + border-right: none; + border-left: 1px solid #dcdfe6; + border-radius: 0 0 4px; } .el-input-number.is-controls-right[class*="medium"] [class*="decrease"], .el-input-number.is-controls-right[class*="medium"] [class*="increase"] { - line-height: 17px; + line-height: 17px; } .el-input-number.is-controls-right[class*="small"] [class*="decrease"], .el-input-number.is-controls-right[class*="small"] [class*="increase"] { - line-height: 15px; + line-height: 15px; } .el-input-number.is-controls-right[class*="mini"] [class*="decrease"], .el-input-number.is-controls-right[class*="mini"] [class*="increase"] { - line-height: 13px; + line-height: 13px; } .el-tooltip__popper { - position: absolute; - border-radius: 4px; - padding: 10px; - z-index: 2000; - font-size: 12px; - line-height: 1.2; - min-width: 10px; - word-wrap: break-word; + position: absolute; + border-radius: 4px; + padding: 10px; + z-index: 2000; + font-size: 12px; + line-height: 1.2; + min-width: 10px; + word-wrap: break-word; } .el-tooltip__popper .popper__arrow, .el-tooltip__popper .popper__arrow::after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } .el-tooltip__popper .popper__arrow { - border-width: 6px; + border-width: 6px; } .el-tooltip__popper .popper__arrow::after { - content: " "; - border-width: 5px; + content: " "; + border-width: 5px; } .el-progress-bar__inner::after, .el-row::after, @@ -5308,378 +4381,360 @@ .el-slider::before, .el-slider__button-wrapper::after, .el-upload-cover::after { - content: ""; + content: ""; } .el-tooltip__popper[x-placement^="top"] { - margin-bottom: 12px; + margin-bottom: 12px; } .el-tooltip__popper[x-placement^="top"] .popper__arrow { - bottom: -6px; - border-top-color: #303133; - border-bottom-width: 0; + bottom: -6px; + border-top-color: #303133; + border-bottom-width: 0; } .el-tooltip__popper[x-placement^="top"] .popper__arrow::after { - bottom: 1px; - margin-left: -5px; - border-top-color: #303133; - border-bottom-width: 0; + bottom: 1px; + margin-left: -5px; + border-top-color: #303133; + border-bottom-width: 0; } .el-tooltip__popper[x-placement^="bottom"] { - margin-top: 12px; + margin-top: 12px; } .el-tooltip__popper[x-placement^="bottom"] .popper__arrow { - top: -6px; - border-top-width: 0; - border-bottom-color: #303133; + top: -6px; + border-top-width: 0; + border-bottom-color: #303133; } .el-tooltip__popper[x-placement^="bottom"] .popper__arrow::after { - top: 1px; - margin-left: -5px; - border-top-width: 0; - border-bottom-color: #303133; + top: 1px; + margin-left: -5px; + border-top-width: 0; + border-bottom-color: #303133; } .el-tooltip__popper[x-placement^="right"] { - margin-left: 12px; + margin-left: 12px; } .el-tooltip__popper[x-placement^="right"] .popper__arrow { - left: -6px; - border-right-color: #303133; - border-left-width: 0; + left: -6px; + border-right-color: #303133; + border-left-width: 0; } .el-tooltip__popper[x-placement^="right"] .popper__arrow::after { - bottom: -5px; - left: 1px; - border-right-color: #303133; - border-left-width: 0; + bottom: -5px; + left: 1px; + border-right-color: #303133; + border-left-width: 0; } .el-tooltip__popper[x-placement^="left"] { - margin-right: 12px; + margin-right: 12px; } .el-tooltip__popper[x-placement^="left"] .popper__arrow { - right: -6px; - border-right-width: 0; - border-left-color: #303133; + right: -6px; + border-right-width: 0; + border-left-color: #303133; } .el-tooltip__popper[x-placement^="left"] .popper__arrow::after { - right: 1px; - bottom: -5px; - margin-left: -5px; - border-right-width: 0; - border-left-color: #303133; + right: 1px; + bottom: -5px; + margin-left: -5px; + border-right-width: 0; + border-left-color: #303133; } .el-tooltip__popper.is-dark { - background: #303133; - color: #fff; + background: #303133; + color: #fff; } .el-tooltip__popper.is-light { - background: #fff; - border: 1px solid #303133; + background: #fff; + border: 1px solid #303133; } .el-tooltip__popper.is-light[x-placement^="top"] .popper__arrow { - border-top-color: #303133; + border-top-color: #303133; } .el-tooltip__popper.is-light[x-placement^="top"] .popper__arrow::after { - border-top-color: #fff; + border-top-color: #fff; } .el-tooltip__popper.is-light[x-placement^="bottom"] .popper__arrow { - border-bottom-color: #303133; + border-bottom-color: #303133; } .el-tooltip__popper.is-light[x-placement^="bottom"] .popper__arrow::after { - border-bottom-color: #fff; + border-bottom-color: #fff; } .el-tooltip__popper.is-light[x-placement^="left"] .popper__arrow { - border-left-color: #303133; + border-left-color: #303133; } .el-tooltip__popper.is-light[x-placement^="left"] .popper__arrow::after { - border-left-color: #fff; + border-left-color: #fff; } .el-tooltip__popper.is-light[x-placement^="right"] .popper__arrow { - border-right-color: #303133; + border-right-color: #303133; } .el-tooltip__popper.is-light[x-placement^="right"] .popper__arrow::after { - border-right-color: #fff; + border-right-color: #fff; } .el-slider::after, .el-slider::before { - display: table; + display: table; } .el-slider__button-wrapper .el-tooltip, .el-slider__button-wrapper::after { - vertical-align: middle; - display: inline-block; + vertical-align: middle; + display: inline-block; } .el-slider::after { - clear: both; + clear: both; } .el-slider__runway { - width: 100%; - height: 6px; - margin: 16px 0; - background-color: #e4e7ed; - border-radius: 3px; - position: relative; - cursor: pointer; - vertical-align: middle; + width: 100%; + height: 6px; + margin: 16px 0; + background-color: #e4e7ed; + border-radius: 3px; + position: relative; + cursor: pointer; + vertical-align: middle; } .el-slider__runway.show-input { - margin-right: 160px; - width: auto; + margin-right: 160px; + width: auto; } .el-slider__runway.disabled { - cursor: default; + cursor: default; } .el-slider__runway.disabled .el-slider__bar { - background-color: #c0c4cc; + background-color: #c0c4cc; } .el-slider__runway.disabled .el-slider__button { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-slider__runway.disabled .el-slider__button-wrapper.dragging, .el-slider__runway.disabled .el-slider__button-wrapper.hover, .el-slider__runway.disabled .el-slider__button-wrapper:hover { - cursor: not-allowed; + cursor: not-allowed; } .el-slider__runway.disabled .el-slider__button.dragging, .el-slider__runway.disabled .el-slider__button.hover, .el-slider__runway.disabled .el-slider__button:hover { - -webkit-transform: scale(1); - transform: scale(1); - cursor: not-allowed; + -webkit-transform: scale(1); + transform: scale(1); + cursor: not-allowed; } .el-slider__button-wrapper, .el-slider__stop { - -webkit-transform: translateX(-50%); - position: absolute; + -webkit-transform: translateX(-50%); + position: absolute; } .el-slider__input { - float: right; - margin-top: 3px; - width: 130px; + float: right; + margin-top: 3px; + width: 130px; } .el-slider__input.el-input-number--mini { - margin-top: 5px; + margin-top: 5px; } .el-slider__input.el-input-number--medium { - margin-top: 0; + margin-top: 0; } .el-slider__input.el-input-number--large { - margin-top: -2px; + margin-top: -2px; } .el-slider__bar { - height: 6px; - background-color: #51c21a; - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - position: absolute; + height: 6px; + background-color: #51c21a; + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + position: absolute; } .el-slider__button-wrapper { - height: 36px; - width: 36px; - z-index: 1001; - top: -15px; - transform: translateX(-50%); - background-color: transparent; - text-align: center; - user-select: none; - line-height: normal; + height: 36px; + width: 36px; + z-index: 1001; + top: -15px; + transform: translateX(-50%); + background-color: transparent; + text-align: center; + user-select: none; + line-height: normal; } .el-slider__button-wrapper::after { - height: 100%; + height: 100%; } .el-slider__button-wrapper.hover, .el-slider__button-wrapper:hover { - cursor: -webkit-grab; - cursor: grab; + cursor: -webkit-grab; + cursor: grab; } .el-slider__button-wrapper.dragging { - cursor: -webkit-grabbing; - cursor: grabbing; + cursor: -webkit-grabbing; + cursor: grabbing; } .el-slider__button { - width: 16px; - height: 16px; - border: 2px solid #51c21a; - background-color: #fff; - border-radius: 50%; - -webkit-transition: 0.2s; - transition: 0.2s; - user-select: none; + width: 16px; + height: 16px; + border: 2px solid #51c21a; + background-color: #fff; + border-radius: 50%; + -webkit-transition: 0.2s; + transition: 0.2s; + user-select: none; } .el-image-viewer__btn, .el-step__icon-inner { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; } .el-slider__button.dragging, .el-slider__button.hover, .el-slider__button:hover { - -webkit-transform: scale(1.2); - transform: scale(1.2); + -webkit-transform: scale(1.2); + transform: scale(1.2); } .el-slider__button.hover, .el-slider__button:hover { - cursor: -webkit-grab; - cursor: grab; + cursor: -webkit-grab; + cursor: grab; } .el-slider__button.dragging { - cursor: -webkit-grabbing; - cursor: grabbing; + cursor: -webkit-grabbing; + cursor: grabbing; } .el-slider__stop { - height: 6px; - width: 6px; - border-radius: 100%; - background-color: #fff; - transform: translateX(-50%); + height: 6px; + width: 6px; + border-radius: 100%; + background-color: #fff; + transform: translateX(-50%); } .el-slider__marks { - top: 0; - left: 12px; - width: 18px; - height: 100%; + top: 0; + left: 12px; + width: 18px; + height: 100%; } .el-slider__marks-text { - position: absolute; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - font-size: 14px; - color: #909399; - margin-top: 15px; + position: absolute; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + font-size: 14px; + color: #909399; + margin-top: 15px; } .el-slider.is-vertical { - position: relative; + position: relative; } .el-slider.is-vertical .el-slider__runway { - width: 6px; - height: 100%; - margin: 0 16px; + width: 6px; + height: 100%; + margin: 0 16px; } .el-slider.is-vertical .el-slider__bar { - width: 6px; - height: auto; - border-radius: 0 0 3px 3px; + width: 6px; + height: auto; + border-radius: 0 0 3px 3px; } .el-slider.is-vertical .el-slider__button-wrapper { - top: auto; - left: -15px; - -webkit-transform: translateY(50%); - transform: translateY(50%); + top: auto; + left: -15px; + -webkit-transform: translateY(50%); + transform: translateY(50%); } .el-slider.is-vertical .el-slider__stop { - -webkit-transform: translateY(50%); - transform: translateY(50%); + -webkit-transform: translateY(50%); + transform: translateY(50%); } .el-slider.is-vertical.el-slider--with-input { - padding-bottom: 58px; + padding-bottom: 58px; } .el-slider.is-vertical.el-slider--with-input .el-slider__input { - overflow: visible; - float: none; - position: absolute; - bottom: 22px; - width: 36px; - margin-top: 15px; -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input__inner { - text-align: center; - padding-left: 5px; - padding-right: 5px; -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__decrease, -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__increase { - top: 32px; - margin-top: -1px; - border: 1px solid #dcdfe6; - line-height: 20px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__decrease { - width: 18px; - right: 18px; - border-bottom-left-radius: 4px; + overflow: visible; + float: none; + position: absolute; + bottom: 22px; + width: 36px; + margin-top: 15px; +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input__inner { + text-align: center; + padding-left: 5px; + padding-right: 5px; +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease, +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase { + top: 32px; + margin-top: -1px; + border: 1px solid #dcdfe6; + line-height: 20px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease { + width: 18px; + right: 18px; + border-bottom-left-radius: 4px; +} +.el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase { + width: 19px; + border-bottom-right-radius: 4px; } .el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__increase { - width: 19px; - border-bottom-right-radius: 4px; + .el-slider__input + .el-input-number__increase + ~ .el-input + .el-input__inner { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } -.el-slider.is-vertical.el-slider--with-input - .el-slider__input - .el-input-number__increase - ~ .el-input - .el-input__inner { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; +.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__decrease, +.el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__increase { + border-color: #c0c4cc; } -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:hover - .el-input-number__decrease, -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:hover - .el-input-number__increase { - border-color: #c0c4cc; -} -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:active - .el-input-number__decrease, -.el-slider.is-vertical.el-slider--with-input - .el-slider__input:active - .el-input-number__increase { - border-color: #51c21a; +.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease, +.el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase { + border-color: #51c21a; } .el-slider.is-vertical .el-slider__marks-text { - margin-top: 0; - left: 15px; - -webkit-transform: translateY(50%); - transform: translateY(50%); + margin-top: 0; + left: 15px; + -webkit-transform: translateY(50%); + transform: translateY(50%); } .el-loading-parent--relative { - position: relative !important; + position: relative !important; } .el-loading-parent--hidden { - overflow: hidden !important; + overflow: hidden !important; } .el-loading-mask { - position: absolute; - z-index: 2000; - background-color: rgba(255, 255, 255, 0.9); - margin: 0; - top: 0; - right: 0; - bottom: 0; - left: 0; - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; + position: absolute; + z-index: 2000; + background-color: rgba(255, 255, 255, 0.9); + margin: 0; + top: 0; + right: 0; + bottom: 0; + left: 0; + -webkit-transition: opacity 0.3s; + transition: opacity 0.3s; } .el-loading-mask.is-fullscreen { - position: fixed; + position: fixed; } .el-loading-mask.is-fullscreen .el-loading-spinner { - margin-top: -25px; + margin-top: -25px; } .el-loading-mask.is-fullscreen .el-loading-spinner .circular { - height: 50px; - width: 50px; + height: 50px; + width: 50px; } .el-loading-spinner { - top: 50%; - margin-top: -21px; - width: 100%; - text-align: center; - position: absolute; + top: 50%; + margin-top: -21px; + width: 100%; + text-align: center; + position: absolute; } .el-col-pull-0, .el-col-pull-1, @@ -5731,3620 +4786,3607 @@ .el-col-push-8, .el-col-push-9, .el-row { - position: relative; + position: relative; } .el-loading-spinner .el-loading-text { - color: #51c21a; - margin: 3px 0; - font-size: 14px; + color: #51c21a; + margin: 3px 0; + font-size: 14px; } .el-loading-spinner .circular { - height: 42px; - width: 42px; - -webkit-animation: loading-rotate 2s linear infinite; - animation: loading-rotate 2s linear infinite; + height: 42px; + width: 42px; + -webkit-animation: loading-rotate 2s linear infinite; + animation: loading-rotate 2s linear infinite; } .el-loading-spinner .path { - -webkit-animation: loading-dash 1.5s ease-in-out infinite; - animation: loading-dash 1.5s ease-in-out infinite; - stroke-dasharray: 90, 150; - stroke-dashoffset: 0; - stroke-width: 2; - stroke: #51c21a; - stroke-linecap: round; + -webkit-animation: loading-dash 1.5s ease-in-out infinite; + animation: loading-dash 1.5s ease-in-out infinite; + stroke-dasharray: 90, 150; + stroke-dashoffset: 0; + stroke-width: 2; + stroke: #51c21a; + stroke-linecap: round; } .el-loading-spinner i { - color: #51c21a; + color: #51c21a; } @-webkit-keyframes loading-rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes loading-rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @-webkit-keyframes loading-dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -40px; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -120px; - } + 0% { + stroke-dasharray: 1, 200; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -40px; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -120px; + } } @keyframes loading-dash { - 0% { - stroke-dasharray: 1, 200; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -40px; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -120px; - } + 0% { + stroke-dasharray: 1, 200; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -40px; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -120px; + } } .el-row { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-row::after, .el-row::before { - display: table; + display: table; } .el-row::after { - clear: both; + clear: both; } .el-row--flex { - display: -webkit-box; - display: -ms-flexbox; - display: flex; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } .el-col-0, .el-row--flex:after, .el-row--flex:before { - display: none; + display: none; } .el-row--flex.is-justify-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-row--flex.is-justify-end { - -webkit-box-pack: end; - -ms-flex-pack: end; - justify-content: flex-end; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; } .el-row--flex.is-justify-space-between { - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } .el-row--flex.is-justify-space-around { - -ms-flex-pack: distribute; - justify-content: space-around; + -ms-flex-pack: distribute; + justify-content: space-around; } .el-row--flex.is-align-middle { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-row--flex.is-align-bottom { - -webkit-box-align: end; - -ms-flex-align: end; - align-items: flex-end; + -webkit-box-align: end; + -ms-flex-align: end; + align-items: flex-end; } [class*="el-col-"] { - float: left; - -webkit-box-sizing: border-box; - box-sizing: border-box; + float: left; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-upload--picture-card, .el-upload-dragger { - -webkit-box-sizing: border-box; - cursor: pointer; + -webkit-box-sizing: border-box; + cursor: pointer; } .el-col-0 { - width: 0%; + width: 0%; } .el-col-offset-0 { - margin-left: 0; + margin-left: 0; } .el-col-pull-0 { - right: 0; + right: 0; } .el-col-push-0 { - left: 0; + left: 0; } .el-col-1 { - width: 4.16667%; + width: 4.16667%; } .el-col-offset-1 { - margin-left: 4.16667%; + margin-left: 4.16667%; } .el-col-pull-1 { - right: 4.16667%; + right: 4.16667%; } .el-col-push-1 { - left: 4.16667%; + left: 4.16667%; } .el-col-2 { - width: 8.33333%; + width: 8.33333%; } .el-col-offset-2 { - margin-left: 8.33333%; + margin-left: 8.33333%; } .el-col-pull-2 { - right: 8.33333%; + right: 8.33333%; } .el-col-push-2 { - left: 8.33333%; + left: 8.33333%; } .el-col-3 { - width: 12.5%; + width: 12.5%; } .el-col-offset-3 { - margin-left: 12.5%; + margin-left: 12.5%; } .el-col-pull-3 { - right: 12.5%; + right: 12.5%; } .el-col-push-3 { - left: 12.5%; + left: 12.5%; } .el-col-4 { - width: 16.66667%; + width: 16.66667%; } .el-col-offset-4 { - margin-left: 16.66667%; + margin-left: 16.66667%; } .el-col-pull-4 { - right: 16.66667%; + right: 16.66667%; } .el-col-push-4 { - left: 16.66667%; + left: 16.66667%; } .el-col-5 { - width: 20.83333%; + width: 20.83333%; } .el-col-offset-5 { - margin-left: 20.83333%; + margin-left: 20.83333%; } .el-col-pull-5 { - right: 20.83333%; + right: 20.83333%; } .el-col-push-5 { - left: 20.83333%; + left: 20.83333%; } .el-col-6 { - width: 25%; + width: 25%; } .el-col-offset-6 { - margin-left: 25%; + margin-left: 25%; } .el-col-pull-6 { - right: 25%; + right: 25%; } .el-col-push-6 { - left: 25%; + left: 25%; } .el-col-7 { - width: 29.16667%; + width: 29.16667%; } .el-col-offset-7 { - margin-left: 29.16667%; + margin-left: 29.16667%; } .el-col-pull-7 { - right: 29.16667%; + right: 29.16667%; } .el-col-push-7 { - left: 29.16667%; + left: 29.16667%; } .el-col-8 { - width: 33.33333%; + width: 33.33333%; } .el-col-offset-8 { - margin-left: 33.33333%; + margin-left: 33.33333%; } .el-col-pull-8 { - right: 33.33333%; + right: 33.33333%; } .el-col-push-8 { - left: 33.33333%; + left: 33.33333%; } .el-col-9 { - width: 37.5%; + width: 37.5%; } .el-col-offset-9 { - margin-left: 37.5%; + margin-left: 37.5%; } .el-col-pull-9 { - right: 37.5%; + right: 37.5%; } .el-col-push-9 { - left: 37.5%; + left: 37.5%; } .el-col-10 { - width: 41.66667%; + width: 41.66667%; } .el-col-offset-10 { - margin-left: 41.66667%; + margin-left: 41.66667%; } .el-col-pull-10 { - right: 41.66667%; + right: 41.66667%; } .el-col-push-10 { - left: 41.66667%; + left: 41.66667%; } .el-col-11 { - width: 45.83333%; + width: 45.83333%; } .el-col-offset-11 { - margin-left: 45.83333%; + margin-left: 45.83333%; } .el-col-pull-11 { - right: 45.83333%; + right: 45.83333%; } .el-col-push-11 { - left: 45.83333%; + left: 45.83333%; } .el-col-12 { - width: 50%; + width: 50%; } .el-col-offset-12 { - margin-left: 50%; + margin-left: 50%; } .el-col-pull-12 { - position: relative; - right: 50%; + position: relative; + right: 50%; } .el-col-push-12 { - left: 50%; + left: 50%; } .el-col-13 { - width: 54.16667%; + width: 54.16667%; } .el-col-offset-13 { - margin-left: 54.16667%; + margin-left: 54.16667%; } .el-col-pull-13 { - right: 54.16667%; + right: 54.16667%; } .el-col-push-13 { - left: 54.16667%; + left: 54.16667%; } .el-col-14 { - width: 58.33333%; + width: 58.33333%; } .el-col-offset-14 { - margin-left: 58.33333%; + margin-left: 58.33333%; } .el-col-pull-14 { - right: 58.33333%; + right: 58.33333%; } .el-col-push-14 { - left: 58.33333%; + left: 58.33333%; } .el-col-15 { - width: 62.5%; + width: 62.5%; } .el-col-offset-15 { - margin-left: 62.5%; + margin-left: 62.5%; } .el-col-pull-15 { - right: 62.5%; + right: 62.5%; } .el-col-push-15 { - left: 62.5%; + left: 62.5%; } .el-col-16 { - width: 66.66667%; + width: 66.66667%; } .el-col-offset-16 { - margin-left: 66.66667%; + margin-left: 66.66667%; } .el-col-pull-16 { - right: 66.66667%; + right: 66.66667%; } .el-col-push-16 { - left: 66.66667%; + left: 66.66667%; } .el-col-17 { - width: 70.83333%; + width: 70.83333%; } .el-col-offset-17 { - margin-left: 70.83333%; + margin-left: 70.83333%; } .el-col-pull-17 { - right: 70.83333%; + right: 70.83333%; } .el-col-push-17 { - left: 70.83333%; + left: 70.83333%; } .el-col-18 { - width: 75%; + width: 75%; } .el-col-offset-18 { - margin-left: 75%; + margin-left: 75%; } .el-col-pull-18 { - right: 75%; + right: 75%; } .el-col-push-18 { - left: 75%; + left: 75%; } .el-col-19 { - width: 79.16667%; + width: 79.16667%; } .el-col-offset-19 { - margin-left: 79.16667%; + margin-left: 79.16667%; } .el-col-pull-19 { - right: 79.16667%; + right: 79.16667%; } .el-col-push-19 { - left: 79.16667%; + left: 79.16667%; } .el-col-20 { - width: 83.33333%; + width: 83.33333%; } .el-col-offset-20 { - margin-left: 83.33333%; + margin-left: 83.33333%; } .el-col-pull-20 { - right: 83.33333%; + right: 83.33333%; } .el-col-push-20 { - left: 83.33333%; + left: 83.33333%; } .el-col-21 { - width: 87.5%; + width: 87.5%; } .el-col-offset-21 { - margin-left: 87.5%; + margin-left: 87.5%; } .el-col-pull-21 { - right: 87.5%; + right: 87.5%; } .el-col-push-21 { - left: 87.5%; + left: 87.5%; } .el-col-22 { - width: 91.66667%; + width: 91.66667%; } .el-col-offset-22 { - margin-left: 91.66667%; + margin-left: 91.66667%; } .el-col-pull-22 { - right: 91.66667%; + right: 91.66667%; } .el-col-push-22 { - left: 91.66667%; + left: 91.66667%; } .el-col-23 { - width: 95.83333%; + width: 95.83333%; } .el-col-offset-23 { - margin-left: 95.83333%; + margin-left: 95.83333%; } .el-col-pull-23 { - right: 95.83333%; + right: 95.83333%; } .el-col-push-23 { - left: 95.83333%; + left: 95.83333%; } .el-col-24 { - width: 100%; + width: 100%; } .el-col-offset-24 { - margin-left: 100%; + margin-left: 100%; } .el-col-pull-24 { - right: 100%; + right: 100%; } .el-col-push-24 { - left: 100%; + left: 100%; } @media only screen and (max-width: 767px) { - .el-col-xs-0 { - display: none; - width: 0%; - } - .el-col-xs-offset-0 { - margin-left: 0; - } - .el-col-xs-pull-0 { - position: relative; - right: 0; - } - .el-col-xs-push-0 { - position: relative; - left: 0; - } - .el-col-xs-1 { - width: 4.16667%; - } - .el-col-xs-offset-1 { - margin-left: 4.16667%; - } - .el-col-xs-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-xs-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-xs-2 { - width: 8.33333%; - } - .el-col-xs-offset-2 { - margin-left: 8.33333%; - } - .el-col-xs-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-xs-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-xs-3 { - width: 12.5%; - } - .el-col-xs-offset-3 { - margin-left: 12.5%; - } - .el-col-xs-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-xs-push-3 { - position: relative; - left: 12.5%; - } - .el-col-xs-4 { - width: 16.66667%; - } - .el-col-xs-offset-4 { - margin-left: 16.66667%; - } - .el-col-xs-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-xs-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-xs-5 { - width: 20.83333%; - } - .el-col-xs-offset-5 { - margin-left: 20.83333%; - } - .el-col-xs-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-xs-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-xs-6 { - width: 25%; - } - .el-col-xs-offset-6 { - margin-left: 25%; - } - .el-col-xs-pull-6 { - position: relative; - right: 25%; - } - .el-col-xs-push-6 { - position: relative; - left: 25%; - } - .el-col-xs-7 { - width: 29.16667%; - } - .el-col-xs-offset-7 { - margin-left: 29.16667%; - } - .el-col-xs-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-xs-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-xs-8 { - width: 33.33333%; - } - .el-col-xs-offset-8 { - margin-left: 33.33333%; - } - .el-col-xs-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-xs-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-xs-9 { - width: 37.5%; - } - .el-col-xs-offset-9 { - margin-left: 37.5%; - } - .el-col-xs-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-xs-push-9 { - position: relative; - left: 37.5%; - } - .el-col-xs-10 { - width: 41.66667%; - } - .el-col-xs-offset-10 { - margin-left: 41.66667%; - } - .el-col-xs-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-xs-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-xs-11 { - width: 45.83333%; - } - .el-col-xs-offset-11 { - margin-left: 45.83333%; - } - .el-col-xs-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-xs-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-xs-12 { - width: 50%; - } - .el-col-xs-offset-12 { - margin-left: 50%; - } - .el-col-xs-pull-12 { - position: relative; - right: 50%; - } - .el-col-xs-push-12 { - position: relative; - left: 50%; - } - .el-col-xs-13 { - width: 54.16667%; - } - .el-col-xs-offset-13 { - margin-left: 54.16667%; - } - .el-col-xs-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-xs-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-xs-14 { - width: 58.33333%; - } - .el-col-xs-offset-14 { - margin-left: 58.33333%; - } - .el-col-xs-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-xs-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-xs-15 { - width: 62.5%; - } - .el-col-xs-offset-15 { - margin-left: 62.5%; - } - .el-col-xs-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-xs-push-15 { - position: relative; - left: 62.5%; - } - .el-col-xs-16 { - width: 66.66667%; - } - .el-col-xs-offset-16 { - margin-left: 66.66667%; - } - .el-col-xs-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-xs-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-xs-17 { - width: 70.83333%; - } - .el-col-xs-offset-17 { - margin-left: 70.83333%; - } - .el-col-xs-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-xs-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-xs-18 { - width: 75%; - } - .el-col-xs-offset-18 { - margin-left: 75%; - } - .el-col-xs-pull-18 { - position: relative; - right: 75%; - } - .el-col-xs-push-18 { - position: relative; - left: 75%; - } - .el-col-xs-19 { - width: 79.16667%; - } - .el-col-xs-offset-19 { - margin-left: 79.16667%; - } - .el-col-xs-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-xs-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-xs-20 { - width: 83.33333%; - } - .el-col-xs-offset-20 { - margin-left: 83.33333%; - } - .el-col-xs-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-xs-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-xs-21 { - width: 87.5%; - } - .el-col-xs-offset-21 { - margin-left: 87.5%; - } - .el-col-xs-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-xs-push-21 { - position: relative; - left: 87.5%; - } - .el-col-xs-22 { - width: 91.66667%; - } - .el-col-xs-offset-22 { - margin-left: 91.66667%; - } - .el-col-xs-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-xs-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-xs-23 { - width: 95.83333%; - } - .el-col-xs-offset-23 { - margin-left: 95.83333%; - } - .el-col-xs-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-xs-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-xs-24 { - width: 100%; - } - .el-col-xs-offset-24 { - margin-left: 100%; - } - .el-col-xs-pull-24 { - position: relative; - right: 100%; - } - .el-col-xs-push-24 { - position: relative; - left: 100%; - } + .el-col-xs-0 { + display: none; + width: 0%; + } + .el-col-xs-offset-0 { + margin-left: 0; + } + .el-col-xs-pull-0 { + position: relative; + right: 0; + } + .el-col-xs-push-0 { + position: relative; + left: 0; + } + .el-col-xs-1 { + width: 4.16667%; + } + .el-col-xs-offset-1 { + margin-left: 4.16667%; + } + .el-col-xs-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-xs-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-xs-2 { + width: 8.33333%; + } + .el-col-xs-offset-2 { + margin-left: 8.33333%; + } + .el-col-xs-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-xs-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-xs-3 { + width: 12.5%; + } + .el-col-xs-offset-3 { + margin-left: 12.5%; + } + .el-col-xs-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-xs-push-3 { + position: relative; + left: 12.5%; + } + .el-col-xs-4 { + width: 16.66667%; + } + .el-col-xs-offset-4 { + margin-left: 16.66667%; + } + .el-col-xs-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-xs-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-xs-5 { + width: 20.83333%; + } + .el-col-xs-offset-5 { + margin-left: 20.83333%; + } + .el-col-xs-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-xs-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-xs-6 { + width: 25%; + } + .el-col-xs-offset-6 { + margin-left: 25%; + } + .el-col-xs-pull-6 { + position: relative; + right: 25%; + } + .el-col-xs-push-6 { + position: relative; + left: 25%; + } + .el-col-xs-7 { + width: 29.16667%; + } + .el-col-xs-offset-7 { + margin-left: 29.16667%; + } + .el-col-xs-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-xs-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-xs-8 { + width: 33.33333%; + } + .el-col-xs-offset-8 { + margin-left: 33.33333%; + } + .el-col-xs-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-xs-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-xs-9 { + width: 37.5%; + } + .el-col-xs-offset-9 { + margin-left: 37.5%; + } + .el-col-xs-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-xs-push-9 { + position: relative; + left: 37.5%; + } + .el-col-xs-10 { + width: 41.66667%; + } + .el-col-xs-offset-10 { + margin-left: 41.66667%; + } + .el-col-xs-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-xs-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-xs-11 { + width: 45.83333%; + } + .el-col-xs-offset-11 { + margin-left: 45.83333%; + } + .el-col-xs-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-xs-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-xs-12 { + width: 50%; + } + .el-col-xs-offset-12 { + margin-left: 50%; + } + .el-col-xs-pull-12 { + position: relative; + right: 50%; + } + .el-col-xs-push-12 { + position: relative; + left: 50%; + } + .el-col-xs-13 { + width: 54.16667%; + } + .el-col-xs-offset-13 { + margin-left: 54.16667%; + } + .el-col-xs-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-xs-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-xs-14 { + width: 58.33333%; + } + .el-col-xs-offset-14 { + margin-left: 58.33333%; + } + .el-col-xs-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-xs-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-xs-15 { + width: 62.5%; + } + .el-col-xs-offset-15 { + margin-left: 62.5%; + } + .el-col-xs-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-xs-push-15 { + position: relative; + left: 62.5%; + } + .el-col-xs-16 { + width: 66.66667%; + } + .el-col-xs-offset-16 { + margin-left: 66.66667%; + } + .el-col-xs-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-xs-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-xs-17 { + width: 70.83333%; + } + .el-col-xs-offset-17 { + margin-left: 70.83333%; + } + .el-col-xs-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-xs-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-xs-18 { + width: 75%; + } + .el-col-xs-offset-18 { + margin-left: 75%; + } + .el-col-xs-pull-18 { + position: relative; + right: 75%; + } + .el-col-xs-push-18 { + position: relative; + left: 75%; + } + .el-col-xs-19 { + width: 79.16667%; + } + .el-col-xs-offset-19 { + margin-left: 79.16667%; + } + .el-col-xs-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-xs-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-xs-20 { + width: 83.33333%; + } + .el-col-xs-offset-20 { + margin-left: 83.33333%; + } + .el-col-xs-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-xs-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-xs-21 { + width: 87.5%; + } + .el-col-xs-offset-21 { + margin-left: 87.5%; + } + .el-col-xs-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-xs-push-21 { + position: relative; + left: 87.5%; + } + .el-col-xs-22 { + width: 91.66667%; + } + .el-col-xs-offset-22 { + margin-left: 91.66667%; + } + .el-col-xs-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-xs-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-xs-23 { + width: 95.83333%; + } + .el-col-xs-offset-23 { + margin-left: 95.83333%; + } + .el-col-xs-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-xs-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-xs-24 { + width: 100%; + } + .el-col-xs-offset-24 { + margin-left: 100%; + } + .el-col-xs-pull-24 { + position: relative; + right: 100%; + } + .el-col-xs-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 768px) { - .el-col-sm-0 { - display: none; - width: 0%; - } - .el-col-sm-offset-0 { - margin-left: 0; - } - .el-col-sm-pull-0 { - position: relative; - right: 0; - } - .el-col-sm-push-0 { - position: relative; - left: 0; - } - .el-col-sm-1 { - width: 4.16667%; - } - .el-col-sm-offset-1 { - margin-left: 4.16667%; - } - .el-col-sm-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-sm-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-sm-2 { - width: 8.33333%; - } - .el-col-sm-offset-2 { - margin-left: 8.33333%; - } - .el-col-sm-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-sm-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-sm-3 { - width: 12.5%; - } - .el-col-sm-offset-3 { - margin-left: 12.5%; - } - .el-col-sm-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-sm-push-3 { - position: relative; - left: 12.5%; - } - .el-col-sm-4 { - width: 16.66667%; - } - .el-col-sm-offset-4 { - margin-left: 16.66667%; - } - .el-col-sm-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-sm-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-sm-5 { - width: 20.83333%; - } - .el-col-sm-offset-5 { - margin-left: 20.83333%; - } - .el-col-sm-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-sm-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-sm-6 { - width: 25%; - } - .el-col-sm-offset-6 { - margin-left: 25%; - } - .el-col-sm-pull-6 { - position: relative; - right: 25%; - } - .el-col-sm-push-6 { - position: relative; - left: 25%; - } - .el-col-sm-7 { - width: 29.16667%; - } - .el-col-sm-offset-7 { - margin-left: 29.16667%; - } - .el-col-sm-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-sm-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-sm-8 { - width: 33.33333%; - } - .el-col-sm-offset-8 { - margin-left: 33.33333%; - } - .el-col-sm-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-sm-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-sm-9 { - width: 37.5%; - } - .el-col-sm-offset-9 { - margin-left: 37.5%; - } - .el-col-sm-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-sm-push-9 { - position: relative; - left: 37.5%; - } - .el-col-sm-10 { - width: 41.66667%; - } - .el-col-sm-offset-10 { - margin-left: 41.66667%; - } - .el-col-sm-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-sm-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-sm-11 { - width: 45.83333%; - } - .el-col-sm-offset-11 { - margin-left: 45.83333%; - } - .el-col-sm-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-sm-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-sm-12 { - width: 50%; - } - .el-col-sm-offset-12 { - margin-left: 50%; - } - .el-col-sm-pull-12 { - position: relative; - right: 50%; - } - .el-col-sm-push-12 { - position: relative; - left: 50%; - } - .el-col-sm-13 { - width: 54.16667%; - } - .el-col-sm-offset-13 { - margin-left: 54.16667%; - } - .el-col-sm-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-sm-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-sm-14 { - width: 58.33333%; - } - .el-col-sm-offset-14 { - margin-left: 58.33333%; - } - .el-col-sm-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-sm-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-sm-15 { - width: 62.5%; - } - .el-col-sm-offset-15 { - margin-left: 62.5%; - } - .el-col-sm-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-sm-push-15 { - position: relative; - left: 62.5%; - } - .el-col-sm-16 { - width: 66.66667%; - } - .el-col-sm-offset-16 { - margin-left: 66.66667%; - } - .el-col-sm-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-sm-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-sm-17 { - width: 70.83333%; - } - .el-col-sm-offset-17 { - margin-left: 70.83333%; - } - .el-col-sm-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-sm-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-sm-18 { - width: 75%; - } - .el-col-sm-offset-18 { - margin-left: 75%; - } - .el-col-sm-pull-18 { - position: relative; - right: 75%; - } - .el-col-sm-push-18 { - position: relative; - left: 75%; - } - .el-col-sm-19 { - width: 79.16667%; - } - .el-col-sm-offset-19 { - margin-left: 79.16667%; - } - .el-col-sm-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-sm-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-sm-20 { - width: 83.33333%; - } - .el-col-sm-offset-20 { - margin-left: 83.33333%; - } - .el-col-sm-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-sm-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-sm-21 { - width: 87.5%; - } - .el-col-sm-offset-21 { - margin-left: 87.5%; - } - .el-col-sm-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-sm-push-21 { - position: relative; - left: 87.5%; - } - .el-col-sm-22 { - width: 91.66667%; - } - .el-col-sm-offset-22 { - margin-left: 91.66667%; - } - .el-col-sm-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-sm-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-sm-23 { - width: 95.83333%; - } - .el-col-sm-offset-23 { - margin-left: 95.83333%; - } - .el-col-sm-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-sm-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-sm-24 { - width: 100%; - } - .el-col-sm-offset-24 { - margin-left: 100%; - } - .el-col-sm-pull-24 { - position: relative; - right: 100%; - } - .el-col-sm-push-24 { - position: relative; - left: 100%; - } + .el-col-sm-0 { + display: none; + width: 0%; + } + .el-col-sm-offset-0 { + margin-left: 0; + } + .el-col-sm-pull-0 { + position: relative; + right: 0; + } + .el-col-sm-push-0 { + position: relative; + left: 0; + } + .el-col-sm-1 { + width: 4.16667%; + } + .el-col-sm-offset-1 { + margin-left: 4.16667%; + } + .el-col-sm-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-sm-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-sm-2 { + width: 8.33333%; + } + .el-col-sm-offset-2 { + margin-left: 8.33333%; + } + .el-col-sm-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-sm-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-sm-3 { + width: 12.5%; + } + .el-col-sm-offset-3 { + margin-left: 12.5%; + } + .el-col-sm-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-sm-push-3 { + position: relative; + left: 12.5%; + } + .el-col-sm-4 { + width: 16.66667%; + } + .el-col-sm-offset-4 { + margin-left: 16.66667%; + } + .el-col-sm-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-sm-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-sm-5 { + width: 20.83333%; + } + .el-col-sm-offset-5 { + margin-left: 20.83333%; + } + .el-col-sm-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-sm-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-sm-6 { + width: 25%; + } + .el-col-sm-offset-6 { + margin-left: 25%; + } + .el-col-sm-pull-6 { + position: relative; + right: 25%; + } + .el-col-sm-push-6 { + position: relative; + left: 25%; + } + .el-col-sm-7 { + width: 29.16667%; + } + .el-col-sm-offset-7 { + margin-left: 29.16667%; + } + .el-col-sm-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-sm-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-sm-8 { + width: 33.33333%; + } + .el-col-sm-offset-8 { + margin-left: 33.33333%; + } + .el-col-sm-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-sm-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-sm-9 { + width: 37.5%; + } + .el-col-sm-offset-9 { + margin-left: 37.5%; + } + .el-col-sm-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-sm-push-9 { + position: relative; + left: 37.5%; + } + .el-col-sm-10 { + width: 41.66667%; + } + .el-col-sm-offset-10 { + margin-left: 41.66667%; + } + .el-col-sm-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-sm-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-sm-11 { + width: 45.83333%; + } + .el-col-sm-offset-11 { + margin-left: 45.83333%; + } + .el-col-sm-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-sm-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-sm-12 { + width: 50%; + } + .el-col-sm-offset-12 { + margin-left: 50%; + } + .el-col-sm-pull-12 { + position: relative; + right: 50%; + } + .el-col-sm-push-12 { + position: relative; + left: 50%; + } + .el-col-sm-13 { + width: 54.16667%; + } + .el-col-sm-offset-13 { + margin-left: 54.16667%; + } + .el-col-sm-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-sm-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-sm-14 { + width: 58.33333%; + } + .el-col-sm-offset-14 { + margin-left: 58.33333%; + } + .el-col-sm-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-sm-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-sm-15 { + width: 62.5%; + } + .el-col-sm-offset-15 { + margin-left: 62.5%; + } + .el-col-sm-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-sm-push-15 { + position: relative; + left: 62.5%; + } + .el-col-sm-16 { + width: 66.66667%; + } + .el-col-sm-offset-16 { + margin-left: 66.66667%; + } + .el-col-sm-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-sm-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-sm-17 { + width: 70.83333%; + } + .el-col-sm-offset-17 { + margin-left: 70.83333%; + } + .el-col-sm-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-sm-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-sm-18 { + width: 75%; + } + .el-col-sm-offset-18 { + margin-left: 75%; + } + .el-col-sm-pull-18 { + position: relative; + right: 75%; + } + .el-col-sm-push-18 { + position: relative; + left: 75%; + } + .el-col-sm-19 { + width: 79.16667%; + } + .el-col-sm-offset-19 { + margin-left: 79.16667%; + } + .el-col-sm-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-sm-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-sm-20 { + width: 83.33333%; + } + .el-col-sm-offset-20 { + margin-left: 83.33333%; + } + .el-col-sm-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-sm-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-sm-21 { + width: 87.5%; + } + .el-col-sm-offset-21 { + margin-left: 87.5%; + } + .el-col-sm-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-sm-push-21 { + position: relative; + left: 87.5%; + } + .el-col-sm-22 { + width: 91.66667%; + } + .el-col-sm-offset-22 { + margin-left: 91.66667%; + } + .el-col-sm-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-sm-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-sm-23 { + width: 95.83333%; + } + .el-col-sm-offset-23 { + margin-left: 95.83333%; + } + .el-col-sm-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-sm-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-sm-24 { + width: 100%; + } + .el-col-sm-offset-24 { + margin-left: 100%; + } + .el-col-sm-pull-24 { + position: relative; + right: 100%; + } + .el-col-sm-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 992px) { - .el-col-md-0 { - display: none; - width: 0%; - } - .el-col-md-offset-0 { - margin-left: 0; - } - .el-col-md-pull-0 { - position: relative; - right: 0; - } - .el-col-md-push-0 { - position: relative; - left: 0; - } - .el-col-md-1 { - width: 4.16667%; - } - .el-col-md-offset-1 { - margin-left: 4.16667%; - } - .el-col-md-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-md-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-md-2 { - width: 8.33333%; - } - .el-col-md-offset-2 { - margin-left: 8.33333%; - } - .el-col-md-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-md-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-md-3 { - width: 12.5%; - } - .el-col-md-offset-3 { - margin-left: 12.5%; - } - .el-col-md-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-md-push-3 { - position: relative; - left: 12.5%; - } - .el-col-md-4 { - width: 16.66667%; - } - .el-col-md-offset-4 { - margin-left: 16.66667%; - } - .el-col-md-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-md-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-md-5 { - width: 20.83333%; - } - .el-col-md-offset-5 { - margin-left: 20.83333%; - } - .el-col-md-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-md-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-md-6 { - width: 25%; - } - .el-col-md-offset-6 { - margin-left: 25%; - } - .el-col-md-pull-6 { - position: relative; - right: 25%; - } - .el-col-md-push-6 { - position: relative; - left: 25%; - } - .el-col-md-7 { - width: 29.16667%; - } - .el-col-md-offset-7 { - margin-left: 29.16667%; - } - .el-col-md-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-md-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-md-8 { - width: 33.33333%; - } - .el-col-md-offset-8 { - margin-left: 33.33333%; - } - .el-col-md-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-md-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-md-9 { - width: 37.5%; - } - .el-col-md-offset-9 { - margin-left: 37.5%; - } - .el-col-md-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-md-push-9 { - position: relative; - left: 37.5%; - } - .el-col-md-10 { - width: 41.66667%; - } - .el-col-md-offset-10 { - margin-left: 41.66667%; - } - .el-col-md-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-md-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-md-11 { - width: 45.83333%; - } - .el-col-md-offset-11 { - margin-left: 45.83333%; - } - .el-col-md-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-md-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-md-12 { - width: 50%; - } - .el-col-md-offset-12 { - margin-left: 50%; - } - .el-col-md-pull-12 { - position: relative; - right: 50%; - } - .el-col-md-push-12 { - position: relative; - left: 50%; - } - .el-col-md-13 { - width: 54.16667%; - } - .el-col-md-offset-13 { - margin-left: 54.16667%; - } - .el-col-md-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-md-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-md-14 { - width: 58.33333%; - } - .el-col-md-offset-14 { - margin-left: 58.33333%; - } - .el-col-md-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-md-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-md-15 { - width: 62.5%; - } - .el-col-md-offset-15 { - margin-left: 62.5%; - } - .el-col-md-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-md-push-15 { - position: relative; - left: 62.5%; - } - .el-col-md-16 { - width: 66.66667%; - } - .el-col-md-offset-16 { - margin-left: 66.66667%; - } - .el-col-md-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-md-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-md-17 { - width: 70.83333%; - } - .el-col-md-offset-17 { - margin-left: 70.83333%; - } - .el-col-md-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-md-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-md-18 { - width: 75%; - } - .el-col-md-offset-18 { - margin-left: 75%; - } - .el-col-md-pull-18 { - position: relative; - right: 75%; - } - .el-col-md-push-18 { - position: relative; - left: 75%; - } - .el-col-md-19 { - width: 79.16667%; - } - .el-col-md-offset-19 { - margin-left: 79.16667%; - } - .el-col-md-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-md-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-md-20 { - width: 83.33333%; - } - .el-col-md-offset-20 { - margin-left: 83.33333%; - } - .el-col-md-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-md-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-md-21 { - width: 87.5%; - } - .el-col-md-offset-21 { - margin-left: 87.5%; - } - .el-col-md-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-md-push-21 { - position: relative; - left: 87.5%; - } - .el-col-md-22 { - width: 91.66667%; - } - .el-col-md-offset-22 { - margin-left: 91.66667%; - } - .el-col-md-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-md-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-md-23 { - width: 95.83333%; - } - .el-col-md-offset-23 { - margin-left: 95.83333%; - } - .el-col-md-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-md-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-md-24 { - width: 100%; - } - .el-col-md-offset-24 { - margin-left: 100%; - } - .el-col-md-pull-24 { - position: relative; - right: 100%; - } - .el-col-md-push-24 { - position: relative; - left: 100%; - } + .el-col-md-0 { + display: none; + width: 0%; + } + .el-col-md-offset-0 { + margin-left: 0; + } + .el-col-md-pull-0 { + position: relative; + right: 0; + } + .el-col-md-push-0 { + position: relative; + left: 0; + } + .el-col-md-1 { + width: 4.16667%; + } + .el-col-md-offset-1 { + margin-left: 4.16667%; + } + .el-col-md-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-md-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-md-2 { + width: 8.33333%; + } + .el-col-md-offset-2 { + margin-left: 8.33333%; + } + .el-col-md-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-md-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-md-3 { + width: 12.5%; + } + .el-col-md-offset-3 { + margin-left: 12.5%; + } + .el-col-md-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-md-push-3 { + position: relative; + left: 12.5%; + } + .el-col-md-4 { + width: 16.66667%; + } + .el-col-md-offset-4 { + margin-left: 16.66667%; + } + .el-col-md-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-md-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-md-5 { + width: 20.83333%; + } + .el-col-md-offset-5 { + margin-left: 20.83333%; + } + .el-col-md-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-md-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-md-6 { + width: 25%; + } + .el-col-md-offset-6 { + margin-left: 25%; + } + .el-col-md-pull-6 { + position: relative; + right: 25%; + } + .el-col-md-push-6 { + position: relative; + left: 25%; + } + .el-col-md-7 { + width: 29.16667%; + } + .el-col-md-offset-7 { + margin-left: 29.16667%; + } + .el-col-md-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-md-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-md-8 { + width: 33.33333%; + } + .el-col-md-offset-8 { + margin-left: 33.33333%; + } + .el-col-md-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-md-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-md-9 { + width: 37.5%; + } + .el-col-md-offset-9 { + margin-left: 37.5%; + } + .el-col-md-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-md-push-9 { + position: relative; + left: 37.5%; + } + .el-col-md-10 { + width: 41.66667%; + } + .el-col-md-offset-10 { + margin-left: 41.66667%; + } + .el-col-md-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-md-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-md-11 { + width: 45.83333%; + } + .el-col-md-offset-11 { + margin-left: 45.83333%; + } + .el-col-md-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-md-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-md-12 { + width: 50%; + } + .el-col-md-offset-12 { + margin-left: 50%; + } + .el-col-md-pull-12 { + position: relative; + right: 50%; + } + .el-col-md-push-12 { + position: relative; + left: 50%; + } + .el-col-md-13 { + width: 54.16667%; + } + .el-col-md-offset-13 { + margin-left: 54.16667%; + } + .el-col-md-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-md-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-md-14 { + width: 58.33333%; + } + .el-col-md-offset-14 { + margin-left: 58.33333%; + } + .el-col-md-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-md-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-md-15 { + width: 62.5%; + } + .el-col-md-offset-15 { + margin-left: 62.5%; + } + .el-col-md-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-md-push-15 { + position: relative; + left: 62.5%; + } + .el-col-md-16 { + width: 66.66667%; + } + .el-col-md-offset-16 { + margin-left: 66.66667%; + } + .el-col-md-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-md-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-md-17 { + width: 70.83333%; + } + .el-col-md-offset-17 { + margin-left: 70.83333%; + } + .el-col-md-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-md-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-md-18 { + width: 75%; + } + .el-col-md-offset-18 { + margin-left: 75%; + } + .el-col-md-pull-18 { + position: relative; + right: 75%; + } + .el-col-md-push-18 { + position: relative; + left: 75%; + } + .el-col-md-19 { + width: 79.16667%; + } + .el-col-md-offset-19 { + margin-left: 79.16667%; + } + .el-col-md-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-md-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-md-20 { + width: 83.33333%; + } + .el-col-md-offset-20 { + margin-left: 83.33333%; + } + .el-col-md-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-md-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-md-21 { + width: 87.5%; + } + .el-col-md-offset-21 { + margin-left: 87.5%; + } + .el-col-md-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-md-push-21 { + position: relative; + left: 87.5%; + } + .el-col-md-22 { + width: 91.66667%; + } + .el-col-md-offset-22 { + margin-left: 91.66667%; + } + .el-col-md-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-md-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-md-23 { + width: 95.83333%; + } + .el-col-md-offset-23 { + margin-left: 95.83333%; + } + .el-col-md-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-md-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-md-24 { + width: 100%; + } + .el-col-md-offset-24 { + margin-left: 100%; + } + .el-col-md-pull-24 { + position: relative; + right: 100%; + } + .el-col-md-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 1200px) { - .el-col-lg-0 { - display: none; - width: 0%; - } - .el-col-lg-offset-0 { - margin-left: 0; - } - .el-col-lg-pull-0 { - position: relative; - right: 0; - } - .el-col-lg-push-0 { - position: relative; - left: 0; - } - .el-col-lg-1 { - width: 4.16667%; - } - .el-col-lg-offset-1 { - margin-left: 4.16667%; - } - .el-col-lg-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-lg-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-lg-2 { - width: 8.33333%; - } - .el-col-lg-offset-2 { - margin-left: 8.33333%; - } - .el-col-lg-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-lg-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-lg-3 { - width: 12.5%; - } - .el-col-lg-offset-3 { - margin-left: 12.5%; - } - .el-col-lg-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-lg-push-3 { - position: relative; - left: 12.5%; - } - .el-col-lg-4 { - width: 16.66667%; - } - .el-col-lg-offset-4 { - margin-left: 16.66667%; - } - .el-col-lg-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-lg-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-lg-5 { - width: 20.83333%; - } - .el-col-lg-offset-5 { - margin-left: 20.83333%; - } - .el-col-lg-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-lg-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-lg-6 { - width: 25%; - } - .el-col-lg-offset-6 { - margin-left: 25%; - } - .el-col-lg-pull-6 { - position: relative; - right: 25%; - } - .el-col-lg-push-6 { - position: relative; - left: 25%; - } - .el-col-lg-7 { - width: 29.16667%; - } - .el-col-lg-offset-7 { - margin-left: 29.16667%; - } - .el-col-lg-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-lg-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-lg-8 { - width: 33.33333%; - } - .el-col-lg-offset-8 { - margin-left: 33.33333%; - } - .el-col-lg-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-lg-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-lg-9 { - width: 37.5%; - } - .el-col-lg-offset-9 { - margin-left: 37.5%; - } - .el-col-lg-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-lg-push-9 { - position: relative; - left: 37.5%; - } - .el-col-lg-10 { - width: 41.66667%; - } - .el-col-lg-offset-10 { - margin-left: 41.66667%; - } - .el-col-lg-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-lg-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-lg-11 { - width: 45.83333%; - } - .el-col-lg-offset-11 { - margin-left: 45.83333%; - } - .el-col-lg-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-lg-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-lg-12 { - width: 50%; - } - .el-col-lg-offset-12 { - margin-left: 50%; - } - .el-col-lg-pull-12 { - position: relative; - right: 50%; - } - .el-col-lg-push-12 { - position: relative; - left: 50%; - } - .el-col-lg-13 { - width: 54.16667%; - } - .el-col-lg-offset-13 { - margin-left: 54.16667%; - } - .el-col-lg-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-lg-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-lg-14 { - width: 58.33333%; - } - .el-col-lg-offset-14 { - margin-left: 58.33333%; - } - .el-col-lg-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-lg-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-lg-15 { - width: 62.5%; - } - .el-col-lg-offset-15 { - margin-left: 62.5%; - } - .el-col-lg-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-lg-push-15 { - position: relative; - left: 62.5%; - } - .el-col-lg-16 { - width: 66.66667%; - } - .el-col-lg-offset-16 { - margin-left: 66.66667%; - } - .el-col-lg-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-lg-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-lg-17 { - width: 70.83333%; - } - .el-col-lg-offset-17 { - margin-left: 70.83333%; - } - .el-col-lg-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-lg-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-lg-18 { - width: 75%; - } - .el-col-lg-offset-18 { - margin-left: 75%; - } - .el-col-lg-pull-18 { - position: relative; - right: 75%; - } - .el-col-lg-push-18 { - position: relative; - left: 75%; - } - .el-col-lg-19 { - width: 79.16667%; - } - .el-col-lg-offset-19 { - margin-left: 79.16667%; - } - .el-col-lg-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-lg-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-lg-20 { - width: 83.33333%; - } - .el-col-lg-offset-20 { - margin-left: 83.33333%; - } - .el-col-lg-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-lg-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-lg-21 { - width: 87.5%; - } - .el-col-lg-offset-21 { - margin-left: 87.5%; - } - .el-col-lg-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-lg-push-21 { - position: relative; - left: 87.5%; - } - .el-col-lg-22 { - width: 91.66667%; - } - .el-col-lg-offset-22 { - margin-left: 91.66667%; - } - .el-col-lg-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-lg-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-lg-23 { - width: 95.83333%; - } - .el-col-lg-offset-23 { - margin-left: 95.83333%; - } - .el-col-lg-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-lg-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-lg-24 { - width: 100%; - } - .el-col-lg-offset-24 { - margin-left: 100%; - } - .el-col-lg-pull-24 { - position: relative; - right: 100%; - } - .el-col-lg-push-24 { - position: relative; - left: 100%; - } + .el-col-lg-0 { + display: none; + width: 0%; + } + .el-col-lg-offset-0 { + margin-left: 0; + } + .el-col-lg-pull-0 { + position: relative; + right: 0; + } + .el-col-lg-push-0 { + position: relative; + left: 0; + } + .el-col-lg-1 { + width: 4.16667%; + } + .el-col-lg-offset-1 { + margin-left: 4.16667%; + } + .el-col-lg-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-lg-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-lg-2 { + width: 8.33333%; + } + .el-col-lg-offset-2 { + margin-left: 8.33333%; + } + .el-col-lg-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-lg-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-lg-3 { + width: 12.5%; + } + .el-col-lg-offset-3 { + margin-left: 12.5%; + } + .el-col-lg-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-lg-push-3 { + position: relative; + left: 12.5%; + } + .el-col-lg-4 { + width: 16.66667%; + } + .el-col-lg-offset-4 { + margin-left: 16.66667%; + } + .el-col-lg-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-lg-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-lg-5 { + width: 20.83333%; + } + .el-col-lg-offset-5 { + margin-left: 20.83333%; + } + .el-col-lg-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-lg-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-lg-6 { + width: 25%; + } + .el-col-lg-offset-6 { + margin-left: 25%; + } + .el-col-lg-pull-6 { + position: relative; + right: 25%; + } + .el-col-lg-push-6 { + position: relative; + left: 25%; + } + .el-col-lg-7 { + width: 29.16667%; + } + .el-col-lg-offset-7 { + margin-left: 29.16667%; + } + .el-col-lg-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-lg-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-lg-8 { + width: 33.33333%; + } + .el-col-lg-offset-8 { + margin-left: 33.33333%; + } + .el-col-lg-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-lg-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-lg-9 { + width: 37.5%; + } + .el-col-lg-offset-9 { + margin-left: 37.5%; + } + .el-col-lg-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-lg-push-9 { + position: relative; + left: 37.5%; + } + .el-col-lg-10 { + width: 41.66667%; + } + .el-col-lg-offset-10 { + margin-left: 41.66667%; + } + .el-col-lg-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-lg-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-lg-11 { + width: 45.83333%; + } + .el-col-lg-offset-11 { + margin-left: 45.83333%; + } + .el-col-lg-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-lg-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-lg-12 { + width: 50%; + } + .el-col-lg-offset-12 { + margin-left: 50%; + } + .el-col-lg-pull-12 { + position: relative; + right: 50%; + } + .el-col-lg-push-12 { + position: relative; + left: 50%; + } + .el-col-lg-13 { + width: 54.16667%; + } + .el-col-lg-offset-13 { + margin-left: 54.16667%; + } + .el-col-lg-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-lg-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-lg-14 { + width: 58.33333%; + } + .el-col-lg-offset-14 { + margin-left: 58.33333%; + } + .el-col-lg-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-lg-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-lg-15 { + width: 62.5%; + } + .el-col-lg-offset-15 { + margin-left: 62.5%; + } + .el-col-lg-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-lg-push-15 { + position: relative; + left: 62.5%; + } + .el-col-lg-16 { + width: 66.66667%; + } + .el-col-lg-offset-16 { + margin-left: 66.66667%; + } + .el-col-lg-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-lg-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-lg-17 { + width: 70.83333%; + } + .el-col-lg-offset-17 { + margin-left: 70.83333%; + } + .el-col-lg-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-lg-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-lg-18 { + width: 75%; + } + .el-col-lg-offset-18 { + margin-left: 75%; + } + .el-col-lg-pull-18 { + position: relative; + right: 75%; + } + .el-col-lg-push-18 { + position: relative; + left: 75%; + } + .el-col-lg-19 { + width: 79.16667%; + } + .el-col-lg-offset-19 { + margin-left: 79.16667%; + } + .el-col-lg-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-lg-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-lg-20 { + width: 83.33333%; + } + .el-col-lg-offset-20 { + margin-left: 83.33333%; + } + .el-col-lg-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-lg-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-lg-21 { + width: 87.5%; + } + .el-col-lg-offset-21 { + margin-left: 87.5%; + } + .el-col-lg-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-lg-push-21 { + position: relative; + left: 87.5%; + } + .el-col-lg-22 { + width: 91.66667%; + } + .el-col-lg-offset-22 { + margin-left: 91.66667%; + } + .el-col-lg-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-lg-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-lg-23 { + width: 95.83333%; + } + .el-col-lg-offset-23 { + margin-left: 95.83333%; + } + .el-col-lg-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-lg-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-lg-24 { + width: 100%; + } + .el-col-lg-offset-24 { + margin-left: 100%; + } + .el-col-lg-pull-24 { + position: relative; + right: 100%; + } + .el-col-lg-push-24 { + position: relative; + left: 100%; + } } @media only screen and (min-width: 1920px) { - .el-col-xl-0 { - display: none; - width: 0%; - } - .el-col-xl-offset-0 { - margin-left: 0; - } - .el-col-xl-pull-0 { - position: relative; - right: 0; - } - .el-col-xl-push-0 { - position: relative; - left: 0; - } - .el-col-xl-1 { - width: 4.16667%; - } - .el-col-xl-offset-1 { - margin-left: 4.16667%; - } - .el-col-xl-pull-1 { - position: relative; - right: 4.16667%; - } - .el-col-xl-push-1 { - position: relative; - left: 4.16667%; - } - .el-col-xl-2 { - width: 8.33333%; - } - .el-col-xl-offset-2 { - margin-left: 8.33333%; - } - .el-col-xl-pull-2 { - position: relative; - right: 8.33333%; - } - .el-col-xl-push-2 { - position: relative; - left: 8.33333%; - } - .el-col-xl-3 { - width: 12.5%; - } - .el-col-xl-offset-3 { - margin-left: 12.5%; - } - .el-col-xl-pull-3 { - position: relative; - right: 12.5%; - } - .el-col-xl-push-3 { - position: relative; - left: 12.5%; - } - .el-col-xl-4 { - width: 16.66667%; - } - .el-col-xl-offset-4 { - margin-left: 16.66667%; - } - .el-col-xl-pull-4 { - position: relative; - right: 16.66667%; - } - .el-col-xl-push-4 { - position: relative; - left: 16.66667%; - } - .el-col-xl-5 { - width: 20.83333%; - } - .el-col-xl-offset-5 { - margin-left: 20.83333%; - } - .el-col-xl-pull-5 { - position: relative; - right: 20.83333%; - } - .el-col-xl-push-5 { - position: relative; - left: 20.83333%; - } - .el-col-xl-6 { - width: 25%; - } - .el-col-xl-offset-6 { - margin-left: 25%; - } - .el-col-xl-pull-6 { - position: relative; - right: 25%; - } - .el-col-xl-push-6 { - position: relative; - left: 25%; - } - .el-col-xl-7 { - width: 29.16667%; - } - .el-col-xl-offset-7 { - margin-left: 29.16667%; - } - .el-col-xl-pull-7 { - position: relative; - right: 29.16667%; - } - .el-col-xl-push-7 { - position: relative; - left: 29.16667%; - } - .el-col-xl-8 { - width: 33.33333%; - } - .el-col-xl-offset-8 { - margin-left: 33.33333%; - } - .el-col-xl-pull-8 { - position: relative; - right: 33.33333%; - } - .el-col-xl-push-8 { - position: relative; - left: 33.33333%; - } - .el-col-xl-9 { - width: 37.5%; - } - .el-col-xl-offset-9 { - margin-left: 37.5%; - } - .el-col-xl-pull-9 { - position: relative; - right: 37.5%; - } - .el-col-xl-push-9 { - position: relative; - left: 37.5%; - } - .el-col-xl-10 { - width: 41.66667%; - } - .el-col-xl-offset-10 { - margin-left: 41.66667%; - } - .el-col-xl-pull-10 { - position: relative; - right: 41.66667%; - } - .el-col-xl-push-10 { - position: relative; - left: 41.66667%; - } - .el-col-xl-11 { - width: 45.83333%; - } - .el-col-xl-offset-11 { - margin-left: 45.83333%; - } - .el-col-xl-pull-11 { - position: relative; - right: 45.83333%; - } - .el-col-xl-push-11 { - position: relative; - left: 45.83333%; - } - .el-col-xl-12 { - width: 50%; - } - .el-col-xl-offset-12 { - margin-left: 50%; - } - .el-col-xl-pull-12 { - position: relative; - right: 50%; - } - .el-col-xl-push-12 { - position: relative; - left: 50%; - } - .el-col-xl-13 { - width: 54.16667%; - } - .el-col-xl-offset-13 { - margin-left: 54.16667%; - } - .el-col-xl-pull-13 { - position: relative; - right: 54.16667%; - } - .el-col-xl-push-13 { - position: relative; - left: 54.16667%; - } - .el-col-xl-14 { - width: 58.33333%; - } - .el-col-xl-offset-14 { - margin-left: 58.33333%; - } - .el-col-xl-pull-14 { - position: relative; - right: 58.33333%; - } - .el-col-xl-push-14 { - position: relative; - left: 58.33333%; - } - .el-col-xl-15 { - width: 62.5%; - } - .el-col-xl-offset-15 { - margin-left: 62.5%; - } - .el-col-xl-pull-15 { - position: relative; - right: 62.5%; - } - .el-col-xl-push-15 { - position: relative; - left: 62.5%; - } - .el-col-xl-16 { - width: 66.66667%; - } - .el-col-xl-offset-16 { - margin-left: 66.66667%; - } - .el-col-xl-pull-16 { - position: relative; - right: 66.66667%; - } - .el-col-xl-push-16 { - position: relative; - left: 66.66667%; - } - .el-col-xl-17 { - width: 70.83333%; - } - .el-col-xl-offset-17 { - margin-left: 70.83333%; - } - .el-col-xl-pull-17 { - position: relative; - right: 70.83333%; - } - .el-col-xl-push-17 { - position: relative; - left: 70.83333%; - } - .el-col-xl-18 { - width: 75%; - } - .el-col-xl-offset-18 { - margin-left: 75%; - } - .el-col-xl-pull-18 { - position: relative; - right: 75%; - } - .el-col-xl-push-18 { - position: relative; - left: 75%; - } - .el-col-xl-19 { - width: 79.16667%; - } - .el-col-xl-offset-19 { - margin-left: 79.16667%; - } - .el-col-xl-pull-19 { - position: relative; - right: 79.16667%; - } - .el-col-xl-push-19 { - position: relative; - left: 79.16667%; - } - .el-col-xl-20 { - width: 83.33333%; - } - .el-col-xl-offset-20 { - margin-left: 83.33333%; - } - .el-col-xl-pull-20 { - position: relative; - right: 83.33333%; - } - .el-col-xl-push-20 { - position: relative; - left: 83.33333%; - } - .el-col-xl-21 { - width: 87.5%; - } - .el-col-xl-offset-21 { - margin-left: 87.5%; - } - .el-col-xl-pull-21 { - position: relative; - right: 87.5%; - } - .el-col-xl-push-21 { - position: relative; - left: 87.5%; - } - .el-col-xl-22 { - width: 91.66667%; - } - .el-col-xl-offset-22 { - margin-left: 91.66667%; - } - .el-col-xl-pull-22 { - position: relative; - right: 91.66667%; - } - .el-col-xl-push-22 { - position: relative; - left: 91.66667%; - } - .el-col-xl-23 { - width: 95.83333%; - } - .el-col-xl-offset-23 { - margin-left: 95.83333%; - } - .el-col-xl-pull-23 { - position: relative; - right: 95.83333%; - } - .el-col-xl-push-23 { - position: relative; - left: 95.83333%; - } - .el-col-xl-24 { - width: 100%; - } - .el-col-xl-offset-24 { - margin-left: 100%; - } - .el-col-xl-pull-24 { - position: relative; - right: 100%; - } - .el-col-xl-push-24 { - position: relative; - left: 100%; - } + .el-col-xl-0 { + display: none; + width: 0%; + } + .el-col-xl-offset-0 { + margin-left: 0; + } + .el-col-xl-pull-0 { + position: relative; + right: 0; + } + .el-col-xl-push-0 { + position: relative; + left: 0; + } + .el-col-xl-1 { + width: 4.16667%; + } + .el-col-xl-offset-1 { + margin-left: 4.16667%; + } + .el-col-xl-pull-1 { + position: relative; + right: 4.16667%; + } + .el-col-xl-push-1 { + position: relative; + left: 4.16667%; + } + .el-col-xl-2 { + width: 8.33333%; + } + .el-col-xl-offset-2 { + margin-left: 8.33333%; + } + .el-col-xl-pull-2 { + position: relative; + right: 8.33333%; + } + .el-col-xl-push-2 { + position: relative; + left: 8.33333%; + } + .el-col-xl-3 { + width: 12.5%; + } + .el-col-xl-offset-3 { + margin-left: 12.5%; + } + .el-col-xl-pull-3 { + position: relative; + right: 12.5%; + } + .el-col-xl-push-3 { + position: relative; + left: 12.5%; + } + .el-col-xl-4 { + width: 16.66667%; + } + .el-col-xl-offset-4 { + margin-left: 16.66667%; + } + .el-col-xl-pull-4 { + position: relative; + right: 16.66667%; + } + .el-col-xl-push-4 { + position: relative; + left: 16.66667%; + } + .el-col-xl-5 { + width: 20.83333%; + } + .el-col-xl-offset-5 { + margin-left: 20.83333%; + } + .el-col-xl-pull-5 { + position: relative; + right: 20.83333%; + } + .el-col-xl-push-5 { + position: relative; + left: 20.83333%; + } + .el-col-xl-6 { + width: 25%; + } + .el-col-xl-offset-6 { + margin-left: 25%; + } + .el-col-xl-pull-6 { + position: relative; + right: 25%; + } + .el-col-xl-push-6 { + position: relative; + left: 25%; + } + .el-col-xl-7 { + width: 29.16667%; + } + .el-col-xl-offset-7 { + margin-left: 29.16667%; + } + .el-col-xl-pull-7 { + position: relative; + right: 29.16667%; + } + .el-col-xl-push-7 { + position: relative; + left: 29.16667%; + } + .el-col-xl-8 { + width: 33.33333%; + } + .el-col-xl-offset-8 { + margin-left: 33.33333%; + } + .el-col-xl-pull-8 { + position: relative; + right: 33.33333%; + } + .el-col-xl-push-8 { + position: relative; + left: 33.33333%; + } + .el-col-xl-9 { + width: 37.5%; + } + .el-col-xl-offset-9 { + margin-left: 37.5%; + } + .el-col-xl-pull-9 { + position: relative; + right: 37.5%; + } + .el-col-xl-push-9 { + position: relative; + left: 37.5%; + } + .el-col-xl-10 { + width: 41.66667%; + } + .el-col-xl-offset-10 { + margin-left: 41.66667%; + } + .el-col-xl-pull-10 { + position: relative; + right: 41.66667%; + } + .el-col-xl-push-10 { + position: relative; + left: 41.66667%; + } + .el-col-xl-11 { + width: 45.83333%; + } + .el-col-xl-offset-11 { + margin-left: 45.83333%; + } + .el-col-xl-pull-11 { + position: relative; + right: 45.83333%; + } + .el-col-xl-push-11 { + position: relative; + left: 45.83333%; + } + .el-col-xl-12 { + width: 50%; + } + .el-col-xl-offset-12 { + margin-left: 50%; + } + .el-col-xl-pull-12 { + position: relative; + right: 50%; + } + .el-col-xl-push-12 { + position: relative; + left: 50%; + } + .el-col-xl-13 { + width: 54.16667%; + } + .el-col-xl-offset-13 { + margin-left: 54.16667%; + } + .el-col-xl-pull-13 { + position: relative; + right: 54.16667%; + } + .el-col-xl-push-13 { + position: relative; + left: 54.16667%; + } + .el-col-xl-14 { + width: 58.33333%; + } + .el-col-xl-offset-14 { + margin-left: 58.33333%; + } + .el-col-xl-pull-14 { + position: relative; + right: 58.33333%; + } + .el-col-xl-push-14 { + position: relative; + left: 58.33333%; + } + .el-col-xl-15 { + width: 62.5%; + } + .el-col-xl-offset-15 { + margin-left: 62.5%; + } + .el-col-xl-pull-15 { + position: relative; + right: 62.5%; + } + .el-col-xl-push-15 { + position: relative; + left: 62.5%; + } + .el-col-xl-16 { + width: 66.66667%; + } + .el-col-xl-offset-16 { + margin-left: 66.66667%; + } + .el-col-xl-pull-16 { + position: relative; + right: 66.66667%; + } + .el-col-xl-push-16 { + position: relative; + left: 66.66667%; + } + .el-col-xl-17 { + width: 70.83333%; + } + .el-col-xl-offset-17 { + margin-left: 70.83333%; + } + .el-col-xl-pull-17 { + position: relative; + right: 70.83333%; + } + .el-col-xl-push-17 { + position: relative; + left: 70.83333%; + } + .el-col-xl-18 { + width: 75%; + } + .el-col-xl-offset-18 { + margin-left: 75%; + } + .el-col-xl-pull-18 { + position: relative; + right: 75%; + } + .el-col-xl-push-18 { + position: relative; + left: 75%; + } + .el-col-xl-19 { + width: 79.16667%; + } + .el-col-xl-offset-19 { + margin-left: 79.16667%; + } + .el-col-xl-pull-19 { + position: relative; + right: 79.16667%; + } + .el-col-xl-push-19 { + position: relative; + left: 79.16667%; + } + .el-col-xl-20 { + width: 83.33333%; + } + .el-col-xl-offset-20 { + margin-left: 83.33333%; + } + .el-col-xl-pull-20 { + position: relative; + right: 83.33333%; + } + .el-col-xl-push-20 { + position: relative; + left: 83.33333%; + } + .el-col-xl-21 { + width: 87.5%; + } + .el-col-xl-offset-21 { + margin-left: 87.5%; + } + .el-col-xl-pull-21 { + position: relative; + right: 87.5%; + } + .el-col-xl-push-21 { + position: relative; + left: 87.5%; + } + .el-col-xl-22 { + width: 91.66667%; + } + .el-col-xl-offset-22 { + margin-left: 91.66667%; + } + .el-col-xl-pull-22 { + position: relative; + right: 91.66667%; + } + .el-col-xl-push-22 { + position: relative; + left: 91.66667%; + } + .el-col-xl-23 { + width: 95.83333%; + } + .el-col-xl-offset-23 { + margin-left: 95.83333%; + } + .el-col-xl-pull-23 { + position: relative; + right: 95.83333%; + } + .el-col-xl-push-23 { + position: relative; + left: 95.83333%; + } + .el-col-xl-24 { + width: 100%; + } + .el-col-xl-offset-24 { + margin-left: 100%; + } + .el-col-xl-pull-24 { + position: relative; + right: 100%; + } + .el-col-xl-push-24 { + position: relative; + left: 100%; + } } @-webkit-keyframes progress { - 0% { - background-position: 0 0; - } - 100% { - background-position: 32px 0; - } + 0% { + background-position: 0 0; + } + 100% { + background-position: 32px 0; + } } .el-upload { - display: inline-block; - text-align: center; - cursor: pointer; - outline: 0; + display: inline-block; + text-align: center; + cursor: pointer; + outline: 0; } .el-upload__input { - display: none; + display: none; } .el-upload__tip { - font-size: 12px; - color: #606266; - margin-top: 7px; + font-size: 12px; + color: #606266; + margin-top: 7px; } .el-upload iframe { - position: absolute; - z-index: -1; - top: 0; - left: 0; - opacity: 0; - filter: alpha(opacity=0); + position: absolute; + z-index: -1; + top: 0; + left: 0; + opacity: 0; + filter: alpha(opacity=0); } .el-upload--picture-card { - background-color: #fbfdff; - border: 1px dashed #c0ccda; - border-radius: 6px; - box-sizing: border-box; - width: 148px; - height: 148px; - line-height: 146px; - vertical-align: top; + background-color: #fbfdff; + border: 1px dashed #c0ccda; + border-radius: 6px; + box-sizing: border-box; + width: 148px; + height: 148px; + line-height: 146px; + vertical-align: top; } .el-upload--picture-card i { - font-size: 28px; - color: #8c939d; + font-size: 28px; + color: #8c939d; } .el-upload--picture-card:hover, .el-upload:focus { - border-color: #51c21a; - color: #51c21a; + border-color: #51c21a; + color: #51c21a; } .el-upload:focus .el-upload-dragger { - border-color: #51c21a; + border-color: #51c21a; } .el-upload-dragger { - background-color: #fff; - border: 1px dashed #d9d9d9; - border-radius: 6px; - box-sizing: border-box; - width: 360px; - height: 180px; - text-align: center; - position: relative; - overflow: hidden; + background-color: #fff; + border: 1px dashed #d9d9d9; + border-radius: 6px; + box-sizing: border-box; + width: 360px; + height: 180px; + text-align: center; + position: relative; + overflow: hidden; } .el-upload-dragger .el-icon-upload { - font-size: 67px; - color: #c0c4cc; - margin: 40px 0 16px; - line-height: 50px; + font-size: 67px; + color: #c0c4cc; + margin: 40px 0 16px; + line-height: 50px; } .el-upload-dragger + .el-upload__tip { - text-align: center; + text-align: center; } .el-upload-dragger ~ .el-upload__files { - border-top: 1px solid #dcdfe6; - margin-top: 7px; - padding-top: 5px; + border-top: 1px solid #dcdfe6; + margin-top: 7px; + padding-top: 5px; } .el-upload-dragger .el-upload__text { - color: #606266; - font-size: 14px; - text-align: center; + color: #606266; + font-size: 14px; + text-align: center; } .el-upload-dragger .el-upload__text em { - color: #51c21a; - font-style: normal; + color: #51c21a; + font-style: normal; } .el-upload-dragger:hover { - border-color: #51c21a; + border-color: #51c21a; } .el-upload-dragger.is-dragover { - background-color: rgba(32, 159, 255, 0.06); - border: 2px dashed #51c21a; + background-color: rgba(32, 159, 255, 0.06); + border: 2px dashed #51c21a; } .el-upload-list { - margin: 0; - padding: 0; - list-style: none; + margin: 0; + padding: 0; + list-style: none; } .el-upload-list__item { - -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); - font-size: 14px; - color: #606266; - line-height: 1.8; - margin-top: 5px; - position: relative; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 4px; - width: 100%; + -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); + transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); + font-size: 14px; + color: #606266; + line-height: 1.8; + margin-top: 5px; + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 4px; + width: 100%; } .el-upload-list__item .el-progress { - position: absolute; - top: 20px; - width: 100%; + position: absolute; + top: 20px; + width: 100%; } .el-upload-list__item .el-progress__text { - position: absolute; - right: 0; - top: -13px; + position: absolute; + right: 0; + top: -13px; } .el-upload-list__item .el-progress-bar { - margin-right: 0; - padding-right: 0; + margin-right: 0; + padding-right: 0; } .el-upload-list__item:first-child { - margin-top: 10px; + margin-top: 10px; } .el-upload-list__item .el-icon-upload-success { - color: #67c23a; + color: #67c23a; } .el-upload-list__item .el-icon-close { - display: none; - position: absolute; - top: 5px; - right: 5px; - cursor: pointer; - opacity: 0.75; - color: #606266; + display: none; + position: absolute; + top: 5px; + right: 5px; + cursor: pointer; + opacity: 0.75; + color: #606266; } .el-upload-list__item .el-icon-close:hover { - opacity: 1; + opacity: 1; } .el-upload-list__item .el-icon-close-tip { - display: none; - position: absolute; - top: 5px; - right: 5px; - font-size: 12px; - cursor: pointer; - opacity: 1; - color: #51c21a; + display: none; + position: absolute; + top: 5px; + right: 5px; + font-size: 12px; + cursor: pointer; + opacity: 1; + color: #51c21a; } .el-upload-list__item:hover { - background-color: #f5f7fa; + background-color: #f5f7fa; } .el-upload-list__item:hover .el-icon-close { - display: inline-block; + display: inline-block; } .el-upload-list__item:hover .el-progress__text { - display: none; + display: none; } .el-upload-list__item.is-success .el-upload-list__item-status-label { - display: block; + display: block; } .el-upload-list__item.is-success .el-upload-list__item-name:focus, .el-upload-list__item.is-success .el-upload-list__item-name:hover { - color: #51c21a; - cursor: pointer; + color: #51c21a; + cursor: pointer; } .el-upload-list__item.is-success:focus:not(:hover) .el-icon-close-tip { - display: inline-block; + display: inline-block; } .el-upload-list__item.is-success:active .el-icon-close-tip, .el-upload-list__item.is-success:focus .el-upload-list__item-status-label, .el-upload-list__item.is-success:hover .el-upload-list__item-status-label, .el-upload-list__item.is-success:not(.focusing):focus .el-icon-close-tip { - display: none; + display: none; } -.el-upload-list.is-disabled - .el-upload-list__item:hover - .el-upload-list__item-status-label { - display: block; +.el-upload-list.is-disabled .el-upload-list__item:hover .el-upload-list__item-status-label { + display: block; } .el-upload-list__item-name { - color: #606266; - display: block; - margin-right: 40px; - overflow: hidden; - padding-left: 4px; - text-overflow: ellipsis; - -webkit-transition: color 0.3s; - transition: color 0.3s; - white-space: nowrap; + color: #606266; + display: block; + margin-right: 40px; + overflow: hidden; + padding-left: 4px; + text-overflow: ellipsis; + -webkit-transition: color 0.3s; + transition: color 0.3s; + white-space: nowrap; } .el-upload-list__item-name [class^="el-icon"] { - height: 100%; - margin-right: 7px; - color: #909399; - line-height: inherit; + height: 100%; + margin-right: 7px; + color: #909399; + line-height: inherit; } .el-upload-list__item-status-label { - position: absolute; - right: 5px; - top: 0; - line-height: inherit; - display: none; + position: absolute; + right: 5px; + top: 0; + line-height: inherit; + display: none; } .el-upload-list__item-delete { - position: absolute; - right: 10px; - top: 0; - font-size: 12px; - color: #606266; - display: none; + position: absolute; + right: 10px; + top: 0; + font-size: 12px; + color: #606266; + display: none; } .el-upload-list__item-delete:hover { - color: #51c21a; + color: #51c21a; } .el-upload-list--picture-card { - margin: 0; - display: inline; - vertical-align: top; + margin: 0; + display: inline; + vertical-align: top; } .el-upload-list--picture-card .el-upload-list__item { - overflow: hidden; - background-color: #fff; - border: 1px solid #c0ccda; - border-radius: 6px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 148px; - height: 148px; - margin: 0 8px 8px 0; - display: inline-block; + overflow: hidden; + background-color: #fff; + border: 1px solid #c0ccda; + border-radius: 6px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 148px; + height: 148px; + margin: 0 8px 8px 0; + display: inline-block; } .el-upload-list--picture-card .el-upload-list__item .el-icon-check, .el-upload-list--picture-card .el-upload-list__item .el-icon-circle-check { - color: #fff; + color: #fff; } .el-upload-list--picture-card .el-upload-list__item .el-icon-close, -.el-upload-list--picture-card - .el-upload-list__item:hover - .el-upload-list__item-status-label { - display: none; +.el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label { + display: none; } .el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text { - display: block; + display: block; } .el-upload-list--picture-card .el-upload-list__item-name { - display: none; + display: none; } .el-upload-list--picture-card .el-upload-list__item-thumbnail { - width: 100%; - height: 100%; + width: 100%; + height: 100%; } .el-upload-list--picture-card .el-upload-list__item-status-label { - position: absolute; - right: -15px; - top: -6px; - width: 40px; - height: 24px; - background: #13ce66; - text-align: center; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + position: absolute; + right: -15px; + top: -6px; + width: 40px; + height: 24px; + background: #13ce66; + text-align: center; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); } .el-upload-list--picture-card .el-upload-list__item-status-label i { - font-size: 12px; - margin-top: 11px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); + font-size: 12px; + margin-top: 11px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); } .el-upload-list--picture-card .el-upload-list__item-actions { - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - cursor: default; - text-align: center; - color: #fff; - opacity: 0; - font-size: 20px; - background-color: rgba(0, 0, 0, 0.5); - -webkit-transition: opacity 0.3s; - transition: opacity 0.3s; + position: absolute; + width: 100%; + height: 100%; + left: 0; + top: 0; + cursor: default; + text-align: center; + color: #fff; + opacity: 0; + font-size: 20px; + background-color: rgba(0, 0, 0, 0.5); + -webkit-transition: opacity 0.3s; + transition: opacity 0.3s; } .el-upload-list--picture-card .el-upload-list__item-actions::after { - display: inline-block; - content: ""; - height: 100%; - vertical-align: middle; + display: inline-block; + content: ""; + height: 100%; + vertical-align: middle; } .el-upload-list--picture-card .el-upload-list__item-actions span { - display: none; - cursor: pointer; + display: none; + cursor: pointer; } .el-upload-list--picture-card .el-upload-list__item-actions span + span { - margin-left: 15px; + margin-left: 15px; } -.el-upload-list--picture-card - .el-upload-list__item-actions - .el-upload-list__item-delete { - position: static; - font-size: inherit; - color: inherit; +.el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete { + position: static; + font-size: inherit; + color: inherit; } .el-upload-list--picture-card .el-upload-list__item-actions:hover { - opacity: 1; + opacity: 1; } .el-upload-list--picture-card .el-upload-list__item-actions:hover span { - display: inline-block; + display: inline-block; } .el-upload-list--picture-card .el-progress { - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - bottom: auto; - width: 126px; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + bottom: auto; + width: 126px; } .el-upload-list--picture-card .el-progress .el-progress__text { - top: 50%; + top: 50%; } .el-upload-list--picture .el-upload-list__item { - overflow: hidden; - z-index: 0; - background-color: #fff; - border: 1px solid #c0ccda; - border-radius: 6px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin-top: 10px; - padding: 10px 10px 10px 90px; - height: 92px; + overflow: hidden; + z-index: 0; + background-color: #fff; + border: 1px solid #c0ccda; + border-radius: 6px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin-top: 10px; + padding: 10px 10px 10px 90px; + height: 92px; } .el-upload-list--picture .el-upload-list__item .el-icon-check, .el-upload-list--picture .el-upload-list__item .el-icon-circle-check { - color: #fff; + color: #fff; } -.el-upload-list--picture - .el-upload-list__item:hover - .el-upload-list__item-status-label { - background: 0 0; - -webkit-box-shadow: none; - box-shadow: none; - top: -2px; - right: -12px; +.el-upload-list--picture .el-upload-list__item:hover .el-upload-list__item-status-label { + background: 0 0; + -webkit-box-shadow: none; + box-shadow: none; + top: -2px; + right: -12px; } .el-upload-list--picture .el-upload-list__item:hover .el-progress__text { - display: block; + display: block; } -.el-upload-list--picture - .el-upload-list__item.is-success - .el-upload-list__item-name { - line-height: 70px; - margin-top: 0; +.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name { + line-height: 70px; + margin-top: 0; } -.el-upload-list--picture - .el-upload-list__item.is-success - .el-upload-list__item-name - i { - display: none; +.el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i { + display: none; } .el-upload-list--picture .el-upload-list__item-thumbnail { - vertical-align: middle; - display: inline-block; - width: 70px; - height: 70px; - float: left; - position: relative; - z-index: 1; - margin-left: -80px; - background-color: #fff; + vertical-align: middle; + display: inline-block; + width: 70px; + height: 70px; + float: left; + position: relative; + z-index: 1; + margin-left: -80px; + background-color: #fff; } .el-upload-list--picture .el-upload-list__item-name { - display: block; - margin-top: 20px; + display: block; + margin-top: 20px; } .el-upload-list--picture .el-upload-list__item-name i { - font-size: 70px; - line-height: 1; - position: absolute; - left: 9px; - top: 10px; + font-size: 70px; + line-height: 1; + position: absolute; + left: 9px; + top: 10px; } .el-upload-list--picture .el-upload-list__item-status-label { - position: absolute; - right: -17px; - top: -7px; - width: 46px; - height: 26px; - background: #13ce66; - text-align: center; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 1px 1px #ccc; - box-shadow: 0 1px 1px #ccc; + position: absolute; + right: -17px; + top: -7px; + width: 46px; + height: 26px; + background: #13ce66; + text-align: center; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 1px 1px #ccc; + box-shadow: 0 1px 1px #ccc; } .el-upload-list--picture .el-upload-list__item-status-label i { - font-size: 12px; - margin-top: 12px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); + font-size: 12px; + margin-top: 12px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); } .el-upload-list--picture .el-progress { - position: relative; - top: -7px; + position: relative; + top: -7px; } .el-upload-cover { - position: absolute; - left: 0; - top: 0; - width: 100%; - height: 100%; - overflow: hidden; - z-index: 10; - cursor: default; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: hidden; + z-index: 10; + cursor: default; } .el-upload-cover::after { - display: inline-block; - height: 100%; - vertical-align: middle; + display: inline-block; + height: 100%; + vertical-align: middle; } .el-upload-cover img { - display: block; - width: 100%; - height: 100%; + display: block; + width: 100%; + height: 100%; } .el-upload-cover__label { - position: absolute; - right: -15px; - top: -6px; - width: 40px; - height: 24px; - background: #13ce66; - text-align: center; - -webkit-transform: rotate(45deg); - transform: rotate(45deg); - -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); - box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + position: absolute; + right: -15px; + top: -6px; + width: 40px; + height: 24px; + background: #13ce66; + text-align: center; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + -webkit-box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); + box-shadow: 0 0 1pc 1px rgba(0, 0, 0, 0.2); } .el-upload-cover__label i { - font-size: 12px; - margin-top: 11px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - color: #fff; + font-size: 12px; + margin-top: 11px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + color: #fff; } .el-upload-cover__progress { - display: inline-block; - vertical-align: middle; - position: static; - width: 243px; + display: inline-block; + vertical-align: middle; + position: static; + width: 243px; } .el-upload-cover__progress + .el-upload__inner { - opacity: 0; + opacity: 0; } .el-upload-cover__content { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } .el-upload-cover__interact { - position: absolute; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - background-color: rgba(0, 0, 0, 0.72); - text-align: center; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.72); + text-align: center; } .el-upload-cover__interact .btn { - display: inline-block; - color: #fff; - font-size: 14px; - cursor: pointer; - vertical-align: middle; - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - margin-top: 60px; + display: inline-block; + color: #fff; + font-size: 14px; + cursor: pointer; + vertical-align: middle; + -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), + -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); + transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), + -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); + transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), + opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); + transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), + opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), + -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); + margin-top: 60px; } .el-upload-cover__interact .btn span { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; + opacity: 0; + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } .el-upload-cover__interact .btn:not(:first-child) { - margin-left: 35px; + margin-left: 35px; } .el-upload-cover__interact .btn:hover { - -webkit-transform: translateY(-13px); - transform: translateY(-13px); + -webkit-transform: translateY(-13px); + transform: translateY(-13px); } .el-upload-cover__interact .btn:hover span { - opacity: 1; + opacity: 1; } .el-upload-cover__interact .btn i { - color: #fff; - display: block; - font-size: 24px; - line-height: inherit; - margin: 0 auto 5px; + color: #fff; + display: block; + font-size: 24px; + line-height: inherit; + margin: 0 auto 5px; } .el-upload-cover__title { - position: absolute; - bottom: 0; - left: 0; - background-color: #fff; - height: 36px; - width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - font-weight: 400; - text-align: left; - padding: 0 10px; - margin: 0; - line-height: 36px; - font-size: 14px; - color: #303133; + position: absolute; + bottom: 0; + left: 0; + background-color: #fff; + height: 36px; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + font-weight: 400; + text-align: left; + padding: 0 10px; + margin: 0; + line-height: 36px; + font-size: 14px; + color: #303133; } .el-upload-cover + .el-upload__inner { - opacity: 0; - position: relative; - z-index: 1; + opacity: 0; + position: relative; + z-index: 1; } .el-progress { - position: relative; - line-height: 1; + position: relative; + line-height: 1; } .el-progress__text { - font-size: 14px; - color: #606266; - display: inline-block; - vertical-align: middle; - margin-left: 10px; - line-height: 1; + font-size: 14px; + color: #606266; + display: inline-block; + vertical-align: middle; + margin-left: 10px; + line-height: 1; } .el-progress__text i { - vertical-align: middle; - display: block; + vertical-align: middle; + display: block; } .el-progress--circle, .el-progress--dashboard { - display: inline-block; + display: inline-block; } .el-progress--circle .el-progress__text, .el-progress--dashboard .el-progress__text { - position: absolute; - top: 50%; - left: 0; - width: 100%; - text-align: center; - margin: 0; - -webkit-transform: translate(0, -50%); - transform: translate(0, -50%); + position: absolute; + top: 50%; + left: 0; + width: 100%; + text-align: center; + margin: 0; + -webkit-transform: translate(0, -50%); + transform: translate(0, -50%); } .el-progress--circle .el-progress__text i, .el-progress--dashboard .el-progress__text i { - vertical-align: middle; - display: inline-block; + vertical-align: middle; + display: inline-block; } .el-progress--without-text .el-progress__text { - display: none; + display: none; } .el-progress--without-text .el-progress-bar { - padding-right: 0; - margin-right: 0; - display: block; + padding-right: 0; + margin-right: 0; + display: block; } .el-progress-bar, .el-progress-bar__inner::after, .el-progress-bar__innerText, .el-spinner { - display: inline-block; - vertical-align: middle; + display: inline-block; + vertical-align: middle; } .el-progress--text-inside .el-progress-bar { - padding-right: 0; - margin-right: 0; + padding-right: 0; + margin-right: 0; } .el-progress.is-success .el-progress-bar__inner { - background-color: #67c23a; + background-color: #67c23a; } .el-progress.is-success .el-progress__text { - color: #67c23a; + color: #67c23a; } .el-progress.is-warning .el-progress-bar__inner { - background-color: #e6a23c; + background-color: #e6a23c; } .el-progress.is-warning .el-progress__text { - color: #e6a23c; + color: #e6a23c; } .el-progress.is-exception .el-progress-bar__inner { - background-color: #f56c6c; + background-color: #f56c6c; } .el-progress.is-exception .el-progress__text { - color: #f56c6c; + color: #f56c6c; } .el-progress-bar { - padding-right: 50px; - width: 100%; - margin-right: -55px; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding-right: 50px; + width: 100%; + margin-right: -55px; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-progress-bar__outer { - height: 6px; - border-radius: 100px; - background-color: #ebeef5; - overflow: hidden; - position: relative; - vertical-align: middle; + height: 6px; + border-radius: 100px; + background-color: #ebeef5; + overflow: hidden; + position: relative; + vertical-align: middle; } .el-progress-bar__inner { - position: absolute; - left: 0; - top: 0; - height: 100%; - background-color: #51c21a; - text-align: right; - border-radius: 100px; - line-height: 1; - white-space: nowrap; - -webkit-transition: width 0.6s ease; - transition: width 0.6s ease; + position: absolute; + left: 0; + top: 0; + height: 100%; + background-color: #51c21a; + text-align: right; + border-radius: 100px; + line-height: 1; + white-space: nowrap; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; } .el-card, .el-message { - border-radius: 4px; - overflow: hidden; + border-radius: 4px; + overflow: hidden; } .el-progress-bar__inner::after { - height: 100%; + height: 100%; } .el-progress-bar__innerText { - color: #fff; - font-size: 12px; - margin: 0 5px; + color: #fff; + font-size: 12px; + margin: 0 5px; } @keyframes progress { - 0% { - background-position: 0 0; - } - 100% { - background-position: 32px 0; - } + 0% { + background-position: 0 0; + } + 100% { + background-position: 32px 0; + } } .el-time-spinner { - width: 100%; - white-space: nowrap; + width: 100%; + white-space: nowrap; } .el-spinner-inner { - -webkit-animation: rotate 2s linear infinite; - animation: rotate 2s linear infinite; - width: 50px; - height: 50px; + -webkit-animation: rotate 2s linear infinite; + animation: rotate 2s linear infinite; + width: 50px; + height: 50px; } .el-spinner-inner .path { - stroke: #ececec; - stroke-linecap: round; - -webkit-animation: dash 1.5s ease-in-out infinite; - animation: dash 1.5s ease-in-out infinite; + stroke: #ececec; + stroke-linecap: round; + -webkit-animation: dash 1.5s ease-in-out infinite; + animation: dash 1.5s ease-in-out infinite; } @-webkit-keyframes rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @keyframes rotate { - 100% { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } } @-webkit-keyframes dash { - 0% { - stroke-dasharray: 1, 150; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -124; - } + 0% { + stroke-dasharray: 1, 150; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -35; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -124; + } } @keyframes dash { - 0% { - stroke-dasharray: 1, 150; - stroke-dashoffset: 0; - } - 50% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -35; - } - 100% { - stroke-dasharray: 90, 150; - stroke-dashoffset: -124; - } + 0% { + stroke-dasharray: 1, 150; + stroke-dashoffset: 0; + } + 50% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -35; + } + 100% { + stroke-dasharray: 90, 150; + stroke-dashoffset: -124; + } } .el-message { - min-width: 380px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-width: 1px; - border-style: solid; - border-color: #ebeef5; - position: fixed; - left: 50%; - top: 20px; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - background-color: #edf2fc; - -webkit-transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; - transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; - transition: opacity 0.3s, transform 0.4s, top 0.4s; - transition: opacity 0.3s, transform 0.4s, top 0.4s, -webkit-transform 0.4s; - padding: 15px 15px 15px 20px; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + min-width: 380px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-width: 1px; + border-style: solid; + border-color: #ebeef5; + position: fixed; + left: 50%; + top: 20px; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + background-color: #edf2fc; + -webkit-transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; + transition: opacity 0.3s, top 0.4s, -webkit-transform 0.4s; + transition: opacity 0.3s, transform 0.4s, top 0.4s; + transition: opacity 0.3s, transform 0.4s, top 0.4s, -webkit-transform 0.4s; + padding: 15px 15px 15px 20px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-message.is-center { - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-message.is-closable .el-message__content { - padding-right: 16px; + padding-right: 16px; } .el-message p { - margin: 0; + margin: 0; } .el-message--info .el-message__content { - color: #909399; + color: #909399; } .el-message--success { - background-color: #f0f9eb; - border-color: #e1f3d8; + background-color: #f0f9eb; + border-color: #e1f3d8; } .el-message--success .el-message__content { - color: #67c23a; + color: #67c23a; } .el-message--warning { - background-color: #fdf6ec; - border-color: #faecd8; + background-color: #fdf6ec; + border-color: #faecd8; } .el-message--warning .el-message__content { - color: #e6a23c; + color: #e6a23c; } .el-message--error { - background-color: #fef0f0; - border-color: #fde2e2; + background-color: #fef0f0; + border-color: #fde2e2; } .el-message--error .el-message__content { - color: #f56c6c; + color: #f56c6c; } .el-message__icon { - margin-right: 10px; + margin-right: 10px; } .el-message__content { - padding: 0; - font-size: 14px; - line-height: 1; + padding: 0; + font-size: 14px; + line-height: 1; } .el-message__closeBtn { - position: absolute; - top: 50%; - right: 15px; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - cursor: pointer; - color: #c0c4cc; - font-size: 16px; + position: absolute; + top: 50%; + right: 15px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + cursor: pointer; + color: #c0c4cc; + font-size: 16px; } .el-message__closeBtn:hover { - color: #909399; + color: #909399; } .el-message .el-icon-success { - color: #67c23a; + color: #67c23a; } .el-message .el-icon-error { - color: #f56c6c; + color: #f56c6c; } .el-message .el-icon-info { - color: #909399; + color: #909399; } .el-message .el-icon-warning { - color: #e6a23c; + color: #e6a23c; } .el-message-fade-enter, .el-message-fade-leave-active { - opacity: 0; - -webkit-transform: translate(-50%, -100%); - transform: translate(-50%, -100%); + opacity: 0; + -webkit-transform: translate(-50%, -100%); + transform: translate(-50%, -100%); } .el-badge { - position: relative; - vertical-align: middle; - display: inline-block; + position: relative; + vertical-align: middle; + display: inline-block; } .el-badge__content { - background-color: #f56c6c; - border-radius: 10px; - color: #fff; - display: inline-block; - font-size: 12px; - height: 18px; - line-height: 18px; - padding: 0 6px; - text-align: center; - white-space: nowrap; - border: 1px solid #fff; + background-color: #f56c6c; + border-radius: 10px; + color: #fff; + display: inline-block; + font-size: 12px; + height: 18px; + line-height: 18px; + padding: 0 6px; + text-align: center; + white-space: nowrap; + border: 1px solid #fff; } .el-badge__content.is-fixed { - position: absolute; - top: 0; - right: 10px; - -webkit-transform: translateY(-50%) translateX(100%); - transform: translateY(-50%) translateX(100%); + position: absolute; + top: 0; + right: 10px; + -webkit-transform: translateY(-50%) translateX(100%); + transform: translateY(-50%) translateX(100%); } .el-rate__icon, .el-rate__item { - position: relative; - display: inline-block; + position: relative; + display: inline-block; } .el-badge__content.is-fixed.is-dot { - right: 5px; + right: 5px; } .el-badge__content.is-dot { - height: 8px; - width: 8px; - padding: 0; - right: 0; - border-radius: 50%; + height: 8px; + width: 8px; + padding: 0; + right: 0; + border-radius: 50%; } .el-badge__content--primary { - background-color: #51c21a; + background-color: #51c21a; } .el-badge__content--success { - background-color: #67c23a; + background-color: #67c23a; } .el-badge__content--warning { - background-color: #e6a23c; + background-color: #e6a23c; } .el-badge__content--info { - background-color: #909399; + background-color: #909399; } .el-badge__content--danger { - background-color: #f56c6c; + background-color: #f56c6c; } .el-card { - border: 1px solid #ebeef5; - background-color: #fff; - color: #303133; - -webkit-transition: 0.3s; - transition: 0.3s; + border: 1px solid #ebeef5; + background-color: #fff; + color: #303133; + -webkit-transition: 0.3s; + transition: 0.3s; } .el-card.is-always-shadow, .el-card.is-hover-shadow:focus, .el-card.is-hover-shadow:hover { - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-card__header { - padding: 18px 20px; - border-bottom: 1px solid #ebeef5; - -webkit-box-sizing: border-box; - box-sizing: border-box; + padding: 18px 20px; + border-bottom: 1px solid #ebeef5; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-card__body { - padding: 20px; + padding: 20px; } .el-rate { - height: 20px; - line-height: 1; + height: 20px; + line-height: 1; } .el-rate__item { - font-size: 0; - vertical-align: middle; + font-size: 0; + vertical-align: middle; } .el-rate__icon { - font-size: 18px; - margin-right: 6px; - color: #c0c4cc; - -webkit-transition: 0.3s; - transition: 0.3s; + font-size: 18px; + margin-right: 6px; + color: #c0c4cc; + -webkit-transition: 0.3s; + transition: 0.3s; } .el-rate__decimal, .el-rate__icon .path2 { - position: absolute; - top: 0; - left: 0; + position: absolute; + top: 0; + left: 0; } .el-rate__icon.hover { - -webkit-transform: scale(1.15); - transform: scale(1.15); + -webkit-transform: scale(1.15); + transform: scale(1.15); } .el-rate__decimal { - display: inline-block; - overflow: hidden; + display: inline-block; + overflow: hidden; } .el-step.is-vertical, .el-steps { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-rate__text { - font-size: 14px; - vertical-align: middle; + font-size: 14px; + vertical-align: middle; } .el-steps { - display: flex; + display: flex; } .el-steps--simple { - padding: 13px 8%; - border-radius: 4px; - background: #f5f7fa; + padding: 13px 8%; + border-radius: 4px; + background: #f5f7fa; } .el-steps--horizontal { - white-space: nowrap; + white-space: nowrap; } .el-steps--vertical { - height: 100%; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-flow: column; - flex-flow: column; + height: 100%; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-flow: column; + flex-flow: column; } .el-step { - position: relative; - -ms-flex-negative: 1; - flex-shrink: 1; + position: relative; + -ms-flex-negative: 1; + flex-shrink: 1; } .el-step:last-of-type .el-step__line { - display: none; + display: none; } .el-step:last-of-type.is-flex { - -ms-flex-preferred-size: auto !important; - flex-basis: auto !important; - -ms-flex-negative: 0; - flex-shrink: 0; - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; + -ms-flex-preferred-size: auto !important; + flex-basis: auto !important; + -ms-flex-negative: 0; + flex-shrink: 0; + -webkit-box-flex: 0; + -ms-flex-positive: 0; + flex-grow: 0; } .el-step:last-of-type .el-step__description, .el-step:last-of-type .el-step__main { - padding-right: 0; + padding-right: 0; } .el-step__head { - position: relative; - width: 100%; + position: relative; + width: 100%; } .el-step__head.is-process { - color: #303133; - border-color: #303133; + color: #303133; + border-color: #303133; } .el-step__head.is-wait { - color: #c0c4cc; - border-color: #c0c4cc; + color: #c0c4cc; + border-color: #c0c4cc; } .el-step__head.is-success { - color: #67c23a; - border-color: #67c23a; + color: #67c23a; + border-color: #67c23a; } .el-step__head.is-error { - color: #f56c6c; - border-color: #f56c6c; + color: #f56c6c; + border-color: #f56c6c; } .el-step__head.is-finish { - color: #51c21a; - border-color: #51c21a; + color: #51c21a; + border-color: #51c21a; } .el-step__icon { - position: relative; - z-index: 1; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - width: 24px; - height: 24px; - font-size: 14px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - background: #fff; - -webkit-transition: 0.15s ease-out; - transition: 0.15s ease-out; + position: relative; + z-index: 1; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + width: 24px; + height: 24px; + font-size: 14px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + background: #fff; + -webkit-transition: 0.15s ease-out; + transition: 0.15s ease-out; } .el-step__icon.is-text { - border-radius: 50%; - border: 2px solid; - border-color: inherit; + border-radius: 50%; + border: 2px solid; + border-color: inherit; } .el-step__icon.is-icon { - width: 40px; + width: 40px; } .el-step__icon-inner { - display: inline-block; - user-select: none; - text-align: center; - font-weight: 700; - line-height: 1; - color: inherit; + display: inline-block; + user-select: none; + text-align: center; + font-weight: 700; + line-height: 1; + color: inherit; } .el-step__icon-inner[class*="el-icon"]:not(.is-status) { - font-size: 25px; - font-weight: 400; + font-size: 25px; + font-weight: 400; } .el-step__icon-inner.is-status { - -webkit-transform: translateY(1px); - transform: translateY(1px); + -webkit-transform: translateY(1px); + transform: translateY(1px); } .el-step__line { - position: absolute; - border-color: inherit; - background-color: #c0c4cc; + position: absolute; + border-color: inherit; + background-color: #c0c4cc; } .el-step__line-inner { - display: block; - border-width: 1px; - border-style: solid; - border-color: inherit; - -webkit-transition: 0.15s ease-out; - transition: 0.15s ease-out; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 0; - height: 0; + display: block; + border-width: 1px; + border-style: solid; + border-color: inherit; + -webkit-transition: 0.15s ease-out; + transition: 0.15s ease-out; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 0; + height: 0; } .el-step__main { - white-space: normal; - text-align: left; + white-space: normal; + text-align: left; } .el-step__title { - font-size: 16px; - line-height: 38px; + font-size: 16px; + line-height: 38px; } .el-step__title.is-process { - font-weight: 700; - color: #303133; + font-weight: 700; + color: #303133; } .el-step__title.is-wait { - color: #c0c4cc; + color: #c0c4cc; } .el-step__title.is-success { - color: #67c23a; + color: #67c23a; } .el-step__title.is-error { - color: #f56c6c; + color: #f56c6c; } .el-step__title.is-finish { - color: #51c21a; + color: #51c21a; } .el-step__description { - padding-right: 10%; - margin-top: -5px; - font-size: 12px; - line-height: 20px; - font-weight: 400; + padding-right: 10%; + margin-top: -5px; + font-size: 12px; + line-height: 20px; + font-weight: 400; } .el-step__description.is-process { - color: #303133; + color: #303133; } .el-step__description.is-wait { - color: #c0c4cc; + color: #c0c4cc; } .el-step__description.is-success { - color: #67c23a; + color: #67c23a; } .el-step__description.is-error { - color: #f56c6c; + color: #f56c6c; } .el-step__description.is-finish { - color: #51c21a; + color: #51c21a; } .el-step.is-horizontal { - display: inline-block; + display: inline-block; } .el-step.is-horizontal .el-step__line { - height: 2px; - top: 11px; - left: 0; - right: 0; + height: 2px; + top: 11px; + left: 0; + right: 0; } .el-step.is-vertical { - display: flex; + display: flex; } .el-step.is-vertical .el-step__head { - -webkit-box-flex: 0; - -ms-flex-positive: 0; - flex-grow: 0; - width: 24px; + -webkit-box-flex: 0; + -ms-flex-positive: 0; + flex-grow: 0; + width: 24px; } .el-step.is-vertical .el-step__main { - padding-left: 10px; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; + padding-left: 10px; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } .el-step.is-vertical .el-step__title { - line-height: 24px; - padding-bottom: 8px; + line-height: 24px; + padding-bottom: 8px; } .el-step.is-vertical .el-step__line { - width: 2px; - top: 0; - bottom: 0; - left: 11px; + width: 2px; + top: 0; + bottom: 0; + left: 11px; } .el-step.is-vertical .el-step__icon.is-icon { - width: 24px; + width: 24px; } .el-step.is-center .el-step__head, .el-step.is-center .el-step__main { - text-align: center; + text-align: center; } .el-step.is-center .el-step__description { - padding-left: 20%; - padding-right: 20%; + padding-left: 20%; + padding-right: 20%; } .el-step.is-center .el-step__line { - left: 50%; - right: -50%; + left: 50%; + right: -50%; } .el-step.is-simple { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-step.is-simple .el-step__head { - width: auto; - font-size: 0; - padding-right: 10px; + width: auto; + font-size: 0; + padding-right: 10px; } .el-step.is-simple .el-step__icon { - background: 0 0; - width: 16px; - height: 16px; - font-size: 12px; + background: 0 0; + width: 16px; + height: 16px; + font-size: 12px; } .el-step.is-simple .el-step__icon-inner[class*="el-icon"]:not(.is-status) { - font-size: 18px; + font-size: 18px; } .el-step.is-simple .el-step__icon-inner.is-status { - -webkit-transform: scale(0.8) translateY(1px); - transform: scale(0.8) translateY(1px); + -webkit-transform: scale(0.8) translateY(1px); + transform: scale(0.8) translateY(1px); } .el-step.is-simple .el-step__main { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: stretch; - -ms-flex-align: stretch; - align-items: stretch; - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } .el-step.is-simple .el-step__title { - font-size: 16px; - line-height: 20px; + font-size: 16px; + line-height: 20px; } .el-step.is-simple:not(:last-of-type) .el-step__title { - max-width: 50%; - word-break: break-all; + max-width: 50%; + word-break: break-all; } .el-step.is-simple .el-step__arrow { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } .el-step.is-simple .el-step__arrow::after, .el-step.is-simple .el-step__arrow::before { - content: ""; - display: inline-block; - position: absolute; - height: 15px; - width: 1px; - background: #c0c4cc; + content: ""; + display: inline-block; + position: absolute; + height: 15px; + width: 1px; + background: #c0c4cc; } .el-step.is-simple .el-step__arrow::before { - -webkit-transform: rotate(-45deg) translateY(-4px); - transform: rotate(-45deg) translateY(-4px); - -webkit-transform-origin: 0 0; - transform-origin: 0 0; + -webkit-transform: rotate(-45deg) translateY(-4px); + transform: rotate(-45deg) translateY(-4px); + -webkit-transform-origin: 0 0; + transform-origin: 0 0; } .el-step.is-simple .el-step__arrow::after { - -webkit-transform: rotate(45deg) translateY(4px); - transform: rotate(45deg) translateY(4px); - -webkit-transform-origin: 100% 100%; - transform-origin: 100% 100%; + -webkit-transform: rotate(45deg) translateY(4px); + transform: rotate(45deg) translateY(4px); + -webkit-transform-origin: 100% 100%; + transform-origin: 100% 100%; } .el-step.is-simple:last-of-type .el-step__arrow { - display: none; + display: none; } .el-carousel { - position: relative; + position: relative; } .el-carousel--horizontal { - overflow-x: hidden; + overflow-x: hidden; } .el-carousel--vertical { - overflow-y: hidden; + overflow-y: hidden; } .el-carousel__container { - position: relative; - height: 300px; + position: relative; + height: 300px; } .el-carousel__arrow { - border: none; - outline: 0; - padding: 0; - margin: 0; - height: 36px; - width: 36px; - cursor: pointer; - -webkit-transition: 0.3s; - transition: 0.3s; - border-radius: 50%; - background-color: rgba(31, 45, 61, 0.11); - color: #fff; - position: absolute; - top: 50%; - z-index: 10; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - text-align: center; - font-size: 12px; + border: none; + outline: 0; + padding: 0; + margin: 0; + height: 36px; + width: 36px; + cursor: pointer; + -webkit-transition: 0.3s; + transition: 0.3s; + border-radius: 50%; + background-color: rgba(31, 45, 61, 0.11); + color: #fff; + position: absolute; + top: 50%; + z-index: 10; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + text-align: center; + font-size: 12px; } .el-carousel__arrow--left { - left: 16px; + left: 16px; } .el-carousel__arrow--right { - right: 16px; + right: 16px; } .el-carousel__arrow:hover { - background-color: rgba(31, 45, 61, 0.23); + background-color: rgba(31, 45, 61, 0.23); } .el-carousel__arrow i { - cursor: pointer; + cursor: pointer; } .el-carousel__indicators { - position: absolute; - list-style: none; - margin: 0; - padding: 0; - z-index: 2; + position: absolute; + list-style: none; + margin: 0; + padding: 0; + z-index: 2; } .el-carousel__indicators--horizontal { - bottom: 0; - left: 50%; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); + bottom: 0; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); } .el-carousel__indicators--vertical { - right: 0; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); + right: 0; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } .el-carousel__indicators--outside { - bottom: 26px; - text-align: center; - position: static; - -webkit-transform: none; - transform: none; + bottom: 26px; + text-align: center; + position: static; + -webkit-transform: none; + transform: none; } .el-carousel__indicators--outside .el-carousel__indicator:hover button { - opacity: 0.64; + opacity: 0.64; } .el-carousel__indicators--outside button { - background-color: #c0c4cc; - opacity: 0.24; + background-color: #c0c4cc; + opacity: 0.24; } .el-carousel__indicators--labels { - left: 0; - right: 0; - -webkit-transform: none; - transform: none; - text-align: center; + left: 0; + right: 0; + -webkit-transform: none; + transform: none; + text-align: center; } .el-carousel__indicators--labels .el-carousel__button { - height: auto; - width: auto; - padding: 2px 18px; - font-size: 12px; + height: auto; + width: auto; + padding: 2px 18px; + font-size: 12px; } .el-carousel__indicators--labels .el-carousel__indicator { - padding: 6px 4px; + padding: 6px 4px; } .el-carousel__indicator { - background-color: transparent; - cursor: pointer; + background-color: transparent; + cursor: pointer; } .el-carousel__indicator:hover button { - opacity: 0.72; + opacity: 0.72; } .el-carousel__indicator--horizontal { - display: inline-block; - padding: 12px 4px; + display: inline-block; + padding: 12px 4px; } .el-carousel__indicator--vertical { - padding: 4px 12px; + padding: 4px 12px; } .el-carousel__indicator--vertical .el-carousel__button { - width: 2px; - height: 15px; + width: 2px; + height: 15px; } .el-carousel__indicator.is-active button { - opacity: 1; + opacity: 1; } .el-carousel__button { - display: block; - opacity: 0.48; - width: 30px; - height: 2px; - background-color: #fff; - border: none; - outline: 0; - padding: 0; - margin: 0; - cursor: pointer; - -webkit-transition: 0.3s; - transition: 0.3s; + display: block; + opacity: 0.48; + width: 30px; + height: 2px; + background-color: #fff; + border: none; + outline: 0; + padding: 0; + margin: 0; + cursor: pointer; + -webkit-transition: 0.3s; + transition: 0.3s; } .el-carousel__item, .el-carousel__mask { - height: 100%; - top: 0; - left: 0; - position: absolute; + height: 100%; + top: 0; + left: 0; + position: absolute; } .carousel-arrow-left-enter, .carousel-arrow-left-leave-active { - -webkit-transform: translateY(-50%) translateX(-10px); - transform: translateY(-50%) translateX(-10px); - opacity: 0; + -webkit-transform: translateY(-50%) translateX(-10px); + transform: translateY(-50%) translateX(-10px); + opacity: 0; } .carousel-arrow-right-enter, .carousel-arrow-right-leave-active { - -webkit-transform: translateY(-50%) translateX(10px); - transform: translateY(-50%) translateX(10px); - opacity: 0; + -webkit-transform: translateY(-50%) translateX(10px); + transform: translateY(-50%) translateX(10px); + opacity: 0; } .el-carousel__item { - width: 100%; - display: inline-block; - overflow: hidden; - z-index: 0; + width: 100%; + display: inline-block; + overflow: hidden; + z-index: 0; } .el-carousel__item.is-active { - z-index: 2; + z-index: 2; } .el-carousel__item.is-animating { - -webkit-transition: -webkit-transform 0.4s ease-in-out; - transition: -webkit-transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; + -webkit-transition: -webkit-transform 0.4s ease-in-out; + transition: -webkit-transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; } .el-carousel__item--card { - width: 50%; - -webkit-transition: -webkit-transform 0.4s ease-in-out; - transition: -webkit-transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out; - transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; + width: 50%; + -webkit-transition: -webkit-transform 0.4s ease-in-out; + transition: -webkit-transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out; + transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; } .el-carousel__item--card.is-in-stage { - cursor: pointer; - z-index: 1; + cursor: pointer; + z-index: 1; } .el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask, .el-carousel__item--card.is-in-stage:hover .el-carousel__mask { - opacity: 0.12; + opacity: 0.12; } .el-carousel__item--card.is-active { - z-index: 2; + z-index: 2; } .el-carousel__mask { - width: 100%; - background-color: #fff; - opacity: 0.24; - -webkit-transition: 0.2s; - transition: 0.2s; + width: 100%; + background-color: #fff; + opacity: 0.24; + -webkit-transition: 0.2s; + transition: 0.2s; } .el-fade-in-enter, .el-fade-in-leave-active, @@ -9354,1446 +8396,1375 @@ .fade-in-linear-enter, .fade-in-linear-leave, .fade-in-linear-leave-active { - opacity: 0; + opacity: 0; } .fade-in-linear-enter-active, .fade-in-linear-leave-active { - -webkit-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; + -webkit-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; } .el-fade-in-linear-enter-active, .el-fade-in-linear-leave-active { - -webkit-transition: opacity 0.2s linear; - transition: opacity 0.2s linear; + -webkit-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; } .el-fade-in-enter-active, .el-fade-in-leave-active { - -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); -} -.el-zoom-in-center-enter-active, -.el-zoom-in-center-leave-active { - -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); -} -.el-zoom-in-center-enter, -.el-zoom-in-center-leave-active { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); -} -.el-zoom-in-top-enter-active, -.el-zoom-in-top-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center top; - transform-origin: center top; -} -.el-zoom-in-top-enter, -.el-zoom-in-top-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-bottom-enter-active, -.el-zoom-in-bottom-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -.el-zoom-in-bottom-enter, -.el-zoom-in-bottom-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-left-enter-active, -.el-zoom-in-left-leave-active { - opacity: 1; - -webkit-transform: scale(1, 1); - transform: scale(1, 1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: top left; - transform-origin: top left; -} -.el-zoom-in-left-enter, -.el-zoom-in-left-leave-active { - opacity: 0; - -webkit-transform: scale(0.45, 0.45); - transform: scale(0.45, 0.45); + -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); + transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); } .collapse-transition { - -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, - 0.3s padding-bottom ease-in-out; - transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, - 0.3s padding-bottom ease-in-out; + -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, + 0.3s padding-bottom ease-in-out; + transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, + 0.3s padding-bottom ease-in-out; } .horizontal-collapse-transition { - -webkit-transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, - 0.3s padding-right ease-in-out; - transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, - 0.3s padding-right ease-in-out; + -webkit-transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, + 0.3s padding-right ease-in-out; + transition: 0.3s width ease-in-out, 0.3s padding-left ease-in-out, + 0.3s padding-right ease-in-out; } .el-list-enter-active, .el-list-leave-active { - -webkit-transition: all 1s; - transition: all 1s; + -webkit-transition: all 1s; + transition: all 1s; } .el-list-enter, .el-list-leave-active { - opacity: 0; - -webkit-transform: translateY(-30px); - transform: translateY(-30px); + opacity: 0; + -webkit-transform: translateY(-30px); + transform: translateY(-30px); } .el-opacity-transition { - -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); + -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); + transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); } .el-collapse { - border-top: 1px solid #ebeef5; - border-bottom: 1px solid #ebeef5; + border-top: 1px solid #ebeef5; + border-bottom: 1px solid #ebeef5; } .el-collapse-item.is-disabled .el-collapse-item__header { - color: #bbb; - cursor: not-allowed; + color: #bbb; + cursor: not-allowed; } .el-collapse-item__header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 48px; - line-height: 48px; - background-color: #fff; - color: #303133; - cursor: pointer; - border-bottom: 1px solid #ebeef5; - font-size: 13px; - font-weight: 500; - -webkit-transition: border-bottom-color 0.3s; - transition: border-bottom-color 0.3s; - outline: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 48px; + line-height: 48px; + background-color: #fff; + color: #303133; + cursor: pointer; + border-bottom: 1px solid #ebeef5; + font-size: 13px; + font-weight: 500; + -webkit-transition: border-bottom-color 0.3s; + transition: border-bottom-color 0.3s; + outline: 0; } .el-collapse-item__arrow { - margin: 0 8px 0 auto; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - font-weight: 300; + margin: 0 8px 0 auto; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + font-weight: 300; } .el-collapse-item__arrow.is-active { - -webkit-transform: rotate(90deg); - transform: rotate(90deg); + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } .el-collapse-item__header.focusing:focus:not(:hover) { - color: #51c21a; + color: #51c21a; } .el-collapse-item__header.is-active { - border-bottom-color: transparent; + border-bottom-color: transparent; } .el-collapse-item__wrap { - will-change: height; - background-color: #fff; - overflow: hidden; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-bottom: 1px solid #ebeef5; + will-change: height; + background-color: #fff; + overflow: hidden; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-bottom: 1px solid #ebeef5; } .el-cascader__tags, .el-tag { - -webkit-box-sizing: border-box; + -webkit-box-sizing: border-box; } .el-collapse-item__content { - padding-bottom: 25px; - font-size: 13px; - color: #303133; - line-height: 1.769230769230769; + padding-bottom: 25px; + font-size: 13px; + color: #303133; + line-height: 1.769230769230769; } .el-collapse-item:last-child { - margin-bottom: -1px; + margin-bottom: -1px; } .el-popper .popper__arrow, .el-popper .popper__arrow::after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; } .el-popper .popper__arrow { - border-width: 6px; - -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); - filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); + border-width: 6px; + -webkit-filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); + filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.03)); } .el-popper .popper__arrow::after { - content: " "; - border-width: 6px; + content: " "; + border-width: 6px; } .el-popper[x-placement^="top"] { - margin-bottom: 12px; + margin-bottom: 12px; } .el-popper[x-placement^="top"] .popper__arrow { - bottom: -6px; - left: 50%; - margin-right: 3px; - border-top-color: #ebeef5; - border-bottom-width: 0; + bottom: -6px; + left: 50%; + margin-right: 3px; + border-top-color: #ebeef5; + border-bottom-width: 0; } .el-popper[x-placement^="top"] .popper__arrow::after { - bottom: 1px; - margin-left: -6px; - border-top-color: #fff; - border-bottom-width: 0; + bottom: 1px; + margin-left: -6px; + border-top-color: #fff; + border-bottom-width: 0; } .el-popper[x-placement^="bottom"] { - margin-top: 12px; + margin-top: 12px; } .el-popper[x-placement^="bottom"] .popper__arrow { - top: -6px; - left: 50%; - margin-right: 3px; - border-top-width: 0; - border-bottom-color: #ebeef5; + top: -6px; + left: 50%; + margin-right: 3px; + border-top-width: 0; + border-bottom-color: #ebeef5; } .el-popper[x-placement^="bottom"] .popper__arrow::after { - top: 1px; - margin-left: -6px; - border-top-width: 0; - border-bottom-color: #fff; + top: 1px; + margin-left: -6px; + border-top-width: 0; + border-bottom-color: #fff; } .el-popper[x-placement^="right"] { - margin-left: 12px; + margin-left: 12px; } .el-popper[x-placement^="right"] .popper__arrow { - top: 50%; - left: -6px; - margin-bottom: 3px; - border-right-color: #ebeef5; - border-left-width: 0; + top: 50%; + left: -6px; + margin-bottom: 3px; + border-right-color: #ebeef5; + border-left-width: 0; } .el-popper[x-placement^="right"] .popper__arrow::after { - bottom: -6px; - left: 1px; - border-right-color: #fff; - border-left-width: 0; + bottom: -6px; + left: 1px; + border-right-color: #fff; + border-left-width: 0; } .el-popper[x-placement^="left"] { - margin-right: 12px; + margin-right: 12px; } .el-popper[x-placement^="left"] .popper__arrow { - top: 50%; - right: -6px; - margin-bottom: 3px; - border-right-width: 0; - border-left-color: #ebeef5; + top: 50%; + right: -6px; + margin-bottom: 3px; + border-right-width: 0; + border-left-color: #ebeef5; } .el-popper[x-placement^="left"] .popper__arrow::after { - right: 1px; - bottom: -6px; - margin-left: -6px; - border-right-width: 0; - border-left-color: #fff; + right: 1px; + bottom: -6px; + margin-left: -6px; + border-right-width: 0; + border-left-color: #fff; } .el-tag { - background-color: #eef9e8; - border-color: #dcf3d1; - display: inline-block; - height: 32px; - padding: 0 10px; - line-height: 30px; - font-size: 12px; - color: #51c21a; - border-width: 1px; - border-style: solid; - border-radius: 4px; - box-sizing: border-box; - white-space: nowrap; + background-color: rgb(238, 249, 232); + border-color: rgb(220, 243, 209); + display: inline-block; + height: 32px; + padding: 0 10px; + line-height: 30px; + font-size: 12px; + color: #51c21a; + border-width: 1px; + border-style: solid; + border-radius: 4px; + box-sizing: border-box; + white-space: nowrap; } .el-tag.is-hit { - border-color: #51c21a; + border-color: #51c21a; } .el-tag .el-tag__close { - color: #51c21a; + color: #51c21a; } .el-tag .el-tag__close:hover { - color: #fff; - background-color: #51c21a; + color: #fff; + background-color: #51c21a; } .el-tag.el-tag--info { - background-color: #f4f4f5; - border-color: #e9e9eb; - color: #909399; + background-color: #f4f4f5; + border-color: #e9e9eb; + color: #909399; } .el-tag.el-tag--info.is-hit { - border-color: #909399; + border-color: #909399; } .el-tag.el-tag--info .el-tag__close { - color: #909399; + color: #909399; } .el-tag.el-tag--info .el-tag__close:hover { - color: #fff; - background-color: #909399; + color: #fff; + background-color: #909399; } .el-tag.el-tag--success { - background-color: #f0f9eb; - border-color: #e1f3d8; - color: #67c23a; + background-color: #f0f9eb; + border-color: #e1f3d8; + color: #67c23a; } .el-tag.el-tag--success.is-hit { - border-color: #67c23a; + border-color: #67c23a; } .el-tag.el-tag--success .el-tag__close { - color: #67c23a; + color: #67c23a; } .el-tag.el-tag--success .el-tag__close:hover { - color: #fff; - background-color: #67c23a; + color: #fff; + background-color: #67c23a; } .el-tag.el-tag--warning { - background-color: #fdf6ec; - border-color: #faecd8; - color: #e6a23c; + background-color: #fdf6ec; + border-color: #faecd8; + color: #e6a23c; } .el-tag.el-tag--warning.is-hit { - border-color: #e6a23c; + border-color: #e6a23c; } .el-tag.el-tag--warning .el-tag__close { - color: #e6a23c; + color: #e6a23c; } .el-tag.el-tag--warning .el-tag__close:hover { - color: #fff; - background-color: #e6a23c; + color: #fff; + background-color: #e6a23c; } .el-tag.el-tag--danger { - background-color: #fef0f0; - border-color: #fde2e2; - color: #f56c6c; + background-color: #fef0f0; + border-color: #fde2e2; + color: #f56c6c; } .el-tag.el-tag--danger.is-hit { - border-color: #f56c6c; + border-color: #f56c6c; } .el-tag.el-tag--danger .el-tag__close { - color: #f56c6c; + color: #f56c6c; } .el-tag.el-tag--danger .el-tag__close:hover { - color: #fff; - background-color: #f56c6c; + color: #fff; + background-color: #f56c6c; } .el-tag .el-icon-close { - border-radius: 50%; - text-align: center; - position: relative; - cursor: pointer; - font-size: 12px; - height: 16px; - width: 16px; - line-height: 16px; - vertical-align: middle; - top: -1px; - right: -5px; + border-radius: 50%; + text-align: center; + position: relative; + cursor: pointer; + font-size: 12px; + height: 16px; + width: 16px; + line-height: 16px; + vertical-align: middle; + top: -1px; + right: -5px; } .el-tag .el-icon-close::before { - display: block; + display: block; } .el-tag--dark { - background-color: #51c21a; - border-color: #51c21a; - color: #fff; + background-color: #51c21a; + border-color: #51c21a; + color: #fff; } .el-tag--dark.is-hit { - border-color: #51c21a; + border-color: #51c21a; } .el-tag--dark .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark .el-tag__close:hover { - color: #fff; - background-color: #74ce48; + color: #fff; + background-color: rgb(116, 206, 72); } .el-tag--dark.el-tag--info { - background-color: #909399; - border-color: #909399; - color: #fff; + background-color: #909399; + border-color: #909399; + color: #fff; } .el-tag--dark.el-tag--info.is-hit { - border-color: #909399; + border-color: #909399; } .el-tag--dark.el-tag--info .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--info .el-tag__close:hover { - color: #fff; - background-color: #a6a9ad; + color: #fff; + background-color: #a6a9ad; } .el-tag--dark.el-tag--success { - background-color: #67c23a; - border-color: #67c23a; - color: #fff; + background-color: #67c23a; + border-color: #67c23a; + color: #fff; } .el-tag--dark.el-tag--success.is-hit { - border-color: #67c23a; + border-color: #67c23a; } .el-tag--dark.el-tag--success .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--success .el-tag__close:hover { - color: #fff; - background-color: #85ce61; + color: #fff; + background-color: #85ce61; } .el-tag--dark.el-tag--warning { - background-color: #e6a23c; - border-color: #e6a23c; - color: #fff; + background-color: #e6a23c; + border-color: #e6a23c; + color: #fff; } .el-tag--dark.el-tag--warning.is-hit { - border-color: #e6a23c; + border-color: #e6a23c; } .el-tag--dark.el-tag--warning .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--warning .el-tag__close:hover { - color: #fff; - background-color: #ebb563; + color: #fff; + background-color: #ebb563; } .el-tag--dark.el-tag--danger { - background-color: #f56c6c; - border-color: #f56c6c; - color: #fff; + background-color: #f56c6c; + border-color: #f56c6c; + color: #fff; } .el-tag--dark.el-tag--danger.is-hit { - border-color: #f56c6c; + border-color: #f56c6c; } .el-tag--dark.el-tag--danger .el-tag__close { - color: #fff; + color: #fff; } .el-tag--dark.el-tag--danger .el-tag__close:hover { - color: #fff; - background-color: #f78989; + color: #fff; + background-color: #f78989; } .el-tag--plain { - background-color: #fff; - border-color: #b9e7a3; - color: #51c21a; + background-color: #fff; + border-color: rgb(185, 231, 163); + color: #51c21a; } .el-tag--plain.is-hit { - border-color: #51c21a; + border-color: #51c21a; } .el-tag--plain .el-tag__close { - color: #51c21a; + color: #51c21a; } .el-tag--plain .el-tag__close:hover { - color: #fff; - background-color: #51c21a; + color: #fff; + background-color: #51c21a; } .el-tag--plain.el-tag--info { - background-color: #fff; - border-color: #d3d4d6; - color: #909399; + background-color: #fff; + border-color: #d3d4d6; + color: #909399; } .el-tag--plain.el-tag--info.is-hit { - border-color: #909399; + border-color: #909399; } .el-tag--plain.el-tag--info .el-tag__close { - color: #909399; + color: #909399; } .el-tag--plain.el-tag--info .el-tag__close:hover { - color: #fff; - background-color: #909399; + color: #fff; + background-color: #909399; } .el-tag--plain.el-tag--success { - background-color: #fff; - border-color: #c2e7b0; - color: #67c23a; + background-color: #fff; + border-color: #c2e7b0; + color: #67c23a; } .el-tag--plain.el-tag--success.is-hit { - border-color: #67c23a; + border-color: #67c23a; } .el-tag--plain.el-tag--success .el-tag__close { - color: #67c23a; + color: #67c23a; } .el-tag--plain.el-tag--success .el-tag__close:hover { - color: #fff; - background-color: #67c23a; + color: #fff; + background-color: #67c23a; } .el-tag--plain.el-tag--warning { - background-color: #fff; - border-color: #f5dab1; - color: #e6a23c; + background-color: #fff; + border-color: #f5dab1; + color: #e6a23c; } .el-tag--plain.el-tag--warning.is-hit { - border-color: #e6a23c; + border-color: #e6a23c; } .el-tag--plain.el-tag--warning .el-tag__close { - color: #e6a23c; + color: #e6a23c; } .el-tag--plain.el-tag--warning .el-tag__close:hover { - color: #fff; - background-color: #e6a23c; + color: #fff; + background-color: #e6a23c; } .el-tag--plain.el-tag--danger { - background-color: #fff; - border-color: #fbc4c4; - color: #f56c6c; + background-color: #fff; + border-color: #fbc4c4; + color: #f56c6c; } .el-tag--plain.el-tag--danger.is-hit { - border-color: #f56c6c; + border-color: #f56c6c; } .el-tag--plain.el-tag--danger .el-tag__close { - color: #f56c6c; + color: #f56c6c; } .el-tag--plain.el-tag--danger .el-tag__close:hover { - color: #fff; - background-color: #f56c6c; + color: #fff; + background-color: #f56c6c; } .el-tag--medium { - height: 28px; - line-height: 26px; + height: 28px; + line-height: 26px; } .el-tag--medium .el-icon-close { - -webkit-transform: scale(0.8); - transform: scale(0.8); + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-tag--small { - height: 24px; - padding: 0 8px; - line-height: 22px; + height: 24px; + padding: 0 8px; + line-height: 22px; } .el-tag--small .el-icon-close { - -webkit-transform: scale(0.8); - transform: scale(0.8); + -webkit-transform: scale(0.8); + transform: scale(0.8); } .el-tag--mini { - height: 20px; - padding: 0 5px; - line-height: 19px; + height: 20px; + padding: 0 5px; + line-height: 19px; } .el-tag--mini .el-icon-close { - margin-left: -3px; - -webkit-transform: scale(0.7); - transform: scale(0.7); + margin-left: -3px; + -webkit-transform: scale(0.7); + transform: scale(0.7); } .el-cascader { - display: inline-block; - position: relative; - font-size: 14px; - line-height: 40px; + display: inline-block; + position: relative; + font-size: 14px; + line-height: 40px; } .el-cascader:not(.is-disabled):hover .el-input__inner { - cursor: pointer; - border-color: #c0c4cc; + cursor: pointer; + border-color: #c0c4cc; } .el-cascader .el-input .el-input__inner:focus, .el-cascader .el-input.is-focus .el-input__inner { - border-color: #51c21a; + border-color: #51c21a; } .el-cascader .el-input { - cursor: pointer; + cursor: pointer; } .el-cascader .el-input .el-input__inner { - text-overflow: ellipsis; + text-overflow: ellipsis; } .el-cascader .el-input .el-icon-arrow-down { - -webkit-transition: -webkit-transform 0.3s; - transition: -webkit-transform 0.3s; - transition: transform 0.3s; - transition: transform 0.3s, -webkit-transform 0.3s; - font-size: 14px; + -webkit-transition: -webkit-transform 0.3s; + transition: -webkit-transform 0.3s; + transition: transform 0.3s; + transition: transform 0.3s, -webkit-transform 0.3s; + font-size: 14px; } .el-cascader .el-input .el-icon-arrow-down.is-reverse { - -webkit-transform: rotateZ(180deg); - transform: rotateZ(180deg); + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); } .el-cascader .el-input .el-icon-circle-close:hover { - color: #909399; + color: #909399; } .el-cascader--medium { - font-size: 14px; - line-height: 36px; + font-size: 14px; + line-height: 36px; } .el-cascader--small { - font-size: 13px; - line-height: 32px; + font-size: 13px; + line-height: 32px; } .el-cascader--mini { - font-size: 12px; - line-height: 28px; + font-size: 12px; + line-height: 28px; } .el-cascader.is-disabled .el-cascader__label { - z-index: 2; - color: #c0c4cc; + z-index: 2; + color: #c0c4cc; } .el-cascader__dropdown { - margin: 5px 0; - font-size: 14px; - background: #fff; - border: 1px solid #e4e7ed; - border-radius: 4px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + margin: 5px 0; + font-size: 14px; + background: #fff; + border: 1px solid #e4e7ed; + border-radius: 4px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-cascader__tags { - position: absolute; - left: 0; - right: 30px; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - line-height: normal; - text-align: left; - box-sizing: border-box; + position: absolute; + left: 0; + right: 30px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + line-height: normal; + text-align: left; + box-sizing: border-box; } .el-cascader__tags .el-tag { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - max-width: 100%; - margin: 2px 0 2px 6px; - text-overflow: ellipsis; - background: #f0f2f5; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + max-width: 100%; + margin: 2px 0 2px 6px; + text-overflow: ellipsis; + background: #f0f2f5; } .el-cascader__tags .el-tag:not(.is-hit) { - border-color: transparent; + border-color: transparent; } .el-cascader__tags .el-tag > span { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - overflow: hidden; - text-overflow: ellipsis; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + overflow: hidden; + text-overflow: ellipsis; } .el-cascader__tags .el-tag .el-icon-close { - -webkit-box-flex: 0; - -ms-flex: none; - flex: none; - background-color: #c0c4cc; - color: #fff; + -webkit-box-flex: 0; + -ms-flex: none; + flex: none; + background-color: #c0c4cc; + color: #fff; } .el-cascader__tags .el-tag .el-icon-close:hover { - background-color: #909399; + background-color: #909399; } .el-cascader__suggestion-panel { - border-radius: 4px; + border-radius: 4px; } .el-cascader__suggestion-list { - max-height: 204px; - margin: 0; - padding: 6px 0; - font-size: 14px; - color: #606266; - text-align: center; + max-height: 204px; + margin: 0; + padding: 6px 0; + font-size: 14px; + color: #606266; + text-align: center; } .el-cascader__suggestion-item { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - height: 34px; - padding: 0 15px; - text-align: left; - outline: 0; - cursor: pointer; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + height: 34px; + padding: 0 15px; + text-align: left; + outline: 0; + cursor: pointer; } .el-cascader__suggestion-item:focus, .el-cascader__suggestion-item:hover { - background: #f5f7fa; + background: #f5f7fa; } .el-cascader__suggestion-item.is-checked { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .el-cascader__suggestion-item > span { - margin-right: 10px; + margin-right: 10px; } .el-cascader__empty-text { - margin: 10px 0; - color: #c0c4cc; + margin: 10px 0; + color: #c0c4cc; } .el-cascader__search-input { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - height: 24px; - min-width: 60px; - margin: 2px 0 2px 15px; - padding: 0; - color: #606266; - border: none; - outline: 0; - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + height: 24px; + min-width: 60px; + margin: 2px 0 2px 15px; + padding: 0; + color: #606266; + border: none; + outline: 0; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-cascader__search-input::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-cascader__search-input:-ms-input-placeholder { + color: #c0c4cc; } .el-cascader__search-input::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-cascader__search-input::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-color-predefine { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - font-size: 12px; - margin-top: 8px; - width: 280px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + font-size: 12px; + margin-top: 8px; + width: 280px; } .el-color-predefine__colors { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -ms-flex-wrap: wrap; - flex-wrap: wrap; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } .el-color-predefine__color-selector { - margin: 0 0 8px 8px; - width: 20px; - height: 20px; - border-radius: 4px; - cursor: pointer; + margin: 0 0 8px 8px; + width: 20px; + height: 20px; + border-radius: 4px; + cursor: pointer; } .el-color-predefine__color-selector:nth-child(10n + 1) { - margin-left: 0; + margin-left: 0; } .el-color-predefine__color-selector.selected { - -webkit-box-shadow: 0 0 3px 2px #51c21a; - box-shadow: 0 0 3px 2px #51c21a; + -webkit-box-shadow: 0 0 3px 2px #51c21a; + box-shadow: 0 0 3px 2px #51c21a; } .el-color-predefine__color-selector > div { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - height: 100%; - border-radius: 3px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 100%; + border-radius: 3px; } .el-color-predefine__color-selector.is-alpha { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .el-color-hue-slider { - position: relative; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 280px; - height: 12px; - background-color: red; - padding: 0 2px; + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 280px; + height: 12px; + background-color: red; + padding: 0 2px; } .el-color-hue-slider__bar { - position: relative; - background: -webkit-gradient( - linear, - left top, - right top, - from(red), - color-stop(17%, #ff0), - color-stop(33%, #0f0), - color-stop(50%, #0ff), - color-stop(67%, #00f), - color-stop(83%, #f0f), - to(red) - ); - background: linear-gradient( - to right, - red 0, - #ff0 17%, - #0f0 33%, - #0ff 50%, - #00f 67%, - #f0f 83%, - red 100% - ); - height: 100%; + position: relative; + background: -webkit-gradient( + linear, + left top, + right top, + from(red), + color-stop(17%, #ff0), + color-stop(33%, #0f0), + color-stop(50%, #0ff), + color-stop(67%, #00f), + color-stop(83%, #f0f), + to(red) + ); + background: linear-gradient( + to right, + red 0, + #ff0 17%, + #0f0 33%, + #0ff 50%, + #00f 67%, + #f0f 83%, + red 100% + ); + height: 100%; } .el-color-hue-slider__thumb { - position: absolute; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; - left: 0; - top: 0; - width: 4px; - height: 100%; - border-radius: 1px; - background: #fff; - border: 1px solid #f0f0f0; - -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - z-index: 1; + position: absolute; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; + left: 0; + top: 0; + width: 4px; + height: 100%; + border-radius: 1px; + background: #fff; + border: 1px solid #f0f0f0; + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + z-index: 1; } .el-color-hue-slider.is-vertical { - width: 12px; - height: 180px; - padding: 2px 0; + width: 12px; + height: 180px; + padding: 2px 0; } .el-color-hue-slider.is-vertical .el-color-hue-slider__bar { - background: -webkit-gradient( - linear, - left top, - left bottom, - from(red), - color-stop(17%, #ff0), - color-stop(33%, #0f0), - color-stop(50%, #0ff), - color-stop(67%, #00f), - color-stop(83%, #f0f), - to(red) - ); - background: linear-gradient( - to bottom, - red 0, - #ff0 17%, - #0f0 33%, - #0ff 50%, - #00f 67%, - #f0f 83%, - red 100% - ); + background: -webkit-gradient( + linear, + left top, + left bottom, + from(red), + color-stop(17%, #ff0), + color-stop(33%, #0f0), + color-stop(50%, #0ff), + color-stop(67%, #00f), + color-stop(83%, #f0f), + to(red) + ); + background: linear-gradient( + to bottom, + red 0, + #ff0 17%, + #0f0 33%, + #0ff 50%, + #00f 67%, + #f0f 83%, + red 100% + ); } .el-color-hue-slider.is-vertical .el-color-hue-slider__thumb { - left: 0; - top: 0; - width: 100%; - height: 4px; + left: 0; + top: 0; + width: 100%; + height: 4px; } .el-color-svpanel { - position: relative; - width: 280px; - height: 180px; + position: relative; + width: 280px; + height: 180px; } .el-color-svpanel__black, .el-color-svpanel__white { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; } .el-color-svpanel__white { - background: -webkit-gradient( - linear, - left top, - right top, - from(#fff), - to(rgba(255, 255, 255, 0)) - ); - background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); + background: -webkit-gradient( + linear, + left top, + right top, + from(#fff), + to(rgba(255, 255, 255, 0)) + ); + background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0)); } .el-color-svpanel__black { - background: -webkit-gradient( - linear, - left bottom, - left top, - from(#000), - to(rgba(0, 0, 0, 0)) - ); - background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); + background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0))); + background: linear-gradient(to top, #000, rgba(0, 0, 0, 0)); } .el-color-svpanel__cursor { - position: absolute; + position: absolute; } .el-color-svpanel__cursor > div { - cursor: head; - width: 4px; - height: 4px; - -webkit-box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), - 0 0 1px 2px rgba(0, 0, 0, 0.4); - box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), - 0 0 1px 2px rgba(0, 0, 0, 0.4); - border-radius: 50%; - -webkit-transform: translate(-2px, -2px); - transform: translate(-2px, -2px); + cursor: head; + width: 4px; + height: 4px; + -webkit-box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), + 0 0 1px 2px rgba(0, 0, 0, 0.4); + box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), + 0 0 1px 2px rgba(0, 0, 0, 0.4); + border-radius: 50%; + -webkit-transform: translate(-2px, -2px); + transform: translate(-2px, -2px); } .el-color-alpha-slider { - position: relative; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 280px; - height: 12px; - background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + position: relative; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 280px; + height: 12px; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .el-color-alpha-slider__bar { - position: relative; - background: -webkit-gradient( - linear, - left top, - right top, - from(rgba(255, 255, 255, 0)), - to(white) - ); - background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%); - height: 100%; + position: relative; + background: -webkit-gradient( + linear, + left top, + right top, + from(rgba(255, 255, 255, 0)), + to(white) + ); + background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%); + height: 100%; } .el-color-alpha-slider__thumb { - position: absolute; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; - left: 0; - top: 0; - width: 4px; - height: 100%; - border-radius: 1px; - background: #fff; - border: 1px solid #f0f0f0; - -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); - z-index: 1; + position: absolute; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; + left: 0; + top: 0; + width: 4px; + height: 100%; + border-radius: 1px; + background: #fff; + border: 1px solid #f0f0f0; + -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + box-shadow: 0 0 2px rgba(0, 0, 0, 0.6); + z-index: 1; } .el-color-alpha-slider.is-vertical { - width: 20px; - height: 180px; + width: 20px; + height: 180px; } .el-color-alpha-slider.is-vertical .el-color-alpha-slider__bar { - background: -webkit-gradient( - linear, - left top, - left bottom, - from(rgba(255, 255, 255, 0)), - to(white) - ); - background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%); + background: -webkit-gradient( + linear, + left top, + left bottom, + from(rgba(255, 255, 255, 0)), + to(white) + ); + background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%); } .el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb { - left: 0; - top: 0; - width: 100%; - height: 4px; + left: 0; + top: 0; + width: 100%; + height: 4px; } .el-color-dropdown { - width: 300px; + width: 300px; } .el-color-dropdown__main-wrapper { - margin-bottom: 6px; + margin-bottom: 6px; } .el-color-dropdown__main-wrapper::after { - content: ""; - display: table; - clear: both; + content: ""; + display: table; + clear: both; } .el-color-dropdown__btns { - margin-top: 6px; - text-align: right; + margin-top: 6px; + text-align: right; } .el-color-dropdown__value { - float: left; - line-height: 26px; - font-size: 12px; - color: #000; - width: 160px; + float: left; + line-height: 26px; + font-size: 12px; + color: #000; + width: 160px; } .el-color-dropdown__btn { - border: 1px solid #dcdcdc; - color: #333; - line-height: 24px; - border-radius: 2px; - padding: 0 20px; - cursor: pointer; - background-color: transparent; - outline: 0; - font-size: 12px; + border: 1px solid #dcdcdc; + color: #333; + line-height: 24px; + border-radius: 2px; + padding: 0 20px; + cursor: pointer; + background-color: transparent; + outline: 0; + font-size: 12px; } .el-color-dropdown__btn[disabled] { - color: #ccc; - cursor: not-allowed; + color: #ccc; + cursor: not-allowed; } .el-color-dropdown__btn:hover { - color: #51c21a; - border-color: #51c21a; + color: #51c21a; + border-color: #51c21a; } .el-color-dropdown__link-btn { - cursor: pointer; - color: #51c21a; - text-decoration: none; - padding: 15px; - font-size: 12px; + cursor: pointer; + color: #51c21a; + text-decoration: none; + padding: 15px; + font-size: 12px; } .el-color-dropdown__link-btn:hover { - color: tint(#51c21a, 20%); + color: tint(primary, 20%); } .el-color-picker { - display: inline-block; - position: relative; - line-height: normal; - height: 40px; + display: inline-block; + position: relative; + line-height: normal; + height: 40px; } .el-color-picker.is-disabled .el-color-picker__trigger { - cursor: not-allowed; + cursor: not-allowed; } .el-color-picker--medium { - height: 36px; + height: 36px; } .el-color-picker--medium .el-color-picker__trigger { - height: 36px; - width: 36px; + height: 36px; + width: 36px; } .el-color-picker--medium .el-color-picker__mask { - height: 34px; - width: 34px; + height: 34px; + width: 34px; } .el-color-picker--small { - height: 32px; + height: 32px; } .el-color-picker--small .el-color-picker__trigger { - height: 32px; - width: 32px; + height: 32px; + width: 32px; } .el-color-picker--small .el-color-picker__mask { - height: 30px; - width: 30px; + height: 30px; + width: 30px; } .el-color-picker--small .el-color-picker__empty, .el-color-picker--small .el-color-picker__icon { - -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); - transform: translate3d(-50%, -50%, 0) scale(0.8); + -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); + transform: translate3d(-50%, -50%, 0) scale(0.8); } .el-color-picker--mini { - height: 28px; + height: 28px; } .el-color-picker--mini .el-color-picker__trigger { - height: 28px; - width: 28px; + height: 28px; + width: 28px; } .el-color-picker--mini .el-color-picker__mask { - height: 26px; - width: 26px; + height: 26px; + width: 26px; } .el-color-picker--mini .el-color-picker__empty, .el-color-picker--mini .el-color-picker__icon { - -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); - transform: translate3d(-50%, -50%, 0) scale(0.8); + -webkit-transform: translate3d(-50%, -50%, 0) scale(0.8); + transform: translate3d(-50%, -50%, 0) scale(0.8); } .el-color-picker__mask { - height: 38px; - width: 38px; - border-radius: 4px; - position: absolute; - top: 1px; - left: 1px; - z-index: 1; - cursor: not-allowed; - background-color: rgba(255, 255, 255, 0.7); + height: 38px; + width: 38px; + border-radius: 4px; + position: absolute; + top: 1px; + left: 1px; + z-index: 1; + cursor: not-allowed; + background-color: rgba(255, 255, 255, 0.7); } .el-color-picker__trigger { - display: inline-block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - height: 40px; - width: 40px; - padding: 4px; - border: 1px solid #e6e6e6; - border-radius: 4px; - font-size: 0; - position: relative; - cursor: pointer; + display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + height: 40px; + width: 40px; + padding: 4px; + border: 1px solid #e6e6e6; + border-radius: 4px; + font-size: 0; + position: relative; + cursor: pointer; } .el-color-picker__color { - position: relative; - display: block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border: 1px solid #999; - border-radius: 2px; - width: 100%; - height: 100%; - text-align: center; + position: relative; + display: block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border: 1px solid #999; + border-radius: 2px; + width: 100%; + height: 100%; + text-align: center; } .el-color-picker__color.is-alpha { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); } .el-color-picker__color-inner { - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; } .el-color-picker__empty, .el-color-picker__icon { - top: 50%; - left: 50%; - font-size: 12px; - position: absolute; + top: 50%; + left: 50%; + font-size: 12px; + position: absolute; } .el-color-picker__empty { - color: #999; - -webkit-transform: translate3d(-50%, -50%, 0); - transform: translate3d(-50%, -50%, 0); + color: #999; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); } .el-color-picker__icon { - display: inline-block; - width: 100%; - -webkit-transform: translate3d(-50%, -50%, 0); - transform: translate3d(-50%, -50%, 0); - color: #fff; - text-align: center; + display: inline-block; + width: 100%; + -webkit-transform: translate3d(-50%, -50%, 0); + transform: translate3d(-50%, -50%, 0); + color: #fff; + text-align: center; } .el-color-picker__panel { - position: absolute; - z-index: 10; - padding: 6px; - -webkit-box-sizing: content-box; - box-sizing: content-box; - background-color: #fff; - border: 1px solid #ebeef5; - border-radius: 4px; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + position: absolute; + z-index: 10; + padding: 6px; + -webkit-box-sizing: content-box; + box-sizing: content-box; + background-color: #fff; + border: 1px solid #ebeef5; + border-radius: 4px; + -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); + box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-textarea { - position: relative; - display: inline-block; - width: 100%; - vertical-align: bottom; - font-size: 14px; + position: relative; + display: inline-block; + width: 100%; + vertical-align: bottom; + font-size: 14px; } .el-textarea__inner { - display: block; - resize: vertical; - padding: 5px 15px; - line-height: 1.5; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 100%; - font-size: inherit; - color: #606266; - background-color: #fff; - background-image: none; - border: 1px solid #dcdfe6; - border-radius: 4px; - -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + display: block; + resize: vertical; + padding: 5px 15px; + line-height: 1.5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 100%; + font-size: inherit; + color: #606266; + background-color: #fff; + background-image: none; + border: 1px solid #dcdfe6; + border-radius: 4px; + -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-textarea__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-textarea__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea__inner:hover { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-textarea__inner:focus { - outline: 0; - border-color: #51c21a; + outline: 0; + border-color: #51c21a; } .el-textarea .el-input__count { - color: #909399; - background: #fff; - position: absolute; - font-size: 12px; - bottom: 5px; - right: 10px; + color: #909399; + background: #fff; + position: absolute; + font-size: 12px; + bottom: 5px; + right: 10px; } .el-textarea.is-disabled .el-textarea__inner { - background-color: #f5f7fa; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; } .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea.is-disabled .el-textarea__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-textarea.is-exceed .el-textarea__inner { - border-color: #f56c6c; + border-color: #f56c6c; } .el-textarea.is-exceed .el-input__count { - color: #f56c6c; + color: #f56c6c; } .el-input { - position: relative; - font-size: 14px; - display: inline-block; - width: 100%; + position: relative; + font-size: 14px; + display: inline-block; + width: 100%; } .el-input::-webkit-scrollbar { - z-index: 11; - width: 6px; + z-index: 11; + width: 6px; } .el-input::-webkit-scrollbar:horizontal { - height: 6px; + height: 6px; } .el-input::-webkit-scrollbar-thumb { - border-radius: 5px; - width: 6px; - background: #b4bccc; + border-radius: 5px; + width: 6px; + background: #b4bccc; } .el-input::-webkit-scrollbar-corner { - background: #fff; + background: #fff; } .el-input::-webkit-scrollbar-track { - background: #fff; + background: #fff; } .el-input::-webkit-scrollbar-track-piece { - background: #fff; - width: 6px; + background: #fff; + width: 6px; } .el-input .el-input__clear { - color: #c0c4cc; - font-size: 14px; - cursor: pointer; - -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + color: #c0c4cc; + font-size: 14px; + cursor: pointer; + -webkit-transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); } .el-input .el-input__clear:hover { - color: #909399; + color: #909399; } .el-input .el-input__count { - height: 100%; - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #909399; - font-size: 12px; + height: 100%; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #909399; + font-size: 12px; } .el-input .el-input__count .el-input__count-inner { - background: #fff; - line-height: initial; - display: inline-block; - padding: 0 5px; + background: #fff; + line-height: initial; + display: inline-block; + padding: 0 5px; } .el-input__inner { - -webkit-appearance: none; - background-color: #fff; - background-image: none; - border-radius: 4px; - border: 1px solid #dcdfe6; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #606266; - display: inline-block; - font-size: inherit; - height: 40px; - line-height: 40px; - outline: 0; - padding: 0 15px; - -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); - width: 100%; + -webkit-appearance: none; + background-color: #fff; + background-image: none; + border-radius: 4px; + border: 1px solid #dcdfe6; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #606266; + display: inline-block; + font-size: inherit; + height: 40px; + line-height: 40px; + outline: 0; + padding: 0 15px; + -webkit-transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); + width: 100%; } .el-input__prefix, .el-input__suffix { - position: absolute; - top: 0; - -webkit-transition: all 0.3s; - height: 100%; - color: #c0c4cc; - text-align: center; + position: absolute; + top: 0; + -webkit-transition: all 0.3s; + height: 100%; + color: #c0c4cc; + text-align: center; } .el-input__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-input__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-input__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input__inner:hover { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-input.is-active .el-input__inner, .el-input__inner:focus { - border-color: #51c21a; - outline: 0; + border-color: #51c21a; + outline: 0; } .el-input__suffix { - right: 5px; - transition: all 0.3s; + right: 5px; + transition: all 0.3s; } .el-input__suffix-inner { - pointer-events: all; + pointer-events: all; } .el-input__prefix { - left: 5px; - transition: all 0.3s; + left: 5px; + transition: all 0.3s; } .el-input__icon { - height: 100%; - width: 25px; - text-align: center; - -webkit-transition: all 0.3s; - transition: all 0.3s; - line-height: 40px; + height: 100%; + width: 25px; + text-align: center; + -webkit-transition: all 0.3s; + transition: all 0.3s; + line-height: 40px; } .el-input__icon:after { - content: ""; - height: 100%; - width: 0; - display: inline-block; - vertical-align: middle; + content: ""; + height: 100%; + width: 0; + display: inline-block; + vertical-align: middle; } .el-input__validateIcon { - pointer-events: none; + pointer-events: none; } .el-input.is-disabled .el-input__inner { - background-color: #f5f7fa; - border-color: #e4e7ed; - color: #c0c4cc; - cursor: not-allowed; + background-color: #f5f7fa; + border-color: #e4e7ed; + color: #c0c4cc; + cursor: not-allowed; } .el-input.is-disabled .el-input__inner::-webkit-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; +} +.el-input.is-disabled .el-input__inner:-ms-input-placeholder { + color: #c0c4cc; } .el-input.is-disabled .el-input__inner::-ms-input-placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input.is-disabled .el-input__inner::placeholder { - color: #c0c4cc; + color: #c0c4cc; } .el-input.is-disabled .el-input__icon { - cursor: not-allowed; + cursor: not-allowed; } .el-link, .el-transfer-panel__filter .el-icon-circle-close { - cursor: pointer; + cursor: pointer; } .el-input.is-exceed .el-input__inner { - border-color: #f56c6c; + border-color: #f56c6c; } .el-input.is-exceed .el-input__suffix .el-input__count { - color: #f56c6c; + color: #f56c6c; } .el-input--suffix .el-input__inner { - padding-right: 30px; + padding-right: 30px; } .el-input--prefix .el-input__inner { - padding-left: 30px; + padding-left: 30px; } .el-input--medium { - font-size: 14px; + font-size: 14px; } .el-input--medium .el-input__inner { - height: 36px; - line-height: 36px; + height: 36px; + line-height: 36px; } .el-input--medium .el-input__icon { - line-height: 36px; + line-height: 36px; } .el-input--small { - font-size: 13px; + font-size: 13px; } .el-input--small .el-input__inner { - height: 32px; - line-height: 32px; + height: 32px; + line-height: 32px; } .el-input--small .el-input__icon { - line-height: 32px; + line-height: 32px; } .el-input--mini { - font-size: 12px; + font-size: 12px; } .el-input--mini .el-input__inner { - height: 28px; - line-height: 28px; + height: 28px; + line-height: 28px; } .el-input--mini .el-input__icon { - line-height: 28px; + line-height: 28px; } .el-input-group { - line-height: normal; - display: inline-table; - width: 100%; - border-collapse: separate; - border-spacing: 0; + line-height: normal; + display: inline-table; + width: 100%; + border-collapse: separate; + border-spacing: 0; } .el-input-group > .el-input__inner { - vertical-align: middle; - display: table-cell; + vertical-align: middle; + display: table-cell; } .el-input-group__append, .el-input-group__prepend { - background-color: #f5f7fa; - color: #909399; - vertical-align: middle; - display: table-cell; - position: relative; - border: 1px solid #dcdfe6; - border-radius: 4px; - padding: 0 20px; - width: 1px; - white-space: nowrap; + background-color: #f5f7fa; + color: #909399; + vertical-align: middle; + display: table-cell; + position: relative; + border: 1px solid #dcdfe6; + border-radius: 4px; + padding: 0 20px; + width: 1px; + white-space: nowrap; } .el-input-group--prepend .el-input__inner, .el-input-group__append { - border-top-left-radius: 0; - border-bottom-left-radius: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } .el-input-group--append .el-input__inner, .el-input-group__prepend { - border-top-right-radius: 0; - border-bottom-right-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 0; } .el-input-group__append:focus, .el-input-group__prepend:focus { - outline: 0; + outline: 0; } .el-input-group__append .el-button, .el-input-group__append .el-select, .el-input-group__prepend .el-button, .el-input-group__prepend .el-select { - display: inline-block; - margin: -10px -20px; + display: inline-block; + margin: -10px -20px; } .el-input-group__append button.el-button, .el-input-group__append div.el-select .el-input__inner, @@ -10801,2415 +9772,2237 @@ .el-input-group__prepend button.el-button, .el-input-group__prepend div.el-select .el-input__inner, .el-input-group__prepend div.el-select:hover .el-input__inner { - border-color: transparent; - background-color: transparent; - color: inherit; - border-top: 0; - border-bottom: 0; + border-color: transparent; + background-color: transparent; + color: inherit; + border-top: 0; + border-bottom: 0; } .el-input-group__append .el-button, .el-input-group__append .el-input, .el-input-group__prepend .el-button, .el-input-group__prepend .el-input { - font-size: inherit; + font-size: inherit; } .el-input-group__prepend { - border-right: 0; + border-right: 0; } .el-input-group__append { - border-left: 0; + border-left: 0; } .el-input-group--append .el-select .el-input.is-focus .el-input__inner, .el-input-group--prepend .el-select .el-input.is-focus .el-input__inner { - border-color: transparent; + border-color: transparent; } .el-input__inner::-ms-clear { - display: none; - width: 0; - height: 0; + display: none; + width: 0; + height: 0; } .el-transfer { - font-size: 14px; + font-size: 14px; } .el-transfer__buttons { - display: inline-block; - vertical-align: middle; - padding: 0 30px; + display: inline-block; + vertical-align: middle; + padding: 0 30px; } .el-transfer__button { - display: block; - margin: 0 auto; - padding: 10px; - border-radius: 50%; - color: #fff; - background-color: #51c21a; - font-size: 0; + display: block; + margin: 0 auto; + padding: 10px; + border-radius: 50%; + color: #fff; + background-color: #51c21a; + font-size: 0; } .el-transfer-panel__item + .el-transfer-panel__item, .el-transfer__button [class*="el-icon-"] + span { - margin-left: 0; + margin-left: 0; } .el-transfer__button.is-with-texts { - border-radius: 4px; + border-radius: 4px; } .el-transfer__button.is-disabled, .el-transfer__button.is-disabled:hover { - border: 1px solid #dcdfe6; - background-color: #f5f7fa; - color: #c0c4cc; + border: 1px solid #dcdfe6; + background-color: #f5f7fa; + color: #c0c4cc; } .el-transfer__button:first-child { - margin-bottom: 10px; + margin-bottom: 10px; } .el-transfer__button:nth-child(2) { - margin: 0; + margin: 0; } .el-transfer__button i, .el-transfer__button span { - font-size: 14px; + font-size: 14px; } .el-transfer-panel { - border: 1px solid #ebeef5; - border-radius: 4px; - overflow: hidden; - background: #fff; - display: inline-block; - vertical-align: middle; - width: 200px; - max-height: 100%; - -webkit-box-sizing: border-box; - box-sizing: border-box; - position: relative; + border: 1px solid #ebeef5; + border-radius: 4px; + overflow: hidden; + background: #fff; + display: inline-block; + vertical-align: middle; + width: 200px; + max-height: 100%; + -webkit-box-sizing: border-box; + box-sizing: border-box; + position: relative; } .el-transfer-panel__body { - height: 246px; + height: 246px; } .el-transfer-panel__body.is-with-footer { - padding-bottom: 40px; + padding-bottom: 40px; } .el-transfer-panel__list { - margin: 0; - padding: 6px 0; - list-style: none; - height: 246px; - overflow: auto; - -webkit-box-sizing: border-box; - box-sizing: border-box; + margin: 0; + padding: 6px 0; + list-style: none; + height: 246px; + overflow: auto; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-transfer-panel__list.is-filterable { - height: 194px; - padding-top: 0; + height: 194px; + padding-top: 0; } .el-transfer-panel__item { - height: 30px; - line-height: 30px; - padding-left: 15px; - display: block !important; + height: 30px; + line-height: 30px; + padding-left: 15px; + display: block !important; } .el-transfer-panel__item.el-checkbox { - color: #606266; + color: #606266; } .el-transfer-panel__item:hover { - color: #51c21a; + color: #51c21a; } .el-transfer-panel__item.el-checkbox .el-checkbox__label { - width: 100%; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - display: block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding-left: 24px; - line-height: 30px; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + display: block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding-left: 24px; + line-height: 30px; } .el-transfer-panel__item .el-checkbox__input { - position: absolute; - top: 8px; + position: absolute; + top: 8px; } .el-transfer-panel__filter { - text-align: center; - margin: 15px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - display: block; - width: auto; + text-align: center; + margin: 15px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: block; + width: auto; } .el-transfer-panel__filter .el-input__inner { - height: 32px; - width: 100%; - font-size: 12px; - display: inline-block; - -webkit-box-sizing: border-box; - box-sizing: border-box; - border-radius: 16px; - padding-right: 10px; - padding-left: 30px; + height: 32px; + width: 100%; + font-size: 12px; + display: inline-block; + -webkit-box-sizing: border-box; + box-sizing: border-box; + border-radius: 16px; + padding-right: 10px; + padding-left: 30px; } .el-transfer-panel__filter .el-input__icon { - margin-left: 5px; + margin-left: 5px; } .el-transfer-panel .el-transfer-panel__header { - height: 40px; - line-height: 40px; - background: #f5f7fa; - margin: 0; - padding-left: 15px; - border-bottom: 1px solid #ebeef5; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #000; + height: 40px; + line-height: 40px; + background: #f5f7fa; + margin: 0; + padding-left: 15px; + border-bottom: 1px solid #ebeef5; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #000; } .el-transfer-panel .el-transfer-panel__header .el-checkbox { - display: block; - line-height: 40px; + display: block; + line-height: 40px; } .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label { - font-size: 16px; - color: #303133; - font-weight: 400; -} -.el-transfer-panel - .el-transfer-panel__header - .el-checkbox - .el-checkbox__label - span { - position: absolute; - right: 15px; - color: #909399; - font-size: 12px; - font-weight: 400; + font-size: 16px; + color: #303133; + font-weight: 400; +} +.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span { + position: absolute; + right: 15px; + color: #909399; + font-size: 12px; + font-weight: 400; } .el-divider__text, .el-link { - font-weight: 500; - font-size: 14px; + font-weight: 500; + font-size: 14px; } .el-transfer-panel .el-transfer-panel__footer { - height: 40px; - background: #fff; - margin: 0; - padding: 0; - border-top: 1px solid #ebeef5; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - z-index: 1; + height: 40px; + background: #fff; + margin: 0; + padding: 0; + border-top: 1px solid #ebeef5; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + z-index: 1; } .el-transfer-panel .el-transfer-panel__footer::after { - display: inline-block; - content: ""; - height: 100%; - vertical-align: middle; + display: inline-block; + content: ""; + height: 100%; + vertical-align: middle; } .el-container, .el-timeline-item__node { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-transfer-panel .el-transfer-panel__footer .el-checkbox { - padding-left: 20px; - color: #606266; + padding-left: 20px; + color: #606266; } .el-transfer-panel .el-transfer-panel__empty { - margin: 0; - height: 30px; - line-height: 30px; - padding: 6px 15px 0; - color: #909399; - text-align: center; + margin: 0; + height: 30px; + line-height: 30px; + padding: 6px 15px 0; + color: #909399; + text-align: center; } .el-transfer-panel .el-checkbox__label { - padding-left: 8px; + padding-left: 8px; } .el-transfer-panel .el-checkbox__inner { - height: 14px; - width: 14px; - border-radius: 3px; + height: 14px; + width: 14px; + border-radius: 3px; } .el-transfer-panel .el-checkbox__inner::after { - height: 6px; - width: 3px; - left: 4px; + height: 6px; + width: 3px; + left: 4px; } .el-container { - display: flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -ms-flex-preferred-size: auto; - flex-basis: auto; - -webkit-box-sizing: border-box; - box-sizing: border-box; - min-width: 0; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -ms-flex-preferred-size: auto; + flex-basis: auto; + -webkit-box-sizing: border-box; + box-sizing: border-box; + min-width: 0; } .el-container.is-vertical, .el-drawer { - -webkit-box-orient: vertical; - -webkit-box-direction: normal; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; } .el-aside, .el-header { - -webkit-box-sizing: border-box; + -webkit-box-sizing: border-box; } .el-container.is-vertical { - -ms-flex-direction: column; - flex-direction: column; + -ms-flex-direction: column; + flex-direction: column; } .el-header { - padding: 0 20px; - box-sizing: border-box; - -ms-flex-negative: 0; - flex-shrink: 0; + padding: 0 20px; + box-sizing: border-box; + -ms-flex-negative: 0; + flex-shrink: 0; } .el-aside { - overflow: auto; - box-sizing: border-box; - -ms-flex-negative: 0; - flex-shrink: 0; + overflow: auto; + box-sizing: border-box; + -ms-flex-negative: 0; + flex-shrink: 0; } .el-footer, .el-main { - -webkit-box-sizing: border-box; + -webkit-box-sizing: border-box; } .el-main { - display: block; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - -ms-flex-preferred-size: auto; - flex-basis: auto; - overflow: auto; - box-sizing: border-box; - padding: 20px; + display: block; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -ms-flex-preferred-size: auto; + flex-basis: auto; + overflow: auto; + box-sizing: border-box; + padding: 20px; } .el-footer { - padding: 0 20px; - box-sizing: border-box; - -ms-flex-negative: 0; - flex-shrink: 0; + padding: 0 20px; + box-sizing: border-box; + -ms-flex-negative: 0; + flex-shrink: 0; } .el-timeline { - margin: 0; - font-size: 14px; - list-style: none; + margin: 0; + font-size: 14px; + list-style: none; } .el-timeline .el-timeline-item:last-child .el-timeline-item__tail { - display: none; + display: none; } .el-timeline-item { - position: relative; - padding-bottom: 20px; + position: relative; + padding-bottom: 20px; } .el-timeline-item__wrapper { - position: relative; - padding-left: 28px; - top: -3px; + position: relative; + padding-left: 28px; + top: -3px; } .el-timeline-item__tail { - position: absolute; - left: 4px; - height: 100%; - border-left: 2px solid #e4e7ed; + position: absolute; + left: 4px; + height: 100%; + border-left: 2px solid #e4e7ed; } .el-timeline-item__icon { - color: #fff; - font-size: 13px; + color: #fff; + font-size: 13px; } .el-timeline-item__node { - position: absolute; - background-color: #e4e7ed; - border-radius: 50%; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + position: absolute; + background-color: #e4e7ed; + border-radius: 50%; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-image__error, .el-timeline-item__dot { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-timeline-item__node--normal { - left: -1px; - width: 12px; - height: 12px; + left: -1px; + width: 12px; + height: 12px; } .el-timeline-item__node--large { - left: -2px; - width: 14px; - height: 14px; + left: -2px; + width: 14px; + height: 14px; } .el-timeline-item__node--primary { - background-color: #51c21a; + background-color: #51c21a; } .el-timeline-item__node--success { - background-color: #67c23a; + background-color: #67c23a; } .el-timeline-item__node--warning { - background-color: #e6a23c; + background-color: #e6a23c; } .el-timeline-item__node--danger { - background-color: #f56c6c; + background-color: #f56c6c; } .el-timeline-item__node--info { - background-color: #909399; + background-color: #909399; } .el-timeline-item__dot { - position: absolute; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + position: absolute; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-timeline-item__content { - color: #303133; + color: #303133; } .el-timeline-item__timestamp { - color: #909399; - line-height: 1; - font-size: 13px; + color: #909399; + line-height: 1; + font-size: 13px; } .el-timeline-item__timestamp.is-top { - margin-bottom: 8px; - padding-top: 4px; + margin-bottom: 8px; + padding-top: 4px; } .el-timeline-item__timestamp.is-bottom { - margin-top: 8px; + margin-top: 8px; } .el-link { - display: -webkit-inline-box; - display: -ms-inline-flexbox; - display: inline-flex; - -webkit-box-orient: horizontal; - -webkit-box-direction: normal; - -ms-flex-direction: row; - flex-direction: row; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - vertical-align: middle; - position: relative; - text-decoration: none; - outline: 0; - padding: 0; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + vertical-align: middle; + position: relative; + text-decoration: none; + outline: 0; + padding: 0; } .el-link.is-underline:hover:after { - content: ""; - position: absolute; - left: 0; - right: 0; - height: 0; - bottom: 0; - border-bottom: 1px solid #51c21a; + content: ""; + position: absolute; + left: 0; + right: 0; + height: 0; + bottom: 0; + border-bottom: 1px solid #51c21a; } .el-link.el-link--default:after, .el-link.el-link--primary.is-underline:hover:after, .el-link.el-link--primary:after { - border-color: #51c21a; + border-color: #51c21a; } .el-link.is-disabled { - cursor: not-allowed; + cursor: not-allowed; } .el-link [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-link.el-link--default { - color: #606266; + color: #606266; } .el-link.el-link--default:hover { - color: #51c21a; + color: #51c21a; } .el-link.el-link--default.is-disabled { - color: #c0c4cc; + color: #c0c4cc; } .el-link.el-link--primary { - color: #51c21a; + color: #51c21a; } .el-link.el-link--primary:hover { - color: #74ce48; + color: rgb(116, 206, 72); } .el-link.el-link--primary.is-disabled { - color: #a8e18d; + color: rgb(168, 225, 141); } .el-link.el-link--danger.is-underline:hover:after, .el-link.el-link--danger:after { - border-color: #f56c6c; + border-color: #f56c6c; } .el-link.el-link--danger { - color: #f56c6c; + color: #f56c6c; } .el-link.el-link--danger:hover { - color: #f78989; + color: #f78989; } .el-link.el-link--danger.is-disabled { - color: #fab6b6; + color: #fab6b6; } .el-link.el-link--success.is-underline:hover:after, .el-link.el-link--success:after { - border-color: #67c23a; + border-color: #67c23a; } .el-link.el-link--success { - color: #67c23a; + color: #67c23a; } .el-link.el-link--success:hover { - color: #85ce61; + color: #85ce61; } .el-link.el-link--success.is-disabled { - color: #b3e19d; + color: #b3e19d; } .el-link.el-link--warning.is-underline:hover:after, .el-link.el-link--warning:after { - border-color: #e6a23c; + border-color: #e6a23c; } .el-link.el-link--warning { - color: #e6a23c; + color: #e6a23c; } .el-link.el-link--warning:hover { - color: #ebb563; + color: #ebb563; } .el-link.el-link--warning.is-disabled { - color: #f3d19e; + color: #f3d19e; } .el-link.el-link--info.is-underline:hover:after, .el-link.el-link--info:after { - border-color: #909399; + border-color: #909399; } .el-link.el-link--info { - color: #909399; + color: #909399; } .el-link.el-link--info:hover { - color: #a6a9ad; + color: #a6a9ad; } .el-link.el-link--info.is-disabled { - color: #c8c9cc; + color: #c8c9cc; } .el-divider { - background-color: #dcdfe6; - position: relative; + background-color: #dcdfe6; + position: relative; } .el-divider--horizontal { - display: block; - height: 1px; - width: 100%; - margin: 24px 0; + display: block; + height: 1px; + width: 100%; + margin: 24px 0; } .el-divider--vertical { - display: inline-block; - width: 1px; - height: 1em; - margin: 0 8px; - vertical-align: middle; - position: relative; + display: inline-block; + width: 1px; + height: 1em; + margin: 0 8px; + vertical-align: middle; + position: relative; } .el-divider__text { - position: absolute; - background-color: #fff; - padding: 0 20px; - color: #303133; + position: absolute; + background-color: #fff; + padding: 0 20px; + color: #303133; } .el-image__error, .el-image__placeholder { - background: #f5f7fa; + background: #f5f7fa; } .el-divider__text.is-left { - left: 20px; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); + left: 20px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } .el-divider__text.is-center { - left: 50%; - -webkit-transform: translateX(-50%) translateY(-50%); - transform: translateX(-50%) translateY(-50%); + left: 50%; + -webkit-transform: translateX(-50%) translateY(-50%); + transform: translateX(-50%) translateY(-50%); } .el-divider__text.is-right { - right: 20px; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); + right: 20px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); } .el-image__error, .el-image__inner, .el-image__placeholder { - width: 100%; - height: 100%; + width: 100%; + height: 100%; } .el-image { - position: relative; - display: inline-block; - overflow: hidden; + position: relative; + display: inline-block; + overflow: hidden; } .el-image__inner { - vertical-align: top; + vertical-align: top; } .el-image__inner--center { - position: relative; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - display: block; + position: relative; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + display: block; } .el-image__error { - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - font-size: 14px; - color: #c0c4cc; - vertical-align: middle; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-size: 14px; + color: #c0c4cc; + vertical-align: middle; } .el-image__preview { - cursor: pointer; + cursor: pointer; } .el-image-viewer__wrapper { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; } .el-image-viewer__btn { - position: absolute; - z-index: 1; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - border-radius: 50%; - opacity: 0.8; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; - user-select: none; + position: absolute; + z-index: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + border-radius: 50%; + opacity: 0.8; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; + user-select: none; } .el-button, .el-checkbox { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; } .el-image-viewer__close { - top: 40px; - right: 40px; - width: 40px; - height: 40px; - font-size: 24px; - color: #fff; - background-color: #606266; + top: 40px; + right: 40px; + width: 40px; + height: 40px; + font-size: 24px; + color: #fff; + background-color: #606266; } .el-image-viewer__canvas { - width: 100%; - height: 100%; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + width: 100%; + height: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-image-viewer__actions { - left: 50%; - bottom: 30px; - -webkit-transform: translateX(-50%); - transform: translateX(-50%); - width: 282px; - height: 44px; - padding: 0 23px; - background-color: #606266; - border-color: #fff; - border-radius: 22px; + left: 50%; + bottom: 30px; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + width: 282px; + height: 44px; + padding: 0 23px; + background-color: #606266; + border-color: #fff; + border-radius: 22px; } .el-image-viewer__actions__inner { - width: 100%; - height: 100%; - text-align: justify; - cursor: default; - font-size: 23px; - color: #fff; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -ms-flex-pack: distribute; - justify-content: space-around; + width: 100%; + height: 100%; + text-align: justify; + cursor: default; + font-size: 23px; + color: #fff; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -ms-flex-pack: distribute; + justify-content: space-around; } .el-image-viewer__next, .el-image-viewer__prev { - top: 50%; - width: 44px; - height: 44px; - font-size: 24px; - color: #fff; - background-color: #606266; - border-color: #fff; + top: 50%; + width: 44px; + height: 44px; + font-size: 24px; + color: #fff; + background-color: #606266; + border-color: #fff; } .el-image-viewer__prev { - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - left: 40px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + left: 40px; } .el-image-viewer__next { - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - right: 40px; - text-indent: 2px; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + right: 40px; + text-indent: 2px; } .el-image-viewer__mask { - position: absolute; - width: 100%; - height: 100%; - top: 0; - left: 0; - opacity: 0.5; - background: #000; + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + opacity: 0.5; + background: #000; } .viewer-fade-enter-active { - -webkit-animation: viewer-fade-in 0.3s; - animation: viewer-fade-in 0.3s; + -webkit-animation: viewer-fade-in 0.3s; + animation: viewer-fade-in 0.3s; } .viewer-fade-leave-active { - -webkit-animation: viewer-fade-out 0.3s; - animation: viewer-fade-out 0.3s; + -webkit-animation: viewer-fade-out 0.3s; + animation: viewer-fade-out 0.3s; } @-webkit-keyframes viewer-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @keyframes viewer-fade-in { - 0% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } - 100% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } + 0% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } } @-webkit-keyframes viewer-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } @keyframes viewer-fade-out { - 0% { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } - 100% { - -webkit-transform: translate3d(0, -20px, 0); - transform: translate3d(0, -20px, 0); - opacity: 0; - } + 0% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + opacity: 1; + } + 100% { + -webkit-transform: translate3d(0, -20px, 0); + transform: translate3d(0, -20px, 0); + opacity: 0; + } } .el-button { - display: inline-block; - line-height: 1; - white-space: nowrap; - cursor: pointer; - background: #fff; - border: 1px solid #dcdfe6; - color: #606266; - -webkit-appearance: none; - text-align: center; - -webkit-box-sizing: border-box; - box-sizing: border-box; - outline: 0; - margin: 0; - -webkit-transition: 0.1s; - transition: 0.1s; - font-weight: 500; - padding: 12px 20px; - font-size: 14px; - border-radius: 4px; + display: inline-block; + line-height: 1; + white-space: nowrap; + cursor: pointer; + background: #fff; + border: 1px solid #dcdfe6; + color: #606266; + -webkit-appearance: none; + text-align: center; + -webkit-box-sizing: border-box; + box-sizing: border-box; + outline: 0; + margin: 0; + -webkit-transition: 0.1s; + transition: 0.1s; + font-weight: 500; + padding: 12px 20px; + font-size: 14px; + border-radius: 4px; } .el-button + .el-button { - margin-left: 10px; + margin-left: 10px; } .el-button:focus, .el-button:hover { - color: #51c21a; - border-color: #cbedba; - background-color: #eef9e8; + color: #51c21a; + border-color: rgb(203, 237, 186); + background-color: rgb(238, 249, 232); } .el-button:active { - color: #49af17; - border-color: #49af17; - outline: 0; + color: rgb(73, 175, 23); + border-color: rgb(73, 175, 23); + outline: 0; } .el-button::-moz-focus-inner { - border: 0; + border: 0; } .el-button [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-button.is-plain:focus, .el-button.is-plain:hover { - background: #fff; - border-color: #51c21a; - color: #51c21a; + background: #fff; + border-color: #51c21a; + color: #51c21a; } .el-button.is-active, .el-button.is-plain:active { - color: #49af17; - border-color: #49af17; + color: rgb(73, 175, 23); + border-color: rgb(73, 175, 23); } .el-button.is-plain:active { - background: #fff; - outline: 0; + background: #fff; + outline: 0; } .el-button.is-disabled, .el-button.is-disabled:focus, .el-button.is-disabled:hover { - color: #c0c4cc; - cursor: not-allowed; - background-image: none; - background-color: #fff; - border-color: #ebeef5; + color: #c0c4cc; + cursor: not-allowed; + background-image: none; + background-color: #fff; + border-color: #ebeef5; } .el-button.is-disabled.el-button--text { - background-color: transparent; + background-color: transparent; } .el-button.is-disabled.is-plain, .el-button.is-disabled.is-plain:focus, .el-button.is-disabled.is-plain:hover { - background-color: #fff; - border-color: #ebeef5; - color: #c0c4cc; + background-color: #fff; + border-color: #ebeef5; + color: #c0c4cc; } .el-button.is-loading { - position: relative; - pointer-events: none; + position: relative; + pointer-events: none; } .el-button.is-loading:before { - pointer-events: none; - content: ""; - position: absolute; - left: -1px; - top: -1px; - right: -1px; - bottom: -1px; - border-radius: inherit; - background-color: rgba(255, 255, 255, 0.35); + pointer-events: none; + content: ""; + position: absolute; + left: -1px; + top: -1px; + right: -1px; + bottom: -1px; + border-radius: inherit; + background-color: rgba(255, 255, 255, 0.35); } .el-button.is-round { - border-radius: 20px; - padding: 12px 23px; + border-radius: 20px; + padding: 12px 23px; } .el-button.is-circle { - border-radius: 50%; - padding: 12px; + border-radius: 50%; + padding: 12px; } .el-button--primary { - color: #fff; - background-color: #51c21a; - border-color: #51c21a; + color: #fff; + background-color: #51c21a; + border-color: #51c21a; } .el-button--primary:focus, .el-button--primary:hover { - background: #74ce48; - border-color: #74ce48; - color: #fff; + background: rgb(116, 206, 72); + border-color: rgb(116, 206, 72); + color: #fff; } .el-button--primary.is-active, .el-button--primary:active { - background: #49af17; - border-color: #49af17; - color: #fff; + background: rgb(73, 175, 23); + border-color: rgb(73, 175, 23); + color: #fff; } .el-button--primary:active { - outline: 0; + outline: 0; } .el-button--primary.is-disabled, .el-button--primary.is-disabled:active, .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:hover { - color: #fff; - background-color: #a8e18d; - border-color: #a8e18d; + color: #fff; + background-color: rgb(168, 225, 141); + border-color: rgb(168, 225, 141); } .el-button--primary.is-plain { - color: #51c21a; - background: #eef9e8; - border-color: #b9e7a3; + color: #51c21a; + background: rgb(238, 249, 232); + border-color: rgb(185, 231, 163); } .el-button--primary.is-plain:focus, .el-button--primary.is-plain:hover { - background: #51c21a; - border-color: #51c21a; - color: #fff; + background: #51c21a; + border-color: #51c21a; + color: #fff; } .el-button--primary.is-plain:active { - background: #49af17; - border-color: #49af17; - color: #fff; - outline: 0; + background: rgb(73, 175, 23); + border-color: rgb(73, 175, 23); + color: #fff; + outline: 0; } .el-button--primary.is-plain.is-disabled, .el-button--primary.is-plain.is-disabled:active, .el-button--primary.is-plain.is-disabled:focus, .el-button--primary.is-plain.is-disabled:hover { - color: #97da76; - background-color: #eef9e8; - border-color: #dcf3d1; + color: rgb(151, 218, 118); + background-color: rgb(238, 249, 232); + border-color: rgb(220, 243, 209); } .el-button--success { - color: #fff; - background-color: #67c23a; - border-color: #67c23a; + color: #fff; + background-color: #67c23a; + border-color: #67c23a; } .el-button--success:focus, .el-button--success:hover { - background: #85ce61; - border-color: #85ce61; - color: #fff; + background: #85ce61; + border-color: #85ce61; + color: #fff; } .el-button--success.is-active, .el-button--success:active { - background: #5daf34; - border-color: #5daf34; - color: #fff; + background: #5daf34; + border-color: #5daf34; + color: #fff; } .el-button--success:active { - outline: 0; + outline: 0; } .el-button--success.is-disabled, .el-button--success.is-disabled:active, .el-button--success.is-disabled:focus, .el-button--success.is-disabled:hover { - color: #fff; - background-color: #b3e19d; - border-color: #b3e19d; + color: #fff; + background-color: #b3e19d; + border-color: #b3e19d; } .el-button--success.is-plain { - color: #67c23a; - background: #f0f9eb; - border-color: #c2e7b0; + color: #67c23a; + background: #f0f9eb; + border-color: #c2e7b0; } .el-button--success.is-plain:focus, .el-button--success.is-plain:hover { - background: #67c23a; - border-color: #67c23a; - color: #fff; + background: #67c23a; + border-color: #67c23a; + color: #fff; } .el-button--success.is-plain:active { - background: #5daf34; - border-color: #5daf34; - color: #fff; - outline: 0; + background: #5daf34; + border-color: #5daf34; + color: #fff; + outline: 0; } .el-button--success.is-plain.is-disabled, .el-button--success.is-plain.is-disabled:active, .el-button--success.is-plain.is-disabled:focus, .el-button--success.is-plain.is-disabled:hover { - color: #a4da89; - background-color: #f0f9eb; - border-color: #e1f3d8; + color: #a4da89; + background-color: #f0f9eb; + border-color: #e1f3d8; } .el-button--warning { - color: #fff; - background-color: #e6a23c; - border-color: #e6a23c; + color: #fff; + background-color: #e6a23c; + border-color: #e6a23c; } .el-button--warning:focus, .el-button--warning:hover { - background: #ebb563; - border-color: #ebb563; - color: #fff; + background: #ebb563; + border-color: #ebb563; + color: #fff; } .el-button--warning.is-active, .el-button--warning:active { - background: #cf9236; - border-color: #cf9236; - color: #fff; + background: #cf9236; + border-color: #cf9236; + color: #fff; } .el-button--warning:active { - outline: 0; + outline: 0; } .el-button--warning.is-disabled, .el-button--warning.is-disabled:active, .el-button--warning.is-disabled:focus, .el-button--warning.is-disabled:hover { - color: #fff; - background-color: #f3d19e; - border-color: #f3d19e; + color: #fff; + background-color: #f3d19e; + border-color: #f3d19e; } .el-button--warning.is-plain { - color: #e6a23c; - background: #fdf6ec; - border-color: #f5dab1; + color: #e6a23c; + background: #fdf6ec; + border-color: #f5dab1; } .el-button--warning.is-plain:focus, .el-button--warning.is-plain:hover { - background: #e6a23c; - border-color: #e6a23c; - color: #fff; + background: #e6a23c; + border-color: #e6a23c; + color: #fff; } .el-button--warning.is-plain:active { - background: #cf9236; - border-color: #cf9236; - color: #fff; - outline: 0; + background: #cf9236; + border-color: #cf9236; + color: #fff; + outline: 0; } .el-button--warning.is-plain.is-disabled, .el-button--warning.is-plain.is-disabled:active, .el-button--warning.is-plain.is-disabled:focus, .el-button--warning.is-plain.is-disabled:hover { - color: #f0c78a; - background-color: #fdf6ec; - border-color: #faecd8; + color: #f0c78a; + background-color: #fdf6ec; + border-color: #faecd8; } .el-button--danger { - color: #fff; - background-color: #f56c6c; - border-color: #f56c6c; + color: #fff; + background-color: #f56c6c; + border-color: #f56c6c; } .el-button--danger:focus, .el-button--danger:hover { - background: #f78989; - border-color: #f78989; - color: #fff; + background: #f78989; + border-color: #f78989; + color: #fff; } .el-button--danger.is-active, .el-button--danger:active { - background: #dd6161; - border-color: #dd6161; - color: #fff; + background: #dd6161; + border-color: #dd6161; + color: #fff; } .el-button--danger:active { - outline: 0; + outline: 0; } .el-button--danger.is-disabled, .el-button--danger.is-disabled:active, .el-button--danger.is-disabled:focus, .el-button--danger.is-disabled:hover { - color: #fff; - background-color: #fab6b6; - border-color: #fab6b6; + color: #fff; + background-color: #fab6b6; + border-color: #fab6b6; } .el-button--danger.is-plain { - color: #f56c6c; - background: #fef0f0; - border-color: #fbc4c4; + color: #f56c6c; + background: #fef0f0; + border-color: #fbc4c4; } .el-button--danger.is-plain:focus, .el-button--danger.is-plain:hover { - background: #f56c6c; - border-color: #f56c6c; - color: #fff; + background: #f56c6c; + border-color: #f56c6c; + color: #fff; } .el-button--danger.is-plain:active { - background: #dd6161; - border-color: #dd6161; - color: #fff; - outline: 0; + background: #dd6161; + border-color: #dd6161; + color: #fff; + outline: 0; } .el-button--danger.is-plain.is-disabled, .el-button--danger.is-plain.is-disabled:active, .el-button--danger.is-plain.is-disabled:focus, .el-button--danger.is-plain.is-disabled:hover { - color: #f9a7a7; - background-color: #fef0f0; - border-color: #fde2e2; + color: #f9a7a7; + background-color: #fef0f0; + border-color: #fde2e2; } .el-button--info { - color: #fff; - background-color: #909399; - border-color: #909399; + color: #fff; + background-color: #909399; + border-color: #909399; } .el-button--info:focus, .el-button--info:hover { - background: #a6a9ad; - border-color: #a6a9ad; - color: #fff; + background: #a6a9ad; + border-color: #a6a9ad; + color: #fff; } .el-button--info.is-active, .el-button--info:active { - background: #82848a; - border-color: #82848a; - color: #fff; + background: #82848a; + border-color: #82848a; + color: #fff; } .el-button--info:active { - outline: 0; + outline: 0; } .el-button--info.is-disabled, .el-button--info.is-disabled:active, .el-button--info.is-disabled:focus, .el-button--info.is-disabled:hover { - color: #fff; - background-color: #c8c9cc; - border-color: #c8c9cc; + color: #fff; + background-color: #c8c9cc; + border-color: #c8c9cc; } .el-button--info.is-plain { - color: #909399; - background: #f4f4f5; - border-color: #d3d4d6; + color: #909399; + background: #f4f4f5; + border-color: #d3d4d6; } .el-button--info.is-plain:focus, .el-button--info.is-plain:hover { - background: #909399; - border-color: #909399; - color: #fff; + background: #909399; + border-color: #909399; + color: #fff; } .el-button--info.is-plain:active { - background: #82848a; - border-color: #82848a; - color: #fff; - outline: 0; + background: #82848a; + border-color: #82848a; + color: #fff; + outline: 0; } .el-button--info.is-plain.is-disabled, .el-button--info.is-plain.is-disabled:active, .el-button--info.is-plain.is-disabled:focus, .el-button--info.is-plain.is-disabled:hover { - color: #bcbec2; - background-color: #f4f4f5; - border-color: #e9e9eb; + color: #bcbec2; + background-color: #f4f4f5; + border-color: #e9e9eb; } .el-button--text, .el-button--text.is-disabled, .el-button--text.is-disabled:focus, .el-button--text.is-disabled:hover, .el-button--text:active { - border-color: transparent; + border-color: transparent; } .el-button--medium { - padding: 10px 20px; - font-size: 14px; - border-radius: 4px; + padding: 10px 20px; + font-size: 14px; + border-radius: 4px; } .el-button--mini, .el-button--small { - font-size: 12px; - border-radius: 3px; + font-size: 12px; + border-radius: 3px; } .el-button--medium.is-round { - padding: 10px 20px; + padding: 10px 20px; } .el-button--medium.is-circle { - padding: 10px; + padding: 10px; } .el-button--small, .el-button--small.is-round { - padding: 9px 15px; + padding: 9px 15px; } .el-button--small.is-circle { - padding: 9px; + padding: 9px; } .el-button--mini, .el-button--mini.is-round { - padding: 7px 15px; + padding: 7px 15px; } .el-button--mini.is-circle { - padding: 7px; + padding: 7px; } .el-button--text { - color: #51c21a; - background: 0 0; - padding-left: 0; - padding-right: 0; + color: #51c21a; + background: 0 0; + padding-left: 0; + padding-right: 0; } .el-button--text:focus, .el-button--text:hover { - color: #74ce48; - border-color: transparent; - background-color: transparent; + color: rgb(116, 206, 72); + border-color: transparent; + background-color: transparent; } .el-button--text:active { - color: #49af17; - background-color: transparent; + color: rgb(73, 175, 23); + background-color: transparent; } .el-button-group { - display: inline-block; - vertical-align: middle; + display: inline-block; + vertical-align: middle; } .el-button-group::after, .el-button-group::before { - display: table; - content: ""; + display: table; + content: ""; } .el-button-group::after { - clear: both; + clear: both; } .el-button-group > .el-button { - float: left; - position: relative; + float: left; + position: relative; } .el-button-group > .el-button + .el-button { - margin-left: 0; + margin-left: 0; } .el-button-group > .el-button.is-disabled { - z-index: 1; + z-index: 1; } .el-button-group > .el-button:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 0; } .el-button-group > .el-button:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; } .el-button-group > .el-button:first-child:last-child { - border-radius: 4px; + border-radius: 4px; } .el-button-group > .el-button:first-child:last-child.is-round { - border-radius: 20px; + border-radius: 20px; } .el-button-group > .el-button:first-child:last-child.is-circle { - border-radius: 50%; + border-radius: 50%; } .el-button-group > .el-button:not(:first-child):not(:last-child) { - border-radius: 0; + border-radius: 0; } .el-button-group > .el-button:not(:last-child) { - margin-right: -1px; + margin-right: -1px; } .el-button-group > .el-button.is-active, .el-button-group > .el-button:active, .el-button-group > .el-button:focus, .el-button-group > .el-button:hover { - z-index: 1; + z-index: 1; } .el-button-group > .el-dropdown > .el-button { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-color: rgba(255, 255, 255, 0.5); + border-top-left-radius: 0; + border-bottom-left-radius: 0; + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--primary:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--primary:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--primary:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--success:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--success:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--success:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--warning:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--warning:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--warning:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--danger:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--danger:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--danger:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--info:first-child { - border-right-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--info:last-child { - border-left-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); } .el-button-group .el-button--info:not(:first-child):not(:last-child) { - border-left-color: rgba(255, 255, 255, 0.5); - border-right-color: rgba(255, 255, 255, 0.5); + border-left-color: rgba(255, 255, 255, 0.5); + border-right-color: rgba(255, 255, 255, 0.5); } .el-calendar { - background-color: #fff; + background-color: #fff; } .el-calendar__header { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-pack: justify; - -ms-flex-pack: justify; - justify-content: space-between; - padding: 12px 20px; - border-bottom: 1px solid #ebeef5; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 12px 20px; + border-bottom: 1px solid #ebeef5; } .el-backtop, .el-page-header { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-calendar__title { - color: #000; - -ms-flex-item-align: center; - align-self: center; + color: #000; + -ms-flex-item-align: center; + align-self: center; } .el-calendar__body { - padding: 12px 20px 35px; + padding: 12px 20px 35px; } .el-calendar-table { - table-layout: fixed; - width: 100%; + table-layout: fixed; + width: 100%; } .el-calendar-table thead th { - padding: 12px 0; - color: #606266; - font-weight: 400; + padding: 12px 0; + color: #606266; + font-weight: 400; } .el-calendar-table:not(.is-range) td.next, .el-calendar-table:not(.is-range) td.prev { - color: #c0c4cc; + color: #c0c4cc; } .el-backtop, .el-calendar-table td.is-today { - color: #51c21a; + color: #51c21a; } .el-calendar-table td { - border-bottom: 1px solid #ebeef5; - border-right: 1px solid #ebeef5; - vertical-align: top; - -webkit-transition: background-color 0.2s ease; - transition: background-color 0.2s ease; + border-bottom: 1px solid #ebeef5; + border-right: 1px solid #ebeef5; + vertical-align: top; + -webkit-transition: background-color 0.2s ease; + transition: background-color 0.2s ease; } .el-calendar-table td.is-selected { - background-color: #f2f8fe; + background-color: #f2f8fe; } .el-calendar-table tr:first-child td { - border-top: 1px solid #ebeef5; + border-top: 1px solid #ebeef5; } .el-calendar-table tr td:first-child { - border-left: 1px solid #ebeef5; + border-left: 1px solid #ebeef5; } .el-calendar-table tr.el-calendar-table__row--hide-border td { - border-top: none; + border-top: none; } .el-calendar-table .el-calendar-day { - -webkit-box-sizing: border-box; - box-sizing: border-box; - padding: 8px; - height: 85px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 8px; + height: 85px; } .el-calendar-table .el-calendar-day:hover { - cursor: pointer; - background-color: #f2f8fe; + cursor: pointer; + background-color: #f2f8fe; } .el-backtop { - position: fixed; - background-color: #fff; - width: 40px; - height: 40px; - border-radius: 50%; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; - font-size: 20px; - -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); - box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); - cursor: pointer; - z-index: 5; + position: fixed; + background-color: #fff; + width: 40px; + height: 40px; + border-radius: 50%; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + font-size: 20px; + -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); + box-shadow: 0 0 6px rgba(0, 0, 0, 0.12); + cursor: pointer; + z-index: 5; } .el-backtop:hover { - background-color: #f2f6fc; + background-color: #f2f6fc; } .el-page-header { - display: flex; - line-height: 24px; + display: flex; + line-height: 24px; } .el-page-header__left { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - cursor: pointer; - margin-right: 40px; - position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + cursor: pointer; + margin-right: 40px; + position: relative; } .el-page-header__left::after { - content: ""; - position: absolute; - width: 1px; - height: 16px; - right: -20px; - top: 50%; - -webkit-transform: translateY(-50%); - transform: translateY(-50%); - background-color: #dcdfe6; + content: ""; + position: absolute; + width: 1px; + height: 16px; + right: -20px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + background-color: #dcdfe6; } .el-checkbox, .el-checkbox__input { - display: inline-block; - position: relative; - white-space: nowrap; + display: inline-block; + position: relative; + white-space: nowrap; } .el-page-header__left .el-icon-back { - font-size: 18px; - margin-right: 6px; - -ms-flex-item-align: center; - align-self: center; + font-size: 18px; + margin-right: 6px; + -ms-flex-item-align: center; + align-self: center; } .el-page-header__title { - font-size: 14px; - font-weight: 500; + font-size: 14px; + font-weight: 500; } .el-page-header__content { - font-size: 18px; - color: #303133; + font-size: 18px; + color: #303133; } .el-checkbox { - color: #606266; - font-weight: 500; - font-size: 14px; - cursor: pointer; - user-select: none; - margin-right: 30px; + color: #606266; + font-weight: 500; + font-size: 14px; + cursor: pointer; + user-select: none; + margin-right: 30px; } .el-checkbox-button__inner, .el-radio { - font-weight: 500; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; + font-weight: 500; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } .el-checkbox.is-bordered { - padding: 9px 20px 9px 10px; - border-radius: 4px; - border: 1px solid #dcdfe6; - -webkit-box-sizing: border-box; - box-sizing: border-box; - line-height: normal; - height: 40px; + padding: 9px 20px 9px 10px; + border-radius: 4px; + border: 1px solid #dcdfe6; + -webkit-box-sizing: border-box; + box-sizing: border-box; + line-height: normal; + height: 40px; } .el-checkbox.is-bordered.is-checked { - border-color: #51c21a; + border-color: #51c21a; } .el-checkbox.is-bordered.is-disabled { - border-color: #ebeef5; - cursor: not-allowed; + border-color: #ebeef5; + cursor: not-allowed; } .el-checkbox.is-bordered + .el-checkbox.is-bordered { - margin-left: 10px; + margin-left: 10px; } .el-checkbox.is-bordered.el-checkbox--medium { - padding: 7px 20px 7px 10px; - border-radius: 4px; - height: 36px; + padding: 7px 20px 7px 10px; + border-radius: 4px; + height: 36px; } .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label { - line-height: 17px; - font-size: 14px; + line-height: 17px; + font-size: 14px; } .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner { - height: 14px; - width: 14px; + height: 14px; + width: 14px; } .el-checkbox.is-bordered.el-checkbox--small { - padding: 5px 15px 5px 10px; - border-radius: 3px; - height: 32px; + padding: 5px 15px 5px 10px; + border-radius: 3px; + height: 32px; } .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label { - line-height: 15px; - font-size: 12px; + line-height: 15px; + font-size: 12px; } .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after { - height: 6px; - width: 2px; + height: 6px; + width: 2px; } .el-checkbox.is-bordered.el-checkbox--mini { - padding: 3px 15px 3px 10px; - border-radius: 3px; - height: 28px; + padding: 3px 15px 3px 10px; + border-radius: 3px; + height: 28px; } .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label { - line-height: 12px; - font-size: 12px; + line-height: 12px; + font-size: 12px; } .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after { - height: 6px; - width: 2px; + height: 6px; + width: 2px; } .el-checkbox__input { - cursor: pointer; - outline: 0; - line-height: 1; - vertical-align: middle; + cursor: pointer; + outline: 0; + line-height: 1; + vertical-align: middle; } .el-checkbox__input.is-disabled .el-checkbox__inner { - background-color: #edf2fc; - border-color: #dcdfe6; - cursor: not-allowed; + background-color: #edf2fc; + border-color: #dcdfe6; + cursor: not-allowed; } .el-checkbox__input.is-disabled .el-checkbox__inner::after { - cursor: not-allowed; - border-color: #c0c4cc; + cursor: not-allowed; + border-color: #c0c4cc; } .el-checkbox__input.is-disabled .el-checkbox__inner + .el-checkbox__label { - cursor: not-allowed; + cursor: not-allowed; } .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner { - background-color: #f2f6fc; - border-color: #dcdfe6; + background-color: #f2f6fc; + border-color: #dcdfe6; } .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after { - border-color: #c0c4cc; + border-color: #c0c4cc; } .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner { - background-color: #f2f6fc; - border-color: #dcdfe6; + background-color: #f2f6fc; + border-color: #dcdfe6; } .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before { - background-color: #c0c4cc; - border-color: #c0c4cc; + background-color: #c0c4cc; + border-color: #c0c4cc; } .el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner { - background-color: #51c21a; - border-color: #51c21a; + background-color: #51c21a; + border-color: #51c21a; } .el-checkbox__input.is-disabled + span.el-checkbox__label { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-checkbox__input.is-checked .el-checkbox__inner::after { - -webkit-transform: rotate(45deg) scaleY(1); - transform: rotate(45deg) scaleY(1); + -webkit-transform: rotate(45deg) scaleY(1); + transform: rotate(45deg) scaleY(1); } .el-checkbox__input.is-checked + .el-checkbox__label { - color: #51c21a; + color: #51c21a; } .el-checkbox__input.is-focus .el-checkbox__inner { - border-color: #51c21a; + border-color: #51c21a; } .el-checkbox__input.is-indeterminate .el-checkbox__inner::before { - content: ""; - position: absolute; - display: block; - background-color: #fff; - height: 2px; - -webkit-transform: scale(0.5); - transform: scale(0.5); - left: 0; - right: 0; - top: 5px; + content: ""; + position: absolute; + display: block; + background-color: #fff; + height: 2px; + -webkit-transform: scale(0.5); + transform: scale(0.5); + left: 0; + right: 0; + top: 5px; } .el-checkbox__input.is-indeterminate .el-checkbox__inner::after { - display: none; + display: none; } .el-checkbox__inner { - display: inline-block; - position: relative; - border: 1px solid #dcdfe6; - border-radius: 2px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 14px; - height: 14px; - background-color: #fff; - z-index: 1; - -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), - background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); - transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), - background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); + display: inline-block; + position: relative; + border: 1px solid #dcdfe6; + border-radius: 2px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + width: 14px; + height: 14px; + background-color: #fff; + z-index: 1; + -webkit-transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), + background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); + transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), + background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); } .el-checkbox__inner:hover { - border-color: #51c21a; + border-color: #51c21a; } .el-checkbox__inner::after { - -webkit-box-sizing: content-box; - box-sizing: content-box; - content: ""; - border: 1px solid #fff; - border-left: 0; - border-top: 0; - height: 7px; - left: 4px; - position: absolute; - top: 1px; - -webkit-transform: rotate(45deg) scaleY(0); - transform: rotate(45deg) scaleY(0); - width: 3px; - -webkit-transition: -webkit-transform 0.15s ease-in 0.05s; - transition: -webkit-transform 0.15s ease-in 0.05s; - transition: transform 0.15s ease-in 0.05s; - transition: transform 0.15s ease-in 0.05s, - -webkit-transform 0.15s ease-in 0.05s; - -webkit-transform-origin: center; - transform-origin: center; + -webkit-box-sizing: content-box; + box-sizing: content-box; + content: ""; + border: 1px solid #fff; + border-left: 0; + border-top: 0; + height: 7px; + left: 4px; + position: absolute; + top: 1px; + -webkit-transform: rotate(45deg) scaleY(0); + transform: rotate(45deg) scaleY(0); + width: 3px; + -webkit-transition: -webkit-transform 0.15s ease-in 0.05s; + transition: -webkit-transform 0.15s ease-in 0.05s; + transition: transform 0.15s ease-in 0.05s; + transition: transform 0.15s ease-in 0.05s, -webkit-transform 0.15s ease-in 0.05s; + -webkit-transform-origin: center; + transform-origin: center; } .el-checkbox__original { - opacity: 0; - outline: 0; - position: absolute; - margin: 0; - width: 0; - height: 0; - z-index: -1; + opacity: 0; + outline: 0; + position: absolute; + margin: 0; + width: 0; + height: 0; + z-index: -1; } .el-checkbox-button, .el-checkbox-button__inner { - display: inline-block; - position: relative; + display: inline-block; + position: relative; } .el-checkbox__label { - display: inline-block; - padding-left: 10px; - line-height: 19px; - font-size: 14px; + display: inline-block; + padding-left: 10px; + line-height: 19px; + font-size: 14px; } .el-checkbox:last-of-type { - margin-right: 0; + margin-right: 0; } .el-checkbox-button__inner { - line-height: 1; - white-space: nowrap; - vertical-align: middle; - cursor: pointer; - background: #fff; - border: 1px solid #dcdfe6; - border-left: 0; - color: #606266; - -webkit-appearance: none; - text-align: center; - -webkit-box-sizing: border-box; - box-sizing: border-box; - outline: 0; - margin: 0; - -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); - padding: 12px 20px; - font-size: 14px; - border-radius: 0; + line-height: 1; + white-space: nowrap; + vertical-align: middle; + cursor: pointer; + background: #fff; + border: 1px solid #dcdfe6; + border-left: 0; + color: #606266; + -webkit-appearance: none; + text-align: center; + -webkit-box-sizing: border-box; + box-sizing: border-box; + outline: 0; + margin: 0; + -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); + padding: 12px 20px; + font-size: 14px; + border-radius: 0; } .el-checkbox-button__inner.is-round { - padding: 12px 20px; + padding: 12px 20px; } .el-checkbox-button__inner:hover { - color: #51c21a; + color: #51c21a; } .el-checkbox-button__inner [class*="el-icon-"] { - line-height: 0.9; + line-height: 0.9; } .el-radio, .el-radio__input { - line-height: 1; - white-space: nowrap; - outline: 0; + line-height: 1; + white-space: nowrap; + outline: 0; } .el-checkbox-button__inner [class*="el-icon-"] + span { - margin-left: 5px; + margin-left: 5px; } .el-checkbox-button__original { - opacity: 0; - outline: 0; - position: absolute; - margin: 0; - z-index: -1; + opacity: 0; + outline: 0; + position: absolute; + margin: 0; + z-index: -1; } .el-radio, .el-radio__inner, .el-radio__input { - position: relative; - display: inline-block; + position: relative; + display: inline-block; } .el-checkbox-button.is-checked .el-checkbox-button__inner { - color: #fff; - background-color: #51c21a; - border-color: #51c21a; - -webkit-box-shadow: -1px 0 0 0 #97da76; - box-shadow: -1px 0 0 0 #97da76; + color: #fff; + background-color: #51c21a; + border-color: #51c21a; + -webkit-box-shadow: -1px 0 0 0 rgb(151, 218, 118); + box-shadow: -1px 0 0 0 rgb(151, 218, 118); } .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner { - border-left-color: #51c21a; + border-left-color: #51c21a; } .el-checkbox-button.is-disabled .el-checkbox-button__inner { - color: #c0c4cc; - cursor: not-allowed; - background-image: none; - background-color: #fff; - border-color: #ebeef5; - -webkit-box-shadow: none; - box-shadow: none; + color: #c0c4cc; + cursor: not-allowed; + background-image: none; + background-color: #fff; + border-color: #ebeef5; + -webkit-box-shadow: none; + box-shadow: none; } .el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner { - border-left-color: #ebeef5; + border-left-color: #ebeef5; } .el-checkbox-button:first-child .el-checkbox-button__inner { - border-left: 1px solid #dcdfe6; - border-radius: 4px 0 0 4px; - -webkit-box-shadow: none !important; - box-shadow: none !important; + border-left: 1px solid #dcdfe6; + border-radius: 4px 0 0 4px; + -webkit-box-shadow: none !important; + box-shadow: none !important; } .el-checkbox-button.is-focus .el-checkbox-button__inner { - border-color: #51c21a; + border-color: #51c21a; } .el-checkbox-button:last-child .el-checkbox-button__inner { - border-radius: 0 4px 4px 0; + border-radius: 0 4px 4px 0; } .el-checkbox-button--medium .el-checkbox-button__inner { - padding: 10px 20px; - font-size: 14px; - border-radius: 0; + padding: 10px 20px; + font-size: 14px; + border-radius: 0; } .el-checkbox-button--medium .el-checkbox-button__inner.is-round { - padding: 10px 20px; + padding: 10px 20px; } .el-checkbox-button--small .el-checkbox-button__inner { - padding: 9px 15px; - font-size: 12px; - border-radius: 0; + padding: 9px 15px; + font-size: 12px; + border-radius: 0; } .el-checkbox-button--small .el-checkbox-button__inner.is-round { - padding: 9px 15px; + padding: 9px 15px; } .el-checkbox-button--mini .el-checkbox-button__inner { - padding: 7px 15px; - font-size: 12px; - border-radius: 0; + padding: 7px 15px; + font-size: 12px; + border-radius: 0; } .el-checkbox-button--mini .el-checkbox-button__inner.is-round { - padding: 7px 15px; + padding: 7px 15px; } .el-checkbox-group { - font-size: 0; + font-size: 0; } .el-radio, .el-radio--medium.is-bordered .el-radio__label { - font-size: 14px; + font-size: 14px; } .el-radio { - color: #606266; - cursor: pointer; - margin-right: 30px; + color: #606266; + cursor: pointer; + margin-right: 30px; } .el-cascader-node > .el-radio, .el-radio:last-child { - margin-right: 0; + margin-right: 0; } .el-radio.is-bordered { - padding: 12px 20px 0 10px; - border-radius: 4px; - border: 1px solid #dcdfe6; - -webkit-box-sizing: border-box; - box-sizing: border-box; - height: 40px; + padding: 12px 20px 0 10px; + border-radius: 4px; + border: 1px solid #dcdfe6; + -webkit-box-sizing: border-box; + box-sizing: border-box; + height: 40px; } .el-radio.is-bordered.is-checked { - border-color: #51c21a; + border-color: #51c21a; } .el-radio.is-bordered.is-disabled { - cursor: not-allowed; - border-color: #ebeef5; + cursor: not-allowed; + border-color: #ebeef5; } .el-radio__input.is-disabled .el-radio__inner, .el-radio__input.is-disabled.is-checked .el-radio__inner { - background-color: #f5f7fa; - border-color: #e4e7ed; + background-color: #f5f7fa; + border-color: #e4e7ed; } .el-radio.is-bordered + .el-radio.is-bordered { - margin-left: 10px; + margin-left: 10px; } .el-radio--medium.is-bordered { - padding: 10px 20px 0 10px; - border-radius: 4px; - height: 36px; + padding: 10px 20px 0 10px; + border-radius: 4px; + height: 36px; } .el-radio--mini.is-bordered .el-radio__label, .el-radio--small.is-bordered .el-radio__label { - font-size: 12px; + font-size: 12px; } .el-radio--medium.is-bordered .el-radio__inner { - height: 14px; - width: 14px; + height: 14px; + width: 14px; } .el-radio--small.is-bordered { - padding: 8px 15px 0 10px; - border-radius: 3px; - height: 32px; + padding: 8px 15px 0 10px; + border-radius: 3px; + height: 32px; } .el-radio--small.is-bordered .el-radio__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-radio--mini.is-bordered { - padding: 6px 15px 0 10px; - border-radius: 3px; - height: 28px; + padding: 6px 15px 0 10px; + border-radius: 3px; + height: 28px; } .el-radio--mini.is-bordered .el-radio__inner { - height: 12px; - width: 12px; + height: 12px; + width: 12px; } .el-radio__input { - cursor: pointer; - vertical-align: middle; + cursor: pointer; + vertical-align: middle; } .el-radio__input.is-disabled .el-radio__inner { - cursor: not-allowed; + cursor: not-allowed; } .el-radio__input.is-disabled .el-radio__inner::after { - cursor: not-allowed; - background-color: #f5f7fa; + cursor: not-allowed; + background-color: #f5f7fa; } .el-radio__input.is-disabled .el-radio__inner + .el-radio__label { - cursor: not-allowed; + cursor: not-allowed; } .el-radio__input.is-disabled.is-checked .el-radio__inner::after { - background-color: #c0c4cc; + background-color: #c0c4cc; } .el-radio__input.is-disabled + span.el-radio__label { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-radio__input.is-checked .el-radio__inner { - border-color: #51c21a; - background: #51c21a; + border-color: #51c21a; + background: #51c21a; } .el-radio__input.is-checked .el-radio__inner::after { - -webkit-transform: translate(-50%, -50%) scale(1); - transform: translate(-50%, -50%) scale(1); + -webkit-transform: translate(-50%, -50%) scale(1); + transform: translate(-50%, -50%) scale(1); } .el-radio__input.is-checked + .el-radio__label { - color: #51c21a; + color: #51c21a; } .el-radio__input.is-focus .el-radio__inner { - border-color: #51c21a; + border-color: #51c21a; } .el-radio__inner { - border: 1px solid #dcdfe6; - border-radius: 100%; - width: 14px; - height: 14px; - background-color: #fff; - cursor: pointer; - -webkit-box-sizing: border-box; - box-sizing: border-box; + border: 1px solid #dcdfe6; + border-radius: 100%; + width: 14px; + height: 14px; + background-color: #fff; + cursor: pointer; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-radio__inner:hover { - border-color: #51c21a; + border-color: #51c21a; } .el-radio__inner::after { - width: 4px; - height: 4px; - border-radius: 100%; - background-color: #fff; - content: ""; - position: absolute; - left: 50%; - top: 50%; - -webkit-transform: translate(-50%, -50%) scale(0); - transform: translate(-50%, -50%) scale(0); - -webkit-transition: -webkit-transform 0.15s ease-in; - transition: -webkit-transform 0.15s ease-in; - transition: transform 0.15s ease-in; - transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in; + width: 4px; + height: 4px; + border-radius: 100%; + background-color: #fff; + content: ""; + position: absolute; + left: 50%; + top: 50%; + -webkit-transform: translate(-50%, -50%) scale(0); + transform: translate(-50%, -50%) scale(0); + -webkit-transition: -webkit-transform 0.15s ease-in; + transition: -webkit-transform 0.15s ease-in; + transition: transform 0.15s ease-in; + transition: transform 0.15s ease-in, -webkit-transform 0.15s ease-in; } .el-radio__original { - opacity: 0; - outline: 0; - position: absolute; - z-index: -1; - top: 0; - left: 0; - right: 0; - bottom: 0; - margin: 0; + opacity: 0; + outline: 0; + position: absolute; + z-index: -1; + top: 0; + left: 0; + right: 0; + bottom: 0; + margin: 0; } .el-radio:focus:not(.is-focus):not(:active):not(.is-disabled) .el-radio__inner { - -webkit-box-shadow: 0 0 2px 2px #51c21a; - box-shadow: 0 0 2px 2px #51c21a; + -webkit-box-shadow: 0 0 2px 2px #51c21a; + box-shadow: 0 0 2px 2px #51c21a; } .el-radio__label { - font-size: 14px; - padding-left: 10px; + font-size: 14px; + padding-left: 10px; } .el-scrollbar { - overflow: hidden; - position: relative; + overflow: hidden; + position: relative; } .el-scrollbar:active > .el-scrollbar__bar, .el-scrollbar:focus > .el-scrollbar__bar, .el-scrollbar:hover > .el-scrollbar__bar { - opacity: 1; - -webkit-transition: opacity 340ms ease-out; - transition: opacity 340ms ease-out; + opacity: 1; + -webkit-transition: opacity 340ms ease-out; + transition: opacity 340ms ease-out; } .el-scrollbar__wrap { - overflow: scroll; - height: 100%; + overflow: scroll; + height: 100%; } .el-scrollbar__wrap--hidden-default { - scrollbar-width: none; + scrollbar-width: none; } .el-scrollbar__wrap--hidden-default::-webkit-scrollbar { - width: 0; - height: 0; + width: 0; + height: 0; } .el-scrollbar__thumb { - position: relative; - display: block; - width: 0; - height: 0; - cursor: pointer; - border-radius: inherit; - background-color: rgba(144, 147, 153, 0.3); - -webkit-transition: 0.3s background-color; - transition: 0.3s background-color; + position: relative; + display: block; + width: 0; + height: 0; + cursor: pointer; + border-radius: inherit; + background-color: rgba(144, 147, 153, 0.3); + -webkit-transition: 0.3s background-color; + transition: 0.3s background-color; } .el-scrollbar__thumb:hover { - background-color: rgba(144, 147, 153, 0.5); + background-color: rgba(144, 147, 153, 0.5); } .el-scrollbar__bar { - position: absolute; - right: 2px; - bottom: 2px; - z-index: 1; - border-radius: 4px; - opacity: 0; - -webkit-transition: opacity 120ms ease-out; - transition: opacity 120ms ease-out; + position: absolute; + right: 2px; + bottom: 2px; + z-index: 1; + border-radius: 4px; + opacity: 0; + -webkit-transition: opacity 120ms ease-out; + transition: opacity 120ms ease-out; } .el-scrollbar__bar.is-vertical { - width: 6px; - top: 2px; + width: 6px; + top: 2px; } .el-scrollbar__bar.is-vertical > div { - width: 100%; + width: 100%; } .el-scrollbar__bar.is-horizontal { - height: 6px; - left: 2px; + height: 6px; + left: 2px; } .el-scrollbar__bar.is-horizontal > div { - height: 100%; + height: 100%; } .el-cascader-panel { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - border-radius: 4px; - font-size: 14px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + border-radius: 4px; + font-size: 14px; } .el-cascader-panel.is-bordered { - border: 1px solid #e4e7ed; - border-radius: 4px; + border: 1px solid #e4e7ed; + border-radius: 4px; } .el-cascader-menu { - min-width: 180px; - -webkit-box-sizing: border-box; - box-sizing: border-box; - color: #606266; - border-right: solid 1px #e4e7ed; + min-width: 180px; + -webkit-box-sizing: border-box; + box-sizing: border-box; + color: #606266; + border-right: solid 1px #e4e7ed; } .el-cascader-menu:last-child { - border-right: none; + border-right: none; } .el-cascader-menu:last-child .el-cascader-node { - padding-right: 20px; + padding-right: 20px; } .el-cascader-menu__wrap { - height: 204px; + height: 204px; } .el-cascader-menu__list { - position: relative; - min-height: 100%; - margin: 0; - padding: 6px 0; - list-style: none; - -webkit-box-sizing: border-box; - box-sizing: border-box; + position: relative; + min-height: 100%; + margin: 0; + padding: 6px 0; + list-style: none; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-avatar, .el-drawer { - -webkit-box-sizing: border-box; - overflow: hidden; + -webkit-box-sizing: border-box; + overflow: hidden; } .el-cascader-menu__hover-zone { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - pointer-events: none; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; } .el-cascader-menu__empty-text { - position: absolute; - top: 50%; - left: 50%; - -webkit-transform: translate(-50%, -50%); - transform: translate(-50%, -50%); - text-align: center; - color: #c0c4cc; + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + text-align: center; + color: #c0c4cc; } .el-cascader-node { - position: relative; - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - padding: 0 30px 0 20px; - height: 34px; - line-height: 34px; - outline: 0; + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0 30px 0 20px; + height: 34px; + line-height: 34px; + outline: 0; } .el-cascader-node.is-selectable.in-active-path { - color: #606266; + color: #606266; } .el-cascader-node.in-active-path, .el-cascader-node.is-active, .el-cascader-node.is-selectable.in-checked-path { - color: #51c21a; - font-weight: 700; + color: #51c21a; + font-weight: 700; } .el-cascader-node:not(.is-disabled) { - cursor: pointer; + cursor: pointer; } .el-cascader-node:not(.is-disabled):focus, .el-cascader-node:not(.is-disabled):hover { - background: #f5f7fa; + background: #f5f7fa; } .el-cascader-node.is-disabled { - color: #c0c4cc; - cursor: not-allowed; + color: #c0c4cc; + cursor: not-allowed; } .el-cascader-node__prefix { - position: absolute; - left: 10px; + position: absolute; + left: 10px; } .el-cascader-node__postfix { - position: absolute; - right: 10px; + position: absolute; + right: 10px; } .el-cascader-node__label { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - padding: 0 10px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + padding: 0 10px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } .el-cascader-node > .el-radio .el-radio__label { - padding-left: 0; + padding-left: 0; } .el-avatar { - display: inline-block; - box-sizing: border-box; - text-align: center; - color: #fff; - background: #c0c4cc; - width: 40px; - height: 40px; - line-height: 40px; - font-size: 14px; + display: inline-block; + box-sizing: border-box; + text-align: center; + color: #fff; + background: #c0c4cc; + width: 40px; + height: 40px; + line-height: 40px; + font-size: 14px; } .el-avatar > img { - display: block; - height: 100%; - vertical-align: middle; + display: block; + height: 100%; + vertical-align: middle; } .el-drawer, .el-drawer__header { - display: -webkit-box; - display: -ms-flexbox; + display: -webkit-box; + display: -ms-flexbox; } .el-avatar--circle { - border-radius: 50%; + border-radius: 50%; } .el-avatar--square { - border-radius: 4px; + border-radius: 4px; } .el-avatar--icon { - font-size: 18px; + font-size: 18px; } .el-avatar--large { - width: 40px; - height: 40px; - line-height: 40px; + width: 40px; + height: 40px; + line-height: 40px; } .el-avatar--medium { - width: 36px; - height: 36px; - line-height: 36px; + width: 36px; + height: 36px; + line-height: 36px; } .el-avatar--small { - width: 28px; - height: 28px; - line-height: 28px; + width: 28px; + height: 28px; + line-height: 28px; } .el-drawer.btt, .el-drawer.ttb, .el-drawer__container { - left: 0; - right: 0; - width: 100%; + left: 0; + right: 0; + width: 100%; } .el-drawer.ltr, .el-drawer.rtl, .el-drawer__container { - top: 0; - bottom: 0; - height: 100%; -} -@-webkit-keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@-webkit-keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@-webkit-keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@-webkit-keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } -} -@keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } + top: 0; + bottom: 0; + height: 100%; } .el-drawer { - position: absolute; - box-sizing: border-box; - background-color: #fff; - display: flex; - -ms-flex-direction: column; - flex-direction: column; - -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), - 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12); - box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), - 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12); - outline: 0; + position: absolute; + box-sizing: border-box; + background-color: #fff; + display: flex; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), + 0 6px 30px 5px rgba(0, 0, 0, 0.12); + box-shadow: 0 8px 10px -5px rgba(0, 0, 0, 0.2), 0 16px 24px 2px rgba(0, 0, 0, 0.14), + 0 6px 30px 5px rgba(0, 0, 0, 0.12); + outline: 0; } .el-drawer.rtl { - -webkit-animation: rtl-drawer-out 0.3s; - animation: rtl-drawer-out 0.3s; - right: 0; + -webkit-animation: rtl-drawer-out 0.3s; + animation: rtl-drawer-out 0.3s; + right: 0; } .el-drawer__open .el-drawer.rtl { - -webkit-animation: rtl-drawer-in 0.3s 1ms; - animation: rtl-drawer-in 0.3s 1ms; + -webkit-animation: rtl-drawer-in 0.3s 1ms; + animation: rtl-drawer-in 0.3s 1ms; } .el-drawer.ltr { - -webkit-animation: ltr-drawer-out 0.3s; - animation: ltr-drawer-out 0.3s; - left: 0; + -webkit-animation: ltr-drawer-out 0.3s; + animation: ltr-drawer-out 0.3s; + left: 0; } .el-drawer__open .el-drawer.ltr { - -webkit-animation: ltr-drawer-in 0.3s 1ms; - animation: ltr-drawer-in 0.3s 1ms; + -webkit-animation: ltr-drawer-in 0.3s 1ms; + animation: ltr-drawer-in 0.3s 1ms; } .el-drawer.ttb { - -webkit-animation: ttb-drawer-out 0.3s; - animation: ttb-drawer-out 0.3s; - top: 0; + -webkit-animation: ttb-drawer-out 0.3s; + animation: ttb-drawer-out 0.3s; + top: 0; } .el-drawer__open .el-drawer.ttb { - -webkit-animation: ttb-drawer-in 0.3s 1ms; - animation: ttb-drawer-in 0.3s 1ms; + -webkit-animation: ttb-drawer-in 0.3s 1ms; + animation: ttb-drawer-in 0.3s 1ms; } .el-drawer.btt { - -webkit-animation: btt-drawer-out 0.3s; - animation: btt-drawer-out 0.3s; - bottom: 0; + -webkit-animation: btt-drawer-out 0.3s; + animation: btt-drawer-out 0.3s; + bottom: 0; } .el-drawer__open .el-drawer.btt { - -webkit-animation: btt-drawer-in 0.3s 1ms; - animation: btt-drawer-in 0.3s 1ms; + -webkit-animation: btt-drawer-in 0.3s 1ms; + animation: btt-drawer-in 0.3s 1ms; } .el-drawer__wrapper { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - overflow: hidden; - margin: 0; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow: hidden; + margin: 0; } .el-drawer__header { - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; - color: #72767b; - display: flex; - margin-bottom: 32px; - padding: 20px 20px 0; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + color: #72767b; + display: flex; + margin-bottom: 32px; + padding: 20px 20px 0; } .el-drawer__header > :first-child { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } .el-drawer__title { - margin: 0; - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; - line-height: inherit; - font-size: 1rem; + margin: 0; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + line-height: inherit; + font-size: 1rem; } .el-drawer__close-btn { - border: none; - cursor: pointer; - font-size: 20px; - color: inherit; - background-color: transparent; + border: none; + cursor: pointer; + font-size: 20px; + color: inherit; + background-color: transparent; } .el-drawer__body { - -webkit-box-flex: 1; - -ms-flex: 1; - flex: 1; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } .el-drawer__body > * { - -webkit-box-sizing: border-box; - box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } .el-drawer__container { - position: relative; + position: relative; } .el-drawer-fade-enter-active { - -webkit-animation: el-drawer-fade-in 0.3s; - animation: el-drawer-fade-in 0.3s; + -webkit-animation: el-drawer-fade-in 0.3s; + animation: el-drawer-fade-in 0.3s; } .el-drawer-fade-leave-active { - animation: el-drawer-fade-in 0.3s reverse; + animation: el-drawer-fade-in 0.3s reverse; } .el-popconfirm__main { - display: -webkit-box; - display: -ms-flexbox; - display: flex; - -webkit-box-align: center; - -ms-flex-align: center; - align-items: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } .el-popconfirm__icon { - margin-right: 5px; + margin-right: 5px; } .el-popconfirm__action { - text-align: right; - margin: 0; + text-align: right; + margin: 0; } -.cl-slider-menu .el-menu-item.is-active, -.cl-slider-menu .el-menu-item:hover, -.cl-slider-menu .el-menu .el-submenu__title:hover { - background-color: #51C21A !important; +/* custom */ + +.app-slider .cl-slider-menu .el-menu .el-submenu__title:hover, +.app-slider .cl-slider-menu .el-menu .el-submenu__title.is-active, +.app-slider .cl-slider-menu .el-menu .el-menu-item:hover, +.app-slider .cl-slider-menu .el-menu .el-menu-item.is-active { + background-color: #51c21a !important; } diff --git a/public/theme/purple.css b/public/theme/purple.css index efe6b99f4205836b0c0724383680b775eb098b5d..fdbe6b8facc1ed842b8f346472a354896421b089 100644 --- a/public/theme/purple.css +++ b/public/theme/purple.css @@ -26,878 +26,6 @@ .el-upload-list__item.is-success:not(.focusing):focus { outline-width: 0; } -@font-face { - font-family: element-icons; - src: url(fonts/element-icons.woff) format("woff"), - url(fonts/element-icons.ttf) format("truetype"); - font-weight: 400; - font-display: "auto"; - font-style: normal; -} -[class*=" el-icon-"], -[class^="el-icon-"] { - font-family: element-icons !important; - speak: none; - font-style: normal; - font-weight: 400; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: baseline; - display: inline-block; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.el-icon-ice-cream-round:before { - content: "\e6a0"; -} -.el-icon-ice-cream-square:before { - content: "\e6a3"; -} -.el-icon-lollipop:before { - content: "\e6a4"; -} -.el-icon-potato-strips:before { - content: "\e6a5"; -} -.el-icon-milk-tea:before { - content: "\e6a6"; -} -.el-icon-ice-drink:before { - content: "\e6a7"; -} -.el-icon-ice-tea:before { - content: "\e6a9"; -} -.el-icon-coffee:before { - content: "\e6aa"; -} -.el-icon-orange:before { - content: "\e6ab"; -} -.el-icon-pear:before { - content: "\e6ac"; -} -.el-icon-apple:before { - content: "\e6ad"; -} -.el-icon-cherry:before { - content: "\e6ae"; -} -.el-icon-watermelon:before { - content: "\e6af"; -} -.el-icon-grape:before { - content: "\e6b0"; -} -.el-icon-refrigerator:before { - content: "\e6b1"; -} -.el-icon-goblet-square-full:before { - content: "\e6b2"; -} -.el-icon-goblet-square:before { - content: "\e6b3"; -} -.el-icon-goblet-full:before { - content: "\e6b4"; -} -.el-icon-goblet:before { - content: "\e6b5"; -} -.el-icon-cold-drink:before { - content: "\e6b6"; -} -.el-icon-coffee-cup:before { - content: "\e6b8"; -} -.el-icon-water-cup:before { - content: "\e6b9"; -} -.el-icon-hot-water:before { - content: "\e6ba"; -} -.el-icon-ice-cream:before { - content: "\e6bb"; -} -.el-icon-dessert:before { - content: "\e6bc"; -} -.el-icon-sugar:before { - content: "\e6bd"; -} -.el-icon-tableware:before { - content: "\e6be"; -} -.el-icon-burger:before { - content: "\e6bf"; -} -.el-icon-knife-fork:before { - content: "\e6c1"; -} -.el-icon-fork-spoon:before { - content: "\e6c2"; -} -.el-icon-chicken:before { - content: "\e6c3"; -} -.el-icon-food:before { - content: "\e6c4"; -} -.el-icon-dish-1:before { - content: "\e6c5"; -} -.el-icon-dish:before { - content: "\e6c6"; -} -.el-icon-moon-night:before { - content: "\e6ee"; -} -.el-icon-moon:before { - content: "\e6f0"; -} -.el-icon-cloudy-and-sunny:before { - content: "\e6f1"; -} -.el-icon-partly-cloudy:before { - content: "\e6f2"; -} -.el-icon-cloudy:before { - content: "\e6f3"; -} -.el-icon-sunny:before { - content: "\e6f6"; -} -.el-icon-sunset:before { - content: "\e6f7"; -} -.el-icon-sunrise-1:before { - content: "\e6f8"; -} -.el-icon-sunrise:before { - content: "\e6f9"; -} -.el-icon-heavy-rain:before { - content: "\e6fa"; -} -.el-icon-lightning:before { - content: "\e6fb"; -} -.el-icon-light-rain:before { - content: "\e6fc"; -} -.el-icon-wind-power:before { - content: "\e6fd"; -} -.el-icon-baseball:before { - content: "\e712"; -} -.el-icon-soccer:before { - content: "\e713"; -} -.el-icon-football:before { - content: "\e715"; -} -.el-icon-basketball:before { - content: "\e716"; -} -.el-icon-ship:before { - content: "\e73f"; -} -.el-icon-truck:before { - content: "\e740"; -} -.el-icon-bicycle:before { - content: "\e741"; -} -.el-icon-mobile-phone:before { - content: "\e6d3"; -} -.el-icon-service:before { - content: "\e6d4"; -} -.el-icon-key:before { - content: "\e6e2"; -} -.el-icon-unlock:before { - content: "\e6e4"; -} -.el-icon-lock:before { - content: "\e6e5"; -} -.el-icon-watch:before { - content: "\e6fe"; -} -.el-icon-watch-1:before { - content: "\e6ff"; -} -.el-icon-timer:before { - content: "\e702"; -} -.el-icon-alarm-clock:before { - content: "\e703"; -} -.el-icon-map-location:before { - content: "\e704"; -} -.el-icon-delete-location:before { - content: "\e705"; -} -.el-icon-add-location:before { - content: "\e706"; -} -.el-icon-location-information:before { - content: "\e707"; -} -.el-icon-location-outline:before { - content: "\e708"; -} -.el-icon-location:before { - content: "\e79e"; -} -.el-icon-place:before { - content: "\e709"; -} -.el-icon-discover:before { - content: "\e70a"; -} -.el-icon-first-aid-kit:before { - content: "\e70b"; -} -.el-icon-trophy-1:before { - content: "\e70c"; -} -.el-icon-trophy:before { - content: "\e70d"; -} -.el-icon-medal:before { - content: "\e70e"; -} -.el-icon-medal-1:before { - content: "\e70f"; -} -.el-icon-stopwatch:before { - content: "\e710"; -} -.el-icon-mic:before { - content: "\e711"; -} -.el-icon-copy-document:before { - content: "\e718"; -} -.el-icon-full-screen:before { - content: "\e719"; -} -.el-icon-switch-button:before { - content: "\e71b"; -} -.el-icon-aim:before { - content: "\e71c"; -} -.el-icon-crop:before { - content: "\e71d"; -} -.el-icon-odometer:before { - content: "\e71e"; -} -.el-icon-time:before { - content: "\e71f"; -} -.el-icon-bangzhu:before { - content: "\e724"; -} -.el-icon-close-notification:before { - content: "\e726"; -} -.el-icon-microphone:before { - content: "\e727"; -} -.el-icon-turn-off-microphone:before { - content: "\e728"; -} -.el-icon-position:before { - content: "\e729"; -} -.el-icon-postcard:before { - content: "\e72a"; -} -.el-icon-message:before { - content: "\e72b"; -} -.el-icon-chat-line-square:before { - content: "\e72d"; -} -.el-icon-chat-dot-square:before { - content: "\e72e"; -} -.el-icon-chat-dot-round:before { - content: "\e72f"; -} -.el-icon-chat-square:before { - content: "\e730"; -} -.el-icon-chat-line-round:before { - content: "\e731"; -} -.el-icon-chat-round:before { - content: "\e732"; -} -.el-icon-set-up:before { - content: "\e733"; -} -.el-icon-turn-off:before { - content: "\e734"; -} -.el-icon-open:before { - content: "\e735"; -} -.el-icon-connection:before { - content: "\e736"; -} -.el-icon-link:before { - content: "\e737"; -} -.el-icon-cpu:before { - content: "\e738"; -} -.el-icon-thumb:before { - content: "\e739"; -} -.el-icon-female:before { - content: "\e73a"; -} -.el-icon-male:before { - content: "\e73b"; -} -.el-icon-guide:before { - content: "\e73c"; -} -.el-icon-news:before { - content: "\e73e"; -} -.el-icon-price-tag:before { - content: "\e744"; -} -.el-icon-discount:before { - content: "\e745"; -} -.el-icon-wallet:before { - content: "\e747"; -} -.el-icon-coin:before { - content: "\e748"; -} -.el-icon-money:before { - content: "\e749"; -} -.el-icon-bank-card:before { - content: "\e74a"; -} -.el-icon-box:before { - content: "\e74b"; -} -.el-icon-present:before { - content: "\e74c"; -} -.el-icon-sell:before { - content: "\e6d5"; -} -.el-icon-sold-out:before { - content: "\e6d6"; -} -.el-icon-shopping-bag-2:before { - content: "\e74d"; -} -.el-icon-shopping-bag-1:before { - content: "\e74e"; -} -.el-icon-shopping-cart-2:before { - content: "\e74f"; -} -.el-icon-shopping-cart-1:before { - content: "\e750"; -} -.el-icon-shopping-cart-full:before { - content: "\e751"; -} -.el-icon-smoking:before { - content: "\e752"; -} -.el-icon-no-smoking:before { - content: "\e753"; -} -.el-icon-house:before { - content: "\e754"; -} -.el-icon-table-lamp:before { - content: "\e755"; -} -.el-icon-school:before { - content: "\e756"; -} -.el-icon-office-building:before { - content: "\e757"; -} -.el-icon-toilet-paper:before { - content: "\e758"; -} -.el-icon-notebook-2:before { - content: "\e759"; -} -.el-icon-notebook-1:before { - content: "\e75a"; -} -.el-icon-files:before { - content: "\e75b"; -} -.el-icon-collection:before { - content: "\e75c"; -} -.el-icon-receiving:before { - content: "\e75d"; -} -.el-icon-suitcase-1:before { - content: "\e760"; -} -.el-icon-suitcase:before { - content: "\e761"; -} -.el-icon-film:before { - content: "\e763"; -} -.el-icon-collection-tag:before { - content: "\e765"; -} -.el-icon-data-analysis:before { - content: "\e766"; -} -.el-icon-pie-chart:before { - content: "\e767"; -} -.el-icon-data-board:before { - content: "\e768"; -} -.el-icon-data-line:before { - content: "\e76d"; -} -.el-icon-reading:before { - content: "\e769"; -} -.el-icon-magic-stick:before { - content: "\e76a"; -} -.el-icon-coordinate:before { - content: "\e76b"; -} -.el-icon-mouse:before { - content: "\e76c"; -} -.el-icon-brush:before { - content: "\e76e"; -} -.el-icon-headset:before { - content: "\e76f"; -} -.el-icon-umbrella:before { - content: "\e770"; -} -.el-icon-scissors:before { - content: "\e771"; -} -.el-icon-mobile:before { - content: "\e773"; -} -.el-icon-attract:before { - content: "\e774"; -} -.el-icon-monitor:before { - content: "\e775"; -} -.el-icon-search:before { - content: "\e778"; -} -.el-icon-takeaway-box:before { - content: "\e77a"; -} -.el-icon-paperclip:before { - content: "\e77d"; -} -.el-icon-printer:before { - content: "\e77e"; -} -.el-icon-document-add:before { - content: "\e782"; -} -.el-icon-document:before { - content: "\e785"; -} -.el-icon-document-checked:before { - content: "\e786"; -} -.el-icon-document-copy:before { - content: "\e787"; -} -.el-icon-document-delete:before { - content: "\e788"; -} -.el-icon-document-remove:before { - content: "\e789"; -} -.el-icon-tickets:before { - content: "\e78b"; -} -.el-icon-folder-checked:before { - content: "\e77f"; -} -.el-icon-folder-delete:before { - content: "\e780"; -} -.el-icon-folder-remove:before { - content: "\e781"; -} -.el-icon-folder-add:before { - content: "\e783"; -} -.el-icon-folder-opened:before { - content: "\e784"; -} -.el-icon-folder:before { - content: "\e78a"; -} -.el-icon-edit-outline:before { - content: "\e764"; -} -.el-icon-edit:before { - content: "\e78c"; -} -.el-icon-date:before { - content: "\e78e"; -} -.el-icon-c-scale-to-original:before { - content: "\e7c6"; -} -.el-icon-view:before { - content: "\e6ce"; -} -.el-icon-loading:before { - content: "\e6cf"; -} -.el-icon-rank:before { - content: "\e6d1"; -} -.el-icon-sort-down:before { - content: "\e7c4"; -} -.el-icon-sort-up:before { - content: "\e7c5"; -} -.el-icon-sort:before { - content: "\e6d2"; -} -.el-icon-finished:before { - content: "\e6cd"; -} -.el-icon-refresh-left:before { - content: "\e6c7"; -} -.el-icon-refresh-right:before { - content: "\e6c8"; -} -.el-icon-refresh:before { - content: "\e6d0"; -} -.el-icon-video-play:before { - content: "\e7c0"; -} -.el-icon-video-pause:before { - content: "\e7c1"; -} -.el-icon-d-arrow-right:before { - content: "\e6dc"; -} -.el-icon-d-arrow-left:before { - content: "\e6dd"; -} -.el-icon-arrow-up:before { - content: "\e6e1"; -} -.el-icon-arrow-down:before { - content: "\e6df"; -} -.el-icon-arrow-right:before { - content: "\e6e0"; -} -.el-icon-arrow-left:before { - content: "\e6de"; -} -.el-icon-top-right:before { - content: "\e6e7"; -} -.el-icon-top-left:before { - content: "\e6e8"; -} -.el-icon-top:before { - content: "\e6e6"; -} -.el-icon-bottom:before { - content: "\e6eb"; -} -.el-icon-right:before { - content: "\e6e9"; -} -.el-icon-back:before { - content: "\e6ea"; -} -.el-icon-bottom-right:before { - content: "\e6ec"; -} -.el-icon-bottom-left:before { - content: "\e6ed"; -} -.el-icon-caret-top:before { - content: "\e78f"; -} -.el-icon-caret-bottom:before { - content: "\e790"; -} -.el-icon-caret-right:before { - content: "\e791"; -} -.el-icon-caret-left:before { - content: "\e792"; -} -.el-icon-d-caret:before { - content: "\e79a"; -} -.el-icon-share:before { - content: "\e793"; -} -.el-icon-menu:before { - content: "\e798"; -} -.el-icon-s-grid:before { - content: "\e7a6"; -} -.el-icon-s-check:before { - content: "\e7a7"; -} -.el-icon-s-data:before { - content: "\e7a8"; -} -.el-icon-s-opportunity:before { - content: "\e7aa"; -} -.el-icon-s-custom:before { - content: "\e7ab"; -} -.el-icon-s-claim:before { - content: "\e7ad"; -} -.el-icon-s-finance:before { - content: "\e7ae"; -} -.el-icon-s-comment:before { - content: "\e7af"; -} -.el-icon-s-flag:before { - content: "\e7b0"; -} -.el-icon-s-marketing:before { - content: "\e7b1"; -} -.el-icon-s-shop:before { - content: "\e7b4"; -} -.el-icon-s-open:before { - content: "\e7b5"; -} -.el-icon-s-management:before { - content: "\e7b6"; -} -.el-icon-s-ticket:before { - content: "\e7b7"; -} -.el-icon-s-release:before { - content: "\e7b8"; -} -.el-icon-s-home:before { - content: "\e7b9"; -} -.el-icon-s-promotion:before { - content: "\e7ba"; -} -.el-icon-s-operation:before { - content: "\e7bb"; -} -.el-icon-s-unfold:before { - content: "\e7bc"; -} -.el-icon-s-fold:before { - content: "\e7a9"; -} -.el-icon-s-platform:before { - content: "\e7bd"; -} -.el-icon-s-order:before { - content: "\e7be"; -} -.el-icon-s-cooperation:before { - content: "\e7bf"; -} -.el-icon-bell:before { - content: "\e725"; -} -.el-icon-message-solid:before { - content: "\e799"; -} -.el-icon-video-camera:before { - content: "\e772"; -} -.el-icon-video-camera-solid:before { - content: "\e796"; -} -.el-icon-camera:before { - content: "\e779"; -} -.el-icon-camera-solid:before { - content: "\e79b"; -} -.el-icon-download:before { - content: "\e77c"; -} -.el-icon-upload2:before { - content: "\e77b"; -} -.el-icon-upload:before { - content: "\e7c3"; -} -.el-icon-picture-outline-round:before { - content: "\e75f"; -} -.el-icon-picture-outline:before { - content: "\e75e"; -} -.el-icon-picture:before { - content: "\e79f"; -} -.el-icon-close:before { - content: "\e6db"; -} -.el-icon-check:before { - content: "\e6da"; -} -.el-icon-plus:before { - content: "\e6d9"; -} -.el-icon-minus:before { - content: "\e6d8"; -} -.el-icon-help:before { - content: "\e73d"; -} -.el-icon-s-help:before { - content: "\e7b3"; -} -.el-icon-circle-close:before { - content: "\e78d"; -} -.el-icon-circle-check:before { - content: "\e720"; -} -.el-icon-circle-plus-outline:before { - content: "\e723"; -} -.el-icon-remove-outline:before { - content: "\e722"; -} -.el-icon-zoom-out:before { - content: "\e776"; -} -.el-icon-zoom-in:before { - content: "\e777"; -} -.el-icon-error:before { - content: "\e79d"; -} -.el-icon-success:before { - content: "\e79c"; -} -.el-icon-circle-plus:before { - content: "\e7a0"; -} -.el-icon-remove:before { - content: "\e7a2"; -} -.el-icon-info:before { - content: "\e7a1"; -} -.el-icon-question:before { - content: "\e7a4"; -} -.el-icon-warning-outline:before { - content: "\e6c9"; -} -.el-icon-warning:before { - content: "\e7a3"; -} -.el-icon-goods:before { - content: "\e7c2"; -} -.el-icon-s-goods:before { - content: "\e7b2"; -} -.el-icon-star-off:before { - content: "\e717"; -} -.el-icon-star-on:before { - content: "\e797"; -} -.el-icon-more-outline:before { - content: "\e6cc"; -} -.el-icon-more:before { - content: "\e794"; -} -.el-icon-phone-outline:before { - content: "\e6cb"; -} -.el-icon-phone:before { - content: "\e795"; -} -.el-icon-user:before { - content: "\e6e3"; -} -.el-icon-user-solid:before { - content: "\e7a5"; -} -.el-icon-setting:before { - content: "\e6ca"; -} -.el-icon-s-tools:before { - content: "\e7ac"; -} -.el-icon-delete:before { - content: "\e6d7"; -} -.el-icon-delete-solid:before { - content: "\e7c9"; -} -.el-icon-eleme:before { - content: "\e7c7"; -} -.el-icon-platform-eleme:before { - content: "\e7ca"; -} -.el-icon-loading { - -webkit-animation: rotating 2s linear infinite; - animation: rotating 2s linear infinite; -} -.el-icon--right { - margin-left: 5px; -} -.el-icon--left { - margin-right: 5px; -} @-webkit-keyframes rotating { 0% { -webkit-transform: rotateZ(0); @@ -1426,15 +554,6 @@ margin: 0 3px; } .el-dropdown-menu { - position: absolute; - top: 0; - left: 0; - padding: 10px 0; - margin: 5px 0; - background-color: #fff; - border: 1px solid #ebeef5; - border-radius: 4px; - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); } .el-dropdown-menu__item { list-style: none; @@ -1448,8 +567,8 @@ } .el-dropdown-menu__item:focus, .el-dropdown-menu__item:not(.is-disabled):hover { - background-color: #faebf4; - color: #d95fa4; + background-color: rgb(250, 235, 244); + color: rgb(217, 95, 164); } .el-dropdown-menu__item i { margin-right: 5px; @@ -1687,7 +806,7 @@ .el-menu-item:focus, .el-menu-item:hover { outline: 0; - background-color: #faebf4; + background-color: rgb(250, 235, 244); } .el-menu-item.is-disabled { opacity: 0.25; @@ -1730,7 +849,7 @@ .el-submenu__title:focus, .el-submenu__title:hover { outline: 0; - background-color: #faebf4; + background-color: rgb(250, 235, 244); } .el-submenu__title.is-disabled { opacity: 0.25; @@ -1738,7 +857,7 @@ background: 0 0 !important; } .el-submenu__title:hover { - background-color: #faebf4; + background-color: rgb(250, 235, 244); } .el-submenu .el-menu { border: none; @@ -2008,16 +1127,6 @@ opacity: 0; } .el-select-dropdown { - position: absolute; - z-index: 1001; - border: 1px solid #e4e7ed; - border-radius: 4px; - background-color: #fff; - -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1); - -webkit-box-sizing: border-box; - box-sizing: border-box; - margin: 5px 0; } .el-select-dropdown.is-multiple .el-select-dropdown__item.selected { color: #d0378d; @@ -2648,7 +1757,7 @@ background: #fafafa; } .el-table--striped .el-table__body tr.el-table__row--striped.current-row td { - background-color: #faebf4; + background-color: rgb(250, 235, 244); } .el-table__body tr.hover-row.current-row > td, .el-table__body tr.hover-row.el-table__row--striped.current-row > td, @@ -2657,7 +1766,7 @@ background-color: #f5f7fa; } .el-table__body tr.current-row > td { - background-color: #faebf4; + background-color: rgb(250, 235, 244); } .el-table__column-resize-proxy { position: absolute; @@ -2730,8 +1839,8 @@ font-size: 14px; } .el-table-filter__list-item:hover { - background-color: #faebf4; - color: #d95fa4; + background-color: rgb(250, 235, 244); + color: rgb(217, 95, 164); } .el-table-filter__list-item.is-active { background-color: #d0378d; @@ -3243,6 +2352,9 @@ .el-date-editor .el-range-input::-webkit-input-placeholder { color: #c0c4cc; } +.el-date-editor .el-range-input:-ms-input-placeholder { + color: #c0c4cc; +} .el-date-editor .el-range-input::-ms-input-placeholder { color: #c0c4cc; } @@ -3339,6 +2451,9 @@ .el-range-editor.is-disabled input::-webkit-input-placeholder { color: #c0c4cc; } +.el-range-editor.is-disabled input:-ms-input-placeholder { + color: #c0c4cc; +} .el-range-editor.is-disabled input::-ms-input-placeholder { color: #c0c4cc; } @@ -4873,7 +3988,7 @@ display: block; } .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content { - background-color: #fbeff6; + background-color: #f0f7ff; } .el-alert { width: 100%; @@ -9298,86 +8413,6 @@ -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); } -.el-zoom-in-center-enter-active, -.el-zoom-in-center-leave-active { - -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); - transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1); -} -.el-zoom-in-center-enter, -.el-zoom-in-center-leave-active { - opacity: 0; - -webkit-transform: scaleX(0); - transform: scaleX(0); -} -.el-zoom-in-top-enter-active, -.el-zoom-in-top-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center top; - transform-origin: center top; -} -.el-zoom-in-top-enter, -.el-zoom-in-top-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-bottom-enter-active, -.el-zoom-in-bottom-leave-active { - opacity: 1; - -webkit-transform: scaleY(1); - transform: scaleY(1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -.el-zoom-in-bottom-enter, -.el-zoom-in-bottom-leave-active { - opacity: 0; - -webkit-transform: scaleY(0); - transform: scaleY(0); -} -.el-zoom-in-left-enter-active, -.el-zoom-in-left-leave-active { - opacity: 1; - -webkit-transform: scale(1, 1); - transform: scale(1, 1); - -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); - transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), - opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), - -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); - -webkit-transform-origin: top left; - transform-origin: top left; -} -.el-zoom-in-left-enter, -.el-zoom-in-left-leave-active { - opacity: 0; - -webkit-transform: scale(0.45, 0.45); - transform: scale(0.45, 0.45); -} .collapse-transition { -webkit-transition: 0.3s height ease-in-out, 0.3s padding-top ease-in-out, 0.3s padding-bottom ease-in-out; @@ -9554,8 +8589,8 @@ border-left-color: #fff; } .el-tag { - background-color: #faebf4; - border-color: #f6d7e8; + background-color: rgb(250, 235, 244); + border-color: rgb(246, 215, 232); display: inline-block; height: 32px; padding: 0 10px; @@ -9667,7 +8702,7 @@ } .el-tag--dark .el-tag__close:hover { color: #fff; - background-color: #d95fa4; + background-color: rgb(217, 95, 164); } .el-tag--dark.el-tag--info { background-color: #909399; @@ -9731,7 +8766,7 @@ } .el-tag--plain { background-color: #fff; - border-color: #ecafd1; + border-color: rgb(236, 175, 209); color: #d0378d; } .el-tag--plain.is-hit { @@ -9997,6 +9032,9 @@ .el-cascader__search-input::-webkit-input-placeholder { color: #c0c4cc; } +.el-cascader__search-input:-ms-input-placeholder { + color: #c0c4cc; +} .el-cascader__search-input::-ms-input-placeholder { color: #c0c4cc; } @@ -10278,7 +9316,7 @@ font-size: 12px; } .el-color-dropdown__link-btn:hover { - color: tint(#d0378d, 20%); + color: tint(primary, 20%); } .el-color-picker { display: inline-block; @@ -10436,6 +9474,9 @@ .el-textarea__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-textarea__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10466,6 +9507,9 @@ .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10564,6 +9608,9 @@ .el-input__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-input__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-input__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -10616,6 +9663,9 @@ .el-input.is-disabled .el-input__inner::-webkit-input-placeholder { color: #c0c4cc; } +.el-input.is-disabled .el-input__inner:-ms-input-placeholder { + color: #c0c4cc; +} .el-input.is-disabled .el-input__inner::-ms-input-placeholder { color: #c0c4cc; } @@ -11158,10 +10208,10 @@ color: #d0378d; } .el-link.el-link--primary:hover { - color: #d95fa4; + color: rgb(217, 95, 164); } .el-link.el-link--primary.is-disabled { - color: #e89bc6; + color: rgb(232, 155, 198); } .el-link.el-link--danger.is-underline:hover:after, .el-link.el-link--danger:after { @@ -11490,12 +10540,12 @@ .el-button:focus, .el-button:hover { color: #d0378d; - border-color: #f1c3dd; - background-color: #faebf4; + border-color: rgb(241, 195, 221); + background-color: rgb(250, 235, 244); } .el-button:active { - color: #bb327f; - border-color: #bb327f; + color: rgb(187, 50, 127); + border-color: rgb(187, 50, 127); outline: 0; } .el-button::-moz-focus-inner { @@ -11512,8 +10562,8 @@ } .el-button.is-active, .el-button.is-plain:active { - color: #bb327f; - border-color: #bb327f; + color: rgb(187, 50, 127); + border-color: rgb(187, 50, 127); } .el-button.is-plain:active { background: #fff; @@ -11568,14 +10618,14 @@ } .el-button--primary:focus, .el-button--primary:hover { - background: #d95fa4; - border-color: #d95fa4; + background: rgb(217, 95, 164); + border-color: rgb(217, 95, 164); color: #fff; } .el-button--primary.is-active, .el-button--primary:active { - background: #bb327f; - border-color: #bb327f; + background: rgb(187, 50, 127); + border-color: rgb(187, 50, 127); color: #fff; } .el-button--primary:active { @@ -11586,13 +10636,13 @@ .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:hover { color: #fff; - background-color: #e89bc6; - border-color: #e89bc6; + background-color: rgb(232, 155, 198); + border-color: rgb(232, 155, 198); } .el-button--primary.is-plain { color: #d0378d; - background: #faebf4; - border-color: #ecafd1; + background: rgb(250, 235, 244); + border-color: rgb(236, 175, 209); } .el-button--primary.is-plain:focus, .el-button--primary.is-plain:hover { @@ -11601,8 +10651,8 @@ color: #fff; } .el-button--primary.is-plain:active { - background: #bb327f; - border-color: #bb327f; + background: rgb(187, 50, 127); + border-color: rgb(187, 50, 127); color: #fff; outline: 0; } @@ -11610,9 +10660,9 @@ .el-button--primary.is-plain.is-disabled:active, .el-button--primary.is-plain.is-disabled:focus, .el-button--primary.is-plain.is-disabled:hover { - color: #e387bb; - background-color: #faebf4; - border-color: #f6d7e8; + color: rgb(227, 135, 187); + background-color: rgb(250, 235, 244); + border-color: rgb(246, 215, 232); } .el-button--success { color: #fff; @@ -11871,12 +10921,12 @@ } .el-button--text:focus, .el-button--text:hover { - color: #d95fa4; + color: rgb(217, 95, 164); border-color: transparent; background-color: transparent; } .el-button--text:active { - color: #bb327f; + color: rgb(187, 50, 127); background-color: transparent; } .el-button-group { @@ -12389,8 +11439,8 @@ color: #fff; background-color: #d0378d; border-color: #d0378d; - -webkit-box-shadow: -1px 0 0 0 #e387bb; - box-shadow: -1px 0 0 0 #e387bb; + -webkit-box-shadow: -1px 0 0 0 rgb(227, 135, 187); + box-shadow: -1px 0 0 0 rgb(227, 135, 187); } .el-checkbox-button.is-checked:first-child .el-checkbox-button__inner { border-left-color: #d0378d; @@ -12826,182 +11876,6 @@ bottom: 0; height: 100%; } -@-webkit-keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@keyframes el-drawer-fade-in { - 0% { - opacity: 0; - } - 100% { - opacity: 1; - } -} -@-webkit-keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes rtl-drawer-in { - 0% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@keyframes rtl-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(100%, 0); - transform: translate(100%, 0); - } -} -@-webkit-keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ltr-drawer-in { - 0% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@keyframes ltr-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(-100%, 0); - transform: translate(-100%, 0); - } -} -@-webkit-keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes ttb-drawer-in { - 0% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@keyframes ttb-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, -100%); - transform: translate(0, -100%); - } -} -@-webkit-keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@keyframes btt-drawer-in { - 0% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } - 100% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } -} -@-webkit-keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } -} -@keyframes btt-drawer-out { - 0% { - -webkit-transform: translate(0, 0); - transform: translate(0, 0); - } - 100% { - -webkit-transform: translate(0, 100%); - transform: translate(0, 100%); - } -} .el-drawer { position: absolute; box-sizing: border-box; @@ -13124,16 +11998,22 @@ margin: 0; } +/* custom */ + .app-slider { background-color: #fff !important; } + .app-slider__logo { + background-image: -webkit-gradient(linear, left top, left bottom, from(#d0378d), to(#982f87)); background-image: linear-gradient(to bottom, #d0378d, #982f87); } + .app-slider span, .app-slider .icon-svg { color: #666; } + .app-slider .cl-slider-menu .el-menu .el-submenu__title:hover, .app-slider .cl-slider-menu .el-menu .el-submenu__title.is-active, .app-slider .cl-slider-menu .el-menu .el-menu-item:hover, @@ -13141,6 +12021,7 @@ background-color: #fff !important; border-right: 2px solid #d0378d; } + .app-slider .cl-slider-menu .el-menu .el-submenu__title:hover span, .app-slider .cl-slider-menu .el-menu .el-submenu__title:hover .icon-svg, .app-slider .cl-slider-menu .el-menu .el-submenu__title.is-active span, diff --git a/src/assets/css/element-variables.scss b/src/assets/css/element-variables.scss index 6b287e43bd0dd834073e0515fa5d6d0030fcdb22..d1658529e851ff365f01ed0ffdbafda5164d89c7 100644 --- a/src/assets/css/element-variables.scss +++ b/src/assets/css/element-variables.scss @@ -4,6 +4,6 @@ $--color-danger: $color-danger; $--color-warning: $color-warning; $--color-info: $color-info; -$--font-path: "~element-ui/lib/theme-chalk/fonts"; +$--font-path: "element-plus/lib/theme-chalk/fonts"; -@import "~element-ui/packages/theme-chalk/src/index"; +@import "element-plus/packages/theme-chalk/src/index"; diff --git a/src/assets/css/index.scss b/src/assets/css/index.scss index 58b6f4bcc85a082a0c3524ebac6c9bc1ef931ce4..16198377d8bb17b85605fd6685bb3289009c6be1 100644 --- a/src/assets/css/index.scss +++ b/src/assets/css/index.scss @@ -1,7 +1,6 @@ * { padding: 0; margin: 0; - outline: none; font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif; } diff --git a/src/assets/logo.png b/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d2503fc2a44b5053b0837ebea6e87a2d339a43 Binary files /dev/null and b/src/assets/logo.png differ diff --git a/src/config/env.js b/src/config/env.ts similarity index 55% rename from src/config/env.js rename to src/config/env.ts index 43423da619e36a4245e5e3eaca3f6867affc24b7..acce4f00c1e7e86793e55404642f06aca4a4eadb 100644 --- a/src/config/env.js +++ b/src/config/env.ts @@ -1,20 +1,18 @@ import store from "store"; -import { getUrlParam } from "cl-admin/utils"; +import { getUrlParam } from "/@/core/utils"; +import { MenuItem } from "/$/base/types"; // 路由模式 -export const routerMode = "history"; +const routerMode: String = "history"; // 开发模式 -export const isDev = process.env.NODE_ENV == "development"; +const isDev: Boolean = import.meta.env.MODE === "development"; // Host -export const host = "https://show.cool-admin.com"; +const host: String = "https://show.cool-admin.com"; -// Socket -export const socketUrl = (isDev ? `${host}` : "") + "/socket"; - -// 请求地址,本地会使用代理请求 -export const baseUrl = (function() { +// 请求地址 +const baseUrl: String = (function () { let proxy = getUrlParam("proxy"); if (proxy) { @@ -26,11 +24,14 @@ export const baseUrl = (function() { return isDev ? `/${proxy}/admin` : `/api/admin`; })(); +// Socket +const socketUrl: String = (isDev ? `${host}` : "") + "/socket"; + // 阿里字体图标库 https://at.alicdn.com/t/**.css -export const iconfontUrl = ``; +const iconfontUrl = ``; // 程序配置参数 -export const app = store.get("__app__") || { +const app: any = store.get("__app__") || { name: "COOL-ADMIN", conf: { @@ -47,4 +48,6 @@ export const app = store.get("__app__") || { }; // 自定义菜单列表 -export const menuList = []; +const menuList: MenuItem[] = []; + +export { routerMode, baseUrl, socketUrl, iconfontUrl, app, isDev, menuList }; diff --git a/src/cool/index.js b/src/cool/index.ts similarity index 31% rename from src/cool/index.js rename to src/cool/index.ts index 5f05b88f62e74dd6feacce54b705d5c1a4427de1..537087b7ae30f97fad6d88760141e362af41e8f0 100644 --- a/src/cool/index.js +++ b/src/cool/index.ts @@ -1,18 +1,9 @@ -import Crud from "cl-admin-crud"; -import Theme from "cl-admin-theme"; +import Crud from "cl-admin-crud-vue3"; +import "cl-admin-crud-vue3/dist/index.css"; export default { modules: [ - // 基础模块 - "base", - // 文件上传 - { - name: "upload", - options: { - icon: "el-icon-picture", - text: "选择图片" - } - }, + // crud 模块 { name: "crud", value: Crud, @@ -26,21 +17,6 @@ export default { } } } - }, - // 客服聊天 - "chat", - // 任务管理 - "task", - // 复制指令 - "copy", - // 省市区选择 - "distpicker", - // 示例页 - "demo", - // 主题切换 - { - name: "theme", - value: Theme } ] }; diff --git a/src/cool/modules/base/common/index.js b/src/cool/modules/base/common/index.ts similarity index 100% rename from src/cool/modules/base/common/index.js rename to src/cool/modules/base/common/index.ts diff --git a/src/cool/modules/base/common/resize.js b/src/cool/modules/base/common/resize.ts similarity index 92% rename from src/cool/modules/base/common/resize.js rename to src/cool/modules/base/common/resize.ts index fd891adfae92278e812bbef13ea3962c559a9b14..4c2c97c8eb27e851555a09d54f22b7b77f051743 100644 --- a/src/cool/modules/base/common/resize.js +++ b/src/cool/modules/base/common/resize.ts @@ -1,6 +1,6 @@ -import store from "@/store"; +import store from "/@/store"; -const lock = { +const lock: any = { menuCollapse: null, showAMenu: null }; @@ -46,7 +46,7 @@ function resize() { } } -window.onload = function() { +window.onload = function () { window.addEventListener("resize", resize); resize(); }; diff --git a/src/cool/modules/base/common/theme.js b/src/cool/modules/base/common/theme.ts similarity index 43% rename from src/cool/modules/base/common/theme.js rename to src/cool/modules/base/common/theme.ts index 9cdf38df10d62610bafbdf30027e874a1b8dda34..e2f97ea647625f36049d4784cd39ba6ab2952ebe 100644 --- a/src/cool/modules/base/common/theme.js +++ b/src/cool/modules/base/common/theme.ts @@ -1,6 +1,6 @@ -import { iconfontUrl, app } from "@/config/env"; +import { iconfontUrl, app } from "/@/config/env"; +import { basename } from "/@/core/utils"; import { createLink } from "../utils"; -import { colorPrimary } from "@/assets/css/common.scss"; // 主题初始化 @@ -11,9 +11,7 @@ if (app.theme) { createLink(url, "theme-style"); } - document - .getElementsByTagName("body")[0] - .style.setProperty("--color-primary", color || colorPrimary); + document.getElementsByTagName("body")[0].style.setProperty("--color-primary", color); } // 字体图标库加载 @@ -24,17 +22,16 @@ if (iconfontUrl) { // svg 图标加载 -const req = require.context("@/icons/svg/", false, /\.svg$/); - -req.keys().map(req); +const svgFiles = import.meta.globEager("/src/icons/svg/**/*.svg"); function iconList() { - return req - .keys() - .map(req) - .map(e => e.default.id) - .filter(e => e.includes("icon")) - .sort(); + const list: string[] = []; + + for (const i in svgFiles) { + list.push(basename(i).replace(".svg", "")); + } + + return list; } export { iconList }; diff --git a/src/cool/modules/base/components/avatar/index.vue b/src/cool/modules/base/components/avatar/index.vue index 1d8a7df0f71e2755430702a348c7be6271bafe9e..4978d5174f79ae868ca46850d0297320a00c1f9a 100644 --- a/src/cool/modules/base/components/avatar/index.vue +++ b/src/cool/modules/base/components/avatar/index.vue @@ -1,17 +1,20 @@ - diff --git a/src/cool/modules/base/components/dept/check.vue b/src/cool/modules/base/components/dept/check.vue index f42c8236cd20c43ae622374b23f5534890520aff..7958cb2180b7f32d83c2aa86575061a960ecc8b5 100644 --- a/src/cool/modules/base/components/dept/check.vue +++ b/src/cool/modules/base/components/dept/check.vue @@ -1,113 +1,151 @@ - diff --git a/src/cool/modules/base/components/index.js b/src/cool/modules/base/components/index.js deleted file mode 100644 index 1554de2d7a75a5c4d907c75adcb8e543f7189af4..0000000000000000000000000000000000000000 --- a/src/cool/modules/base/components/index.js +++ /dev/null @@ -1,39 +0,0 @@ -import Avatar from "./avatar"; -import Scrollbar from "./scrollbar"; -import RouteNav from "./route-nav"; -import Process from "./process"; -import IconSvg from "./icon-svg"; -import DeptCheck from "./dept/check"; -import DeptMove from "./dept/move"; -import DeptTree from "./dept/tree"; -import MenuSlider from "./menu/slider"; -import MenuTopbar from "./menu/topbar"; -import MenuFile from "./menu/file"; -import MenuIcons from "./menu/icons"; -import MenuPerms from "./menu/perms"; -import MenuTree from "./menu/tree"; -import RoleSelect from "./role/select"; -import RolePerms from "./role/perms"; -import EditorQuill from "./editor-quill"; -import Codemirror from "./codemirror"; - -export default { - Avatar, - Scrollbar, - RouteNav, - Process, - IconSvg, - DeptCheck, - DeptMove, - DeptTree, - MenuSlider, - MenuTopbar, - MenuFile, - MenuIcons, - MenuPerms, - MenuTree, - RoleSelect, - RolePerms, - EditorQuill, - Codemirror -}; diff --git a/src/cool/modules/base/components/menu/file.vue b/src/cool/modules/base/components/menu/file.vue index 23acac41a2cf74a2005d80ce6dbf0ad0bee7195c..e79ac2d9ae5e3a8ad1a29b4175bc5f1272581e5c 100644 --- a/src/cool/modules/base/components/menu/file.vue +++ b/src/cool/modules/base/components/menu/file.vue @@ -1,66 +1,78 @@ - diff --git a/src/cool/modules/base/components/menu/slider/index.js b/src/cool/modules/base/components/menu/slider/index.js deleted file mode 100644 index 8fd7881b4f95e4a4fa698c6287e7a92216bf0c0d..0000000000000000000000000000000000000000 --- a/src/cool/modules/base/components/menu/slider/index.js +++ /dev/null @@ -1,92 +0,0 @@ -import { mapGetters } from "vuex"; -import "./index.scss"; - -export default { - name: "cl-menu-slider", - - data() { - return { - visible: true - }; - }, - - computed: { - ...mapGetters(["menuList", "menuCollapse", "browser", "app"]) - }, - - watch: { - menuList() { - this.refresh(); - }, - "app.conf.showAMenu"() { - this.$store.commit("SET_MENU_LIST"); - } - }, - - methods: { - toView(url) { - if (url != this.$route.path) { - this.$router.push(url); - } - }, - - refresh() { - this.visible = false; - - setTimeout(() => { - this.visible = true; - }, 0); - } - }, - - render() { - const fn = list => { - return list - .filter(e => e.isShow) - .map(e => { - let html = null; - - if (e.type == 0) { - html = ( - - - {fn(e.children)} - - ); - } else { - html = ( - - - {e.name} - - ); - } - - return html; - }); - }; - - let el = fn(this.menuList); - - return ( - this.visible && ( -
- - {el} - -
- ) - ); - } -}; diff --git a/src/cool/modules/base/components/menu/slider/index.scss b/src/cool/modules/base/components/menu/slider/index.scss index 47004b282425e32932f759b5848131a19163c888..fb46bc464818ee6d6b31b2b380fa44830bc11da9 100644 --- a/src/cool/modules/base/components/menu/slider/index.scss +++ b/src/cool/modules/base/components/menu/slider/index.scss @@ -30,6 +30,8 @@ .icon-svg { font-size: 16px; margin: 0 15px 0 5px; + position: relative; + top: 1px; } span { diff --git a/src/cool/modules/base/components/menu/slider/index.tsx b/src/cool/modules/base/components/menu/slider/index.tsx new file mode 100644 index 0000000000000000000000000000000000000000..7d3ade733e1b26dfc9b3918895a04cc54cd225c8 --- /dev/null +++ b/src/cool/modules/base/components/menu/slider/index.tsx @@ -0,0 +1,122 @@ +import { useStore } from "vuex"; +import { computed, defineComponent, h, ref, watch } from "vue"; +import "./index.scss"; +import { useRoute, useRouter } from "vue-router"; + +export default defineComponent({ + name: "cl-menu-slider", + + setup() { + const router = useRouter(); + const route = useRoute(); + const store = useStore(); + + // 是否可见 + const visible = ref(true); + // 菜单列表 + const menuList = computed(() => store.getters.menuList); + // 菜单是否折叠 + const menuCollapse = computed(() => store.getters.menuCollapse); + // 浏览器信息 + const browser: any = computed(() => store.getters.browser); + + // 页面跳转 + function toView(url: string) { + if (url != route.path) { + router.push(url); + } + } + + // 刷新菜单 + function refresh() { + visible.value = false; + + setTimeout(() => { + visible.value = true; + }, 0); + } + + // 监听菜单变化 + watch(menuList, refresh); + + return { + route, + visible, + menuList, + menuCollapse, + browser, + toView, + refresh + }; + }, + + render(ctx: any) { + function deepMenu(list: any) { + return list + .filter((e: any) => e.isShow) + .map((e: any) => { + let html = null; + + if (e.type == 0) { + html = h( + , + { + index: String(e.id), + key: e.id + }, + { + title: () => { + return !ctx.menuCollapse ? ( + + + {e.name} + + ) : ( + + ); + }, + default() { + return deepMenu(e.children); + } + } + ); + } else { + html = h( + , + { + index: e.path, + key: e.id + }, + { + title() { + return {e.name}; + }, + default() { + return ; + } + } + ); + } + + return html; + }); + } + + const children = deepMenu(ctx.menuList); + + return ( + ctx.visible && ( +
+ + {children} + +
+ ) + ); + } +}); diff --git a/src/cool/modules/base/components/menu/topbar.vue b/src/cool/modules/base/components/menu/topbar.vue index bfc39cdcf733594b359b232a719bdfd532efc37d..9e8e6cf92ad4f9cf1c144ac77b296205b3c70449 100644 --- a/src/cool/modules/base/components/menu/topbar.vue +++ b/src/cool/modules/base/components/menu/topbar.vue @@ -6,88 +6,97 @@ background-color="transparent" @select="onSelect" > - - + + {{ item.name }} - - diff --git a/src/cool/modules/chat/components/icon-voice.vue b/src/cool/modules/chat/components/icon-voice.vue index f08a09d63fb95ccd9bdac540bde824c7f69f76a6..f540eb1e315ec9f0c5abcdeaddc906c1c7669d00 100644 --- a/src/cool/modules/chat/components/icon-voice.vue +++ b/src/cool/modules/chat/components/icon-voice.vue @@ -1,6 +1,6 @@ diff --git a/src/cool/modules/chat/components/index.js b/src/cool/modules/chat/components/index.js deleted file mode 100644 index 6c24ac837212dc14a21efcdfa368a57131fd4af1..0000000000000000000000000000000000000000 --- a/src/cool/modules/chat/components/index.js +++ /dev/null @@ -1,4 +0,0 @@ -import Notice from "./notice"; -import Chat from "./chat"; - -export default { Notice, Chat }; diff --git a/src/cool/modules/chat/components/input.vue b/src/cool/modules/chat/components/input.vue index 2e50bdfd43b691583456dc60af68ff2d374eaccd..26f994f2485acfb857abc8f4bd8ea8d965836c15 100644 --- a/src/cool/modules/chat/components/input.vue +++ b/src/cool/modules/chat/components/input.vue @@ -3,49 +3,21 @@
    -
  • +
  • -
  • - + + - +
  • -
  • - + + - +
@@ -58,8 +30,8 @@ type="textarea" resize="none" :rows="5" - @keyup.enter.native="onTextSend" - > + @keyup.enter="onTextSend" + /> 发送 - - diff --git a/src/cool/modules/demo/views/components/b-cl-crud.vue b/src/cool/modules/demo/views/components/b-cl-crud.vue deleted file mode 100644 index fcc1352ab65078cca3a229fed53110f0d2fc81fe..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-cl-crud.vue +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/cool/modules/demo/views/components/b-cl-editor-quill.vue b/src/cool/modules/demo/views/components/b-cl-editor-quill.vue deleted file mode 100644 index 36f716680afcb297df459f55e854349f48e971b0..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-cl-editor-quill.vue +++ /dev/null @@ -1,14 +0,0 @@ - diff --git a/src/cool/modules/demo/views/components/b-cl-form.vue b/src/cool/modules/demo/views/components/b-cl-form.vue deleted file mode 100644 index 89b796d253d743762f54ba04ad516a57c976c626..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-cl-form.vue +++ /dev/null @@ -1,140 +0,0 @@ - - - - - diff --git a/src/cool/modules/demo/views/components/b-cl-upload.vue b/src/cool/modules/demo/views/components/b-cl-upload.vue deleted file mode 100644 index 502efbb7dc8fecf9ce2d70c262e9db1863908bba..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-cl-upload.vue +++ /dev/null @@ -1,41 +0,0 @@ - - - - - diff --git a/src/cool/modules/demo/views/components/b-error-page.vue b/src/cool/modules/demo/views/components/b-error-page.vue deleted file mode 100644 index 86ce9ac3ec8c9557d0a945e3e3b7dc941d718260..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-error-page.vue +++ /dev/null @@ -1,29 +0,0 @@ - - - diff --git a/src/cool/modules/demo/views/components/b-icon-svg.vue b/src/cool/modules/demo/views/components/b-icon-svg.vue deleted file mode 100644 index 2bd9d41d90ebe303d18b39c1c79ef040443c278c..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-icon-svg.vue +++ /dev/null @@ -1,26 +0,0 @@ - - - diff --git a/src/cool/modules/demo/views/components/b-v-copy.vue b/src/cool/modules/demo/views/components/b-v-copy.vue deleted file mode 100644 index 5c7337310e7837180951636a10ef103da58ddc53..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/components/b-v-copy.vue +++ /dev/null @@ -1,18 +0,0 @@ - diff --git a/src/cool/modules/demo/views/crud.vue b/src/cool/modules/demo/views/crud.vue deleted file mode 100644 index 5b7f6cc08062fb5fe5090a24e46c5033536ba505..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/crud.vue +++ /dev/null @@ -1,613 +0,0 @@ - - - diff --git a/src/cool/modules/demo/views/demo.vue b/src/cool/modules/demo/views/demo.vue deleted file mode 100644 index 1c4ab239a755abe453af899e57201a03636dfad1..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/demo.vue +++ /dev/null @@ -1,119 +0,0 @@ - - - - - diff --git a/src/cool/modules/demo/views/editor-quill.vue b/src/cool/modules/demo/views/editor-quill.vue deleted file mode 100644 index b662b9515cda1d05c728c6c9d0a73bb6072987c7..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/editor-quill.vue +++ /dev/null @@ -1,31 +0,0 @@ - - - - - diff --git a/src/cool/modules/demo/views/order.vue b/src/cool/modules/demo/views/order.vue new file mode 100644 index 0000000000000000000000000000000000000000..ffe466fed6630744be3127091319bc2fc4b2d487 --- /dev/null +++ b/src/cool/modules/demo/views/order.vue @@ -0,0 +1,287 @@ + + + + + diff --git a/src/cool/modules/demo/views/upload.vue b/src/cool/modules/demo/views/upload.vue deleted file mode 100644 index 03d39764d615c1c9f041b6e530f17f8fec5efc3f..0000000000000000000000000000000000000000 --- a/src/cool/modules/demo/views/upload.vue +++ /dev/null @@ -1,90 +0,0 @@ - - - - - diff --git a/src/cool/modules/distpicker/components/data.json b/src/cool/modules/distpicker/components/data.json deleted file mode 100644 index 4d5647f9e982a867878b7d1b19fbdb26b6f44e2b..0000000000000000000000000000000000000000 --- a/src/cool/modules/distpicker/components/data.json +++ /dev/null @@ -1,5312 +0,0 @@ -[ - { - "code": "11", - "name": "北京市", - "children": [ - { - "code": "1101", - "name": "市辖区", - "children": [ - { "code": "110101", "name": "东城区" }, - { "code": "110102", "name": "西城区" }, - { "code": "110105", "name": "朝阳区" }, - { "code": "110106", "name": "丰台区" }, - { "code": "110107", "name": "石景山区" }, - { "code": "110108", "name": "海淀区" }, - { "code": "110109", "name": "门头沟区" }, - { "code": "110111", "name": "房山区" }, - { "code": "110112", "name": "通州区" }, - { "code": "110113", "name": "顺义区" }, - { "code": "110114", "name": "昌平区" }, - { "code": "110115", "name": "大兴区" }, - { "code": "110116", "name": "怀柔区" }, - { "code": "110117", "name": "平谷区" }, - { "code": "110118", "name": "密云区" }, - { "code": "110119", "name": "延庆区" } - ] - } - ] - }, - { - "code": "12", - "name": "天津市", - "children": [ - { - "code": "1201", - "name": "市辖区", - "children": [ - { "code": "120101", "name": "和平区" }, - { "code": "120102", "name": "河东区" }, - { "code": "120103", "name": "河西区" }, - { "code": "120104", "name": "南开区" }, - { "code": "120105", "name": "河北区" }, - { "code": "120106", "name": "红桥区" }, - { "code": "120110", "name": "东丽区" }, - { "code": "120111", "name": "西青区" }, - { "code": "120112", "name": "津南区" }, - { "code": "120113", "name": "北辰区" }, - { "code": "120114", "name": "武清区" }, - { "code": "120115", "name": "宝坻区" }, - { "code": "120116", "name": "滨海新区" }, - { "code": "120117", "name": "宁河区" }, - { "code": "120118", "name": "静海区" }, - { "code": "120119", "name": "蓟州区" } - ] - } - ] - }, - { - "code": "13", - "name": "河北省", - "children": [ - { - "code": "1301", - "name": "石家庄市", - "children": [ - { "code": "130102", "name": "长安区" }, - { "code": "130104", "name": "桥西区" }, - { "code": "130105", "name": "新华区" }, - { "code": "130107", "name": "井陉矿区" }, - { "code": "130108", "name": "裕华区" }, - { "code": "130109", "name": "藁城区" }, - { "code": "130110", "name": "鹿泉区" }, - { "code": "130111", "name": "栾城区" }, - { "code": "130121", "name": "井陉县" }, - { "code": "130123", "name": "正定县" }, - { "code": "130125", "name": "行唐县" }, - { "code": "130126", "name": "灵寿县" }, - { "code": "130127", "name": "高邑县" }, - { "code": "130128", "name": "深泽县" }, - { "code": "130129", "name": "赞皇县" }, - { "code": "130130", "name": "无极县" }, - { "code": "130131", "name": "平山县" }, - { "code": "130132", "name": "元氏县" }, - { "code": "130133", "name": "赵县" }, - { "code": "130171", "name": "石家庄高新技术产业开发区" }, - { "code": "130172", "name": "石家庄循环化工园区" }, - { "code": "130181", "name": "辛集市" }, - { "code": "130183", "name": "晋州市" }, - { "code": "130184", "name": "新乐市" } - ] - }, - { - "code": "1302", - "name": "唐山市", - "children": [ - { "code": "130202", "name": "路南区" }, - { "code": "130203", "name": "路北区" }, - { "code": "130204", "name": "古冶区" }, - { "code": "130205", "name": "开平区" }, - { "code": "130207", "name": "丰南区" }, - { "code": "130208", "name": "丰润区" }, - { "code": "130209", "name": "曹妃甸区" }, - { "code": "130224", "name": "滦南县" }, - { "code": "130225", "name": "乐亭县" }, - { "code": "130227", "name": "迁西县" }, - { "code": "130229", "name": "玉田县" }, - { "code": "130271", "name": "河北唐山芦台经济开发区" }, - { "code": "130272", "name": "唐山市汉沽管理区" }, - { "code": "130273", "name": "唐山高新技术产业开发区" }, - { "code": "130274", "name": "河北唐山海港经济开发区" }, - { "code": "130281", "name": "遵化市" }, - { "code": "130283", "name": "迁安市" }, - { "code": "130284", "name": "滦州市" } - ] - }, - { - "code": "1303", - "name": "秦皇岛市", - "children": [ - { "code": "130302", "name": "海港区" }, - { "code": "130303", "name": "山海关区" }, - { "code": "130304", "name": "北戴河区" }, - { "code": "130306", "name": "抚宁区" }, - { "code": "130321", "name": "青龙满族自治县" }, - { "code": "130322", "name": "昌黎县" }, - { "code": "130324", "name": "卢龙县" }, - { "code": "130371", "name": "秦皇岛市经济技术开发区" }, - { "code": "130372", "name": "北戴河新区" } - ] - }, - { - "code": "1304", - "name": "邯郸市", - "children": [ - { "code": "130402", "name": "邯山区" }, - { "code": "130403", "name": "丛台区" }, - { "code": "130404", "name": "复兴区" }, - { "code": "130406", "name": "峰峰矿区" }, - { "code": "130407", "name": "肥乡区" }, - { "code": "130408", "name": "永年区" }, - { "code": "130423", "name": "临漳县" }, - { "code": "130424", "name": "成安县" }, - { "code": "130425", "name": "大名县" }, - { "code": "130426", "name": "涉县" }, - { "code": "130427", "name": "磁县" }, - { "code": "130430", "name": "邱县" }, - { "code": "130431", "name": "鸡泽县" }, - { "code": "130432", "name": "广平县" }, - { "code": "130433", "name": "馆陶县" }, - { "code": "130434", "name": "魏县" }, - { "code": "130435", "name": "曲周县" }, - { "code": "130471", "name": "邯郸经济技术开发区" }, - { "code": "130473", "name": "邯郸冀南新区" }, - { "code": "130481", "name": "武安市" } - ] - }, - { - "code": "1305", - "name": "邢台市", - "children": [ - { "code": "130502", "name": "桥东区" }, - { "code": "130503", "name": "桥西区" }, - { "code": "130521", "name": "邢台县" }, - { "code": "130522", "name": "临城县" }, - { "code": "130523", "name": "内丘县" }, - { "code": "130524", "name": "柏乡县" }, - { "code": "130525", "name": "隆尧县" }, - { "code": "130526", "name": "任县" }, - { "code": "130527", "name": "南和县" }, - { "code": "130528", "name": "宁晋县" }, - { "code": "130529", "name": "巨鹿县" }, - { "code": "130530", "name": "新河县" }, - { "code": "130531", "name": "广宗县" }, - { "code": "130532", "name": "平乡县" }, - { "code": "130533", "name": "威县" }, - { "code": "130534", "name": "清河县" }, - { "code": "130535", "name": "临西县" }, - { "code": "130571", "name": "河北邢台经济开发区" }, - { "code": "130581", "name": "南宫市" }, - { "code": "130582", "name": "沙河市" } - ] - }, - { - "code": "1306", - "name": "保定市", - "children": [ - { "code": "130602", "name": "竞秀区" }, - { "code": "130606", "name": "莲池区" }, - { "code": "130607", "name": "满城区" }, - { "code": "130608", "name": "清苑区" }, - { "code": "130609", "name": "徐水区" }, - { "code": "130623", "name": "涞水县" }, - { "code": "130624", "name": "阜平县" }, - { "code": "130626", "name": "定兴县" }, - { "code": "130627", "name": "唐县" }, - { "code": "130628", "name": "高阳县" }, - { "code": "130629", "name": "容城县" }, - { "code": "130630", "name": "涞源县" }, - { "code": "130631", "name": "望都县" }, - { "code": "130632", "name": "安新县" }, - { "code": "130633", "name": "易县" }, - { "code": "130634", "name": "曲阳县" }, - { "code": "130635", "name": "蠡县" }, - { "code": "130636", "name": "顺平县" }, - { "code": "130637", "name": "博野县" }, - { "code": "130638", "name": "雄县" }, - { "code": "130671", "name": "保定高新技术产业开发区" }, - { "code": "130672", "name": "保定白沟新城" }, - { "code": "130681", "name": "涿州市" }, - { "code": "130682", "name": "定州市" }, - { "code": "130683", "name": "安国市" }, - { "code": "130684", "name": "高碑店市" } - ] - }, - { - "code": "1307", - "name": "张家口市", - "children": [ - { "code": "130702", "name": "桥东区" }, - { "code": "130703", "name": "桥西区" }, - { "code": "130705", "name": "宣化区" }, - { "code": "130706", "name": "下花园区" }, - { "code": "130708", "name": "万全区" }, - { "code": "130709", "name": "崇礼区" }, - { "code": "130722", "name": "张北县" }, - { "code": "130723", "name": "康保县" }, - { "code": "130724", "name": "沽源县" }, - { "code": "130725", "name": "尚义县" }, - { "code": "130726", "name": "蔚县" }, - { "code": "130727", "name": "阳原县" }, - { "code": "130728", "name": "怀安县" }, - { "code": "130730", "name": "怀来县" }, - { "code": "130731", "name": "涿鹿县" }, - { "code": "130732", "name": "赤城县" }, - { "code": "130771", "name": "张家口经济开发区" }, - { "code": "130772", "name": "张家口市察北管理区" }, - { "code": "130773", "name": "张家口市塞北管理区" } - ] - }, - { - "code": "1308", - "name": "承德市", - "children": [ - { "code": "130802", "name": "双桥区" }, - { "code": "130803", "name": "双滦区" }, - { "code": "130804", "name": "鹰手营子矿区" }, - { "code": "130821", "name": "承德县" }, - { "code": "130822", "name": "兴隆县" }, - { "code": "130824", "name": "滦平县" }, - { "code": "130825", "name": "隆化县" }, - { "code": "130826", "name": "丰宁满族自治县" }, - { "code": "130827", "name": "宽城满族自治县" }, - { "code": "130828", "name": "围场满族蒙古族自治县" }, - { "code": "130871", "name": "承德高新技术产业开发区" }, - { "code": "130881", "name": "平泉市" } - ] - }, - { - "code": "1309", - "name": "沧州市", - "children": [ - { "code": "130902", "name": "新华区" }, - { "code": "130903", "name": "运河区" }, - { "code": "130921", "name": "沧县" }, - { "code": "130922", "name": "青县" }, - { "code": "130923", "name": "东光县" }, - { "code": "130924", "name": "海兴县" }, - { "code": "130925", "name": "盐山县" }, - { "code": "130926", "name": "肃宁县" }, - { "code": "130927", "name": "南皮县" }, - { "code": "130928", "name": "吴桥县" }, - { "code": "130929", "name": "献县" }, - { "code": "130930", "name": "孟村回族自治县" }, - { "code": "130971", "name": "河北沧州经济开发区" }, - { "code": "130972", "name": "沧州高新技术产业开发区" }, - { "code": "130973", "name": "沧州渤海新区" }, - { "code": "130981", "name": "泊头市" }, - { "code": "130982", "name": "任丘市" }, - { "code": "130983", "name": "黄骅市" }, - { "code": "130984", "name": "河间市" } - ] - }, - { - "code": "1310", - "name": "廊坊市", - "children": [ - { "code": "131002", "name": "安次区" }, - { "code": "131003", "name": "广阳区" }, - { "code": "131022", "name": "固安县" }, - { "code": "131023", "name": "永清县" }, - { "code": "131024", "name": "香河县" }, - { "code": "131025", "name": "大城县" }, - { "code": "131026", "name": "文安县" }, - { "code": "131028", "name": "大厂回族自治县" }, - { "code": "131071", "name": "廊坊经济技术开发区" }, - { "code": "131081", "name": "霸州市" }, - { "code": "131082", "name": "三河市" } - ] - }, - { - "code": "1311", - "name": "衡水市", - "children": [ - { "code": "131102", "name": "桃城区" }, - { "code": "131103", "name": "冀州区" }, - { "code": "131121", "name": "枣强县" }, - { "code": "131122", "name": "武邑县" }, - { "code": "131123", "name": "武强县" }, - { "code": "131124", "name": "饶阳县" }, - { "code": "131125", "name": "安平县" }, - { "code": "131126", "name": "故城县" }, - { "code": "131127", "name": "景县" }, - { "code": "131128", "name": "阜城县" }, - { "code": "131171", "name": "河北衡水高新技术产业开发区" }, - { "code": "131172", "name": "衡水滨湖新区" }, - { "code": "131182", "name": "深州市" } - ] - } - ] - }, - { - "code": "14", - "name": "山西省", - "children": [ - { - "code": "1401", - "name": "太原市", - "children": [ - { "code": "140105", "name": "小店区" }, - { "code": "140106", "name": "迎泽区" }, - { "code": "140107", "name": "杏花岭区" }, - { "code": "140108", "name": "尖草坪区" }, - { "code": "140109", "name": "万柏林区" }, - { "code": "140110", "name": "晋源区" }, - { "code": "140121", "name": "清徐县" }, - { "code": "140122", "name": "阳曲县" }, - { "code": "140123", "name": "娄烦县" }, - { "code": "140171", "name": "山西转型综合改革示范区" }, - { "code": "140181", "name": "古交市" } - ] - }, - { - "code": "1402", - "name": "大同市", - "children": [ - { "code": "140212", "name": "新荣区" }, - { "code": "140213", "name": "平城区" }, - { "code": "140214", "name": "云冈区" }, - { "code": "140215", "name": "云州区" }, - { "code": "140221", "name": "阳高县" }, - { "code": "140222", "name": "天镇县" }, - { "code": "140223", "name": "广灵县" }, - { "code": "140224", "name": "灵丘县" }, - { "code": "140225", "name": "浑源县" }, - { "code": "140226", "name": "左云县" }, - { "code": "140271", "name": "山西大同经济开发区" } - ] - }, - { - "code": "1403", - "name": "阳泉市", - "children": [ - { "code": "140302", "name": "城区" }, - { "code": "140303", "name": "矿区" }, - { "code": "140311", "name": "郊区" }, - { "code": "140321", "name": "平定县" }, - { "code": "140322", "name": "盂县" } - ] - }, - { - "code": "1404", - "name": "长治市", - "children": [ - { "code": "140403", "name": "潞州区" }, - { "code": "140404", "name": "上党区" }, - { "code": "140405", "name": "屯留区" }, - { "code": "140406", "name": "潞城区" }, - { "code": "140423", "name": "襄垣县" }, - { "code": "140425", "name": "平顺县" }, - { "code": "140426", "name": "黎城县" }, - { "code": "140427", "name": "壶关县" }, - { "code": "140428", "name": "长子县" }, - { "code": "140429", "name": "武乡县" }, - { "code": "140430", "name": "沁县" }, - { "code": "140431", "name": "沁源县" }, - { "code": "140471", "name": "山西长治高新技术产业园区" } - ] - }, - { - "code": "1405", - "name": "晋城市", - "children": [ - { "code": "140502", "name": "城区" }, - { "code": "140521", "name": "沁水县" }, - { "code": "140522", "name": "阳城县" }, - { "code": "140524", "name": "陵川县" }, - { "code": "140525", "name": "泽州县" }, - { "code": "140581", "name": "高平市" } - ] - }, - { - "code": "1406", - "name": "朔州市", - "children": [ - { "code": "140602", "name": "朔城区" }, - { "code": "140603", "name": "平鲁区" }, - { "code": "140621", "name": "山阴县" }, - { "code": "140622", "name": "应县" }, - { "code": "140623", "name": "右玉县" }, - { "code": "140671", "name": "山西朔州经济开发区" }, - { "code": "140681", "name": "怀仁市" } - ] - }, - { - "code": "1407", - "name": "晋中市", - "children": [ - { "code": "140702", "name": "榆次区" }, - { "code": "140721", "name": "榆社县" }, - { "code": "140722", "name": "左权县" }, - { "code": "140723", "name": "和顺县" }, - { "code": "140724", "name": "昔阳县" }, - { "code": "140725", "name": "寿阳县" }, - { "code": "140726", "name": "太谷县" }, - { "code": "140727", "name": "祁县" }, - { "code": "140728", "name": "平遥县" }, - { "code": "140729", "name": "灵石县" }, - { "code": "140781", "name": "介休市" } - ] - }, - { - "code": "1408", - "name": "运城市", - "children": [ - { "code": "140802", "name": "盐湖区" }, - { "code": "140821", "name": "临猗县" }, - { "code": "140822", "name": "万荣县" }, - { "code": "140823", "name": "闻喜县" }, - { "code": "140824", "name": "稷山县" }, - { "code": "140825", "name": "新绛县" }, - { "code": "140826", "name": "绛县" }, - { "code": "140827", "name": "垣曲县" }, - { "code": "140828", "name": "夏县" }, - { "code": "140829", "name": "平陆县" }, - { "code": "140830", "name": "芮城县" }, - { "code": "140881", "name": "永济市" }, - { "code": "140882", "name": "河津市" } - ] - }, - { - "code": "1409", - "name": "忻州市", - "children": [ - { "code": "140902", "name": "忻府区" }, - { "code": "140921", "name": "定襄县" }, - { "code": "140922", "name": "五台县" }, - { "code": "140923", "name": "代县" }, - { "code": "140924", "name": "繁峙县" }, - { "code": "140925", "name": "宁武县" }, - { "code": "140926", "name": "静乐县" }, - { "code": "140927", "name": "神池县" }, - { "code": "140928", "name": "五寨县" }, - { "code": "140929", "name": "岢岚县" }, - { "code": "140930", "name": "河曲县" }, - { "code": "140931", "name": "保德县" }, - { "code": "140932", "name": "偏关县" }, - { "code": "140971", "name": "五台山风景名胜区" }, - { "code": "140981", "name": "原平市" } - ] - }, - { - "code": "1410", - "name": "临汾市", - "children": [ - { "code": "141002", "name": "尧都区" }, - { "code": "141021", "name": "曲沃县" }, - { "code": "141022", "name": "翼城县" }, - { "code": "141023", "name": "襄汾县" }, - { "code": "141024", "name": "洪洞县" }, - { "code": "141025", "name": "古县" }, - { "code": "141026", "name": "安泽县" }, - { "code": "141027", "name": "浮山县" }, - { "code": "141028", "name": "吉县" }, - { "code": "141029", "name": "乡宁县" }, - { "code": "141030", "name": "大宁县" }, - { "code": "141031", "name": "隰县" }, - { "code": "141032", "name": "永和县" }, - { "code": "141033", "name": "蒲县" }, - { "code": "141034", "name": "汾西县" }, - { "code": "141081", "name": "侯马市" }, - { "code": "141082", "name": "霍州市" } - ] - }, - { - "code": "1411", - "name": "吕梁市", - "children": [ - { "code": "141102", "name": "离石区" }, - { "code": "141121", "name": "文水县" }, - { "code": "141122", "name": "交城县" }, - { "code": "141123", "name": "兴县" }, - { "code": "141124", "name": "临县" }, - { "code": "141125", "name": "柳林县" }, - { "code": "141126", "name": "石楼县" }, - { "code": "141127", "name": "岚县" }, - { "code": "141128", "name": "方山县" }, - { "code": "141129", "name": "中阳县" }, - { "code": "141130", "name": "交口县" }, - { "code": "141181", "name": "孝义市" }, - { "code": "141182", "name": "汾阳市" } - ] - } - ] - }, - { - "code": "15", - "name": "内蒙古自治区", - "children": [ - { - "code": "1501", - "name": "呼和浩特市", - "children": [ - { "code": "150102", "name": "新城区" }, - { "code": "150103", "name": "回民区" }, - { "code": "150104", "name": "玉泉区" }, - { "code": "150105", "name": "赛罕区" }, - { "code": "150121", "name": "土默特左旗" }, - { "code": "150122", "name": "托克托县" }, - { "code": "150123", "name": "和林格尔县" }, - { "code": "150124", "name": "清水河县" }, - { "code": "150125", "name": "武川县" }, - { "code": "150171", "name": "呼和浩特金海工业园区" }, - { "code": "150172", "name": "呼和浩特经济技术开发区" } - ] - }, - { - "code": "1502", - "name": "包头市", - "children": [ - { "code": "150202", "name": "东河区" }, - { "code": "150203", "name": "昆都仑区" }, - { "code": "150204", "name": "青山区" }, - { "code": "150205", "name": "石拐区" }, - { "code": "150206", "name": "白云鄂博矿区" }, - { "code": "150207", "name": "九原区" }, - { "code": "150221", "name": "土默特右旗" }, - { "code": "150222", "name": "固阳县" }, - { "code": "150223", "name": "达尔罕茂明安联合旗" }, - { "code": "150271", "name": "包头稀土高新技术产业开发区" } - ] - }, - { - "code": "1503", - "name": "乌海市", - "children": [ - { "code": "150302", "name": "海勃湾区" }, - { "code": "150303", "name": "海南区" }, - { "code": "150304", "name": "乌达区" } - ] - }, - { - "code": "1504", - "name": "赤峰市", - "children": [ - { "code": "150402", "name": "红山区" }, - { "code": "150403", "name": "元宝山区" }, - { "code": "150404", "name": "松山区" }, - { "code": "150421", "name": "阿鲁科尔沁旗" }, - { "code": "150422", "name": "巴林左旗" }, - { "code": "150423", "name": "巴林右旗" }, - { "code": "150424", "name": "林西县" }, - { "code": "150425", "name": "克什克腾旗" }, - { "code": "150426", "name": "翁牛特旗" }, - { "code": "150428", "name": "喀喇沁旗" }, - { "code": "150429", "name": "宁城县" }, - { "code": "150430", "name": "敖汉旗" } - ] - }, - { - "code": "1505", - "name": "通辽市", - "children": [ - { "code": "150502", "name": "科尔沁区" }, - { "code": "150521", "name": "科尔沁左翼中旗" }, - { "code": "150522", "name": "科尔沁左翼后旗" }, - { "code": "150523", "name": "开鲁县" }, - { "code": "150524", "name": "库伦旗" }, - { "code": "150525", "name": "奈曼旗" }, - { "code": "150526", "name": "扎鲁特旗" }, - { "code": "150571", "name": "通辽经济技术开发区" }, - { "code": "150581", "name": "霍林郭勒市" } - ] - }, - { - "code": "1506", - "name": "鄂尔多斯市", - "children": [ - { "code": "150602", "name": "东胜区" }, - { "code": "150603", "name": "康巴什区" }, - { "code": "150621", "name": "达拉特旗" }, - { "code": "150622", "name": "准格尔旗" }, - { "code": "150623", "name": "鄂托克前旗" }, - { "code": "150624", "name": "鄂托克旗" }, - { "code": "150625", "name": "杭锦旗" }, - { "code": "150626", "name": "乌审旗" }, - { "code": "150627", "name": "伊金霍洛旗" } - ] - }, - { - "code": "1507", - "name": "呼伦贝尔市", - "children": [ - { "code": "150702", "name": "海拉尔区" }, - { "code": "150703", "name": "扎赉诺尔区" }, - { "code": "150721", "name": "阿荣旗" }, - { "code": "150722", "name": "莫力达瓦达斡尔族自治旗" }, - { "code": "150723", "name": "鄂伦春自治旗" }, - { "code": "150724", "name": "鄂温克族自治旗" }, - { "code": "150725", "name": "陈巴尔虎旗" }, - { "code": "150726", "name": "新巴尔虎左旗" }, - { "code": "150727", "name": "新巴尔虎右旗" }, - { "code": "150781", "name": "满洲里市" }, - { "code": "150782", "name": "牙克石市" }, - { "code": "150783", "name": "扎兰屯市" }, - { "code": "150784", "name": "额尔古纳市" }, - { "code": "150785", "name": "根河市" } - ] - }, - { - "code": "1508", - "name": "巴彦淖尔市", - "children": [ - { "code": "150802", "name": "临河区" }, - { "code": "150821", "name": "五原县" }, - { "code": "150822", "name": "磴口县" }, - { "code": "150823", "name": "乌拉特前旗" }, - { "code": "150824", "name": "乌拉特中旗" }, - { "code": "150825", "name": "乌拉特后旗" }, - { "code": "150826", "name": "杭锦后旗" } - ] - }, - { - "code": "1509", - "name": "乌兰察布市", - "children": [ - { "code": "150902", "name": "集宁区" }, - { "code": "150921", "name": "卓资县" }, - { "code": "150922", "name": "化德县" }, - { "code": "150923", "name": "商都县" }, - { "code": "150924", "name": "兴和县" }, - { "code": "150925", "name": "凉城县" }, - { "code": "150926", "name": "察哈尔右翼前旗" }, - { "code": "150927", "name": "察哈尔右翼中旗" }, - { "code": "150928", "name": "察哈尔右翼后旗" }, - { "code": "150929", "name": "四子王旗" }, - { "code": "150981", "name": "丰镇市" } - ] - }, - { - "code": "1522", - "name": "兴安盟", - "children": [ - { "code": "152201", "name": "乌兰浩特市" }, - { "code": "152202", "name": "阿尔山市" }, - { "code": "152221", "name": "科尔沁右翼前旗" }, - { "code": "152222", "name": "科尔沁右翼中旗" }, - { "code": "152223", "name": "扎赉特旗" }, - { "code": "152224", "name": "突泉县" } - ] - }, - { - "code": "1525", - "name": "锡林郭勒盟", - "children": [ - { "code": "152501", "name": "二连浩特市" }, - { "code": "152502", "name": "锡林浩特市" }, - { "code": "152522", "name": "阿巴嘎旗" }, - { "code": "152523", "name": "苏尼特左旗" }, - { "code": "152524", "name": "苏尼特右旗" }, - { "code": "152525", "name": "东乌珠穆沁旗" }, - { "code": "152526", "name": "西乌珠穆沁旗" }, - { "code": "152527", "name": "太仆寺旗" }, - { "code": "152528", "name": "镶黄旗" }, - { "code": "152529", "name": "正镶白旗" }, - { "code": "152530", "name": "正蓝旗" }, - { "code": "152531", "name": "多伦县" }, - { "code": "152571", "name": "乌拉盖管委会" } - ] - }, - { - "code": "1529", - "name": "阿拉善盟", - "children": [ - { "code": "152921", "name": "阿拉善左旗" }, - { "code": "152922", "name": "阿拉善右旗" }, - { "code": "152923", "name": "额济纳旗" }, - { "code": "152971", "name": "内蒙古阿拉善经济开发区" } - ] - } - ] - }, - { - "code": "21", - "name": "辽宁省", - "children": [ - { - "code": "2101", - "name": "沈阳市", - "children": [ - { "code": "210102", "name": "和平区" }, - { "code": "210103", "name": "沈河区" }, - { "code": "210104", "name": "大东区" }, - { "code": "210105", "name": "皇姑区" }, - { "code": "210106", "name": "铁西区" }, - { "code": "210111", "name": "苏家屯区" }, - { "code": "210112", "name": "浑南区" }, - { "code": "210113", "name": "沈北新区" }, - { "code": "210114", "name": "于洪区" }, - { "code": "210115", "name": "辽中区" }, - { "code": "210123", "name": "康平县" }, - { "code": "210124", "name": "法库县" }, - { "code": "210181", "name": "新民市" } - ] - }, - { - "code": "2102", - "name": "大连市", - "children": [ - { "code": "210202", "name": "中山区" }, - { "code": "210203", "name": "西岗区" }, - { "code": "210204", "name": "沙河口区" }, - { "code": "210211", "name": "甘井子区" }, - { "code": "210212", "name": "旅顺口区" }, - { "code": "210213", "name": "金州区" }, - { "code": "210214", "name": "普兰店区" }, - { "code": "210224", "name": "长海县" }, - { "code": "210281", "name": "瓦房店市" }, - { "code": "210283", "name": "庄河市" } - ] - }, - { - "code": "2103", - "name": "鞍山市", - "children": [ - { "code": "210302", "name": "铁东区" }, - { "code": "210303", "name": "铁西区" }, - { "code": "210304", "name": "立山区" }, - { "code": "210311", "name": "千山区" }, - { "code": "210321", "name": "台安县" }, - { "code": "210323", "name": "岫岩满族自治县" }, - { "code": "210381", "name": "海城市" } - ] - }, - { - "code": "2104", - "name": "抚顺市", - "children": [ - { "code": "210402", "name": "新抚区" }, - { "code": "210403", "name": "东洲区" }, - { "code": "210404", "name": "望花区" }, - { "code": "210411", "name": "顺城区" }, - { "code": "210421", "name": "抚顺县" }, - { "code": "210422", "name": "新宾满族自治县" }, - { "code": "210423", "name": "清原满族自治县" } - ] - }, - { - "code": "2105", - "name": "本溪市", - "children": [ - { "code": "210502", "name": "平山区" }, - { "code": "210503", "name": "溪湖区" }, - { "code": "210504", "name": "明山区" }, - { "code": "210505", "name": "南芬区" }, - { "code": "210521", "name": "本溪满族自治县" }, - { "code": "210522", "name": "桓仁满族自治县" } - ] - }, - { - "code": "2106", - "name": "丹东市", - "children": [ - { "code": "210602", "name": "元宝区" }, - { "code": "210603", "name": "振兴区" }, - { "code": "210604", "name": "振安区" }, - { "code": "210624", "name": "宽甸满族自治县" }, - { "code": "210681", "name": "东港市" }, - { "code": "210682", "name": "凤城市" } - ] - }, - { - "code": "2107", - "name": "锦州市", - "children": [ - { "code": "210702", "name": "古塔区" }, - { "code": "210703", "name": "凌河区" }, - { "code": "210711", "name": "太和区" }, - { "code": "210726", "name": "黑山县" }, - { "code": "210727", "name": "义县" }, - { "code": "210781", "name": "凌海市" }, - { "code": "210782", "name": "北镇市" } - ] - }, - { - "code": "2108", - "name": "营口市", - "children": [ - { "code": "210802", "name": "站前区" }, - { "code": "210803", "name": "西市区" }, - { "code": "210804", "name": "鲅鱼圈区" }, - { "code": "210811", "name": "老边区" }, - { "code": "210881", "name": "盖州市" }, - { "code": "210882", "name": "大石桥市" } - ] - }, - { - "code": "2109", - "name": "阜新市", - "children": [ - { "code": "210902", "name": "海州区" }, - { "code": "210903", "name": "新邱区" }, - { "code": "210904", "name": "太平区" }, - { "code": "210905", "name": "清河门区" }, - { "code": "210911", "name": "细河区" }, - { "code": "210921", "name": "阜新蒙古族自治县" }, - { "code": "210922", "name": "彰武县" } - ] - }, - { - "code": "2110", - "name": "辽阳市", - "children": [ - { "code": "211002", "name": "白塔区" }, - { "code": "211003", "name": "文圣区" }, - { "code": "211004", "name": "宏伟区" }, - { "code": "211005", "name": "弓长岭区" }, - { "code": "211011", "name": "太子河区" }, - { "code": "211021", "name": "辽阳县" }, - { "code": "211081", "name": "灯塔市" } - ] - }, - { - "code": "2111", - "name": "盘锦市", - "children": [ - { "code": "211102", "name": "双台子区" }, - { "code": "211103", "name": "兴隆台区" }, - { "code": "211104", "name": "大洼区" }, - { "code": "211122", "name": "盘山县" } - ] - }, - { - "code": "2112", - "name": "铁岭市", - "children": [ - { "code": "211202", "name": "银州区" }, - { "code": "211204", "name": "清河区" }, - { "code": "211221", "name": "铁岭县" }, - { "code": "211223", "name": "西丰县" }, - { "code": "211224", "name": "昌图县" }, - { "code": "211281", "name": "调兵山市" }, - { "code": "211282", "name": "开原市" } - ] - }, - { - "code": "2113", - "name": "朝阳市", - "children": [ - { "code": "211302", "name": "双塔区" }, - { "code": "211303", "name": "龙城区" }, - { "code": "211321", "name": "朝阳县" }, - { "code": "211322", "name": "建平县" }, - { "code": "211324", "name": "喀喇沁左翼蒙古族自治县" }, - { "code": "211381", "name": "北票市" }, - { "code": "211382", "name": "凌源市" } - ] - }, - { - "code": "2114", - "name": "葫芦岛市", - "children": [ - { "code": "211402", "name": "连山区" }, - { "code": "211403", "name": "龙港区" }, - { "code": "211404", "name": "南票区" }, - { "code": "211421", "name": "绥中县" }, - { "code": "211422", "name": "建昌县" }, - { "code": "211481", "name": "兴城市" } - ] - } - ] - }, - { - "code": "22", - "name": "吉林省", - "children": [ - { - "code": "2201", - "name": "长春市", - "children": [ - { "code": "220102", "name": "南关区" }, - { "code": "220103", "name": "宽城区" }, - { "code": "220104", "name": "朝阳区" }, - { "code": "220105", "name": "二道区" }, - { "code": "220106", "name": "绿园区" }, - { "code": "220112", "name": "双阳区" }, - { "code": "220113", "name": "九台区" }, - { "code": "220122", "name": "农安县" }, - { "code": "220171", "name": "长春经济技术开发区" }, - { "code": "220172", "name": "长春净月高新技术产业开发区" }, - { "code": "220173", "name": "长春高新技术产业开发区" }, - { "code": "220174", "name": "长春汽车经济技术开发区" }, - { "code": "220182", "name": "榆树市" }, - { "code": "220183", "name": "德惠市" } - ] - }, - { - "code": "2202", - "name": "吉林市", - "children": [ - { "code": "220202", "name": "昌邑区" }, - { "code": "220203", "name": "龙潭区" }, - { "code": "220204", "name": "船营区" }, - { "code": "220211", "name": "丰满区" }, - { "code": "220221", "name": "永吉县" }, - { "code": "220271", "name": "吉林经济开发区" }, - { "code": "220272", "name": "吉林高新技术产业开发区" }, - { "code": "220273", "name": "吉林中国新加坡食品区" }, - { "code": "220281", "name": "蛟河市" }, - { "code": "220282", "name": "桦甸市" }, - { "code": "220283", "name": "舒兰市" }, - { "code": "220284", "name": "磐石市" } - ] - }, - { - "code": "2203", - "name": "四平市", - "children": [ - { "code": "220302", "name": "铁西区" }, - { "code": "220303", "name": "铁东区" }, - { "code": "220322", "name": "梨树县" }, - { "code": "220323", "name": "伊通满族自治县" }, - { "code": "220381", "name": "公主岭市" }, - { "code": "220382", "name": "双辽市" } - ] - }, - { - "code": "2204", - "name": "辽源市", - "children": [ - { "code": "220402", "name": "龙山区" }, - { "code": "220403", "name": "西安区" }, - { "code": "220421", "name": "东丰县" }, - { "code": "220422", "name": "东辽县" } - ] - }, - { - "code": "2205", - "name": "通化市", - "children": [ - { "code": "220502", "name": "东昌区" }, - { "code": "220503", "name": "二道江区" }, - { "code": "220521", "name": "通化县" }, - { "code": "220523", "name": "辉南县" }, - { "code": "220524", "name": "柳河县" }, - { "code": "220581", "name": "梅河口市" }, - { "code": "220582", "name": "集安市" } - ] - }, - { - "code": "2206", - "name": "白山市", - "children": [ - { "code": "220602", "name": "浑江区" }, - { "code": "220605", "name": "江源区" }, - { "code": "220621", "name": "抚松县" }, - { "code": "220622", "name": "靖宇县" }, - { "code": "220623", "name": "长白朝鲜族自治县" }, - { "code": "220681", "name": "临江市" } - ] - }, - { - "code": "2207", - "name": "松原市", - "children": [ - { "code": "220702", "name": "宁江区" }, - { "code": "220721", "name": "前郭尔罗斯蒙古族自治县" }, - { "code": "220722", "name": "长岭县" }, - { "code": "220723", "name": "乾安县" }, - { "code": "220771", "name": "吉林松原经济开发区" }, - { "code": "220781", "name": "扶余市" } - ] - }, - { - "code": "2208", - "name": "白城市", - "children": [ - { "code": "220802", "name": "洮北区" }, - { "code": "220821", "name": "镇赉县" }, - { "code": "220822", "name": "通榆县" }, - { "code": "220871", "name": "吉林白城经济开发区" }, - { "code": "220881", "name": "洮南市" }, - { "code": "220882", "name": "大安市" } - ] - }, - { - "code": "2224", - "name": "延边朝鲜族自治州", - "children": [ - { "code": "222401", "name": "延吉市" }, - { "code": "222402", "name": "图们市" }, - { "code": "222403", "name": "敦化市" }, - { "code": "222404", "name": "珲春市" }, - { "code": "222405", "name": "龙井市" }, - { "code": "222406", "name": "和龙市" }, - { "code": "222424", "name": "汪清县" }, - { "code": "222426", "name": "安图县" } - ] - } - ] - }, - { - "code": "23", - "name": "黑龙江省", - "children": [ - { - "code": "2301", - "name": "哈尔滨市", - "children": [ - { "code": "230102", "name": "道里区" }, - { "code": "230103", "name": "南岗区" }, - { "code": "230104", "name": "道外区" }, - { "code": "230108", "name": "平房区" }, - { "code": "230109", "name": "松北区" }, - { "code": "230110", "name": "香坊区" }, - { "code": "230111", "name": "呼兰区" }, - { "code": "230112", "name": "阿城区" }, - { "code": "230113", "name": "双城区" }, - { "code": "230123", "name": "依兰县" }, - { "code": "230124", "name": "方正县" }, - { "code": "230125", "name": "宾县" }, - { "code": "230126", "name": "巴彦县" }, - { "code": "230127", "name": "木兰县" }, - { "code": "230128", "name": "通河县" }, - { "code": "230129", "name": "延寿县" }, - { "code": "230183", "name": "尚志市" }, - { "code": "230184", "name": "五常市" } - ] - }, - { - "code": "2302", - "name": "齐齐哈尔市", - "children": [ - { "code": "230202", "name": "龙沙区" }, - { "code": "230203", "name": "建华区" }, - { "code": "230204", "name": "铁锋区" }, - { "code": "230205", "name": "昂昂溪区" }, - { "code": "230206", "name": "富拉尔基区" }, - { "code": "230207", "name": "碾子山区" }, - { "code": "230208", "name": "梅里斯达斡尔族区" }, - { "code": "230221", "name": "龙江县" }, - { "code": "230223", "name": "依安县" }, - { "code": "230224", "name": "泰来县" }, - { "code": "230225", "name": "甘南县" }, - { "code": "230227", "name": "富裕县" }, - { "code": "230229", "name": "克山县" }, - { "code": "230230", "name": "克东县" }, - { "code": "230231", "name": "拜泉县" }, - { "code": "230281", "name": "讷河市" } - ] - }, - { - "code": "2303", - "name": "鸡西市", - "children": [ - { "code": "230302", "name": "鸡冠区" }, - { "code": "230303", "name": "恒山区" }, - { "code": "230304", "name": "滴道区" }, - { "code": "230305", "name": "梨树区" }, - { "code": "230306", "name": "城子河区" }, - { "code": "230307", "name": "麻山区" }, - { "code": "230321", "name": "鸡东县" }, - { "code": "230381", "name": "虎林市" }, - { "code": "230382", "name": "密山市" } - ] - }, - { - "code": "2304", - "name": "鹤岗市", - "children": [ - { "code": "230402", "name": "向阳区" }, - { "code": "230403", "name": "工农区" }, - { "code": "230404", "name": "南山区" }, - { "code": "230405", "name": "兴安区" }, - { "code": "230406", "name": "东山区" }, - { "code": "230407", "name": "兴山区" }, - { "code": "230421", "name": "萝北县" }, - { "code": "230422", "name": "绥滨县" } - ] - }, - { - "code": "2305", - "name": "双鸭山市", - "children": [ - { "code": "230502", "name": "尖山区" }, - { "code": "230503", "name": "岭东区" }, - { "code": "230505", "name": "四方台区" }, - { "code": "230506", "name": "宝山区" }, - { "code": "230521", "name": "集贤县" }, - { "code": "230522", "name": "友谊县" }, - { "code": "230523", "name": "宝清县" }, - { "code": "230524", "name": "饶河县" } - ] - }, - { - "code": "2306", - "name": "大庆市", - "children": [ - { "code": "230602", "name": "萨尔图区" }, - { "code": "230603", "name": "龙凤区" }, - { "code": "230604", "name": "让胡路区" }, - { "code": "230605", "name": "红岗区" }, - { "code": "230606", "name": "大同区" }, - { "code": "230621", "name": "肇州县" }, - { "code": "230622", "name": "肇源县" }, - { "code": "230623", "name": "林甸县" }, - { "code": "230624", "name": "杜尔伯特蒙古族自治县" }, - { "code": "230671", "name": "大庆高新技术产业开发区" } - ] - }, - { - "code": "2307", - "name": "伊春市", - "children": [ - { "code": "230717", "name": "伊美区" }, - { "code": "230718", "name": "乌翠区" }, - { "code": "230719", "name": "友好区" }, - { "code": "230722", "name": "嘉荫县" }, - { "code": "230723", "name": "汤旺县" }, - { "code": "230724", "name": "丰林县" }, - { "code": "230725", "name": "大箐山县" }, - { "code": "230726", "name": "南岔县" }, - { "code": "230751", "name": "金林区" }, - { "code": "230781", "name": "铁力市" } - ] - }, - { - "code": "2308", - "name": "佳木斯市", - "children": [ - { "code": "230803", "name": "向阳区" }, - { "code": "230804", "name": "前进区" }, - { "code": "230805", "name": "东风区" }, - { "code": "230811", "name": "郊区" }, - { "code": "230822", "name": "桦南县" }, - { "code": "230826", "name": "桦川县" }, - { "code": "230828", "name": "汤原县" }, - { "code": "230881", "name": "同江市" }, - { "code": "230882", "name": "富锦市" }, - { "code": "230883", "name": "抚远市" } - ] - }, - { - "code": "2309", - "name": "七台河市", - "children": [ - { "code": "230902", "name": "新兴区" }, - { "code": "230903", "name": "桃山区" }, - { "code": "230904", "name": "茄子河区" }, - { "code": "230921", "name": "勃利县" } - ] - }, - { - "code": "2310", - "name": "牡丹江市", - "children": [ - { "code": "231002", "name": "东安区" }, - { "code": "231003", "name": "阳明区" }, - { "code": "231004", "name": "爱民区" }, - { "code": "231005", "name": "西安区" }, - { "code": "231025", "name": "林口县" }, - { "code": "231071", "name": "牡丹江经济技术开发区" }, - { "code": "231081", "name": "绥芬河市" }, - { "code": "231083", "name": "海林市" }, - { "code": "231084", "name": "宁安市" }, - { "code": "231085", "name": "穆棱市" }, - { "code": "231086", "name": "东宁市" } - ] - }, - { - "code": "2311", - "name": "黑河市", - "children": [ - { "code": "231102", "name": "爱辉区" }, - { "code": "231123", "name": "逊克县" }, - { "code": "231124", "name": "孙吴县" }, - { "code": "231181", "name": "北安市" }, - { "code": "231182", "name": "五大连池市" }, - { "code": "231183", "name": "嫩江市" } - ] - }, - { - "code": "2312", - "name": "绥化市", - "children": [ - { "code": "231202", "name": "北林区" }, - { "code": "231221", "name": "望奎县" }, - { "code": "231222", "name": "兰西县" }, - { "code": "231223", "name": "青冈县" }, - { "code": "231224", "name": "庆安县" }, - { "code": "231225", "name": "明水县" }, - { "code": "231226", "name": "绥棱县" }, - { "code": "231281", "name": "安达市" }, - { "code": "231282", "name": "肇东市" }, - { "code": "231283", "name": "海伦市" } - ] - }, - { - "code": "2327", - "name": "大兴安岭地区", - "children": [ - { "code": "232701", "name": "漠河市" }, - { "code": "232721", "name": "呼玛县" }, - { "code": "232722", "name": "塔河县" }, - { "code": "232761", "name": "加格达奇区" }, - { "code": "232762", "name": "松岭区" }, - { "code": "232763", "name": "新林区" }, - { "code": "232764", "name": "呼中区" } - ] - } - ] - }, - { - "code": "31", - "name": "上海市", - "children": [ - { - "code": "3101", - "name": "市辖区", - "children": [ - { "code": "310101", "name": "黄浦区" }, - { "code": "310104", "name": "徐汇区" }, - { "code": "310105", "name": "长宁区" }, - { "code": "310106", "name": "静安区" }, - { "code": "310107", "name": "普陀区" }, - { "code": "310109", "name": "虹口区" }, - { "code": "310110", "name": "杨浦区" }, - { "code": "310112", "name": "闵行区" }, - { "code": "310113", "name": "宝山区" }, - { "code": "310114", "name": "嘉定区" }, - { "code": "310115", "name": "浦东新区" }, - { "code": "310116", "name": "金山区" }, - { "code": "310117", "name": "松江区" }, - { "code": "310118", "name": "青浦区" }, - { "code": "310120", "name": "奉贤区" }, - { "code": "310151", "name": "崇明区" } - ] - } - ] - }, - { - "code": "32", - "name": "江苏省", - "children": [ - { - "code": "3201", - "name": "南京市", - "children": [ - { "code": "320102", "name": "玄武区" }, - { "code": "320104", "name": "秦淮区" }, - { "code": "320105", "name": "建邺区" }, - { "code": "320106", "name": "鼓楼区" }, - { "code": "320111", "name": "浦口区" }, - { "code": "320113", "name": "栖霞区" }, - { "code": "320114", "name": "雨花台区" }, - { "code": "320115", "name": "江宁区" }, - { "code": "320116", "name": "六合区" }, - { "code": "320117", "name": "溧水区" }, - { "code": "320118", "name": "高淳区" } - ] - }, - { - "code": "3202", - "name": "无锡市", - "children": [ - { "code": "320205", "name": "锡山区" }, - { "code": "320206", "name": "惠山区" }, - { "code": "320211", "name": "滨湖区" }, - { "code": "320213", "name": "梁溪区" }, - { "code": "320214", "name": "新吴区" }, - { "code": "320281", "name": "江阴市" }, - { "code": "320282", "name": "宜兴市" } - ] - }, - { - "code": "3203", - "name": "徐州市", - "children": [ - { "code": "320302", "name": "鼓楼区" }, - { "code": "320303", "name": "云龙区" }, - { "code": "320305", "name": "贾汪区" }, - { "code": "320311", "name": "泉山区" }, - { "code": "320312", "name": "铜山区" }, - { "code": "320321", "name": "丰县" }, - { "code": "320322", "name": "沛县" }, - { "code": "320324", "name": "睢宁县" }, - { "code": "320371", "name": "徐州经济技术开发区" }, - { "code": "320381", "name": "新沂市" }, - { "code": "320382", "name": "邳州市" } - ] - }, - { - "code": "3204", - "name": "常州市", - "children": [ - { "code": "320402", "name": "天宁区" }, - { "code": "320404", "name": "钟楼区" }, - { "code": "320411", "name": "新北区" }, - { "code": "320412", "name": "武进区" }, - { "code": "320413", "name": "金坛区" }, - { "code": "320481", "name": "溧阳市" } - ] - }, - { - "code": "3205", - "name": "苏州市", - "children": [ - { "code": "320505", "name": "虎丘区" }, - { "code": "320506", "name": "吴中区" }, - { "code": "320507", "name": "相城区" }, - { "code": "320508", "name": "姑苏区" }, - { "code": "320509", "name": "吴江区" }, - { "code": "320571", "name": "苏州工业园区" }, - { "code": "320581", "name": "常熟市" }, - { "code": "320582", "name": "张家港市" }, - { "code": "320583", "name": "昆山市" }, - { "code": "320585", "name": "太仓市" } - ] - }, - { - "code": "3206", - "name": "南通市", - "children": [ - { "code": "320602", "name": "崇川区" }, - { "code": "320611", "name": "港闸区" }, - { "code": "320612", "name": "通州区" }, - { "code": "320623", "name": "如东县" }, - { "code": "320671", "name": "南通经济技术开发区" }, - { "code": "320681", "name": "启东市" }, - { "code": "320682", "name": "如皋市" }, - { "code": "320684", "name": "海门市" }, - { "code": "320685", "name": "海安市" } - ] - }, - { - "code": "3207", - "name": "连云港市", - "children": [ - { "code": "320703", "name": "连云区" }, - { "code": "320706", "name": "海州区" }, - { "code": "320707", "name": "赣榆区" }, - { "code": "320722", "name": "东海县" }, - { "code": "320723", "name": "灌云县" }, - { "code": "320724", "name": "灌南县" }, - { "code": "320771", "name": "连云港经济技术开发区" }, - { "code": "320772", "name": "连云港高新技术产业开发区" } - ] - }, - { - "code": "3208", - "name": "淮安市", - "children": [ - { "code": "320803", "name": "淮安区" }, - { "code": "320804", "name": "淮阴区" }, - { "code": "320812", "name": "清江浦区" }, - { "code": "320813", "name": "洪泽区" }, - { "code": "320826", "name": "涟水县" }, - { "code": "320830", "name": "盱眙县" }, - { "code": "320831", "name": "金湖县" }, - { "code": "320871", "name": "淮安经济技术开发区" } - ] - }, - { - "code": "3209", - "name": "盐城市", - "children": [ - { "code": "320902", "name": "亭湖区" }, - { "code": "320903", "name": "盐都区" }, - { "code": "320904", "name": "大丰区" }, - { "code": "320921", "name": "响水县" }, - { "code": "320922", "name": "滨海县" }, - { "code": "320923", "name": "阜宁县" }, - { "code": "320924", "name": "射阳县" }, - { "code": "320925", "name": "建湖县" }, - { "code": "320971", "name": "盐城经济技术开发区" }, - { "code": "320981", "name": "东台市" } - ] - }, - { - "code": "3210", - "name": "扬州市", - "children": [ - { "code": "321002", "name": "广陵区" }, - { "code": "321003", "name": "邗江区" }, - { "code": "321012", "name": "江都区" }, - { "code": "321023", "name": "宝应县" }, - { "code": "321071", "name": "扬州经济技术开发区" }, - { "code": "321081", "name": "仪征市" }, - { "code": "321084", "name": "高邮市" } - ] - }, - { - "code": "3211", - "name": "镇江市", - "children": [ - { "code": "321102", "name": "京口区" }, - { "code": "321111", "name": "润州区" }, - { "code": "321112", "name": "丹徒区" }, - { "code": "321171", "name": "镇江新区" }, - { "code": "321181", "name": "丹阳市" }, - { "code": "321182", "name": "扬中市" }, - { "code": "321183", "name": "句容市" } - ] - }, - { - "code": "3212", - "name": "泰州市", - "children": [ - { "code": "321202", "name": "海陵区" }, - { "code": "321203", "name": "高港区" }, - { "code": "321204", "name": "姜堰区" }, - { "code": "321271", "name": "泰州医药高新技术产业开发区" }, - { "code": "321281", "name": "兴化市" }, - { "code": "321282", "name": "靖江市" }, - { "code": "321283", "name": "泰兴市" } - ] - }, - { - "code": "3213", - "name": "宿迁市", - "children": [ - { "code": "321302", "name": "宿城区" }, - { "code": "321311", "name": "宿豫区" }, - { "code": "321322", "name": "沭阳县" }, - { "code": "321323", "name": "泗阳县" }, - { "code": "321324", "name": "泗洪县" }, - { "code": "321371", "name": "宿迁经济技术开发区" } - ] - } - ] - }, - { - "code": "33", - "name": "浙江省", - "children": [ - { - "code": "3301", - "name": "杭州市", - "children": [ - { "code": "330102", "name": "上城区" }, - { "code": "330103", "name": "下城区" }, - { "code": "330104", "name": "江干区" }, - { "code": "330105", "name": "拱墅区" }, - { "code": "330106", "name": "西湖区" }, - { "code": "330108", "name": "滨江区" }, - { "code": "330109", "name": "萧山区" }, - { "code": "330110", "name": "余杭区" }, - { "code": "330111", "name": "富阳区" }, - { "code": "330112", "name": "临安区" }, - { "code": "330122", "name": "桐庐县" }, - { "code": "330127", "name": "淳安县" }, - { "code": "330182", "name": "建德市" } - ] - }, - { - "code": "3302", - "name": "宁波市", - "children": [ - { "code": "330203", "name": "海曙区" }, - { "code": "330205", "name": "江北区" }, - { "code": "330206", "name": "北仑区" }, - { "code": "330211", "name": "镇海区" }, - { "code": "330212", "name": "鄞州区" }, - { "code": "330213", "name": "奉化区" }, - { "code": "330225", "name": "象山县" }, - { "code": "330226", "name": "宁海县" }, - { "code": "330281", "name": "余姚市" }, - { "code": "330282", "name": "慈溪市" } - ] - }, - { - "code": "3303", - "name": "温州市", - "children": [ - { "code": "330302", "name": "鹿城区" }, - { "code": "330303", "name": "龙湾区" }, - { "code": "330304", "name": "瓯海区" }, - { "code": "330305", "name": "洞头区" }, - { "code": "330324", "name": "永嘉县" }, - { "code": "330326", "name": "平阳县" }, - { "code": "330327", "name": "苍南县" }, - { "code": "330328", "name": "文成县" }, - { "code": "330329", "name": "泰顺县" }, - { "code": "330371", "name": "温州经济技术开发区" }, - { "code": "330381", "name": "瑞安市" }, - { "code": "330382", "name": "乐清市" }, - { "code": "330383", "name": "龙港市" } - ] - }, - { - "code": "3304", - "name": "嘉兴市", - "children": [ - { "code": "330402", "name": "南湖区" }, - { "code": "330411", "name": "秀洲区" }, - { "code": "330421", "name": "嘉善县" }, - { "code": "330424", "name": "海盐县" }, - { "code": "330481", "name": "海宁市" }, - { "code": "330482", "name": "平湖市" }, - { "code": "330483", "name": "桐乡市" } - ] - }, - { - "code": "3305", - "name": "湖州市", - "children": [ - { "code": "330502", "name": "吴兴区" }, - { "code": "330503", "name": "南浔区" }, - { "code": "330521", "name": "德清县" }, - { "code": "330522", "name": "长兴县" }, - { "code": "330523", "name": "安吉县" } - ] - }, - { - "code": "3306", - "name": "绍兴市", - "children": [ - { "code": "330602", "name": "越城区" }, - { "code": "330603", "name": "柯桥区" }, - { "code": "330604", "name": "上虞区" }, - { "code": "330624", "name": "新昌县" }, - { "code": "330681", "name": "诸暨市" }, - { "code": "330683", "name": "嵊州市" } - ] - }, - { - "code": "3307", - "name": "金华市", - "children": [ - { "code": "330702", "name": "婺城区" }, - { "code": "330703", "name": "金东区" }, - { "code": "330723", "name": "武义县" }, - { "code": "330726", "name": "浦江县" }, - { "code": "330727", "name": "磐安县" }, - { "code": "330781", "name": "兰溪市" }, - { "code": "330782", "name": "义乌市" }, - { "code": "330783", "name": "东阳市" }, - { "code": "330784", "name": "永康市" } - ] - }, - { - "code": "3308", - "name": "衢州市", - "children": [ - { "code": "330802", "name": "柯城区" }, - { "code": "330803", "name": "衢江区" }, - { "code": "330822", "name": "常山县" }, - { "code": "330824", "name": "开化县" }, - { "code": "330825", "name": "龙游县" }, - { "code": "330881", "name": "江山市" } - ] - }, - { - "code": "3309", - "name": "舟山市", - "children": [ - { "code": "330902", "name": "定海区" }, - { "code": "330903", "name": "普陀区" }, - { "code": "330921", "name": "岱山县" }, - { "code": "330922", "name": "嵊泗县" } - ] - }, - { - "code": "3310", - "name": "台州市", - "children": [ - { "code": "331002", "name": "椒江区" }, - { "code": "331003", "name": "黄岩区" }, - { "code": "331004", "name": "路桥区" }, - { "code": "331022", "name": "三门县" }, - { "code": "331023", "name": "天台县" }, - { "code": "331024", "name": "仙居县" }, - { "code": "331081", "name": "温岭市" }, - { "code": "331082", "name": "临海市" }, - { "code": "331083", "name": "玉环市" } - ] - }, - { - "code": "3311", - "name": "丽水市", - "children": [ - { "code": "331102", "name": "莲都区" }, - { "code": "331121", "name": "青田县" }, - { "code": "331122", "name": "缙云县" }, - { "code": "331123", "name": "遂昌县" }, - { "code": "331124", "name": "松阳县" }, - { "code": "331125", "name": "云和县" }, - { "code": "331126", "name": "庆元县" }, - { "code": "331127", "name": "景宁畲族自治县" }, - { "code": "331181", "name": "龙泉市" } - ] - } - ] - }, - { - "code": "34", - "name": "安徽省", - "children": [ - { - "code": "3401", - "name": "合肥市", - "children": [ - { "code": "340102", "name": "瑶海区" }, - { "code": "340103", "name": "庐阳区" }, - { "code": "340104", "name": "蜀山区" }, - { "code": "340111", "name": "包河区" }, - { "code": "340121", "name": "长丰县" }, - { "code": "340122", "name": "肥东县" }, - { "code": "340123", "name": "肥西县" }, - { "code": "340124", "name": "庐江县" }, - { "code": "340171", "name": "合肥高新技术产业开发区" }, - { "code": "340172", "name": "合肥经济技术开发区" }, - { "code": "340173", "name": "合肥新站高新技术产业开发区" }, - { "code": "340181", "name": "巢湖市" } - ] - }, - { - "code": "3402", - "name": "芜湖市", - "children": [ - { "code": "340202", "name": "镜湖区" }, - { "code": "340203", "name": "弋江区" }, - { "code": "340207", "name": "鸠江区" }, - { "code": "340208", "name": "三山区" }, - { "code": "340221", "name": "芜湖县" }, - { "code": "340222", "name": "繁昌县" }, - { "code": "340223", "name": "南陵县" }, - { "code": "340225", "name": "无为县" }, - { "code": "340271", "name": "芜湖经济技术开发区" }, - { "code": "340272", "name": "安徽芜湖长江大桥经济开发区" } - ] - }, - { - "code": "3403", - "name": "蚌埠市", - "children": [ - { "code": "340302", "name": "龙子湖区" }, - { "code": "340303", "name": "蚌山区" }, - { "code": "340304", "name": "禹会区" }, - { "code": "340311", "name": "淮上区" }, - { "code": "340321", "name": "怀远县" }, - { "code": "340322", "name": "五河县" }, - { "code": "340323", "name": "固镇县" }, - { "code": "340371", "name": "蚌埠市高新技术开发区" }, - { "code": "340372", "name": "蚌埠市经济开发区" } - ] - }, - { - "code": "3404", - "name": "淮南市", - "children": [ - { "code": "340402", "name": "大通区" }, - { "code": "340403", "name": "田家庵区" }, - { "code": "340404", "name": "谢家集区" }, - { "code": "340405", "name": "八公山区" }, - { "code": "340406", "name": "潘集区" }, - { "code": "340421", "name": "凤台县" }, - { "code": "340422", "name": "寿县" } - ] - }, - { - "code": "3405", - "name": "马鞍山市", - "children": [ - { "code": "340503", "name": "花山区" }, - { "code": "340504", "name": "雨山区" }, - { "code": "340506", "name": "博望区" }, - { "code": "340521", "name": "当涂县" }, - { "code": "340522", "name": "含山县" }, - { "code": "340523", "name": "和县" } - ] - }, - { - "code": "3406", - "name": "淮北市", - "children": [ - { "code": "340602", "name": "杜集区" }, - { "code": "340603", "name": "相山区" }, - { "code": "340604", "name": "烈山区" }, - { "code": "340621", "name": "濉溪县" } - ] - }, - { - "code": "3407", - "name": "铜陵市", - "children": [ - { "code": "340705", "name": "铜官区" }, - { "code": "340706", "name": "义安区" }, - { "code": "340711", "name": "郊区" }, - { "code": "340722", "name": "枞阳县" } - ] - }, - { - "code": "3408", - "name": "安庆市", - "children": [ - { "code": "340802", "name": "迎江区" }, - { "code": "340803", "name": "大观区" }, - { "code": "340811", "name": "宜秀区" }, - { "code": "340822", "name": "怀宁县" }, - { "code": "340825", "name": "太湖县" }, - { "code": "340826", "name": "宿松县" }, - { "code": "340827", "name": "望江县" }, - { "code": "340828", "name": "岳西县" }, - { "code": "340871", "name": "安徽安庆经济开发区" }, - { "code": "340881", "name": "桐城市" }, - { "code": "340882", "name": "潜山市" } - ] - }, - { - "code": "3410", - "name": "黄山市", - "children": [ - { "code": "341002", "name": "屯溪区" }, - { "code": "341003", "name": "黄山区" }, - { "code": "341004", "name": "徽州区" }, - { "code": "341021", "name": "歙县" }, - { "code": "341022", "name": "休宁县" }, - { "code": "341023", "name": "黟县" }, - { "code": "341024", "name": "祁门县" } - ] - }, - { - "code": "3411", - "name": "滁州市", - "children": [ - { "code": "341102", "name": "琅琊区" }, - { "code": "341103", "name": "南谯区" }, - { "code": "341122", "name": "来安县" }, - { "code": "341124", "name": "全椒县" }, - { "code": "341125", "name": "定远县" }, - { "code": "341126", "name": "凤阳县" }, - { "code": "341171", "name": "苏滁现代产业园" }, - { "code": "341172", "name": "滁州经济技术开发区" }, - { "code": "341181", "name": "天长市" }, - { "code": "341182", "name": "明光市" } - ] - }, - { - "code": "3412", - "name": "阜阳市", - "children": [ - { "code": "341202", "name": "颍州区" }, - { "code": "341203", "name": "颍东区" }, - { "code": "341204", "name": "颍泉区" }, - { "code": "341221", "name": "临泉县" }, - { "code": "341222", "name": "太和县" }, - { "code": "341225", "name": "阜南县" }, - { "code": "341226", "name": "颍上县" }, - { "code": "341271", "name": "阜阳合肥现代产业园区" }, - { "code": "341272", "name": "阜阳经济技术开发区" }, - { "code": "341282", "name": "界首市" } - ] - }, - { - "code": "3413", - "name": "宿州市", - "children": [ - { "code": "341302", "name": "埇桥区" }, - { "code": "341321", "name": "砀山县" }, - { "code": "341322", "name": "萧县" }, - { "code": "341323", "name": "灵璧县" }, - { "code": "341324", "name": "泗县" }, - { "code": "341371", "name": "宿州马鞍山现代产业园区" }, - { "code": "341372", "name": "宿州经济技术开发区" } - ] - }, - { - "code": "3415", - "name": "六安市", - "children": [ - { "code": "341502", "name": "金安区" }, - { "code": "341503", "name": "裕安区" }, - { "code": "341504", "name": "叶集区" }, - { "code": "341522", "name": "霍邱县" }, - { "code": "341523", "name": "舒城县" }, - { "code": "341524", "name": "金寨县" }, - { "code": "341525", "name": "霍山县" } - ] - }, - { - "code": "3416", - "name": "亳州市", - "children": [ - { "code": "341602", "name": "谯城区" }, - { "code": "341621", "name": "涡阳县" }, - { "code": "341622", "name": "蒙城县" }, - { "code": "341623", "name": "利辛县" } - ] - }, - { - "code": "3417", - "name": "池州市", - "children": [ - { "code": "341702", "name": "贵池区" }, - { "code": "341721", "name": "东至县" }, - { "code": "341722", "name": "石台县" }, - { "code": "341723", "name": "青阳县" } - ] - }, - { - "code": "3418", - "name": "宣城市", - "children": [ - { "code": "341802", "name": "宣州区" }, - { "code": "341821", "name": "郎溪县" }, - { "code": "341823", "name": "泾县" }, - { "code": "341824", "name": "绩溪县" }, - { "code": "341825", "name": "旌德县" }, - { "code": "341871", "name": "宣城市经济开发区" }, - { "code": "341881", "name": "宁国市" }, - { "code": "341882", "name": "广德市" } - ] - } - ] - }, - { - "code": "35", - "name": "福建省", - "children": [ - { - "code": "3501", - "name": "福州市", - "children": [ - { "code": "350102", "name": "鼓楼区" }, - { "code": "350103", "name": "台江区" }, - { "code": "350104", "name": "仓山区" }, - { "code": "350105", "name": "马尾区" }, - { "code": "350111", "name": "晋安区" }, - { "code": "350112", "name": "长乐区" }, - { "code": "350121", "name": "闽侯县" }, - { "code": "350122", "name": "连江县" }, - { "code": "350123", "name": "罗源县" }, - { "code": "350124", "name": "闽清县" }, - { "code": "350125", "name": "永泰县" }, - { "code": "350128", "name": "平潭县" }, - { "code": "350181", "name": "福清市" } - ] - }, - { - "code": "3502", - "name": "厦门市", - "children": [ - { "code": "350203", "name": "思明区" }, - { "code": "350205", "name": "海沧区" }, - { "code": "350206", "name": "湖里区" }, - { "code": "350211", "name": "集美区" }, - { "code": "350212", "name": "同安区" }, - { "code": "350213", "name": "翔安区" } - ] - }, - { - "code": "3503", - "name": "莆田市", - "children": [ - { "code": "350302", "name": "城厢区" }, - { "code": "350303", "name": "涵江区" }, - { "code": "350304", "name": "荔城区" }, - { "code": "350305", "name": "秀屿区" }, - { "code": "350322", "name": "仙游县" } - ] - }, - { - "code": "3504", - "name": "三明市", - "children": [ - { "code": "350402", "name": "梅列区" }, - { "code": "350403", "name": "三元区" }, - { "code": "350421", "name": "明溪县" }, - { "code": "350423", "name": "清流县" }, - { "code": "350424", "name": "宁化县" }, - { "code": "350425", "name": "大田县" }, - { "code": "350426", "name": "尤溪县" }, - { "code": "350427", "name": "沙县" }, - { "code": "350428", "name": "将乐县" }, - { "code": "350429", "name": "泰宁县" }, - { "code": "350430", "name": "建宁县" }, - { "code": "350481", "name": "永安市" } - ] - }, - { - "code": "3505", - "name": "泉州市", - "children": [ - { "code": "350502", "name": "鲤城区" }, - { "code": "350503", "name": "丰泽区" }, - { "code": "350504", "name": "洛江区" }, - { "code": "350505", "name": "泉港区" }, - { "code": "350521", "name": "惠安县" }, - { "code": "350524", "name": "安溪县" }, - { "code": "350525", "name": "永春县" }, - { "code": "350526", "name": "德化县" }, - { "code": "350527", "name": "金门县" }, - { "code": "350581", "name": "石狮市" }, - { "code": "350582", "name": "晋江市" }, - { "code": "350583", "name": "南安市" } - ] - }, - { - "code": "3506", - "name": "漳州市", - "children": [ - { "code": "350602", "name": "芗城区" }, - { "code": "350603", "name": "龙文区" }, - { "code": "350622", "name": "云霄县" }, - { "code": "350623", "name": "漳浦县" }, - { "code": "350624", "name": "诏安县" }, - { "code": "350625", "name": "长泰县" }, - { "code": "350626", "name": "东山县" }, - { "code": "350627", "name": "南靖县" }, - { "code": "350628", "name": "平和县" }, - { "code": "350629", "name": "华安县" }, - { "code": "350681", "name": "龙海市" } - ] - }, - { - "code": "3507", - "name": "南平市", - "children": [ - { "code": "350702", "name": "延平区" }, - { "code": "350703", "name": "建阳区" }, - { "code": "350721", "name": "顺昌县" }, - { "code": "350722", "name": "浦城县" }, - { "code": "350723", "name": "光泽县" }, - { "code": "350724", "name": "松溪县" }, - { "code": "350725", "name": "政和县" }, - { "code": "350781", "name": "邵武市" }, - { "code": "350782", "name": "武夷山市" }, - { "code": "350783", "name": "建瓯市" } - ] - }, - { - "code": "3508", - "name": "龙岩市", - "children": [ - { "code": "350802", "name": "新罗区" }, - { "code": "350803", "name": "永定区" }, - { "code": "350821", "name": "长汀县" }, - { "code": "350823", "name": "上杭县" }, - { "code": "350824", "name": "武平县" }, - { "code": "350825", "name": "连城县" }, - { "code": "350881", "name": "漳平市" } - ] - }, - { - "code": "3509", - "name": "宁德市", - "children": [ - { "code": "350902", "name": "蕉城区" }, - { "code": "350921", "name": "霞浦县" }, - { "code": "350922", "name": "古田县" }, - { "code": "350923", "name": "屏南县" }, - { "code": "350924", "name": "寿宁县" }, - { "code": "350925", "name": "周宁县" }, - { "code": "350926", "name": "柘荣县" }, - { "code": "350981", "name": "福安市" }, - { "code": "350982", "name": "福鼎市" } - ] - } - ] - }, - { - "code": "36", - "name": "江西省", - "children": [ - { - "code": "3601", - "name": "南昌市", - "children": [ - { "code": "360102", "name": "东湖区" }, - { "code": "360103", "name": "西湖区" }, - { "code": "360104", "name": "青云谱区" }, - { "code": "360105", "name": "湾里区" }, - { "code": "360111", "name": "青山湖区" }, - { "code": "360112", "name": "新建区" }, - { "code": "360121", "name": "南昌县" }, - { "code": "360123", "name": "安义县" }, - { "code": "360124", "name": "进贤县" } - ] - }, - { - "code": "3602", - "name": "景德镇市", - "children": [ - { "code": "360202", "name": "昌江区" }, - { "code": "360203", "name": "珠山区" }, - { "code": "360222", "name": "浮梁县" }, - { "code": "360281", "name": "乐平市" } - ] - }, - { - "code": "3603", - "name": "萍乡市", - "children": [ - { "code": "360302", "name": "安源区" }, - { "code": "360313", "name": "湘东区" }, - { "code": "360321", "name": "莲花县" }, - { "code": "360322", "name": "上栗县" }, - { "code": "360323", "name": "芦溪县" } - ] - }, - { - "code": "3604", - "name": "九江市", - "children": [ - { "code": "360402", "name": "濂溪区" }, - { "code": "360403", "name": "浔阳区" }, - { "code": "360404", "name": "柴桑区" }, - { "code": "360423", "name": "武宁县" }, - { "code": "360424", "name": "修水县" }, - { "code": "360425", "name": "永修县" }, - { "code": "360426", "name": "德安县" }, - { "code": "360428", "name": "都昌县" }, - { "code": "360429", "name": "湖口县" }, - { "code": "360430", "name": "彭泽县" }, - { "code": "360481", "name": "瑞昌市" }, - { "code": "360482", "name": "共青城市" }, - { "code": "360483", "name": "庐山市" } - ] - }, - { - "code": "3605", - "name": "新余市", - "children": [ - { "code": "360502", "name": "渝水区" }, - { "code": "360521", "name": "分宜县" } - ] - }, - { - "code": "3606", - "name": "鹰潭市", - "children": [ - { "code": "360602", "name": "月湖区" }, - { "code": "360603", "name": "余江区" }, - { "code": "360681", "name": "贵溪市" } - ] - }, - { - "code": "3607", - "name": "赣州市", - "children": [ - { "code": "360702", "name": "章贡区" }, - { "code": "360703", "name": "南康区" }, - { "code": "360704", "name": "赣县区" }, - { "code": "360722", "name": "信丰县" }, - { "code": "360723", "name": "大余县" }, - { "code": "360724", "name": "上犹县" }, - { "code": "360725", "name": "崇义县" }, - { "code": "360726", "name": "安远县" }, - { "code": "360727", "name": "龙南县" }, - { "code": "360728", "name": "定南县" }, - { "code": "360729", "name": "全南县" }, - { "code": "360730", "name": "宁都县" }, - { "code": "360731", "name": "于都县" }, - { "code": "360732", "name": "兴国县" }, - { "code": "360733", "name": "会昌县" }, - { "code": "360734", "name": "寻乌县" }, - { "code": "360735", "name": "石城县" }, - { "code": "360781", "name": "瑞金市" } - ] - }, - { - "code": "3608", - "name": "吉安市", - "children": [ - { "code": "360802", "name": "吉州区" }, - { "code": "360803", "name": "青原区" }, - { "code": "360821", "name": "吉安县" }, - { "code": "360822", "name": "吉水县" }, - { "code": "360823", "name": "峡江县" }, - { "code": "360824", "name": "新干县" }, - { "code": "360825", "name": "永丰县" }, - { "code": "360826", "name": "泰和县" }, - { "code": "360827", "name": "遂川县" }, - { "code": "360828", "name": "万安县" }, - { "code": "360829", "name": "安福县" }, - { "code": "360830", "name": "永新县" }, - { "code": "360881", "name": "井冈山市" } - ] - }, - { - "code": "3609", - "name": "宜春市", - "children": [ - { "code": "360902", "name": "袁州区" }, - { "code": "360921", "name": "奉新县" }, - { "code": "360922", "name": "万载县" }, - { "code": "360923", "name": "上高县" }, - { "code": "360924", "name": "宜丰县" }, - { "code": "360925", "name": "靖安县" }, - { "code": "360926", "name": "铜鼓县" }, - { "code": "360981", "name": "丰城市" }, - { "code": "360982", "name": "樟树市" }, - { "code": "360983", "name": "高安市" } - ] - }, - { - "code": "3610", - "name": "抚州市", - "children": [ - { "code": "361002", "name": "临川区" }, - { "code": "361003", "name": "东乡区" }, - { "code": "361021", "name": "南城县" }, - { "code": "361022", "name": "黎川县" }, - { "code": "361023", "name": "南丰县" }, - { "code": "361024", "name": "崇仁县" }, - { "code": "361025", "name": "乐安县" }, - { "code": "361026", "name": "宜黄县" }, - { "code": "361027", "name": "金溪县" }, - { "code": "361028", "name": "资溪县" }, - { "code": "361030", "name": "广昌县" } - ] - }, - { - "code": "3611", - "name": "上饶市", - "children": [ - { "code": "361102", "name": "信州区" }, - { "code": "361103", "name": "广丰区" }, - { "code": "361104", "name": "广信区" }, - { "code": "361123", "name": "玉山县" }, - { "code": "361124", "name": "铅山县" }, - { "code": "361125", "name": "横峰县" }, - { "code": "361126", "name": "弋阳县" }, - { "code": "361127", "name": "余干县" }, - { "code": "361128", "name": "鄱阳县" }, - { "code": "361129", "name": "万年县" }, - { "code": "361130", "name": "婺源县" }, - { "code": "361181", "name": "德兴市" } - ] - } - ] - }, - { - "code": "37", - "name": "山东省", - "children": [ - { - "code": "3701", - "name": "济南市", - "children": [ - { "code": "370102", "name": "历下区" }, - { "code": "370103", "name": "市中区" }, - { "code": "370104", "name": "槐荫区" }, - { "code": "370105", "name": "天桥区" }, - { "code": "370112", "name": "历城区" }, - { "code": "370113", "name": "长清区" }, - { "code": "370114", "name": "章丘区" }, - { "code": "370115", "name": "济阳区" }, - { "code": "370116", "name": "莱芜区" }, - { "code": "370117", "name": "钢城区" }, - { "code": "370124", "name": "平阴县" }, - { "code": "370126", "name": "商河县" }, - { "code": "370171", "name": "济南高新技术产业开发区" } - ] - }, - { - "code": "3702", - "name": "青岛市", - "children": [ - { "code": "370202", "name": "市南区" }, - { "code": "370203", "name": "市北区" }, - { "code": "370211", "name": "黄岛区" }, - { "code": "370212", "name": "崂山区" }, - { "code": "370213", "name": "李沧区" }, - { "code": "370214", "name": "城阳区" }, - { "code": "370215", "name": "即墨区" }, - { "code": "370271", "name": "青岛高新技术产业开发区" }, - { "code": "370281", "name": "胶州市" }, - { "code": "370283", "name": "平度市" }, - { "code": "370285", "name": "莱西市" } - ] - }, - { - "code": "3703", - "name": "淄博市", - "children": [ - { "code": "370302", "name": "淄川区" }, - { "code": "370303", "name": "张店区" }, - { "code": "370304", "name": "博山区" }, - { "code": "370305", "name": "临淄区" }, - { "code": "370306", "name": "周村区" }, - { "code": "370321", "name": "桓台县" }, - { "code": "370322", "name": "高青县" }, - { "code": "370323", "name": "沂源县" } - ] - }, - { - "code": "3704", - "name": "枣庄市", - "children": [ - { "code": "370402", "name": "市中区" }, - { "code": "370403", "name": "薛城区" }, - { "code": "370404", "name": "峄城区" }, - { "code": "370405", "name": "台儿庄区" }, - { "code": "370406", "name": "山亭区" }, - { "code": "370481", "name": "滕州市" } - ] - }, - { - "code": "3705", - "name": "东营市", - "children": [ - { "code": "370502", "name": "东营区" }, - { "code": "370503", "name": "河口区" }, - { "code": "370505", "name": "垦利区" }, - { "code": "370522", "name": "利津县" }, - { "code": "370523", "name": "广饶县" }, - { "code": "370571", "name": "东营经济技术开发区" }, - { "code": "370572", "name": "东营港经济开发区" } - ] - }, - { - "code": "3706", - "name": "烟台市", - "children": [ - { "code": "370602", "name": "芝罘区" }, - { "code": "370611", "name": "福山区" }, - { "code": "370612", "name": "牟平区" }, - { "code": "370613", "name": "莱山区" }, - { "code": "370634", "name": "长岛县" }, - { "code": "370671", "name": "烟台高新技术产业开发区" }, - { "code": "370672", "name": "烟台经济技术开发区" }, - { "code": "370681", "name": "龙口市" }, - { "code": "370682", "name": "莱阳市" }, - { "code": "370683", "name": "莱州市" }, - { "code": "370684", "name": "蓬莱市" }, - { "code": "370685", "name": "招远市" }, - { "code": "370686", "name": "栖霞市" }, - { "code": "370687", "name": "海阳市" } - ] - }, - { - "code": "3707", - "name": "潍坊市", - "children": [ - { "code": "370702", "name": "潍城区" }, - { "code": "370703", "name": "寒亭区" }, - { "code": "370704", "name": "坊子区" }, - { "code": "370705", "name": "奎文区" }, - { "code": "370724", "name": "临朐县" }, - { "code": "370725", "name": "昌乐县" }, - { "code": "370772", "name": "潍坊滨海经济技术开发区" }, - { "code": "370781", "name": "青州市" }, - { "code": "370782", "name": "诸城市" }, - { "code": "370783", "name": "寿光市" }, - { "code": "370784", "name": "安丘市" }, - { "code": "370785", "name": "高密市" }, - { "code": "370786", "name": "昌邑市" } - ] - }, - { - "code": "3708", - "name": "济宁市", - "children": [ - { "code": "370811", "name": "任城区" }, - { "code": "370812", "name": "兖州区" }, - { "code": "370826", "name": "微山县" }, - { "code": "370827", "name": "鱼台县" }, - { "code": "370828", "name": "金乡县" }, - { "code": "370829", "name": "嘉祥县" }, - { "code": "370830", "name": "汶上县" }, - { "code": "370831", "name": "泗水县" }, - { "code": "370832", "name": "梁山县" }, - { "code": "370871", "name": "济宁高新技术产业开发区" }, - { "code": "370881", "name": "曲阜市" }, - { "code": "370883", "name": "邹城市" } - ] - }, - { - "code": "3709", - "name": "泰安市", - "children": [ - { "code": "370902", "name": "泰山区" }, - { "code": "370911", "name": "岱岳区" }, - { "code": "370921", "name": "宁阳县" }, - { "code": "370923", "name": "东平县" }, - { "code": "370982", "name": "新泰市" }, - { "code": "370983", "name": "肥城市" } - ] - }, - { - "code": "3710", - "name": "威海市", - "children": [ - { "code": "371002", "name": "环翠区" }, - { "code": "371003", "name": "文登区" }, - { "code": "371071", "name": "威海火炬高技术产业开发区" }, - { "code": "371072", "name": "威海经济技术开发区" }, - { "code": "371073", "name": "威海临港经济技术开发区" }, - { "code": "371082", "name": "荣成市" }, - { "code": "371083", "name": "乳山市" } - ] - }, - { - "code": "3711", - "name": "日照市", - "children": [ - { "code": "371102", "name": "东港区" }, - { "code": "371103", "name": "岚山区" }, - { "code": "371121", "name": "五莲县" }, - { "code": "371122", "name": "莒县" }, - { "code": "371171", "name": "日照经济技术开发区" } - ] - }, - { - "code": "3713", - "name": "临沂市", - "children": [ - { "code": "371302", "name": "兰山区" }, - { "code": "371311", "name": "罗庄区" }, - { "code": "371312", "name": "河东区" }, - { "code": "371321", "name": "沂南县" }, - { "code": "371322", "name": "郯城县" }, - { "code": "371323", "name": "沂水县" }, - { "code": "371324", "name": "兰陵县" }, - { "code": "371325", "name": "费县" }, - { "code": "371326", "name": "平邑县" }, - { "code": "371327", "name": "莒南县" }, - { "code": "371328", "name": "蒙阴县" }, - { "code": "371329", "name": "临沭县" }, - { "code": "371371", "name": "临沂高新技术产业开发区" }, - { "code": "371372", "name": "临沂经济技术开发区" }, - { "code": "371373", "name": "临沂临港经济开发区" } - ] - }, - { - "code": "3714", - "name": "德州市", - "children": [ - { "code": "371402", "name": "德城区" }, - { "code": "371403", "name": "陵城区" }, - { "code": "371422", "name": "宁津县" }, - { "code": "371423", "name": "庆云县" }, - { "code": "371424", "name": "临邑县" }, - { "code": "371425", "name": "齐河县" }, - { "code": "371426", "name": "平原县" }, - { "code": "371427", "name": "夏津县" }, - { "code": "371428", "name": "武城县" }, - { "code": "371471", "name": "德州经济技术开发区" }, - { "code": "371472", "name": "德州运河经济开发区" }, - { "code": "371481", "name": "乐陵市" }, - { "code": "371482", "name": "禹城市" } - ] - }, - { - "code": "3715", - "name": "聊城市", - "children": [ - { "code": "371502", "name": "东昌府区" }, - { "code": "371503", "name": "茌平区" }, - { "code": "371521", "name": "阳谷县" }, - { "code": "371522", "name": "莘县" }, - { "code": "371524", "name": "东阿县" }, - { "code": "371525", "name": "冠县" }, - { "code": "371526", "name": "高唐县" }, - { "code": "371581", "name": "临清市" } - ] - }, - { - "code": "3716", - "name": "滨州市", - "children": [ - { "code": "371602", "name": "滨城区" }, - { "code": "371603", "name": "沾化区" }, - { "code": "371621", "name": "惠民县" }, - { "code": "371622", "name": "阳信县" }, - { "code": "371623", "name": "无棣县" }, - { "code": "371625", "name": "博兴县" }, - { "code": "371681", "name": "邹平市" } - ] - }, - { - "code": "3717", - "name": "菏泽市", - "children": [ - { "code": "371702", "name": "牡丹区" }, - { "code": "371703", "name": "定陶区" }, - { "code": "371721", "name": "曹县" }, - { "code": "371722", "name": "单县" }, - { "code": "371723", "name": "成武县" }, - { "code": "371724", "name": "巨野县" }, - { "code": "371725", "name": "郓城县" }, - { "code": "371726", "name": "鄄城县" }, - { "code": "371728", "name": "东明县" }, - { "code": "371771", "name": "菏泽经济技术开发区" }, - { "code": "371772", "name": "菏泽高新技术开发区" } - ] - } - ] - }, - { - "code": "41", - "name": "河南省", - "children": [ - { - "code": "4101", - "name": "郑州市", - "children": [ - { "code": "410102", "name": "中原区" }, - { "code": "410103", "name": "二七区" }, - { "code": "410104", "name": "管城回族区" }, - { "code": "410105", "name": "金水区" }, - { "code": "410106", "name": "上街区" }, - { "code": "410108", "name": "惠济区" }, - { "code": "410122", "name": "中牟县" }, - { "code": "410171", "name": "郑州经济技术开发区" }, - { "code": "410172", "name": "郑州高新技术产业开发区" }, - { "code": "410173", "name": "郑州航空港经济综合实验区" }, - { "code": "410181", "name": "巩义市" }, - { "code": "410182", "name": "荥阳市" }, - { "code": "410183", "name": "新密市" }, - { "code": "410184", "name": "新郑市" }, - { "code": "410185", "name": "登封市" } - ] - }, - { - "code": "4102", - "name": "开封市", - "children": [ - { "code": "410202", "name": "龙亭区" }, - { "code": "410203", "name": "顺河回族区" }, - { "code": "410204", "name": "鼓楼区" }, - { "code": "410205", "name": "禹王台区" }, - { "code": "410212", "name": "祥符区" }, - { "code": "410221", "name": "杞县" }, - { "code": "410222", "name": "通许县" }, - { "code": "410223", "name": "尉氏县" }, - { "code": "410225", "name": "兰考县" } - ] - }, - { - "code": "4103", - "name": "洛阳市", - "children": [ - { "code": "410302", "name": "老城区" }, - { "code": "410303", "name": "西工区" }, - { "code": "410304", "name": "瀍河回族区" }, - { "code": "410305", "name": "涧西区" }, - { "code": "410306", "name": "吉利区" }, - { "code": "410311", "name": "洛龙区" }, - { "code": "410322", "name": "孟津县" }, - { "code": "410323", "name": "新安县" }, - { "code": "410324", "name": "栾川县" }, - { "code": "410325", "name": "嵩县" }, - { "code": "410326", "name": "汝阳县" }, - { "code": "410327", "name": "宜阳县" }, - { "code": "410328", "name": "洛宁县" }, - { "code": "410329", "name": "伊川县" }, - { "code": "410371", "name": "洛阳高新技术产业开发区" }, - { "code": "410381", "name": "偃师市" } - ] - }, - { - "code": "4104", - "name": "平顶山市", - "children": [ - { "code": "410402", "name": "新华区" }, - { "code": "410403", "name": "卫东区" }, - { "code": "410404", "name": "石龙区" }, - { "code": "410411", "name": "湛河区" }, - { "code": "410421", "name": "宝丰县" }, - { "code": "410422", "name": "叶县" }, - { "code": "410423", "name": "鲁山县" }, - { "code": "410425", "name": "郏县" }, - { "code": "410471", "name": "平顶山高新技术产业开发区" }, - { "code": "410472", "name": "平顶山市城乡一体化示范区" }, - { "code": "410481", "name": "舞钢市" }, - { "code": "410482", "name": "汝州市" } - ] - }, - { - "code": "4105", - "name": "安阳市", - "children": [ - { "code": "410502", "name": "文峰区" }, - { "code": "410503", "name": "北关区" }, - { "code": "410505", "name": "殷都区" }, - { "code": "410506", "name": "龙安区" }, - { "code": "410522", "name": "安阳县" }, - { "code": "410523", "name": "汤阴县" }, - { "code": "410526", "name": "滑县" }, - { "code": "410527", "name": "内黄县" }, - { "code": "410571", "name": "安阳高新技术产业开发区" }, - { "code": "410581", "name": "林州市" } - ] - }, - { - "code": "4106", - "name": "鹤壁市", - "children": [ - { "code": "410602", "name": "鹤山区" }, - { "code": "410603", "name": "山城区" }, - { "code": "410611", "name": "淇滨区" }, - { "code": "410621", "name": "浚县" }, - { "code": "410622", "name": "淇县" }, - { "code": "410671", "name": "鹤壁经济技术开发区" } - ] - }, - { - "code": "4107", - "name": "新乡市", - "children": [ - { "code": "410702", "name": "红旗区" }, - { "code": "410703", "name": "卫滨区" }, - { "code": "410704", "name": "凤泉区" }, - { "code": "410711", "name": "牧野区" }, - { "code": "410721", "name": "新乡县" }, - { "code": "410724", "name": "获嘉县" }, - { "code": "410725", "name": "原阳县" }, - { "code": "410726", "name": "延津县" }, - { "code": "410727", "name": "封丘县" }, - { "code": "410771", "name": "新乡高新技术产业开发区" }, - { "code": "410772", "name": "新乡经济技术开发区" }, - { "code": "410773", "name": "新乡市平原城乡一体化示范区" }, - { "code": "410781", "name": "卫辉市" }, - { "code": "410782", "name": "辉县市" }, - { "code": "410783", "name": "长垣市" } - ] - }, - { - "code": "4108", - "name": "焦作市", - "children": [ - { "code": "410802", "name": "解放区" }, - { "code": "410803", "name": "中站区" }, - { "code": "410804", "name": "马村区" }, - { "code": "410811", "name": "山阳区" }, - { "code": "410821", "name": "修武县" }, - { "code": "410822", "name": "博爱县" }, - { "code": "410823", "name": "武陟县" }, - { "code": "410825", "name": "温县" }, - { "code": "410871", "name": "焦作城乡一体化示范区" }, - { "code": "410882", "name": "沁阳市" }, - { "code": "410883", "name": "孟州市" } - ] - }, - { - "code": "4109", - "name": "濮阳市", - "children": [ - { "code": "410902", "name": "华龙区" }, - { "code": "410922", "name": "清丰县" }, - { "code": "410923", "name": "南乐县" }, - { "code": "410926", "name": "范县" }, - { "code": "410927", "name": "台前县" }, - { "code": "410928", "name": "濮阳县" }, - { "code": "410971", "name": "河南濮阳工业园区" }, - { "code": "410972", "name": "濮阳经济技术开发区" } - ] - }, - { - "code": "4110", - "name": "许昌市", - "children": [ - { "code": "411002", "name": "魏都区" }, - { "code": "411003", "name": "建安区" }, - { "code": "411024", "name": "鄢陵县" }, - { "code": "411025", "name": "襄城县" }, - { "code": "411071", "name": "许昌经济技术开发区" }, - { "code": "411081", "name": "禹州市" }, - { "code": "411082", "name": "长葛市" } - ] - }, - { - "code": "4111", - "name": "漯河市", - "children": [ - { "code": "411102", "name": "源汇区" }, - { "code": "411103", "name": "郾城区" }, - { "code": "411104", "name": "召陵区" }, - { "code": "411121", "name": "舞阳县" }, - { "code": "411122", "name": "临颍县" }, - { "code": "411171", "name": "漯河经济技术开发区" } - ] - }, - { - "code": "4112", - "name": "三门峡市", - "children": [ - { "code": "411202", "name": "湖滨区" }, - { "code": "411203", "name": "陕州区" }, - { "code": "411221", "name": "渑池县" }, - { "code": "411224", "name": "卢氏县" }, - { "code": "411271", "name": "河南三门峡经济开发区" }, - { "code": "411281", "name": "义马市" }, - { "code": "411282", "name": "灵宝市" } - ] - }, - { - "code": "4113", - "name": "南阳市", - "children": [ - { "code": "411302", "name": "宛城区" }, - { "code": "411303", "name": "卧龙区" }, - { "code": "411321", "name": "南召县" }, - { "code": "411322", "name": "方城县" }, - { "code": "411323", "name": "西峡县" }, - { "code": "411324", "name": "镇平县" }, - { "code": "411325", "name": "内乡县" }, - { "code": "411326", "name": "淅川县" }, - { "code": "411327", "name": "社旗县" }, - { "code": "411328", "name": "唐河县" }, - { "code": "411329", "name": "新野县" }, - { "code": "411330", "name": "桐柏县" }, - { "code": "411371", "name": "南阳高新技术产业开发区" }, - { "code": "411372", "name": "南阳市城乡一体化示范区" }, - { "code": "411381", "name": "邓州市" } - ] - }, - { - "code": "4114", - "name": "商丘市", - "children": [ - { "code": "411402", "name": "梁园区" }, - { "code": "411403", "name": "睢阳区" }, - { "code": "411421", "name": "民权县" }, - { "code": "411422", "name": "睢县" }, - { "code": "411423", "name": "宁陵县" }, - { "code": "411424", "name": "柘城县" }, - { "code": "411425", "name": "虞城县" }, - { "code": "411426", "name": "夏邑县" }, - { "code": "411471", "name": "豫东综合物流产业聚集区" }, - { "code": "411472", "name": "河南商丘经济开发区" }, - { "code": "411481", "name": "永城市" } - ] - }, - { - "code": "4115", - "name": "信阳市", - "children": [ - { "code": "411502", "name": "浉河区" }, - { "code": "411503", "name": "平桥区" }, - { "code": "411521", "name": "罗山县" }, - { "code": "411522", "name": "光山县" }, - { "code": "411523", "name": "新县" }, - { "code": "411524", "name": "商城县" }, - { "code": "411525", "name": "固始县" }, - { "code": "411526", "name": "潢川县" }, - { "code": "411527", "name": "淮滨县" }, - { "code": "411528", "name": "息县" }, - { "code": "411571", "name": "信阳高新技术产业开发区" } - ] - }, - { - "code": "4116", - "name": "周口市", - "children": [ - { "code": "411602", "name": "川汇区" }, - { "code": "411603", "name": "淮阳区" }, - { "code": "411621", "name": "扶沟县" }, - { "code": "411622", "name": "西华县" }, - { "code": "411623", "name": "商水县" }, - { "code": "411624", "name": "沈丘县" }, - { "code": "411625", "name": "郸城县" }, - { "code": "411627", "name": "太康县" }, - { "code": "411628", "name": "鹿邑县" }, - { "code": "411671", "name": "河南周口经济开发区" }, - { "code": "411681", "name": "项城市" } - ] - }, - { - "code": "4117", - "name": "驻马店市", - "children": [ - { "code": "411702", "name": "驿城区" }, - { "code": "411721", "name": "西平县" }, - { "code": "411722", "name": "上蔡县" }, - { "code": "411723", "name": "平舆县" }, - { "code": "411724", "name": "正阳县" }, - { "code": "411725", "name": "确山县" }, - { "code": "411726", "name": "泌阳县" }, - { "code": "411727", "name": "汝南县" }, - { "code": "411728", "name": "遂平县" }, - { "code": "411729", "name": "新蔡县" }, - { "code": "411771", "name": "河南驻马店经济开发区" } - ] - }, - { - "code": "4190", - "name": "省直辖县级行政区划", - "children": [{ "code": "419001", "name": "济源市" }] - } - ] - }, - { - "code": "42", - "name": "湖北省", - "children": [ - { - "code": "4201", - "name": "武汉市", - "children": [ - { "code": "420102", "name": "江岸区" }, - { "code": "420103", "name": "江汉区" }, - { "code": "420104", "name": "硚口区" }, - { "code": "420105", "name": "汉阳区" }, - { "code": "420106", "name": "武昌区" }, - { "code": "420107", "name": "青山区" }, - { "code": "420111", "name": "洪山区" }, - { "code": "420112", "name": "东西湖区" }, - { "code": "420113", "name": "汉南区" }, - { "code": "420114", "name": "蔡甸区" }, - { "code": "420115", "name": "江夏区" }, - { "code": "420116", "name": "黄陂区" }, - { "code": "420117", "name": "新洲区" } - ] - }, - { - "code": "4202", - "name": "黄石市", - "children": [ - { "code": "420202", "name": "黄石港区" }, - { "code": "420203", "name": "西塞山区" }, - { "code": "420204", "name": "下陆区" }, - { "code": "420205", "name": "铁山区" }, - { "code": "420222", "name": "阳新县" }, - { "code": "420281", "name": "大冶市" } - ] - }, - { - "code": "4203", - "name": "十堰市", - "children": [ - { "code": "420302", "name": "茅箭区" }, - { "code": "420303", "name": "张湾区" }, - { "code": "420304", "name": "郧阳区" }, - { "code": "420322", "name": "郧西县" }, - { "code": "420323", "name": "竹山县" }, - { "code": "420324", "name": "竹溪县" }, - { "code": "420325", "name": "房县" }, - { "code": "420381", "name": "丹江口市" } - ] - }, - { - "code": "4205", - "name": "宜昌市", - "children": [ - { "code": "420502", "name": "西陵区" }, - { "code": "420503", "name": "伍家岗区" }, - { "code": "420504", "name": "点军区" }, - { "code": "420505", "name": "猇亭区" }, - { "code": "420506", "name": "夷陵区" }, - { "code": "420525", "name": "远安县" }, - { "code": "420526", "name": "兴山县" }, - { "code": "420527", "name": "秭归县" }, - { "code": "420528", "name": "长阳土家族自治县" }, - { "code": "420529", "name": "五峰土家族自治县" }, - { "code": "420581", "name": "宜都市" }, - { "code": "420582", "name": "当阳市" }, - { "code": "420583", "name": "枝江市" } - ] - }, - { - "code": "4206", - "name": "襄阳市", - "children": [ - { "code": "420602", "name": "襄城区" }, - { "code": "420606", "name": "樊城区" }, - { "code": "420607", "name": "襄州区" }, - { "code": "420624", "name": "南漳县" }, - { "code": "420625", "name": "谷城县" }, - { "code": "420626", "name": "保康县" }, - { "code": "420682", "name": "老河口市" }, - { "code": "420683", "name": "枣阳市" }, - { "code": "420684", "name": "宜城市" } - ] - }, - { - "code": "4207", - "name": "鄂州市", - "children": [ - { "code": "420702", "name": "梁子湖区" }, - { "code": "420703", "name": "华容区" }, - { "code": "420704", "name": "鄂城区" } - ] - }, - { - "code": "4208", - "name": "荆门市", - "children": [ - { "code": "420802", "name": "东宝区" }, - { "code": "420804", "name": "掇刀区" }, - { "code": "420822", "name": "沙洋县" }, - { "code": "420881", "name": "钟祥市" }, - { "code": "420882", "name": "京山市" } - ] - }, - { - "code": "4209", - "name": "孝感市", - "children": [ - { "code": "420902", "name": "孝南区" }, - { "code": "420921", "name": "孝昌县" }, - { "code": "420922", "name": "大悟县" }, - { "code": "420923", "name": "云梦县" }, - { "code": "420981", "name": "应城市" }, - { "code": "420982", "name": "安陆市" }, - { "code": "420984", "name": "汉川市" } - ] - }, - { - "code": "4210", - "name": "荆州市", - "children": [ - { "code": "421002", "name": "沙市区" }, - { "code": "421003", "name": "荆州区" }, - { "code": "421022", "name": "公安县" }, - { "code": "421023", "name": "监利县" }, - { "code": "421024", "name": "江陵县" }, - { "code": "421071", "name": "荆州经济技术开发区" }, - { "code": "421081", "name": "石首市" }, - { "code": "421083", "name": "洪湖市" }, - { "code": "421087", "name": "松滋市" } - ] - }, - { - "code": "4211", - "name": "黄冈市", - "children": [ - { "code": "421102", "name": "黄州区" }, - { "code": "421121", "name": "团风县" }, - { "code": "421122", "name": "红安县" }, - { "code": "421123", "name": "罗田县" }, - { "code": "421124", "name": "英山县" }, - { "code": "421125", "name": "浠水县" }, - { "code": "421126", "name": "蕲春县" }, - { "code": "421127", "name": "黄梅县" }, - { "code": "421171", "name": "龙感湖管理区" }, - { "code": "421181", "name": "麻城市" }, - { "code": "421182", "name": "武穴市" } - ] - }, - { - "code": "4212", - "name": "咸宁市", - "children": [ - { "code": "421202", "name": "咸安区" }, - { "code": "421221", "name": "嘉鱼县" }, - { "code": "421222", "name": "通城县" }, - { "code": "421223", "name": "崇阳县" }, - { "code": "421224", "name": "通山县" }, - { "code": "421281", "name": "赤壁市" } - ] - }, - { - "code": "4213", - "name": "随州市", - "children": [ - { "code": "421303", "name": "曾都区" }, - { "code": "421321", "name": "随县" }, - { "code": "421381", "name": "广水市" } - ] - }, - { - "code": "4228", - "name": "恩施土家族苗族自治州", - "children": [ - { "code": "422801", "name": "恩施市" }, - { "code": "422802", "name": "利川市" }, - { "code": "422822", "name": "建始县" }, - { "code": "422823", "name": "巴东县" }, - { "code": "422825", "name": "宣恩县" }, - { "code": "422826", "name": "咸丰县" }, - { "code": "422827", "name": "来凤县" }, - { "code": "422828", "name": "鹤峰县" } - ] - }, - { - "code": "4290", - "name": "省直辖县级行政区划", - "children": [ - { "code": "429004", "name": "仙桃市" }, - { "code": "429005", "name": "潜江市" }, - { "code": "429006", "name": "天门市" }, - { "code": "429021", "name": "神农架林区" } - ] - } - ] - }, - { - "code": "43", - "name": "湖南省", - "children": [ - { - "code": "4301", - "name": "长沙市", - "children": [ - { "code": "430102", "name": "芙蓉区" }, - { "code": "430103", "name": "天心区" }, - { "code": "430104", "name": "岳麓区" }, - { "code": "430105", "name": "开福区" }, - { "code": "430111", "name": "雨花区" }, - { "code": "430112", "name": "望城区" }, - { "code": "430121", "name": "长沙县" }, - { "code": "430181", "name": "浏阳市" }, - { "code": "430182", "name": "宁乡市" } - ] - }, - { - "code": "4302", - "name": "株洲市", - "children": [ - { "code": "430202", "name": "荷塘区" }, - { "code": "430203", "name": "芦淞区" }, - { "code": "430204", "name": "石峰区" }, - { "code": "430211", "name": "天元区" }, - { "code": "430212", "name": "渌口区" }, - { "code": "430223", "name": "攸县" }, - { "code": "430224", "name": "茶陵县" }, - { "code": "430225", "name": "炎陵县" }, - { "code": "430271", "name": "云龙示范区" }, - { "code": "430281", "name": "醴陵市" } - ] - }, - { - "code": "4303", - "name": "湘潭市", - "children": [ - { "code": "430302", "name": "雨湖区" }, - { "code": "430304", "name": "岳塘区" }, - { "code": "430321", "name": "湘潭县" }, - { "code": "430371", "name": "湖南湘潭高新技术产业园区" }, - { "code": "430372", "name": "湘潭昭山示范区" }, - { "code": "430373", "name": "湘潭九华示范区" }, - { "code": "430381", "name": "湘乡市" }, - { "code": "430382", "name": "韶山市" } - ] - }, - { - "code": "4304", - "name": "衡阳市", - "children": [ - { "code": "430405", "name": "珠晖区" }, - { "code": "430406", "name": "雁峰区" }, - { "code": "430407", "name": "石鼓区" }, - { "code": "430408", "name": "蒸湘区" }, - { "code": "430412", "name": "南岳区" }, - { "code": "430421", "name": "衡阳县" }, - { "code": "430422", "name": "衡南县" }, - { "code": "430423", "name": "衡山县" }, - { "code": "430424", "name": "衡东县" }, - { "code": "430426", "name": "祁东县" }, - { "code": "430471", "name": "衡阳综合保税区" }, - { "code": "430472", "name": "湖南衡阳高新技术产业园区" }, - { "code": "430473", "name": "湖南衡阳松木经济开发区" }, - { "code": "430481", "name": "耒阳市" }, - { "code": "430482", "name": "常宁市" } - ] - }, - { - "code": "4305", - "name": "邵阳市", - "children": [ - { "code": "430502", "name": "双清区" }, - { "code": "430503", "name": "大祥区" }, - { "code": "430511", "name": "北塔区" }, - { "code": "430522", "name": "新邵县" }, - { "code": "430523", "name": "邵阳县" }, - { "code": "430524", "name": "隆回县" }, - { "code": "430525", "name": "洞口县" }, - { "code": "430527", "name": "绥宁县" }, - { "code": "430528", "name": "新宁县" }, - { "code": "430529", "name": "城步苗族自治县" }, - { "code": "430581", "name": "武冈市" }, - { "code": "430582", "name": "邵东市" } - ] - }, - { - "code": "4306", - "name": "岳阳市", - "children": [ - { "code": "430602", "name": "岳阳楼区" }, - { "code": "430603", "name": "云溪区" }, - { "code": "430611", "name": "君山区" }, - { "code": "430621", "name": "岳阳县" }, - { "code": "430623", "name": "华容县" }, - { "code": "430624", "name": "湘阴县" }, - { "code": "430626", "name": "平江县" }, - { "code": "430671", "name": "岳阳市屈原管理区" }, - { "code": "430681", "name": "汨罗市" }, - { "code": "430682", "name": "临湘市" } - ] - }, - { - "code": "4307", - "name": "常德市", - "children": [ - { "code": "430702", "name": "武陵区" }, - { "code": "430703", "name": "鼎城区" }, - { "code": "430721", "name": "安乡县" }, - { "code": "430722", "name": "汉寿县" }, - { "code": "430723", "name": "澧县" }, - { "code": "430724", "name": "临澧县" }, - { "code": "430725", "name": "桃源县" }, - { "code": "430726", "name": "石门县" }, - { "code": "430771", "name": "常德市西洞庭管理区" }, - { "code": "430781", "name": "津市市" } - ] - }, - { - "code": "4308", - "name": "张家界市", - "children": [ - { "code": "430802", "name": "永定区" }, - { "code": "430811", "name": "武陵源区" }, - { "code": "430821", "name": "慈利县" }, - { "code": "430822", "name": "桑植县" } - ] - }, - { - "code": "4309", - "name": "益阳市", - "children": [ - { "code": "430902", "name": "资阳区" }, - { "code": "430903", "name": "赫山区" }, - { "code": "430921", "name": "南县" }, - { "code": "430922", "name": "桃江县" }, - { "code": "430923", "name": "安化县" }, - { "code": "430971", "name": "益阳市大通湖管理区" }, - { "code": "430972", "name": "湖南益阳高新技术产业园区" }, - { "code": "430981", "name": "沅江市" } - ] - }, - { - "code": "4310", - "name": "郴州市", - "children": [ - { "code": "431002", "name": "北湖区" }, - { "code": "431003", "name": "苏仙区" }, - { "code": "431021", "name": "桂阳县" }, - { "code": "431022", "name": "宜章县" }, - { "code": "431023", "name": "永兴县" }, - { "code": "431024", "name": "嘉禾县" }, - { "code": "431025", "name": "临武县" }, - { "code": "431026", "name": "汝城县" }, - { "code": "431027", "name": "桂东县" }, - { "code": "431028", "name": "安仁县" }, - { "code": "431081", "name": "资兴市" } - ] - }, - { - "code": "4311", - "name": "永州市", - "children": [ - { "code": "431102", "name": "零陵区" }, - { "code": "431103", "name": "冷水滩区" }, - { "code": "431121", "name": "祁阳县" }, - { "code": "431122", "name": "东安县" }, - { "code": "431123", "name": "双牌县" }, - { "code": "431124", "name": "道县" }, - { "code": "431125", "name": "江永县" }, - { "code": "431126", "name": "宁远县" }, - { "code": "431127", "name": "蓝山县" }, - { "code": "431128", "name": "新田县" }, - { "code": "431129", "name": "江华瑶族自治县" }, - { "code": "431171", "name": "永州经济技术开发区" }, - { "code": "431172", "name": "永州市金洞管理区" }, - { "code": "431173", "name": "永州市回龙圩管理区" } - ] - }, - { - "code": "4312", - "name": "怀化市", - "children": [ - { "code": "431202", "name": "鹤城区" }, - { "code": "431221", "name": "中方县" }, - { "code": "431222", "name": "沅陵县" }, - { "code": "431223", "name": "辰溪县" }, - { "code": "431224", "name": "溆浦县" }, - { "code": "431225", "name": "会同县" }, - { "code": "431226", "name": "麻阳苗族自治县" }, - { "code": "431227", "name": "新晃侗族自治县" }, - { "code": "431228", "name": "芷江侗族自治县" }, - { "code": "431229", "name": "靖州苗族侗族自治县" }, - { "code": "431230", "name": "通道侗族自治县" }, - { "code": "431271", "name": "怀化市洪江管理区" }, - { "code": "431281", "name": "洪江市" } - ] - }, - { - "code": "4313", - "name": "娄底市", - "children": [ - { "code": "431302", "name": "娄星区" }, - { "code": "431321", "name": "双峰县" }, - { "code": "431322", "name": "新化县" }, - { "code": "431381", "name": "冷水江市" }, - { "code": "431382", "name": "涟源市" } - ] - }, - { - "code": "4331", - "name": "湘西土家族苗族自治州", - "children": [ - { "code": "433101", "name": "吉首市" }, - { "code": "433122", "name": "泸溪县" }, - { "code": "433123", "name": "凤凰县" }, - { "code": "433124", "name": "花垣县" }, - { "code": "433125", "name": "保靖县" }, - { "code": "433126", "name": "古丈县" }, - { "code": "433127", "name": "永顺县" }, - { "code": "433130", "name": "龙山县" }, - { "code": "433173", "name": "湖南永顺经济开发区" } - ] - } - ] - }, - { - "code": "44", - "name": "广东省", - "children": [ - { - "code": "4401", - "name": "广州市", - "children": [ - { "code": "440103", "name": "荔湾区" }, - { "code": "440104", "name": "越秀区" }, - { "code": "440105", "name": "海珠区" }, - { "code": "440106", "name": "天河区" }, - { "code": "440111", "name": "白云区" }, - { "code": "440112", "name": "黄埔区" }, - { "code": "440113", "name": "番禺区" }, - { "code": "440114", "name": "花都区" }, - { "code": "440115", "name": "南沙区" }, - { "code": "440117", "name": "从化区" }, - { "code": "440118", "name": "增城区" } - ] - }, - { - "code": "4402", - "name": "韶关市", - "children": [ - { "code": "440203", "name": "武江区" }, - { "code": "440204", "name": "浈江区" }, - { "code": "440205", "name": "曲江区" }, - { "code": "440222", "name": "始兴县" }, - { "code": "440224", "name": "仁化县" }, - { "code": "440229", "name": "翁源县" }, - { "code": "440232", "name": "乳源瑶族自治县" }, - { "code": "440233", "name": "新丰县" }, - { "code": "440281", "name": "乐昌市" }, - { "code": "440282", "name": "南雄市" } - ] - }, - { - "code": "4403", - "name": "深圳市", - "children": [ - { "code": "440303", "name": "罗湖区" }, - { "code": "440304", "name": "福田区" }, - { "code": "440305", "name": "南山区" }, - { "code": "440306", "name": "宝安区" }, - { "code": "440307", "name": "龙岗区" }, - { "code": "440308", "name": "盐田区" }, - { "code": "440309", "name": "龙华区" }, - { "code": "440310", "name": "坪山区" }, - { "code": "440311", "name": "光明区" } - ] - }, - { - "code": "4404", - "name": "珠海市", - "children": [ - { "code": "440402", "name": "香洲区" }, - { "code": "440403", "name": "斗门区" }, - { "code": "440404", "name": "金湾区" } - ] - }, - { - "code": "4405", - "name": "汕头市", - "children": [ - { "code": "440507", "name": "龙湖区" }, - { "code": "440511", "name": "金平区" }, - { "code": "440512", "name": "濠江区" }, - { "code": "440513", "name": "潮阳区" }, - { "code": "440514", "name": "潮南区" }, - { "code": "440515", "name": "澄海区" }, - { "code": "440523", "name": "南澳县" } - ] - }, - { - "code": "4406", - "name": "佛山市", - "children": [ - { "code": "440604", "name": "禅城区" }, - { "code": "440605", "name": "南海区" }, - { "code": "440606", "name": "顺德区" }, - { "code": "440607", "name": "三水区" }, - { "code": "440608", "name": "高明区" } - ] - }, - { - "code": "4407", - "name": "江门市", - "children": [ - { "code": "440703", "name": "蓬江区" }, - { "code": "440704", "name": "江海区" }, - { "code": "440705", "name": "新会区" }, - { "code": "440781", "name": "台山市" }, - { "code": "440783", "name": "开平市" }, - { "code": "440784", "name": "鹤山市" }, - { "code": "440785", "name": "恩平市" } - ] - }, - { - "code": "4408", - "name": "湛江市", - "children": [ - { "code": "440802", "name": "赤坎区" }, - { "code": "440803", "name": "霞山区" }, - { "code": "440804", "name": "坡头区" }, - { "code": "440811", "name": "麻章区" }, - { "code": "440823", "name": "遂溪县" }, - { "code": "440825", "name": "徐闻县" }, - { "code": "440881", "name": "廉江市" }, - { "code": "440882", "name": "雷州市" }, - { "code": "440883", "name": "吴川市" } - ] - }, - { - "code": "4409", - "name": "茂名市", - "children": [ - { "code": "440902", "name": "茂南区" }, - { "code": "440904", "name": "电白区" }, - { "code": "440981", "name": "高州市" }, - { "code": "440982", "name": "化州市" }, - { "code": "440983", "name": "信宜市" } - ] - }, - { - "code": "4412", - "name": "肇庆市", - "children": [ - { "code": "441202", "name": "端州区" }, - { "code": "441203", "name": "鼎湖区" }, - { "code": "441204", "name": "高要区" }, - { "code": "441223", "name": "广宁县" }, - { "code": "441224", "name": "怀集县" }, - { "code": "441225", "name": "封开县" }, - { "code": "441226", "name": "德庆县" }, - { "code": "441284", "name": "四会市" } - ] - }, - { - "code": "4413", - "name": "惠州市", - "children": [ - { "code": "441302", "name": "惠城区" }, - { "code": "441303", "name": "惠阳区" }, - { "code": "441322", "name": "博罗县" }, - { "code": "441323", "name": "惠东县" }, - { "code": "441324", "name": "龙门县" } - ] - }, - { - "code": "4414", - "name": "梅州市", - "children": [ - { "code": "441402", "name": "梅江区" }, - { "code": "441403", "name": "梅县区" }, - { "code": "441422", "name": "大埔县" }, - { "code": "441423", "name": "丰顺县" }, - { "code": "441424", "name": "五华县" }, - { "code": "441426", "name": "平远县" }, - { "code": "441427", "name": "蕉岭县" }, - { "code": "441481", "name": "兴宁市" } - ] - }, - { - "code": "4415", - "name": "汕尾市", - "children": [ - { "code": "441502", "name": "城区" }, - { "code": "441521", "name": "海丰县" }, - { "code": "441523", "name": "陆河县" }, - { "code": "441581", "name": "陆丰市" } - ] - }, - { - "code": "4416", - "name": "河源市", - "children": [ - { "code": "441602", "name": "源城区" }, - { "code": "441621", "name": "紫金县" }, - { "code": "441622", "name": "龙川县" }, - { "code": "441623", "name": "连平县" }, - { "code": "441624", "name": "和平县" }, - { "code": "441625", "name": "东源县" } - ] - }, - { - "code": "4417", - "name": "阳江市", - "children": [ - { "code": "441702", "name": "江城区" }, - { "code": "441704", "name": "阳东区" }, - { "code": "441721", "name": "阳西县" }, - { "code": "441781", "name": "阳春市" } - ] - }, - { - "code": "4418", - "name": "清远市", - "children": [ - { "code": "441802", "name": "清城区" }, - { "code": "441803", "name": "清新区" }, - { "code": "441821", "name": "佛冈县" }, - { "code": "441823", "name": "阳山县" }, - { "code": "441825", "name": "连山壮族瑶族自治县" }, - { "code": "441826", "name": "连南瑶族自治县" }, - { "code": "441881", "name": "英德市" }, - { "code": "441882", "name": "连州市" } - ] - }, - { - "code": "4419", - "name": "东莞市", - "children": [ - { "code": "441900003", "name": "东城街道" }, - { "code": "441900004", "name": "南城街道" }, - { "code": "441900005", "name": "万江街道" }, - { "code": "441900006", "name": "莞城街道" }, - { "code": "441900101", "name": "石碣镇" }, - { "code": "441900102", "name": "石龙镇" }, - { "code": "441900103", "name": "茶山镇" }, - { "code": "441900104", "name": "石排镇" }, - { "code": "441900105", "name": "企石镇" }, - { "code": "441900106", "name": "横沥镇" }, - { "code": "441900107", "name": "桥头镇" }, - { "code": "441900108", "name": "谢岗镇" }, - { "code": "441900109", "name": "东坑镇" }, - { "code": "441900110", "name": "常平镇" }, - { "code": "441900111", "name": "寮步镇" }, - { "code": "441900112", "name": "樟木头镇" }, - { "code": "441900113", "name": "大朗镇" }, - { "code": "441900114", "name": "黄江镇" }, - { "code": "441900115", "name": "清溪镇" }, - { "code": "441900116", "name": "塘厦镇" }, - { "code": "441900117", "name": "凤岗镇" }, - { "code": "441900118", "name": "大岭山镇" }, - { "code": "441900119", "name": "长安镇" }, - { "code": "441900121", "name": "虎门镇" }, - { "code": "441900122", "name": "厚街镇" }, - { "code": "441900123", "name": "沙田镇" }, - { "code": "441900124", "name": "道滘镇" }, - { "code": "441900125", "name": "洪梅镇" }, - { "code": "441900126", "name": "麻涌镇" }, - { "code": "441900127", "name": "望牛墩镇" }, - { "code": "441900128", "name": "中堂镇" }, - { "code": "441900129", "name": "高埗镇" }, - { "code": "441900401", "name": "松山湖" }, - { "code": "441900402", "name": "东莞港" }, - { "code": "441900403", "name": "东莞生态园" } - ] - }, - { - "code": "4420", - "name": "中山市", - "children": [ - { "code": "442000001", "name": "石岐街道" }, - { "code": "442000002", "name": "东区街道" }, - { "code": "442000003", "name": "中山港街道" }, - { "code": "442000004", "name": "西区街道" }, - { "code": "442000005", "name": "南区街道" }, - { "code": "442000006", "name": "五桂山街道" }, - { "code": "442000100", "name": "小榄镇" }, - { "code": "442000101", "name": "黄圃镇" }, - { "code": "442000102", "name": "民众镇" }, - { "code": "442000103", "name": "东凤镇" }, - { "code": "442000104", "name": "东升镇" }, - { "code": "442000105", "name": "古镇镇" }, - { "code": "442000106", "name": "沙溪镇" }, - { "code": "442000107", "name": "坦洲镇" }, - { "code": "442000108", "name": "港口镇" }, - { "code": "442000109", "name": "三角镇" }, - { "code": "442000110", "name": "横栏镇" }, - { "code": "442000111", "name": "南头镇" }, - { "code": "442000112", "name": "阜沙镇" }, - { "code": "442000113", "name": "南朗镇" }, - { "code": "442000114", "name": "三乡镇" }, - { "code": "442000115", "name": "板芙镇" }, - { "code": "442000116", "name": "大涌镇" }, - { "code": "442000117", "name": "神湾镇" } - ] - }, - { - "code": "4451", - "name": "潮州市", - "children": [ - { "code": "445102", "name": "湘桥区" }, - { "code": "445103", "name": "潮安区" }, - { "code": "445122", "name": "饶平县" } - ] - }, - { - "code": "4452", - "name": "揭阳市", - "children": [ - { "code": "445202", "name": "榕城区" }, - { "code": "445203", "name": "揭东区" }, - { "code": "445222", "name": "揭西县" }, - { "code": "445224", "name": "惠来县" }, - { "code": "445281", "name": "普宁市" } - ] - }, - { - "code": "4453", - "name": "云浮市", - "children": [ - { "code": "445302", "name": "云城区" }, - { "code": "445303", "name": "云安区" }, - { "code": "445321", "name": "新兴县" }, - { "code": "445322", "name": "郁南县" }, - { "code": "445381", "name": "罗定市" } - ] - } - ] - }, - { - "code": "45", - "name": "广西壮族自治区", - "children": [ - { - "code": "4501", - "name": "南宁市", - "children": [ - { "code": "450102", "name": "兴宁区" }, - { "code": "450103", "name": "青秀区" }, - { "code": "450105", "name": "江南区" }, - { "code": "450107", "name": "西乡塘区" }, - { "code": "450108", "name": "良庆区" }, - { "code": "450109", "name": "邕宁区" }, - { "code": "450110", "name": "武鸣区" }, - { "code": "450123", "name": "隆安县" }, - { "code": "450124", "name": "马山县" }, - { "code": "450125", "name": "上林县" }, - { "code": "450126", "name": "宾阳县" }, - { "code": "450127", "name": "横县" } - ] - }, - { - "code": "4502", - "name": "柳州市", - "children": [ - { "code": "450202", "name": "城中区" }, - { "code": "450203", "name": "鱼峰区" }, - { "code": "450204", "name": "柳南区" }, - { "code": "450205", "name": "柳北区" }, - { "code": "450206", "name": "柳江区" }, - { "code": "450222", "name": "柳城县" }, - { "code": "450223", "name": "鹿寨县" }, - { "code": "450224", "name": "融安县" }, - { "code": "450225", "name": "融水苗族自治县" }, - { "code": "450226", "name": "三江侗族自治县" } - ] - }, - { - "code": "4503", - "name": "桂林市", - "children": [ - { "code": "450302", "name": "秀峰区" }, - { "code": "450303", "name": "叠彩区" }, - { "code": "450304", "name": "象山区" }, - { "code": "450305", "name": "七星区" }, - { "code": "450311", "name": "雁山区" }, - { "code": "450312", "name": "临桂区" }, - { "code": "450321", "name": "阳朔县" }, - { "code": "450323", "name": "灵川县" }, - { "code": "450324", "name": "全州县" }, - { "code": "450325", "name": "兴安县" }, - { "code": "450326", "name": "永福县" }, - { "code": "450327", "name": "灌阳县" }, - { "code": "450328", "name": "龙胜各族自治县" }, - { "code": "450329", "name": "资源县" }, - { "code": "450330", "name": "平乐县" }, - { "code": "450332", "name": "恭城瑶族自治县" }, - { "code": "450381", "name": "荔浦市" } - ] - }, - { - "code": "4504", - "name": "梧州市", - "children": [ - { "code": "450403", "name": "万秀区" }, - { "code": "450405", "name": "长洲区" }, - { "code": "450406", "name": "龙圩区" }, - { "code": "450421", "name": "苍梧县" }, - { "code": "450422", "name": "藤县" }, - { "code": "450423", "name": "蒙山县" }, - { "code": "450481", "name": "岑溪市" } - ] - }, - { - "code": "4505", - "name": "北海市", - "children": [ - { "code": "450502", "name": "海城区" }, - { "code": "450503", "name": "银海区" }, - { "code": "450512", "name": "铁山港区" }, - { "code": "450521", "name": "合浦县" } - ] - }, - { - "code": "4506", - "name": "防城港市", - "children": [ - { "code": "450602", "name": "港口区" }, - { "code": "450603", "name": "防城区" }, - { "code": "450621", "name": "上思县" }, - { "code": "450681", "name": "东兴市" } - ] - }, - { - "code": "4507", - "name": "钦州市", - "children": [ - { "code": "450702", "name": "钦南区" }, - { "code": "450703", "name": "钦北区" }, - { "code": "450721", "name": "灵山县" }, - { "code": "450722", "name": "浦北县" } - ] - }, - { - "code": "4508", - "name": "贵港市", - "children": [ - { "code": "450802", "name": "港北区" }, - { "code": "450803", "name": "港南区" }, - { "code": "450804", "name": "覃塘区" }, - { "code": "450821", "name": "平南县" }, - { "code": "450881", "name": "桂平市" } - ] - }, - { - "code": "4509", - "name": "玉林市", - "children": [ - { "code": "450902", "name": "玉州区" }, - { "code": "450903", "name": "福绵区" }, - { "code": "450921", "name": "容县" }, - { "code": "450922", "name": "陆川县" }, - { "code": "450923", "name": "博白县" }, - { "code": "450924", "name": "兴业县" }, - { "code": "450981", "name": "北流市" } - ] - }, - { - "code": "4510", - "name": "百色市", - "children": [ - { "code": "451002", "name": "右江区" }, - { "code": "451003", "name": "田阳区" }, - { "code": "451022", "name": "田东县" }, - { "code": "451023", "name": "平果县" }, - { "code": "451024", "name": "德保县" }, - { "code": "451026", "name": "那坡县" }, - { "code": "451027", "name": "凌云县" }, - { "code": "451028", "name": "乐业县" }, - { "code": "451029", "name": "田林县" }, - { "code": "451030", "name": "西林县" }, - { "code": "451031", "name": "隆林各族自治县" }, - { "code": "451081", "name": "靖西市" } - ] - }, - { - "code": "4511", - "name": "贺州市", - "children": [ - { "code": "451102", "name": "八步区" }, - { "code": "451103", "name": "平桂区" }, - { "code": "451121", "name": "昭平县" }, - { "code": "451122", "name": "钟山县" }, - { "code": "451123", "name": "富川瑶族自治县" } - ] - }, - { - "code": "4512", - "name": "河池市", - "children": [ - { "code": "451202", "name": "金城江区" }, - { "code": "451203", "name": "宜州区" }, - { "code": "451221", "name": "南丹县" }, - { "code": "451222", "name": "天峨县" }, - { "code": "451223", "name": "凤山县" }, - { "code": "451224", "name": "东兰县" }, - { "code": "451225", "name": "罗城仫佬族自治县" }, - { "code": "451226", "name": "环江毛南族自治县" }, - { "code": "451227", "name": "巴马瑶族自治县" }, - { "code": "451228", "name": "都安瑶族自治县" }, - { "code": "451229", "name": "大化瑶族自治县" } - ] - }, - { - "code": "4513", - "name": "来宾市", - "children": [ - { "code": "451302", "name": "兴宾区" }, - { "code": "451321", "name": "忻城县" }, - { "code": "451322", "name": "象州县" }, - { "code": "451323", "name": "武宣县" }, - { "code": "451324", "name": "金秀瑶族自治县" }, - { "code": "451381", "name": "合山市" } - ] - }, - { - "code": "4514", - "name": "崇左市", - "children": [ - { "code": "451402", "name": "江州区" }, - { "code": "451421", "name": "扶绥县" }, - { "code": "451422", "name": "宁明县" }, - { "code": "451423", "name": "龙州县" }, - { "code": "451424", "name": "大新县" }, - { "code": "451425", "name": "天等县" }, - { "code": "451481", "name": "凭祥市" } - ] - } - ] - }, - { - "code": "46", - "name": "海南省", - "children": [ - { - "code": "4601", - "name": "海口市", - "children": [ - { "code": "460105", "name": "秀英区" }, - { "code": "460106", "name": "龙华区" }, - { "code": "460107", "name": "琼山区" }, - { "code": "460108", "name": "美兰区" } - ] - }, - { - "code": "4602", - "name": "三亚市", - "children": [ - { "code": "460202", "name": "海棠区" }, - { "code": "460203", "name": "吉阳区" }, - { "code": "460204", "name": "天涯区" }, - { "code": "460205", "name": "崖州区" } - ] - }, - { - "code": "4603", - "name": "三沙市", - "children": [ - { "code": "460321", "name": "西沙群岛" }, - { "code": "460322", "name": "南沙群岛" }, - { "code": "460323", "name": "中沙群岛的岛礁及其海域" } - ] - }, - { - "code": "4604", - "name": "儋州市", - "children": [ - { "code": "460400100", "name": "那大镇" }, - { "code": "460400101", "name": "和庆镇" }, - { "code": "460400102", "name": "南丰镇" }, - { "code": "460400103", "name": "大成镇" }, - { "code": "460400104", "name": "雅星镇" }, - { "code": "460400105", "name": "兰洋镇" }, - { "code": "460400106", "name": "光村镇" }, - { "code": "460400107", "name": "木棠镇" }, - { "code": "460400108", "name": "海头镇" }, - { "code": "460400109", "name": "峨蔓镇" }, - { "code": "460400111", "name": "王五镇" }, - { "code": "460400112", "name": "白马井镇" }, - { "code": "460400113", "name": "中和镇" }, - { "code": "460400114", "name": "排浦镇" }, - { "code": "460400115", "name": "东成镇" }, - { "code": "460400116", "name": "新州镇" }, - { "code": "460400499", "name": "洋浦经济开发区" }, - { "code": "460400500", "name": "华南热作学院" } - ] - }, - { - "code": "4690", - "name": "省直辖县级行政区划", - "children": [ - { "code": "469001", "name": "五指山市" }, - { "code": "469002", "name": "琼海市" }, - { "code": "469005", "name": "文昌市" }, - { "code": "469006", "name": "万宁市" }, - { "code": "469007", "name": "东方市" }, - { "code": "469021", "name": "定安县" }, - { "code": "469022", "name": "屯昌县" }, - { "code": "469023", "name": "澄迈县" }, - { "code": "469024", "name": "临高县" }, - { "code": "469025", "name": "白沙黎族自治县" }, - { "code": "469026", "name": "昌江黎族自治县" }, - { "code": "469027", "name": "乐东黎族自治县" }, - { "code": "469028", "name": "陵水黎族自治县" }, - { "code": "469029", "name": "保亭黎族苗族自治县" }, - { "code": "469030", "name": "琼中黎族苗族自治县" } - ] - } - ] - }, - { - "code": "50", - "name": "重庆市", - "children": [ - { - "code": "5001", - "name": "市辖区", - "children": [ - { "code": "500101", "name": "万州区" }, - { "code": "500102", "name": "涪陵区" }, - { "code": "500103", "name": "渝中区" }, - { "code": "500104", "name": "大渡口区" }, - { "code": "500105", "name": "江北区" }, - { "code": "500106", "name": "沙坪坝区" }, - { "code": "500107", "name": "九龙坡区" }, - { "code": "500108", "name": "南岸区" }, - { "code": "500109", "name": "北碚区" }, - { "code": "500110", "name": "綦江区" }, - { "code": "500111", "name": "大足区" }, - { "code": "500112", "name": "渝北区" }, - { "code": "500113", "name": "巴南区" }, - { "code": "500114", "name": "黔江区" }, - { "code": "500115", "name": "长寿区" }, - { "code": "500116", "name": "江津区" }, - { "code": "500117", "name": "合川区" }, - { "code": "500118", "name": "永川区" }, - { "code": "500119", "name": "南川区" }, - { "code": "500120", "name": "璧山区" }, - { "code": "500151", "name": "铜梁区" }, - { "code": "500152", "name": "潼南区" }, - { "code": "500153", "name": "荣昌区" }, - { "code": "500154", "name": "开州区" }, - { "code": "500155", "name": "梁平区" }, - { "code": "500156", "name": "武隆区" } - ] - }, - { - "code": "5002", - "name": "县", - "children": [ - { "code": "500229", "name": "城口县" }, - { "code": "500230", "name": "丰都县" }, - { "code": "500231", "name": "垫江县" }, - { "code": "500233", "name": "忠县" }, - { "code": "500235", "name": "云阳县" }, - { "code": "500236", "name": "奉节县" }, - { "code": "500237", "name": "巫山县" }, - { "code": "500238", "name": "巫溪县" }, - { "code": "500240", "name": "石柱土家族自治县" }, - { "code": "500241", "name": "秀山土家族苗族自治县" }, - { "code": "500242", "name": "酉阳土家族苗族自治县" }, - { "code": "500243", "name": "彭水苗族土家族自治县" } - ] - } - ] - }, - { - "code": "51", - "name": "四川省", - "children": [ - { - "code": "5101", - "name": "成都市", - "children": [ - { "code": "510104", "name": "锦江区" }, - { "code": "510105", "name": "青羊区" }, - { "code": "510106", "name": "金牛区" }, - { "code": "510107", "name": "武侯区" }, - { "code": "510108", "name": "成华区" }, - { "code": "510112", "name": "龙泉驿区" }, - { "code": "510113", "name": "青白江区" }, - { "code": "510114", "name": "新都区" }, - { "code": "510115", "name": "温江区" }, - { "code": "510116", "name": "双流区" }, - { "code": "510117", "name": "郫都区" }, - { "code": "510121", "name": "金堂县" }, - { "code": "510129", "name": "大邑县" }, - { "code": "510131", "name": "蒲江县" }, - { "code": "510132", "name": "新津县" }, - { "code": "510181", "name": "都江堰市" }, - { "code": "510182", "name": "彭州市" }, - { "code": "510183", "name": "邛崃市" }, - { "code": "510184", "name": "崇州市" }, - { "code": "510185", "name": "简阳市" } - ] - }, - { - "code": "5103", - "name": "自贡市", - "children": [ - { "code": "510302", "name": "自流井区" }, - { "code": "510303", "name": "贡井区" }, - { "code": "510304", "name": "大安区" }, - { "code": "510311", "name": "沿滩区" }, - { "code": "510321", "name": "荣县" }, - { "code": "510322", "name": "富顺县" } - ] - }, - { - "code": "5104", - "name": "攀枝花市", - "children": [ - { "code": "510402", "name": "东区" }, - { "code": "510403", "name": "西区" }, - { "code": "510411", "name": "仁和区" }, - { "code": "510421", "name": "米易县" }, - { "code": "510422", "name": "盐边县" } - ] - }, - { - "code": "5105", - "name": "泸州市", - "children": [ - { "code": "510502", "name": "江阳区" }, - { "code": "510503", "name": "纳溪区" }, - { "code": "510504", "name": "龙马潭区" }, - { "code": "510521", "name": "泸县" }, - { "code": "510522", "name": "合江县" }, - { "code": "510524", "name": "叙永县" }, - { "code": "510525", "name": "古蔺县" } - ] - }, - { - "code": "5106", - "name": "德阳市", - "children": [ - { "code": "510603", "name": "旌阳区" }, - { "code": "510604", "name": "罗江区" }, - { "code": "510623", "name": "中江县" }, - { "code": "510681", "name": "广汉市" }, - { "code": "510682", "name": "什邡市" }, - { "code": "510683", "name": "绵竹市" } - ] - }, - { - "code": "5107", - "name": "绵阳市", - "children": [ - { "code": "510703", "name": "涪城区" }, - { "code": "510704", "name": "游仙区" }, - { "code": "510705", "name": "安州区" }, - { "code": "510722", "name": "三台县" }, - { "code": "510723", "name": "盐亭县" }, - { "code": "510725", "name": "梓潼县" }, - { "code": "510726", "name": "北川羌族自治县" }, - { "code": "510727", "name": "平武县" }, - { "code": "510781", "name": "江油市" } - ] - }, - { - "code": "5108", - "name": "广元市", - "children": [ - { "code": "510802", "name": "利州区" }, - { "code": "510811", "name": "昭化区" }, - { "code": "510812", "name": "朝天区" }, - { "code": "510821", "name": "旺苍县" }, - { "code": "510822", "name": "青川县" }, - { "code": "510823", "name": "剑阁县" }, - { "code": "510824", "name": "苍溪县" } - ] - }, - { - "code": "5109", - "name": "遂宁市", - "children": [ - { "code": "510903", "name": "船山区" }, - { "code": "510904", "name": "安居区" }, - { "code": "510921", "name": "蓬溪县" }, - { "code": "510923", "name": "大英县" }, - { "code": "510981", "name": "射洪市" } - ] - }, - { - "code": "5110", - "name": "内江市", - "children": [ - { "code": "511002", "name": "市中区" }, - { "code": "511011", "name": "东兴区" }, - { "code": "511024", "name": "威远县" }, - { "code": "511025", "name": "资中县" }, - { "code": "511071", "name": "内江经济开发区" }, - { "code": "511083", "name": "隆昌市" } - ] - }, - { - "code": "5111", - "name": "乐山市", - "children": [ - { "code": "511102", "name": "市中区" }, - { "code": "511111", "name": "沙湾区" }, - { "code": "511112", "name": "五通桥区" }, - { "code": "511113", "name": "金口河区" }, - { "code": "511123", "name": "犍为县" }, - { "code": "511124", "name": "井研县" }, - { "code": "511126", "name": "夹江县" }, - { "code": "511129", "name": "沐川县" }, - { "code": "511132", "name": "峨边彝族自治县" }, - { "code": "511133", "name": "马边彝族自治县" }, - { "code": "511181", "name": "峨眉山市" } - ] - }, - { - "code": "5113", - "name": "南充市", - "children": [ - { "code": "511302", "name": "顺庆区" }, - { "code": "511303", "name": "高坪区" }, - { "code": "511304", "name": "嘉陵区" }, - { "code": "511321", "name": "南部县" }, - { "code": "511322", "name": "营山县" }, - { "code": "511323", "name": "蓬安县" }, - { "code": "511324", "name": "仪陇县" }, - { "code": "511325", "name": "西充县" }, - { "code": "511381", "name": "阆中市" } - ] - }, - { - "code": "5114", - "name": "眉山市", - "children": [ - { "code": "511402", "name": "东坡区" }, - { "code": "511403", "name": "彭山区" }, - { "code": "511421", "name": "仁寿县" }, - { "code": "511423", "name": "洪雅县" }, - { "code": "511424", "name": "丹棱县" }, - { "code": "511425", "name": "青神县" } - ] - }, - { - "code": "5115", - "name": "宜宾市", - "children": [ - { "code": "511502", "name": "翠屏区" }, - { "code": "511503", "name": "南溪区" }, - { "code": "511504", "name": "叙州区" }, - { "code": "511523", "name": "江安县" }, - { "code": "511524", "name": "长宁县" }, - { "code": "511525", "name": "高县" }, - { "code": "511526", "name": "珙县" }, - { "code": "511527", "name": "筠连县" }, - { "code": "511528", "name": "兴文县" }, - { "code": "511529", "name": "屏山县" } - ] - }, - { - "code": "5116", - "name": "广安市", - "children": [ - { "code": "511602", "name": "广安区" }, - { "code": "511603", "name": "前锋区" }, - { "code": "511621", "name": "岳池县" }, - { "code": "511622", "name": "武胜县" }, - { "code": "511623", "name": "邻水县" }, - { "code": "511681", "name": "华蓥市" } - ] - }, - { - "code": "5117", - "name": "达州市", - "children": [ - { "code": "511702", "name": "通川区" }, - { "code": "511703", "name": "达川区" }, - { "code": "511722", "name": "宣汉县" }, - { "code": "511723", "name": "开江县" }, - { "code": "511724", "name": "大竹县" }, - { "code": "511725", "name": "渠县" }, - { "code": "511771", "name": "达州经济开发区" }, - { "code": "511781", "name": "万源市" } - ] - }, - { - "code": "5118", - "name": "雅安市", - "children": [ - { "code": "511802", "name": "雨城区" }, - { "code": "511803", "name": "名山区" }, - { "code": "511822", "name": "荥经县" }, - { "code": "511823", "name": "汉源县" }, - { "code": "511824", "name": "石棉县" }, - { "code": "511825", "name": "天全县" }, - { "code": "511826", "name": "芦山县" }, - { "code": "511827", "name": "宝兴县" } - ] - }, - { - "code": "5119", - "name": "巴中市", - "children": [ - { "code": "511902", "name": "巴州区" }, - { "code": "511903", "name": "恩阳区" }, - { "code": "511921", "name": "通江县" }, - { "code": "511922", "name": "南江县" }, - { "code": "511923", "name": "平昌县" }, - { "code": "511971", "name": "巴中经济开发区" } - ] - }, - { - "code": "5120", - "name": "资阳市", - "children": [ - { "code": "512002", "name": "雁江区" }, - { "code": "512021", "name": "安岳县" }, - { "code": "512022", "name": "乐至县" } - ] - }, - { - "code": "5132", - "name": "阿坝藏族羌族自治州", - "children": [ - { "code": "513201", "name": "马尔康市" }, - { "code": "513221", "name": "汶川县" }, - { "code": "513222", "name": "理县" }, - { "code": "513223", "name": "茂县" }, - { "code": "513224", "name": "松潘县" }, - { "code": "513225", "name": "九寨沟县" }, - { "code": "513226", "name": "金川县" }, - { "code": "513227", "name": "小金县" }, - { "code": "513228", "name": "黑水县" }, - { "code": "513230", "name": "壤塘县" }, - { "code": "513231", "name": "阿坝县" }, - { "code": "513232", "name": "若尔盖县" }, - { "code": "513233", "name": "红原县" } - ] - }, - { - "code": "5133", - "name": "甘孜藏族自治州", - "children": [ - { "code": "513301", "name": "康定市" }, - { "code": "513322", "name": "泸定县" }, - { "code": "513323", "name": "丹巴县" }, - { "code": "513324", "name": "九龙县" }, - { "code": "513325", "name": "雅江县" }, - { "code": "513326", "name": "道孚县" }, - { "code": "513327", "name": "炉霍县" }, - { "code": "513328", "name": "甘孜县" }, - { "code": "513329", "name": "新龙县" }, - { "code": "513330", "name": "德格县" }, - { "code": "513331", "name": "白玉县" }, - { "code": "513332", "name": "石渠县" }, - { "code": "513333", "name": "色达县" }, - { "code": "513334", "name": "理塘县" }, - { "code": "513335", "name": "巴塘县" }, - { "code": "513336", "name": "乡城县" }, - { "code": "513337", "name": "稻城县" }, - { "code": "513338", "name": "得荣县" } - ] - }, - { - "code": "5134", - "name": "凉山彝族自治州", - "children": [ - { "code": "513401", "name": "西昌市" }, - { "code": "513422", "name": "木里藏族自治县" }, - { "code": "513423", "name": "盐源县" }, - { "code": "513424", "name": "德昌县" }, - { "code": "513425", "name": "会理县" }, - { "code": "513426", "name": "会东县" }, - { "code": "513427", "name": "宁南县" }, - { "code": "513428", "name": "普格县" }, - { "code": "513429", "name": "布拖县" }, - { "code": "513430", "name": "金阳县" }, - { "code": "513431", "name": "昭觉县" }, - { "code": "513432", "name": "喜德县" }, - { "code": "513433", "name": "冕宁县" }, - { "code": "513434", "name": "越西县" }, - { "code": "513435", "name": "甘洛县" }, - { "code": "513436", "name": "美姑县" }, - { "code": "513437", "name": "雷波县" } - ] - } - ] - }, - { - "code": "52", - "name": "贵州省", - "children": [ - { - "code": "5201", - "name": "贵阳市", - "children": [ - { "code": "520102", "name": "南明区" }, - { "code": "520103", "name": "云岩区" }, - { "code": "520111", "name": "花溪区" }, - { "code": "520112", "name": "乌当区" }, - { "code": "520113", "name": "白云区" }, - { "code": "520115", "name": "观山湖区" }, - { "code": "520121", "name": "开阳县" }, - { "code": "520122", "name": "息烽县" }, - { "code": "520123", "name": "修文县" }, - { "code": "520181", "name": "清镇市" } - ] - }, - { - "code": "5202", - "name": "六盘水市", - "children": [ - { "code": "520201", "name": "钟山区" }, - { "code": "520203", "name": "六枝特区" }, - { "code": "520221", "name": "水城县" }, - { "code": "520281", "name": "盘州市" } - ] - }, - { - "code": "5203", - "name": "遵义市", - "children": [ - { "code": "520302", "name": "红花岗区" }, - { "code": "520303", "name": "汇川区" }, - { "code": "520304", "name": "播州区" }, - { "code": "520322", "name": "桐梓县" }, - { "code": "520323", "name": "绥阳县" }, - { "code": "520324", "name": "正安县" }, - { "code": "520325", "name": "道真仡佬族苗族自治县" }, - { "code": "520326", "name": "务川仡佬族苗族自治县" }, - { "code": "520327", "name": "凤冈县" }, - { "code": "520328", "name": "湄潭县" }, - { "code": "520329", "name": "余庆县" }, - { "code": "520330", "name": "习水县" }, - { "code": "520381", "name": "赤水市" }, - { "code": "520382", "name": "仁怀市" } - ] - }, - { - "code": "5204", - "name": "安顺市", - "children": [ - { "code": "520402", "name": "西秀区" }, - { "code": "520403", "name": "平坝区" }, - { "code": "520422", "name": "普定县" }, - { "code": "520423", "name": "镇宁布依族苗族自治县" }, - { "code": "520424", "name": "关岭布依族苗族自治县" }, - { "code": "520425", "name": "紫云苗族布依族自治县" } - ] - }, - { - "code": "5205", - "name": "毕节市", - "children": [ - { "code": "520502", "name": "七星关区" }, - { "code": "520521", "name": "大方县" }, - { "code": "520522", "name": "黔西县" }, - { "code": "520523", "name": "金沙县" }, - { "code": "520524", "name": "织金县" }, - { "code": "520525", "name": "纳雍县" }, - { "code": "520526", "name": "威宁彝族回族苗族自治县" }, - { "code": "520527", "name": "赫章县" } - ] - }, - { - "code": "5206", - "name": "铜仁市", - "children": [ - { "code": "520602", "name": "碧江区" }, - { "code": "520603", "name": "万山区" }, - { "code": "520621", "name": "江口县" }, - { "code": "520622", "name": "玉屏侗族自治县" }, - { "code": "520623", "name": "石阡县" }, - { "code": "520624", "name": "思南县" }, - { "code": "520625", "name": "印江土家族苗族自治县" }, - { "code": "520626", "name": "德江县" }, - { "code": "520627", "name": "沿河土家族自治县" }, - { "code": "520628", "name": "松桃苗族自治县" } - ] - }, - { - "code": "5223", - "name": "黔西南布依族苗族自治州", - "children": [ - { "code": "522301", "name": "兴义市" }, - { "code": "522302", "name": "兴仁市" }, - { "code": "522323", "name": "普安县" }, - { "code": "522324", "name": "晴隆县" }, - { "code": "522325", "name": "贞丰县" }, - { "code": "522326", "name": "望谟县" }, - { "code": "522327", "name": "册亨县" }, - { "code": "522328", "name": "安龙县" } - ] - }, - { - "code": "5226", - "name": "黔东南苗族侗族自治州", - "children": [ - { "code": "522601", "name": "凯里市" }, - { "code": "522622", "name": "黄平县" }, - { "code": "522623", "name": "施秉县" }, - { "code": "522624", "name": "三穗县" }, - { "code": "522625", "name": "镇远县" }, - { "code": "522626", "name": "岑巩县" }, - { "code": "522627", "name": "天柱县" }, - { "code": "522628", "name": "锦屏县" }, - { "code": "522629", "name": "剑河县" }, - { "code": "522630", "name": "台江县" }, - { "code": "522631", "name": "黎平县" }, - { "code": "522632", "name": "榕江县" }, - { "code": "522633", "name": "从江县" }, - { "code": "522634", "name": "雷山县" }, - { "code": "522635", "name": "麻江县" }, - { "code": "522636", "name": "丹寨县" } - ] - }, - { - "code": "5227", - "name": "黔南布依族苗族自治州", - "children": [ - { "code": "522701", "name": "都匀市" }, - { "code": "522702", "name": "福泉市" }, - { "code": "522722", "name": "荔波县" }, - { "code": "522723", "name": "贵定县" }, - { "code": "522725", "name": "瓮安县" }, - { "code": "522726", "name": "独山县" }, - { "code": "522727", "name": "平塘县" }, - { "code": "522728", "name": "罗甸县" }, - { "code": "522729", "name": "长顺县" }, - { "code": "522730", "name": "龙里县" }, - { "code": "522731", "name": "惠水县" }, - { "code": "522732", "name": "三都水族自治县" } - ] - } - ] - }, - { - "code": "53", - "name": "云南省", - "children": [ - { - "code": "5301", - "name": "昆明市", - "children": [ - { "code": "530102", "name": "五华区" }, - { "code": "530103", "name": "盘龙区" }, - { "code": "530111", "name": "官渡区" }, - { "code": "530112", "name": "西山区" }, - { "code": "530113", "name": "东川区" }, - { "code": "530114", "name": "呈贡区" }, - { "code": "530115", "name": "晋宁区" }, - { "code": "530124", "name": "富民县" }, - { "code": "530125", "name": "宜良县" }, - { "code": "530126", "name": "石林彝族自治县" }, - { "code": "530127", "name": "嵩明县" }, - { "code": "530128", "name": "禄劝彝族苗族自治县" }, - { "code": "530129", "name": "寻甸回族彝族自治县" }, - { "code": "530181", "name": "安宁市" } - ] - }, - { - "code": "5303", - "name": "曲靖市", - "children": [ - { "code": "530302", "name": "麒麟区" }, - { "code": "530303", "name": "沾益区" }, - { "code": "530304", "name": "马龙区" }, - { "code": "530322", "name": "陆良县" }, - { "code": "530323", "name": "师宗县" }, - { "code": "530324", "name": "罗平县" }, - { "code": "530325", "name": "富源县" }, - { "code": "530326", "name": "会泽县" }, - { "code": "530381", "name": "宣威市" } - ] - }, - { - "code": "5304", - "name": "玉溪市", - "children": [ - { "code": "530402", "name": "红塔区" }, - { "code": "530403", "name": "江川区" }, - { "code": "530422", "name": "澄江县" }, - { "code": "530423", "name": "通海县" }, - { "code": "530424", "name": "华宁县" }, - { "code": "530425", "name": "易门县" }, - { "code": "530426", "name": "峨山彝族自治县" }, - { "code": "530427", "name": "新平彝族傣族自治县" }, - { "code": "530428", "name": "元江哈尼族彝族傣族自治县" } - ] - }, - { - "code": "5305", - "name": "保山市", - "children": [ - { "code": "530502", "name": "隆阳区" }, - { "code": "530521", "name": "施甸县" }, - { "code": "530523", "name": "龙陵县" }, - { "code": "530524", "name": "昌宁县" }, - { "code": "530581", "name": "腾冲市" } - ] - }, - { - "code": "5306", - "name": "昭通市", - "children": [ - { "code": "530602", "name": "昭阳区" }, - { "code": "530621", "name": "鲁甸县" }, - { "code": "530622", "name": "巧家县" }, - { "code": "530623", "name": "盐津县" }, - { "code": "530624", "name": "大关县" }, - { "code": "530625", "name": "永善县" }, - { "code": "530626", "name": "绥江县" }, - { "code": "530627", "name": "镇雄县" }, - { "code": "530628", "name": "彝良县" }, - { "code": "530629", "name": "威信县" }, - { "code": "530681", "name": "水富市" } - ] - }, - { - "code": "5307", - "name": "丽江市", - "children": [ - { "code": "530702", "name": "古城区" }, - { "code": "530721", "name": "玉龙纳西族自治县" }, - { "code": "530722", "name": "永胜县" }, - { "code": "530723", "name": "华坪县" }, - { "code": "530724", "name": "宁蒗彝族自治县" } - ] - }, - { - "code": "5308", - "name": "普洱市", - "children": [ - { "code": "530802", "name": "思茅区" }, - { "code": "530821", "name": "宁洱哈尼族彝族自治县" }, - { "code": "530822", "name": "墨江哈尼族自治县" }, - { "code": "530823", "name": "景东彝族自治县" }, - { "code": "530824", "name": "景谷傣族彝族自治县" }, - { "code": "530825", "name": "镇沅彝族哈尼族拉祜族自治县" }, - { "code": "530826", "name": "江城哈尼族彝族自治县" }, - { "code": "530827", "name": "孟连傣族拉祜族佤族自治县" }, - { "code": "530828", "name": "澜沧拉祜族自治县" }, - { "code": "530829", "name": "西盟佤族自治县" } - ] - }, - { - "code": "5309", - "name": "临沧市", - "children": [ - { "code": "530902", "name": "临翔区" }, - { "code": "530921", "name": "凤庆县" }, - { "code": "530922", "name": "云县" }, - { "code": "530923", "name": "永德县" }, - { "code": "530924", "name": "镇康县" }, - { "code": "530925", "name": "双江拉祜族佤族布朗族傣族自治县" }, - { "code": "530926", "name": "耿马傣族佤族自治县" }, - { "code": "530927", "name": "沧源佤族自治县" } - ] - }, - { - "code": "5323", - "name": "楚雄彝族自治州", - "children": [ - { "code": "532301", "name": "楚雄市" }, - { "code": "532322", "name": "双柏县" }, - { "code": "532323", "name": "牟定县" }, - { "code": "532324", "name": "南华县" }, - { "code": "532325", "name": "姚安县" }, - { "code": "532326", "name": "大姚县" }, - { "code": "532327", "name": "永仁县" }, - { "code": "532328", "name": "元谋县" }, - { "code": "532329", "name": "武定县" }, - { "code": "532331", "name": "禄丰县" } - ] - }, - { - "code": "5325", - "name": "红河哈尼族彝族自治州", - "children": [ - { "code": "532501", "name": "个旧市" }, - { "code": "532502", "name": "开远市" }, - { "code": "532503", "name": "蒙自市" }, - { "code": "532504", "name": "弥勒市" }, - { "code": "532523", "name": "屏边苗族自治县" }, - { "code": "532524", "name": "建水县" }, - { "code": "532525", "name": "石屏县" }, - { "code": "532527", "name": "泸西县" }, - { "code": "532528", "name": "元阳县" }, - { "code": "532529", "name": "红河县" }, - { "code": "532530", "name": "金平苗族瑶族傣族自治县" }, - { "code": "532531", "name": "绿春县" }, - { "code": "532532", "name": "河口瑶族自治县" } - ] - }, - { - "code": "5326", - "name": "文山壮族苗族自治州", - "children": [ - { "code": "532601", "name": "文山市" }, - { "code": "532622", "name": "砚山县" }, - { "code": "532623", "name": "西畴县" }, - { "code": "532624", "name": "麻栗坡县" }, - { "code": "532625", "name": "马关县" }, - { "code": "532626", "name": "丘北县" }, - { "code": "532627", "name": "广南县" }, - { "code": "532628", "name": "富宁县" } - ] - }, - { - "code": "5328", - "name": "西双版纳傣族自治州", - "children": [ - { "code": "532801", "name": "景洪市" }, - { "code": "532822", "name": "勐海县" }, - { "code": "532823", "name": "勐腊县" } - ] - }, - { - "code": "5329", - "name": "大理白族自治州", - "children": [ - { "code": "532901", "name": "大理市" }, - { "code": "532922", "name": "漾濞彝族自治县" }, - { "code": "532923", "name": "祥云县" }, - { "code": "532924", "name": "宾川县" }, - { "code": "532925", "name": "弥渡县" }, - { "code": "532926", "name": "南涧彝族自治县" }, - { "code": "532927", "name": "巍山彝族回族自治县" }, - { "code": "532928", "name": "永平县" }, - { "code": "532929", "name": "云龙县" }, - { "code": "532930", "name": "洱源县" }, - { "code": "532931", "name": "剑川县" }, - { "code": "532932", "name": "鹤庆县" } - ] - }, - { - "code": "5331", - "name": "德宏傣族景颇族自治州", - "children": [ - { "code": "533102", "name": "瑞丽市" }, - { "code": "533103", "name": "芒市" }, - { "code": "533122", "name": "梁河县" }, - { "code": "533123", "name": "盈江县" }, - { "code": "533124", "name": "陇川县" } - ] - }, - { - "code": "5333", - "name": "怒江傈僳族自治州", - "children": [ - { "code": "533301", "name": "泸水市" }, - { "code": "533323", "name": "福贡县" }, - { "code": "533324", "name": "贡山独龙族怒族自治县" }, - { "code": "533325", "name": "兰坪白族普米族自治县" } - ] - }, - { - "code": "5334", - "name": "迪庆藏族自治州", - "children": [ - { "code": "533401", "name": "香格里拉市" }, - { "code": "533422", "name": "德钦县" }, - { "code": "533423", "name": "维西傈僳族自治县" } - ] - } - ] - }, - { - "code": "54", - "name": "西藏自治区", - "children": [ - { - "code": "5401", - "name": "拉萨市", - "children": [ - { "code": "540102", "name": "城关区" }, - { "code": "540103", "name": "堆龙德庆区" }, - { "code": "540104", "name": "达孜区" }, - { "code": "540121", "name": "林周县" }, - { "code": "540122", "name": "当雄县" }, - { "code": "540123", "name": "尼木县" }, - { "code": "540124", "name": "曲水县" }, - { "code": "540127", "name": "墨竹工卡县" }, - { "code": "540171", "name": "格尔木藏青工业园区" }, - { "code": "540172", "name": "拉萨经济技术开发区" }, - { "code": "540173", "name": "西藏文化旅游创意园区" }, - { "code": "540174", "name": "达孜工业园区" } - ] - }, - { - "code": "5402", - "name": "日喀则市", - "children": [ - { "code": "540202", "name": "桑珠孜区" }, - { "code": "540221", "name": "南木林县" }, - { "code": "540222", "name": "江孜县" }, - { "code": "540223", "name": "定日县" }, - { "code": "540224", "name": "萨迦县" }, - { "code": "540225", "name": "拉孜县" }, - { "code": "540226", "name": "昂仁县" }, - { "code": "540227", "name": "谢通门县" }, - { "code": "540228", "name": "白朗县" }, - { "code": "540229", "name": "仁布县" }, - { "code": "540230", "name": "康马县" }, - { "code": "540231", "name": "定结县" }, - { "code": "540232", "name": "仲巴县" }, - { "code": "540233", "name": "亚东县" }, - { "code": "540234", "name": "吉隆县" }, - { "code": "540235", "name": "聂拉木县" }, - { "code": "540236", "name": "萨嘎县" }, - { "code": "540237", "name": "岗巴县" } - ] - }, - { - "code": "5403", - "name": "昌都市", - "children": [ - { "code": "540302", "name": "卡若区" }, - { "code": "540321", "name": "江达县" }, - { "code": "540322", "name": "贡觉县" }, - { "code": "540323", "name": "类乌齐县" }, - { "code": "540324", "name": "丁青县" }, - { "code": "540325", "name": "察雅县" }, - { "code": "540326", "name": "八宿县" }, - { "code": "540327", "name": "左贡县" }, - { "code": "540328", "name": "芒康县" }, - { "code": "540329", "name": "洛隆县" }, - { "code": "540330", "name": "边坝县" } - ] - }, - { - "code": "5404", - "name": "林芝市", - "children": [ - { "code": "540402", "name": "巴宜区" }, - { "code": "540421", "name": "工布江达县" }, - { "code": "540422", "name": "米林县" }, - { "code": "540423", "name": "墨脱县" }, - { "code": "540424", "name": "波密县" }, - { "code": "540425", "name": "察隅县" }, - { "code": "540426", "name": "朗县" } - ] - }, - { - "code": "5405", - "name": "山南市", - "children": [ - { "code": "540502", "name": "乃东区" }, - { "code": "540521", "name": "扎囊县" }, - { "code": "540522", "name": "贡嘎县" }, - { "code": "540523", "name": "桑日县" }, - { "code": "540524", "name": "琼结县" }, - { "code": "540525", "name": "曲松县" }, - { "code": "540526", "name": "措美县" }, - { "code": "540527", "name": "洛扎县" }, - { "code": "540528", "name": "加查县" }, - { "code": "540529", "name": "隆子县" }, - { "code": "540530", "name": "错那县" }, - { "code": "540531", "name": "浪卡子县" } - ] - }, - { - "code": "5406", - "name": "那曲市", - "children": [ - { "code": "540602", "name": "色尼区" }, - { "code": "540621", "name": "嘉黎县" }, - { "code": "540622", "name": "比如县" }, - { "code": "540623", "name": "聂荣县" }, - { "code": "540624", "name": "安多县" }, - { "code": "540625", "name": "申扎县" }, - { "code": "540626", "name": "索县" }, - { "code": "540627", "name": "班戈县" }, - { "code": "540628", "name": "巴青县" }, - { "code": "540629", "name": "尼玛县" }, - { "code": "540630", "name": "双湖县" } - ] - }, - { - "code": "5425", - "name": "阿里地区", - "children": [ - { "code": "542521", "name": "普兰县" }, - { "code": "542522", "name": "札达县" }, - { "code": "542523", "name": "噶尔县" }, - { "code": "542524", "name": "日土县" }, - { "code": "542525", "name": "革吉县" }, - { "code": "542526", "name": "改则县" }, - { "code": "542527", "name": "措勤县" } - ] - } - ] - }, - { - "code": "61", - "name": "陕西省", - "children": [ - { - "code": "6101", - "name": "西安市", - "children": [ - { "code": "610102", "name": "新城区" }, - { "code": "610103", "name": "碑林区" }, - { "code": "610104", "name": "莲湖区" }, - { "code": "610111", "name": "灞桥区" }, - { "code": "610112", "name": "未央区" }, - { "code": "610113", "name": "雁塔区" }, - { "code": "610114", "name": "阎良区" }, - { "code": "610115", "name": "临潼区" }, - { "code": "610116", "name": "长安区" }, - { "code": "610117", "name": "高陵区" }, - { "code": "610118", "name": "鄠邑区" }, - { "code": "610122", "name": "蓝田县" }, - { "code": "610124", "name": "周至县" } - ] - }, - { - "code": "6102", - "name": "铜川市", - "children": [ - { "code": "610202", "name": "王益区" }, - { "code": "610203", "name": "印台区" }, - { "code": "610204", "name": "耀州区" }, - { "code": "610222", "name": "宜君县" } - ] - }, - { - "code": "6103", - "name": "宝鸡市", - "children": [ - { "code": "610302", "name": "渭滨区" }, - { "code": "610303", "name": "金台区" }, - { "code": "610304", "name": "陈仓区" }, - { "code": "610322", "name": "凤翔县" }, - { "code": "610323", "name": "岐山县" }, - { "code": "610324", "name": "扶风县" }, - { "code": "610326", "name": "眉县" }, - { "code": "610327", "name": "陇县" }, - { "code": "610328", "name": "千阳县" }, - { "code": "610329", "name": "麟游县" }, - { "code": "610330", "name": "凤县" }, - { "code": "610331", "name": "太白县" } - ] - }, - { - "code": "6104", - "name": "咸阳市", - "children": [ - { "code": "610402", "name": "秦都区" }, - { "code": "610403", "name": "杨陵区" }, - { "code": "610404", "name": "渭城区" }, - { "code": "610422", "name": "三原县" }, - { "code": "610423", "name": "泾阳县" }, - { "code": "610424", "name": "乾县" }, - { "code": "610425", "name": "礼泉县" }, - { "code": "610426", "name": "永寿县" }, - { "code": "610428", "name": "长武县" }, - { "code": "610429", "name": "旬邑县" }, - { "code": "610430", "name": "淳化县" }, - { "code": "610431", "name": "武功县" }, - { "code": "610481", "name": "兴平市" }, - { "code": "610482", "name": "彬州市" } - ] - }, - { - "code": "6105", - "name": "渭南市", - "children": [ - { "code": "610502", "name": "临渭区" }, - { "code": "610503", "name": "华州区" }, - { "code": "610522", "name": "潼关县" }, - { "code": "610523", "name": "大荔县" }, - { "code": "610524", "name": "合阳县" }, - { "code": "610525", "name": "澄城县" }, - { "code": "610526", "name": "蒲城县" }, - { "code": "610527", "name": "白水县" }, - { "code": "610528", "name": "富平县" }, - { "code": "610581", "name": "韩城市" }, - { "code": "610582", "name": "华阴市" } - ] - }, - { - "code": "6106", - "name": "延安市", - "children": [ - { "code": "610602", "name": "宝塔区" }, - { "code": "610603", "name": "安塞区" }, - { "code": "610621", "name": "延长县" }, - { "code": "610622", "name": "延川县" }, - { "code": "610625", "name": "志丹县" }, - { "code": "610626", "name": "吴起县" }, - { "code": "610627", "name": "甘泉县" }, - { "code": "610628", "name": "富县" }, - { "code": "610629", "name": "洛川县" }, - { "code": "610630", "name": "宜川县" }, - { "code": "610631", "name": "黄龙县" }, - { "code": "610632", "name": "黄陵县" }, - { "code": "610681", "name": "子长市" } - ] - }, - { - "code": "6107", - "name": "汉中市", - "children": [ - { "code": "610702", "name": "汉台区" }, - { "code": "610703", "name": "南郑区" }, - { "code": "610722", "name": "城固县" }, - { "code": "610723", "name": "洋县" }, - { "code": "610724", "name": "西乡县" }, - { "code": "610725", "name": "勉县" }, - { "code": "610726", "name": "宁强县" }, - { "code": "610727", "name": "略阳县" }, - { "code": "610728", "name": "镇巴县" }, - { "code": "610729", "name": "留坝县" }, - { "code": "610730", "name": "佛坪县" } - ] - }, - { - "code": "6108", - "name": "榆林市", - "children": [ - { "code": "610802", "name": "榆阳区" }, - { "code": "610803", "name": "横山区" }, - { "code": "610822", "name": "府谷县" }, - { "code": "610824", "name": "靖边县" }, - { "code": "610825", "name": "定边县" }, - { "code": "610826", "name": "绥德县" }, - { "code": "610827", "name": "米脂县" }, - { "code": "610828", "name": "佳县" }, - { "code": "610829", "name": "吴堡县" }, - { "code": "610830", "name": "清涧县" }, - { "code": "610831", "name": "子洲县" }, - { "code": "610881", "name": "神木市" } - ] - }, - { - "code": "6109", - "name": "安康市", - "children": [ - { "code": "610902", "name": "汉滨区" }, - { "code": "610921", "name": "汉阴县" }, - { "code": "610922", "name": "石泉县" }, - { "code": "610923", "name": "宁陕县" }, - { "code": "610924", "name": "紫阳县" }, - { "code": "610925", "name": "岚皋县" }, - { "code": "610926", "name": "平利县" }, - { "code": "610927", "name": "镇坪县" }, - { "code": "610928", "name": "旬阳县" }, - { "code": "610929", "name": "白河县" } - ] - }, - { - "code": "6110", - "name": "商洛市", - "children": [ - { "code": "611002", "name": "商州区" }, - { "code": "611021", "name": "洛南县" }, - { "code": "611022", "name": "丹凤县" }, - { "code": "611023", "name": "商南县" }, - { "code": "611024", "name": "山阳县" }, - { "code": "611025", "name": "镇安县" }, - { "code": "611026", "name": "柞水县" } - ] - } - ] - }, - { - "code": "62", - "name": "甘肃省", - "children": [ - { - "code": "6201", - "name": "兰州市", - "children": [ - { "code": "620102", "name": "城关区" }, - { "code": "620103", "name": "七里河区" }, - { "code": "620104", "name": "西固区" }, - { "code": "620105", "name": "安宁区" }, - { "code": "620111", "name": "红古区" }, - { "code": "620121", "name": "永登县" }, - { "code": "620122", "name": "皋兰县" }, - { "code": "620123", "name": "榆中县" }, - { "code": "620171", "name": "兰州新区" } - ] - }, - { - "code": "6202", - "name": "嘉峪关市", - "children": [ - { "code": "620201100", "name": "新城镇" }, - { "code": "620201101", "name": "峪泉镇" }, - { "code": "620201102", "name": "文殊镇" }, - { "code": "620201401", "name": "雄关区" }, - { "code": "620201402", "name": "镜铁区" }, - { "code": "620201403", "name": "长城区" } - ] - }, - { - "code": "6203", - "name": "金昌市", - "children": [ - { "code": "620302", "name": "金川区" }, - { "code": "620321", "name": "永昌县" } - ] - }, - { - "code": "6204", - "name": "白银市", - "children": [ - { "code": "620402", "name": "白银区" }, - { "code": "620403", "name": "平川区" }, - { "code": "620421", "name": "靖远县" }, - { "code": "620422", "name": "会宁县" }, - { "code": "620423", "name": "景泰县" } - ] - }, - { - "code": "6205", - "name": "天水市", - "children": [ - { "code": "620502", "name": "秦州区" }, - { "code": "620503", "name": "麦积区" }, - { "code": "620521", "name": "清水县" }, - { "code": "620522", "name": "秦安县" }, - { "code": "620523", "name": "甘谷县" }, - { "code": "620524", "name": "武山县" }, - { "code": "620525", "name": "张家川回族自治县" } - ] - }, - { - "code": "6206", - "name": "武威市", - "children": [ - { "code": "620602", "name": "凉州区" }, - { "code": "620621", "name": "民勤县" }, - { "code": "620622", "name": "古浪县" }, - { "code": "620623", "name": "天祝藏族自治县" } - ] - }, - { - "code": "6207", - "name": "张掖市", - "children": [ - { "code": "620702", "name": "甘州区" }, - { "code": "620721", "name": "肃南裕固族自治县" }, - { "code": "620722", "name": "民乐县" }, - { "code": "620723", "name": "临泽县" }, - { "code": "620724", "name": "高台县" }, - { "code": "620725", "name": "山丹县" } - ] - }, - { - "code": "6208", - "name": "平凉市", - "children": [ - { "code": "620802", "name": "崆峒区" }, - { "code": "620821", "name": "泾川县" }, - { "code": "620822", "name": "灵台县" }, - { "code": "620823", "name": "崇信县" }, - { "code": "620825", "name": "庄浪县" }, - { "code": "620826", "name": "静宁县" }, - { "code": "620881", "name": "华亭市" } - ] - }, - { - "code": "6209", - "name": "酒泉市", - "children": [ - { "code": "620902", "name": "肃州区" }, - { "code": "620921", "name": "金塔县" }, - { "code": "620922", "name": "瓜州县" }, - { "code": "620923", "name": "肃北蒙古族自治县" }, - { "code": "620924", "name": "阿克塞哈萨克族自治县" }, - { "code": "620981", "name": "玉门市" }, - { "code": "620982", "name": "敦煌市" } - ] - }, - { - "code": "6210", - "name": "庆阳市", - "children": [ - { "code": "621002", "name": "西峰区" }, - { "code": "621021", "name": "庆城县" }, - { "code": "621022", "name": "环县" }, - { "code": "621023", "name": "华池县" }, - { "code": "621024", "name": "合水县" }, - { "code": "621025", "name": "正宁县" }, - { "code": "621026", "name": "宁县" }, - { "code": "621027", "name": "镇原县" } - ] - }, - { - "code": "6211", - "name": "定西市", - "children": [ - { "code": "621102", "name": "安定区" }, - { "code": "621121", "name": "通渭县" }, - { "code": "621122", "name": "陇西县" }, - { "code": "621123", "name": "渭源县" }, - { "code": "621124", "name": "临洮县" }, - { "code": "621125", "name": "漳县" }, - { "code": "621126", "name": "岷县" } - ] - }, - { - "code": "6212", - "name": "陇南市", - "children": [ - { "code": "621202", "name": "武都区" }, - { "code": "621221", "name": "成县" }, - { "code": "621222", "name": "文县" }, - { "code": "621223", "name": "宕昌县" }, - { "code": "621224", "name": "康县" }, - { "code": "621225", "name": "西和县" }, - { "code": "621226", "name": "礼县" }, - { "code": "621227", "name": "徽县" }, - { "code": "621228", "name": "两当县" } - ] - }, - { - "code": "6229", - "name": "临夏回族自治州", - "children": [ - { "code": "622901", "name": "临夏市" }, - { "code": "622921", "name": "临夏县" }, - { "code": "622922", "name": "康乐县" }, - { "code": "622923", "name": "永靖县" }, - { "code": "622924", "name": "广河县" }, - { "code": "622925", "name": "和政县" }, - { "code": "622926", "name": "东乡族自治县" }, - { "code": "622927", "name": "积石山保安族东乡族撒拉族自治县" } - ] - }, - { - "code": "6230", - "name": "甘南藏族自治州", - "children": [ - { "code": "623001", "name": "合作市" }, - { "code": "623021", "name": "临潭县" }, - { "code": "623022", "name": "卓尼县" }, - { "code": "623023", "name": "舟曲县" }, - { "code": "623024", "name": "迭部县" }, - { "code": "623025", "name": "玛曲县" }, - { "code": "623026", "name": "碌曲县" }, - { "code": "623027", "name": "夏河县" } - ] - } - ] - }, - { - "code": "63", - "name": "青海省", - "children": [ - { - "code": "6301", - "name": "西宁市", - "children": [ - { "code": "630102", "name": "城东区" }, - { "code": "630103", "name": "城中区" }, - { "code": "630104", "name": "城西区" }, - { "code": "630105", "name": "城北区" }, - { "code": "630121", "name": "大通回族土族自治县" }, - { "code": "630122", "name": "湟中县" }, - { "code": "630123", "name": "湟源县" } - ] - }, - { - "code": "6302", - "name": "海东市", - "children": [ - { "code": "630202", "name": "乐都区" }, - { "code": "630203", "name": "平安区" }, - { "code": "630222", "name": "民和回族土族自治县" }, - { "code": "630223", "name": "互助土族自治县" }, - { "code": "630224", "name": "化隆回族自治县" }, - { "code": "630225", "name": "循化撒拉族自治县" } - ] - }, - { - "code": "6322", - "name": "海北藏族自治州", - "children": [ - { "code": "632221", "name": "门源回族自治县" }, - { "code": "632222", "name": "祁连县" }, - { "code": "632223", "name": "海晏县" }, - { "code": "632224", "name": "刚察县" } - ] - }, - { - "code": "6323", - "name": "黄南藏族自治州", - "children": [ - { "code": "632321", "name": "同仁县" }, - { "code": "632322", "name": "尖扎县" }, - { "code": "632323", "name": "泽库县" }, - { "code": "632324", "name": "河南蒙古族自治县" } - ] - }, - { - "code": "6325", - "name": "海南藏族自治州", - "children": [ - { "code": "632521", "name": "共和县" }, - { "code": "632522", "name": "同德县" }, - { "code": "632523", "name": "贵德县" }, - { "code": "632524", "name": "兴海县" }, - { "code": "632525", "name": "贵南县" } - ] - }, - { - "code": "6326", - "name": "果洛藏族自治州", - "children": [ - { "code": "632621", "name": "玛沁县" }, - { "code": "632622", "name": "班玛县" }, - { "code": "632623", "name": "甘德县" }, - { "code": "632624", "name": "达日县" }, - { "code": "632625", "name": "久治县" }, - { "code": "632626", "name": "玛多县" } - ] - }, - { - "code": "6327", - "name": "玉树藏族自治州", - "children": [ - { "code": "632701", "name": "玉树市" }, - { "code": "632722", "name": "杂多县" }, - { "code": "632723", "name": "称多县" }, - { "code": "632724", "name": "治多县" }, - { "code": "632725", "name": "囊谦县" }, - { "code": "632726", "name": "曲麻莱县" } - ] - }, - { - "code": "6328", - "name": "海西蒙古族藏族自治州", - "children": [ - { "code": "632801", "name": "格尔木市" }, - { "code": "632802", "name": "德令哈市" }, - { "code": "632803", "name": "茫崖市" }, - { "code": "632821", "name": "乌兰县" }, - { "code": "632822", "name": "都兰县" }, - { "code": "632823", "name": "天峻县" }, - { "code": "632857", "name": "大柴旦行政委员会" } - ] - } - ] - }, - { - "code": "64", - "name": "宁夏回族自治区", - "children": [ - { - "code": "6401", - "name": "银川市", - "children": [ - { "code": "640104", "name": "兴庆区" }, - { "code": "640105", "name": "西夏区" }, - { "code": "640106", "name": "金凤区" }, - { "code": "640121", "name": "永宁县" }, - { "code": "640122", "name": "贺兰县" }, - { "code": "640181", "name": "灵武市" } - ] - }, - { - "code": "6402", - "name": "石嘴山市", - "children": [ - { "code": "640202", "name": "大武口区" }, - { "code": "640205", "name": "惠农区" }, - { "code": "640221", "name": "平罗县" } - ] - }, - { - "code": "6403", - "name": "吴忠市", - "children": [ - { "code": "640302", "name": "利通区" }, - { "code": "640303", "name": "红寺堡区" }, - { "code": "640323", "name": "盐池县" }, - { "code": "640324", "name": "同心县" }, - { "code": "640381", "name": "青铜峡市" } - ] - }, - { - "code": "6404", - "name": "固原市", - "children": [ - { "code": "640402", "name": "原州区" }, - { "code": "640422", "name": "西吉县" }, - { "code": "640423", "name": "隆德县" }, - { "code": "640424", "name": "泾源县" }, - { "code": "640425", "name": "彭阳县" } - ] - }, - { - "code": "6405", - "name": "中卫市", - "children": [ - { "code": "640502", "name": "沙坡头区" }, - { "code": "640521", "name": "中宁县" }, - { "code": "640522", "name": "海原县" } - ] - } - ] - }, - { - "code": "65", - "name": "新疆维吾尔自治区", - "children": [ - { - "code": "6501", - "name": "乌鲁木齐市", - "children": [ - { "code": "650102", "name": "天山区" }, - { "code": "650103", "name": "沙依巴克区" }, - { "code": "650104", "name": "新市区" }, - { "code": "650105", "name": "水磨沟区" }, - { "code": "650106", "name": "头屯河区" }, - { "code": "650107", "name": "达坂城区" }, - { "code": "650109", "name": "米东区" }, - { "code": "650121", "name": "乌鲁木齐县" } - ] - }, - { - "code": "6502", - "name": "克拉玛依市", - "children": [ - { "code": "650202", "name": "独山子区" }, - { "code": "650203", "name": "克拉玛依区" }, - { "code": "650204", "name": "白碱滩区" }, - { "code": "650205", "name": "乌尔禾区" } - ] - }, - { - "code": "6504", - "name": "吐鲁番市", - "children": [ - { "code": "650402", "name": "高昌区" }, - { "code": "650421", "name": "鄯善县" }, - { "code": "650422", "name": "托克逊县" } - ] - }, - { - "code": "6505", - "name": "哈密市", - "children": [ - { "code": "650502", "name": "伊州区" }, - { "code": "650521", "name": "巴里坤哈萨克自治县" }, - { "code": "650522", "name": "伊吾县" } - ] - }, - { - "code": "6523", - "name": "昌吉回族自治州", - "children": [ - { "code": "652301", "name": "昌吉市" }, - { "code": "652302", "name": "阜康市" }, - { "code": "652323", "name": "呼图壁县" }, - { "code": "652324", "name": "玛纳斯县" }, - { "code": "652325", "name": "奇台县" }, - { "code": "652327", "name": "吉木萨尔县" }, - { "code": "652328", "name": "木垒哈萨克自治县" } - ] - }, - { - "code": "6527", - "name": "博尔塔拉蒙古自治州", - "children": [ - { "code": "652701", "name": "博乐市" }, - { "code": "652702", "name": "阿拉山口市" }, - { "code": "652722", "name": "精河县" }, - { "code": "652723", "name": "温泉县" } - ] - }, - { - "code": "6528", - "name": "巴音郭楞蒙古自治州", - "children": [ - { "code": "652801", "name": "库尔勒市" }, - { "code": "652822", "name": "轮台县" }, - { "code": "652823", "name": "尉犁县" }, - { "code": "652824", "name": "若羌县" }, - { "code": "652825", "name": "且末县" }, - { "code": "652826", "name": "焉耆回族自治县" }, - { "code": "652827", "name": "和静县" }, - { "code": "652828", "name": "和硕县" }, - { "code": "652829", "name": "博湖县" }, - { "code": "652871", "name": "库尔勒经济技术开发区" } - ] - }, - { - "code": "6529", - "name": "阿克苏地区", - "children": [ - { "code": "652901", "name": "阿克苏市" }, - { "code": "652922", "name": "温宿县" }, - { "code": "652923", "name": "库车县" }, - { "code": "652924", "name": "沙雅县" }, - { "code": "652925", "name": "新和县" }, - { "code": "652926", "name": "拜城县" }, - { "code": "652927", "name": "乌什县" }, - { "code": "652928", "name": "阿瓦提县" }, - { "code": "652929", "name": "柯坪县" } - ] - }, - { - "code": "6530", - "name": "克孜勒苏柯尔克孜自治州", - "children": [ - { "code": "653001", "name": "阿图什市" }, - { "code": "653022", "name": "阿克陶县" }, - { "code": "653023", "name": "阿合奇县" }, - { "code": "653024", "name": "乌恰县" } - ] - }, - { - "code": "6531", - "name": "喀什地区", - "children": [ - { "code": "653101", "name": "喀什市" }, - { "code": "653121", "name": "疏附县" }, - { "code": "653122", "name": "疏勒县" }, - { "code": "653123", "name": "英吉沙县" }, - { "code": "653124", "name": "泽普县" }, - { "code": "653125", "name": "莎车县" }, - { "code": "653126", "name": "叶城县" }, - { "code": "653127", "name": "麦盖提县" }, - { "code": "653128", "name": "岳普湖县" }, - { "code": "653129", "name": "伽师县" }, - { "code": "653130", "name": "巴楚县" }, - { "code": "653131", "name": "塔什库尔干塔吉克自治县" } - ] - }, - { - "code": "6532", - "name": "和田地区", - "children": [ - { "code": "653201", "name": "和田市" }, - { "code": "653221", "name": "和田县" }, - { "code": "653222", "name": "墨玉县" }, - { "code": "653223", "name": "皮山县" }, - { "code": "653224", "name": "洛浦县" }, - { "code": "653225", "name": "策勒县" }, - { "code": "653226", "name": "于田县" }, - { "code": "653227", "name": "民丰县" } - ] - }, - { - "code": "6540", - "name": "伊犁哈萨克自治州", - "children": [ - { "code": "654002", "name": "伊宁市" }, - { "code": "654003", "name": "奎屯市" }, - { "code": "654004", "name": "霍尔果斯市" }, - { "code": "654021", "name": "伊宁县" }, - { "code": "654022", "name": "察布查尔锡伯自治县" }, - { "code": "654023", "name": "霍城县" }, - { "code": "654024", "name": "巩留县" }, - { "code": "654025", "name": "新源县" }, - { "code": "654026", "name": "昭苏县" }, - { "code": "654027", "name": "特克斯县" }, - { "code": "654028", "name": "尼勒克县" } - ] - }, - { - "code": "6542", - "name": "塔城地区", - "children": [ - { "code": "654201", "name": "塔城市" }, - { "code": "654202", "name": "乌苏市" }, - { "code": "654221", "name": "额敏县" }, - { "code": "654223", "name": "沙湾县" }, - { "code": "654224", "name": "托里县" }, - { "code": "654225", "name": "裕民县" }, - { "code": "654226", "name": "和布克赛尔蒙古自治县" } - ] - }, - { - "code": "6543", - "name": "阿勒泰地区", - "children": [ - { "code": "654301", "name": "阿勒泰市" }, - { "code": "654321", "name": "布尔津县" }, - { "code": "654322", "name": "富蕴县" }, - { "code": "654323", "name": "福海县" }, - { "code": "654324", "name": "哈巴河县" }, - { "code": "654325", "name": "青河县" }, - { "code": "654326", "name": "吉木乃县" } - ] - }, - { - "code": "6590", - "name": "自治区直辖县级行政区划", - "children": [ - { "code": "659001", "name": "石河子市" }, - { "code": "659002", "name": "阿拉尔市" }, - { "code": "659003", "name": "图木舒克市" }, - { "code": "659004", "name": "五家渠市" }, - { "code": "659006", "name": "铁门关市" } - ] - } - ] - } -] diff --git a/src/cool/modules/distpicker/components/index.vue b/src/cool/modules/distpicker/components/index.vue deleted file mode 100644 index 12ab7be76fdfbe879271d8e6d69aa8919f5a0898..0000000000000000000000000000000000000000 --- a/src/cool/modules/distpicker/components/index.vue +++ /dev/null @@ -1,66 +0,0 @@ - - - - - diff --git a/src/cool/modules/distpicker/index.js b/src/cool/modules/distpicker/index.js deleted file mode 100644 index 20b96b7e4ca813cd3679d22ba1ad8977957e9538..0000000000000000000000000000000000000000 --- a/src/cool/modules/distpicker/index.js +++ /dev/null @@ -1,7 +0,0 @@ -import Distpicker from "./components"; - -export default { - components: { - Distpicker - } -}; diff --git a/src/cool/modules/excel-export/components/export-btn.vue b/src/cool/modules/excel-export/components/export-btn.vue new file mode 100644 index 0000000000000000000000000000000000000000..b92680b2ff7422bf1d00d476f70c7111e1d68e8c --- /dev/null +++ b/src/cool/modules/excel-export/components/export-btn.vue @@ -0,0 +1,147 @@ + + + diff --git a/src/cool/modules/excel-export/utils/export2excel.ts b/src/cool/modules/excel-export/utils/export2excel.ts new file mode 100644 index 0000000000000000000000000000000000000000..7ed7039233f40a4a8f6df4b615312ac07559de53 --- /dev/null +++ b/src/cool/modules/excel-export/utils/export2excel.ts @@ -0,0 +1,232 @@ +/* eslint-disable */ +// @ts-nocheck +import { saveAs } from 'file-saver'; +import XLSX from 'xlsx'; + +function generateArray(table) { + var out = []; + var rows = table.querySelectorAll('tr'); + var ranges = []; + for (var R = 0; R < rows.length; ++R) { + var outRow = []; + var row = rows[R]; + var columns = row.querySelectorAll('td'); + for (var C = 0; C < columns.length; ++C) { + var cell = columns[C]; + var colspan = cell.getAttribute('colspan'); + var rowspan = cell.getAttribute('rowspan'); + var cellValue = cell.innerText; + if (cellValue !== '' && cellValue == +cellValue) cellValue = +cellValue; + + //Skip ranges + ranges.forEach(function(range) { + if ( + R >= range.s.r && + R <= range.e.r && + outRow.length >= range.s.c && + outRow.length <= range.e.c + ) { + for (var i = 0; i <= range.e.c - range.s.c; ++i) outRow.push(null); + } + }); + + //Handle Row Span + if (rowspan || colspan) { + rowspan = rowspan || 1; + colspan = colspan || 1; + ranges.push({ + s: { + r: R, + c: outRow.length + }, + e: { + r: R + rowspan - 1, + c: outRow.length + colspan - 1 + } + }); + } + + //Handle Value + outRow.push(cellValue !== '' ? cellValue : null); + + //Handle Colspan + if (colspan) for (var k = 0; k < colspan - 1; ++k) outRow.push(null); + } + out.push(outRow); + } + return [out, ranges]; +} + +function datenum(v, date1904) { + if (date1904) v += 1462; + var epoch = Date.parse(v); + return (epoch - new Date(Date.UTC(1899, 11, 30))) / (24 * 60 * 60 * 1000); +} + +function sheet_from_array_of_arrays(data, opts) { + var ws = {}; + var range = { + s: { + c: 10000000, + r: 10000000 + }, + e: { + c: 0, + r: 0 + } + }; + for (var R = 0; R != data.length; ++R) { + for (var C = 0; C != data[R].length; ++C) { + if (range.s.r > R) range.s.r = R; + if (range.s.c > C) range.s.c = C; + if (range.e.r < R) range.e.r = R; + if (range.e.c < C) range.e.c = C; + var cell = { + v: data[R][C] + }; + if (cell.v == null) continue; + var cell_ref = XLSX.utils.encode_cell({ + c: C, + r: R + }); + + if (typeof cell.v === 'number') cell.t = 'n'; + else if (typeof cell.v === 'boolean') cell.t = 'b'; + else if (cell.v instanceof Date) { + cell.t = 'n'; + cell.z = XLSX.SSF._table[14]; + cell.v = datenum(cell.v); + } else cell.t = 's'; + + ws[cell_ref] = cell; + } + } + if (range.s.c < 10000000) ws['!ref'] = XLSX.utils.encode_range(range); + return ws; +} + +function Workbook() { + if (!(this instanceof Workbook)) return new Workbook(); + this.SheetNames = []; + this.Sheets = {}; +} + +function s2ab(s) { + var buf = new ArrayBuffer(s.length); + var view = new Uint8Array(buf); + for (var i = 0; i != s.length; ++i) view[i] = s.charCodeAt(i) & 0xff; + return buf; +} + +export function export_table_to_excel(id) { + var theTable = document.getElementById(id); + var oo = generateArray(theTable); + var ranges = oo[1]; + + /* original data */ + var data = oo[0]; + var ws_name = 'SheetJS'; + + var wb = new Workbook(), + ws = sheet_from_array_of_arrays(data); + + /* add ranges to worksheet */ + // ws['!cols'] = ['apple', 'banan']; + ws['!merges'] = ranges; + + /* add worksheet to workbook */ + wb.SheetNames.push(ws_name); + wb.Sheets[ws_name] = ws; + + var wbout = XLSX.write(wb, { + bookType: 'xlsx', + bookSST: false, + type: 'binary' + }); + + saveAs( + new Blob([s2ab(wbout)], { + type: 'application/octet-stream' + }), + 'test.xlsx' + ); +} + +export function export_json_to_excel({ + multiHeader = [], + header, + data, + filename, + merges = [], + autoWidth = true, + bookType = 'xlsx' +} = {}) { + /* original data */ + filename = filename || 'excel-list'; + data = [...data]; + data.unshift(header); + + for (let i = multiHeader.length - 1; i > -1; i--) { + data.unshift(multiHeader[i]); + } + + var ws_name = 'SheetJS'; + var wb = new Workbook(), + ws = sheet_from_array_of_arrays(data); + + if (merges.length > 0) { + if (!ws['!merges']) ws['!merges'] = []; + merges.forEach(item => { + ws['!merges'].push(XLSX.utils.decode_range(item)); + }); + } + + if (autoWidth) { + /*设置worksheet每列的最大宽度*/ + const colWidth = data.map(row => + row.map(val => { + /*先判断是否为null/undefined*/ + if (val == null) { + return { + wch: 10 + }; + } else if (val.toString().charCodeAt(0) > 255) { + /*再判断是否为中文*/ + return { + wch: val.toString().length * 2 + }; + } else { + return { + wch: val.toString().length + }; + } + }) + ); + /*以第一行为初始值*/ + let result = colWidth[0]; + for (let i = 1; i < colWidth.length; i++) { + for (let j = 0; j < colWidth[i].length; j++) { + if (result[j]['wch'] < colWidth[i][j]['wch']) { + result[j]['wch'] = colWidth[i][j]['wch']; + } + } + } + ws['!cols'] = result; + } + + /* add worksheet to workbook */ + wb.SheetNames.push(ws_name); + wb.Sheets[ws_name] = ws; + + var wbout = XLSX.write(wb, { + bookType: bookType, + bookSST: false, + type: 'binary' + }); + saveAs( + new Blob([s2ab(wbout)], { + type: 'application/octet-stream' + }), + `${filename}.${bookType}` + ); +} diff --git a/src/cool/modules/excel-export/utils/index.ts b/src/cool/modules/excel-export/utils/index.ts new file mode 100644 index 0000000000000000000000000000000000000000..93f1d8c9f68c34bde676964095bcce67bb0aadc2 --- /dev/null +++ b/src/cool/modules/excel-export/utils/index.ts @@ -0,0 +1,16 @@ +import { export_json_to_excel } from "./export2excel"; + +function currentDate() { + const d: Date = new Date(); + + return { + year: d.getFullYear(), + month: d.getMonth() + 1, + day: d.getDate(), + hour: d.getHours(), + minu: d.getMinutes(), + sec: d.getSeconds() + }; +} + +export { export_json_to_excel, currentDate }; diff --git a/src/cool/modules/task/components/cron/cn.js b/src/cool/modules/task/components/cron/cn.ts similarity index 94% rename from src/cool/modules/task/components/cron/cn.js rename to src/cool/modules/task/components/cron/cn.ts index c03dc7f9d59ab92b2835c56e9879ca64e184ec93..76c5993a982510df2d950e948fdff951bd0f5e90 100644 --- a/src/cool/modules/task/components/cron/cn.js +++ b/src/cool/modules/task/components/cron/cn.ts @@ -34,7 +34,7 @@ export default { nearestWeekday: ["最近的工作日(周一至周五)至本月", "日"], someWeekday: ["在这个月的第", "个"] }, - Week: ["天", "一", "二", "三", "四", "五", "六"].map(val => "星期" + val), + Week: ["天", "一", "二", "三", "四", "五", "六"].map((val) => "星期" + val), Month: { name: "月", every: "每一月", diff --git a/src/cool/modules/task/components/cron/cron.vue b/src/cool/modules/task/components/cron/cron.vue index bcbc1702cca6e28286173ffd39c731b7a7ea5ea0..3a17ee7f951357377aaf3cc65ce03ba0543e4159 100644 --- a/src/cool/modules/task/components/cron/cron.vue +++ b/src/cool/modules/task/components/cron/cron.vue @@ -2,7 +2,7 @@
- {{ text.Seconds.name }} +
{{ @@ -13,25 +13,25 @@ {{ text.Seconds.interval[0] }} + /> {{ text.Seconds.interval[1] || "" }} + /> {{ text.Seconds.interval[2] || "" }} - {{ text.Seconds.specific }} - + {{ val - 1 }} @@ -42,26 +42,28 @@ {{ text.Seconds.cycle[0] }} + /> {{ text.Seconds.cycle[1] || "" }} + /> {{ text.Seconds.cycle[2] || "" }}
- - {{ text.Minutes.name }} +
{{ @@ -72,25 +74,25 @@ {{ text.Minutes.interval[0] }} + /> {{ text.Minutes.interval[1] }} + /> {{ text.Minutes.interval[2] || "" }} - {{ text.Minutes.specific }} - + {{ val - 1 }} @@ -101,26 +103,25 @@ {{ text.Minutes.cycle[0] }} + /> {{ text.Minutes.cycle[1] }} + /> {{ text.Minutes.cycle[2] }}
- - {{ text.Hours.name }} +
{{ @@ -131,25 +132,25 @@ {{ text.Hours.interval[0] }} + /> {{ text.Hours.interval[1] }} + /> {{ text.Hours.interval[2] }} - {{ text.Hours.specific }} - + {{ val - 1 }} @@ -160,26 +161,25 @@ {{ text.Hours.cycle[0] }} + /> {{ text.Hours.cycle[1] }} + /> {{ text.Hours.cycle[2] }}
- - {{ text.Day.name }} +
{{ text.Day.every }} @@ -188,19 +188,19 @@ {{ text.Day.intervalWeek[0] }} + /> {{ text.Day.intervalWeek[1] }} - + + /> {{ text.Day.intervalWeek[2] }} @@ -209,25 +209,25 @@ {{ text.Day.intervalDay[0] }} + /> {{ text.Day.intervalDay[1] }} + /> {{ text.Day.intervalDay[2] }} - {{ text.Day.specificWeek }} - + + /> - {{ text.Day.specificDay }} - + {{ val }} @@ -262,13 +262,13 @@ {{ text.Day.lastWeek[0] }} - + + /> {{ text.Day.lastWeek[1] || "" }} @@ -276,11 +276,11 @@ + /> {{ text.Day.beforeEndMonth[0] }} @@ -288,11 +288,11 @@ {{ text.Day.nearestWeekday[0] }} + /> {{ text.Day.nearestWeekday[1] }} @@ -300,14 +300,14 @@ {{ text.Day.someWeekday[0] }} + /> + /> {{ text.Day.someWeekday[1] }}
- - {{ text.Month.name }} +
{{ @@ -335,30 +337,25 @@ {{ text.Month.interval[0] }} + /> {{ text.Month.interval[1] }} + /> - {{ text.Month.specific }} - - + + @@ -366,25 +363,24 @@ {{ text.Month.cycle[0] }} + /> {{ text.Month.cycle[1] }} + />
- - {{ text.Year.name }} +
{{ @@ -395,35 +391,35 @@ {{ text.Year.interval[0] }} + /> {{ text.Year.interval[1] }} + /> - {{ text.Year.specific }} + /> @@ -431,18 +427,18 @@ {{ text.Year.cycle[0] }} + /> {{ text.Year.cycle[1] }} + />
@@ -451,7 +447,7 @@
@@ -462,38 +458,46 @@ import Language from "./cn"; export default { name: "vue-cron", - props: ["value", "data", "showYear"], + props: { + modelValue: { + type: String, + default: "" + }, + showYear: Boolean + }, + + emits: ["update:modelValue", "change", "close"], data() { return { second: { cronEvery: "", - incrementStart: "3", - incrementIncrement: "5", + incrementStart: 3, + incrementIncrement: 5, rangeStart: "", rangeEnd: "", specificSpecific: [] }, minute: { cronEvery: "", - incrementStart: "3", - incrementIncrement: "5", + incrementStart: 3, + incrementIncrement: 5, rangeStart: "", rangeEnd: "", specificSpecific: [] }, hour: { cronEvery: "", - incrementStart: "3", - incrementIncrement: "5", + incrementStart: 3, + incrementIncrement: 5, rangeStart: "", rangeEnd: "", specificSpecific: [] }, day: { cronEvery: "", - incrementStart: "1", - incrementIncrement: "1", + incrementStart: 1, + incrementIncrement: 1, rangeStart: "", rangeEnd: "", specificSpecific: [], @@ -503,16 +507,16 @@ export default { }, week: { cronEvery: "", - incrementStart: "1", - incrementIncrement: "1", + incrementStart: 1, + incrementIncrement: 1, specificSpecific: [], cronNthDayDay: 1, - cronNthDayNth: "1" + cronNthDayNth: 1 }, month: { cronEvery: "", - incrementStart: "3", - incrementIncrement: "5", + incrementStart: 3, + incrementIncrement: 5, rangeStart: "", rangeEnd: "", specificSpecific: [] @@ -520,7 +524,7 @@ export default { year: { cronEvery: "", incrementStart: "2017", - incrementIncrement: "1", + incrementIncrement: 1, rangeStart: "", rangeEnd: "", specificSpecific: [] @@ -537,12 +541,6 @@ export default { }; }, - watch: { - data() { - this.rest(this.$data); - } - }, - computed: { text() { return Language; @@ -558,7 +556,7 @@ export default { seconds = this.second.incrementStart + "/" + this.second.incrementIncrement; break; case "3": - this.second.specificSpecific.forEach(val => { + this.second.specificSpecific.forEach((val) => { seconds += val + ","; }); seconds = seconds.slice(0, -1); @@ -580,7 +578,7 @@ export default { minutes = this.minute.incrementStart + "/" + this.minute.incrementIncrement; break; case "3": - this.minute.specificSpecific.forEach(val => { + this.minute.specificSpecific.forEach((val) => { minutes += val + ","; }); minutes = minutes.slice(0, -1); @@ -602,7 +600,7 @@ export default { hours = this.hour.incrementStart + "/" + this.hour.incrementIncrement; break; case "3": - this.hour.specificSpecific.forEach(val => { + this.hour.specificSpecific.forEach((val) => { hours += val + ","; }); hours = hours.slice(0, -1); @@ -628,7 +626,7 @@ export default { days = this.day.incrementStart + "/" + this.day.incrementIncrement; break; case "5": - this.day.specificSpecific.forEach(val => { + this.day.specificSpecific.forEach((val) => { days += val + ","; }); days = days.slice(0, -1); @@ -664,7 +662,7 @@ export default { weeks = this.week.incrementStart + "/" + this.week.incrementIncrement; break; case "4": - this.week.specificSpecific.forEach(val => { + this.week.specificSpecific.forEach((val) => { weeks += val + ","; }); weeks = weeks.slice(0, -1); @@ -693,7 +691,7 @@ export default { months = this.month.incrementStart + "/" + this.month.incrementIncrement; break; case "3": - this.month.specificSpecific.forEach(val => { + this.month.specificSpecific.forEach((val) => { months += val + ","; }); months = months.slice(0, -1); @@ -715,7 +713,7 @@ export default { years = this.year.incrementStart + "/" + this.year.incrementIncrement; break; case "3": - this.year.specificSpecific.forEach(val => { + this.year.specificSpecific.forEach((val) => { years += val + ","; }); years = years.slice(0, -1); @@ -727,25 +725,31 @@ export default { return years; }, cron() { - return `${this.secondsText || "*"} ${this.minutesText || "*"} ${this.hoursText || - "*"} ${this.daysText || "*"} ${this.monthsText || "*"} ${this.weeksText || "?"} ${ + return `${this.secondsText || "*"} ${this.minutesText || "*"} ${ + this.hoursText || "*" + } ${this.daysText || "*"} ${this.monthsText || "*"} ${this.weeksText || "?"} ${ this.showYear ? this.yearsText || "*" : "" }`; } }, + watch: { + data() { + this.rest(this.$data); + } + }, + methods: { - getValue() { - return this.cron; - }, save() { - this.$emit("input", this.cron); + this.$emit("update:modelValue", this.cron); this.$emit("change", this.cron); this.close(); }, + close() { this.$emit("close"); }, + rest(data) { for (const i in data) { if (data[i] instanceof Object) { @@ -768,15 +772,19 @@ export default { diff --git a/src/cool/modules/upload/components/index.js b/src/cool/modules/upload/components/index.js deleted file mode 100644 index c9fce4438d07b31bcd749665350c143fbf5ad7bb..0000000000000000000000000000000000000000 --- a/src/cool/modules/upload/components/index.js +++ /dev/null @@ -1,7 +0,0 @@ -import Upload from "./index.vue"; -import UploadSpace from "./space/index.vue"; - -export default { - Upload, - UploadSpace -}; diff --git a/src/cool/modules/upload/components/index.vue b/src/cool/modules/upload/components/index.vue index b8fa3b1f907e825f36bae8f78413efd641155315..01002564951042684960301b2dbacc8cb3d53917 100644 --- a/src/cool/modules/upload/components/index.vue +++ b/src/cool/modules/upload/components/index.vue @@ -10,7 +10,7 @@ } ]" > - + @@ -68,8 +68,8 @@
@@ -87,7 +87,7 @@ @@ -95,29 +95,27 @@
- + - -