diff --git a/.browserslistrc b/.browserslistrc new file mode 100644 index 0000000000..3a455dd9c4 --- /dev/null +++ b/.browserslistrc @@ -0,0 +1,2 @@ +> 1% +last 2 versions \ No newline at end of file diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..9b384636d5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,35 @@ +# http://editorconfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +# Indentation override for js(x), ts(x) and vue files +[*.{js,jsx,ts,tsx,vue}] +indent_size = 2 +indent_style = space + +# Indentation override for css related files +[*.{css,styl,scss,less,sass}] +indent_size = 2 +indent_style = space + +# Indentation override for html files +[*.html] +indent_size = 2 +indent_style = space + +# Trailing space override for markdown file +[*.md] +trim_trailing_whitespace = false + +# Indentation override for config files +[*.{json,yml}] +indent_size = 2 +indent_style = space \ No newline at end of file diff --git a/.env.development b/.env.development new file mode 100644 index 0000000000..1e3d95141f --- /dev/null +++ b/.env.development @@ -0,0 +1,11 @@ +# Base api +VUE_APP_BASE_API = '' + +# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable, +# to control whether the babel-plugin-dynamic-import-node plugin is enabled. +# It only does one thing by converting all import() to require(). +# This configuration can significantly increase the speed of hot updates, +# when you have a large number of pages. +# Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js + +VUE_CLI_BABEL_TRANSPILE_MODULES = true \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000000..e2eedca01c --- /dev/null +++ b/.env.production @@ -0,0 +1,5 @@ + +# Base api +# Remeber to change this to your production server address +# Here I used my mock server for this project +VUE_APP_BASE_API = 'http://39.97.63.215:9080/apisix/admin/' \ No newline at end of file diff --git a/.env.staging b/.env.staging new file mode 100644 index 0000000000..0633a84add --- /dev/null +++ b/.env.staging @@ -0,0 +1,5 @@ +# Set to production for building optimization +NODE_ENV = production + +# Base api +VUE_APP_BASE_API = '/stage-api' diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000000..11be133bc6 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ + +dist/*.js +src/assets +tests/unit/coverage \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000000..8cab6cbd1c --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,37 @@ +module.exports = { + root: true, + env: { + browser: true, + node: true, + es6: true + }, + parserOptions: { + parser: '@typescript-eslint/parser', + sourceType: 'module' + }, + plugins: [ + 'vue' + ], + rules: { + 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', + 'space-before-function-paren': [2, 'never'], + 'vue/array-bracket-spacing': 'error', + 'vue/arrow-spacing': 'error', + 'vue/block-spacing': 'error', + 'vue/brace-style': 'error', + 'vue/comma-dangle': 'error', + 'vue/component-name-in-template-casing': 'error', + 'vue/eqeqeq': 'error', + 'vue/key-spacing': 'error', + 'vue/match-component-file-name': 'error', + 'vue/object-curly-spacing': 'error', + "camelcase": ["error", {"properties": "never"}] + }, + 'extends': [ + 'eslint:recommended', + 'plugin:vue/recommended', + '@vue/standard', + '@vue/typescript' + ] + } \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..f05eec7705 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +.DS_Store +node_modules +/dist + +/tests/e2e/videos/ +/tests/e2e/screenshots/ +/tests/**/coverage/ + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw* \ No newline at end of file diff --git a/README.md b/README.md index b1dfccb37e..b265ba67c3 100644 --- a/README.md +++ b/README.md @@ -1 +1,112 @@ -# apisix_dashboard \ No newline at end of file +# apisix_dashboard + +## Overview + +Dashboard for apisix & based on ElementUI. + +## Documentation + +[Docs](https://armour.github.io/vue-typescript-admin-docs) + +## Project Structure + +```bash +├── mock/ # mock server & mock data +├── public # public static assets (directly copied) +│ │── favicon.ico # favicon +│ │── manifest.json # PWA config file +│ └── index.html # index.html template +├── src # main source code +│ ├── api # api service +│ ├── assets # module assets like fonts, images (processed by webpack) +│ ├── components # global components +│ ├── directives # global directives +│ ├── filters # global filter +│ ├── icons # svg icons +│ ├── lang # i18n language +│ ├── layout # global layout +│ ├── pwa # PWA service worker related files +│ ├── router # router +│ ├── store # store +│ ├── styles # global css +│ ├── utils # global utils +│ ├── views # views +│ ├── App.vue # main app component +│ ├── main.ts # app entry file +│ ├── permission.ts # permission authentication +│ ├── settings.ts # setting file +│ └── shims.d.ts # type definition shims +├── tests/ # tests +├── .circleci/ # automated CI configuration +├── .browserslistrc # browserslist config file (to support Autoprefixer) +├── .editorconfig # editor code format consistency config +├── .env.xxx # env variable configuration +├── .eslintrc.js # eslint config +├── babel.config.js # babel config +├── cypress.json # e2e test config +├── jest.config.js # jest unit test config +├── package.json # package.json +├── postcss.config.js # postcss config +├── tsconfig.json # typescript config +└── vue.config.js # vue-cli config +``` + +## Project setup + +### Install dependencies + +```bash +yarn install +``` + +### Compiles and hot-reloads for development + +```bash +yarn run serve +``` + +### Compiles and minifies for production + +```bash +yarn run build:prod +``` + +### Lints and fixes files + +```bash +yarn run lint +``` + +### Run your unit tests + +```bash +yarn run test:unit +``` + +### Run your end-to-end tests + +```bash +yarn run test:e2e +``` + +### Generate all svg components + +```bash +yarn run svg +``` + +### Customize Vue configuration + +See [Configuration Reference](https://cli.vuejs.org/config/). + +## Browsers support + +Modern browsers and Internet Explorer 10+. + +| [IE / Edge](http://godban.github.io/browsers-support-badges/)
IE / Edge | [Firefox](http://godban.github.io/browsers-support-badges/)
Firefox | [Chrome](http://godban.github.io/browsers-support-badges/)
Chrome | [Safari](http://godban.github.io/browsers-support-badges/)
Safari | +| --------- | --------- | --------- | --------- | +| IE10, IE11, Edge| last 2 versions| last 2 versions| last 2 versions + +## License + +[MIT License](https://github.com/Armour/vue-typescript-admin-template/blob/master/LICENSE) diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000000..ba179669a1 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/app' + ] +} diff --git a/cypress.json b/cypress.json new file mode 100644 index 0000000000..470c720199 --- /dev/null +++ b/cypress.json @@ -0,0 +1,3 @@ +{ + "pluginsFile": "tests/e2e/plugins/index.js" +} diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000000..06e2d9fed3 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,49 @@ +module.exports = { + moduleFileExtensions: [ + 'js', + 'jsx', + 'json', + 'vue', + 'ts', + 'tsx' + ], + transform: { + '^.+\\.vue$': 'vue-jest', + '.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub', + '^.+\\.tsx?$': 'ts-jest' + }, + transformIgnorePatterns: [ + '/node_modules/' + ], + moduleNameMapper: { + '^@/(.*)$': '/src/$1' + }, + snapshotSerializers: [ + 'jest-serializer-vue' + ], + testMatch: [ + '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' + ], + collectCoverage: true, + collectCoverageFrom: [ + 'src/utils/**/*.{ts,vue}', + '!src/utils/auth.ts', + '!src/utils/request.ts', + 'src/components/**/*.{ts,vue}' + ], + coverageDirectory: '/tests/unit/coverage', + coverageReporters: [ + 'lcov', + 'text-summary' + ], + testURL: 'http://localhost/', + watchPlugins: [ + 'jest-watch-typeahead/filename', + 'jest-watch-typeahead/testname' + ], + globals: { + 'ts-jest': { + babelConfig: true + } + } +} diff --git a/mock/mock-server.ts b/mock/mock-server.ts new file mode 100644 index 0000000000..5e2880703d --- /dev/null +++ b/mock/mock-server.ts @@ -0,0 +1,65 @@ +import express from 'express' +import bodyParser from 'body-parser' +import compression from 'compression' +import morgan from 'morgan' +import cors from 'cors' +import http from 'http' +import proxy from 'http-proxy-middleware' + +const app = express() +const port = 9528 + +// Compression +app.use(compression()) +// Logger +app.use(morgan('dev')) +// Enable CORS +app.use(cors()) +// POST, PUT, DELETE body parser +app.use(bodyParser.json({ limit: '20mb' })) +app.use(bodyParser.urlencoded({ + limit: '20mb', + extended: false +})) + +app.use('', proxy({ + // Proxy requests to API Server + target: 'http://39.97.63.215:9080/apisix/admin/', + changeOrigin: true +})) + +// Catch 404 error +app.use((req, res, next) => { + const err = new Error('Not Found') + res.status(404).json({ + message: err.message, + error: err + }) +}) + +// Create HTTP server. +const server = http.createServer(app) + +// Listen on provided port, on all network interfaces. +server.listen(port) +server.on('error', onError) +console.log('Mock server started on port ' + port + '!') + +// Event listener for HTTP server "error" event. +function onError(error: any) { + if (error.syscall !== 'listen') { + throw error + } + const bind = typeof port === 'string' ? 'Pipe ' + port : 'Port ' + port + // handle specific listen errors with friendly messages + switch (error.code) { + case 'EACCES': + console.error('Express ERROR (app) : %s requires elevated privileges', bind) + process.exit(1) + case 'EADDRINUSE': + console.error('Express ERROR (app) : %s is already in use', bind) + process.exit(1) + default: + throw error + } +} diff --git a/mock/tsconfig.json b/mock/tsconfig.json new file mode 100644 index 0000000000..4747367c13 --- /dev/null +++ b/mock/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "esnext", + "module": "commonjs", + "strict": true, + "jsx": "preserve", + "importHelpers": true, + "moduleResolution": "node", + "experimentalDecorators": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "sourceMap": true, + "baseUrl": ".", + "types": [ + "node", + "webpack-env" + ] + }, + "include": [ + "**/*.ts", + "**/*.tsx" + ], + "exclude": [ + "node_modules" + ] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000000..16ec03d0e4 --- /dev/null +++ b/package.json @@ -0,0 +1,134 @@ +{ + "name": "vue-typescript-admin-template", + "version": "0.1.0", + "private": true, + "author": "Chong Guo ", + "scripts": { + "serve": "concurrently \"npm:mock\" \"vue-cli-service serve\"", + "build:prod": "vue-cli-service build", + "build:stage": "vue-cli-service build --mode staging", + "lint": "vue-cli-service lint", + "mock": "cd mock && ts-node-dev mock-server.ts", + "svg": "vsvg -s ./src/icons/svg -t ./src/icons/components --ext ts --es6", + "test:e2e": "vue-cli-service test:e2e", + "test:unit": "jest --clearCache && vue-cli-service test:unit" + }, + "dependencies": { + "@tinymce/tinymce-vue": "^2.1.0", + "@types/http-proxy-middleware": "^0.19.2", + "axios": "^0.19.0", + "clipboard": "^2.0.4", + "codemirror": "^5.48.0", + "cors": "^2.8.5", + "driver.js": "^0.9.7", + "echarts": "^4.2.1", + "element-ui": "^2.9.2", + "faker": "^4.1.0", + "file-saver": "^2.0.2", + "fuse.js": "^3.4.5", + "http-proxy-middleware": "^0.19.1", + "js-cookie": "^2.2.0", + "jsonlint": "^1.6.3", + "jszip": "^3.2.1", + "lodash": "^4.17.11", + "morgan": "^1.9.1", + "normalize.css": "^8.0.1", + "nprogress": "^0.2.0", + "path-to-regexp": "^3.0.0", + "register-service-worker": "^1.6.2", + "screenfull": "^4.2.0", + "script-loader": "^0.7.2", + "sortablejs": "^1.9.0", + "tinymce": "^5.0.8", + "tui-editor": "^1.4.3", + "uuid": "^3.3.2", + "vue": "^2.6.10", + "vue-class-component": "^7.1.0", + "vue-count-to": "^1.0.13", + "vue-i18n": "^8.11.2", + "vue-image-crop-upload": "^2.5.0", + "vue-property-decorator": "^8.2.1", + "vue-router": "^3.0.6", + "vue-splitpane": "^1.0.4", + "vue-svgicon": "^3.2.6", + "vue2-dropzone": "^3.5.9", + "vuedraggable": "^2.23.0", + "vuex": "^3.1.1", + "vuex-class": "^0.3.2", + "vuex-module-decorators": "^0.9.9", + "xlsx": "^0.14.3", + "yamljs": "^0.3.0" + }, + "devDependencies": { + "@types/clipboard": "^2.0.1", + "@types/codemirror": "^0.0.74", + "@types/compression": "^0.0.36", + "@types/cors": "^2.8.5", + "@types/echarts": "^4.1.9", + "@types/express": "^4.17.0", + "@types/faker": "^4.1.5", + "@types/file-saver": "^2.0.1", + "@types/jest": "^24.0.15", + "@types/js-cookie": "^2.2.2", + "@types/jszip": "^3.1.6", + "@types/lodash": "^4.14.134", + "@types/morgan": "^1.7.35", + "@types/nprogress": "^0.2.0", + "@types/sortablejs": "^1.7.2", + "@types/tinymce": "^4.5.22", + "@types/webpack-env": "^1.13.9", + "@types/yamljs": "^0.2.30", + "@vue/cli-plugin-babel": "^3.8.0", + "@vue/cli-plugin-e2e-cypress": "^3.8.0", + "@vue/cli-plugin-eslint": "^3.8.0", + "@vue/cli-plugin-pwa": "^3.8.0", + "@vue/cli-plugin-typescript": "^3.8.1", + "@vue/cli-plugin-unit-jest": "^3.8.0", + "@vue/cli-service": "^3.8.4", + "@vue/eslint-config-standard": "^4.0.0", + "@vue/eslint-config-typescript": "^4.0.0", + "@vue/test-utils": "^1.0.0-beta.29", + "babel-core": "^7.0.0-bridge.0", + "babel-eslint": "^10.0.2", + "concurrently": "^4.1.0", + "eslint": "^5.16.0", + "eslint-plugin-vue": "^5.2.2", + "fibers": "^4.0.1", + "jest": "^24.8.0", + "lint-staged": "^8.2.1", + "sass": "^1.21.0", + "sass-loader": "^7.1.0", + "style-resources-loader": "^1.2.1", + "swagger-routes-express": "^3.0.1", + "ts-jest": "^24.0.2", + "ts-node-dev": "^1.0.0-pre.40", + "typescript": "3.5.2", + "vue-cli-plugin-element": "^1.0.1", + "vue-cli-plugin-style-resources-loader": "^0.1.3", + "vue-template-compiler": "^2.6.10", + "webpack": "^4.35.0" + }, + "bugs": { + "url": "https://github.com/armour/vue-typescript-admin-template/issues" + }, + "gitHooks": { + "pre-commit": "lint-staged" + }, + "keywords": [ + "vue", + "typescript", + "admin", + "template", + "element-ui" + ], + "lint-staged": { + "*.{js,vue}": [ + "vue-cli-service lint", + "git add" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/armour/vue-typescript-admin-template.git" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000000..961986e2b1 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,5 @@ +module.exports = { + plugins: { + autoprefixer: {} + } +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000000..a5a67cca41 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/img/icons/android-chrome-192x192.png b/public/img/icons/android-chrome-192x192.png new file mode 100644 index 0000000000..6c882c4ee3 Binary files /dev/null and b/public/img/icons/android-chrome-192x192.png differ diff --git a/public/img/icons/android-chrome-512x512.png b/public/img/icons/android-chrome-512x512.png new file mode 100644 index 0000000000..e056f493cd Binary files /dev/null and b/public/img/icons/android-chrome-512x512.png differ diff --git a/public/img/icons/apple-touch-icon-120x120.png b/public/img/icons/apple-touch-icon-120x120.png new file mode 100644 index 0000000000..580c58a875 Binary files /dev/null and b/public/img/icons/apple-touch-icon-120x120.png differ diff --git a/public/img/icons/apple-touch-icon-152x152.png b/public/img/icons/apple-touch-icon-152x152.png new file mode 100644 index 0000000000..ecdc132ed9 Binary files /dev/null and b/public/img/icons/apple-touch-icon-152x152.png differ diff --git a/public/img/icons/apple-touch-icon-180x180.png b/public/img/icons/apple-touch-icon-180x180.png new file mode 100644 index 0000000000..094ac70996 Binary files /dev/null and b/public/img/icons/apple-touch-icon-180x180.png differ diff --git a/public/img/icons/apple-touch-icon-60x60.png b/public/img/icons/apple-touch-icon-60x60.png new file mode 100644 index 0000000000..aebdaebfa6 Binary files /dev/null and b/public/img/icons/apple-touch-icon-60x60.png differ diff --git a/public/img/icons/apple-touch-icon-76x76.png b/public/img/icons/apple-touch-icon-76x76.png new file mode 100644 index 0000000000..04da2536dc Binary files /dev/null and b/public/img/icons/apple-touch-icon-76x76.png differ diff --git a/public/img/icons/apple-touch-icon.png b/public/img/icons/apple-touch-icon.png new file mode 100644 index 0000000000..094ac70996 Binary files /dev/null and b/public/img/icons/apple-touch-icon.png differ diff --git a/public/img/icons/favicon-16x16.png b/public/img/icons/favicon-16x16.png new file mode 100644 index 0000000000..f11436da65 Binary files /dev/null and b/public/img/icons/favicon-16x16.png differ diff --git a/public/img/icons/favicon-32x32.png b/public/img/icons/favicon-32x32.png new file mode 100644 index 0000000000..7c3d0e7dba Binary files /dev/null and b/public/img/icons/favicon-32x32.png differ diff --git a/public/img/icons/msapplication-icon-144x144.png b/public/img/icons/msapplication-icon-144x144.png new file mode 100644 index 0000000000..843dcd1ba8 Binary files /dev/null and b/public/img/icons/msapplication-icon-144x144.png differ diff --git a/public/img/icons/mstile-150x150.png b/public/img/icons/mstile-150x150.png new file mode 100644 index 0000000000..a8e86541cb Binary files /dev/null and b/public/img/icons/mstile-150x150.png differ diff --git a/public/img/icons/safari-pinned-tab.svg b/public/img/icons/safari-pinned-tab.svg new file mode 100644 index 0000000000..673e7b0ae0 --- /dev/null +++ b/public/img/icons/safari-pinned-tab.svg @@ -0,0 +1,112 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + + diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000000..06d696ce90 --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + <%= webpackConfig.name %> + + + +
+ + + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000000..0db1db9578 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,20 @@ +{ + "name": "Vue Typescript Admin", + "short_name": "Vue Ts Admin", + "icons": [ + { + "src": "./img/icons/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "./img/icons/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "start_url": "./index.html", + "display": "standalone", + "background_color": "#fff", + "theme_color": "#4DBA87" +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000000..eb0536286f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/public/tinymce/emojis.min.js b/public/tinymce/emojis.min.js new file mode 100644 index 0000000000..50f24443ae --- /dev/null +++ b/public/tinymce/emojis.min.js @@ -0,0 +1,2 @@ +// NOTE: Source: npm package: emojilib, file:emojis.json +window.tinymce.emoticons_plugin_database = { grinning: { keywords: ['face', 'smile', 'happy', 'joy', ':D', 'grin'], 'char': '\ud83d\ude00', fitzpatrick_scale: !1, category: 'people' }, grimacing: { keywords: ['face', 'grimace', 'teeth'], 'char': '\ud83d\ude2c', fitzpatrick_scale: !1, category: 'people' }, grin: { keywords: ['face', 'happy', 'smile', 'joy', 'kawaii'], 'char': '\ud83d\ude01', fitzpatrick_scale: !1, category: 'people' }, joy: { keywords: ['face', 'cry', 'tears', 'weep', 'happy', 'happytears', 'haha'], 'char': '\ud83d\ude02', fitzpatrick_scale: !1, category: 'people' }, rofl: { keywords: ['face', 'rolling', 'floor', 'laughing', 'lol', 'haha'], 'char': '\ud83e\udd23', fitzpatrick_scale: !1, category: 'people' }, smiley: { keywords: ['face', 'happy', 'joy', 'haha', ':D', ':)', 'smile', 'funny'], 'char': '\ud83d\ude03', fitzpatrick_scale: !1, category: 'people' }, smile: { keywords: ['face', 'happy', 'joy', 'funny', 'haha', 'laugh', 'like', ':D', ':)'], 'char': '\ud83d\ude04', fitzpatrick_scale: !1, category: 'people' }, sweat_smile: { keywords: ['face', 'hot', 'happy', 'laugh', 'sweat', 'smile', 'relief'], 'char': '\ud83d\ude05', fitzpatrick_scale: !1, category: 'people' }, laughing: { keywords: ['happy', 'joy', 'lol', 'satisfied', 'haha', 'face', 'glad', 'XD', 'laugh'], 'char': '\ud83d\ude06', fitzpatrick_scale: !1, category: 'people' }, innocent: { keywords: ['face', 'angel', 'heaven', 'halo'], 'char': '\ud83d\ude07', fitzpatrick_scale: !1, category: 'people' }, wink: { keywords: ['face', 'happy', 'mischievous', 'secret', ';)', 'smile', 'eye'], 'char': '\ud83d\ude09', fitzpatrick_scale: !1, category: 'people' }, blush: { keywords: ['face', 'smile', 'happy', 'flushed', 'crush', 'embarrassed', 'shy', 'joy'], 'char': '\ud83d\ude0a', fitzpatrick_scale: !1, category: 'people' }, slightly_smiling_face: { keywords: ['face', 'smile'], 'char': '\ud83d\ude42', fitzpatrick_scale: !1, category: 'people' }, upside_down_face: { keywords: ['face', 'flipped', 'silly', 'smile'], 'char': '\ud83d\ude43', fitzpatrick_scale: !1, category: 'people' }, relaxed: { keywords: ['face', 'blush', 'massage', 'happiness'], 'char': '\u263a\ufe0f', fitzpatrick_scale: !1, category: 'people' }, yum: { keywords: ['happy', 'joy', 'tongue', 'smile', 'face', 'silly', 'yummy', 'nom', 'delicious', 'savouring'], 'char': '\ud83d\ude0b', fitzpatrick_scale: !1, category: 'people' }, relieved: { keywords: ['face', 'relaxed', 'phew', 'massage', 'happiness'], 'char': '\ud83d\ude0c', fitzpatrick_scale: !1, category: 'people' }, heart_eyes: { keywords: ['face', 'love', 'like', 'affection', 'valentines', 'infatuation', 'crush', 'heart'], 'char': '\ud83d\ude0d', fitzpatrick_scale: !1, category: 'people' }, kissing_heart: { keywords: ['face', 'love', 'like', 'affection', 'valentines', 'infatuation', 'kiss'], 'char': '\ud83d\ude18', fitzpatrick_scale: !1, category: 'people' }, kissing: { keywords: ['love', 'like', 'face', '3', 'valentines', 'infatuation', 'kiss'], 'char': '\ud83d\ude17', fitzpatrick_scale: !1, category: 'people' }, kissing_smiling_eyes: { keywords: ['face', 'affection', 'valentines', 'infatuation', 'kiss'], 'char': '\ud83d\ude19', fitzpatrick_scale: !1, category: 'people' }, kissing_closed_eyes: { keywords: ['face', 'love', 'like', 'affection', 'valentines', 'infatuation', 'kiss'], 'char': '\ud83d\ude1a', fitzpatrick_scale: !1, category: 'people' }, stuck_out_tongue_winking_eye: { keywords: ['face', 'prank', 'childish', 'playful', 'mischievous', 'smile', 'wink', 'tongue'], 'char': '\ud83d\ude1c', fitzpatrick_scale: !1, category: 'people' }, zany: { keywords: ['face', 'goofy', 'crazy'], 'char': '\ud83e\udd2a', fitzpatrick_scale: !1, category: 'people' }, raised_eyebrow: { keywords: ['face', 'distrust', 'scepticism', 'disapproval', 'disbelief', 'surprise'], 'char': '\ud83e\udd28', fitzpatrick_scale: !1, category: 'people' }, monocle: { keywords: ['face', 'stuffy', 'wealthy'], 'char': '\ud83e\uddd0', fitzpatrick_scale: !1, category: 'people' }, stuck_out_tongue_closed_eyes: { keywords: ['face', 'prank', 'playful', 'mischievous', 'smile', 'tongue'], 'char': '\ud83d\ude1d', fitzpatrick_scale: !1, category: 'people' }, stuck_out_tongue: { keywords: ['face', 'prank', 'childish', 'playful', 'mischievous', 'smile', 'tongue'], 'char': '\ud83d\ude1b', fitzpatrick_scale: !1, category: 'people' }, money_mouth_face: { keywords: ['face', 'rich', 'dollar', 'money'], 'char': '\ud83e\udd11', fitzpatrick_scale: !1, category: 'people' }, nerd_face: { keywords: ['face', 'nerdy', 'geek', 'dork'], 'char': '\ud83e\udd13', fitzpatrick_scale: !1, category: 'people' }, sunglasses: { keywords: ['face', 'cool', 'smile', 'summer', 'beach', 'sunglass'], 'char': '\ud83d\ude0e', fitzpatrick_scale: !1, category: 'people' }, star_struck: { keywords: ['face', 'smile', 'starry', 'eyes', 'grinning'], 'char': '\ud83e\udd29', fitzpatrick_scale: !1, category: 'people' }, clown_face: { keywords: ['face'], 'char': '\ud83e\udd21', fitzpatrick_scale: !1, category: 'people' }, cowboy_hat_face: { keywords: ['face', 'cowgirl', 'hat'], 'char': '\ud83e\udd20', fitzpatrick_scale: !1, category: 'people' }, hugs: { keywords: ['face', 'smile', 'hug'], 'char': '\ud83e\udd17', fitzpatrick_scale: !1, category: 'people' }, smirk: { keywords: ['face', 'smile', 'mean', 'prank', 'smug', 'sarcasm'], 'char': '\ud83d\ude0f', fitzpatrick_scale: !1, category: 'people' }, no_mouth: { keywords: ['face', 'hellokitty'], 'char': '\ud83d\ude36', fitzpatrick_scale: !1, category: 'people' }, neutral_face: { keywords: ['indifference', 'meh', ':|', 'neutral'], 'char': '\ud83d\ude10', fitzpatrick_scale: !1, category: 'people' }, expressionless: { keywords: ['face', 'indifferent', '-_-', 'meh', 'deadpan'], 'char': '\ud83d\ude11', fitzpatrick_scale: !1, category: 'people' }, unamused: { keywords: ['indifference', 'bored', 'straight face', 'serious', 'sarcasm', 'unimpressed', 'skeptical', 'dubious', 'side_eye'], 'char': '\ud83d\ude12', fitzpatrick_scale: !1, category: 'people' }, roll_eyes: { keywords: ['face', 'eyeroll', 'frustrated'], 'char': '\ud83d\ude44', fitzpatrick_scale: !1, category: 'people' }, thinking: { keywords: ['face', 'hmmm', 'think', 'consider'], 'char': '\ud83e\udd14', fitzpatrick_scale: !1, category: 'people' }, lying_face: { keywords: ['face', 'lie', 'pinocchio'], 'char': '\ud83e\udd25', fitzpatrick_scale: !1, category: 'people' }, hand_over_mouth: { keywords: ['face', 'whoops', 'shock', 'surprise'], 'char': '\ud83e\udd2d', fitzpatrick_scale: !1, category: 'people' }, shushing: { keywords: ['face', 'quiet', 'shhh'], 'char': '\ud83e\udd2b', fitzpatrick_scale: !1, category: 'people' }, symbols_over_mouth: { keywords: ['face', 'swearing', 'cursing', 'cussing', 'profanity', 'expletive'], 'char': '\ud83e\udd2c', fitzpatrick_scale: !1, category: 'people' }, exploding_head: { keywords: ['face', 'shocked', 'mind', 'blown'], 'char': '\ud83e\udd2f', fitzpatrick_scale: !1, category: 'people' }, flushed: { keywords: ['face', 'blush', 'shy', 'flattered'], 'char': '\ud83d\ude33', fitzpatrick_scale: !1, category: 'people' }, disappointed: { keywords: ['face', 'sad', 'upset', 'depressed', ':('], 'char': '\ud83d\ude1e', fitzpatrick_scale: !1, category: 'people' }, worried: { keywords: ['face', 'concern', 'nervous', ':('], 'char': '\ud83d\ude1f', fitzpatrick_scale: !1, category: 'people' }, angry: { keywords: ['mad', 'face', 'annoyed', 'frustrated'], 'char': '\ud83d\ude20', fitzpatrick_scale: !1, category: 'people' }, rage: { keywords: ['angry', 'mad', 'hate', 'despise'], 'char': '\ud83d\ude21', fitzpatrick_scale: !1, category: 'people' }, pensive: { keywords: ['face', 'sad', 'depressed', 'upset'], 'char': '\ud83d\ude14', fitzpatrick_scale: !1, category: 'people' }, confused: { keywords: ['face', 'indifference', 'huh', 'weird', 'hmmm', ':/'], 'char': '\ud83d\ude15', fitzpatrick_scale: !1, category: 'people' }, slightly_frowning_face: { keywords: ['face', 'frowning', 'disappointed', 'sad', 'upset'], 'char': '\ud83d\ude41', fitzpatrick_scale: !1, category: 'people' }, frowning_face: { keywords: ['face', 'sad', 'upset', 'frown'], 'char': '\u2639', fitzpatrick_scale: !1, category: 'people' }, persevere: { keywords: ['face', 'sick', 'no', 'upset', 'oops'], 'char': '\ud83d\ude23', fitzpatrick_scale: !1, category: 'people' }, confounded: { keywords: ['face', 'confused', 'sick', 'unwell', 'oops', ':S'], 'char': '\ud83d\ude16', fitzpatrick_scale: !1, category: 'people' }, tired_face: { keywords: ['sick', 'whine', 'upset', 'frustrated'], 'char': '\ud83d\ude2b', fitzpatrick_scale: !1, category: 'people' }, weary: { keywords: ['face', 'tired', 'sleepy', 'sad', 'frustrated', 'upset'], 'char': '\ud83d\ude29', fitzpatrick_scale: !1, category: 'people' }, triumph: { keywords: ['face', 'gas', 'phew', 'proud', 'pride'], 'char': '\ud83d\ude24', fitzpatrick_scale: !1, category: 'people' }, open_mouth: { keywords: ['face', 'surprise', 'impressed', 'wow', 'whoa', ':O'], 'char': '\ud83d\ude2e', fitzpatrick_scale: !1, category: 'people' }, scream: { keywords: ['face', 'munch', 'scared', 'omg'], 'char': '\ud83d\ude31', fitzpatrick_scale: !1, category: 'people' }, fearful: { keywords: ['face', 'scared', 'terrified', 'nervous', 'oops', 'huh'], 'char': '\ud83d\ude28', fitzpatrick_scale: !1, category: 'people' }, cold_sweat: { keywords: ['face', 'nervous', 'sweat'], 'char': '\ud83d\ude30', fitzpatrick_scale: !1, category: 'people' }, hushed: { keywords: ['face', 'woo', 'shh'], 'char': '\ud83d\ude2f', fitzpatrick_scale: !1, category: 'people' }, frowning: { keywords: ['face', 'aw', 'what'], 'char': '\ud83d\ude26', fitzpatrick_scale: !1, category: 'people' }, anguished: { keywords: ['face', 'stunned', 'nervous'], 'char': '\ud83d\ude27', fitzpatrick_scale: !1, category: 'people' }, cry: { keywords: ['face', 'tears', 'sad', 'depressed', 'upset', ":'("], 'char': '\ud83d\ude22', fitzpatrick_scale: !1, category: 'people' }, disappointed_relieved: { keywords: ['face', 'phew', 'sweat', 'nervous'], 'char': '\ud83d\ude25', fitzpatrick_scale: !1, category: 'people' }, drooling_face: { keywords: ['face'], 'char': '\ud83e\udd24', fitzpatrick_scale: !1, category: 'people' }, sleepy: { keywords: ['face', 'tired', 'rest', 'nap'], 'char': '\ud83d\ude2a', fitzpatrick_scale: !1, category: 'people' }, sweat: { keywords: ['face', 'hot', 'sad', 'tired', 'exercise'], 'char': '\ud83d\ude13', fitzpatrick_scale: !1, category: 'people' }, sob: { keywords: ['face', 'cry', 'tears', 'sad', 'upset', 'depressed'], 'char': '\ud83d\ude2d', fitzpatrick_scale: !1, category: 'people' }, dizzy_face: { keywords: ['spent', 'unconscious', 'xox', 'dizzy'], 'char': '\ud83d\ude35', fitzpatrick_scale: !1, category: 'people' }, astonished: { keywords: ['face', 'xox', 'surprised', 'poisoned'], 'char': '\ud83d\ude32', fitzpatrick_scale: !1, category: 'people' }, zipper_mouth_face: { keywords: ['face', 'sealed', 'zipper', 'secret'], 'char': '\ud83e\udd10', fitzpatrick_scale: !1, category: 'people' }, nauseated_face: { keywords: ['face', 'vomit', 'gross', 'green', 'sick', 'throw up', 'ill'], 'char': '\ud83e\udd22', fitzpatrick_scale: !1, category: 'people' }, sneezing_face: { keywords: ['face', 'gesundheit', 'sneeze', 'sick', 'allergy'], 'char': '\ud83e\udd27', fitzpatrick_scale: !1, category: 'people' }, vomiting: { keywords: ['face', 'sick'], 'char': '\ud83e\udd2e', fitzpatrick_scale: !1, category: 'people' }, mask: { keywords: ['face', 'sick', 'ill', 'disease'], 'char': '\ud83d\ude37', fitzpatrick_scale: !1, category: 'people' }, face_with_thermometer: { keywords: ['sick', 'temperature', 'thermometer', 'cold', 'fever'], 'char': '\ud83e\udd12', fitzpatrick_scale: !1, category: 'people' }, face_with_head_bandage: { keywords: ['injured', 'clumsy', 'bandage', 'hurt'], 'char': '\ud83e\udd15', fitzpatrick_scale: !1, category: 'people' }, sleeping: { keywords: ['face', 'tired', 'sleepy', 'night', 'zzz'], 'char': '\ud83d\ude34', fitzpatrick_scale: !1, category: 'people' }, zzz: { keywords: ['sleepy', 'tired', 'dream'], 'char': '\ud83d\udca4', fitzpatrick_scale: !1, category: 'people' }, poop: { keywords: ['hankey', 'shitface', 'fail', 'turd', 'shit'], 'char': '\ud83d\udca9', fitzpatrick_scale: !1, category: 'people' }, smiling_imp: { keywords: ['devil', 'horns'], 'char': '\ud83d\ude08', fitzpatrick_scale: !1, category: 'people' }, imp: { keywords: ['devil', 'angry', 'horns'], 'char': '\ud83d\udc7f', fitzpatrick_scale: !1, category: 'people' }, japanese_ogre: { keywords: ['monster', 'red', 'mask', 'halloween', 'scary', 'creepy', 'devil', 'demon', 'japanese', 'ogre'], 'char': '\ud83d\udc79', fitzpatrick_scale: !1, category: 'people' }, japanese_goblin: { keywords: ['red', 'evil', 'mask', 'monster', 'scary', 'creepy', 'japanese', 'goblin'], 'char': '\ud83d\udc7a', fitzpatrick_scale: !1, category: 'people' }, skull: { keywords: ['dead', 'skeleton', 'creepy', 'death'], 'char': '\ud83d\udc80', fitzpatrick_scale: !1, category: 'people' }, ghost: { keywords: ['halloween', 'spooky', 'scary'], 'char': '\ud83d\udc7b', fitzpatrick_scale: !1, category: 'people' }, alien: { keywords: ['UFO', 'paul', 'weird', 'outer_space'], 'char': '\ud83d\udc7d', fitzpatrick_scale: !1, category: 'people' }, robot: { keywords: ['computer', 'machine', 'bot'], 'char': '\ud83e\udd16', fitzpatrick_scale: !1, category: 'people' }, smiley_cat: { keywords: ['animal', 'cats', 'happy', 'smile'], 'char': '\ud83d\ude3a', fitzpatrick_scale: !1, category: 'people' }, smile_cat: { keywords: ['animal', 'cats', 'smile'], 'char': '\ud83d\ude38', fitzpatrick_scale: !1, category: 'people' }, joy_cat: { keywords: ['animal', 'cats', 'haha', 'happy', 'tears'], 'char': '\ud83d\ude39', fitzpatrick_scale: !1, category: 'people' }, heart_eyes_cat: { keywords: ['animal', 'love', 'like', 'affection', 'cats', 'valentines', 'heart'], 'char': '\ud83d\ude3b', fitzpatrick_scale: !1, category: 'people' }, smirk_cat: { keywords: ['animal', 'cats', 'smirk'], 'char': '\ud83d\ude3c', fitzpatrick_scale: !1, category: 'people' }, kissing_cat: { keywords: ['animal', 'cats', 'kiss'], 'char': '\ud83d\ude3d', fitzpatrick_scale: !1, category: 'people' }, scream_cat: { keywords: ['animal', 'cats', 'munch', 'scared', 'scream'], 'char': '\ud83d\ude40', fitzpatrick_scale: !1, category: 'people' }, crying_cat_face: { keywords: ['animal', 'tears', 'weep', 'sad', 'cats', 'upset', 'cry'], 'char': '\ud83d\ude3f', fitzpatrick_scale: !1, category: 'people' }, pouting_cat: { keywords: ['animal', 'cats'], 'char': '\ud83d\ude3e', fitzpatrick_scale: !1, category: 'people' }, palms_up: { keywords: ['hands', 'gesture', 'cupped', 'prayer'], 'char': '\ud83e\udd32', fitzpatrick_scale: !0, category: 'people' }, raised_hands: { keywords: ['gesture', 'hooray', 'yea', 'celebration', 'hands'], 'char': '\ud83d\ude4c', fitzpatrick_scale: !0, category: 'people' }, clap: { keywords: ['hands', 'praise', 'applause', 'congrats', 'yay'], 'char': '\ud83d\udc4f', fitzpatrick_scale: !0, category: 'people' }, wave: { keywords: ['hands', 'gesture', 'goodbye', 'solong', 'farewell', 'hello', 'hi', 'palm'], 'char': '\ud83d\udc4b', fitzpatrick_scale: !0, category: 'people' }, call_me_hand: { keywords: ['hands', 'gesture'], 'char': '\ud83e\udd19', fitzpatrick_scale: !0, category: 'people' }, '+1': { keywords: ['thumbsup', 'yes', 'awesome', 'good', 'agree', 'accept', 'cool', 'hand', 'like'], 'char': '\ud83d\udc4d', fitzpatrick_scale: !0, category: 'people' }, '-1': { keywords: ['thumbsdown', 'no', 'dislike', 'hand'], 'char': '\ud83d\udc4e', fitzpatrick_scale: !0, category: 'people' }, facepunch: { keywords: ['angry', 'violence', 'fist', 'hit', 'attack', 'hand'], 'char': '\ud83d\udc4a', fitzpatrick_scale: !0, category: 'people' }, fist: { keywords: ['fingers', 'hand', 'grasp'], 'char': '\u270a', fitzpatrick_scale: !0, category: 'people' }, fist_left: { keywords: ['hand', 'fistbump'], 'char': '\ud83e\udd1b', fitzpatrick_scale: !0, category: 'people' }, fist_right: { keywords: ['hand', 'fistbump'], 'char': '\ud83e\udd1c', fitzpatrick_scale: !0, category: 'people' }, v: { keywords: ['fingers', 'ohyeah', 'hand', 'peace', 'victory', 'two'], 'char': '\u270c', fitzpatrick_scale: !0, category: 'people' }, ok_hand: { keywords: ['fingers', 'limbs', 'perfect', 'ok', 'okay'], 'char': '\ud83d\udc4c', fitzpatrick_scale: !0, category: 'people' }, raised_hand: { keywords: ['fingers', 'stop', 'highfive', 'palm', 'ban'], 'char': '\u270b', fitzpatrick_scale: !0, category: 'people' }, raised_back_of_hand: { keywords: ['fingers', 'raised', 'backhand'], 'char': '\ud83e\udd1a', fitzpatrick_scale: !0, category: 'people' }, open_hands: { keywords: ['fingers', 'butterfly', 'hands', 'open'], 'char': '\ud83d\udc50', fitzpatrick_scale: !0, category: 'people' }, muscle: { keywords: ['arm', 'flex', 'hand', 'summer', 'strong', 'biceps'], 'char': '\ud83d\udcaa', fitzpatrick_scale: !0, category: 'people' }, pray: { keywords: ['please', 'hope', 'wish', 'namaste', 'highfive'], 'char': '\ud83d\ude4f', fitzpatrick_scale: !0, category: 'people' }, handshake: { keywords: ['agreement', 'shake'], 'char': '\ud83e\udd1d', fitzpatrick_scale: !1, category: 'people' }, point_up: { keywords: ['hand', 'fingers', 'direction', 'up'], 'char': '\u261d', fitzpatrick_scale: !0, category: 'people' }, point_up_2: { keywords: ['fingers', 'hand', 'direction', 'up'], 'char': '\ud83d\udc46', fitzpatrick_scale: !0, category: 'people' }, point_down: { keywords: ['fingers', 'hand', 'direction', 'down'], 'char': '\ud83d\udc47', fitzpatrick_scale: !0, category: 'people' }, point_left: { keywords: ['direction', 'fingers', 'hand', 'left'], 'char': '\ud83d\udc48', fitzpatrick_scale: !0, category: 'people' }, point_right: { keywords: ['fingers', 'hand', 'direction', 'right'], 'char': '\ud83d\udc49', fitzpatrick_scale: !0, category: 'people' }, fu: { keywords: ['hand', 'fingers', 'rude', 'middle', 'flipping'], 'char': '\ud83d\udd95', fitzpatrick_scale: !0, category: 'people' }, raised_hand_with_fingers_splayed: { keywords: ['hand', 'fingers', 'palm'], 'char': '\ud83d\udd90', fitzpatrick_scale: !0, category: 'people' }, love_you: { keywords: ['hand', 'fingers', 'gesture'], 'char': '\ud83e\udd1f', fitzpatrick_scale: !0, category: 'people' }, metal: { keywords: ['hand', 'fingers', 'evil_eye', 'sign_of_horns', 'rock_on'], 'char': '\ud83e\udd18', fitzpatrick_scale: !0, category: 'people' }, crossed_fingers: { keywords: ['good', 'lucky'], 'char': '\ud83e\udd1e', fitzpatrick_scale: !0, category: 'people' }, vulcan_salute: { keywords: ['hand', 'fingers', 'spock', 'star trek'], 'char': '\ud83d\udd96', fitzpatrick_scale: !0, category: 'people' }, writing_hand: { keywords: ['lower_left_ballpoint_pen', 'stationery', 'write', 'compose'], 'char': '\u270d', fitzpatrick_scale: !0, category: 'people' }, selfie: { keywords: ['camera', 'phone'], 'char': '\ud83e\udd33', fitzpatrick_scale: !0, category: 'people' }, nail_care: { keywords: ['beauty', 'manicure', 'finger', 'fashion', 'nail'], 'char': '\ud83d\udc85', fitzpatrick_scale: !0, category: 'people' }, lips: { keywords: ['mouth', 'kiss'], 'char': '\ud83d\udc44', fitzpatrick_scale: !1, category: 'people' }, tongue: { keywords: ['mouth', 'playful'], 'char': '\ud83d\udc45', fitzpatrick_scale: !1, category: 'people' }, ear: { keywords: ['face', 'hear', 'sound', 'listen'], 'char': '\ud83d\udc42', fitzpatrick_scale: !0, category: 'people' }, nose: { keywords: ['smell', 'sniff'], 'char': '\ud83d\udc43', fitzpatrick_scale: !0, category: 'people' }, eye: { keywords: ['face', 'look', 'see', 'watch', 'stare'], 'char': '\ud83d\udc41', fitzpatrick_scale: !1, category: 'people' }, eyes: { keywords: ['look', 'watch', 'stalk', 'peek', 'see'], 'char': '\ud83d\udc40', fitzpatrick_scale: !1, category: 'people' }, brain: { keywords: ['smart', 'intelligent'], 'char': '\ud83e\udde0', fitzpatrick_scale: !1, category: 'people' }, bust_in_silhouette: { keywords: ['user', 'person', 'human'], 'char': '\ud83d\udc64', fitzpatrick_scale: !1, category: 'people' }, busts_in_silhouette: { keywords: ['user', 'person', 'human', 'group', 'team'], 'char': '\ud83d\udc65', fitzpatrick_scale: !1, category: 'people' }, speaking_head: { keywords: ['user', 'person', 'human', 'sing', 'say', 'talk'], 'char': '\ud83d\udde3', fitzpatrick_scale: !1, category: 'people' }, baby: { keywords: ['child', 'boy', 'girl', 'toddler'], 'char': '\ud83d\udc76', fitzpatrick_scale: !0, category: 'people' }, child: { keywords: ['gender-neutral', 'young'], 'char': '\ud83e\uddd2', fitzpatrick_scale: !0, category: 'people' }, boy: { keywords: ['man', 'male', 'guy', 'teenager'], 'char': '\ud83d\udc66', fitzpatrick_scale: !0, category: 'people' }, girl: { keywords: ['female', 'woman', 'teenager'], 'char': '\ud83d\udc67', fitzpatrick_scale: !0, category: 'people' }, adult: { keywords: ['gender-neutral', 'person'], 'char': '\ud83e\uddd1', fitzpatrick_scale: !0, category: 'people' }, man: { keywords: ['mustache', 'father', 'dad', 'guy', 'classy', 'sir', 'moustache'], 'char': '\ud83d\udc68', fitzpatrick_scale: !0, category: 'people' }, woman: { keywords: ['female', 'girls', 'lady'], 'char': '\ud83d\udc69', fitzpatrick_scale: !0, category: 'people' }, blonde_woman: { keywords: ['woman', 'female', 'girl', 'blonde', 'person'], 'char': '\ud83d\udc71\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, blonde_man: { keywords: ['man', 'male', 'boy', 'blonde', 'guy', 'person'], 'char': '\ud83d\udc71', fitzpatrick_scale: !0, category: 'people' }, bearded_person: { keywords: ['person', 'bewhiskered'], 'char': '\ud83e\uddd4', fitzpatrick_scale: !0, category: 'people' }, older_adult: { keywords: ['human', 'elder', 'senior', 'gender-neutral'], 'char': '\ud83e\uddd3', fitzpatrick_scale: !0, category: 'people' }, older_man: { keywords: ['human', 'male', 'men', 'old', 'elder', 'senior'], 'char': '\ud83d\udc74', fitzpatrick_scale: !0, category: 'people' }, older_woman: { keywords: ['human', 'female', 'women', 'lady', 'old', 'elder', 'senior'], 'char': '\ud83d\udc75', fitzpatrick_scale: !0, category: 'people' }, man_with_gua_pi_mao: { keywords: ['male', 'boy', 'chinese'], 'char': '\ud83d\udc72', fitzpatrick_scale: !0, category: 'people' }, woman_with_headscarf: { keywords: ['female', 'hijab', 'mantilla', 'tichel'], 'char': '\ud83e\uddd5', fitzpatrick_scale: !0, category: 'people' }, woman_with_turban: { keywords: ['female', 'indian', 'hinduism', 'arabs', 'woman'], 'char': '\ud83d\udc73\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_with_turban: { keywords: ['male', 'indian', 'hinduism', 'arabs'], 'char': '\ud83d\udc73', fitzpatrick_scale: !0, category: 'people' }, policewoman: { keywords: ['woman', 'police', 'law', 'legal', 'enforcement', 'arrest', '911', 'female'], 'char': '\ud83d\udc6e\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, policeman: { keywords: ['man', 'police', 'law', 'legal', 'enforcement', 'arrest', '911'], 'char': '\ud83d\udc6e', fitzpatrick_scale: !0, category: 'people' }, construction_worker_woman: { keywords: ['female', 'human', 'wip', 'build', 'construction', 'worker', 'labor', 'woman'], 'char': '\ud83d\udc77\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, construction_worker_man: { keywords: ['male', 'human', 'wip', 'guy', 'build', 'construction', 'worker', 'labor'], 'char': '\ud83d\udc77', fitzpatrick_scale: !0, category: 'people' }, guardswoman: { keywords: ['uk', 'gb', 'british', 'female', 'royal', 'woman'], 'char': '\ud83d\udc82\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, guardsman: { keywords: ['uk', 'gb', 'british', 'male', 'guy', 'royal'], 'char': '\ud83d\udc82', fitzpatrick_scale: !0, category: 'people' }, female_detective: { keywords: ['human', 'spy', 'detective', 'female', 'woman'], 'char': '\ud83d\udd75\ufe0f\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, male_detective: { keywords: ['human', 'spy', 'detective'], 'char': '\ud83d\udd75', fitzpatrick_scale: !0, category: 'people' }, woman_health_worker: { keywords: ['doctor', 'nurse', 'therapist', 'healthcare', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\u2695\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_health_worker: { keywords: ['doctor', 'nurse', 'therapist', 'healthcare', 'man', 'human'], 'char': '\ud83d\udc68\u200d\u2695\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_farmer: { keywords: ['rancher', 'gardener', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udf3e', fitzpatrick_scale: !0, category: 'people' }, man_farmer: { keywords: ['rancher', 'gardener', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udf3e', fitzpatrick_scale: !0, category: 'people' }, woman_cook: { keywords: ['chef', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udf73', fitzpatrick_scale: !0, category: 'people' }, man_cook: { keywords: ['chef', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udf73', fitzpatrick_scale: !0, category: 'people' }, woman_student: { keywords: ['graduate', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udf93', fitzpatrick_scale: !0, category: 'people' }, man_student: { keywords: ['graduate', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udf93', fitzpatrick_scale: !0, category: 'people' }, woman_singer: { keywords: ['rockstar', 'entertainer', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udfa4', fitzpatrick_scale: !0, category: 'people' }, man_singer: { keywords: ['rockstar', 'entertainer', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udfa4', fitzpatrick_scale: !0, category: 'people' }, woman_teacher: { keywords: ['instructor', 'professor', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udfeb', fitzpatrick_scale: !0, category: 'people' }, man_teacher: { keywords: ['instructor', 'professor', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udfeb', fitzpatrick_scale: !0, category: 'people' }, woman_factory_worker: { keywords: ['assembly', 'industrial', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udfed', fitzpatrick_scale: !0, category: 'people' }, man_factory_worker: { keywords: ['assembly', 'industrial', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udfed', fitzpatrick_scale: !0, category: 'people' }, woman_technologist: { keywords: ['coder', 'developer', 'engineer', 'programmer', 'software', 'woman', 'human', 'laptop', 'computer'], 'char': '\ud83d\udc69\u200d\ud83d\udcbb', fitzpatrick_scale: !0, category: 'people' }, man_technologist: { keywords: ['coder', 'developer', 'engineer', 'programmer', 'software', 'man', 'human', 'laptop', 'computer'], 'char': '\ud83d\udc68\u200d\ud83d\udcbb', fitzpatrick_scale: !0, category: 'people' }, woman_office_worker: { keywords: ['business', 'manager', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83d\udcbc', fitzpatrick_scale: !0, category: 'people' }, man_office_worker: { keywords: ['business', 'manager', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83d\udcbc', fitzpatrick_scale: !0, category: 'people' }, woman_mechanic: { keywords: ['plumber', 'woman', 'human', 'wrench'], 'char': '\ud83d\udc69\u200d\ud83d\udd27', fitzpatrick_scale: !0, category: 'people' }, man_mechanic: { keywords: ['plumber', 'man', 'human', 'wrench'], 'char': '\ud83d\udc68\u200d\ud83d\udd27', fitzpatrick_scale: !0, category: 'people' }, woman_scientist: { keywords: ['biologist', 'chemist', 'engineer', 'physicist', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83d\udd2c', fitzpatrick_scale: !0, category: 'people' }, man_scientist: { keywords: ['biologist', 'chemist', 'engineer', 'physicist', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83d\udd2c', fitzpatrick_scale: !0, category: 'people' }, woman_artist: { keywords: ['painter', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83c\udfa8', fitzpatrick_scale: !0, category: 'people' }, man_artist: { keywords: ['painter', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83c\udfa8', fitzpatrick_scale: !0, category: 'people' }, woman_firefighter: { keywords: ['fireman', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83d\ude92', fitzpatrick_scale: !0, category: 'people' }, man_firefighter: { keywords: ['fireman', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83d\ude92', fitzpatrick_scale: !0, category: 'people' }, woman_pilot: { keywords: ['aviator', 'plane', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\u2708\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_pilot: { keywords: ['aviator', 'plane', 'man', 'human'], 'char': '\ud83d\udc68\u200d\u2708\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_astronaut: { keywords: ['space', 'rocket', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\ud83d\ude80', fitzpatrick_scale: !0, category: 'people' }, man_astronaut: { keywords: ['space', 'rocket', 'man', 'human'], 'char': '\ud83d\udc68\u200d\ud83d\ude80', fitzpatrick_scale: !0, category: 'people' }, woman_judge: { keywords: ['justice', 'court', 'woman', 'human'], 'char': '\ud83d\udc69\u200d\u2696\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_judge: { keywords: ['justice', 'court', 'man', 'human'], 'char': '\ud83d\udc68\u200d\u2696\ufe0f', fitzpatrick_scale: !0, category: 'people' }, mrs_claus: { keywords: ['woman', 'female', 'xmas', 'mother christmas'], 'char': '\ud83e\udd36', fitzpatrick_scale: !0, category: 'people' }, santa: { keywords: ['festival', 'man', 'male', 'xmas', 'father christmas'], 'char': '\ud83c\udf85', fitzpatrick_scale: !0, category: 'people' }, sorceress: { keywords: ['woman', 'female', 'mage', 'witch'], 'char': '\ud83e\uddd9\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, wizard: { keywords: ['man', 'male', 'mage', 'sorcerer'], 'char': '\ud83e\uddd9\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_elf: { keywords: ['woman', 'female'], 'char': '\ud83e\udddd\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_elf: { keywords: ['man', 'male'], 'char': '\ud83e\udddd\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_vampire: { keywords: ['woman', 'female'], 'char': '\ud83e\udddb\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_vampire: { keywords: ['man', 'male', 'dracula'], 'char': '\ud83e\udddb\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_zombie: { keywords: ['woman', 'female', 'undead', 'walking dead'], 'char': '\ud83e\udddf\u200d\u2640\ufe0f', fitzpatrick_scale: !1, category: 'people' }, man_zombie: { keywords: ['man', 'male', 'dracula', 'undead', 'walking dead'], 'char': '\ud83e\udddf\u200d\u2642\ufe0f', fitzpatrick_scale: !1, category: 'people' }, woman_genie: { keywords: ['woman', 'female'], 'char': '\ud83e\uddde\u200d\u2640\ufe0f', fitzpatrick_scale: !1, category: 'people' }, man_genie: { keywords: ['man', 'male'], 'char': '\ud83e\uddde\u200d\u2642\ufe0f', fitzpatrick_scale: !1, category: 'people' }, mermaid: { keywords: ['woman', 'female', 'merwoman', 'ariel'], 'char': '\ud83e\udddc\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, merman: { keywords: ['man', 'male', 'triton'], 'char': '\ud83e\udddc\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_fairy: { keywords: ['woman', 'female'], 'char': '\ud83e\uddda\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_fairy: { keywords: ['man', 'male'], 'char': '\ud83e\uddda\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, angel: { keywords: ['heaven', 'wings', 'halo'], 'char': '\ud83d\udc7c', fitzpatrick_scale: !0, category: 'people' }, pregnant_woman: { keywords: ['baby'], 'char': '\ud83e\udd30', fitzpatrick_scale: !0, category: 'people' }, breastfeeding: { keywords: ['nursing', 'baby'], 'char': '\ud83e\udd31', fitzpatrick_scale: !0, category: 'people' }, princess: { keywords: ['girl', 'woman', 'female', 'blond', 'crown', 'royal', 'queen'], 'char': '\ud83d\udc78', fitzpatrick_scale: !0, category: 'people' }, prince: { keywords: ['boy', 'man', 'male', 'crown', 'royal', 'king'], 'char': '\ud83e\udd34', fitzpatrick_scale: !0, category: 'people' }, bride_with_veil: { keywords: ['couple', 'marriage', 'wedding', 'woman', 'bride'], 'char': '\ud83d\udc70', fitzpatrick_scale: !0, category: 'people' }, man_in_tuxedo: { keywords: ['couple', 'marriage', 'wedding', 'groom'], 'char': '\ud83e\udd35', fitzpatrick_scale: !0, category: 'people' }, running_woman: { keywords: ['woman', 'walking', 'exercise', 'race', 'running', 'female'], 'char': '\ud83c\udfc3\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, running_man: { keywords: ['man', 'walking', 'exercise', 'race', 'running'], 'char': '\ud83c\udfc3', fitzpatrick_scale: !0, category: 'people' }, walking_woman: { keywords: ['human', 'feet', 'steps', 'woman', 'female'], 'char': '\ud83d\udeb6\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, walking_man: { keywords: ['human', 'feet', 'steps'], 'char': '\ud83d\udeb6', fitzpatrick_scale: !0, category: 'people' }, dancer: { keywords: ['female', 'girl', 'woman', 'fun'], 'char': '\ud83d\udc83', fitzpatrick_scale: !0, category: 'people' }, man_dancing: { keywords: ['male', 'boy', 'fun', 'dancer'], 'char': '\ud83d\udd7a', fitzpatrick_scale: !0, category: 'people' }, dancing_women: { keywords: ['female', 'bunny', 'women', 'girls'], 'char': '\ud83d\udc6f', fitzpatrick_scale: !1, category: 'people' }, dancing_men: { keywords: ['male', 'bunny', 'men', 'boys'], 'char': '\ud83d\udc6f\u200d\u2642\ufe0f', fitzpatrick_scale: !1, category: 'people' }, couple: { keywords: ['pair', 'people', 'human', 'love', 'date', 'dating', 'like', 'affection', 'valentines', 'marriage'], 'char': '\ud83d\udc6b', fitzpatrick_scale: !1, category: 'people' }, two_men_holding_hands: { keywords: ['pair', 'couple', 'love', 'like', 'bromance', 'friendship', 'people', 'human'], 'char': '\ud83d\udc6c', fitzpatrick_scale: !1, category: 'people' }, two_women_holding_hands: { keywords: ['pair', 'friendship', 'couple', 'love', 'like', 'female', 'people', 'human'], 'char': '\ud83d\udc6d', fitzpatrick_scale: !1, category: 'people' }, bowing_woman: { keywords: ['woman', 'female', 'girl'], 'char': '\ud83d\ude47\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, bowing_man: { keywords: ['man', 'male', 'boy'], 'char': '\ud83d\ude47', fitzpatrick_scale: !0, category: 'people' }, man_facepalming: { keywords: ['man', 'male', 'boy', 'disbelief'], 'char': '\ud83e\udd26', fitzpatrick_scale: !0, category: 'people' }, woman_facepalming: { keywords: ['woman', 'female', 'girl', 'disbelief'], 'char': '\ud83e\udd26\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_shrugging: { keywords: ['woman', 'female', 'girl', 'confused', 'indifferent', 'doubt'], 'char': '\ud83e\udd37', fitzpatrick_scale: !0, category: 'people' }, man_shrugging: { keywords: ['man', 'male', 'boy', 'confused', 'indifferent', 'doubt'], 'char': '\ud83e\udd37\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, tipping_hand_woman: { keywords: ['female', 'girl', 'woman', 'human', 'information'], 'char': '\ud83d\udc81', fitzpatrick_scale: !0, category: 'people' }, tipping_hand_man: { keywords: ['male', 'boy', 'man', 'human', 'information'], 'char': '\ud83d\udc81\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, no_good_woman: { keywords: ['female', 'girl', 'woman', 'nope'], 'char': '\ud83d\ude45', fitzpatrick_scale: !0, category: 'people' }, no_good_man: { keywords: ['male', 'boy', 'man', 'nope'], 'char': '\ud83d\ude45\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, ok_woman: { keywords: ['women', 'girl', 'female', 'pink', 'human', 'woman'], 'char': '\ud83d\ude46', fitzpatrick_scale: !0, category: 'people' }, ok_man: { keywords: ['men', 'boy', 'male', 'blue', 'human', 'man'], 'char': '\ud83d\ude46\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, raising_hand_woman: { keywords: ['female', 'girl', 'woman'], 'char': '\ud83d\ude4b', fitzpatrick_scale: !0, category: 'people' }, raising_hand_man: { keywords: ['male', 'boy', 'man'], 'char': '\ud83d\ude4b\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, pouting_woman: { keywords: ['female', 'girl', 'woman'], 'char': '\ud83d\ude4e', fitzpatrick_scale: !0, category: 'people' }, pouting_man: { keywords: ['male', 'boy', 'man'], 'char': '\ud83d\ude4e\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, frowning_woman: { keywords: ['female', 'girl', 'woman', 'sad', 'depressed', 'discouraged', 'unhappy'], 'char': '\ud83d\ude4d', fitzpatrick_scale: !0, category: 'people' }, frowning_man: { keywords: ['male', 'boy', 'man', 'sad', 'depressed', 'discouraged', 'unhappy'], 'char': '\ud83d\ude4d\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, haircut_woman: { keywords: ['female', 'girl', 'woman'], 'char': '\ud83d\udc87', fitzpatrick_scale: !0, category: 'people' }, haircut_man: { keywords: ['male', 'boy', 'man'], 'char': '\ud83d\udc87\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, massage_woman: { keywords: ['female', 'girl', 'woman', 'head'], 'char': '\ud83d\udc86', fitzpatrick_scale: !0, category: 'people' }, massage_man: { keywords: ['male', 'boy', 'man', 'head'], 'char': '\ud83d\udc86\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, woman_in_steamy_room: { keywords: ['female', 'woman', 'spa', 'steamroom', 'sauna'], 'char': '\ud83e\uddd6\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'people' }, man_in_steamy_room: { keywords: ['male', 'man', 'spa', 'steamroom', 'sauna'], 'char': '\ud83e\uddd6\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'people' }, couple_with_heart_woman_man: { keywords: ['pair', 'love', 'like', 'affection', 'human', 'dating', 'valentines', 'marriage'], 'char': '\ud83d\udc91', fitzpatrick_scale: !1, category: 'people' }, couple_with_heart_woman_woman: { keywords: ['pair', 'love', 'like', 'affection', 'human', 'dating', 'valentines', 'marriage'], 'char': '\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc69', fitzpatrick_scale: !1, category: 'people' }, couple_with_heart_man_man: { keywords: ['pair', 'love', 'like', 'affection', 'human', 'dating', 'valentines', 'marriage'], 'char': '\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68', fitzpatrick_scale: !1, category: 'people' }, couplekiss_man_woman: { keywords: ['pair', 'valentines', 'love', 'like', 'dating', 'marriage'], 'char': '\ud83d\udc8f', fitzpatrick_scale: !1, category: 'people' }, couplekiss_woman_woman: { keywords: ['pair', 'valentines', 'love', 'like', 'dating', 'marriage'], 'char': '\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc69', fitzpatrick_scale: !1, category: 'people' }, couplekiss_man_man: { keywords: ['pair', 'valentines', 'love', 'like', 'dating', 'marriage'], 'char': '\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68', fitzpatrick_scale: !1, category: 'people' }, family_man_woman_boy: { keywords: ['home', 'parents', 'child', 'mom', 'dad', 'father', 'mother', 'people', 'human'], 'char': '\ud83d\udc6a', fitzpatrick_scale: !1, category: 'people' }, family_man_woman_girl: { keywords: ['home', 'parents', 'people', 'human', 'child'], 'char': '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_man_woman_girl_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_woman_boy_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_woman_girl_girl: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_woman_woman_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_woman_woman_girl: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_woman_woman_girl_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_woman_woman_boy_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_woman_woman_girl_girl: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_man_man_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_man_girl: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_man_man_girl_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_man_boy_boy: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_man_girl_girl: { keywords: ['home', 'parents', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_woman_boy: { keywords: ['home', 'parent', 'people', 'human', 'child'], 'char': '\ud83d\udc69\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_woman_girl: { keywords: ['home', 'parent', 'people', 'human', 'child'], 'char': '\ud83d\udc69\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_woman_girl_boy: { keywords: ['home', 'parent', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_woman_boy_boy: { keywords: ['home', 'parent', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_woman_girl_girl: { keywords: ['home', 'parent', 'people', 'human', 'children'], 'char': '\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_man_boy: { keywords: ['home', 'parent', 'people', 'human', 'child'], 'char': '\ud83d\udc68\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_girl: { keywords: ['home', 'parent', 'people', 'human', 'child'], 'char': '\ud83d\udc68\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, family_man_girl_boy: { keywords: ['home', 'parent', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_boy_boy: { keywords: ['home', 'parent', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66', fitzpatrick_scale: !1, category: 'people' }, family_man_girl_girl: { keywords: ['home', 'parent', 'people', 'human', 'children'], 'char': '\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67', fitzpatrick_scale: !1, category: 'people' }, coat: { keywords: ['jacket'], 'char': '\ud83e\udde5', fitzpatrick_scale: !1, category: 'people' }, womans_clothes: { keywords: ['fashion', 'shopping_bags', 'female'], 'char': '\ud83d\udc5a', fitzpatrick_scale: !1, category: 'people' }, tshirt: { keywords: ['fashion', 'cloth', 'casual', 'shirt', 'tee'], 'char': '\ud83d\udc55', fitzpatrick_scale: !1, category: 'people' }, jeans: { keywords: ['fashion', 'shopping'], 'char': '\ud83d\udc56', fitzpatrick_scale: !1, category: 'people' }, necktie: { keywords: ['shirt', 'suitup', 'formal', 'fashion', 'cloth', 'business'], 'char': '\ud83d\udc54', fitzpatrick_scale: !1, category: 'people' }, dress: { keywords: ['clothes', 'fashion', 'shopping'], 'char': '\ud83d\udc57', fitzpatrick_scale: !1, category: 'people' }, bikini: { keywords: ['swimming', 'female', 'woman', 'girl', 'fashion', 'beach', 'summer'], 'char': '\ud83d\udc59', fitzpatrick_scale: !1, category: 'people' }, kimono: { keywords: ['dress', 'fashion', 'women', 'female', 'japanese'], 'char': '\ud83d\udc58', fitzpatrick_scale: !1, category: 'people' }, lipstick: { keywords: ['female', 'girl', 'fashion', 'woman'], 'char': '\ud83d\udc84', fitzpatrick_scale: !1, category: 'people' }, kiss: { keywords: ['face', 'lips', 'love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc8b', fitzpatrick_scale: !1, category: 'people' }, footprints: { keywords: ['feet', 'tracking', 'walking', 'beach'], 'char': '\ud83d\udc63', fitzpatrick_scale: !1, category: 'people' }, high_heel: { keywords: ['fashion', 'shoes', 'female', 'pumps', 'stiletto'], 'char': '\ud83d\udc60', fitzpatrick_scale: !1, category: 'people' }, sandal: { keywords: ['shoes', 'fashion', 'flip flops'], 'char': '\ud83d\udc61', fitzpatrick_scale: !1, category: 'people' }, boot: { keywords: ['shoes', 'fashion'], 'char': '\ud83d\udc62', fitzpatrick_scale: !1, category: 'people' }, mans_shoe: { keywords: ['fashion', 'male'], 'char': '\ud83d\udc5e', fitzpatrick_scale: !1, category: 'people' }, athletic_shoe: { keywords: ['shoes', 'sports', 'sneakers'], 'char': '\ud83d\udc5f', fitzpatrick_scale: !1, category: 'people' }, socks: { keywords: ['stockings', 'clothes'], 'char': '\ud83e\udde6', fitzpatrick_scale: !1, category: 'people' }, gloves: { keywords: ['hands', 'winter', 'clothes'], 'char': '\ud83e\udde4', fitzpatrick_scale: !1, category: 'people' }, scarf: { keywords: ['neck', 'winter', 'clothes'], 'char': '\ud83e\udde3', fitzpatrick_scale: !1, category: 'people' }, womans_hat: { keywords: ['fashion', 'accessories', 'female', 'lady', 'spring'], 'char': '\ud83d\udc52', fitzpatrick_scale: !1, category: 'people' }, tophat: { keywords: ['magic', 'gentleman', 'classy', 'circus'], 'char': '\ud83c\udfa9', fitzpatrick_scale: !1, category: 'people' }, billed_hat: { keywords: ['cap', 'baseball'], 'char': '\ud83e\udde2', fitzpatrick_scale: !1, category: 'people' }, rescue_worker_helmet: { keywords: ['construction', 'build'], 'char': '\u26d1', fitzpatrick_scale: !1, category: 'people' }, mortar_board: { keywords: ['school', 'college', 'degree', 'university', 'graduation', 'cap', 'hat', 'legal', 'learn', 'education'], 'char': '\ud83c\udf93', fitzpatrick_scale: !1, category: 'people' }, crown: { keywords: ['king', 'kod', 'leader', 'royalty', 'lord'], 'char': '\ud83d\udc51', fitzpatrick_scale: !1, category: 'people' }, school_satchel: { keywords: ['student', 'education', 'bag', 'backpack'], 'char': '\ud83c\udf92', fitzpatrick_scale: !1, category: 'people' }, pouch: { keywords: ['bag', 'accessories', 'shopping'], 'char': '\ud83d\udc5d', fitzpatrick_scale: !1, category: 'people' }, purse: { keywords: ['fashion', 'accessories', 'money', 'sales', 'shopping'], 'char': '\ud83d\udc5b', fitzpatrick_scale: !1, category: 'people' }, handbag: { keywords: ['fashion', 'accessory', 'accessories', 'shopping'], 'char': '\ud83d\udc5c', fitzpatrick_scale: !1, category: 'people' }, briefcase: { keywords: ['business', 'documents', 'work', 'law', 'legal', 'job', 'career'], 'char': '\ud83d\udcbc', fitzpatrick_scale: !1, category: 'people' }, eyeglasses: { keywords: ['fashion', 'accessories', 'eyesight', 'nerdy', 'dork', 'geek'], 'char': '\ud83d\udc53', fitzpatrick_scale: !1, category: 'people' }, dark_sunglasses: { keywords: ['face', 'cool', 'accessories'], 'char': '\ud83d\udd76', fitzpatrick_scale: !1, category: 'people' }, ring: { keywords: ['wedding', 'propose', 'marriage', 'valentines', 'diamond', 'fashion', 'jewelry', 'gem', 'engagement'], 'char': '\ud83d\udc8d', fitzpatrick_scale: !1, category: 'people' }, closed_umbrella: { keywords: ['weather', 'rain', 'drizzle'], 'char': '\ud83c\udf02', fitzpatrick_scale: !1, category: 'people' }, dog: { keywords: ['animal', 'friend', 'nature', 'woof', 'puppy', 'pet', 'faithful'], 'char': '\ud83d\udc36', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cat: { keywords: ['animal', 'meow', 'nature', 'pet', 'kitten'], 'char': '\ud83d\udc31', fitzpatrick_scale: !1, category: 'animals_and_nature' }, mouse: { keywords: ['animal', 'nature', 'cheese_wedge', 'rodent'], 'char': '\ud83d\udc2d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, hamster: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc39', fitzpatrick_scale: !1, category: 'animals_and_nature' }, rabbit: { keywords: ['animal', 'nature', 'pet', 'spring', 'magic', 'bunny'], 'char': '\ud83d\udc30', fitzpatrick_scale: !1, category: 'animals_and_nature' }, fox_face: { keywords: ['animal', 'nature', 'face'], 'char': '\ud83e\udd8a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, bear: { keywords: ['animal', 'nature', 'wild'], 'char': '\ud83d\udc3b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, panda_face: { keywords: ['animal', 'nature', 'panda'], 'char': '\ud83d\udc3c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, koala: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc28', fitzpatrick_scale: !1, category: 'animals_and_nature' }, tiger: { keywords: ['animal', 'cat', 'danger', 'wild', 'nature', 'roar'], 'char': '\ud83d\udc2f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, lion: { keywords: ['animal', 'nature'], 'char': '\ud83e\udd81', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cow: { keywords: ['beef', 'ox', 'animal', 'nature', 'moo', 'milk'], 'char': '\ud83d\udc2e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, pig: { keywords: ['animal', 'oink', 'nature'], 'char': '\ud83d\udc37', fitzpatrick_scale: !1, category: 'animals_and_nature' }, pig_nose: { keywords: ['animal', 'oink'], 'char': '\ud83d\udc3d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, frog: { keywords: ['animal', 'nature', 'croak', 'toad'], 'char': '\ud83d\udc38', fitzpatrick_scale: !1, category: 'animals_and_nature' }, squid: { keywords: ['animal', 'nature', 'ocean', 'sea'], 'char': '\ud83e\udd91', fitzpatrick_scale: !1, category: 'animals_and_nature' }, octopus: { keywords: ['animal', 'creature', 'ocean', 'sea', 'nature', 'beach'], 'char': '\ud83d\udc19', fitzpatrick_scale: !1, category: 'animals_and_nature' }, shrimp: { keywords: ['animal', 'ocean', 'nature', 'seafood'], 'char': '\ud83e\udd90', fitzpatrick_scale: !1, category: 'animals_and_nature' }, monkey_face: { keywords: ['animal', 'nature', 'circus'], 'char': '\ud83d\udc35', fitzpatrick_scale: !1, category: 'animals_and_nature' }, gorilla: { keywords: ['animal', 'nature', 'circus'], 'char': '\ud83e\udd8d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, see_no_evil: { keywords: ['monkey', 'animal', 'nature', 'haha'], 'char': '\ud83d\ude48', fitzpatrick_scale: !1, category: 'animals_and_nature' }, hear_no_evil: { keywords: ['animal', 'monkey', 'nature'], 'char': '\ud83d\ude49', fitzpatrick_scale: !1, category: 'animals_and_nature' }, speak_no_evil: { keywords: ['monkey', 'animal', 'nature', 'omg'], 'char': '\ud83d\ude4a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, monkey: { keywords: ['animal', 'nature', 'banana', 'circus'], 'char': '\ud83d\udc12', fitzpatrick_scale: !1, category: 'animals_and_nature' }, chicken: { keywords: ['animal', 'cluck', 'nature', 'bird'], 'char': '\ud83d\udc14', fitzpatrick_scale: !1, category: 'animals_and_nature' }, penguin: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc27', fitzpatrick_scale: !1, category: 'animals_and_nature' }, bird: { keywords: ['animal', 'nature', 'fly', 'tweet', 'spring'], 'char': '\ud83d\udc26', fitzpatrick_scale: !1, category: 'animals_and_nature' }, baby_chick: { keywords: ['animal', 'chicken', 'bird'], 'char': '\ud83d\udc24', fitzpatrick_scale: !1, category: 'animals_and_nature' }, hatching_chick: { keywords: ['animal', 'chicken', 'egg', 'born', 'baby', 'bird'], 'char': '\ud83d\udc23', fitzpatrick_scale: !1, category: 'animals_and_nature' }, hatched_chick: { keywords: ['animal', 'chicken', 'baby', 'bird'], 'char': '\ud83d\udc25', fitzpatrick_scale: !1, category: 'animals_and_nature' }, duck: { keywords: ['animal', 'nature', 'bird', 'mallard'], 'char': '\ud83e\udd86', fitzpatrick_scale: !1, category: 'animals_and_nature' }, eagle: { keywords: ['animal', 'nature', 'bird'], 'char': '\ud83e\udd85', fitzpatrick_scale: !1, category: 'animals_and_nature' }, owl: { keywords: ['animal', 'nature', 'bird', 'hoot'], 'char': '\ud83e\udd89', fitzpatrick_scale: !1, category: 'animals_and_nature' }, bat: { keywords: ['animal', 'nature', 'blind', 'vampire'], 'char': '\ud83e\udd87', fitzpatrick_scale: !1, category: 'animals_and_nature' }, wolf: { keywords: ['animal', 'nature', 'wild'], 'char': '\ud83d\udc3a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, boar: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc17', fitzpatrick_scale: !1, category: 'animals_and_nature' }, horse: { keywords: ['animal', 'brown', 'nature'], 'char': '\ud83d\udc34', fitzpatrick_scale: !1, category: 'animals_and_nature' }, unicorn: { keywords: ['animal', 'nature', 'mystical'], 'char': '\ud83e\udd84', fitzpatrick_scale: !1, category: 'animals_and_nature' }, honeybee: { keywords: ['animal', 'insect', 'nature', 'bug', 'spring', 'honey'], 'char': '\ud83d\udc1d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, bug: { keywords: ['animal', 'insect', 'nature', 'worm'], 'char': '\ud83d\udc1b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, butterfly: { keywords: ['animal', 'insect', 'nature', 'caterpillar'], 'char': '\ud83e\udd8b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, snail: { keywords: ['slow', 'animal', 'shell'], 'char': '\ud83d\udc0c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, beetle: { keywords: ['animal', 'insect', 'nature', 'ladybug'], 'char': '\ud83d\udc1e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, ant: { keywords: ['animal', 'insect', 'nature', 'bug'], 'char': '\ud83d\udc1c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, grasshopper: { keywords: ['animal', 'cricket', 'chirp'], 'char': '\ud83e\udd97', fitzpatrick_scale: !1, category: 'animals_and_nature' }, spider: { keywords: ['animal', 'arachnid'], 'char': '\ud83d\udd77', fitzpatrick_scale: !1, category: 'animals_and_nature' }, scorpion: { keywords: ['animal', 'arachnid'], 'char': '\ud83e\udd82', fitzpatrick_scale: !1, category: 'animals_and_nature' }, crab: { keywords: ['animal', 'crustacean'], 'char': '\ud83e\udd80', fitzpatrick_scale: !1, category: 'animals_and_nature' }, snake: { keywords: ['animal', 'evil', 'nature', 'hiss', 'python'], 'char': '\ud83d\udc0d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, lizard: { keywords: ['animal', 'nature', 'reptile'], 'char': '\ud83e\udd8e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, 't-rex': { keywords: ['animal', 'nature', 'dinosaur', 'tyrannosaurus', 'extinct'], 'char': '\ud83e\udd96', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sauropod: { keywords: ['animal', 'nature', 'dinosaur', 'brachiosaurus', 'brontosaurus', 'diplodocus', 'extinct'], 'char': '\ud83e\udd95', fitzpatrick_scale: !1, category: 'animals_and_nature' }, turtle: { keywords: ['animal', 'slow', 'nature', 'tortoise'], 'char': '\ud83d\udc22', fitzpatrick_scale: !1, category: 'animals_and_nature' }, tropical_fish: { keywords: ['animal', 'swim', 'ocean', 'beach', 'nemo'], 'char': '\ud83d\udc20', fitzpatrick_scale: !1, category: 'animals_and_nature' }, fish: { keywords: ['animal', 'food', 'nature'], 'char': '\ud83d\udc1f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, blowfish: { keywords: ['animal', 'nature', 'food', 'sea', 'ocean'], 'char': '\ud83d\udc21', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dolphin: { keywords: ['animal', 'nature', 'fish', 'sea', 'ocean', 'flipper', 'fins', 'beach'], 'char': '\ud83d\udc2c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, shark: { keywords: ['animal', 'nature', 'fish', 'sea', 'ocean', 'jaws', 'fins', 'beach'], 'char': '\ud83e\udd88', fitzpatrick_scale: !1, category: 'animals_and_nature' }, whale: { keywords: ['animal', 'nature', 'sea', 'ocean'], 'char': '\ud83d\udc33', fitzpatrick_scale: !1, category: 'animals_and_nature' }, whale2: { keywords: ['animal', 'nature', 'sea', 'ocean'], 'char': '\ud83d\udc0b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, crocodile: { keywords: ['animal', 'nature', 'reptile', 'lizard', 'alligator'], 'char': '\ud83d\udc0a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, leopard: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc06', fitzpatrick_scale: !1, category: 'animals_and_nature' }, zebra: { keywords: ['animal', 'nature', 'stripes', 'safari'], 'char': '\ud83e\udd93', fitzpatrick_scale: !1, category: 'animals_and_nature' }, tiger2: { keywords: ['animal', 'nature', 'roar'], 'char': '\ud83d\udc05', fitzpatrick_scale: !1, category: 'animals_and_nature' }, water_buffalo: { keywords: ['animal', 'nature', 'ox', 'cow'], 'char': '\ud83d\udc03', fitzpatrick_scale: !1, category: 'animals_and_nature' }, ox: { keywords: ['animal', 'cow', 'beef'], 'char': '\ud83d\udc02', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cow2: { keywords: ['beef', 'ox', 'animal', 'nature', 'moo', 'milk'], 'char': '\ud83d\udc04', fitzpatrick_scale: !1, category: 'animals_and_nature' }, deer: { keywords: ['animal', 'nature', 'horns', 'venison'], 'char': '\ud83e\udd8c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dromedary_camel: { keywords: ['animal', 'hot', 'desert', 'hump'], 'char': '\ud83d\udc2a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, camel: { keywords: ['animal', 'nature', 'hot', 'desert', 'hump'], 'char': '\ud83d\udc2b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, giraffe: { keywords: ['animal', 'nature', 'spots', 'safari'], 'char': '\ud83e\udd92', fitzpatrick_scale: !1, category: 'animals_and_nature' }, elephant: { keywords: ['animal', 'nature', 'nose', 'th', 'circus'], 'char': '\ud83d\udc18', fitzpatrick_scale: !1, category: 'animals_and_nature' }, rhinoceros: { keywords: ['animal', 'nature', 'horn'], 'char': '\ud83e\udd8f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, goat: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc10', fitzpatrick_scale: !1, category: 'animals_and_nature' }, ram: { keywords: ['animal', 'sheep', 'nature'], 'char': '\ud83d\udc0f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sheep: { keywords: ['animal', 'nature', 'wool', 'shipit'], 'char': '\ud83d\udc11', fitzpatrick_scale: !1, category: 'animals_and_nature' }, racehorse: { keywords: ['animal', 'gamble', 'luck'], 'char': '\ud83d\udc0e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, pig2: { keywords: ['animal', 'nature'], 'char': '\ud83d\udc16', fitzpatrick_scale: !1, category: 'animals_and_nature' }, rat: { keywords: ['animal', 'mouse', 'rodent'], 'char': '\ud83d\udc00', fitzpatrick_scale: !1, category: 'animals_and_nature' }, mouse2: { keywords: ['animal', 'nature', 'rodent'], 'char': '\ud83d\udc01', fitzpatrick_scale: !1, category: 'animals_and_nature' }, rooster: { keywords: ['animal', 'nature', 'chicken'], 'char': '\ud83d\udc13', fitzpatrick_scale: !1, category: 'animals_and_nature' }, turkey: { keywords: ['animal', 'bird'], 'char': '\ud83e\udd83', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dove: { keywords: ['animal', 'bird'], 'char': '\ud83d\udd4a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dog2: { keywords: ['animal', 'nature', 'friend', 'doge', 'pet', 'faithful'], 'char': '\ud83d\udc15', fitzpatrick_scale: !1, category: 'animals_and_nature' }, poodle: { keywords: ['dog', 'animal', '101', 'nature', 'pet'], 'char': '\ud83d\udc29', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cat2: { keywords: ['animal', 'meow', 'pet', 'cats'], 'char': '\ud83d\udc08', fitzpatrick_scale: !1, category: 'animals_and_nature' }, rabbit2: { keywords: ['animal', 'nature', 'pet', 'magic', 'spring'], 'char': '\ud83d\udc07', fitzpatrick_scale: !1, category: 'animals_and_nature' }, chipmunk: { keywords: ['animal', 'nature', 'rodent', 'squirrel'], 'char': '\ud83d\udc3f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, hedgehog: { keywords: ['animal', 'nature', 'spiny'], 'char': '\ud83e\udd94', fitzpatrick_scale: !1, category: 'animals_and_nature' }, paw_prints: { keywords: ['animal', 'tracking', 'footprints', 'dog', 'cat', 'pet', 'feet'], 'char': '\ud83d\udc3e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dragon: { keywords: ['animal', 'myth', 'nature', 'chinese', 'green'], 'char': '\ud83d\udc09', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dragon_face: { keywords: ['animal', 'myth', 'nature', 'chinese', 'green'], 'char': '\ud83d\udc32', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cactus: { keywords: ['vegetable', 'plant', 'nature'], 'char': '\ud83c\udf35', fitzpatrick_scale: !1, category: 'animals_and_nature' }, christmas_tree: { keywords: ['festival', 'vacation', 'december', 'xmas', 'celebration'], 'char': '\ud83c\udf84', fitzpatrick_scale: !1, category: 'animals_and_nature' }, evergreen_tree: { keywords: ['plant', 'nature'], 'char': '\ud83c\udf32', fitzpatrick_scale: !1, category: 'animals_and_nature' }, deciduous_tree: { keywords: ['plant', 'nature'], 'char': '\ud83c\udf33', fitzpatrick_scale: !1, category: 'animals_and_nature' }, palm_tree: { keywords: ['plant', 'vegetable', 'nature', 'summer', 'beach', 'mojito', 'tropical'], 'char': '\ud83c\udf34', fitzpatrick_scale: !1, category: 'animals_and_nature' }, seedling: { keywords: ['plant', 'nature', 'grass', 'lawn', 'spring'], 'char': '\ud83c\udf31', fitzpatrick_scale: !1, category: 'animals_and_nature' }, herb: { keywords: ['vegetable', 'plant', 'medicine', 'weed', 'grass', 'lawn'], 'char': '\ud83c\udf3f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, shamrock: { keywords: ['vegetable', 'plant', 'nature', 'irish', 'clover'], 'char': '\u2618', fitzpatrick_scale: !1, category: 'animals_and_nature' }, four_leaf_clover: { keywords: ['vegetable', 'plant', 'nature', 'lucky', 'irish'], 'char': '\ud83c\udf40', fitzpatrick_scale: !1, category: 'animals_and_nature' }, bamboo: { keywords: ['plant', 'nature', 'vegetable', 'panda', 'pine_decoration'], 'char': '\ud83c\udf8d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, tanabata_tree: { keywords: ['plant', 'nature', 'branch', 'summer'], 'char': '\ud83c\udf8b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, leaves: { keywords: ['nature', 'plant', 'tree', 'vegetable', 'grass', 'lawn', 'spring'], 'char': '\ud83c\udf43', fitzpatrick_scale: !1, category: 'animals_and_nature' }, fallen_leaf: { keywords: ['nature', 'plant', 'vegetable', 'leaves'], 'char': '\ud83c\udf42', fitzpatrick_scale: !1, category: 'animals_and_nature' }, maple_leaf: { keywords: ['nature', 'plant', 'vegetable', 'ca', 'fall'], 'char': '\ud83c\udf41', fitzpatrick_scale: !1, category: 'animals_and_nature' }, ear_of_rice: { keywords: ['nature', 'plant'], 'char': '\ud83c\udf3e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, hibiscus: { keywords: ['plant', 'vegetable', 'flowers', 'beach'], 'char': '\ud83c\udf3a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sunflower: { keywords: ['nature', 'plant', 'fall'], 'char': '\ud83c\udf3b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, rose: { keywords: ['flowers', 'valentines', 'love', 'spring'], 'char': '\ud83c\udf39', fitzpatrick_scale: !1, category: 'animals_and_nature' }, wilted_flower: { keywords: ['plant', 'nature', 'flower'], 'char': '\ud83e\udd40', fitzpatrick_scale: !1, category: 'animals_and_nature' }, tulip: { keywords: ['flowers', 'plant', 'nature', 'summer', 'spring'], 'char': '\ud83c\udf37', fitzpatrick_scale: !1, category: 'animals_and_nature' }, blossom: { keywords: ['nature', 'flowers', 'yellow'], 'char': '\ud83c\udf3c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cherry_blossom: { keywords: ['nature', 'plant', 'spring', 'flower'], 'char': '\ud83c\udf38', fitzpatrick_scale: !1, category: 'animals_and_nature' }, bouquet: { keywords: ['flowers', 'nature', 'spring'], 'char': '\ud83d\udc90', fitzpatrick_scale: !1, category: 'animals_and_nature' }, mushroom: { keywords: ['plant', 'vegetable'], 'char': '\ud83c\udf44', fitzpatrick_scale: !1, category: 'animals_and_nature' }, chestnut: { keywords: ['food', 'squirrel'], 'char': '\ud83c\udf30', fitzpatrick_scale: !1, category: 'animals_and_nature' }, jack_o_lantern: { keywords: ['halloween', 'light', 'pumpkin', 'creepy', 'fall'], 'char': '\ud83c\udf83', fitzpatrick_scale: !1, category: 'animals_and_nature' }, shell: { keywords: ['nature', 'sea', 'beach'], 'char': '\ud83d\udc1a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, spider_web: { keywords: ['animal', 'insect', 'arachnid', 'silk'], 'char': '\ud83d\udd78', fitzpatrick_scale: !1, category: 'animals_and_nature' }, earth_americas: { keywords: ['globe', 'world', 'USA', 'international'], 'char': '\ud83c\udf0e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, earth_africa: { keywords: ['globe', 'world', 'international'], 'char': '\ud83c\udf0d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, earth_asia: { keywords: ['globe', 'world', 'east', 'international'], 'char': '\ud83c\udf0f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, full_moon: { keywords: ['nature', 'yellow', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf15', fitzpatrick_scale: !1, category: 'animals_and_nature' }, waning_gibbous_moon: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep', 'waxing_gibbous_moon'], 'char': '\ud83c\udf16', fitzpatrick_scale: !1, category: 'animals_and_nature' }, last_quarter_moon: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf17', fitzpatrick_scale: !1, category: 'animals_and_nature' }, waning_crescent_moon: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf18', fitzpatrick_scale: !1, category: 'animals_and_nature' }, new_moon: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf11', fitzpatrick_scale: !1, category: 'animals_and_nature' }, waxing_crescent_moon: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf12', fitzpatrick_scale: !1, category: 'animals_and_nature' }, first_quarter_moon: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf13', fitzpatrick_scale: !1, category: 'animals_and_nature' }, waxing_gibbous_moon: { keywords: ['nature', 'night', 'sky', 'gray', 'twilight', 'planet', 'space', 'evening', 'sleep'], 'char': '\ud83c\udf14', fitzpatrick_scale: !1, category: 'animals_and_nature' }, new_moon_with_face: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf1a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, full_moon_with_face: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf1d', fitzpatrick_scale: !1, category: 'animals_and_nature' }, first_quarter_moon_with_face: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf1b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, last_quarter_moon_with_face: { keywords: ['nature', 'twilight', 'planet', 'space', 'night', 'evening', 'sleep'], 'char': '\ud83c\udf1c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sun_with_face: { keywords: ['nature', 'morning', 'sky'], 'char': '\ud83c\udf1e', fitzpatrick_scale: !1, category: 'animals_and_nature' }, crescent_moon: { keywords: ['night', 'sleep', 'sky', 'evening', 'magic'], 'char': '\ud83c\udf19', fitzpatrick_scale: !1, category: 'animals_and_nature' }, star: { keywords: ['night', 'yellow'], 'char': '\u2b50', fitzpatrick_scale: !1, category: 'animals_and_nature' }, star2: { keywords: ['night', 'sparkle', 'awesome', 'good', 'magic'], 'char': '\ud83c\udf1f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dizzy: { keywords: ['star', 'sparkle', 'shoot', 'magic'], 'char': '\ud83d\udcab', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sparkles: { keywords: ['stars', 'shine', 'shiny', 'cool', 'awesome', 'good', 'magic'], 'char': '\u2728', fitzpatrick_scale: !1, category: 'animals_and_nature' }, comet: { keywords: ['space'], 'char': '\u2604', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sunny: { keywords: ['weather', 'nature', 'brightness', 'summer', 'beach', 'spring'], 'char': '\u2600\ufe0f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sun_behind_small_cloud: { keywords: ['weather'], 'char': '\ud83c\udf24', fitzpatrick_scale: !1, category: 'animals_and_nature' }, partly_sunny: { keywords: ['weather', 'nature', 'cloudy', 'morning', 'fall', 'spring'], 'char': '\u26c5', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sun_behind_large_cloud: { keywords: ['weather'], 'char': '\ud83c\udf25', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sun_behind_rain_cloud: { keywords: ['weather'], 'char': '\ud83c\udf26', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cloud: { keywords: ['weather', 'sky'], 'char': '\u2601\ufe0f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cloud_with_rain: { keywords: ['weather'], 'char': '\ud83c\udf27', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cloud_with_lightning_and_rain: { keywords: ['weather', 'lightning'], 'char': '\u26c8', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cloud_with_lightning: { keywords: ['weather', 'thunder'], 'char': '\ud83c\udf29', fitzpatrick_scale: !1, category: 'animals_and_nature' }, zap: { keywords: ['thunder', 'weather', 'lightning bolt', 'fast'], 'char': '\u26a1', fitzpatrick_scale: !1, category: 'animals_and_nature' }, fire: { keywords: ['hot', 'cook', 'flame'], 'char': '\ud83d\udd25', fitzpatrick_scale: !1, category: 'animals_and_nature' }, boom: { keywords: ['bomb', 'explode', 'explosion', 'collision', 'blown'], 'char': '\ud83d\udca5', fitzpatrick_scale: !1, category: 'animals_and_nature' }, snowflake: { keywords: ['winter', 'season', 'cold', 'weather', 'christmas', 'xmas'], 'char': '\u2744\ufe0f', fitzpatrick_scale: !1, category: 'animals_and_nature' }, cloud_with_snow: { keywords: ['weather'], 'char': '\ud83c\udf28', fitzpatrick_scale: !1, category: 'animals_and_nature' }, snowman: { keywords: ['winter', 'season', 'cold', 'weather', 'christmas', 'xmas', 'frozen', 'without_snow'], 'char': '\u26c4', fitzpatrick_scale: !1, category: 'animals_and_nature' }, snowman_with_snow: { keywords: ['winter', 'season', 'cold', 'weather', 'christmas', 'xmas', 'frozen'], 'char': '\u2603', fitzpatrick_scale: !1, category: 'animals_and_nature' }, wind_face: { keywords: ['gust', 'air'], 'char': '\ud83c\udf2c', fitzpatrick_scale: !1, category: 'animals_and_nature' }, dash: { keywords: ['wind', 'air', 'fast', 'shoo', 'fart', 'smoke', 'puff'], 'char': '\ud83d\udca8', fitzpatrick_scale: !1, category: 'animals_and_nature' }, tornado: { keywords: ['weather', 'cyclone', 'twister'], 'char': '\ud83c\udf2a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, fog: { keywords: ['weather'], 'char': '\ud83c\udf2b', fitzpatrick_scale: !1, category: 'animals_and_nature' }, open_umbrella: { keywords: ['weather', 'spring'], 'char': '\u2602', fitzpatrick_scale: !1, category: 'animals_and_nature' }, umbrella: { keywords: ['rainy', 'weather', 'spring'], 'char': '\u2614', fitzpatrick_scale: !1, category: 'animals_and_nature' }, droplet: { keywords: ['water', 'drip', 'faucet', 'spring'], 'char': '\ud83d\udca7', fitzpatrick_scale: !1, category: 'animals_and_nature' }, sweat_drops: { keywords: ['water', 'drip', 'oops'], 'char': '\ud83d\udca6', fitzpatrick_scale: !1, category: 'animals_and_nature' }, ocean: { keywords: ['sea', 'water', 'wave', 'nature', 'tsunami', 'disaster'], 'char': '\ud83c\udf0a', fitzpatrick_scale: !1, category: 'animals_and_nature' }, green_apple: { keywords: ['fruit', 'nature'], 'char': '\ud83c\udf4f', fitzpatrick_scale: !1, category: 'food_and_drink' }, apple: { keywords: ['fruit', 'mac', 'school'], 'char': '\ud83c\udf4e', fitzpatrick_scale: !1, category: 'food_and_drink' }, pear: { keywords: ['fruit', 'nature', 'food'], 'char': '\ud83c\udf50', fitzpatrick_scale: !1, category: 'food_and_drink' }, tangerine: { keywords: ['food', 'fruit', 'nature', 'orange'], 'char': '\ud83c\udf4a', fitzpatrick_scale: !1, category: 'food_and_drink' }, lemon: { keywords: ['fruit', 'nature'], 'char': '\ud83c\udf4b', fitzpatrick_scale: !1, category: 'food_and_drink' }, banana: { keywords: ['fruit', 'food', 'monkey'], 'char': '\ud83c\udf4c', fitzpatrick_scale: !1, category: 'food_and_drink' }, watermelon: { keywords: ['fruit', 'food', 'picnic', 'summer'], 'char': '\ud83c\udf49', fitzpatrick_scale: !1, category: 'food_and_drink' }, grapes: { keywords: ['fruit', 'food', 'wine'], 'char': '\ud83c\udf47', fitzpatrick_scale: !1, category: 'food_and_drink' }, strawberry: { keywords: ['fruit', 'food', 'nature'], 'char': '\ud83c\udf53', fitzpatrick_scale: !1, category: 'food_and_drink' }, melon: { keywords: ['fruit', 'nature', 'food'], 'char': '\ud83c\udf48', fitzpatrick_scale: !1, category: 'food_and_drink' }, cherries: { keywords: ['food', 'fruit'], 'char': '\ud83c\udf52', fitzpatrick_scale: !1, category: 'food_and_drink' }, peach: { keywords: ['fruit', 'nature', 'food'], 'char': '\ud83c\udf51', fitzpatrick_scale: !1, category: 'food_and_drink' }, pineapple: { keywords: ['fruit', 'nature', 'food'], 'char': '\ud83c\udf4d', fitzpatrick_scale: !1, category: 'food_and_drink' }, coconut: { keywords: ['fruit', 'nature', 'food', 'palm'], 'char': '\ud83e\udd65', fitzpatrick_scale: !1, category: 'food_and_drink' }, kiwi_fruit: { keywords: ['fruit', 'food'], 'char': '\ud83e\udd5d', fitzpatrick_scale: !1, category: 'food_and_drink' }, avocado: { keywords: ['fruit', 'food'], 'char': '\ud83e\udd51', fitzpatrick_scale: !1, category: 'food_and_drink' }, broccoli: { keywords: ['fruit', 'food', 'vegetable'], 'char': '\ud83e\udd66', fitzpatrick_scale: !1, category: 'food_and_drink' }, tomato: { keywords: ['fruit', 'vegetable', 'nature', 'food'], 'char': '\ud83c\udf45', fitzpatrick_scale: !1, category: 'food_and_drink' }, eggplant: { keywords: ['vegetable', 'nature', 'food', 'aubergine'], 'char': '\ud83c\udf46', fitzpatrick_scale: !1, category: 'food_and_drink' }, cucumber: { keywords: ['fruit', 'food', 'pickle'], 'char': '\ud83e\udd52', fitzpatrick_scale: !1, category: 'food_and_drink' }, carrot: { keywords: ['vegetable', 'food', 'orange'], 'char': '\ud83e\udd55', fitzpatrick_scale: !1, category: 'food_and_drink' }, hot_pepper: { keywords: ['food', 'spicy', 'chilli', 'chili'], 'char': '\ud83c\udf36', fitzpatrick_scale: !1, category: 'food_and_drink' }, potato: { keywords: ['food', 'tuber', 'vegatable', 'starch'], 'char': '\ud83e\udd54', fitzpatrick_scale: !1, category: 'food_and_drink' }, corn: { keywords: ['food', 'vegetable', 'plant'], 'char': '\ud83c\udf3d', fitzpatrick_scale: !1, category: 'food_and_drink' }, sweet_potato: { keywords: ['food', 'nature'], 'char': '\ud83c\udf60', fitzpatrick_scale: !1, category: 'food_and_drink' }, peanuts: { keywords: ['food', 'nut'], 'char': '\ud83e\udd5c', fitzpatrick_scale: !1, category: 'food_and_drink' }, honey_pot: { keywords: ['bees', 'sweet', 'kitchen'], 'char': '\ud83c\udf6f', fitzpatrick_scale: !1, category: 'food_and_drink' }, croissant: { keywords: ['food', 'bread', 'french'], 'char': '\ud83e\udd50', fitzpatrick_scale: !1, category: 'food_and_drink' }, bread: { keywords: ['food', 'wheat', 'breakfast', 'toast'], 'char': '\ud83c\udf5e', fitzpatrick_scale: !1, category: 'food_and_drink' }, baguette_bread: { keywords: ['food', 'bread', 'french'], 'char': '\ud83e\udd56', fitzpatrick_scale: !1, category: 'food_and_drink' }, pretzel: { keywords: ['food', 'bread', 'twisted'], 'char': '\ud83e\udd68', fitzpatrick_scale: !1, category: 'food_and_drink' }, cheese: { keywords: ['food', 'chadder'], 'char': '\ud83e\uddc0', fitzpatrick_scale: !1, category: 'food_and_drink' }, egg: { keywords: ['food', 'chicken', 'breakfast'], 'char': '\ud83e\udd5a', fitzpatrick_scale: !1, category: 'food_and_drink' }, bacon: { keywords: ['food', 'breakfast', 'pork', 'pig', 'meat'], 'char': '\ud83e\udd53', fitzpatrick_scale: !1, category: 'food_and_drink' }, steak: { keywords: ['food', 'cow', 'meat', 'cut', 'chop', 'lambchop', 'porkchop'], 'char': '\ud83e\udd69', fitzpatrick_scale: !1, category: 'food_and_drink' }, pancakes: { keywords: ['food', 'breakfast', 'flapjacks', 'hotcakes'], 'char': '\ud83e\udd5e', fitzpatrick_scale: !1, category: 'food_and_drink' }, poultry_leg: { keywords: ['food', 'meat', 'drumstick', 'bird', 'chicken', 'turkey'], 'char': '\ud83c\udf57', fitzpatrick_scale: !1, category: 'food_and_drink' }, meat_on_bone: { keywords: ['good', 'food', 'drumstick'], 'char': '\ud83c\udf56', fitzpatrick_scale: !1, category: 'food_and_drink' }, fried_shrimp: { keywords: ['food', 'animal', 'appetizer', 'summer'], 'char': '\ud83c\udf64', fitzpatrick_scale: !1, category: 'food_and_drink' }, fried_egg: { keywords: ['food', 'breakfast', 'kitchen', 'egg'], 'char': '\ud83c\udf73', fitzpatrick_scale: !1, category: 'food_and_drink' }, hamburger: { keywords: ['meat', 'fast food', 'beef', 'cheeseburger', 'mcdonalds', 'burger king'], 'char': '\ud83c\udf54', fitzpatrick_scale: !1, category: 'food_and_drink' }, fries: { keywords: ['chips', 'snack', 'fast food'], 'char': '\ud83c\udf5f', fitzpatrick_scale: !1, category: 'food_and_drink' }, stuffed_flatbread: { keywords: ['food', 'flatbread', 'stuffed', 'gyro'], 'char': '\ud83e\udd59', fitzpatrick_scale: !1, category: 'food_and_drink' }, hotdog: { keywords: ['food', 'frankfurter'], 'char': '\ud83c\udf2d', fitzpatrick_scale: !1, category: 'food_and_drink' }, pizza: { keywords: ['food', 'party'], 'char': '\ud83c\udf55', fitzpatrick_scale: !1, category: 'food_and_drink' }, sandwich: { keywords: ['food', 'lunch', 'bread'], 'char': '\ud83e\udd6a', fitzpatrick_scale: !1, category: 'food_and_drink' }, canned_food: { keywords: ['food', 'soup'], 'char': '\ud83e\udd6b', fitzpatrick_scale: !1, category: 'food_and_drink' }, spaghetti: { keywords: ['food', 'italian', 'noodle'], 'char': '\ud83c\udf5d', fitzpatrick_scale: !1, category: 'food_and_drink' }, taco: { keywords: ['food', 'mexican'], 'char': '\ud83c\udf2e', fitzpatrick_scale: !1, category: 'food_and_drink' }, burrito: { keywords: ['food', 'mexican'], 'char': '\ud83c\udf2f', fitzpatrick_scale: !1, category: 'food_and_drink' }, green_salad: { keywords: ['food', 'healthy', 'lettuce'], 'char': '\ud83e\udd57', fitzpatrick_scale: !1, category: 'food_and_drink' }, shallow_pan_of_food: { keywords: ['food', 'cooking', 'casserole', 'paella'], 'char': '\ud83e\udd58', fitzpatrick_scale: !1, category: 'food_and_drink' }, ramen: { keywords: ['food', 'japanese', 'noodle', 'chopsticks'], 'char': '\ud83c\udf5c', fitzpatrick_scale: !1, category: 'food_and_drink' }, stew: { keywords: ['food', 'meat', 'soup'], 'char': '\ud83c\udf72', fitzpatrick_scale: !1, category: 'food_and_drink' }, fish_cake: { keywords: ['food', 'japan', 'sea', 'beach', 'narutomaki', 'pink', 'swirl', 'kamaboko', 'surimi', 'ramen'], 'char': '\ud83c\udf65', fitzpatrick_scale: !1, category: 'food_and_drink' }, fortune_cookie: { keywords: ['food', 'prophecy'], 'char': '\ud83e\udd60', fitzpatrick_scale: !1, category: 'food_and_drink' }, sushi: { keywords: ['food', 'fish', 'japanese', 'rice'], 'char': '\ud83c\udf63', fitzpatrick_scale: !1, category: 'food_and_drink' }, bento: { keywords: ['food', 'japanese', 'box'], 'char': '\ud83c\udf71', fitzpatrick_scale: !1, category: 'food_and_drink' }, curry: { keywords: ['food', 'spicy', 'hot', 'indian'], 'char': '\ud83c\udf5b', fitzpatrick_scale: !1, category: 'food_and_drink' }, rice_ball: { keywords: ['food', 'japanese'], 'char': '\ud83c\udf59', fitzpatrick_scale: !1, category: 'food_and_drink' }, rice: { keywords: ['food', 'china', 'asian'], 'char': '\ud83c\udf5a', fitzpatrick_scale: !1, category: 'food_and_drink' }, rice_cracker: { keywords: ['food', 'japanese'], 'char': '\ud83c\udf58', fitzpatrick_scale: !1, category: 'food_and_drink' }, oden: { keywords: ['food', 'japanese'], 'char': '\ud83c\udf62', fitzpatrick_scale: !1, category: 'food_and_drink' }, dango: { keywords: ['food', 'dessert', 'sweet', 'japanese', 'barbecue', 'meat'], 'char': '\ud83c\udf61', fitzpatrick_scale: !1, category: 'food_and_drink' }, shaved_ice: { keywords: ['hot', 'dessert', 'summer'], 'char': '\ud83c\udf67', fitzpatrick_scale: !1, category: 'food_and_drink' }, ice_cream: { keywords: ['food', 'hot', 'dessert'], 'char': '\ud83c\udf68', fitzpatrick_scale: !1, category: 'food_and_drink' }, icecream: { keywords: ['food', 'hot', 'dessert', 'summer'], 'char': '\ud83c\udf66', fitzpatrick_scale: !1, category: 'food_and_drink' }, pie: { keywords: ['food', 'dessert', 'pastry'], 'char': '\ud83e\udd67', fitzpatrick_scale: !1, category: 'food_and_drink' }, cake: { keywords: ['food', 'dessert'], 'char': '\ud83c\udf70', fitzpatrick_scale: !1, category: 'food_and_drink' }, birthday: { keywords: ['food', 'dessert', 'cake'], 'char': '\ud83c\udf82', fitzpatrick_scale: !1, category: 'food_and_drink' }, custard: { keywords: ['dessert', 'food'], 'char': '\ud83c\udf6e', fitzpatrick_scale: !1, category: 'food_and_drink' }, candy: { keywords: ['snack', 'dessert', 'sweet', 'lolly'], 'char': '\ud83c\udf6c', fitzpatrick_scale: !1, category: 'food_and_drink' }, lollipop: { keywords: ['food', 'snack', 'candy', 'sweet'], 'char': '\ud83c\udf6d', fitzpatrick_scale: !1, category: 'food_and_drink' }, chocolate_bar: { keywords: ['food', 'snack', 'dessert', 'sweet'], 'char': '\ud83c\udf6b', fitzpatrick_scale: !1, category: 'food_and_drink' }, popcorn: { keywords: ['food', 'movie theater', 'films', 'snack'], 'char': '\ud83c\udf7f', fitzpatrick_scale: !1, category: 'food_and_drink' }, dumpling: { keywords: ['food', 'empanada', 'pierogi', 'potsticker'], 'char': '\ud83e\udd5f', fitzpatrick_scale: !1, category: 'food_and_drink' }, doughnut: { keywords: ['food', 'dessert', 'snack', 'sweet', 'donut'], 'char': '\ud83c\udf69', fitzpatrick_scale: !1, category: 'food_and_drink' }, cookie: { keywords: ['food', 'snack', 'oreo', 'chocolate', 'sweet', 'dessert'], 'char': '\ud83c\udf6a', fitzpatrick_scale: !1, category: 'food_and_drink' }, milk_glass: { keywords: ['beverage', 'drink', 'cow'], 'char': '\ud83e\udd5b', fitzpatrick_scale: !1, category: 'food_and_drink' }, beer: { keywords: ['relax', 'beverage', 'drink', 'drunk', 'party', 'pub', 'summer', 'alcohol', 'booze'], 'char': '\ud83c\udf7a', fitzpatrick_scale: !1, category: 'food_and_drink' }, beers: { keywords: ['relax', 'beverage', 'drink', 'drunk', 'party', 'pub', 'summer', 'alcohol', 'booze'], 'char': '\ud83c\udf7b', fitzpatrick_scale: !1, category: 'food_and_drink' }, clinking_glasses: { keywords: ['beverage', 'drink', 'party', 'alcohol', 'celebrate', 'cheers', 'wine', 'champagne', 'toast'], 'char': '\ud83e\udd42', fitzpatrick_scale: !1, category: 'food_and_drink' }, wine_glass: { keywords: ['drink', 'beverage', 'drunk', 'alcohol', 'booze'], 'char': '\ud83c\udf77', fitzpatrick_scale: !1, category: 'food_and_drink' }, tumbler_glass: { keywords: ['drink', 'beverage', 'drunk', 'alcohol', 'liquor', 'booze', 'bourbon', 'scotch', 'whisky', 'glass', 'shot'], 'char': '\ud83e\udd43', fitzpatrick_scale: !1, category: 'food_and_drink' }, cocktail: { keywords: ['drink', 'drunk', 'alcohol', 'beverage', 'booze', 'mojito'], 'char': '\ud83c\udf78', fitzpatrick_scale: !1, category: 'food_and_drink' }, tropical_drink: { keywords: ['beverage', 'cocktail', 'summer', 'beach', 'alcohol', 'booze', 'mojito'], 'char': '\ud83c\udf79', fitzpatrick_scale: !1, category: 'food_and_drink' }, champagne: { keywords: ['drink', 'wine', 'bottle', 'celebration'], 'char': '\ud83c\udf7e', fitzpatrick_scale: !1, category: 'food_and_drink' }, sake: { keywords: ['wine', 'drink', 'drunk', 'beverage', 'japanese', 'alcohol', 'booze'], 'char': '\ud83c\udf76', fitzpatrick_scale: !1, category: 'food_and_drink' }, tea: { keywords: ['drink', 'bowl', 'breakfast', 'green', 'british'], 'char': '\ud83c\udf75', fitzpatrick_scale: !1, category: 'food_and_drink' }, cup_with_straw: { keywords: ['drink', 'soda'], 'char': '\ud83e\udd64', fitzpatrick_scale: !1, category: 'food_and_drink' }, coffee: { keywords: ['beverage', 'caffeine', 'latte', 'espresso'], 'char': '\u2615', fitzpatrick_scale: !1, category: 'food_and_drink' }, baby_bottle: { keywords: ['food', 'container', 'milk'], 'char': '\ud83c\udf7c', fitzpatrick_scale: !1, category: 'food_and_drink' }, spoon: { keywords: ['cutlery', 'kitchen', 'tableware'], 'char': '\ud83e\udd44', fitzpatrick_scale: !1, category: 'food_and_drink' }, fork_and_knife: { keywords: ['cutlery', 'kitchen'], 'char': '\ud83c\udf74', fitzpatrick_scale: !1, category: 'food_and_drink' }, plate_with_cutlery: { keywords: ['food', 'eat', 'meal', 'lunch', 'dinner', 'restaurant'], 'char': '\ud83c\udf7d', fitzpatrick_scale: !1, category: 'food_and_drink' }, bowl_with_spoon: { keywords: ['food', 'breakfast', 'cereal', 'oatmeal', 'porridge'], 'char': '\ud83e\udd63', fitzpatrick_scale: !1, category: 'food_and_drink' }, takeout_box: { keywords: ['food', 'leftovers'], 'char': '\ud83e\udd61', fitzpatrick_scale: !1, category: 'food_and_drink' }, chopsticks: { keywords: ['food'], 'char': '\ud83e\udd62', fitzpatrick_scale: !1, category: 'food_and_drink' }, soccer: { keywords: ['sports', 'football'], 'char': '\u26bd', fitzpatrick_scale: !1, category: 'activity' }, basketball: { keywords: ['sports', 'balls', 'NBA'], 'char': '\ud83c\udfc0', fitzpatrick_scale: !1, category: 'activity' }, football: { keywords: ['sports', 'balls', 'NFL'], 'char': '\ud83c\udfc8', fitzpatrick_scale: !1, category: 'activity' }, baseball: { keywords: ['sports', 'balls'], 'char': '\u26be', fitzpatrick_scale: !1, category: 'activity' }, tennis: { keywords: ['sports', 'balls', 'green'], 'char': '\ud83c\udfbe', fitzpatrick_scale: !1, category: 'activity' }, volleyball: { keywords: ['sports', 'balls'], 'char': '\ud83c\udfd0', fitzpatrick_scale: !1, category: 'activity' }, rugby_football: { keywords: ['sports', 'team'], 'char': '\ud83c\udfc9', fitzpatrick_scale: !1, category: 'activity' }, '8ball': { keywords: ['pool', 'hobby', 'game', 'luck', 'magic'], 'char': '\ud83c\udfb1', fitzpatrick_scale: !1, category: 'activity' }, golf: { keywords: ['sports', 'business', 'flag', 'hole', 'summer'], 'char': '\u26f3', fitzpatrick_scale: !1, category: 'activity' }, golfing_woman: { keywords: ['sports', 'business', 'woman', 'female'], 'char': '\ud83c\udfcc\ufe0f\u200d\u2640\ufe0f', fitzpatrick_scale: !1, category: 'activity' }, golfing_man: { keywords: ['sports', 'business'], 'char': '\ud83c\udfcc', fitzpatrick_scale: !0, category: 'activity' }, ping_pong: { keywords: ['sports', 'pingpong'], 'char': '\ud83c\udfd3', fitzpatrick_scale: !1, category: 'activity' }, badminton: { keywords: ['sports'], 'char': '\ud83c\udff8', fitzpatrick_scale: !1, category: 'activity' }, goal_net: { keywords: ['sports'], 'char': '\ud83e\udd45', fitzpatrick_scale: !1, category: 'activity' }, ice_hockey: { keywords: ['sports'], 'char': '\ud83c\udfd2', fitzpatrick_scale: !1, category: 'activity' }, field_hockey: { keywords: ['sports'], 'char': '\ud83c\udfd1', fitzpatrick_scale: !1, category: 'activity' }, cricket: { keywords: ['sports'], 'char': '\ud83c\udfcf', fitzpatrick_scale: !1, category: 'activity' }, ski: { keywords: ['sports', 'winter', 'cold', 'snow'], 'char': '\ud83c\udfbf', fitzpatrick_scale: !1, category: 'activity' }, skier: { keywords: ['sports', 'winter', 'snow'], 'char': '\u26f7', fitzpatrick_scale: !1, category: 'activity' }, snowboarder: { keywords: ['sports', 'winter'], 'char': '\ud83c\udfc2', fitzpatrick_scale: !0, category: 'activity' }, person_fencing: { keywords: ['sports', 'fencing', 'sword'], 'char': '\ud83e\udd3a', fitzpatrick_scale: !1, category: 'activity' }, women_wrestling: { keywords: ['sports', 'wrestlers'], 'char': '\ud83e\udd3c\u200d\u2640\ufe0f', fitzpatrick_scale: !1, category: 'activity' }, men_wrestling: { keywords: ['sports', 'wrestlers'], 'char': '\ud83e\udd3c\u200d\u2642\ufe0f', fitzpatrick_scale: !1, category: 'activity' }, woman_cartwheeling: { keywords: ['gymnastics'], 'char': '\ud83e\udd38\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, man_cartwheeling: { keywords: ['gymnastics'], 'char': '\ud83e\udd38\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, woman_playing_handball: { keywords: ['sports'], 'char': '\ud83e\udd3e\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, man_playing_handball: { keywords: ['sports'], 'char': '\ud83e\udd3e\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, ice_skate: { keywords: ['sports'], 'char': '\u26f8', fitzpatrick_scale: !1, category: 'activity' }, curling_stone: { keywords: ['sports'], 'char': '\ud83e\udd4c', fitzpatrick_scale: !1, category: 'activity' }, sled: { keywords: ['sleigh', 'luge', 'toboggan'], 'char': '\ud83d\udef7', fitzpatrick_scale: !1, category: 'activity' }, bow_and_arrow: { keywords: ['sports'], 'char': '\ud83c\udff9', fitzpatrick_scale: !1, category: 'activity' }, fishing_pole_and_fish: { keywords: ['food', 'hobby', 'summer'], 'char': '\ud83c\udfa3', fitzpatrick_scale: !1, category: 'activity' }, boxing_glove: { keywords: ['sports', 'fighting'], 'char': '\ud83e\udd4a', fitzpatrick_scale: !1, category: 'activity' }, martial_arts_uniform: { keywords: ['judo', 'karate', 'taekwondo'], 'char': '\ud83e\udd4b', fitzpatrick_scale: !1, category: 'activity' }, rowing_woman: { keywords: ['sports', 'hobby', 'water', 'ship', 'woman', 'female'], 'char': '\ud83d\udea3\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, rowing_man: { keywords: ['sports', 'hobby', 'water', 'ship'], 'char': '\ud83d\udea3', fitzpatrick_scale: !0, category: 'activity' }, climbing_woman: { keywords: ['sports', 'hobby', 'woman', 'female', 'rock'], 'char': '\ud83e\uddd7\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, climbing_man: { keywords: ['sports', 'hobby', 'man', 'male', 'rock'], 'char': '\ud83e\uddd7\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, swimming_woman: { keywords: ['sports', 'exercise', 'human', 'athlete', 'water', 'summer', 'woman', 'female'], 'char': '\ud83c\udfca\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, swimming_man: { keywords: ['sports', 'exercise', 'human', 'athlete', 'water', 'summer'], 'char': '\ud83c\udfca', fitzpatrick_scale: !0, category: 'activity' }, woman_playing_water_polo: { keywords: ['sports', 'pool'], 'char': '\ud83e\udd3d\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, man_playing_water_polo: { keywords: ['sports', 'pool'], 'char': '\ud83e\udd3d\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, woman_in_lotus_position: { keywords: ['woman', 'female', 'meditation', 'yoga', 'serenity', 'zen', 'mindfulness'], 'char': '\ud83e\uddd8\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, man_in_lotus_position: { keywords: ['man', 'male', 'meditation', 'yoga', 'serenity', 'zen', 'mindfulness'], 'char': '\ud83e\uddd8\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, surfing_woman: { keywords: ['sports', 'ocean', 'sea', 'summer', 'beach', 'woman', 'female'], 'char': '\ud83c\udfc4\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, surfing_man: { keywords: ['sports', 'ocean', 'sea', 'summer', 'beach'], 'char': '\ud83c\udfc4', fitzpatrick_scale: !0, category: 'activity' }, bath: { keywords: ['clean', 'shower', 'bathroom'], 'char': '\ud83d\udec0', fitzpatrick_scale: !0, category: 'activity' }, basketball_woman: { keywords: ['sports', 'human', 'woman', 'female'], 'char': '\u26f9\ufe0f\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, basketball_man: { keywords: ['sports', 'human'], 'char': '\u26f9', fitzpatrick_scale: !0, category: 'activity' }, weight_lifting_woman: { keywords: ['sports', 'training', 'exercise', 'woman', 'female'], 'char': '\ud83c\udfcb\ufe0f\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, weight_lifting_man: { keywords: ['sports', 'training', 'exercise'], 'char': '\ud83c\udfcb', fitzpatrick_scale: !0, category: 'activity' }, biking_woman: { keywords: ['sports', 'bike', 'exercise', 'hipster', 'woman', 'female'], 'char': '\ud83d\udeb4\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, biking_man: { keywords: ['sports', 'bike', 'exercise', 'hipster'], 'char': '\ud83d\udeb4', fitzpatrick_scale: !0, category: 'activity' }, mountain_biking_woman: { keywords: ['transportation', 'sports', 'human', 'race', 'bike', 'woman', 'female'], 'char': '\ud83d\udeb5\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, mountain_biking_man: { keywords: ['transportation', 'sports', 'human', 'race', 'bike'], 'char': '\ud83d\udeb5', fitzpatrick_scale: !0, category: 'activity' }, horse_racing: { keywords: ['animal', 'betting', 'competition', 'gambling', 'luck'], 'char': '\ud83c\udfc7', fitzpatrick_scale: !0, category: 'activity' }, business_suit_levitating: { keywords: ['suit', 'business', 'levitate', 'hover', 'jump'], 'char': '\ud83d\udd74', fitzpatrick_scale: !0, category: 'activity' }, trophy: { keywords: ['win', 'award', 'contest', 'place', 'ftw', 'ceremony'], 'char': '\ud83c\udfc6', fitzpatrick_scale: !1, category: 'activity' }, running_shirt_with_sash: { keywords: ['play', 'pageant'], 'char': '\ud83c\udfbd', fitzpatrick_scale: !1, category: 'activity' }, medal_sports: { keywords: ['award', 'winning'], 'char': '\ud83c\udfc5', fitzpatrick_scale: !1, category: 'activity' }, medal_military: { keywords: ['award', 'winning', 'army'], 'char': '\ud83c\udf96', fitzpatrick_scale: !1, category: 'activity' }, '1st_place_medal': { keywords: ['award', 'winning', 'first'], 'char': '\ud83e\udd47', fitzpatrick_scale: !1, category: 'activity' }, '2nd_place_medal': { keywords: ['award', 'second'], 'char': '\ud83e\udd48', fitzpatrick_scale: !1, category: 'activity' }, '3rd_place_medal': { keywords: ['award', 'third'], 'char': '\ud83e\udd49', fitzpatrick_scale: !1, category: 'activity' }, reminder_ribbon: { keywords: ['sports', 'cause', 'support', 'awareness'], 'char': '\ud83c\udf97', fitzpatrick_scale: !1, category: 'activity' }, rosette: { keywords: ['flower', 'decoration', 'military'], 'char': '\ud83c\udff5', fitzpatrick_scale: !1, category: 'activity' }, ticket: { keywords: ['event', 'concert', 'pass'], 'char': '\ud83c\udfab', fitzpatrick_scale: !1, category: 'activity' }, tickets: { keywords: ['sports', 'concert', 'entrance'], 'char': '\ud83c\udf9f', fitzpatrick_scale: !1, category: 'activity' }, performing_arts: { keywords: ['acting', 'theater', 'drama'], 'char': '\ud83c\udfad', fitzpatrick_scale: !1, category: 'activity' }, art: { keywords: ['design', 'paint', 'draw', 'colors'], 'char': '\ud83c\udfa8', fitzpatrick_scale: !1, category: 'activity' }, circus_tent: { keywords: ['festival', 'carnival', 'party'], 'char': '\ud83c\udfaa', fitzpatrick_scale: !1, category: 'activity' }, woman_juggling: { keywords: ['juggle', 'balance', 'skill', 'multitask'], 'char': '\ud83e\udd39\u200d\u2640\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, man_juggling: { keywords: ['juggle', 'balance', 'skill', 'multitask'], 'char': '\ud83e\udd39\u200d\u2642\ufe0f', fitzpatrick_scale: !0, category: 'activity' }, microphone: { keywords: ['sound', 'music', 'PA', 'sing', 'talkshow'], 'char': '\ud83c\udfa4', fitzpatrick_scale: !1, category: 'activity' }, headphones: { keywords: ['music', 'score', 'gadgets'], 'char': '\ud83c\udfa7', fitzpatrick_scale: !1, category: 'activity' }, musical_score: { keywords: ['treble', 'clef', 'compose'], 'char': '\ud83c\udfbc', fitzpatrick_scale: !1, category: 'activity' }, musical_keyboard: { keywords: ['piano', 'instrument', 'compose'], 'char': '\ud83c\udfb9', fitzpatrick_scale: !1, category: 'activity' }, drum: { keywords: ['music', 'instrument', 'drumsticks', 'snare'], 'char': '\ud83e\udd41', fitzpatrick_scale: !1, category: 'activity' }, saxophone: { keywords: ['music', 'instrument', 'jazz', 'blues'], 'char': '\ud83c\udfb7', fitzpatrick_scale: !1, category: 'activity' }, trumpet: { keywords: ['music', 'brass'], 'char': '\ud83c\udfba', fitzpatrick_scale: !1, category: 'activity' }, guitar: { keywords: ['music', 'instrument'], 'char': '\ud83c\udfb8', fitzpatrick_scale: !1, category: 'activity' }, violin: { keywords: ['music', 'instrument', 'orchestra', 'symphony'], 'char': '\ud83c\udfbb', fitzpatrick_scale: !1, category: 'activity' }, clapper: { keywords: ['movie', 'film', 'record'], 'char': '\ud83c\udfac', fitzpatrick_scale: !1, category: 'activity' }, video_game: { keywords: ['play', 'console', 'PS4', 'controller'], 'char': '\ud83c\udfae', fitzpatrick_scale: !1, category: 'activity' }, space_invader: { keywords: ['game', 'arcade', 'play'], 'char': '\ud83d\udc7e', fitzpatrick_scale: !1, category: 'activity' }, dart: { keywords: ['game', 'play', 'bar', 'target', 'bullseye'], 'char': '\ud83c\udfaf', fitzpatrick_scale: !1, category: 'activity' }, game_die: { keywords: ['dice', 'random', 'tabletop', 'play', 'luck'], 'char': '\ud83c\udfb2', fitzpatrick_scale: !1, category: 'activity' }, slot_machine: { keywords: ['bet', 'gamble', 'vegas', 'fruit machine', 'luck', 'casino'], 'char': '\ud83c\udfb0', fitzpatrick_scale: !1, category: 'activity' }, bowling: { keywords: ['sports', 'fun', 'play'], 'char': '\ud83c\udfb3', fitzpatrick_scale: !1, category: 'activity' }, red_car: { keywords: ['red', 'transportation', 'vehicle'], 'char': '\ud83d\ude97', fitzpatrick_scale: !1, category: 'travel_and_places' }, taxi: { keywords: ['uber', 'vehicle', 'cars', 'transportation'], 'char': '\ud83d\ude95', fitzpatrick_scale: !1, category: 'travel_and_places' }, blue_car: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude99', fitzpatrick_scale: !1, category: 'travel_and_places' }, bus: { keywords: ['car', 'vehicle', 'transportation'], 'char': '\ud83d\ude8c', fitzpatrick_scale: !1, category: 'travel_and_places' }, trolleybus: { keywords: ['bart', 'transportation', 'vehicle'], 'char': '\ud83d\ude8e', fitzpatrick_scale: !1, category: 'travel_and_places' }, racing_car: { keywords: ['sports', 'race', 'fast', 'formula', 'f1'], 'char': '\ud83c\udfce', fitzpatrick_scale: !1, category: 'travel_and_places' }, police_car: { keywords: ['vehicle', 'cars', 'transportation', 'law', 'legal', 'enforcement'], 'char': '\ud83d\ude93', fitzpatrick_scale: !1, category: 'travel_and_places' }, ambulance: { keywords: ['health', '911', 'hospital'], 'char': '\ud83d\ude91', fitzpatrick_scale: !1, category: 'travel_and_places' }, fire_engine: { keywords: ['transportation', 'cars', 'vehicle'], 'char': '\ud83d\ude92', fitzpatrick_scale: !1, category: 'travel_and_places' }, minibus: { keywords: ['vehicle', 'car', 'transportation'], 'char': '\ud83d\ude90', fitzpatrick_scale: !1, category: 'travel_and_places' }, truck: { keywords: ['cars', 'transportation'], 'char': '\ud83d\ude9a', fitzpatrick_scale: !1, category: 'travel_and_places' }, articulated_lorry: { keywords: ['vehicle', 'cars', 'transportation', 'express'], 'char': '\ud83d\ude9b', fitzpatrick_scale: !1, category: 'travel_and_places' }, tractor: { keywords: ['vehicle', 'car', 'farming', 'agriculture'], 'char': '\ud83d\ude9c', fitzpatrick_scale: !1, category: 'travel_and_places' }, kick_scooter: { keywords: ['vehicle', 'kick', 'razor'], 'char': '\ud83d\udef4', fitzpatrick_scale: !1, category: 'travel_and_places' }, motorcycle: { keywords: ['race', 'sports', 'fast'], 'char': '\ud83c\udfcd', fitzpatrick_scale: !1, category: 'travel_and_places' }, bike: { keywords: ['sports', 'bicycle', 'exercise', 'hipster'], 'char': '\ud83d\udeb2', fitzpatrick_scale: !1, category: 'travel_and_places' }, motor_scooter: { keywords: ['vehicle', 'vespa', 'sasha'], 'char': '\ud83d\udef5', fitzpatrick_scale: !1, category: 'travel_and_places' }, rotating_light: { keywords: ['police', 'ambulance', '911', 'emergency', 'alert', 'error', 'pinged', 'law', 'legal'], 'char': '\ud83d\udea8', fitzpatrick_scale: !1, category: 'travel_and_places' }, oncoming_police_car: { keywords: ['vehicle', 'law', 'legal', 'enforcement', '911'], 'char': '\ud83d\ude94', fitzpatrick_scale: !1, category: 'travel_and_places' }, oncoming_bus: { keywords: ['vehicle', 'transportation'], 'char': '\ud83d\ude8d', fitzpatrick_scale: !1, category: 'travel_and_places' }, oncoming_automobile: { keywords: ['car', 'vehicle', 'transportation'], 'char': '\ud83d\ude98', fitzpatrick_scale: !1, category: 'travel_and_places' }, oncoming_taxi: { keywords: ['vehicle', 'cars', 'uber'], 'char': '\ud83d\ude96', fitzpatrick_scale: !1, category: 'travel_and_places' }, aerial_tramway: { keywords: ['transportation', 'vehicle', 'ski'], 'char': '\ud83d\udea1', fitzpatrick_scale: !1, category: 'travel_and_places' }, mountain_cableway: { keywords: ['transportation', 'vehicle', 'ski'], 'char': '\ud83d\udea0', fitzpatrick_scale: !1, category: 'travel_and_places' }, suspension_railway: { keywords: ['vehicle', 'transportation'], 'char': '\ud83d\ude9f', fitzpatrick_scale: !1, category: 'travel_and_places' }, railway_car: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude83', fitzpatrick_scale: !1, category: 'travel_and_places' }, train: { keywords: ['transportation', 'vehicle', 'carriage', 'public', 'travel'], 'char': '\ud83d\ude8b', fitzpatrick_scale: !1, category: 'travel_and_places' }, monorail: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude9d', fitzpatrick_scale: !1, category: 'travel_and_places' }, bullettrain_side: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude84', fitzpatrick_scale: !1, category: 'travel_and_places' }, bullettrain_front: { keywords: ['transportation', 'vehicle', 'speed', 'fast', 'public', 'travel'], 'char': '\ud83d\ude85', fitzpatrick_scale: !1, category: 'travel_and_places' }, light_rail: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude88', fitzpatrick_scale: !1, category: 'travel_and_places' }, mountain_railway: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude9e', fitzpatrick_scale: !1, category: 'travel_and_places' }, steam_locomotive: { keywords: ['transportation', 'vehicle', 'train'], 'char': '\ud83d\ude82', fitzpatrick_scale: !1, category: 'travel_and_places' }, train2: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude86', fitzpatrick_scale: !1, category: 'travel_and_places' }, metro: { keywords: ['transportation', 'blue-square', 'mrt', 'underground', 'tube'], 'char': '\ud83d\ude87', fitzpatrick_scale: !1, category: 'travel_and_places' }, tram: { keywords: ['transportation', 'vehicle'], 'char': '\ud83d\ude8a', fitzpatrick_scale: !1, category: 'travel_and_places' }, station: { keywords: ['transportation', 'vehicle', 'public'], 'char': '\ud83d\ude89', fitzpatrick_scale: !1, category: 'travel_and_places' }, flying_saucer: { keywords: ['transportation', 'vehicle', 'ufo'], 'char': '\ud83d\udef8', fitzpatrick_scale: !1, category: 'travel_and_places' }, helicopter: { keywords: ['transportation', 'vehicle', 'fly'], 'char': '\ud83d\ude81', fitzpatrick_scale: !1, category: 'travel_and_places' }, small_airplane: { keywords: ['flight', 'transportation', 'fly', 'vehicle'], 'char': '\ud83d\udee9', fitzpatrick_scale: !1, category: 'travel_and_places' }, airplane: { keywords: ['vehicle', 'transportation', 'flight', 'fly'], 'char': '\u2708\ufe0f', fitzpatrick_scale: !1, category: 'travel_and_places' }, flight_departure: { keywords: ['airport', 'flight', 'landing'], 'char': '\ud83d\udeeb', fitzpatrick_scale: !1, category: 'travel_and_places' }, flight_arrival: { keywords: ['airport', 'flight', 'boarding'], 'char': '\ud83d\udeec', fitzpatrick_scale: !1, category: 'travel_and_places' }, sailboat: { keywords: ['ship', 'summer', 'transportation', 'water', 'sailing'], 'char': '\u26f5', fitzpatrick_scale: !1, category: 'travel_and_places' }, motor_boat: { keywords: ['ship'], 'char': '\ud83d\udee5', fitzpatrick_scale: !1, category: 'travel_and_places' }, speedboat: { keywords: ['ship', 'transportation', 'vehicle', 'summer'], 'char': '\ud83d\udea4', fitzpatrick_scale: !1, category: 'travel_and_places' }, ferry: { keywords: ['boat', 'ship', 'yacht'], 'char': '\u26f4', fitzpatrick_scale: !1, category: 'travel_and_places' }, passenger_ship: { keywords: ['yacht', 'cruise', 'ferry'], 'char': '\ud83d\udef3', fitzpatrick_scale: !1, category: 'travel_and_places' }, rocket: { keywords: ['launch', 'ship', 'staffmode', 'NASA', 'outer space', 'outer_space', 'fly'], 'char': '\ud83d\ude80', fitzpatrick_scale: !1, category: 'travel_and_places' }, artificial_satellite: { keywords: ['communication', 'gps', 'orbit', 'spaceflight', 'NASA', 'ISS'], 'char': '\ud83d\udef0', fitzpatrick_scale: !1, category: 'travel_and_places' }, seat: { keywords: ['sit', 'airplane', 'transport', 'bus', 'flight', 'fly'], 'char': '\ud83d\udcba', fitzpatrick_scale: !1, category: 'travel_and_places' }, canoe: { keywords: ['boat', 'paddle', 'water', 'ship'], 'char': '\ud83d\udef6', fitzpatrick_scale: !1, category: 'travel_and_places' }, anchor: { keywords: ['ship', 'ferry', 'sea', 'boat'], 'char': '\u2693', fitzpatrick_scale: !1, category: 'travel_and_places' }, construction: { keywords: ['wip', 'progress', 'caution', 'warning'], 'char': '\ud83d\udea7', fitzpatrick_scale: !1, category: 'travel_and_places' }, fuelpump: { keywords: ['gas station', 'petroleum'], 'char': '\u26fd', fitzpatrick_scale: !1, category: 'travel_and_places' }, busstop: { keywords: ['transportation', 'wait'], 'char': '\ud83d\ude8f', fitzpatrick_scale: !1, category: 'travel_and_places' }, vertical_traffic_light: { keywords: ['transportation', 'driving'], 'char': '\ud83d\udea6', fitzpatrick_scale: !1, category: 'travel_and_places' }, traffic_light: { keywords: ['transportation', 'signal'], 'char': '\ud83d\udea5', fitzpatrick_scale: !1, category: 'travel_and_places' }, checkered_flag: { keywords: ['contest', 'finishline', 'race', 'gokart'], 'char': '\ud83c\udfc1', fitzpatrick_scale: !1, category: 'travel_and_places' }, ship: { keywords: ['transportation', 'titanic', 'deploy'], 'char': '\ud83d\udea2', fitzpatrick_scale: !1, category: 'travel_and_places' }, ferris_wheel: { keywords: ['photo', 'carnival', 'londoneye'], 'char': '\ud83c\udfa1', fitzpatrick_scale: !1, category: 'travel_and_places' }, roller_coaster: { keywords: ['carnival', 'playground', 'photo', 'fun'], 'char': '\ud83c\udfa2', fitzpatrick_scale: !1, category: 'travel_and_places' }, carousel_horse: { keywords: ['photo', 'carnival'], 'char': '\ud83c\udfa0', fitzpatrick_scale: !1, category: 'travel_and_places' }, building_construction: { keywords: ['wip', 'working', 'progress'], 'char': '\ud83c\udfd7', fitzpatrick_scale: !1, category: 'travel_and_places' }, foggy: { keywords: ['photo', 'mountain'], 'char': '\ud83c\udf01', fitzpatrick_scale: !1, category: 'travel_and_places' }, tokyo_tower: { keywords: ['photo', 'japanese'], 'char': '\ud83d\uddfc', fitzpatrick_scale: !1, category: 'travel_and_places' }, factory: { keywords: ['building', 'industry', 'pollution', 'smoke'], 'char': '\ud83c\udfed', fitzpatrick_scale: !1, category: 'travel_and_places' }, fountain: { keywords: ['photo', 'summer', 'water', 'fresh'], 'char': '\u26f2', fitzpatrick_scale: !1, category: 'travel_and_places' }, rice_scene: { keywords: ['photo', 'japan', 'asia', 'tsukimi'], 'char': '\ud83c\udf91', fitzpatrick_scale: !1, category: 'travel_and_places' }, mountain: { keywords: ['photo', 'nature', 'environment'], 'char': '\u26f0', fitzpatrick_scale: !1, category: 'travel_and_places' }, mountain_snow: { keywords: ['photo', 'nature', 'environment', 'winter', 'cold'], 'char': '\ud83c\udfd4', fitzpatrick_scale: !1, category: 'travel_and_places' }, mount_fuji: { keywords: ['photo', 'mountain', 'nature', 'japanese'], 'char': '\ud83d\uddfb', fitzpatrick_scale: !1, category: 'travel_and_places' }, volcano: { keywords: ['photo', 'nature', 'disaster'], 'char': '\ud83c\udf0b', fitzpatrick_scale: !1, category: 'travel_and_places' }, japan: { keywords: ['nation', 'country', 'japanese', 'asia'], 'char': '\ud83d\uddfe', fitzpatrick_scale: !1, category: 'travel_and_places' }, camping: { keywords: ['photo', 'outdoors', 'tent'], 'char': '\ud83c\udfd5', fitzpatrick_scale: !1, category: 'travel_and_places' }, tent: { keywords: ['photo', 'camping', 'outdoors'], 'char': '\u26fa', fitzpatrick_scale: !1, category: 'travel_and_places' }, national_park: { keywords: ['photo', 'environment', 'nature'], 'char': '\ud83c\udfde', fitzpatrick_scale: !1, category: 'travel_and_places' }, motorway: { keywords: ['road', 'cupertino', 'interstate', 'highway'], 'char': '\ud83d\udee3', fitzpatrick_scale: !1, category: 'travel_and_places' }, railway_track: { keywords: ['train', 'transportation'], 'char': '\ud83d\udee4', fitzpatrick_scale: !1, category: 'travel_and_places' }, sunrise: { keywords: ['morning', 'view', 'vacation', 'photo'], 'char': '\ud83c\udf05', fitzpatrick_scale: !1, category: 'travel_and_places' }, sunrise_over_mountains: { keywords: ['view', 'vacation', 'photo'], 'char': '\ud83c\udf04', fitzpatrick_scale: !1, category: 'travel_and_places' }, desert: { keywords: ['photo', 'warm', 'saharah'], 'char': '\ud83c\udfdc', fitzpatrick_scale: !1, category: 'travel_and_places' }, beach_umbrella: { keywords: ['weather', 'summer', 'sunny', 'sand', 'mojito'], 'char': '\ud83c\udfd6', fitzpatrick_scale: !1, category: 'travel_and_places' }, desert_island: { keywords: ['photo', 'tropical', 'mojito'], 'char': '\ud83c\udfdd', fitzpatrick_scale: !1, category: 'travel_and_places' }, city_sunrise: { keywords: ['photo', 'good morning', 'dawn'], 'char': '\ud83c\udf07', fitzpatrick_scale: !1, category: 'travel_and_places' }, city_sunset: { keywords: ['photo', 'evening', 'sky', 'buildings'], 'char': '\ud83c\udf06', fitzpatrick_scale: !1, category: 'travel_and_places' }, cityscape: { keywords: ['photo', 'night life', 'urban'], 'char': '\ud83c\udfd9', fitzpatrick_scale: !1, category: 'travel_and_places' }, night_with_stars: { keywords: ['evening', 'city', 'downtown'], 'char': '\ud83c\udf03', fitzpatrick_scale: !1, category: 'travel_and_places' }, bridge_at_night: { keywords: ['photo', 'sanfrancisco'], 'char': '\ud83c\udf09', fitzpatrick_scale: !1, category: 'travel_and_places' }, milky_way: { keywords: ['photo', 'space', 'stars'], 'char': '\ud83c\udf0c', fitzpatrick_scale: !1, category: 'travel_and_places' }, stars: { keywords: ['night', 'photo'], 'char': '\ud83c\udf20', fitzpatrick_scale: !1, category: 'travel_and_places' }, sparkler: { keywords: ['stars', 'night', 'shine'], 'char': '\ud83c\udf87', fitzpatrick_scale: !1, category: 'travel_and_places' }, fireworks: { keywords: ['photo', 'festival', 'carnival', 'congratulations'], 'char': '\ud83c\udf86', fitzpatrick_scale: !1, category: 'travel_and_places' }, rainbow: { keywords: ['nature', 'happy', 'unicorn_face', 'photo', 'sky', 'spring'], 'char': '\ud83c\udf08', fitzpatrick_scale: !1, category: 'travel_and_places' }, houses: { keywords: ['buildings', 'photo'], 'char': '\ud83c\udfd8', fitzpatrick_scale: !1, category: 'travel_and_places' }, european_castle: { keywords: ['building', 'royalty', 'history'], 'char': '\ud83c\udff0', fitzpatrick_scale: !1, category: 'travel_and_places' }, japanese_castle: { keywords: ['photo', 'building'], 'char': '\ud83c\udfef', fitzpatrick_scale: !1, category: 'travel_and_places' }, stadium: { keywords: ['photo', 'place', 'sports', 'concert', 'venue'], 'char': '\ud83c\udfdf', fitzpatrick_scale: !1, category: 'travel_and_places' }, statue_of_liberty: { keywords: ['american', 'newyork'], 'char': '\ud83d\uddfd', fitzpatrick_scale: !1, category: 'travel_and_places' }, house: { keywords: ['building', 'home'], 'char': '\ud83c\udfe0', fitzpatrick_scale: !1, category: 'travel_and_places' }, house_with_garden: { keywords: ['home', 'plant', 'nature'], 'char': '\ud83c\udfe1', fitzpatrick_scale: !1, category: 'travel_and_places' }, derelict_house: { keywords: ['abandon', 'evict', 'broken', 'building'], 'char': '\ud83c\udfda', fitzpatrick_scale: !1, category: 'travel_and_places' }, office: { keywords: ['building', 'bureau', 'work'], 'char': '\ud83c\udfe2', fitzpatrick_scale: !1, category: 'travel_and_places' }, department_store: { keywords: ['building', 'shopping', 'mall'], 'char': '\ud83c\udfec', fitzpatrick_scale: !1, category: 'travel_and_places' }, post_office: { keywords: ['building', 'envelope', 'communication'], 'char': '\ud83c\udfe3', fitzpatrick_scale: !1, category: 'travel_and_places' }, european_post_office: { keywords: ['building', 'email'], 'char': '\ud83c\udfe4', fitzpatrick_scale: !1, category: 'travel_and_places' }, hospital: { keywords: ['building', 'health', 'surgery', 'doctor'], 'char': '\ud83c\udfe5', fitzpatrick_scale: !1, category: 'travel_and_places' }, bank: { keywords: ['building', 'money', 'sales', 'cash', 'business', 'enterprise'], 'char': '\ud83c\udfe6', fitzpatrick_scale: !1, category: 'travel_and_places' }, hotel: { keywords: ['building', 'accomodation', 'checkin'], 'char': '\ud83c\udfe8', fitzpatrick_scale: !1, category: 'travel_and_places' }, convenience_store: { keywords: ['building', 'shopping', 'groceries'], 'char': '\ud83c\udfea', fitzpatrick_scale: !1, category: 'travel_and_places' }, school: { keywords: ['building', 'student', 'education', 'learn', 'teach'], 'char': '\ud83c\udfeb', fitzpatrick_scale: !1, category: 'travel_and_places' }, love_hotel: { keywords: ['like', 'affection', 'dating'], 'char': '\ud83c\udfe9', fitzpatrick_scale: !1, category: 'travel_and_places' }, wedding: { keywords: ['love', 'like', 'affection', 'couple', 'marriage', 'bride', 'groom'], 'char': '\ud83d\udc92', fitzpatrick_scale: !1, category: 'travel_and_places' }, classical_building: { keywords: ['art', 'culture', 'history'], 'char': '\ud83c\udfdb', fitzpatrick_scale: !1, category: 'travel_and_places' }, church: { keywords: ['building', 'religion', 'christ'], 'char': '\u26ea', fitzpatrick_scale: !1, category: 'travel_and_places' }, mosque: { keywords: ['islam', 'worship', 'minaret'], 'char': '\ud83d\udd4c', fitzpatrick_scale: !1, category: 'travel_and_places' }, synagogue: { keywords: ['judaism', 'worship', 'temple', 'jewish'], 'char': '\ud83d\udd4d', fitzpatrick_scale: !1, category: 'travel_and_places' }, kaaba: { keywords: ['mecca', 'mosque', 'islam'], 'char': '\ud83d\udd4b', fitzpatrick_scale: !1, category: 'travel_and_places' }, shinto_shrine: { keywords: ['temple', 'japan', 'kyoto'], 'char': '\u26e9', fitzpatrick_scale: !1, category: 'travel_and_places' }, watch: { keywords: ['time', 'accessories'], 'char': '\u231a', fitzpatrick_scale: !1, category: 'objects' }, iphone: { keywords: ['technology', 'apple', 'gadgets', 'dial'], 'char': '\ud83d\udcf1', fitzpatrick_scale: !1, category: 'objects' }, calling: { keywords: ['iphone', 'incoming'], 'char': '\ud83d\udcf2', fitzpatrick_scale: !1, category: 'objects' }, computer: { keywords: ['technology', 'laptop', 'screen', 'display', 'monitor'], 'char': '\ud83d\udcbb', fitzpatrick_scale: !1, category: 'objects' }, keyboard: { keywords: ['technology', 'computer', 'type', 'input', 'text'], 'char': '\u2328', fitzpatrick_scale: !1, category: 'objects' }, desktop_computer: { keywords: ['technology', 'computing', 'screen'], 'char': '\ud83d\udda5', fitzpatrick_scale: !1, category: 'objects' }, printer: { keywords: ['paper', 'ink'], 'char': '\ud83d\udda8', fitzpatrick_scale: !1, category: 'objects' }, computer_mouse: { keywords: ['click'], 'char': '\ud83d\uddb1', fitzpatrick_scale: !1, category: 'objects' }, trackball: { keywords: ['technology', 'trackpad'], 'char': '\ud83d\uddb2', fitzpatrick_scale: !1, category: 'objects' }, joystick: { keywords: ['game', 'play'], 'char': '\ud83d\udd79', fitzpatrick_scale: !1, category: 'objects' }, clamp: { keywords: ['tool'], 'char': '\ud83d\udddc', fitzpatrick_scale: !1, category: 'objects' }, minidisc: { keywords: ['technology', 'record', 'data', 'disk', '90s'], 'char': '\ud83d\udcbd', fitzpatrick_scale: !1, category: 'objects' }, floppy_disk: { keywords: ['oldschool', 'technology', 'save', '90s', '80s'], 'char': '\ud83d\udcbe', fitzpatrick_scale: !1, category: 'objects' }, cd: { keywords: ['technology', 'dvd', 'disk', 'disc', '90s'], 'char': '\ud83d\udcbf', fitzpatrick_scale: !1, category: 'objects' }, dvd: { keywords: ['cd', 'disk', 'disc'], 'char': '\ud83d\udcc0', fitzpatrick_scale: !1, category: 'objects' }, vhs: { keywords: ['record', 'video', 'oldschool', '90s', '80s'], 'char': '\ud83d\udcfc', fitzpatrick_scale: !1, category: 'objects' }, camera: { keywords: ['gadgets', 'photography'], 'char': '\ud83d\udcf7', fitzpatrick_scale: !1, category: 'objects' }, camera_flash: { keywords: ['photography', 'gadgets'], 'char': '\ud83d\udcf8', fitzpatrick_scale: !1, category: 'objects' }, video_camera: { keywords: ['film', 'record'], 'char': '\ud83d\udcf9', fitzpatrick_scale: !1, category: 'objects' }, movie_camera: { keywords: ['film', 'record'], 'char': '\ud83c\udfa5', fitzpatrick_scale: !1, category: 'objects' }, film_projector: { keywords: ['video', 'tape', 'record', 'movie'], 'char': '\ud83d\udcfd', fitzpatrick_scale: !1, category: 'objects' }, film_strip: { keywords: ['movie'], 'char': '\ud83c\udf9e', fitzpatrick_scale: !1, category: 'objects' }, telephone_receiver: { keywords: ['technology', 'communication', 'dial'], 'char': '\ud83d\udcde', fitzpatrick_scale: !1, category: 'objects' }, phone: { keywords: ['technology', 'communication', 'dial', 'telephone'], 'char': '\u260e\ufe0f', fitzpatrick_scale: !1, category: 'objects' }, pager: { keywords: ['bbcall', 'oldschool', '90s'], 'char': '\ud83d\udcdf', fitzpatrick_scale: !1, category: 'objects' }, fax: { keywords: ['communication', 'technology'], 'char': '\ud83d\udce0', fitzpatrick_scale: !1, category: 'objects' }, tv: { keywords: ['technology', 'program', 'oldschool', 'show', 'television'], 'char': '\ud83d\udcfa', fitzpatrick_scale: !1, category: 'objects' }, radio: { keywords: ['communication', 'music', 'podcast', 'program'], 'char': '\ud83d\udcfb', fitzpatrick_scale: !1, category: 'objects' }, studio_microphone: { keywords: ['sing', 'recording', 'artist', 'talkshow'], 'char': '\ud83c\udf99', fitzpatrick_scale: !1, category: 'objects' }, level_slider: { keywords: ['scale'], 'char': '\ud83c\udf9a', fitzpatrick_scale: !1, category: 'objects' }, control_knobs: { keywords: ['dial'], 'char': '\ud83c\udf9b', fitzpatrick_scale: !1, category: 'objects' }, stopwatch: { keywords: ['time', 'deadline'], 'char': '\u23f1', fitzpatrick_scale: !1, category: 'objects' }, timer_clock: { keywords: ['alarm'], 'char': '\u23f2', fitzpatrick_scale: !1, category: 'objects' }, alarm_clock: { keywords: ['time', 'wake'], 'char': '\u23f0', fitzpatrick_scale: !1, category: 'objects' }, mantelpiece_clock: { keywords: ['time'], 'char': '\ud83d\udd70', fitzpatrick_scale: !1, category: 'objects' }, hourglass_flowing_sand: { keywords: ['oldschool', 'time', 'countdown'], 'char': '\u23f3', fitzpatrick_scale: !1, category: 'objects' }, hourglass: { keywords: ['time', 'clock', 'oldschool', 'limit', 'exam', 'quiz', 'test'], 'char': '\u231b', fitzpatrick_scale: !1, category: 'objects' }, satellite: { keywords: ['communication', 'future', 'radio', 'space'], 'char': '\ud83d\udce1', fitzpatrick_scale: !1, category: 'objects' }, battery: { keywords: ['power', 'energy', 'sustain'], 'char': '\ud83d\udd0b', fitzpatrick_scale: !1, category: 'objects' }, electric_plug: { keywords: ['charger', 'power'], 'char': '\ud83d\udd0c', fitzpatrick_scale: !1, category: 'objects' }, bulb: { keywords: ['light', 'electricity', 'idea'], 'char': '\ud83d\udca1', fitzpatrick_scale: !1, category: 'objects' }, flashlight: { keywords: ['dark', 'camping', 'sight', 'night'], 'char': '\ud83d\udd26', fitzpatrick_scale: !1, category: 'objects' }, candle: { keywords: ['fire', 'wax'], 'char': '\ud83d\udd6f', fitzpatrick_scale: !1, category: 'objects' }, wastebasket: { keywords: ['bin', 'trash', 'rubbish', 'garbage', 'toss'], 'char': '\ud83d\uddd1', fitzpatrick_scale: !1, category: 'objects' }, oil_drum: { keywords: ['barrell'], 'char': '\ud83d\udee2', fitzpatrick_scale: !1, category: 'objects' }, money_with_wings: { keywords: ['dollar', 'bills', 'payment', 'sale'], 'char': '\ud83d\udcb8', fitzpatrick_scale: !1, category: 'objects' }, dollar: { keywords: ['money', 'sales', 'bill', 'currency'], 'char': '\ud83d\udcb5', fitzpatrick_scale: !1, category: 'objects' }, yen: { keywords: ['money', 'sales', 'japanese', 'dollar', 'currency'], 'char': '\ud83d\udcb4', fitzpatrick_scale: !1, category: 'objects' }, euro: { keywords: ['money', 'sales', 'dollar', 'currency'], 'char': '\ud83d\udcb6', fitzpatrick_scale: !1, category: 'objects' }, pound: { keywords: ['british', 'sterling', 'money', 'sales', 'bills', 'uk', 'england', 'currency'], 'char': '\ud83d\udcb7', fitzpatrick_scale: !1, category: 'objects' }, moneybag: { keywords: ['dollar', 'payment', 'coins', 'sale'], 'char': '\ud83d\udcb0', fitzpatrick_scale: !1, category: 'objects' }, credit_card: { keywords: ['money', 'sales', 'dollar', 'bill', 'payment', 'shopping'], 'char': '\ud83d\udcb3', fitzpatrick_scale: !1, category: 'objects' }, gem: { keywords: ['blue', 'ruby', 'diamond', 'jewelry'], 'char': '\ud83d\udc8e', fitzpatrick_scale: !1, category: 'objects' }, balance_scale: { keywords: ['law', 'fairness', 'weight'], 'char': '\u2696', fitzpatrick_scale: !1, category: 'objects' }, wrench: { keywords: ['tools', 'diy', 'ikea', 'fix', 'maintainer'], 'char': '\ud83d\udd27', fitzpatrick_scale: !1, category: 'objects' }, hammer: { keywords: ['tools', 'build', 'create'], 'char': '\ud83d\udd28', fitzpatrick_scale: !1, category: 'objects' }, hammer_and_pick: { keywords: ['tools', 'build', 'create'], 'char': '\u2692', fitzpatrick_scale: !1, category: 'objects' }, hammer_and_wrench: { keywords: ['tools', 'build', 'create'], 'char': '\ud83d\udee0', fitzpatrick_scale: !1, category: 'objects' }, pick: { keywords: ['tools', 'dig'], 'char': '\u26cf', fitzpatrick_scale: !1, category: 'objects' }, nut_and_bolt: { keywords: ['handy', 'tools', 'fix'], 'char': '\ud83d\udd29', fitzpatrick_scale: !1, category: 'objects' }, gear: { keywords: ['cog'], 'char': '\u2699', fitzpatrick_scale: !1, category: 'objects' }, chains: { keywords: ['lock', 'arrest'], 'char': '\u26d3', fitzpatrick_scale: !1, category: 'objects' }, gun: { keywords: ['violence', 'weapon', 'pistol', 'revolver'], 'char': '\ud83d\udd2b', fitzpatrick_scale: !1, category: 'objects' }, bomb: { keywords: ['boom', 'explode', 'explosion', 'terrorism'], 'char': '\ud83d\udca3', fitzpatrick_scale: !1, category: 'objects' }, hocho: { keywords: ['knife', 'blade', 'cutlery', 'kitchen', 'weapon'], 'char': '\ud83d\udd2a', fitzpatrick_scale: !1, category: 'objects' }, dagger: { keywords: ['weapon'], 'char': '\ud83d\udde1', fitzpatrick_scale: !1, category: 'objects' }, crossed_swords: { keywords: ['weapon'], 'char': '\u2694', fitzpatrick_scale: !1, category: 'objects' }, shield: { keywords: ['protection', 'security'], 'char': '\ud83d\udee1', fitzpatrick_scale: !1, category: 'objects' }, smoking: { keywords: ['kills', 'tobacco', 'cigarette', 'joint', 'smoke'], 'char': '\ud83d\udeac', fitzpatrick_scale: !1, category: 'objects' }, skull_and_crossbones: { keywords: ['poison', 'danger', 'deadly', 'scary', 'death', 'pirate', 'evil'], 'char': '\u2620', fitzpatrick_scale: !1, category: 'objects' }, coffin: { keywords: ['vampire', 'dead', 'die', 'death', 'rip', 'graveyard', 'cemetery', 'casket', 'funeral', 'box'], 'char': '\u26b0', fitzpatrick_scale: !1, category: 'objects' }, funeral_urn: { keywords: ['dead', 'die', 'death', 'rip', 'ashes'], 'char': '\u26b1', fitzpatrick_scale: !1, category: 'objects' }, amphora: { keywords: ['vase', 'jar'], 'char': '\ud83c\udffa', fitzpatrick_scale: !1, category: 'objects' }, crystal_ball: { keywords: ['disco', 'party', 'magic', 'circus', 'fortune_teller'], 'char': '\ud83d\udd2e', fitzpatrick_scale: !1, category: 'objects' }, prayer_beads: { keywords: ['dhikr', 'religious'], 'char': '\ud83d\udcff', fitzpatrick_scale: !1, category: 'objects' }, barber: { keywords: ['hair', 'salon', 'style'], 'char': '\ud83d\udc88', fitzpatrick_scale: !1, category: 'objects' }, alembic: { keywords: ['distilling', 'science', 'experiment', 'chemistry'], 'char': '\u2697', fitzpatrick_scale: !1, category: 'objects' }, telescope: { keywords: ['stars', 'space', 'zoom', 'science', 'astronomy'], 'char': '\ud83d\udd2d', fitzpatrick_scale: !1, category: 'objects' }, microscope: { keywords: ['laboratory', 'experiment', 'zoomin', 'science', 'study'], 'char': '\ud83d\udd2c', fitzpatrick_scale: !1, category: 'objects' }, hole: { keywords: ['embarrassing'], 'char': '\ud83d\udd73', fitzpatrick_scale: !1, category: 'objects' }, pill: { keywords: ['health', 'medicine', 'doctor', 'pharmacy', 'drug'], 'char': '\ud83d\udc8a', fitzpatrick_scale: !1, category: 'objects' }, syringe: { keywords: ['health', 'hospital', 'drugs', 'blood', 'medicine', 'needle', 'doctor', 'nurse'], 'char': '\ud83d\udc89', fitzpatrick_scale: !1, category: 'objects' }, thermometer: { keywords: ['weather', 'temperature', 'hot', 'cold'], 'char': '\ud83c\udf21', fitzpatrick_scale: !1, category: 'objects' }, label: { keywords: ['sale', 'tag'], 'char': '\ud83c\udff7', fitzpatrick_scale: !1, category: 'objects' }, bookmark: { keywords: ['favorite', 'label', 'save'], 'char': '\ud83d\udd16', fitzpatrick_scale: !1, category: 'objects' }, toilet: { keywords: ['restroom', 'wc', 'washroom', 'bathroom', 'potty'], 'char': '\ud83d\udebd', fitzpatrick_scale: !1, category: 'objects' }, shower: { keywords: ['clean', 'water', 'bathroom'], 'char': '\ud83d\udebf', fitzpatrick_scale: !1, category: 'objects' }, bathtub: { keywords: ['clean', 'shower', 'bathroom'], 'char': '\ud83d\udec1', fitzpatrick_scale: !1, category: 'objects' }, key: { keywords: ['lock', 'door', 'password'], 'char': '\ud83d\udd11', fitzpatrick_scale: !1, category: 'objects' }, old_key: { keywords: ['lock', 'door', 'password'], 'char': '\ud83d\udddd', fitzpatrick_scale: !1, category: 'objects' }, couch_and_lamp: { keywords: ['read', 'chill'], 'char': '\ud83d\udecb', fitzpatrick_scale: !1, category: 'objects' }, sleeping_bed: { keywords: ['bed', 'rest'], 'char': '\ud83d\udecc', fitzpatrick_scale: !0, category: 'objects' }, bed: { keywords: ['sleep', 'rest'], 'char': '\ud83d\udecf', fitzpatrick_scale: !1, category: 'objects' }, door: { keywords: ['house', 'entry', 'exit'], 'char': '\ud83d\udeaa', fitzpatrick_scale: !1, category: 'objects' }, bellhop_bell: { keywords: ['service'], 'char': '\ud83d\udece', fitzpatrick_scale: !1, category: 'objects' }, framed_picture: { keywords: ['photography'], 'char': '\ud83d\uddbc', fitzpatrick_scale: !1, category: 'objects' }, world_map: { keywords: ['location', 'direction'], 'char': '\ud83d\uddfa', fitzpatrick_scale: !1, category: 'objects' }, parasol_on_ground: { keywords: ['weather', 'summer'], 'char': '\u26f1', fitzpatrick_scale: !1, category: 'objects' }, moyai: { keywords: ['rock', 'easter island', 'moai'], 'char': '\ud83d\uddff', fitzpatrick_scale: !1, category: 'objects' }, shopping: { keywords: ['mall', 'buy', 'purchase'], 'char': '\ud83d\udecd', fitzpatrick_scale: !1, category: 'objects' }, shopping_cart: { keywords: ['trolley'], 'char': '\ud83d\uded2', fitzpatrick_scale: !1, category: 'objects' }, balloon: { keywords: ['party', 'celebration', 'birthday', 'circus'], 'char': '\ud83c\udf88', fitzpatrick_scale: !1, category: 'objects' }, flags: { keywords: ['fish', 'japanese', 'koinobori', 'carp', 'banner'], 'char': '\ud83c\udf8f', fitzpatrick_scale: !1, category: 'objects' }, ribbon: { keywords: ['decoration', 'pink', 'girl', 'bowtie'], 'char': '\ud83c\udf80', fitzpatrick_scale: !1, category: 'objects' }, gift: { keywords: ['present', 'birthday', 'christmas', 'xmas'], 'char': '\ud83c\udf81', fitzpatrick_scale: !1, category: 'objects' }, confetti_ball: { keywords: ['festival', 'party', 'birthday', 'circus'], 'char': '\ud83c\udf8a', fitzpatrick_scale: !1, category: 'objects' }, tada: { keywords: ['party', 'congratulations', 'birthday', 'magic', 'circus', 'celebration'], 'char': '\ud83c\udf89', fitzpatrick_scale: !1, category: 'objects' }, dolls: { keywords: ['japanese', 'toy', 'kimono'], 'char': '\ud83c\udf8e', fitzpatrick_scale: !1, category: 'objects' }, wind_chime: { keywords: ['nature', 'ding', 'spring', 'bell'], 'char': '\ud83c\udf90', fitzpatrick_scale: !1, category: 'objects' }, crossed_flags: { keywords: ['japanese', 'nation', 'country', 'border'], 'char': '\ud83c\udf8c', fitzpatrick_scale: !1, category: 'objects' }, izakaya_lantern: { keywords: ['light', 'paper', 'halloween', 'spooky'], 'char': '\ud83c\udfee', fitzpatrick_scale: !1, category: 'objects' }, email: { keywords: ['letter', 'postal', 'inbox', 'communication'], 'char': '\u2709\ufe0f', fitzpatrick_scale: !1, category: 'objects' }, envelope_with_arrow: { keywords: ['email', 'communication'], 'char': '\ud83d\udce9', fitzpatrick_scale: !1, category: 'objects' }, incoming_envelope: { keywords: ['email', 'inbox'], 'char': '\ud83d\udce8', fitzpatrick_scale: !1, category: 'objects' }, 'e-mail': { keywords: ['communication', 'inbox'], 'char': '\ud83d\udce7', fitzpatrick_scale: !1, category: 'objects' }, love_letter: { keywords: ['email', 'like', 'affection', 'envelope', 'valentines'], 'char': '\ud83d\udc8c', fitzpatrick_scale: !1, category: 'objects' }, postbox: { keywords: ['email', 'letter', 'envelope'], 'char': '\ud83d\udcee', fitzpatrick_scale: !1, category: 'objects' }, mailbox_closed: { keywords: ['email', 'communication', 'inbox'], 'char': '\ud83d\udcea', fitzpatrick_scale: !1, category: 'objects' }, mailbox: { keywords: ['email', 'inbox', 'communication'], 'char': '\ud83d\udceb', fitzpatrick_scale: !1, category: 'objects' }, mailbox_with_mail: { keywords: ['email', 'inbox', 'communication'], 'char': '\ud83d\udcec', fitzpatrick_scale: !1, category: 'objects' }, mailbox_with_no_mail: { keywords: ['email', 'inbox'], 'char': '\ud83d\udced', fitzpatrick_scale: !1, category: 'objects' }, 'package': { keywords: ['mail', 'gift', 'cardboard', 'box', 'moving'], 'char': '\ud83d\udce6', fitzpatrick_scale: !1, category: 'objects' }, postal_horn: { keywords: ['instrument', 'music'], 'char': '\ud83d\udcef', fitzpatrick_scale: !1, category: 'objects' }, inbox_tray: { keywords: ['email', 'documents'], 'char': '\ud83d\udce5', fitzpatrick_scale: !1, category: 'objects' }, outbox_tray: { keywords: ['inbox', 'email'], 'char': '\ud83d\udce4', fitzpatrick_scale: !1, category: 'objects' }, scroll: { keywords: ['documents', 'ancient', 'history', 'paper'], 'char': '\ud83d\udcdc', fitzpatrick_scale: !1, category: 'objects' }, page_with_curl: { keywords: ['documents', 'office', 'paper'], 'char': '\ud83d\udcc3', fitzpatrick_scale: !1, category: 'objects' }, bookmark_tabs: { keywords: ['favorite', 'save', 'order', 'tidy'], 'char': '\ud83d\udcd1', fitzpatrick_scale: !1, category: 'objects' }, bar_chart: { keywords: ['graph', 'presentation', 'stats'], 'char': '\ud83d\udcca', fitzpatrick_scale: !1, category: 'objects' }, chart_with_upwards_trend: { keywords: ['graph', 'presentation', 'stats', 'recovery', 'business', 'economics', 'money', 'sales', 'good', 'success'], 'char': '\ud83d\udcc8', fitzpatrick_scale: !1, category: 'objects' }, chart_with_downwards_trend: { keywords: ['graph', 'presentation', 'stats', 'recession', 'business', 'economics', 'money', 'sales', 'bad', 'failure'], 'char': '\ud83d\udcc9', fitzpatrick_scale: !1, category: 'objects' }, page_facing_up: { keywords: ['documents', 'office', 'paper', 'information'], 'char': '\ud83d\udcc4', fitzpatrick_scale: !1, category: 'objects' }, date: { keywords: ['calendar', 'schedule'], 'char': '\ud83d\udcc5', fitzpatrick_scale: !1, category: 'objects' }, calendar: { keywords: ['schedule', 'date', 'planning'], 'char': '\ud83d\udcc6', fitzpatrick_scale: !1, category: 'objects' }, spiral_calendar: { keywords: ['date', 'schedule', 'planning'], 'char': '\ud83d\uddd3', fitzpatrick_scale: !1, category: 'objects' }, card_index: { keywords: ['business', 'stationery'], 'char': '\ud83d\udcc7', fitzpatrick_scale: !1, category: 'objects' }, card_file_box: { keywords: ['business', 'stationery'], 'char': '\ud83d\uddc3', fitzpatrick_scale: !1, category: 'objects' }, ballot_box: { keywords: ['election', 'vote'], 'char': '\ud83d\uddf3', fitzpatrick_scale: !1, category: 'objects' }, file_cabinet: { keywords: ['filing', 'organizing'], 'char': '\ud83d\uddc4', fitzpatrick_scale: !1, category: 'objects' }, clipboard: { keywords: ['stationery', 'documents'], 'char': '\ud83d\udccb', fitzpatrick_scale: !1, category: 'objects' }, spiral_notepad: { keywords: ['memo', 'stationery'], 'char': '\ud83d\uddd2', fitzpatrick_scale: !1, category: 'objects' }, file_folder: { keywords: ['documents', 'business', 'office'], 'char': '\ud83d\udcc1', fitzpatrick_scale: !1, category: 'objects' }, open_file_folder: { keywords: ['documents', 'load'], 'char': '\ud83d\udcc2', fitzpatrick_scale: !1, category: 'objects' }, card_index_dividers: { keywords: ['organizing', 'business', 'stationery'], 'char': '\ud83d\uddc2', fitzpatrick_scale: !1, category: 'objects' }, newspaper_roll: { keywords: ['press', 'headline'], 'char': '\ud83d\uddde', fitzpatrick_scale: !1, category: 'objects' }, newspaper: { keywords: ['press', 'headline'], 'char': '\ud83d\udcf0', fitzpatrick_scale: !1, category: 'objects' }, notebook: { keywords: ['stationery', 'record', 'notes', 'paper', 'study'], 'char': '\ud83d\udcd3', fitzpatrick_scale: !1, category: 'objects' }, closed_book: { keywords: ['read', 'library', 'knowledge', 'textbook', 'learn'], 'char': '\ud83d\udcd5', fitzpatrick_scale: !1, category: 'objects' }, green_book: { keywords: ['read', 'library', 'knowledge', 'study'], 'char': '\ud83d\udcd7', fitzpatrick_scale: !1, category: 'objects' }, blue_book: { keywords: ['read', 'library', 'knowledge', 'learn', 'study'], 'char': '\ud83d\udcd8', fitzpatrick_scale: !1, category: 'objects' }, orange_book: { keywords: ['read', 'library', 'knowledge', 'textbook', 'study'], 'char': '\ud83d\udcd9', fitzpatrick_scale: !1, category: 'objects' }, notebook_with_decorative_cover: { keywords: ['classroom', 'notes', 'record', 'paper', 'study'], 'char': '\ud83d\udcd4', fitzpatrick_scale: !1, category: 'objects' }, ledger: { keywords: ['notes', 'paper'], 'char': '\ud83d\udcd2', fitzpatrick_scale: !1, category: 'objects' }, books: { keywords: ['literature', 'library', 'study'], 'char': '\ud83d\udcda', fitzpatrick_scale: !1, category: 'objects' }, open_book: { keywords: ['book', 'read', 'library', 'knowledge', 'literature', 'learn', 'study'], 'char': '\ud83d\udcd6', fitzpatrick_scale: !1, category: 'objects' }, link: { keywords: ['rings', 'url'], 'char': '\ud83d\udd17', fitzpatrick_scale: !1, category: 'objects' }, paperclip: { keywords: ['documents', 'stationery'], 'char': '\ud83d\udcce', fitzpatrick_scale: !1, category: 'objects' }, paperclips: { keywords: ['documents', 'stationery'], 'char': '\ud83d\udd87', fitzpatrick_scale: !1, category: 'objects' }, scissors: { keywords: ['stationery', 'cut'], 'char': '\u2702\ufe0f', fitzpatrick_scale: !1, category: 'objects' }, triangular_ruler: { keywords: ['stationery', 'math', 'architect', 'sketch'], 'char': '\ud83d\udcd0', fitzpatrick_scale: !1, category: 'objects' }, straight_ruler: { keywords: ['stationery', 'calculate', 'length', 'math', 'school', 'drawing', 'architect', 'sketch'], 'char': '\ud83d\udccf', fitzpatrick_scale: !1, category: 'objects' }, pushpin: { keywords: ['stationery', 'mark', 'here'], 'char': '\ud83d\udccc', fitzpatrick_scale: !1, category: 'objects' }, round_pushpin: { keywords: ['stationery', 'location', 'map', 'here'], 'char': '\ud83d\udccd', fitzpatrick_scale: !1, category: 'objects' }, triangular_flag_on_post: { keywords: ['mark', 'milestone', 'place'], 'char': '\ud83d\udea9', fitzpatrick_scale: !1, category: 'objects' }, white_flag: { keywords: ['losing', 'loser', 'lost', 'surrender', 'give up', 'fail'], 'char': '\ud83c\udff3', fitzpatrick_scale: !1, category: 'objects' }, black_flag: { keywords: ['pirate'], 'char': '\ud83c\udff4', fitzpatrick_scale: !1, category: 'objects' }, rainbow_flag: { keywords: ['flag', 'rainbow', 'pride', 'gay', 'lgbt', 'glbt', 'queer', 'homosexual', 'lesbian', 'bisexual', 'transgender'], 'char': '\ud83c\udff3\ufe0f\u200d\ud83c\udf08', fitzpatrick_scale: !1, category: 'objects' }, closed_lock_with_key: { keywords: ['security', 'privacy'], 'char': '\ud83d\udd10', fitzpatrick_scale: !1, category: 'objects' }, lock: { keywords: ['security', 'password', 'padlock'], 'char': '\ud83d\udd12', fitzpatrick_scale: !1, category: 'objects' }, unlock: { keywords: ['privacy', 'security'], 'char': '\ud83d\udd13', fitzpatrick_scale: !1, category: 'objects' }, lock_with_ink_pen: { keywords: ['security', 'secret'], 'char': '\ud83d\udd0f', fitzpatrick_scale: !1, category: 'objects' }, pen: { keywords: ['stationery', 'writing', 'write'], 'char': '\ud83d\udd8a', fitzpatrick_scale: !1, category: 'objects' }, fountain_pen: { keywords: ['stationery', 'writing', 'write'], 'char': '\ud83d\udd8b', fitzpatrick_scale: !1, category: 'objects' }, black_nib: { keywords: ['pen', 'stationery', 'writing', 'write'], 'char': '\u2712\ufe0f', fitzpatrick_scale: !1, category: 'objects' }, memo: { keywords: ['write', 'documents', 'stationery', 'pencil', 'paper', 'writing', 'legal', 'exam', 'quiz', 'test', 'study', 'compose'], 'char': '\ud83d\udcdd', fitzpatrick_scale: !1, category: 'objects' }, pencil2: { keywords: ['stationery', 'write', 'paper', 'writing', 'school', 'study'], 'char': '\u270f\ufe0f', fitzpatrick_scale: !1, category: 'objects' }, crayon: { keywords: ['drawing', 'creativity'], 'char': '\ud83d\udd8d', fitzpatrick_scale: !1, category: 'objects' }, paintbrush: { keywords: ['drawing', 'creativity', 'art'], 'char': '\ud83d\udd8c', fitzpatrick_scale: !1, category: 'objects' }, mag: { keywords: ['search', 'zoom', 'find', 'detective'], 'char': '\ud83d\udd0d', fitzpatrick_scale: !1, category: 'objects' }, mag_right: { keywords: ['search', 'zoom', 'find', 'detective'], 'char': '\ud83d\udd0e', fitzpatrick_scale: !1, category: 'objects' }, heart: { keywords: ['love', 'like', 'valentines'], 'char': '\u2764\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, orange_heart: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83e\udde1', fitzpatrick_scale: !1, category: 'symbols' }, yellow_heart: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc9b', fitzpatrick_scale: !1, category: 'symbols' }, green_heart: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc9a', fitzpatrick_scale: !1, category: 'symbols' }, blue_heart: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc99', fitzpatrick_scale: !1, category: 'symbols' }, purple_heart: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc9c', fitzpatrick_scale: !1, category: 'symbols' }, black_heart: { keywords: ['evil'], 'char': '\ud83d\udda4', fitzpatrick_scale: !1, category: 'symbols' }, broken_heart: { keywords: ['sad', 'sorry', 'break', 'heart', 'heartbreak'], 'char': '\ud83d\udc94', fitzpatrick_scale: !1, category: 'symbols' }, heavy_heart_exclamation: { keywords: ['decoration', 'love'], 'char': '\u2763', fitzpatrick_scale: !1, category: 'symbols' }, two_hearts: { keywords: ['love', 'like', 'affection', 'valentines', 'heart'], 'char': '\ud83d\udc95', fitzpatrick_scale: !1, category: 'symbols' }, revolving_hearts: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc9e', fitzpatrick_scale: !1, category: 'symbols' }, heartbeat: { keywords: ['love', 'like', 'affection', 'valentines', 'pink', 'heart'], 'char': '\ud83d\udc93', fitzpatrick_scale: !1, category: 'symbols' }, heartpulse: { keywords: ['like', 'love', 'affection', 'valentines', 'pink'], 'char': '\ud83d\udc97', fitzpatrick_scale: !1, category: 'symbols' }, sparkling_heart: { keywords: ['love', 'like', 'affection', 'valentines'], 'char': '\ud83d\udc96', fitzpatrick_scale: !1, category: 'symbols' }, cupid: { keywords: ['love', 'like', 'heart', 'affection', 'valentines'], 'char': '\ud83d\udc98', fitzpatrick_scale: !1, category: 'symbols' }, gift_heart: { keywords: ['love', 'valentines'], 'char': '\ud83d\udc9d', fitzpatrick_scale: !1, category: 'symbols' }, heart_decoration: { keywords: ['purple-square', 'love', 'like'], 'char': '\ud83d\udc9f', fitzpatrick_scale: !1, category: 'symbols' }, peace_symbol: { keywords: ['hippie'], 'char': '\u262e', fitzpatrick_scale: !1, category: 'symbols' }, latin_cross: { keywords: ['christianity'], 'char': '\u271d', fitzpatrick_scale: !1, category: 'symbols' }, star_and_crescent: { keywords: ['islam'], 'char': '\u262a', fitzpatrick_scale: !1, category: 'symbols' }, om: { keywords: ['hinduism', 'buddhism', 'sikhism', 'jainism'], 'char': '\ud83d\udd49', fitzpatrick_scale: !1, category: 'symbols' }, wheel_of_dharma: { keywords: ['hinduism', 'buddhism', 'sikhism', 'jainism'], 'char': '\u2638', fitzpatrick_scale: !1, category: 'symbols' }, star_of_david: { keywords: ['judaism'], 'char': '\u2721', fitzpatrick_scale: !1, category: 'symbols' }, six_pointed_star: { keywords: ['purple-square', 'religion', 'jewish', 'hexagram'], 'char': '\ud83d\udd2f', fitzpatrick_scale: !1, category: 'symbols' }, menorah: { keywords: ['hanukkah', 'candles', 'jewish'], 'char': '\ud83d\udd4e', fitzpatrick_scale: !1, category: 'symbols' }, yin_yang: { keywords: ['balance'], 'char': '\u262f', fitzpatrick_scale: !1, category: 'symbols' }, orthodox_cross: { keywords: ['suppedaneum', 'religion'], 'char': '\u2626', fitzpatrick_scale: !1, category: 'symbols' }, place_of_worship: { keywords: ['religion', 'church', 'temple', 'prayer'], 'char': '\ud83d\uded0', fitzpatrick_scale: !1, category: 'symbols' }, ophiuchus: { keywords: ['sign', 'purple-square', 'constellation', 'astrology'], 'char': '\u26ce', fitzpatrick_scale: !1, category: 'symbols' }, aries: { keywords: ['sign', 'purple-square', 'zodiac', 'astrology'], 'char': '\u2648', fitzpatrick_scale: !1, category: 'symbols' }, taurus: { keywords: ['purple-square', 'sign', 'zodiac', 'astrology'], 'char': '\u2649', fitzpatrick_scale: !1, category: 'symbols' }, gemini: { keywords: ['sign', 'zodiac', 'purple-square', 'astrology'], 'char': '\u264a', fitzpatrick_scale: !1, category: 'symbols' }, cancer: { keywords: ['sign', 'zodiac', 'purple-square', 'astrology'], 'char': '\u264b', fitzpatrick_scale: !1, category: 'symbols' }, leo: { keywords: ['sign', 'purple-square', 'zodiac', 'astrology'], 'char': '\u264c', fitzpatrick_scale: !1, category: 'symbols' }, virgo: { keywords: ['sign', 'zodiac', 'purple-square', 'astrology'], 'char': '\u264d', fitzpatrick_scale: !1, category: 'symbols' }, libra: { keywords: ['sign', 'purple-square', 'zodiac', 'astrology'], 'char': '\u264e', fitzpatrick_scale: !1, category: 'symbols' }, scorpius: { keywords: ['sign', 'zodiac', 'purple-square', 'astrology', 'scorpio'], 'char': '\u264f', fitzpatrick_scale: !1, category: 'symbols' }, sagittarius: { keywords: ['sign', 'zodiac', 'purple-square', 'astrology'], 'char': '\u2650', fitzpatrick_scale: !1, category: 'symbols' }, capricorn: { keywords: ['sign', 'zodiac', 'purple-square', 'astrology'], 'char': '\u2651', fitzpatrick_scale: !1, category: 'symbols' }, aquarius: { keywords: ['sign', 'purple-square', 'zodiac', 'astrology'], 'char': '\u2652', fitzpatrick_scale: !1, category: 'symbols' }, pisces: { keywords: ['purple-square', 'sign', 'zodiac', 'astrology'], 'char': '\u2653', fitzpatrick_scale: !1, category: 'symbols' }, id: { keywords: ['purple-square', 'words'], 'char': '\ud83c\udd94', fitzpatrick_scale: !1, category: 'symbols' }, atom_symbol: { keywords: ['science', 'physics', 'chemistry'], 'char': '\u269b', fitzpatrick_scale: !1, category: 'symbols' }, u7a7a: { keywords: ['kanji', 'japanese', 'chinese', 'empty', 'sky', 'blue-square'], 'char': '\ud83c\ude33', fitzpatrick_scale: !1, category: 'symbols' }, u5272: { keywords: ['cut', 'divide', 'chinese', 'kanji', 'pink-square'], 'char': '\ud83c\ude39', fitzpatrick_scale: !1, category: 'symbols' }, radioactive: { keywords: ['nuclear', 'danger'], 'char': '\u2622', fitzpatrick_scale: !1, category: 'symbols' }, biohazard: { keywords: ['danger'], 'char': '\u2623', fitzpatrick_scale: !1, category: 'symbols' }, mobile_phone_off: { keywords: ['mute', 'orange-square', 'silence', 'quiet'], 'char': '\ud83d\udcf4', fitzpatrick_scale: !1, category: 'symbols' }, vibration_mode: { keywords: ['orange-square', 'phone'], 'char': '\ud83d\udcf3', fitzpatrick_scale: !1, category: 'symbols' }, u6709: { keywords: ['orange-square', 'chinese', 'have', 'kanji'], 'char': '\ud83c\ude36', fitzpatrick_scale: !1, category: 'symbols' }, u7121: { keywords: ['nothing', 'chinese', 'kanji', 'japanese', 'orange-square'], 'char': '\ud83c\ude1a', fitzpatrick_scale: !1, category: 'symbols' }, u7533: { keywords: ['chinese', 'japanese', 'kanji', 'orange-square'], 'char': '\ud83c\ude38', fitzpatrick_scale: !1, category: 'symbols' }, u55b6: { keywords: ['japanese', 'opening hours', 'orange-square'], 'char': '\ud83c\ude3a', fitzpatrick_scale: !1, category: 'symbols' }, u6708: { keywords: ['chinese', 'month', 'moon', 'japanese', 'orange-square', 'kanji'], 'char': '\ud83c\ude37\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, eight_pointed_black_star: { keywords: ['orange-square', 'shape', 'polygon'], 'char': '\u2734\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, vs: { keywords: ['words', 'orange-square'], 'char': '\ud83c\udd9a', fitzpatrick_scale: !1, category: 'symbols' }, accept: { keywords: ['ok', 'good', 'chinese', 'kanji', 'agree', 'yes', 'orange-circle'], 'char': '\ud83c\ude51', fitzpatrick_scale: !1, category: 'symbols' }, white_flower: { keywords: ['japanese', 'spring'], 'char': '\ud83d\udcae', fitzpatrick_scale: !1, category: 'symbols' }, ideograph_advantage: { keywords: ['chinese', 'kanji', 'obtain', 'get', 'circle'], 'char': '\ud83c\ude50', fitzpatrick_scale: !1, category: 'symbols' }, secret: { keywords: ['privacy', 'chinese', 'sshh', 'kanji', 'red-circle'], 'char': '\u3299\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, congratulations: { keywords: ['chinese', 'kanji', 'japanese', 'red-circle'], 'char': '\u3297\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, u5408: { keywords: ['japanese', 'chinese', 'join', 'kanji', 'red-square'], 'char': '\ud83c\ude34', fitzpatrick_scale: !1, category: 'symbols' }, u6e80: { keywords: ['full', 'chinese', 'japanese', 'red-square', 'kanji'], 'char': '\ud83c\ude35', fitzpatrick_scale: !1, category: 'symbols' }, u7981: { keywords: ['kanji', 'japanese', 'chinese', 'forbidden', 'limit', 'restricted', 'red-square'], 'char': '\ud83c\ude32', fitzpatrick_scale: !1, category: 'symbols' }, a: { keywords: ['red-square', 'alphabet', 'letter'], 'char': '\ud83c\udd70\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, b: { keywords: ['red-square', 'alphabet', 'letter'], 'char': '\ud83c\udd71\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, ab: { keywords: ['red-square', 'alphabet'], 'char': '\ud83c\udd8e', fitzpatrick_scale: !1, category: 'symbols' }, cl: { keywords: ['alphabet', 'words', 'red-square'], 'char': '\ud83c\udd91', fitzpatrick_scale: !1, category: 'symbols' }, o2: { keywords: ['alphabet', 'red-square', 'letter'], 'char': '\ud83c\udd7e\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, sos: { keywords: ['help', 'red-square', 'words', 'emergency', '911'], 'char': '\ud83c\udd98', fitzpatrick_scale: !1, category: 'symbols' }, no_entry: { keywords: ['limit', 'security', 'privacy', 'bad', 'denied', 'stop', 'circle'], 'char': '\u26d4', fitzpatrick_scale: !1, category: 'symbols' }, name_badge: { keywords: ['fire', 'forbid'], 'char': '\ud83d\udcdb', fitzpatrick_scale: !1, category: 'symbols' }, no_entry_sign: { keywords: ['forbid', 'stop', 'limit', 'denied', 'disallow', 'circle'], 'char': '\ud83d\udeab', fitzpatrick_scale: !1, category: 'symbols' }, x: { keywords: ['no', 'delete', 'remove', 'cancel'], 'char': '\u274c', fitzpatrick_scale: !1, category: 'symbols' }, o: { keywords: ['circle', 'round'], 'char': '\u2b55', fitzpatrick_scale: !1, category: 'symbols' }, stop_sign: { keywords: ['stop'], 'char': '\ud83d\uded1', fitzpatrick_scale: !1, category: 'symbols' }, anger: { keywords: ['angry', 'mad'], 'char': '\ud83d\udca2', fitzpatrick_scale: !1, category: 'symbols' }, hotsprings: { keywords: ['bath', 'warm', 'relax'], 'char': '\u2668\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, no_pedestrians: { keywords: ['rules', 'crossing', 'walking', 'circle'], 'char': '\ud83d\udeb7', fitzpatrick_scale: !1, category: 'symbols' }, do_not_litter: { keywords: ['trash', 'bin', 'garbage', 'circle'], 'char': '\ud83d\udeaf', fitzpatrick_scale: !1, category: 'symbols' }, no_bicycles: { keywords: ['cyclist', 'prohibited', 'circle'], 'char': '\ud83d\udeb3', fitzpatrick_scale: !1, category: 'symbols' }, 'non-potable_water': { keywords: ['drink', 'faucet', 'tap', 'circle'], 'char': '\ud83d\udeb1', fitzpatrick_scale: !1, category: 'symbols' }, underage: { keywords: ['18', 'drink', 'pub', 'night', 'minor', 'circle'], 'char': '\ud83d\udd1e', fitzpatrick_scale: !1, category: 'symbols' }, no_mobile_phones: { keywords: ['iphone', 'mute', 'circle'], 'char': '\ud83d\udcf5', fitzpatrick_scale: !1, category: 'symbols' }, exclamation: { keywords: ['heavy_exclamation_mark', 'danger', 'surprise', 'punctuation', 'wow', 'warning'], 'char': '\u2757', fitzpatrick_scale: !1, category: 'symbols' }, grey_exclamation: { keywords: ['surprise', 'punctuation', 'gray', 'wow', 'warning'], 'char': '\u2755', fitzpatrick_scale: !1, category: 'symbols' }, question: { keywords: ['doubt', 'confused'], 'char': '\u2753', fitzpatrick_scale: !1, category: 'symbols' }, grey_question: { keywords: ['doubts', 'gray', 'huh', 'confused'], 'char': '\u2754', fitzpatrick_scale: !1, category: 'symbols' }, bangbang: { keywords: ['exclamation', 'surprise'], 'char': '\u203c\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, interrobang: { keywords: ['wat', 'punctuation', 'surprise'], 'char': '\u2049\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, 100: { keywords: ['score', 'perfect', 'numbers', 'century', 'exam', 'quiz', 'test', 'pass', 'hundred'], 'char': '\ud83d\udcaf', fitzpatrick_scale: !1, category: 'symbols' }, low_brightness: { keywords: ['sun', 'afternoon', 'warm', 'summer'], 'char': '\ud83d\udd05', fitzpatrick_scale: !1, category: 'symbols' }, high_brightness: { keywords: ['sun', 'light'], 'char': '\ud83d\udd06', fitzpatrick_scale: !1, category: 'symbols' }, trident: { keywords: ['weapon', 'spear'], 'char': '\ud83d\udd31', fitzpatrick_scale: !1, category: 'symbols' }, fleur_de_lis: { keywords: ['decorative', 'scout'], 'char': '\u269c', fitzpatrick_scale: !1, category: 'symbols' }, part_alternation_mark: { keywords: ['graph', 'presentation', 'stats', 'business', 'economics', 'bad'], 'char': '\u303d\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, warning: { keywords: ['exclamation', 'wip', 'alert', 'error', 'problem', 'issue'], 'char': '\u26a0\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, children_crossing: { keywords: ['school', 'warning', 'danger', 'sign', 'driving', 'yellow-diamond'], 'char': '\ud83d\udeb8', fitzpatrick_scale: !1, category: 'symbols' }, beginner: { keywords: ['badge', 'shield'], 'char': '\ud83d\udd30', fitzpatrick_scale: !1, category: 'symbols' }, recycle: { keywords: ['arrow', 'environment', 'garbage', 'trash'], 'char': '\u267b\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, u6307: { keywords: ['chinese', 'point', 'green-square', 'kanji'], 'char': '\ud83c\ude2f', fitzpatrick_scale: !1, category: 'symbols' }, chart: { keywords: ['green-square', 'graph', 'presentation', 'stats'], 'char': '\ud83d\udcb9', fitzpatrick_scale: !1, category: 'symbols' }, sparkle: { keywords: ['stars', 'green-square', 'awesome', 'good', 'fireworks'], 'char': '\u2747\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, eight_spoked_asterisk: { keywords: ['star', 'sparkle', 'green-square'], 'char': '\u2733\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, negative_squared_cross_mark: { keywords: ['x', 'green-square', 'no', 'deny'], 'char': '\u274e', fitzpatrick_scale: !1, category: 'symbols' }, white_check_mark: { keywords: ['green-square', 'ok', 'agree', 'vote', 'election', 'answer', 'tick'], 'char': '\u2705', fitzpatrick_scale: !1, category: 'symbols' }, diamond_shape_with_a_dot_inside: { keywords: ['jewel', 'blue', 'gem', 'crystal', 'fancy'], 'char': '\ud83d\udca0', fitzpatrick_scale: !1, category: 'symbols' }, cyclone: { keywords: ['weather', 'swirl', 'blue', 'cloud', 'vortex', 'spiral', 'whirlpool', 'spin', 'tornado', 'hurricane', 'typhoon'], 'char': '\ud83c\udf00', fitzpatrick_scale: !1, category: 'symbols' }, loop: { keywords: ['tape', 'cassette'], 'char': '\u27bf', fitzpatrick_scale: !1, category: 'symbols' }, globe_with_meridians: { keywords: ['earth', 'international', 'world', 'internet', 'interweb', 'i18n'], 'char': '\ud83c\udf10', fitzpatrick_scale: !1, category: 'symbols' }, m: { keywords: ['alphabet', 'blue-circle', 'letter'], 'char': '\u24c2\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, atm: { keywords: ['money', 'sales', 'cash', 'blue-square', 'payment', 'bank'], 'char': '\ud83c\udfe7', fitzpatrick_scale: !1, category: 'symbols' }, sa: { keywords: ['japanese', 'blue-square', 'katakana'], 'char': '\ud83c\ude02\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, passport_control: { keywords: ['custom', 'blue-square'], 'char': '\ud83d\udec2', fitzpatrick_scale: !1, category: 'symbols' }, customs: { keywords: ['passport', 'border', 'blue-square'], 'char': '\ud83d\udec3', fitzpatrick_scale: !1, category: 'symbols' }, baggage_claim: { keywords: ['blue-square', 'airport', 'transport'], 'char': '\ud83d\udec4', fitzpatrick_scale: !1, category: 'symbols' }, left_luggage: { keywords: ['blue-square', 'travel'], 'char': '\ud83d\udec5', fitzpatrick_scale: !1, category: 'symbols' }, wheelchair: { keywords: ['blue-square', 'disabled', 'a11y', 'accessibility'], 'char': '\u267f', fitzpatrick_scale: !1, category: 'symbols' }, no_smoking: { keywords: ['cigarette', 'blue-square', 'smell', 'smoke'], 'char': '\ud83d\udead', fitzpatrick_scale: !1, category: 'symbols' }, wc: { keywords: ['toilet', 'restroom', 'blue-square'], 'char': '\ud83d\udebe', fitzpatrick_scale: !1, category: 'symbols' }, parking: { keywords: ['cars', 'blue-square', 'alphabet', 'letter'], 'char': '\ud83c\udd7f\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, potable_water: { keywords: ['blue-square', 'liquid', 'restroom', 'cleaning', 'faucet'], 'char': '\ud83d\udeb0', fitzpatrick_scale: !1, category: 'symbols' }, mens: { keywords: ['toilet', 'restroom', 'wc', 'blue-square', 'gender', 'male'], 'char': '\ud83d\udeb9', fitzpatrick_scale: !1, category: 'symbols' }, womens: { keywords: ['purple-square', 'woman', 'female', 'toilet', 'loo', 'restroom', 'gender'], 'char': '\ud83d\udeba', fitzpatrick_scale: !1, category: 'symbols' }, baby_symbol: { keywords: ['orange-square', 'child'], 'char': '\ud83d\udebc', fitzpatrick_scale: !1, category: 'symbols' }, restroom: { keywords: ['blue-square', 'toilet', 'refresh', 'wc', 'gender'], 'char': '\ud83d\udebb', fitzpatrick_scale: !1, category: 'symbols' }, put_litter_in_its_place: { keywords: ['blue-square', 'sign', 'human', 'info'], 'char': '\ud83d\udeae', fitzpatrick_scale: !1, category: 'symbols' }, cinema: { keywords: ['blue-square', 'record', 'film', 'movie', 'curtain', 'stage', 'theater'], 'char': '\ud83c\udfa6', fitzpatrick_scale: !1, category: 'symbols' }, signal_strength: { keywords: ['blue-square', 'reception', 'phone', 'internet', 'connection', 'wifi', 'bluetooth', 'bars'], 'char': '\ud83d\udcf6', fitzpatrick_scale: !1, category: 'symbols' }, koko: { keywords: ['blue-square', 'here', 'katakana', 'japanese', 'destination'], 'char': '\ud83c\ude01', fitzpatrick_scale: !1, category: 'symbols' }, ng: { keywords: ['blue-square', 'words', 'shape', 'icon'], 'char': '\ud83c\udd96', fitzpatrick_scale: !1, category: 'symbols' }, ok: { keywords: ['good', 'agree', 'yes', 'blue-square'], 'char': '\ud83c\udd97', fitzpatrick_scale: !1, category: 'symbols' }, up: { keywords: ['blue-square', 'above', 'high'], 'char': '\ud83c\udd99', fitzpatrick_scale: !1, category: 'symbols' }, cool: { keywords: ['words', 'blue-square'], 'char': '\ud83c\udd92', fitzpatrick_scale: !1, category: 'symbols' }, 'new': { keywords: ['blue-square', 'words', 'start'], 'char': '\ud83c\udd95', fitzpatrick_scale: !1, category: 'symbols' }, free: { keywords: ['blue-square', 'words'], 'char': '\ud83c\udd93', fitzpatrick_scale: !1, category: 'symbols' }, zero: { keywords: ['0', 'numbers', 'blue-square', 'null'], 'char': '0\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, one: { keywords: ['blue-square', 'numbers', '1'], 'char': '1\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, two: { keywords: ['numbers', '2', 'prime', 'blue-square'], 'char': '2\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, three: { keywords: ['3', 'numbers', 'prime', 'blue-square'], 'char': '3\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, four: { keywords: ['4', 'numbers', 'blue-square'], 'char': '4\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, five: { keywords: ['5', 'numbers', 'blue-square', 'prime'], 'char': '5\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, six: { keywords: ['6', 'numbers', 'blue-square'], 'char': '6\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, seven: { keywords: ['7', 'numbers', 'blue-square', 'prime'], 'char': '7\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, eight: { keywords: ['8', 'blue-square', 'numbers'], 'char': '8\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, nine: { keywords: ['blue-square', 'numbers', '9'], 'char': '9\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, keycap_ten: { keywords: ['numbers', '10', 'blue-square'], 'char': '\ud83d\udd1f', fitzpatrick_scale: !1, category: 'symbols' }, asterisk: { keywords: ['star', 'keycap'], 'char': '*\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, 1234: { keywords: ['numbers', 'blue-square'], 'char': '\ud83d\udd22', fitzpatrick_scale: !1, category: 'symbols' }, eject_button: { keywords: ['blue-square'], 'char': '\u23cf\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_forward: { keywords: ['blue-square', 'right', 'direction', 'play'], 'char': '\u25b6\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, pause_button: { keywords: ['pause', 'blue-square'], 'char': '\u23f8', fitzpatrick_scale: !1, category: 'symbols' }, next_track_button: { keywords: ['forward', 'next', 'blue-square'], 'char': '\u23ed', fitzpatrick_scale: !1, category: 'symbols' }, stop_button: { keywords: ['blue-square'], 'char': '\u23f9', fitzpatrick_scale: !1, category: 'symbols' }, record_button: { keywords: ['blue-square'], 'char': '\u23fa', fitzpatrick_scale: !1, category: 'symbols' }, play_or_pause_button: { keywords: ['blue-square', 'play', 'pause'], 'char': '\u23ef', fitzpatrick_scale: !1, category: 'symbols' }, previous_track_button: { keywords: ['backward'], 'char': '\u23ee', fitzpatrick_scale: !1, category: 'symbols' }, fast_forward: { keywords: ['blue-square', 'play', 'speed', 'continue'], 'char': '\u23e9', fitzpatrick_scale: !1, category: 'symbols' }, rewind: { keywords: ['play', 'blue-square'], 'char': '\u23ea', fitzpatrick_scale: !1, category: 'symbols' }, twisted_rightwards_arrows: { keywords: ['blue-square', 'shuffle', 'music', 'random'], 'char': '\ud83d\udd00', fitzpatrick_scale: !1, category: 'symbols' }, repeat: { keywords: ['loop', 'record'], 'char': '\ud83d\udd01', fitzpatrick_scale: !1, category: 'symbols' }, repeat_one: { keywords: ['blue-square', 'loop'], 'char': '\ud83d\udd02', fitzpatrick_scale: !1, category: 'symbols' }, arrow_backward: { keywords: ['blue-square', 'left', 'direction'], 'char': '\u25c0\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_up_small: { keywords: ['blue-square', 'triangle', 'direction', 'point', 'forward', 'top'], 'char': '\ud83d\udd3c', fitzpatrick_scale: !1, category: 'symbols' }, arrow_down_small: { keywords: ['blue-square', 'direction', 'bottom'], 'char': '\ud83d\udd3d', fitzpatrick_scale: !1, category: 'symbols' }, arrow_double_up: { keywords: ['blue-square', 'direction', 'top'], 'char': '\u23eb', fitzpatrick_scale: !1, category: 'symbols' }, arrow_double_down: { keywords: ['blue-square', 'direction', 'bottom'], 'char': '\u23ec', fitzpatrick_scale: !1, category: 'symbols' }, arrow_right: { keywords: ['blue-square', 'next'], 'char': '\u27a1\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_left: { keywords: ['blue-square', 'previous', 'back'], 'char': '\u2b05\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_up: { keywords: ['blue-square', 'continue', 'top', 'direction'], 'char': '\u2b06\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_down: { keywords: ['blue-square', 'direction', 'bottom'], 'char': '\u2b07\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_upper_right: { keywords: ['blue-square', 'point', 'direction', 'diagonal', 'northeast'], 'char': '\u2197\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_lower_right: { keywords: ['blue-square', 'direction', 'diagonal', 'southeast'], 'char': '\u2198\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_lower_left: { keywords: ['blue-square', 'direction', 'diagonal', 'southwest'], 'char': '\u2199\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_upper_left: { keywords: ['blue-square', 'point', 'direction', 'diagonal', 'northwest'], 'char': '\u2196\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_up_down: { keywords: ['blue-square', 'direction', 'way', 'vertical'], 'char': '\u2195\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, left_right_arrow: { keywords: ['shape', 'direction', 'horizontal', 'sideways'], 'char': '\u2194\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrows_counterclockwise: { keywords: ['blue-square', 'sync', 'cycle'], 'char': '\ud83d\udd04', fitzpatrick_scale: !1, category: 'symbols' }, arrow_right_hook: { keywords: ['blue-square', 'return', 'rotate', 'direction'], 'char': '\u21aa\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, leftwards_arrow_with_hook: { keywords: ['back', 'return', 'blue-square', 'undo', 'enter'], 'char': '\u21a9\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_heading_up: { keywords: ['blue-square', 'direction', 'top'], 'char': '\u2934\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrow_heading_down: { keywords: ['blue-square', 'direction', 'bottom'], 'char': '\u2935\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, hash: { keywords: ['symbol', 'blue-square', 'twitter'], 'char': '#\ufe0f\u20e3', fitzpatrick_scale: !1, category: 'symbols' }, information_source: { keywords: ['blue-square', 'alphabet', 'letter'], 'char': '\u2139\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, abc: { keywords: ['blue-square', 'alphabet'], 'char': '\ud83d\udd24', fitzpatrick_scale: !1, category: 'symbols' }, abcd: { keywords: ['blue-square', 'alphabet'], 'char': '\ud83d\udd21', fitzpatrick_scale: !1, category: 'symbols' }, capital_abcd: { keywords: ['alphabet', 'words', 'blue-square'], 'char': '\ud83d\udd20', fitzpatrick_scale: !1, category: 'symbols' }, symbols: { keywords: ['blue-square', 'music', 'note', 'ampersand', 'percent', 'glyphs', 'characters'], 'char': '\ud83d\udd23', fitzpatrick_scale: !1, category: 'symbols' }, musical_note: { keywords: ['score', 'tone', 'sound'], 'char': '\ud83c\udfb5', fitzpatrick_scale: !1, category: 'symbols' }, notes: { keywords: ['music', 'score'], 'char': '\ud83c\udfb6', fitzpatrick_scale: !1, category: 'symbols' }, wavy_dash: { keywords: ['draw', 'line', 'moustache', 'mustache', 'squiggle', 'scribble'], 'char': '\u3030\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, curly_loop: { keywords: ['scribble', 'draw', 'shape', 'squiggle'], 'char': '\u27b0', fitzpatrick_scale: !1, category: 'symbols' }, heavy_check_mark: { keywords: ['ok', 'nike', 'answer', 'yes', 'tick'], 'char': '\u2714\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, arrows_clockwise: { keywords: ['sync', 'cycle', 'round', 'repeat'], 'char': '\ud83d\udd03', fitzpatrick_scale: !1, category: 'symbols' }, heavy_plus_sign: { keywords: ['math', 'calculation', 'addition', 'more', 'increase'], 'char': '\u2795', fitzpatrick_scale: !1, category: 'symbols' }, heavy_minus_sign: { keywords: ['math', 'calculation', 'subtract', 'less'], 'char': '\u2796', fitzpatrick_scale: !1, category: 'symbols' }, heavy_division_sign: { keywords: ['divide', 'math', 'calculation'], 'char': '\u2797', fitzpatrick_scale: !1, category: 'symbols' }, heavy_multiplication_x: { keywords: ['math', 'calculation'], 'char': '\u2716\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, heavy_dollar_sign: { keywords: ['money', 'sales', 'payment', 'currency', 'buck'], 'char': '\ud83d\udcb2', fitzpatrick_scale: !1, category: 'symbols' }, currency_exchange: { keywords: ['money', 'sales', 'dollar', 'travel'], 'char': '\ud83d\udcb1', fitzpatrick_scale: !1, category: 'symbols' }, copyright: { keywords: ['ip', 'license', 'circle', 'law', 'legal'], 'char': '\xa9\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, registered: { keywords: ['alphabet', 'circle'], 'char': '\xae\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, tm: { keywords: ['trademark', 'brand', 'law', 'legal'], 'char': '\u2122\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, end: { keywords: ['words', 'arrow'], 'char': '\ud83d\udd1a', fitzpatrick_scale: !1, category: 'symbols' }, back: { keywords: ['arrow', 'words', 'return'], 'char': '\ud83d\udd19', fitzpatrick_scale: !1, category: 'symbols' }, on: { keywords: ['arrow', 'words'], 'char': '\ud83d\udd1b', fitzpatrick_scale: !1, category: 'symbols' }, top: { keywords: ['words', 'blue-square'], 'char': '\ud83d\udd1d', fitzpatrick_scale: !1, category: 'symbols' }, soon: { keywords: ['arrow', 'words'], 'char': '\ud83d\udd1c', fitzpatrick_scale: !1, category: 'symbols' }, ballot_box_with_check: { keywords: ['ok', 'agree', 'confirm', 'black-square', 'vote', 'election', 'yes', 'tick'], 'char': '\u2611\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, radio_button: { keywords: ['input', 'old', 'music', 'circle'], 'char': '\ud83d\udd18', fitzpatrick_scale: !1, category: 'symbols' }, white_circle: { keywords: ['shape', 'round'], 'char': '\u26aa', fitzpatrick_scale: !1, category: 'symbols' }, black_circle: { keywords: ['shape', 'button', 'round'], 'char': '\u26ab', fitzpatrick_scale: !1, category: 'symbols' }, red_circle: { keywords: ['shape', 'error', 'danger'], 'char': '\ud83d\udd34', fitzpatrick_scale: !1, category: 'symbols' }, large_blue_circle: { keywords: ['shape', 'icon', 'button'], 'char': '\ud83d\udd35', fitzpatrick_scale: !1, category: 'symbols' }, small_orange_diamond: { keywords: ['shape', 'jewel', 'gem'], 'char': '\ud83d\udd38', fitzpatrick_scale: !1, category: 'symbols' }, small_blue_diamond: { keywords: ['shape', 'jewel', 'gem'], 'char': '\ud83d\udd39', fitzpatrick_scale: !1, category: 'symbols' }, large_orange_diamond: { keywords: ['shape', 'jewel', 'gem'], 'char': '\ud83d\udd36', fitzpatrick_scale: !1, category: 'symbols' }, large_blue_diamond: { keywords: ['shape', 'jewel', 'gem'], 'char': '\ud83d\udd37', fitzpatrick_scale: !1, category: 'symbols' }, small_red_triangle: { keywords: ['shape', 'direction', 'up', 'top'], 'char': '\ud83d\udd3a', fitzpatrick_scale: !1, category: 'symbols' }, black_small_square: { keywords: ['shape', 'icon'], 'char': '\u25aa\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, white_small_square: { keywords: ['shape', 'icon'], 'char': '\u25ab\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, black_large_square: { keywords: ['shape', 'icon', 'button'], 'char': '\u2b1b', fitzpatrick_scale: !1, category: 'symbols' }, white_large_square: { keywords: ['shape', 'icon', 'stone', 'button'], 'char': '\u2b1c', fitzpatrick_scale: !1, category: 'symbols' }, small_red_triangle_down: { keywords: ['shape', 'direction', 'bottom'], 'char': '\ud83d\udd3b', fitzpatrick_scale: !1, category: 'symbols' }, black_medium_square: { keywords: ['shape', 'button', 'icon'], 'char': '\u25fc\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, white_medium_square: { keywords: ['shape', 'stone', 'icon'], 'char': '\u25fb\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, black_medium_small_square: { keywords: ['icon', 'shape', 'button'], 'char': '\u25fe', fitzpatrick_scale: !1, category: 'symbols' }, white_medium_small_square: { keywords: ['shape', 'stone', 'icon', 'button'], 'char': '\u25fd', fitzpatrick_scale: !1, category: 'symbols' }, black_square_button: { keywords: ['shape', 'input', 'frame'], 'char': '\ud83d\udd32', fitzpatrick_scale: !1, category: 'symbols' }, white_square_button: { keywords: ['shape', 'input'], 'char': '\ud83d\udd33', fitzpatrick_scale: !1, category: 'symbols' }, speaker: { keywords: ['sound', 'volume', 'silence', 'broadcast'], 'char': '\ud83d\udd08', fitzpatrick_scale: !1, category: 'symbols' }, sound: { keywords: ['volume', 'speaker', 'broadcast'], 'char': '\ud83d\udd09', fitzpatrick_scale: !1, category: 'symbols' }, loud_sound: { keywords: ['volume', 'noise', 'noisy', 'speaker', 'broadcast'], 'char': '\ud83d\udd0a', fitzpatrick_scale: !1, category: 'symbols' }, mute: { keywords: ['sound', 'volume', 'silence', 'quiet'], 'char': '\ud83d\udd07', fitzpatrick_scale: !1, category: 'symbols' }, mega: { keywords: ['sound', 'speaker', 'volume'], 'char': '\ud83d\udce3', fitzpatrick_scale: !1, category: 'symbols' }, loudspeaker: { keywords: ['volume', 'sound'], 'char': '\ud83d\udce2', fitzpatrick_scale: !1, category: 'symbols' }, bell: { keywords: ['sound', 'notification', 'christmas', 'xmas', 'chime'], 'char': '\ud83d\udd14', fitzpatrick_scale: !1, category: 'symbols' }, no_bell: { keywords: ['sound', 'volume', 'mute', 'quiet', 'silent'], 'char': '\ud83d\udd15', fitzpatrick_scale: !1, category: 'symbols' }, black_joker: { keywords: ['poker', 'cards', 'game', 'play', 'magic'], 'char': '\ud83c\udccf', fitzpatrick_scale: !1, category: 'symbols' }, mahjong: { keywords: ['game', 'play', 'chinese', 'kanji'], 'char': '\ud83c\udc04', fitzpatrick_scale: !1, category: 'symbols' }, spades: { keywords: ['poker', 'cards', 'suits', 'magic'], 'char': '\u2660\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, clubs: { keywords: ['poker', 'cards', 'magic', 'suits'], 'char': '\u2663\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, hearts: { keywords: ['poker', 'cards', 'magic', 'suits'], 'char': '\u2665\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, diamonds: { keywords: ['poker', 'cards', 'magic', 'suits'], 'char': '\u2666\ufe0f', fitzpatrick_scale: !1, category: 'symbols' }, flower_playing_cards: { keywords: ['game', 'sunset', 'red'], 'char': '\ud83c\udfb4', fitzpatrick_scale: !1, category: 'symbols' }, thought_balloon: { keywords: ['bubble', 'cloud', 'speech', 'thinking', 'dream'], 'char': '\ud83d\udcad', fitzpatrick_scale: !1, category: 'symbols' }, right_anger_bubble: { keywords: ['caption', 'speech', 'thinking', 'mad'], 'char': '\ud83d\uddef', fitzpatrick_scale: !1, category: 'symbols' }, speech_balloon: { keywords: ['bubble', 'words', 'message', 'talk', 'chatting'], 'char': '\ud83d\udcac', fitzpatrick_scale: !1, category: 'symbols' }, left_speech_bubble: { keywords: ['words', 'message', 'talk', 'chatting'], 'char': '\ud83d\udde8', fitzpatrick_scale: !1, category: 'symbols' }, clock1: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd50', fitzpatrick_scale: !1, category: 'symbols' }, clock2: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd51', fitzpatrick_scale: !1, category: 'symbols' }, clock3: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd52', fitzpatrick_scale: !1, category: 'symbols' }, clock4: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd53', fitzpatrick_scale: !1, category: 'symbols' }, clock5: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd54', fitzpatrick_scale: !1, category: 'symbols' }, clock6: { keywords: ['time', 'late', 'early', 'schedule', 'dawn', 'dusk'], 'char': '\ud83d\udd55', fitzpatrick_scale: !1, category: 'symbols' }, clock7: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd56', fitzpatrick_scale: !1, category: 'symbols' }, clock8: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd57', fitzpatrick_scale: !1, category: 'symbols' }, clock9: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd58', fitzpatrick_scale: !1, category: 'symbols' }, clock10: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd59', fitzpatrick_scale: !1, category: 'symbols' }, clock11: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd5a', fitzpatrick_scale: !1, category: 'symbols' }, clock12: { keywords: ['time', 'noon', 'midnight', 'midday', 'late', 'early', 'schedule'], 'char': '\ud83d\udd5b', fitzpatrick_scale: !1, category: 'symbols' }, clock130: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd5c', fitzpatrick_scale: !1, category: 'symbols' }, clock230: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd5d', fitzpatrick_scale: !1, category: 'symbols' }, clock330: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd5e', fitzpatrick_scale: !1, category: 'symbols' }, clock430: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd5f', fitzpatrick_scale: !1, category: 'symbols' }, clock530: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd60', fitzpatrick_scale: !1, category: 'symbols' }, clock630: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd61', fitzpatrick_scale: !1, category: 'symbols' }, clock730: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd62', fitzpatrick_scale: !1, category: 'symbols' }, clock830: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd63', fitzpatrick_scale: !1, category: 'symbols' }, clock930: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd64', fitzpatrick_scale: !1, category: 'symbols' }, clock1030: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd65', fitzpatrick_scale: !1, category: 'symbols' }, clock1130: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd66', fitzpatrick_scale: !1, category: 'symbols' }, clock1230: { keywords: ['time', 'late', 'early', 'schedule'], 'char': '\ud83d\udd67', fitzpatrick_scale: !1, category: 'symbols' }, afghanistan: { keywords: ['af', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, aland_islands: { keywords: ['\xc5land', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddfd', fitzpatrick_scale: !1, category: 'flags' }, albania: { keywords: ['al', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, algeria: { keywords: ['dz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde9\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, american_samoa: { keywords: ['american', 'ws', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, andorra: { keywords: ['ad', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, angola: { keywords: ['ao', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, anguilla: { keywords: ['ai', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, antarctica: { keywords: ['aq', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf6', fitzpatrick_scale: !1, category: 'flags' }, antigua_barbuda: { keywords: ['antigua', 'barbuda', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, argentina: { keywords: ['ar', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, armenia: { keywords: ['am', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, aruba: { keywords: ['aw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, australia: { keywords: ['au', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, austria: { keywords: ['at', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, azerbaijan: { keywords: ['az', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, bahamas: { keywords: ['bs', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, bahrain: { keywords: ['bh', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, bangladesh: { keywords: ['bd', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, barbados: { keywords: ['bb', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\udde7', fitzpatrick_scale: !1, category: 'flags' }, belarus: { keywords: ['by', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, belgium: { keywords: ['be', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, belize: { keywords: ['bz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, benin: { keywords: ['bj', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddef', fitzpatrick_scale: !1, category: 'flags' }, bermuda: { keywords: ['bm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, bhutan: { keywords: ['bt', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, bolivia: { keywords: ['bo', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, caribbean_netherlands: { keywords: ['bonaire', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf6', fitzpatrick_scale: !1, category: 'flags' }, bosnia_herzegovina: { keywords: ['bosnia', 'herzegovina', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, botswana: { keywords: ['bw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, brazil: { keywords: ['br', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, british_indian_ocean_territory: { keywords: ['british', 'indian', 'ocean', 'territory', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, british_virgin_islands: { keywords: ['british', 'virgin', 'islands', 'bvi', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, brunei: { keywords: ['bn', 'darussalam', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, bulgaria: { keywords: ['bg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, burkina_faso: { keywords: ['burkina', 'faso', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, burundi: { keywords: ['bi', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, cape_verde: { keywords: ['cabo', 'verde', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddfb', fitzpatrick_scale: !1, category: 'flags' }, cambodia: { keywords: ['kh', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, cameroon: { keywords: ['cm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, canada: { keywords: ['ca', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, canary_islands: { keywords: ['canary', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, cayman_islands: { keywords: ['cayman', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, central_african_republic: { keywords: ['central', 'african', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, chad: { keywords: ['td', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, chile: { keywords: ['flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, cn: { keywords: ['china', 'chinese', 'prc', 'flag', 'country', 'nation', 'banner'], 'char': '\ud83c\udde8\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, christmas_island: { keywords: ['christmas', 'island', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddfd', fitzpatrick_scale: !1, category: 'flags' }, cocos_islands: { keywords: ['cocos', 'keeling', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, colombia: { keywords: ['co', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, comoros: { keywords: ['km', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, congo_brazzaville: { keywords: ['congo', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, congo_kinshasa: { keywords: ['congo', 'democratic', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, cook_islands: { keywords: ['cook', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, costa_rica: { keywords: ['costa', 'rica', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, croatia: { keywords: ['hr', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udded\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, cuba: { keywords: ['cu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, curacao: { keywords: ['cura\xe7ao', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, cyprus: { keywords: ['cy', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, czech_republic: { keywords: ['cz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, denmark: { keywords: ['dk', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde9\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, djibouti: { keywords: ['dj', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde9\ud83c\uddef', fitzpatrick_scale: !1, category: 'flags' }, dominica: { keywords: ['dm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde9\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, dominican_republic: { keywords: ['dominican', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde9\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, ecuador: { keywords: ['ec', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, egypt: { keywords: ['eg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, el_salvador: { keywords: ['el', 'salvador', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddfb', fitzpatrick_scale: !1, category: 'flags' }, equatorial_guinea: { keywords: ['equatorial', 'gn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf6', fitzpatrick_scale: !1, category: 'flags' }, eritrea: { keywords: ['er', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, estonia: { keywords: ['ee', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, ethiopia: { keywords: ['et', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, eu: { keywords: ['european', 'union', 'flag', 'banner'], 'char': '\ud83c\uddea\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, falkland_islands: { keywords: ['falkland', 'islands', 'malvinas', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddeb\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, faroe_islands: { keywords: ['faroe', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddeb\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, fiji: { keywords: ['fj', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddeb\ud83c\uddef', fitzpatrick_scale: !1, category: 'flags' }, finland: { keywords: ['fi', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddeb\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, fr: { keywords: ['banner', 'flag', 'nation', 'france', 'french', 'country'], 'char': '\ud83c\uddeb\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, french_guiana: { keywords: ['french', 'guiana', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, french_polynesia: { keywords: ['french', 'polynesia', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, french_southern_territories: { keywords: ['french', 'southern', 'territories', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, gabon: { keywords: ['ga', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, gambia: { keywords: ['gm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, georgia: { keywords: ['ge', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, de: { keywords: ['german', 'nation', 'flag', 'country', 'banner'], 'char': '\ud83c\udde9\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, ghana: { keywords: ['gh', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, gibraltar: { keywords: ['gi', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, greece: { keywords: ['gr', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, greenland: { keywords: ['gl', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, grenada: { keywords: ['gd', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, guadeloupe: { keywords: ['gp', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf5', fitzpatrick_scale: !1, category: 'flags' }, guam: { keywords: ['gu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, guatemala: { keywords: ['gt', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, guernsey: { keywords: ['gg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, guinea: { keywords: ['gn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, guinea_bissau: { keywords: ['gw', 'bissau', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, guyana: { keywords: ['gy', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, haiti: { keywords: ['ht', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udded\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, honduras: { keywords: ['hn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udded\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, hong_kong: { keywords: ['hong', 'kong', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udded\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, hungary: { keywords: ['hu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udded\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, iceland: { keywords: ['is', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, india: { keywords: ['in', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, indonesia: { keywords: ['flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, iran: { keywords: ['iran,', 'islamic', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, iraq: { keywords: ['iq', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf6', fitzpatrick_scale: !1, category: 'flags' }, ireland: { keywords: ['ie', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, isle_of_man: { keywords: ['isle', 'man', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, israel: { keywords: ['il', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, it: { keywords: ['italy', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddee\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, cote_divoire: { keywords: ['ivory', 'coast', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, jamaica: { keywords: ['jm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddef\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, jp: { keywords: ['japanese', 'nation', 'flag', 'country', 'banner'], 'char': '\ud83c\uddef\ud83c\uddf5', fitzpatrick_scale: !1, category: 'flags' }, jersey: { keywords: ['je', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddef\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, jordan: { keywords: ['jo', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddef\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, kazakhstan: { keywords: ['kz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, kenya: { keywords: ['ke', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, kiribati: { keywords: ['ki', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, kosovo: { keywords: ['xk', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfd\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, kuwait: { keywords: ['kw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, kyrgyzstan: { keywords: ['kg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, laos: { keywords: ['lao', 'democratic', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, latvia: { keywords: ['lv', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddfb', fitzpatrick_scale: !1, category: 'flags' }, lebanon: { keywords: ['lb', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\udde7', fitzpatrick_scale: !1, category: 'flags' }, lesotho: { keywords: ['ls', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, liberia: { keywords: ['lr', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, libya: { keywords: ['ly', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, liechtenstein: { keywords: ['li', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, lithuania: { keywords: ['lt', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, luxembourg: { keywords: ['lu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, macau: { keywords: ['macao', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, macedonia: { keywords: ['macedonia,', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, madagascar: { keywords: ['mg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, malawi: { keywords: ['mw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, malaysia: { keywords: ['my', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, maldives: { keywords: ['mv', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddfb', fitzpatrick_scale: !1, category: 'flags' }, mali: { keywords: ['ml', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, malta: { keywords: ['mt', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, marshall_islands: { keywords: ['marshall', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, martinique: { keywords: ['mq', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf6', fitzpatrick_scale: !1, category: 'flags' }, mauritania: { keywords: ['mr', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, mauritius: { keywords: ['mu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, mayotte: { keywords: ['yt', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfe\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, mexico: { keywords: ['mx', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddfd', fitzpatrick_scale: !1, category: 'flags' }, micronesia: { keywords: ['micronesia,', 'federated', 'states', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddeb\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, moldova: { keywords: ['moldova,', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, monaco: { keywords: ['mc', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, mongolia: { keywords: ['mn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, montenegro: { keywords: ['me', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, montserrat: { keywords: ['ms', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, morocco: { keywords: ['ma', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, mozambique: { keywords: ['mz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, myanmar: { keywords: ['mm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, namibia: { keywords: ['na', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, nauru: { keywords: ['nr', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, nepal: { keywords: ['np', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddf5', fitzpatrick_scale: !1, category: 'flags' }, netherlands: { keywords: ['nl', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, new_caledonia: { keywords: ['new', 'caledonia', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, new_zealand: { keywords: ['new', 'zealand', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, nicaragua: { keywords: ['ni', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, niger: { keywords: ['ne', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, nigeria: { keywords: ['flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, niue: { keywords: ['nu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, norfolk_island: { keywords: ['norfolk', 'island', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, northern_mariana_islands: { keywords: ['northern', 'mariana', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf2\ud83c\uddf5', fitzpatrick_scale: !1, category: 'flags' }, north_korea: { keywords: ['north', 'korea', 'nation', 'flag', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddf5', fitzpatrick_scale: !1, category: 'flags' }, norway: { keywords: ['no', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf3\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, oman: { keywords: ['om_symbol', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf4\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, pakistan: { keywords: ['pk', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, palau: { keywords: ['pw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, palestinian_territories: { keywords: ['palestine', 'palestinian', 'territories', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, panama: { keywords: ['pa', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, papua_new_guinea: { keywords: ['papua', 'new', 'guinea', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, paraguay: { keywords: ['py', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, peru: { keywords: ['pe', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, philippines: { keywords: ['ph', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, pitcairn_islands: { keywords: ['pitcairn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, poland: { keywords: ['pl', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, portugal: { keywords: ['pt', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, puerto_rico: { keywords: ['puerto', 'rico', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, qatar: { keywords: ['qa', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf6\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, reunion: { keywords: ['r\xe9union', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf7\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, romania: { keywords: ['ro', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf7\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, ru: { keywords: ['russian', 'federation', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf7\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, rwanda: { keywords: ['rw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf7\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, st_barthelemy: { keywords: ['saint', 'barth\xe9lemy', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde7\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, st_helena: { keywords: ['saint', 'helena', 'ascension', 'tristan', 'cunha', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, st_kitts_nevis: { keywords: ['saint', 'kitts', 'nevis', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, st_lucia: { keywords: ['saint', 'lucia', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, st_pierre_miquelon: { keywords: ['saint', 'pierre', 'miquelon', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf5\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, st_vincent_grenadines: { keywords: ['saint', 'vincent', 'grenadines', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, samoa: { keywords: ['ws', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfc\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, san_marino: { keywords: ['san', 'marino', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, sao_tome_principe: { keywords: ['sao', 'tome', 'principe', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, saudi_arabia: { keywords: ['flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, senegal: { keywords: ['sn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, serbia: { keywords: ['rs', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf7\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, seychelles: { keywords: ['sc', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, sierra_leone: { keywords: ['sierra', 'leone', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, singapore: { keywords: ['sg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, sint_maarten: { keywords: ['sint', 'maarten', 'dutch', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddfd', fitzpatrick_scale: !1, category: 'flags' }, slovakia: { keywords: ['sk', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, slovenia: { keywords: ['si', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, solomon_islands: { keywords: ['solomon', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\udde7', fitzpatrick_scale: !1, category: 'flags' }, somalia: { keywords: ['so', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, south_africa: { keywords: ['south', 'africa', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddff\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, south_georgia_south_sandwich_islands: { keywords: ['south', 'georgia', 'sandwich', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddec\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, kr: { keywords: ['south', 'korea', 'nation', 'flag', 'country', 'banner'], 'char': '\ud83c\uddf0\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, south_sudan: { keywords: ['south', 'sd', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, es: { keywords: ['spain', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, sri_lanka: { keywords: ['sri', 'lanka', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf1\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, sudan: { keywords: ['sd', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\udde9', fitzpatrick_scale: !1, category: 'flags' }, suriname: { keywords: ['sr', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, swaziland: { keywords: ['sz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, sweden: { keywords: ['se', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, switzerland: { keywords: ['ch', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde8\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, syria: { keywords: ['syrian', 'arab', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf8\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, taiwan: { keywords: ['tw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' }, tajikistan: { keywords: ['tj', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddef', fitzpatrick_scale: !1, category: 'flags' }, tanzania: { keywords: ['tanzania,', 'united', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, thailand: { keywords: ['th', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, timor_leste: { keywords: ['timor', 'leste', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf1', fitzpatrick_scale: !1, category: 'flags' }, togo: { keywords: ['tg', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, tokelau: { keywords: ['tk', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf0', fitzpatrick_scale: !1, category: 'flags' }, tonga: { keywords: ['to', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf4', fitzpatrick_scale: !1, category: 'flags' }, trinidad_tobago: { keywords: ['trinidad', 'tobago', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf9', fitzpatrick_scale: !1, category: 'flags' }, tunisia: { keywords: ['tn', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, tr: { keywords: ['turkey', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf7', fitzpatrick_scale: !1, category: 'flags' }, turkmenistan: { keywords: ['flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, turks_caicos_islands: { keywords: ['turks', 'caicos', 'islands', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\udde8', fitzpatrick_scale: !1, category: 'flags' }, tuvalu: { keywords: ['flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddf9\ud83c\uddfb', fitzpatrick_scale: !1, category: 'flags' }, uganda: { keywords: ['ug', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfa\ud83c\uddec', fitzpatrick_scale: !1, category: 'flags' }, ukraine: { keywords: ['ua', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfa\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, united_arab_emirates: { keywords: ['united', 'arab', 'emirates', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\udde6\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, uk: { keywords: ['united', 'kingdom', 'great', 'britain', 'northern', 'ireland', 'flag', 'nation', 'country', 'banner', 'british', 'UK', 'english', 'england', 'union jack'], 'char': '\ud83c\uddec\ud83c\udde7', fitzpatrick_scale: !1, category: 'flags' }, england: { keywords: ['flag', 'english'], 'char': '\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f', fitzpatrick_scale: !1, category: 'flags' }, scotland: { keywords: ['flag', 'scottish'], 'char': '\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f', fitzpatrick_scale: !1, category: 'flags' }, wales: { keywords: ['flag', 'welsh'], 'char': '\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f', fitzpatrick_scale: !1, category: 'flags' }, us: { keywords: ['united', 'states', 'america', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfa\ud83c\uddf8', fitzpatrick_scale: !1, category: 'flags' }, us_virgin_islands: { keywords: ['virgin', 'islands', 'us', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\uddee', fitzpatrick_scale: !1, category: 'flags' }, uruguay: { keywords: ['uy', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfa\ud83c\uddfe', fitzpatrick_scale: !1, category: 'flags' }, uzbekistan: { keywords: ['uz', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfa\ud83c\uddff', fitzpatrick_scale: !1, category: 'flags' }, vanuatu: { keywords: ['vu', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\uddfa', fitzpatrick_scale: !1, category: 'flags' }, vatican_city: { keywords: ['vatican', 'city', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\udde6', fitzpatrick_scale: !1, category: 'flags' }, venezuela: { keywords: ['ve', 'bolivarian', 'republic', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, vietnam: { keywords: ['viet', 'nam', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfb\ud83c\uddf3', fitzpatrick_scale: !1, category: 'flags' }, wallis_futuna: { keywords: ['wallis', 'futuna', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfc\ud83c\uddeb', fitzpatrick_scale: !1, category: 'flags' }, western_sahara: { keywords: ['western', 'sahara', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddea\ud83c\udded', fitzpatrick_scale: !1, category: 'flags' }, yemen: { keywords: ['ye', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddfe\ud83c\uddea', fitzpatrick_scale: !1, category: 'flags' }, zambia: { keywords: ['zm', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddff\ud83c\uddf2', fitzpatrick_scale: !1, category: 'flags' }, zimbabwe: { keywords: ['zw', 'flag', 'nation', 'country', 'banner'], 'char': '\ud83c\uddff\ud83c\uddfc', fitzpatrick_scale: !1, category: 'flags' } } diff --git a/public/tinymce/langs/es.js b/public/tinymce/langs/es.js new file mode 100644 index 0000000000..4ac6d61a44 --- /dev/null +++ b/public/tinymce/langs/es.js @@ -0,0 +1,389 @@ +tinymce.addI18n('es', { + 'Redo': 'Rehacer', + 'Undo': 'Deshacer', + 'Cut': 'Cortar', + 'Copy': 'Copiar', + 'Paste': 'Pegar', + 'Select all': 'Seleccionar todo', + 'New document': 'Nuevo documento', + 'Ok': 'Ok', + 'Cancel': 'Cancelar', + 'Visual aids': 'Ayudas visuales', + 'Bold': 'Negrita', + 'Italic': 'Cursiva', + 'Underline': 'Subrayado', + 'Strikethrough': 'Tachado', + 'Superscript': 'Super\u00edndice', + 'Subscript': 'Sub\u00edndice', + 'Clear formatting': 'Limpiar formato', + 'Align left': 'Alinear a la izquierda', + 'Align center': 'Alinear al centro', + 'Align right': 'Alinear a la derecha', + 'Justify': 'Justificar', + 'Bullet list': 'Lista de vi\u00f1etas', + 'Numbered list': 'Lista numerada', + 'Decrease indent': 'Disminuir sangr\u00eda', + 'Increase indent': 'Incrementar sangr\u00eda', + 'Close': 'Cerrar', + 'Formats': 'Formatos', + "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": 'Su navegador no es compatible con el acceso directo al portapapeles. Use las teclas Crtl+X/C/V de su teclado.', + 'Headers': 'Encabezados', + 'Header 1': 'Encabezado 1', + 'Header 2': 'Encabezado 2', + 'Header 3': 'Encabezado 3', + 'Header 4': 'Encabezado 4', + 'Header 5': 'Encabezado 5', + 'Header 6': 'Encabezado 6', + 'Headings': 'Encabezados', + 'Heading 1': 'Encabezado 1', + 'Heading 2': 'Encabezado 2', + 'Heading 3': 'Encabezado 3', + 'Heading 4': 'Encabezado 4', + 'Heading 5': 'Encabezado 5', + 'Heading 6': 'Encabezado 6', + 'Preformatted': 'Con formato previo', + 'Div': 'Div', + 'Pre': 'Pre', + 'Code': 'C\u00f3digo', + 'Paragraph': 'P\u00e1rrafo', + 'Blockquote': 'Blockquote', + 'Inline': 'Alineado', + 'Blocks': 'Bloques', + 'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.': 'Pegar est\u00e1 ahora en modo de texto plano. El contenido se pegar\u00e1 como texto plano hasta que desactive esta opci\u00f3n.', + 'Fonts': 'Fuentes', + 'Font Sizes': 'Tama\u00f1os de fuente', + 'Class': 'Clase', + 'Browse for an image': 'Buscar una imagen', + 'OR': 'O', + 'Drop an image here': 'Arrastre una imagen aqu\u00ed', + 'Upload': 'Cargar', + 'Block': 'Bloque', + 'Align': 'Alinear', + 'Default': 'Por defecto', + 'Circle': 'C\u00edrculo', + 'Disc': 'Disco', + 'Square': 'Cuadrado', + 'Lower Alpha': 'Inferior Alfa', + 'Lower Greek': 'Inferior Griega', + 'Lower Roman': 'Inferior Romana', + 'Upper Alpha': 'Superior Alfa', + 'Upper Roman': 'Superior Romana', + 'Anchor...': 'Anclaje...', + 'Name': 'Nombre', + 'Id': 'Id', + 'Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.': 'Deber\u00eda comenzar por una letra, seguida solo de letras, n\u00fameros, guiones, puntos, dos puntos o guiones bajos.', + 'You have unsaved changes are you sure you want to navigate away?': 'Tiene cambios sin guardar. \u00bfEst\u00e1 seguro de que quiere salir?', + 'Restore last draft': 'Restaurar el \u00faltimo borrador', + 'Special characters...': 'Caracteres especiales...', + 'Source code': 'C\u00f3digo fuente', + 'Insert/Edit code sample': 'Insertar/editar c\u00f3digo de prueba', + 'Language': 'Idioma', + 'Code sample...': 'Ejemplo de c\u00f3digo...', + 'Color Picker': 'Selector de colores', + 'R': 'R', + 'G': 'V', + 'B': 'A', + 'Left to right': 'De izquierda a derecha', + 'Right to left': 'De derecha a izquierda', + 'Emoticons...': 'Emoticones...', + 'Metadata and Document Properties': 'Metadatos y propiedades del documento', + 'Title': 'T\u00edtulo', + 'Keywords': 'Palabras clave', + 'Description': 'Descripci\u00f3n', + 'Robots': 'Robots', + 'Author': 'Autor', + 'Encoding': 'Codificaci\u00f3n', + 'Fullscreen': 'Pantalla completa', + 'Action': 'Acci\u00f3n', + 'Shortcut': 'Atajo', + 'Help': 'Ayuda', + 'Address': 'Direcci\u00f3n', + 'Focus to menubar': 'Enfocar la barra del men\u00fa', + 'Focus to toolbar': 'Enfocar la barra de herramientas', + 'Focus to element path': 'Enfocar la ruta del elemento', + 'Focus to contextual toolbar': 'Enfocar la barra de herramientas contextual', + 'Insert link (if link plugin activated)': 'Insertar enlace (si el complemento de enlace est\u00e1 activado)', + 'Save (if save plugin activated)': 'Guardar (si el componente de salvar est\u00e1 activado)', + 'Find (if searchreplace plugin activated)': 'Buscar (si el complemento buscar-remplazar est\u00e1 activado)', + 'Plugins installed ({0}):': 'Plugins instalados ({0}):', + 'Premium plugins:': 'Complementos premium:', + 'Learn more...': 'Aprende m\u00e1s...', + 'You are using {0}': 'Estas usando {0}', + 'Plugins': 'Complementos', + 'Handy Shortcuts': 'Accesos directos', + 'Horizontal line': 'L\u00ednea horizontal', + 'Insert/edit image': 'Insertar/editar imagen', + 'Image description': 'Descripci\u00f3n de la imagen', + 'Source': 'Enlace', + 'Dimensions': 'Dimensiones', + 'Constrain proportions': 'Restringir proporciones', + 'General': 'General', + 'Advanced': 'Avanzado', + 'Style': 'Estilo', + 'Vertical space': 'Espacio vertical', + 'Horizontal space': 'Espacio horizontal', + 'Border': 'Borde', + 'Insert image': 'Insertar imagen', + 'Image...': 'Imagen...', + 'Image list': 'Lista de im\u00e1genes', + 'Rotate counterclockwise': 'Girar a la izquierda', + 'Rotate clockwise': 'Girar a la derecha', + 'Flip vertically': 'Invertir verticalmente', + 'Flip horizontally': 'Invertir horizontalmente', + 'Edit image': 'Editar imagen', + 'Image options': 'Opciones de imagen', + 'Zoom in': 'Acercar', + 'Zoom out': 'Alejar', + 'Crop': 'Recortar', + 'Resize': 'Redimensionar', + 'Orientation': 'Orientaci\u00f3n', + 'Brightness': 'Brillo', + 'Sharpen': 'Forma', + 'Contrast': 'Contraste', + 'Color levels': 'Niveles de color', + 'Gamma': 'Gamma', + 'Invert': 'Invertir', + 'Apply': 'Aplicar', + 'Back': 'Atr\u00e1s', + 'Insert date/time': 'Insertar fecha/hora', + 'Date/time': 'Fecha/hora', + 'Insert/Edit Link': 'Insertar/editar enlace', + 'Insert/edit link': 'Insertar/editar enlace', + 'Text to display': 'Texto para mostrar', + 'Url': 'URL', + 'Open link in...': 'Abrir enlace en...', + 'Current window': 'Ventana actual', + 'None': 'Ninguno', + 'New window': 'Nueva ventana', + 'Remove link': 'Quitar enlace', + 'Anchors': 'Anclas', + 'Link...': 'Enlace...', + 'Paste or type a link': 'Pega o introduce un enlace', + 'The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?': 'El enlace que has introducido no parece ser una direcci\u00f3n de correo electr\u00f3nico. Quieres a\u00f1adir el prefijo necesario mailto: ?', + 'The URL you entered seems to be an external link. Do you want to add the required http:// prefix?': 'El enlace que has introducido no parece ser una enlace externo. Quieres a\u00f1adir el prefijo necesario http:// ?', + 'Link list': 'Lista de enlaces', + 'Insert video': 'Insertar video', + 'Insert/edit video': 'Insertar/editar video', + 'Insert/edit media': 'Insertar/editar medio', + 'Alternative source': 'Enlace alternativo', + 'Alternative source URL': 'Origen de URL alternativo', + 'Media poster (Image URL)': 'P\u00f3ster de medio (URL de imagen)', + 'Paste your embed code below:': 'Pega tu c\u00f3digo embebido debajo', + 'Embed': 'Incrustado', + 'Media...': 'Medios...', + 'Nonbreaking space': 'Espacio fijo', + 'Page break': 'Salto de p\u00e1gina', + 'Paste as text': 'Pegar como texto', + 'Preview': 'Previsualizar', + 'Print...': 'Imprimir...', + 'Save': 'Guardar', + 'Find': 'Buscar', + 'Replace with': 'Reemplazar con', + 'Replace': 'Reemplazar', + 'Replace all': 'Reemplazar todo', + 'Previous': 'Anterior', + 'Next': 'Siguiente', + 'Find and replace...': 'Buscar y reemplazar...', + 'Could not find the specified string.': 'No se encuentra la cadena de texto especificada', + 'Match case': 'Coincidencia exacta', + 'Find whole words only': 'Solo palabras completas', + 'Spell check': 'Revisar ortograf\u00eda', + 'Ignore': 'Ignorar', + 'Ignore all': 'Ignorar todos', + 'Finish': 'Finalizar', + 'Add to Dictionary': 'A\u00f1adir al Diccionario', + 'Insert table': 'Insertar tabla', + 'Table properties': 'Propiedades de la tabla', + 'Delete table': 'Eliminar tabla', + 'Cell': 'Celda', + 'Row': 'Fila', + 'Column': 'Columna', + 'Cell properties': 'Propiedades de la celda', + 'Merge cells': 'Combinar celdas', + 'Split cell': 'Dividir celdas', + 'Insert row before': 'Insertar fila antes', + 'Insert row after': 'Insertar fila despu\u00e9s ', + 'Delete row': 'Eliminar fila', + 'Row properties': 'Propiedades de la fila', + 'Cut row': 'Cortar fila', + 'Copy row': 'Copiar fila', + 'Paste row before': 'Pegar la fila antes', + 'Paste row after': 'Pegar la fila despu\u00e9s', + 'Insert column before': 'Insertar columna antes', + 'Insert column after': 'Insertar columna despu\u00e9s', + 'Delete column': 'Eliminar columna', + 'Cols': 'Columnas', + 'Rows': 'Filas', + 'Width': 'Ancho', + 'Height': 'Alto', + 'Cell spacing': 'Espacio entre celdas', + 'Cell padding': 'Relleno de celda', + 'Show caption': 'Mostrar t\u00edtulo', + 'Left': 'Izquierda', + 'Center': 'Centrado', + 'Right': 'Derecha', + 'Cell type': 'Tipo de celda', + 'Scope': '\u00c1mbito', + 'Alignment': 'Alineaci\u00f3n', + 'H Align': 'Alineamiento Horizontal', + 'V Align': 'Alineamiento Vertical', + 'Top': 'Arriba', + 'Middle': 'Centro', + 'Bottom': 'Abajo', + 'Header cell': 'Celda de la cebecera', + 'Row group': 'Grupo de filas', + 'Column group': 'Grupo de columnas', + 'Row type': 'Tipo de fila', + 'Header': 'Cabecera', + 'Body': 'Cuerpo', + 'Footer': 'Pie de p\u00e1gina', + 'Border color': 'Color del borde', + 'Insert template...': 'Insertar plantilla...', + 'Templates': 'Plantillas', + 'Template': 'Plantilla', + 'Text color': 'Color del texto', + 'Background color': 'Color de fondo', + 'Custom...': 'Personalizar...', + 'Custom color': 'Color personalizado', + 'No color': 'Sin color', + 'Remove color': 'Quitar color', + 'Table of Contents': 'Tabla de contenidos', + 'Show blocks': 'Mostrar bloques', + 'Show invisible characters': 'Mostrar caracteres invisibles', + 'Word count': 'Contar palabras', + 'Words: {0}': 'Palabras: {0}', + '{0} words': '{0} palabras', + 'File': 'Archivo', + 'Edit': 'Editar', + 'Insert': 'Insertar', + 'View': 'Ver', + 'Format': 'Formato', + 'Table': 'Tabla', + 'Tools': 'Herramientas', + 'Powered by {0}': 'Desarrollado por {0}', + 'Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help': '\u00c1rea de texto enriquecido. Pulse ALT-F9 para el menu. Pulse ALT-F10 para la barra de herramientas. Pulse ALT-0 para ayuda', + 'Image title': 'Titulo de imagen', + 'Border width': 'Ancho de borde', + 'Border style': 'Estilo de borde', + 'Error': 'Error', + 'Warn': 'Advertencia', + 'Valid': 'V\u00e1lido', + 'To open the popup, press Shift+Enter': 'Para abrir el elemento emergente, pulse May\u00fas+Intro', + 'Rich Text Area. Press ALT-0 for help.': '\u00c1rea de texto enriquecido. Pulse ALT-0 para abrir la ayuda.', + 'System Font': 'Fuente de sistema', + 'Failed to upload image: {0}': 'Fallo al cargar imagen: {0}', + 'Failed to load plugin: {0} from url {1}': 'Fallo al cargar complemento: {0} desde URL {1}', + 'Failed to load plugin url: {0}': 'Fallo al cargar URL del complemento: {0}', + 'Failed to initialize plugin: {0}': 'Fallo al iniciar el complemento: {0}', + 'example': 'ejemplo', + 'Search': 'Buscar', + 'All': 'Todo', + 'Currency': 'Divisa', + 'Text': 'Texto', + 'Quotations': 'Comillas', + 'Mathematical': 'S\u00edmbolo matem\u00e1tico', + 'Extended Latin': 'Latino extendido A', + 'Symbols': 'S\u00edmbolos', + 'Arrows': 'Flechas', + 'User Defined': 'Definido por el usuario', + 'dollar sign': 'signo de d\u00f3lar', + 'currency sign': 'signo de divisa', + 'euro-currency sign': 'signo de euro', + 'colon sign': 'signo de dos puntos', + 'cruzeiro sign': 'signo de cruceiro', + 'french franc sign': 'signo de franco franc\u00e9s', + 'lira sign': 'signo de lira', + 'mill sign': 'signo de mill', + 'naira sign': 'signo de naira', + 'peseta sign': 'signo de peseta', + 'rupee sign': 'signo de rupia', + 'won sign': 'signo de won', + 'new sheqel sign': 'signo de nuevo s\u00e9quel', + 'dong sign': 'signo de dong', + 'kip sign': 'signo de kip', + 'tugrik sign': 'signo de tugrik', + 'drachma sign': 'signo de dracma', + 'german penny symbol': 'signo de penique alem\u00e1n', + 'peso sign': 'signo de peso', + 'guarani sign': 'signo de guaran\u00ed', + 'austral sign': 'signo de austral', + 'hryvnia sign': 'signo de grivna', + 'cedi sign': 'signo de cedi', + 'livre tournois sign': 'signo de libra tornesa', + 'spesmilo sign': 'signo de spesmilo', + 'tenge sign': 'signo de tenge', + 'indian rupee sign': 'signo de rupia india', + 'turkish lira sign': 'signo de lira turca', + 'nordic mark sign': 'signo de marco n\u00f3rdico', + 'manat sign': 'signo de manat', + 'ruble sign': 'signo de rublo', + 'yen character': 'car\u00e1cter de yen', + 'yuan character': 'car\u00e1cter de yuan', + 'yuan character, in hong kong and taiwan': 'car\u00e1cter de yuan en Hong Kong y Taiw\u00e1n', + 'yen/yuan character variant one': 'Variante uno de car\u00e1cter de yen/yuan', + 'Loading emoticons...': 'Cargando emoticonos...', + 'Could not load emoticons': 'No se han podido cargar los emoticonos', + 'People': 'Personas', + 'Animals and Nature': 'Animales y naturaleza', + 'Food and Drink': 'Comida y bebida', + 'Activity': 'Actividad', + 'Travel and Places': 'Viajes y lugares', + 'Objects': 'Objetos', + 'Flags': 'Banderas', + 'Characters': 'Caracteres', + 'Characters (no spaces)': 'Caracteres (sin espacios)', + 'Error: Form submit field collision.': 'Error: Colisi\u00f3n de campo al enviar formulario.', + 'Error: No form element found.': 'Error: No se encuentra ning\u00fan elemento de formulario.', + 'Update': 'Actualizar', + 'Color swatch': 'Muestrario de colores', + 'Turquoise': 'Turquesa', + 'Green': 'Verde', + 'Blue': 'Azul', + 'Purple': 'P\u00farpura', + 'Navy Blue': 'Azul marino', + 'Dark Turquoise': 'Turquesa oscuro', + 'Dark Green': 'Verde oscuro', + 'Medium Blue': 'Azul medio', + 'Medium Purple': 'P\u00farpura medio', + 'Midnight Blue': 'Azul medio', + 'Yellow': 'Amarillo', + 'Orange': 'Naranja', + 'Red': 'Rojo', + 'Light Gray': 'Gris claro', + 'Gray': 'Gris', + 'Dark Yellow': 'Amarillo oscuro', + 'Dark Orange': 'Naranja oscuro', + 'Dark Red': 'Rojo oscuro', + 'Medium Gray': 'Gris medio', + 'Dark Gray': 'Gris oscuro', + 'Black': 'Negro', + 'White': 'Blanco', + 'Switch to or from fullscreen mode': 'Activar o desactivar modo pantalla completa', + 'Open help dialog': 'Abrir di\u00e1logo de ayuda', + 'history': 'historial', + 'styles': 'estilos', + 'formatting': 'formato', + 'alignment': 'alineaci\u00f3n', + 'indentation': 'sangr\u00eda', + 'permanent pen': 'bol\u00edgrafo permanente', + 'comments': 'comentarios', + 'Anchor': 'Ancla', + 'Special character': 'Car\u00e1cter especial', + 'Code sample': 'Ejemplo de c\u00f3digo', + 'Color': 'Color', + 'Emoticons': 'Emoticonos', + 'Document properties': 'Propiedades del documento', + 'Image': 'Imagen', + 'Insert link': 'Insertar enlace', + 'Target': 'Destino', + 'Link': 'Enlace', + 'Poster': 'Miniatura', + 'Media': 'Media', + 'Print': 'Imprimir', + 'Prev': 'Anterior', + 'Find and replace': 'Buscar y reemplazar', + 'Whole words': 'Palabras completas', + 'Spellcheck': 'Corrector ortogr\u00e1fico', + 'Caption': 'Subt\u00edtulo', + 'Insert template': 'Insertar plantilla' +}) diff --git a/public/tinymce/langs/ja.js b/public/tinymce/langs/ja.js new file mode 100644 index 0000000000..36ff25d348 --- /dev/null +++ b/public/tinymce/langs/ja.js @@ -0,0 +1,389 @@ +tinymce.addI18n('ja', { + 'Redo': '\u3084\u308a\u76f4\u3057', + 'Undo': '\u5143\u306b\u623b\u3059', + 'Cut': '\u5207\u308a\u53d6\u308a', + 'Copy': '\u30b3\u30d4\u30fc', + 'Paste': '\u8cbc\u308a\u4ed8\u3051', + 'Select all': '\u3059\u3079\u3066\u9078\u629e', + 'New document': '\u65b0\u898f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8', + 'Ok': 'OK', + 'Cancel': '\u53d6\u6d88', + 'Visual aids': '\u8868\u306e\u67a0\u7dda\u3092\u70b9\u7dda\u3067\u8868\u793a', + 'Bold': '\u592a\u5b57', + 'Italic': '\u659c\u4f53', + 'Underline': '\u4e0b\u7dda', + 'Strikethrough': '\u53d6\u6d88\u7dda', + 'Superscript': '\u4e0a\u4ed8\u304d', + 'Subscript': '\u4e0b\u4ed8\u304d', + 'Clear formatting': '\u66f8\u5f0f\u3092\u30af\u30ea\u30a2', + 'Align left': '\u5de6\u63c3\u3048', + 'Align center': '\u4e2d\u592e\u63c3\u3048', + 'Align right': '\u53f3\u63c3\u3048', + 'Justify': '\u4e21\u7aef\u63c3\u3048', + 'Bullet list': '\u7b87\u6761\u66f8\u304d', + 'Numbered list': '\u756a\u53f7\u4ed8\u304d\u7b87\u6761\u66f8\u304d', + 'Decrease indent': '\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059', + 'Increase indent': '\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059', + 'Close': '\u9589\u3058\u308b', + 'Formats': '\u66f8\u5f0f', + "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": '\u304a\u4f7f\u3044\u306e\u30d6\u30e9\u30a6\u30b6\u3067\u306f\u30af\u30ea\u30c3\u30d7\u30dc\u30fc\u30c9\u6a5f\u80fd\u3092\u5229\u7528\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u30ad\u30fc\u30dc\u30fc\u30c9\u306e\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\uff08Ctrl+X, Ctrl+C, Ctrl+V\uff09\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002', + 'Headers': '\u30d8\u30c3\u30c0\u30fc', + 'Header 1': '\u30d8\u30c3\u30c0\u30fc 1', + 'Header 2': '\u30d8\u30c3\u30c0\u30fc 2', + 'Header 3': '\u30d8\u30c3\u30c0\u30fc 3', + 'Header 4': '\u30d8\u30c3\u30c0\u30fc 4', + 'Header 5': '\u30d8\u30c3\u30c0\u30fc 5', + 'Header 6': '\u30d8\u30c3\u30c0\u30fc 6', + 'Headings': '\u898b\u51fa\u3057', + 'Heading 1': '\u898b\u51fa\u30571', + 'Heading 2': '\u898b\u51fa\u30572', + 'Heading 3': '\u898b\u51fa\u30573', + 'Heading 4': '\u898b\u51fa\u30574', + 'Heading 5': '\u898b\u51fa\u30575', + 'Heading 6': '\u898b\u51fa\u30576', + 'Preformatted': '\u66f8\u5f0f\u8a2d\u5b9a\u6e08\u307f', + 'Div': 'Div', + 'Pre': 'Pre', + 'Code': '\u30b3\u30fc\u30c9', + 'Paragraph': '\u6bb5\u843d', + 'Blockquote': '\u30d6\u30ed\u30c3\u30af\u5f15\u7528', + 'Inline': '\u30a4\u30f3\u30e9\u30a4\u30f3', + 'Blocks': '\u30d6\u30ed\u30c3\u30af', + 'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.': '\u8cbc\u308a\u4ed8\u3051\u306f\u73fe\u5728\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u30e2\u30fc\u30c9\u3067\u3059\u3002\u3053\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u306b\u3057\u306a\u3044\u9650\u308a\u5185\u5bb9\u306f\u30d7\u30ec\u30fc\u30f3\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051\u3089\u308c\u307e\u3059\u3002', + 'Fonts': '\u30d5\u30a9\u30f3\u30c8', + 'Font Sizes': '\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba', + 'Class': '\u30af\u30e9\u30b9', + 'Browse for an image': '\u753b\u50cf\u3092\u53c2\u7167', + 'OR': '\u307e\u305f\u306f', + 'Drop an image here': '\u3053\u3053\u306b\u753b\u50cf\u3092\u30c9\u30ed\u30c3\u30d7', + 'Upload': '\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9', + 'Block': '\u30d6\u30ed\u30c3\u30af', + 'Align': '\u914d\u7f6e', + 'Default': '\u30c7\u30d5\u30a9\u30eb\u30c8', + 'Circle': '\u5186', + 'Disc': '\u70b9', + 'Square': '\u56db\u89d2', + 'Lower Alpha': '\u5c0f\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8', + 'Lower Greek': '\u5c0f\u6587\u5b57\u306e\u30ae\u30ea\u30b7\u30e3\u6587\u5b57', + 'Lower Roman': '\u5c0f\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57', + 'Upper Alpha': '\u5927\u6587\u5b57\u306e\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8', + 'Upper Roman': '\u5927\u6587\u5b57\u306e\u30ed\u30fc\u30de\u6570\u5b57', + 'Anchor...': '\u30a2\u30f3\u30ab\u30fc...', + 'Name': '\u30a2\u30f3\u30ab\u30fc\u540d', + 'Id': 'Id', + 'Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.': 'ID\u306f\u6587\u5b57\u3067\u59cb\u307e\u308a\u3001\u6587\u5b57\u3001\u6570\u5b57\u3001\u30c0\u30c3\u30b7\u30e5\u3001\u30c9\u30c3\u30c8\u3001\u30b3\u30ed\u30f3\u307e\u305f\u306f\u30a2\u30f3\u30c0\u30fc\u30b9\u30b3\u30a2\u3067\u59cb\u307e\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002', + 'You have unsaved changes are you sure you want to navigate away?': '\u307e\u3060\u4fdd\u5b58\u3057\u3066\u3044\u306a\u3044\u5909\u66f4\u304c\u3042\u308a\u307e\u3059\u304c\u3001\u672c\u5f53\u306b\u3053\u306e\u30da\u30fc\u30b8\u3092\u96e2\u308c\u307e\u3059\u304b\uff1f', + 'Restore last draft': '\u524d\u56de\u306e\u4e0b\u66f8\u304d\u3092\u5fa9\u6d3b\u3055\u305b\u308b', + 'Special characters...': '\u7279\u6b8a\u6587\u5b57...', + 'Source code': '\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9', + 'Insert/Edit code sample': '\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb\u306e\u633f\u5165\u30fb\u7de8\u96c6', + 'Language': '\u8a00\u8a9e', + 'Code sample...': '\u30b3\u30fc\u30c9\u306e\u30b5\u30f3\u30d7\u30eb...', + 'Color Picker': '\u30ab\u30e9\u30fc\u30d4\u30c3\u30ab\u30fc', + 'R': 'R', + 'G': 'G', + 'B': 'B', + 'Left to right': '\u5de6\u304b\u3089\u53f3', + 'Right to left': '\u53f3\u304b\u3089\u5de6', + 'Emoticons...': '\u7d75\u6587\u5b57...', + 'Metadata and Document Properties': '\u30e1\u30bf\u30c7\u30fc\u30bf\u3068\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u30d7\u30ed\u30d1\u30c6\u30a3', + 'Title': '\u30bf\u30a4\u30c8\u30eb', + 'Keywords': '\u30ad\u30fc\u30ef\u30fc\u30c9', + 'Description': '\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5185\u5bb9', + 'Robots': '\u30ed\u30dc\u30c3\u30c4', + 'Author': '\u8457\u8005', + 'Encoding': '\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0', + 'Fullscreen': '\u5168\u753b\u9762\u8868\u793a', + 'Action': '\u30a2\u30af\u30b7\u30e7\u30f3', + 'Shortcut': '\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8', + 'Help': '\u30d8\u30eb\u30d7', + 'Address': '\u30a2\u30c9\u30ec\u30b9', + 'Focus to menubar': '\u30e1\u30cb\u30e5\u30fc\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9', + 'Focus to toolbar': '\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9', + 'Focus to element path': '\u8981\u7d20\u30d1\u30b9\u306b\u30d5\u30a9\u30fc\u30ab\u30b9', + 'Focus to contextual toolbar': '\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u30c4\u30fc\u30eb\u30d0\u30fc\u306b\u30d5\u30a9\u30fc\u30ab\u30b9', + 'Insert link (if link plugin activated)': '\u30ea\u30f3\u30af\u3092\u633f\u5165 (\u30ea\u30f3\u30af\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)', + 'Save (if save plugin activated)': '\u4fdd\u5b58 (\u4fdd\u5b58\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)', + 'Find (if searchreplace plugin activated)': '\u691c\u7d22(\u7f6e\u63db\u30d7\u30e9\u30b0\u30a4\u30f3\u6709\u52b9\u6642)', + 'Plugins installed ({0}):': '\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u6e08\u30d7\u30e9\u30b0\u30a4\u30f3 ({0}):', + 'Premium plugins:': '\u30d7\u30ec\u30df\u30a2\u30e0\u30d7\u30e9\u30b0\u30a4\u30f3:', + 'Learn more...': '\u8a73\u7d30...', + 'You are using {0}': '\u3042\u306a\u305f\u306f {0} \u4f7f\u7528\u4e2d', + 'Plugins': '\u30d7\u30e9\u30b0\u30a4\u30f3', + 'Handy Shortcuts': '\u4fbf\u5229\u306a\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8', + 'Horizontal line': '\u6c34\u5e73\u7f6b\u7dda', + 'Insert/edit image': '\u753b\u50cf\u306e\u633f\u5165\u30fb\u7de8\u96c6', + 'Image description': '\u753b\u50cf\u306e\u8aac\u660e\u6587', + 'Source': '\u753b\u50cf\u306e\u30bd\u30fc\u30b9', + 'Dimensions': '\u753b\u50cf\u30b5\u30a4\u30ba\uff08\u6a2a\u30fb\u7e26\uff09', + 'Constrain proportions': '\u7e26\u6a2a\u6bd4\u3092\u4fdd\u6301\u3059\u308b', + 'General': '\u4e00\u822c', + 'Advanced': '\u8a73\u7d30\u8a2d\u5b9a', + 'Style': '\u30b9\u30bf\u30a4\u30eb', + 'Vertical space': '\u7e26\u65b9\u5411\u306e\u4f59\u767d', + 'Horizontal space': '\u6a2a\u65b9\u5411\u306e\u4f59\u767d', + 'Border': '\u67a0\u7dda', + 'Insert image': '\u753b\u50cf\u306e\u633f\u5165', + 'Image...': '\u753b\u50cf..', + 'Image list': '\u753b\u50cf\u4e00\u89a7', + 'Rotate counterclockwise': '\u53cd\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2', + 'Rotate clockwise': '\u6642\u8a08\u56de\u308a\u306b\u56de\u8ee2', + 'Flip vertically': '\u4e0a\u4e0b\u306b\u53cd\u8ee2', + 'Flip horizontally': '\u6c34\u5e73\u306b\u53cd\u8ee2', + 'Edit image': '\u753b\u50cf\u306e\u7de8\u96c6', + 'Image options': '\u753b\u50cf\u30aa\u30d7\u30b7\u30e7\u30f3', + 'Zoom in': '\u30ba\u30fc\u30e0\u30a4\u30f3', + 'Zoom out': '\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8', + 'Crop': '\u30af\u30ed\u30c3\u30d7', + 'Resize': '\u30ea\u30b5\u30a4\u30ba', + 'Orientation': '\u5411\u304d', + 'Brightness': '\u660e\u308b\u3055', + 'Sharpen': '\u30b7\u30e3\u30fc\u30d7\u5316', + 'Contrast': '\u30b3\u30f3\u30c8\u30e9\u30b9\u30c8', + 'Color levels': '\u30ab\u30e9\u30fc\u30ec\u30d9\u30eb', + 'Gamma': '\u30ac\u30f3\u30de', + 'Invert': '\u53cd\u8ee2', + 'Apply': '\u9069\u7528', + 'Back': '\u623b\u308b', + 'Insert date/time': '\u65e5\u4ed8\u30fb\u6642\u523b', + 'Date/time': '\u65e5\u4ed8\u30fb\u6642\u523b', + 'Insert/Edit Link': '\u30ea\u30f3\u30af\u306e\u633f\u5165/\u7de8\u96c6', + 'Insert/edit link': '\u30ea\u30f3\u30af\u306e\u633f\u5165\u30fb\u7de8\u96c6', + 'Text to display': '\u30ea\u30f3\u30af\u5143\u30c6\u30ad\u30b9\u30c8', + 'Url': '\u30ea\u30f3\u30af\u5148URL', + 'Open link in...': '\u30ea\u30f3\u30af\u306e\u958b\u304d\u65b9...', + 'Current window': '\u540c\u3058\u30a6\u30a3\u30f3\u30c9\u30a6', + 'None': '\u306a\u3057', + 'New window': '\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6', + 'Remove link': '\u30ea\u30f3\u30af\u306e\u524a\u9664', + 'Anchors': '\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09', + 'Link...': '\u30ea\u30f3\u30af...', + 'Paste or type a link': '\u30ea\u30f3\u30af\u3092\u30da\u30fc\u30b9\u30c8\u307e\u305f\u306f\u5165\u529b', + 'The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?': '\u5165\u529b\u3055\u308c\u305fURL\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u306e\u3088\u3046\u3067\u3059\u3002\u300cmailto:\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f', + 'The URL you entered seems to be an external link. Do you want to add the required http:// prefix?': '\u5165\u529b\u3055\u308c\u305fURL\u306f\u5916\u90e8\u30ea\u30f3\u30af\u306e\u3088\u3046\u3067\u3059\u3002\u300chttp://\u300d\u30d7\u30ec\u30d5\u30a3\u30c3\u30af\u30b9\u3092\u8ffd\u52a0\u3057\u307e\u3059\u304b\uff1f', + 'Link list': '\u30ea\u30f3\u30af\u4e00\u89a7', + 'Insert video': '\u52d5\u753b', + 'Insert/edit video': '\u52d5\u753b\u306e\u633f\u5165\u30fb\u7de8\u96c6', + 'Insert/edit media': '\u30e1\u30c7\u30a3\u30a2\u306e\u633f\u5165\u30fb\u7de8\u96c6', + 'Alternative source': '\u4ee3\u66ff\u52d5\u753b\u306e\u5834\u6240', + 'Alternative source URL': '\u4ee3\u66ff\u30bd\u30fc\u30b9URL', + 'Media poster (Image URL)': '\u30e1\u30c7\u30a3\u30a2\u30dd\u30b9\u30bf\u30fc (\u753b\u50cfURL)', + 'Paste your embed code below:': '\u57cb\u3081\u8fbc\u307f\u7528\u30b3\u30fc\u30c9\u3092\u4e0b\u8a18\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002', + 'Embed': '\u57cb\u3081\u8fbc\u307f', + 'Media...': '\u30e1\u30c7\u30a3\u30a2\u2026', + 'Nonbreaking space': '\u56fa\u5b9a\u30b9\u30da\u30fc\u30b9\uff08 \uff09', + 'Page break': '\u30da\u30fc\u30b8\u533a\u5207\u308a', + 'Paste as text': '\u30c6\u30ad\u30b9\u30c8\u3068\u3057\u3066\u8cbc\u308a\u4ed8\u3051', + 'Preview': '\u30d7\u30ec\u30d3\u30e5\u30fc', + 'Print...': '\u5370\u5237...', + 'Save': '\u4fdd\u5b58', + 'Find': '\u691c\u7d22', + 'Replace with': '\u7f6e\u304d\u63db\u3048\u308b\u6587\u5b57', + 'Replace': '\u7f6e\u304d\u63db\u3048', + 'Replace all': '\u5168\u3066\u3092\u7f6e\u304d\u63db\u3048\u308b', + 'Previous': '\u524d\u3078', + 'Next': '\u6b21', + 'Find and replace...': '\u7f6e\u63db...', + 'Could not find the specified string.': '\u304a\u63a2\u3057\u306e\u6587\u5b57\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002', + 'Match case': '\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b', + 'Find whole words only': '\u8a9e\u5168\u4f53\u3092\u542b\u3080\u3082\u306e\u306e\u307f\u691c\u7d22', + 'Spell check': '\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af', + 'Ignore': '\u7121\u8996', + 'Ignore all': '\u5168\u3066\u3092\u7121\u8996', + 'Finish': '\u7d42\u4e86', + 'Add to Dictionary': '\u8f9e\u66f8\u306b\u8ffd\u52a0', + 'Insert table': '\u8868\u306e\u633f\u5165', + 'Table properties': '\u8868\u306e\u8a73\u7d30\u8a2d\u5b9a', + 'Delete table': '\u8868\u306e\u524a\u9664', + 'Cell': '\u30bb\u30eb', + 'Row': '\u884c', + 'Column': '\u5217', + 'Cell properties': '\u30bb\u30eb\u306e\u8a73\u7d30\u8a2d\u5b9a', + 'Merge cells': '\u30bb\u30eb\u306e\u7d50\u5408', + 'Split cell': '\u30bb\u30eb\u306e\u5206\u5272', + 'Insert row before': '\u4e0a\u5074\u306b\u884c\u3092\u633f\u5165', + 'Insert row after': '\u4e0b\u5074\u306b\u884c\u3092\u633f\u5165', + 'Delete row': '\u884c\u306e\u524a\u9664', + 'Row properties': '\u884c\u306e\u8a73\u7d30\u8a2d\u5b9a', + 'Cut row': '\u884c\u306e\u5207\u308a\u53d6\u308a', + 'Copy row': '\u884c\u306e\u30b3\u30d4\u30fc', + 'Paste row before': '\u4e0a\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051', + 'Paste row after': '\u4e0b\u5074\u306b\u884c\u3092\u8cbc\u308a\u4ed8\u3051', + 'Insert column before': '\u5de6\u5074\u306b\u5217\u3092\u633f\u5165', + 'Insert column after': '\u53f3\u5074\u306b\u5217\u3092\u633f\u5165', + 'Delete column': '\u5217\u306e\u524a\u9664', + 'Cols': '\u5217\u6570', + 'Rows': '\u884c\u6570', + 'Width': '\u5e45', + 'Height': '\u9ad8\u3055', + 'Cell spacing': '\u30bb\u30eb\u306e\u9593\u9694', + 'Cell padding': '\u30bb\u30eb\u5185\u4f59\u767d\uff08\u30d1\u30c7\u30a3\u30f3\u30b0\uff09', + 'Show caption': '\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3\u306e\u8868\u793a', + 'Left': '\u5de6\u5bc4\u305b', + 'Center': '\u4e2d\u592e\u63c3\u3048', + 'Right': '\u53f3\u5bc4\u305b', + 'Cell type': '\u30bb\u30eb\u30bf\u30a4\u30d7', + 'Scope': '\u30b9\u30b3\u30fc\u30d7', + 'Alignment': '\u914d\u7f6e', + 'H Align': '\u6c34\u5e73\u65b9\u5411\u306e\u914d\u7f6e', + 'V Align': '\u5782\u76f4\u65b9\u5411\u306e\u914d\u7f6e', + 'Top': '\u4e0a', + 'Middle': '\u4e2d\u592e', + 'Bottom': '\u4e0b', + 'Header cell': '\u30d8\u30c3\u30c0\u30fc\u30bb\u30eb', + 'Row group': '\u884c\u30b0\u30eb\u30fc\u30d7', + 'Column group': '\u5217\u30b0\u30eb\u30fc\u30d7', + 'Row type': '\u884c\u30bf\u30a4\u30d7', + 'Header': '\u30d8\u30c3\u30c0\u30fc', + 'Body': '\u30dc\u30c7\u30a3\u30fc', + 'Footer': '\u30d5\u30c3\u30bf\u30fc', + 'Border color': '\u67a0\u7dda\u306e\u8272', + 'Insert template...': '\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165..', + 'Templates': '\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u540d', + 'Template': '\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8', + 'Text color': '\u30c6\u30ad\u30b9\u30c8\u306e\u8272', + 'Background color': '\u80cc\u666f\u8272', + 'Custom...': '\u30ab\u30b9\u30bf\u30e0...', + 'Custom color': '\u30ab\u30b9\u30bf\u30e0\u30ab\u30e9\u30fc', + 'No color': '\u30ab\u30e9\u30fc\u306a\u3057', + 'Remove color': '\u8272\u8a2d\u5b9a\u3092\u89e3\u9664', + 'Table of Contents': '\u76ee\u6b21', + 'Show blocks': '\u6587\u7ae0\u306e\u533a\u5207\u308a\u3092\u70b9\u7dda\u3067\u8868\u793a', + 'Show invisible characters': '\u4e0d\u53ef\u8996\u6587\u5b57\u3092\u8868\u793a', + 'Word count': '\u6587\u5b57\u6570\u30ab\u30a6\u30f3\u30c8', + 'Words: {0}': '\u5358\u8a9e\u6570: {0}', + '{0} words': '{0} \u30ef\u30fc\u30c9', + 'File': '\u30d5\u30a1\u30a4\u30eb', + 'Edit': '\u7de8\u96c6', + 'Insert': '\u633f\u5165', + 'View': '\u8868\u793a', + 'Format': '\u66f8\u5f0f', + 'Table': '\u8868', + 'Tools': '\u30c4\u30fc\u30eb', + 'Powered by {0}': 'Powered by {0}', + 'Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help': '\u66f8\u5f0f\u4ed8\u304d\u30c6\u30ad\u30b9\u30c8\u306e\u7de8\u96c6\u753b\u9762\u3002ALT-F9\u3067\u30e1\u30cb\u30e5\u30fc\u3001ALT-F10\u3067\u30c4\u30fc\u30eb\u30d0\u30fc\u3001ALT-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002', + 'Image title': '\u753b\u50cf\u30bf\u30a4\u30c8\u30eb', + 'Border width': '\u67a0\u7dda\u5e45', + 'Border style': '\u67a0\u7dda\u30b9\u30bf\u30a4\u30eb', + 'Error': '\u30a8\u30e9\u30fc', + 'Warn': '\u8b66\u544a', + 'Valid': '\u6709\u52b9', + 'To open the popup, press Shift+Enter': '\u30dd\u30c3\u30d7\u30a2\u30c3\u30d7\u3092\u958b\u304f\u306b\u306f\u3001Shift+Enter\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044', + 'Rich Text Area. Press ALT-0 for help.': '\u30ea\u30c3\u30c1\u30c6\u30ad\u30b9\u30c8\u30a8\u30ea\u30a2\u3002Alt-0\u3067\u30d8\u30eb\u30d7\u304c\u8868\u793a\u3055\u308c\u307e\u3059\u3002', + 'System Font': '\u30b7\u30b9\u30c6\u30e0\u30d5\u30a9\u30f3\u30c8', + 'Failed to upload image: {0}': '\u753b\u50cf{0}\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f', + 'Failed to load plugin: {0} from url {1}': 'URL{1}\u304b\u3089\u306e\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f', + 'Failed to load plugin url: {0}': '\u30d7\u30e9\u30b0\u30a4\u30f3\u306eURL{0}\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f', + 'Failed to initialize plugin: {0}': '\u30d7\u30e9\u30b0\u30a4\u30f3{0}\u306e\u521d\u671f\u5316\u306b\u5931\u6557\u3057\u307e\u3057\u305f', + 'example': '\u4f8b', + 'Search': '\u691c\u7d22', + 'All': '\u3059\u3079\u3066', + 'Currency': '\u901a\u8ca8', + 'Text': '\u30c6\u30ad\u30b9\u30c8', + 'Quotations': '\u5f15\u7528', + 'Mathematical': '\u6570\u5b66\u8a18\u53f7', + 'Extended Latin': '\u30e9\u30c6\u30f3\u6587\u5b57\u62e1\u5f35', + 'Symbols': '\u8a18\u53f7', + 'Arrows': '\u77e2\u5370', + 'User Defined': '\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9', + 'dollar sign': '\u30c9\u30eb\u8a18\u53f7', + 'currency sign': '\u901a\u8ca8\u8a18\u53f7', + 'euro-currency sign': '\u30e6\u30fc\u30ed\u8a18\u53f7', + 'colon sign': '\u30b3\u30ed\u30f3\u8a18\u53f7', + 'cruzeiro sign': '\u30af\u30eb\u30bc\u30a4\u30ed\u8a18\u53f7', + 'french franc sign': '\u30d5\u30e9\u30f3\u30b9\u30d5\u30e9\u30f3\u8a18\u53f7', + 'lira sign': '\u30ea\u30e9\u8a18\u53f7', + 'mill sign': '\u30df\u30eb\u8a18\u53f7', + 'naira sign': '\u30ca\u30a4\u30e9\u8a18\u53f7', + 'peseta sign': '\u30da\u30bb\u30bf\u8a18\u53f7', + 'rupee sign': '\u30eb\u30d4\u30fc\u8a18\u53f7', + 'won sign': '\u30a6\u30a9\u30f3\u8a18\u53f7', + 'new sheqel sign': '\u65b0\u30b7\u30a7\u30b1\u30eb\u8a18\u53f7', + 'dong sign': '\u30c9\u30f3\u8a18\u53f7', + 'kip sign': '\u30ad\u30fc\u30d7\u8a18\u53f7', + 'tugrik sign': '\u30c8\u30a5\u30b0\u30eb\u30b0\u8a18\u53f7', + 'drachma sign': '\u30c9\u30e9\u30af\u30de\u8a18\u53f7', + 'german penny symbol': '\u30c9\u30a4\u30c4\u30da\u30cb\u30fc\u8a18\u53f7', + 'peso sign': '\u30da\u30bd\u8a18\u53f7', + 'guarani sign': '\u30ac\u30e9\u30cb\u8a18\u53f7', + 'austral sign': '\u30a2\u30a6\u30b9\u30c8\u30e9\u30eb\u8a18\u53f7', + 'hryvnia sign': '\u30d5\u30ea\u30f4\u30cb\u30e3\u8a18\u53f7', + 'cedi sign': '\u30bb\u30c7\u30a3\u8a18\u53f7', + 'livre tournois sign': '\u30c8\u30a5\u30fc\u30eb\u30dd\u30f3\u30c9\u8a18\u53f7', + 'spesmilo sign': '\u30b9\u30da\u30b9\u30df\u30fc\u30ed\u8a18\u53f7', + 'tenge sign': '\u30c6\u30f3\u30b2\u8a18\u53f7', + 'indian rupee sign': '\u30a4\u30f3\u30c9\u30eb\u30d4\u30fc\u8a18\u53f7', + 'turkish lira sign': '\u30c8\u30eb\u30b3\u30ea\u30e9\u8a18\u53f7', + 'nordic mark sign': '\u5317\u6b27\u30de\u30eb\u30af\u8a18\u53f7', + 'manat sign': '\u30de\u30ca\u30c8\u8a18\u53f7', + 'ruble sign': '\u30eb\u30fc\u30d6\u30eb\u8a18\u53f7', + 'yen character': '\u5186\u8a18\u53f7', + 'yuan character': '\u4eba\u6c11\u5143\u8a18\u53f7', + 'yuan character, in hong kong and taiwan': '\u9999\u6e2f\u304a\u3088\u3073\u53f0\u6e7e\u306b\u304a\u3051\u308b\u5143\u8a18\u53f7', + 'yen/yuan character variant one': '\u5186/\u5143\u8a18\u53f7\u306e\u30d0\u30ea\u30a8\u30fc\u30b7\u30e7\u30f3', + 'Loading emoticons...': '\u7d75\u6587\u5b57\u3092\u8aad\u307f\u8fbc\u3093\u3067\u3044\u307e\u3059...', + 'Could not load emoticons': '\u7d75\u6587\u5b57\u304c\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002', + 'People': '\u4eba', + 'Animals and Nature': '\u52d5\u7269\u3068\u81ea\u7136', + 'Food and Drink': '\u98df\u3079\u7269\u3068\u98f2\u307f\u7269', + 'Activity': '\u884c\u52d5', + 'Travel and Places': '\u65c5\u884c\u3068\u5834\u6240', + 'Objects': '\u7269', + 'Flags': '\u65d7', + 'Characters': '\u6587\u5b57\u6570', + 'Characters (no spaces)': '\u6587\u5b57\u6570 (\u30b9\u30da\u30fc\u30b9\u306a\u3057)', + 'Error: Form submit field collision.': '\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u9001\u4fe1\u30d5\u30a3\u30fc\u30eb\u30c9\u304c\u7af6\u5408\u3057\u3066\u3044\u307e\u3059\u3002', + 'Error: No form element found.': '\u30a8\u30e9\u30fc\uff1a\u30d5\u30a9\u30fc\u30e0\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002', + 'Update': '\u66f4\u65b0', + 'Color swatch': '\u8272\u306e\u898b\u672c', + 'Turquoise': '\u30bf\u30fc\u30b3\u30a4\u30ba', + 'Green': '\u30b0\u30ea\u30fc\u30f3', + 'Blue': '\u30d6\u30eb\u30fc', + 'Purple': '\u30d1\u30fc\u30d7\u30eb', + 'Navy Blue': '\u30cd\u30a4\u30d3\u30fc', + 'Dark Turquoise': '\u30c0\u30fc\u30af\u30bf\u30fc\u30b3\u30a4\u30ba', + 'Dark Green': '\u30c0\u30fc\u30af\u30b0\u30ea\u30fc\u30f3', + 'Medium Blue': '\u30e1\u30c7\u30a3\u30a2\u30e0\u30d6\u30eb\u30fc', + 'Medium Purple': '\u30df\u30c7\u30a3\u30a2\u30e0\u30d1\u30fc\u30d7\u30eb', + 'Midnight Blue': '\u30df\u30c3\u30c9\u30ca\u30a4\u30c8\u30d6\u30eb\u30fc', + 'Yellow': '\u30a4\u30a8\u30ed\u30fc', + 'Orange': '\u30aa\u30ec\u30f3\u30b8', + 'Red': '\u30ec\u30c3\u30c9', + 'Light Gray': '\u30e9\u30a4\u30c8\u30b0\u30ec\u30fc', + 'Gray': '\u30b0\u30ec\u30fc', + 'Dark Yellow': '\u30c0\u30fc\u30af\u30a4\u30a8\u30ed\u30fc', + 'Dark Orange': '\u30c0\u30fc\u30af\u30aa\u30ec\u30f3\u30b8', + 'Dark Red': '\u30c0\u30fc\u30af\u30ec\u30c3\u30c9', + 'Medium Gray': '\u30df\u30c7\u30a3\u30a2\u30e0\u30b0\u30ec\u30fc', + 'Dark Gray': '\u30c0\u30fc\u30af\u30b0\u30ec\u30fc', + 'Black': '\u30d6\u30e9\u30c3\u30af', + 'White': '\u30db\u30ef\u30a4\u30c8', + 'Switch to or from fullscreen mode': '\u30d5\u30eb\u30b9\u30af\u30ea\u30fc\u30f3\u30e2\u30fc\u30c9\u5207\u66ff', + 'Open help dialog': '\u30d8\u30eb\u30d7\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u958b\u304f', + 'history': '\u5c65\u6b74', + 'styles': '\u30b9\u30bf\u30a4\u30eb', + 'formatting': '\u66f8\u5f0f', + 'alignment': '\u914d\u7f6e', + 'indentation': '\u30a4\u30f3\u30c7\u30f3\u30c8', + 'permanent pen': '\u86cd\u5149\u30da\u30f3', + 'comments': '\u30b3\u30e1\u30f3\u30c8', + 'Anchor': '\u30a2\u30f3\u30ab\u30fc\uff08\u30ea\u30f3\u30af\u306e\u5230\u9054\u70b9\uff09', + 'Special character': '\u7279\u6b8a\u6587\u5b57', + 'Code sample': '\u30b3\u30fc\u30c9\u30b5\u30f3\u30d7\u30eb', + 'Color': '\u30ab\u30e9\u30fc', + 'Emoticons': '\u7d75\u6587\u5b57', + 'Document properties': '\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d7\u30ed\u30d1\u30c6\u30a3', + 'Image': '\u753b\u50cf', + 'Insert link': '\u30ea\u30f3\u30af', + 'Target': '\u30bf\u30fc\u30b2\u30c3\u30c8\u5c5e\u6027', + 'Link': '\u30ea\u30f3\u30af', + 'Poster': '\u4ee3\u66ff\u753b\u50cf\u306e\u5834\u6240', + 'Media': '\u30e1\u30c7\u30a3\u30a2', + 'Print': '\u5370\u5237', + 'Prev': '\u524d', + 'Find and replace': '\u691c\u7d22\u3068\u7f6e\u304d\u63db\u3048', + 'Whole words': '\u5358\u8a9e\u5358\u4f4d\u3067\u691c\u7d22\u3059\u308b', + 'Spellcheck': '\u30b9\u30da\u30eb\u30c1\u30a7\u30c3\u30af', + 'Caption': '\u8868\u984c', + 'Insert template': '\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165' +}) diff --git a/public/tinymce/langs/zh_CN.js b/public/tinymce/langs/zh_CN.js new file mode 100644 index 0000000000..2239de378b --- /dev/null +++ b/public/tinymce/langs/zh_CN.js @@ -0,0 +1,389 @@ +tinymce.addI18n('zh_CN', { + 'Redo': '\u91cd\u505a', + 'Undo': '\u64a4\u9500', + 'Cut': '\u526a\u5207', + 'Copy': '\u590d\u5236', + 'Paste': '\u7c98\u8d34', + 'Select all': '\u5168\u9009', + 'New document': '\u65b0\u6587\u4ef6', + 'Ok': '\u786e\u5b9a', + 'Cancel': '\u53d6\u6d88', + 'Visual aids': '\u7f51\u683c\u7ebf', + 'Bold': '\u7c97\u4f53', + 'Italic': '\u659c\u4f53', + 'Underline': '\u4e0b\u5212\u7ebf', + 'Strikethrough': '\u5220\u9664\u7ebf', + 'Superscript': '\u4e0a\u6807', + 'Subscript': '\u4e0b\u6807', + 'Clear formatting': '\u6e05\u9664\u683c\u5f0f', + 'Align left': '\u5de6\u8fb9\u5bf9\u9f50', + 'Align center': '\u4e2d\u95f4\u5bf9\u9f50', + 'Align right': '\u53f3\u8fb9\u5bf9\u9f50', + 'Justify': '\u4e24\u7aef\u5bf9\u9f50', + 'Bullet list': '\u9879\u76ee\u7b26\u53f7', + 'Numbered list': '\u7f16\u53f7\u5217\u8868', + 'Decrease indent': '\u51cf\u5c11\u7f29\u8fdb', + 'Increase indent': '\u589e\u52a0\u7f29\u8fdb', + 'Close': '\u5173\u95ed', + 'Formats': '\u683c\u5f0f', + "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": '\u4f60\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301\u6253\u5f00\u526a\u8d34\u677f\uff0c\u8bf7\u4f7f\u7528Ctrl+X/C/V\u7b49\u5feb\u6377\u952e\u3002', + 'Headers': '\u6807\u9898', + 'Header 1': '\u6807\u98981', + 'Header 2': '\u6807\u98982', + 'Header 3': '\u6807\u98983', + 'Header 4': '\u6807\u98984', + 'Header 5': '\u6807\u98985', + 'Header 6': '\u6807\u98986', + 'Headings': '\u6807\u9898', + 'Heading 1': '\u6807\u98981', + 'Heading 2': '\u6807\u98982', + 'Heading 3': '\u6807\u98983', + 'Heading 4': '\u6807\u98984', + 'Heading 5': '\u6807\u98985', + 'Heading 6': '\u6807\u98986', + 'Preformatted': '\u9884\u5148\u683c\u5f0f\u5316\u7684', + 'Div': 'Div', + 'Pre': 'Pre', + 'Code': '\u4ee3\u7801', + 'Paragraph': '\u6bb5\u843d', + 'Blockquote': '\u5f15\u6587\u533a\u5757', + 'Inline': '\u6587\u672c', + 'Blocks': '\u57fa\u5757', + 'Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.': '\u5f53\u524d\u4e3a\u7eaf\u6587\u672c\u7c98\u8d34\u6a21\u5f0f\uff0c\u518d\u6b21\u70b9\u51fb\u53ef\u4ee5\u56de\u5230\u666e\u901a\u7c98\u8d34\u6a21\u5f0f\u3002', + 'Fonts': '\u5b57\u4f53', + 'Font Sizes': '\u5b57\u53f7', + 'Class': '\u7c7b\u578b', + 'Browse for an image': '\u6d4f\u89c8\u56fe\u50cf', + 'OR': '\u6216', + 'Drop an image here': '\u62d6\u653e\u4e00\u5f20\u56fe\u50cf\u81f3\u6b64', + 'Upload': '\u4e0a\u4f20', + 'Block': '\u5757', + 'Align': '\u5bf9\u9f50', + 'Default': '\u9ed8\u8ba4', + 'Circle': '\u7a7a\u5fc3\u5706', + 'Disc': '\u5b9e\u5fc3\u5706', + 'Square': '\u65b9\u5757', + 'Lower Alpha': '\u5c0f\u5199\u82f1\u6587\u5b57\u6bcd', + 'Lower Greek': '\u5c0f\u5199\u5e0c\u814a\u5b57\u6bcd', + 'Lower Roman': '\u5c0f\u5199\u7f57\u9a6c\u5b57\u6bcd', + 'Upper Alpha': '\u5927\u5199\u82f1\u6587\u5b57\u6bcd', + 'Upper Roman': '\u5927\u5199\u7f57\u9a6c\u5b57\u6bcd', + 'Anchor...': '\u951a\u70b9...', + 'Name': '\u540d\u79f0', + 'Id': '\u6807\u8bc6\u7b26', + 'Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.': '\u6807\u8bc6\u7b26\u5e94\u8be5\u4ee5\u5b57\u6bcd\u5f00\u5934\uff0c\u540e\u8ddf\u5b57\u6bcd\u3001\u6570\u5b57\u3001\u7834\u6298\u53f7\u3001\u70b9\u3001\u5192\u53f7\u6216\u4e0b\u5212\u7ebf\u3002', + 'You have unsaved changes are you sure you want to navigate away?': '\u4f60\u8fd8\u6709\u6587\u6863\u5c1a\u672a\u4fdd\u5b58\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\uff1f', + 'Restore last draft': '\u6062\u590d\u4e0a\u6b21\u7684\u8349\u7a3f', + 'Special characters...': '\u7279\u6b8a\u5b57\u7b26...', + 'Source code': '\u6e90\u4ee3\u7801', + 'Insert/Edit code sample': '\u63d2\u5165/\u7f16\u8f91\u4ee3\u7801\u793a\u4f8b', + 'Language': '\u8bed\u8a00', + 'Code sample...': '\u793a\u4f8b\u4ee3\u7801...', + 'Color Picker': '\u9009\u8272\u5668', + 'R': 'R', + 'G': 'G', + 'B': 'B', + 'Left to right': '\u4ece\u5de6\u5230\u53f3', + 'Right to left': '\u4ece\u53f3\u5230\u5de6', + 'Emoticons...': '\u8868\u60c5\u7b26\u53f7...', + 'Metadata and Document Properties': '\u5143\u6570\u636e\u548c\u6587\u6863\u5c5e\u6027', + 'Title': '\u6807\u9898', + 'Keywords': '\u5173\u952e\u8bcd', + 'Description': '\u63cf\u8ff0', + 'Robots': '\u673a\u5668\u4eba', + 'Author': '\u4f5c\u8005', + 'Encoding': '\u7f16\u7801', + 'Fullscreen': '\u5168\u5c4f', + 'Action': '\u64cd\u4f5c', + 'Shortcut': '\u5feb\u6377\u952e', + 'Help': '\u5e2e\u52a9', + 'Address': '\u5730\u5740', + 'Focus to menubar': '\u79fb\u52a8\u7126\u70b9\u5230\u83dc\u5355\u680f', + 'Focus to toolbar': '\u79fb\u52a8\u7126\u70b9\u5230\u5de5\u5177\u680f', + 'Focus to element path': '\u79fb\u52a8\u7126\u70b9\u5230\u5143\u7d20\u8def\u5f84', + 'Focus to contextual toolbar': '\u79fb\u52a8\u7126\u70b9\u5230\u4e0a\u4e0b\u6587\u83dc\u5355', + 'Insert link (if link plugin activated)': '\u63d2\u5165\u94fe\u63a5 (\u5982\u679c\u94fe\u63a5\u63d2\u4ef6\u5df2\u6fc0\u6d3b)', + 'Save (if save plugin activated)': '\u4fdd\u5b58(\u5982\u679c\u4fdd\u5b58\u63d2\u4ef6\u5df2\u6fc0\u6d3b)', + 'Find (if searchreplace plugin activated)': '\u67e5\u627e(\u5982\u679c\u67e5\u627e\u66ff\u6362\u63d2\u4ef6\u5df2\u6fc0\u6d3b)', + 'Plugins installed ({0}):': '\u5df2\u5b89\u88c5\u63d2\u4ef6 ({0}):', + 'Premium plugins:': '\u4f18\u79c0\u63d2\u4ef6\uff1a', + 'Learn more...': '\u4e86\u89e3\u66f4\u591a...', + 'You are using {0}': '\u4f60\u6b63\u5728\u4f7f\u7528 {0}', + 'Plugins': '\u63d2\u4ef6', + 'Handy Shortcuts': '\u5feb\u6377\u952e', + 'Horizontal line': '\u6c34\u5e73\u5206\u5272\u7ebf', + 'Insert/edit image': '\u63d2\u5165/\u7f16\u8f91\u56fe\u7247', + 'Image description': '\u56fe\u7247\u63cf\u8ff0', + 'Source': '\u5730\u5740', + 'Dimensions': '\u5927\u5c0f', + 'Constrain proportions': '\u4fdd\u6301\u7eb5\u6a2a\u6bd4', + 'General': '\u666e\u901a', + 'Advanced': '\u9ad8\u7ea7', + 'Style': '\u6837\u5f0f', + 'Vertical space': '\u5782\u76f4\u8fb9\u8ddd', + 'Horizontal space': '\u6c34\u5e73\u8fb9\u8ddd', + 'Border': '\u8fb9\u6846', + 'Insert image': '\u63d2\u5165\u56fe\u7247', + 'Image...': '\u56fe\u7247...', + 'Image list': '\u56fe\u7247\u5217\u8868', + 'Rotate counterclockwise': '\u9006\u65f6\u9488\u65cb\u8f6c', + 'Rotate clockwise': '\u987a\u65f6\u9488\u65cb\u8f6c', + 'Flip vertically': '\u5782\u76f4\u7ffb\u8f6c', + 'Flip horizontally': '\u6c34\u5e73\u7ffb\u8f6c', + 'Edit image': '\u7f16\u8f91\u56fe\u7247', + 'Image options': '\u56fe\u7247\u9009\u9879', + 'Zoom in': '\u653e\u5927', + 'Zoom out': '\u7f29\u5c0f', + 'Crop': '\u88c1\u526a', + 'Resize': '\u8c03\u6574\u5927\u5c0f', + 'Orientation': '\u65b9\u5411', + 'Brightness': '\u4eae\u5ea6', + 'Sharpen': '\u9510\u5316', + 'Contrast': '\u5bf9\u6bd4\u5ea6', + 'Color levels': '\u989c\u8272\u5c42\u6b21', + 'Gamma': '\u4f3d\u9a6c\u503c', + 'Invert': '\u53cd\u8f6c', + 'Apply': '\u5e94\u7528', + 'Back': '\u540e\u9000', + 'Insert date/time': '\u63d2\u5165\u65e5\u671f/\u65f6\u95f4', + 'Date/time': '\u65e5\u671f/\u65f6\u95f4', + 'Insert/Edit Link': '\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5', + 'Insert/edit link': '\u63d2\u5165/\u7f16\u8f91\u94fe\u63a5', + 'Text to display': '\u663e\u793a\u6587\u5b57', + 'Url': '\u5730\u5740', + 'Open link in...': '\u94fe\u63a5\u6253\u5f00\u4f4d\u7f6e...', + 'Current window': '\u5f53\u524d\u7a97\u53e3', + 'None': '\u65e0', + 'New window': '\u5728\u65b0\u7a97\u53e3\u6253\u5f00', + 'Remove link': '\u5220\u9664\u94fe\u63a5', + 'Anchors': '\u951a\u70b9', + 'Link...': '\u94fe\u63a5...', + 'Paste or type a link': '\u7c98\u8d34\u6216\u8f93\u5165\u94fe\u63a5', + 'The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?': '\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u4e3a\u90ae\u4ef6\u5730\u5740\uff0c\u9700\u8981\u52a0\u4e0amailto:\u524d\u7f00\u5417\uff1f', + 'The URL you entered seems to be an external link. Do you want to add the required http:// prefix?': '\u4f60\u6240\u586b\u5199\u7684URL\u5730\u5740\u5c5e\u4e8e\u5916\u90e8\u94fe\u63a5\uff0c\u9700\u8981\u52a0\u4e0ahttp://:\u524d\u7f00\u5417\uff1f', + 'Link list': '\u94fe\u63a5\u5217\u8868', + 'Insert video': '\u63d2\u5165\u89c6\u9891', + 'Insert/edit video': '\u63d2\u5165/\u7f16\u8f91\u89c6\u9891', + 'Insert/edit media': '\u63d2\u5165/\u7f16\u8f91\u5a92\u4f53', + 'Alternative source': '\u955c\u50cf', + 'Alternative source URL': '\u66ff\u4ee3\u6765\u6e90\u7f51\u5740', + 'Media poster (Image URL)': '\u5c01\u9762(\u56fe\u7247\u5730\u5740)', + 'Paste your embed code below:': '\u5c06\u5185\u5d4c\u4ee3\u7801\u7c98\u8d34\u5728\u4e0b\u9762:', + 'Embed': '\u5185\u5d4c', + 'Media...': '\u591a\u5a92\u4f53...', + 'Nonbreaking space': '\u4e0d\u95f4\u65ad\u7a7a\u683c', + 'Page break': '\u5206\u9875\u7b26', + 'Paste as text': '\u7c98\u8d34\u4e3a\u6587\u672c', + 'Preview': '\u9884\u89c8', + 'Print...': '\u6253\u5370...', + 'Save': '\u4fdd\u5b58', + 'Find': '\u67e5\u627e', + 'Replace with': '\u66ff\u6362\u4e3a', + 'Replace': '\u66ff\u6362', + 'Replace all': '\u5168\u90e8\u66ff\u6362', + 'Previous': '\u4e0a\u4e00\u4e2a', + 'Next': '\u4e0b\u4e00\u4e2a', + 'Find and replace...': '\u67e5\u627e\u5e76\u66ff\u6362...', + 'Could not find the specified string.': '\u672a\u627e\u5230\u641c\u7d22\u5185\u5bb9.', + 'Match case': '\u533a\u5206\u5927\u5c0f\u5199', + 'Find whole words only': '\u5168\u5b57\u5339\u914d', + 'Spell check': '\u62fc\u5199\u68c0\u67e5', + 'Ignore': '\u5ffd\u7565', + 'Ignore all': '\u5168\u90e8\u5ffd\u7565', + 'Finish': '\u5b8c\u6210', + 'Add to Dictionary': '\u6dfb\u52a0\u5230\u5b57\u5178', + 'Insert table': '\u63d2\u5165\u8868\u683c', + 'Table properties': '\u8868\u683c\u5c5e\u6027', + 'Delete table': '\u5220\u9664\u8868\u683c', + 'Cell': '\u5355\u5143\u683c', + 'Row': '\u884c', + 'Column': '\u5217', + 'Cell properties': '\u5355\u5143\u683c\u5c5e\u6027', + 'Merge cells': '\u5408\u5e76\u5355\u5143\u683c', + 'Split cell': '\u62c6\u5206\u5355\u5143\u683c', + 'Insert row before': '\u5728\u4e0a\u65b9\u63d2\u5165', + 'Insert row after': '\u5728\u4e0b\u65b9\u63d2\u5165', + 'Delete row': '\u5220\u9664\u884c', + 'Row properties': '\u884c\u5c5e\u6027', + 'Cut row': '\u526a\u5207\u884c', + 'Copy row': '\u590d\u5236\u884c', + 'Paste row before': '\u7c98\u8d34\u5230\u4e0a\u65b9', + 'Paste row after': '\u7c98\u8d34\u5230\u4e0b\u65b9', + 'Insert column before': '\u5728\u5de6\u4fa7\u63d2\u5165', + 'Insert column after': '\u5728\u53f3\u4fa7\u63d2\u5165', + 'Delete column': '\u5220\u9664\u5217', + 'Cols': '\u5217', + 'Rows': '\u884c', + 'Width': '\u5bbd', + 'Height': '\u9ad8', + 'Cell spacing': '\u5355\u5143\u683c\u5916\u95f4\u8ddd', + 'Cell padding': '\u5355\u5143\u683c\u5185\u8fb9\u8ddd', + 'Show caption': '\u663e\u793a\u6807\u9898', + 'Left': '\u5de6\u5bf9\u9f50', + 'Center': '\u5c45\u4e2d', + 'Right': '\u53f3\u5bf9\u9f50', + 'Cell type': '\u5355\u5143\u683c\u7c7b\u578b', + 'Scope': '\u8303\u56f4', + 'Alignment': '\u5bf9\u9f50\u65b9\u5f0f', + 'H Align': '\u6c34\u5e73\u5bf9\u9f50', + 'V Align': '\u5782\u76f4\u5bf9\u9f50', + 'Top': '\u9876\u90e8\u5bf9\u9f50', + 'Middle': '\u5782\u76f4\u5c45\u4e2d', + 'Bottom': '\u5e95\u90e8\u5bf9\u9f50', + 'Header cell': '\u8868\u5934\u5355\u5143\u683c', + 'Row group': '\u884c\u7ec4', + 'Column group': '\u5217\u7ec4', + 'Row type': '\u884c\u7c7b\u578b', + 'Header': '\u8868\u5934', + 'Body': '\u8868\u4f53', + 'Footer': '\u8868\u5c3e', + 'Border color': '\u8fb9\u6846\u989c\u8272', + 'Insert template...': '\u63d2\u5165\u6a21\u677f...', + 'Templates': '\u6a21\u677f', + 'Template': '\u6a21\u677f', + 'Text color': '\u6587\u5b57\u989c\u8272', + 'Background color': '\u80cc\u666f\u8272', + 'Custom...': '\u81ea\u5b9a\u4e49...', + 'Custom color': '\u81ea\u5b9a\u4e49\u989c\u8272', + 'No color': '\u65e0', + 'Remove color': '\u79fb\u9664\u989c\u8272', + 'Table of Contents': '\u5185\u5bb9\u5217\u8868', + 'Show blocks': '\u663e\u793a\u533a\u5757\u8fb9\u6846', + 'Show invisible characters': '\u663e\u793a\u4e0d\u53ef\u89c1\u5b57\u7b26', + 'Word count': '\u5b57\u6570', + 'Words: {0}': '\u5b57\u6570\uff1a{0}', + '{0} words': '{0} \u5b57', + 'File': '\u6587\u4ef6', + 'Edit': '\u7f16\u8f91', + 'Insert': '\u63d2\u5165', + 'View': '\u89c6\u56fe', + 'Format': '\u683c\u5f0f', + 'Table': '\u8868\u683c', + 'Tools': '\u5de5\u5177', + 'Powered by {0}': '\u7531{0}\u9a71\u52a8', + 'Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help': '\u5728\u7f16\u8f91\u533a\u6309ALT-F9\u6253\u5f00\u83dc\u5355\uff0c\u6309ALT-F10\u6253\u5f00\u5de5\u5177\u680f\uff0c\u6309ALT-0\u67e5\u770b\u5e2e\u52a9', + 'Image title': '\u56fe\u7247\u6807\u9898', + 'Border width': '\u8fb9\u6846\u5bbd\u5ea6', + 'Border style': '\u8fb9\u6846\u6837\u5f0f', + 'Error': '\u9519\u8bef', + 'Warn': '\u8b66\u544a', + 'Valid': '\u6709\u6548', + 'To open the popup, press Shift+Enter': '\u6309Shitf+Enter\u952e\u6253\u5f00\u5bf9\u8bdd\u6846', + 'Rich Text Area. Press ALT-0 for help.': '\u7f16\u8f91\u533a\u3002\u6309Alt+0\u952e\u6253\u5f00\u5e2e\u52a9\u3002', + 'System Font': '\u7cfb\u7edf\u5b57\u4f53', + 'Failed to upload image: {0}': '\u56fe\u7247\u4e0a\u4f20\u5931\u8d25: {0}', + 'Failed to load plugin: {0} from url {1}': '\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25: {0} \u6765\u81ea\u94fe\u63a5 {1}', + 'Failed to load plugin url: {0}': '\u63d2\u4ef6\u52a0\u8f7d\u5931\u8d25 \u94fe\u63a5: {0}', + 'Failed to initialize plugin: {0}': '\u63d2\u4ef6\u521d\u59cb\u5316\u5931\u8d25: {0}', + 'example': '\u793a\u4f8b', + 'Search': '\u641c\u7d22', + 'All': '\u5168\u90e8', + 'Currency': '\u8d27\u5e01', + 'Text': '\u6587\u5b57', + 'Quotations': '\u5f15\u7528', + 'Mathematical': '\u6570\u5b66', + 'Extended Latin': '\u62c9\u4e01\u8bed\u6269\u5145', + 'Symbols': '\u7b26\u53f7', + 'Arrows': '\u7bad\u5934', + 'User Defined': '\u81ea\u5b9a\u4e49', + 'dollar sign': '\u7f8e\u5143\u7b26\u53f7', + 'currency sign': '\u8d27\u5e01\u7b26\u53f7', + 'euro-currency sign': '\u6b27\u5143\u7b26\u53f7', + 'colon sign': '\u5192\u53f7', + 'cruzeiro sign': '\u514b\u9c81\u8d5b\u7f57\u5e01\u7b26\u53f7', + 'french franc sign': '\u6cd5\u90ce\u7b26\u53f7', + 'lira sign': '\u91cc\u62c9\u7b26\u53f7', + 'mill sign': '\u5bc6\u5c14\u7b26\u53f7', + 'naira sign': '\u5948\u62c9\u7b26\u53f7', + 'peseta sign': '\u6bd4\u585e\u5854\u7b26\u53f7', + 'rupee sign': '\u5362\u6bd4\u7b26\u53f7', + 'won sign': '\u97e9\u5143\u7b26\u53f7', + 'new sheqel sign': '\u65b0\u8c22\u514b\u5c14\u7b26\u53f7', + 'dong sign': '\u8d8a\u5357\u76fe\u7b26\u53f7', + 'kip sign': '\u8001\u631d\u57fa\u666e\u7b26\u53f7', + 'tugrik sign': '\u56fe\u683c\u91cc\u514b\u7b26\u53f7', + 'drachma sign': '\u5fb7\u62c9\u514b\u9a6c\u7b26\u53f7', + 'german penny symbol': '\u5fb7\u56fd\u4fbf\u58eb\u7b26\u53f7', + 'peso sign': '\u6bd4\u7d22\u7b26\u53f7', + 'guarani sign': '\u74dc\u62c9\u5c3c\u7b26\u53f7', + 'austral sign': '\u6fb3\u5143\u7b26\u53f7', + 'hryvnia sign': '\u683c\u91cc\u592b\u5c3c\u4e9a\u7b26\u53f7', + 'cedi sign': '\u585e\u5730\u7b26\u53f7', + 'livre tournois sign': '\u91cc\u5f17\u5f17\u5c14\u7b26\u53f7', + 'spesmilo sign': 'spesmilo\u7b26\u53f7', + 'tenge sign': '\u575a\u6208\u7b26\u53f7', + 'indian rupee sign': '\u5370\u5ea6\u5362\u6bd4', + 'turkish lira sign': '\u571f\u8033\u5176\u91cc\u62c9', + 'nordic mark sign': '\u5317\u6b27\u9a6c\u514b', + 'manat sign': '\u9a6c\u7eb3\u7279\u7b26\u53f7', + 'ruble sign': '\u5362\u5e03\u7b26\u53f7', + 'yen character': '\u65e5\u5143\u5b57\u6837', + 'yuan character': '\u4eba\u6c11\u5e01\u5143\u5b57\u6837', + 'yuan character, in hong kong and taiwan': '\u5143\u5b57\u6837\uff08\u6e2f\u53f0\u5730\u533a\uff09', + 'yen/yuan character variant one': '\u5143\u5b57\u6837\uff08\u5927\u5199\uff09', + 'Loading emoticons...': '\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7...', + 'Could not load emoticons': '\u4e0d\u80fd\u52a0\u8f7d\u8868\u60c5\u7b26\u53f7', + 'People': '\u4eba\u7c7b', + 'Animals and Nature': '\u52a8\u7269\u548c\u81ea\u7136', + 'Food and Drink': '\u98df\u7269\u548c\u996e\u54c1', + 'Activity': '\u6d3b\u52a8', + 'Travel and Places': '\u65c5\u6e38\u548c\u5730\u70b9', + 'Objects': '\u7269\u4ef6', + 'Flags': '\u65d7\u5e1c', + 'Characters': '\u5b57\u7b26', + 'Characters (no spaces)': '\u5b57\u7b26(\u65e0\u7a7a\u683c)', + 'Error: Form submit field collision.': '\u9519\u8bef: \u8868\u5355\u63d0\u4ea4\u5b57\u6bb5\u51b2\u7a81\u3002', + 'Error: No form element found.': '\u9519\u8bef: \u6ca1\u6709\u8868\u5355\u63a7\u4ef6\u3002', + 'Update': '\u66f4\u65b0', + 'Color swatch': '\u989c\u8272\u6837\u672c', + 'Turquoise': '\u9752\u7eff\u8272', + 'Green': '\u7eff\u8272', + 'Blue': '\u84dd\u8272', + 'Purple': '\u7d2b\u8272', + 'Navy Blue': '\u6d77\u519b\u84dd', + 'Dark Turquoise': '\u6df1\u84dd\u7eff\u8272', + 'Dark Green': '\u6df1\u7eff\u8272', + 'Medium Blue': '\u4e2d\u84dd\u8272', + 'Medium Purple': '\u4e2d\u7d2b\u8272', + 'Midnight Blue': '\u6df1\u84dd\u8272', + 'Yellow': '\u9ec4\u8272', + 'Orange': '\u6a59\u8272', + 'Red': '\u7ea2\u8272', + 'Light Gray': '\u6d45\u7070\u8272', + 'Gray': '\u7070\u8272', + 'Dark Yellow': '\u6697\u9ec4\u8272', + 'Dark Orange': '\u6df1\u6a59\u8272', + 'Dark Red': '\u6df1\u7ea2\u8272', + 'Medium Gray': '\u4e2d\u7070\u8272', + 'Dark Gray': '\u6df1\u7070\u8272', + 'Black': '\u9ed1\u8272', + 'White': '\u767d\u8272', + 'Switch to or from fullscreen mode': '\u5207\u6362\u5168\u5c4f\u6a21\u5f0f', + 'Open help dialog': '\u6253\u5f00\u5e2e\u52a9\u5bf9\u8bdd\u6846', + 'history': '\u5386\u53f2', + 'styles': '\u6837\u5f0f', + 'formatting': '\u683c\u5f0f\u5316', + 'alignment': '\u5bf9\u9f50', + 'indentation': '\u7f29\u8fdb', + 'permanent pen': '\u8bb0\u53f7\u7b14', + 'comments': '\u5907\u6ce8', + 'Anchor': '\u951a\u70b9', + 'Special character': '\u7279\u6b8a\u7b26\u53f7', + 'Code sample': '\u4ee3\u7801\u793a\u4f8b', + 'Color': '\u989c\u8272', + 'Emoticons': '\u8868\u60c5', + 'Document properties': '\u6587\u6863\u5c5e\u6027', + 'Image': '\u56fe\u7247', + 'Insert link': '\u63d2\u5165\u94fe\u63a5', + 'Target': '\u6253\u5f00\u65b9\u5f0f', + 'Link': '\u94fe\u63a5', + 'Poster': '\u5c01\u9762', + 'Media': '\u5a92\u4f53', + 'Print': '\u6253\u5370', + 'Prev': '\u4e0a\u4e00\u4e2a', + 'Find and replace': '\u67e5\u627e\u548c\u66ff\u6362', + 'Whole words': '\u5168\u5b57\u5339\u914d', + 'Spellcheck': '\u62fc\u5199\u68c0\u67e5', + 'Caption': '\u6807\u9898', + 'Insert template': '\u63d2\u5165\u6a21\u677f' +}) diff --git a/public/tinymce/skins/content.inline.min.css b/public/tinymce/skins/content.inline.min.css new file mode 100644 index 0000000000..15d58aa056 --- /dev/null +++ b/public/tinymce/skins/content.inline.min.css @@ -0,0 +1,8 @@ +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + */ +.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment{background-color:#fff0b7}.tox-comments-visible .tox-comment--active{background-color:#ffe168}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");background-size:100%;content:'';cursor:pointer;height:1em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}.mce-content-body:not([dir=rtl]) .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:-1.5em}.mce-content-body[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:.875rem;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:0 0!important;border:1px solid #ccc}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#a67f59;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentcolor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-9999999999px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--16by9::before,.tiny-pageembed--1by1::before,.tiny-pageembed--21by9::before,.tiny-pageembed--4by3::before{content:"";display:block}.tiny-pageembed--21by9::before{padding-top:42.857143%}.tiny-pageembed--16by9::before{padding-top:56.25%}.tiny-pageembed--4by3::before{padding-top:75%}.tiny-pageembed--1by1::before{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:10000}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-clonedresizable{opacity:.5;outline:1px dashed #000;position:absolute;z-index:10000}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10001}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-content-body img[data-mce-selected],.mce-content-body table[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{background-color:#b4d7ff!important}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mce-content-body img::-moz-selection{background:0 0}.mce-content-body img::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.5'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23008800'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc li{list-style-type:none}.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}.tox-toolbar-dock-fadeout{opacity:0;visibility:hidden}.tox-toolbar-dock-fadein{opacity:1;visibility:visible}.tox-toolbar-dock-transition{transition:visibility 0s linear .3s,opacity .3s ease}.tox-toolbar-dock-transition.tox-toolbar-dock-fadein{transition-delay:0s} +/*# sourceMappingURL=content.inline.min.css.map */ diff --git a/public/tinymce/skins/content.min.css b/public/tinymce/skins/content.min.css new file mode 100644 index 0000000000..984b55676f --- /dev/null +++ b/public/tinymce/skins/content.min.css @@ -0,0 +1,8 @@ +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + */ +.mce-content-body .mce-item-anchor{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;cursor:default;display:inline-block;height:12px!important;padding:0 2px;-webkit-user-modify:read-only;-moz-user-modify:read-only;-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all;width:8px!important}.mce-content-body .mce-item-anchor[data-mce-selected]{outline-offset:1px}.tox-comments-visible .tox-comment{background-color:#fff0b7}.tox-comments-visible .tox-comment--active{background-color:#ffe168}.tox-checklist>li:not(.tox-checklist--hidden){list-style:none;margin:.25em 0}.tox-checklist>li:not(.tox-checklist--hidden)::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%234C4C4C%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");background-size:100%;content:'';cursor:pointer;height:1em;margin-top:.125em;position:absolute;width:1em}.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A")}.mce-content-body:not([dir=rtl]) .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-left:-1.5em}.mce-content-body[dir=rtl] .tox-checklist>li:not(.tox-checklist--hidden)::before{margin-right:-1.5em}code[class*=language-],pre[class*=language-]{color:#000;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:.875rem;direction:ltr;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:0 0!important;border:1px solid #ccc}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#a67f59;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}.mce-content-body{overflow-wrap:break-word;word-wrap:break-word}.mce-content-body .mce-visual-caret{background-color:#000;background-color:currentcolor;position:absolute}.mce-content-body .mce-visual-caret-hidden{display:none}.mce-content-body [data-mce-caret]{left:-1000px;margin:0;padding:0;position:absolute;right:auto;top:0}.mce-content-body .mce-offscreen-selection{left:-9999999999px;max-width:1000000px;position:absolute}.mce-content-body [contentEditable=false]{cursor:default}.mce-content-body [contentEditable=true]{cursor:text}.tox-cursor-format-painter{cursor:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"),default}.mce-content-body figure.align-left{float:left}.mce-content-body figure.align-right{float:right}.mce-content-body figure.image.align-center{display:table;margin-left:auto;margin-right:auto}.mce-preview-object{border:1px solid gray;display:inline-block;line-height:0;margin:0 2px 0 2px;position:relative}.mce-preview-object .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.mce-preview-object[data-mce-selected="2"] .mce-shim{display:none}.mce-object{background:transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;border:1px dashed #aaa}.mce-pagebreak{border:1px dashed #aaa;cursor:default;display:block;height:5px;margin-top:15px;page-break-before:always;width:100%}@media print{.mce-pagebreak{border:0}}.tiny-pageembed .mce-shim{background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);height:100%;left:0;position:absolute;top:0;width:100%}.tiny-pageembed[data-mce-selected="2"] .mce-shim{display:none}.tiny-pageembed{display:inline-block;position:relative}.tiny-pageembed--16by9,.tiny-pageembed--1by1,.tiny-pageembed--21by9,.tiny-pageembed--4by3{display:block;overflow:hidden;padding:0;position:relative;width:100%}.tiny-pageembed--16by9::before,.tiny-pageembed--1by1::before,.tiny-pageembed--21by9::before,.tiny-pageembed--4by3::before{content:"";display:block}.tiny-pageembed--21by9::before{padding-top:42.857143%}.tiny-pageembed--16by9::before{padding-top:56.25%}.tiny-pageembed--4by3::before{padding-top:75%}.tiny-pageembed--1by1::before{padding-top:100%}.tiny-pageembed--16by9 iframe,.tiny-pageembed--1by1 iframe,.tiny-pageembed--21by9 iframe,.tiny-pageembed--4by3 iframe{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.mce-content-body div.mce-resizehandle{background-color:#4099ff;border-color:#4099ff;border-style:solid;border-width:1px;box-sizing:border-box;height:10px;position:absolute;width:10px;z-index:10000}.mce-content-body div.mce-resizehandle:hover{background-color:#4099ff}.mce-content-body div.mce-resizehandle:nth-of-type(1){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(2){cursor:nesw-resize}.mce-content-body div.mce-resizehandle:nth-of-type(3){cursor:nwse-resize}.mce-content-body div.mce-resizehandle:nth-of-type(4){cursor:nesw-resize}.mce-content-body .mce-clonedresizable{opacity:.5;outline:1px dashed #000;position:absolute;z-index:10000}.mce-content-body .mce-resize-helper{background:#555;background:rgba(0,0,0,.75);border:1px;border-radius:3px;color:#fff;display:none;font-family:sans-serif;font-size:12px;line-height:14px;margin:5px 10px;padding:5px;position:absolute;white-space:nowrap;z-index:10001}.mce-match-marker{background:#aaa;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-content-body img[data-mce-selected],.mce-content-body table[data-mce-selected]{outline:3px solid #b4d7ff}.mce-content-body hr[data-mce-selected]{outline:3px solid #b4d7ff;outline-offset:1px}.mce-content-body [contentEditable=false] [contentEditable=true]:focus{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false] [contentEditable=true]:hover{outline:3px solid #b4d7ff}.mce-content-body [contentEditable=false][data-mce-selected]{cursor:not-allowed;outline:3px solid #b4d7ff}.mce-content-body.mce-content-readonly [contentEditable=true]:focus,.mce-content-body.mce-content-readonly [contentEditable=true]:hover{outline:0}.mce-content-body [data-mce-selected=inline-boundary]{background-color:#b4d7ff}.mce-content-body .mce-edit-focus{outline:3px solid #b4d7ff}.mce-content-body td[data-mce-selected],.mce-content-body th[data-mce-selected]{background-color:#b4d7ff!important}.mce-content-body td[data-mce-selected]::-moz-selection,.mce-content-body th[data-mce-selected]::-moz-selection{background:0 0}.mce-content-body td[data-mce-selected]::selection,.mce-content-body th[data-mce-selected]::selection{background:0 0}.mce-content-body td[data-mce-selected] *,.mce-content-body th[data-mce-selected] *{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mce-content-body img::-moz-selection{background:0 0}.mce-content-body img::selection{background:0 0}.ephox-snooker-resizer-bar{background-color:#b4d7ff;opacity:0}.ephox-snooker-resizer-cols{cursor:col-resize}.ephox-snooker-resizer-rows{cursor:row-resize}.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging{opacity:1}.mce-spellchecker-word{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.5'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default;height:2rem}.mce-spellchecker-grammar{background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23008800'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");background-position:0 calc(100% + 1px);background-repeat:repeat-x;background-size:auto 6px;cursor:default}.mce-toc{border:1px solid gray}.mce-toc h2{margin:4px}.mce-toc li{list-style-type:none}.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th{border:1px dashed #bbb}.mce-visualblocks address,.mce-visualblocks article,.mce-visualblocks aside,.mce-visualblocks blockquote,.mce-visualblocks div:not([data-mce-bogus]),.mce-visualblocks dl,.mce-visualblocks figcaption,.mce-visualblocks figure,.mce-visualblocks h1,.mce-visualblocks h2,.mce-visualblocks h3,.mce-visualblocks h4,.mce-visualblocks h5,.mce-visualblocks h6,.mce-visualblocks hgroup,.mce-visualblocks ol,.mce-visualblocks p,.mce-visualblocks pre,.mce-visualblocks section,.mce-visualblocks ul{background-repeat:no-repeat;border:1px dashed #bbb;margin-left:3px;padding-top:10px}.mce-visualblocks p{background-image:url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7)}.mce-visualblocks h1{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==)}.mce-visualblocks h2{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==)}.mce-visualblocks h3{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7)}.mce-visualblocks h4{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==)}.mce-visualblocks h5{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==)}.mce-visualblocks h6{background-image:url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==)}.mce-visualblocks div:not([data-mce-bogus]){background-image:url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7)}.mce-visualblocks section{background-image:url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=)}.mce-visualblocks article{background-image:url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7)}.mce-visualblocks blockquote{background-image:url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7)}.mce-visualblocks address{background-image:url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=)}.mce-visualblocks pre{background-image:url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==)}.mce-visualblocks figure{background-image:url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7)}.mce-visualblocks figcaption{border:1px dashed #bbb}.mce-visualblocks hgroup{background-image:url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7)}.mce-visualblocks aside{background-image:url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=)}.mce-visualblocks ul{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==)}.mce-visualblocks ol{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==)}.mce-visualblocks dl{background-image:url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==)}.mce-nbsp,.mce-shy{background:#aaa}.mce-shy::after{content:'-'}body{font-family:sans-serif}table{border-collapse:collapse} +/*# sourceMappingURL=content.min.css.map */ diff --git a/public/tinymce/skins/content.mobile.min.css b/public/tinymce/skins/content.mobile.min.css new file mode 100644 index 0000000000..fa69a9d4ec --- /dev/null +++ b/public/tinymce/skins/content.mobile.min.css @@ -0,0 +1 @@ +.tinymce-mobile-unfocused-selections .tinymce-mobile-unfocused-selection{position:absolute;display:inline-block;background-color:green;opacity:.5}body{-webkit-text-size-adjust:none}body img{max-width:96vw}body table img{max-width:95%} \ No newline at end of file diff --git a/public/tinymce/skins/fonts/tinymce-mobile.woff b/public/tinymce/skins/fonts/tinymce-mobile.woff new file mode 100644 index 0000000000..1e3be038a6 Binary files /dev/null and b/public/tinymce/skins/fonts/tinymce-mobile.woff differ diff --git a/public/tinymce/skins/skin.min.css b/public/tinymce/skins/skin.min.css new file mode 100644 index 0000000000..369a1c01e5 --- /dev/null +++ b/public/tinymce/skins/skin.min.css @@ -0,0 +1,8 @@ +/** + * Copyright (c) Tiny Technologies, Inc. All rights reserved. + * Licensed under the LGPL or a commercial license. + * For LGPL see License.txt in the project root for license information. + * For commercial licenses see https://www.tiny.cloud/ + */ +.tox{box-sizing:content-box;color:#222f3e;cursor:auto;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-style:normal;font-weight:400;line-height:normal;-webkit-tap-highlight-color:transparent;text-decoration:none;text-shadow:none;text-transform:none;vertical-align:initial;white-space:normal}.tox :not(svg){box-sizing:inherit;color:inherit;cursor:inherit;direction:inherit;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;line-height:inherit;-webkit-tap-highlight-color:inherit;text-align:inherit;text-decoration:inherit;text-shadow:inherit;text-transform:inherit;vertical-align:inherit;white-space:inherit}.tox :not(svg){background:0 0;border:0;float:none;height:auto;margin:0;max-width:none;outline:0;padding:0;position:static;width:auto}.tox:not([dir=rtl]){direction:ltr;text-align:left}.tox[dir=rtl]{direction:rtl;text-align:right}.tox-tinymce{border:1px solid #ccc;border-radius:0;box-shadow:none;box-sizing:border-box;display:flex;flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;overflow:hidden;position:relative;visibility:inherit!important}.tox-editor-container{display:flex;flex:1 1 auto;flex-direction:column;overflow:hidden}.tox-editor-container>:first-child{border-top:none!important}.tox-tinymce-aux{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.tox-tinymce :focus,.tox-tinymce-aux :focus{outline:0}button::-moz-focus-inner{border:0}.tox-silver-sink{z-index:1300}.tox .tox-anchorbar{display:flex;flex:0 0 auto}.tox .tox-bar{display:flex;flex:0 0 auto}.tox .tox-button{background-color:#207ab7;background-image:none;background-position:none;background-repeat:none;border-color:#207ab7;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:700;letter-spacing:1;line-height:24px;margin:0;outline:0;padding:4px 16px;text-align:center;text-decoration:none;text-transform:capitalize;white-space:nowrap}.tox .tox-button[disabled]{background-color:#207ab7;background-image:none;border-color:#207ab7;box-shadow:none;color:rgba(255,255,255,.5);cursor:not-allowed}.tox .tox-button:focus:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:hover:not(:disabled){background-color:#1c6ca1;background-image:none;border-color:#1c6ca1;box-shadow:none;color:#fff}.tox .tox-button:active:not(:disabled){background-color:#185d8c;background-image:none;border-color:#185d8c;box-shadow:none;color:#fff}.tox .tox-button--secondary{background-color:#f0f0f0;background-image:none;background-position:none;background-repeat:none;border-color:#f0f0f0;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;color:#222f3e;outline:0;padding:4px 16px;text-decoration:none;text-transform:capitalize}.tox .tox-button--secondary[disabled]{background-color:#f0f0f0;background-image:none;border-color:#f0f0f0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-button--secondary:focus:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:hover:not(:disabled){background-color:#e3e3e3;background-image:none;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--secondary:active:not(:disabled){background-color:#d6d6d6;background-image:none;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--icon,.tox .tox-button.tox-button--icon,.tox .tox-button.tox-button--secondary.tox-button--icon{padding:4px}.tox .tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--icon .tox-icon svg,.tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg{display:block;fill:currentColor}.tox .tox-button-link{background:0;border:none;box-sizing:border-box;cursor:pointer;display:inline-block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-weight:400;line-height:1.3;margin:0;padding:0;white-space:nowrap}.tox .tox-button-link--sm{font-size:14px}.tox .tox-button--naked{background-color:transparent;border-color:transparent;box-shadow:unset;color:#222f3e}.tox .tox-button--naked:hover:not(:disabled){background-color:#e3e3e3;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--naked:focus:not(:disabled){background-color:#e3e3e3;border-color:#e3e3e3;box-shadow:none;color:#222f3e}.tox .tox-button--naked:active:not(:disabled){background-color:#d6d6d6;border-color:#d6d6d6;box-shadow:none;color:#222f3e}.tox .tox-button--naked .tox-icon svg{fill:currentColor}.tox .tox-button--naked.tox-button--icon{color:currentColor}.tox .tox-button--naked.tox-button--icon:hover:not(:disabled){color:#222f3e}.tox .tox-checkbox{align-items:center;border-radius:3px;cursor:pointer;display:flex;height:36px;min-width:36px}.tox .tox-checkbox__input{height:1px;left:-10000px;overflow:hidden;position:absolute;top:auto;width:1px}.tox .tox-checkbox__icons{border-radius:3px;box-shadow:0 0 0 2px transparent;box-sizing:content-box;height:24px;padding:calc(4px - 1px);width:24px}.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:block;fill:rgba(34,47,62,.3)}.tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:none;fill:#207ab7}.tox .tox-checkbox__icons .tox-checkbox-icon__checked svg{display:none;fill:#207ab7}.tox .tox-checkbox__label{margin-left:4px}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:checked+.tox-checkbox__icons .tox-checkbox-icon__checked svg{display:block}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__unchecked svg{display:none}.tox input.tox-checkbox__input:indeterminate+.tox-checkbox__icons .tox-checkbox-icon__indeterminate svg{display:block}.tox input.tox-checkbox__input:focus+.tox-checkbox__icons{border-radius:3px;box-shadow:inset 0 0 0 1px #207ab7;padding:calc(4px - 1px)}.tox .tox-bar .tox-checkbox{margin-left:4px}.tox .tox-collection--toolbar .tox-collection__group{display:flex;padding:0}.tox .tox-collection--grid .tox-collection__group{display:flex;flex-wrap:wrap;max-height:208px;overflow-x:hidden;overflow-y:auto;padding:0}.tox .tox-collection--list .tox-collection__group{border-bottom-width:0;border-color:#ccc;border-left-width:0;border-right-width:0;border-style:solid;border-top-width:1px;padding:4px 0}.tox .tox-collection--list .tox-collection__group:first-child{border-top-width:0}.tox .tox-collection__group-heading{background-color:#e6e6e6;color:rgba(34,47,62,.7);cursor:default;font-size:12px;font-style:normal;font-weight:400;margin-bottom:4px;margin-top:-4px;padding:4px 8px;text-transform:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tox .tox-collection__item{align-items:center;color:#222f3e;cursor:pointer;display:flex;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tox .tox-collection--list .tox-collection__item{padding:4px 8px}.tox .tox-collection--toolbar .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--grid .tox-collection__item{border-radius:3px;padding:4px}.tox .tox-collection--list .tox-collection__item--enabled{background-color:inherit;color:contrast(inherit,#222f3e,#fff)}.tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#dee0e2;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--enabled{background-color:#c8cbcf;color:#222f3e}.tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#dee0e2;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--enabled{background-color:#c8cbcf;color:#222f3e}.tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled){background-color:#dee0e2;color:#222f3e}.tox .tox-collection__item--state-disabled{background-color:transparent;color:rgba(34,47,62,.5);cursor:default}.tox .tox-collection__item-icon{align-items:center;display:flex;height:24px;justify-content:center;width:24px}.tox .tox-collection__item-icon svg{fill:currentColor}.tox .tox-collection--toolbar-lg .tox-collection__item-icon{height:48px;width:48px}.tox .tox-collection__item[role=menuitemcheckbox]:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg{display:none}.tox .tox-collection__item-label{color:currentColor;display:inline-block;flex:1;-ms-flex-preferred-size:auto;font-size:14px;font-style:normal;font-weight:400;line-height:24px;text-transform:none;word-break:break-all}.tox .tox-collection__item-accessory{color:rgba(34,47,62,.7);display:inline-block;font-size:14px;height:24px;line-height:24px;text-transform:normal}.tox .tox-collection__item-caret{align-items:center;display:flex;min-height:24px}.tox .tox-collection__item-caret::after{content:'';font-size:0;min-height:inherit}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item>:not(:first-child){margin-left:8px}.tox:not([dir=rtl]) .tox-collection--list .tox-collection__item-label:first-child{margin-left:4px}.tox:not([dir=rtl]) .tox-collection__item-accessory{margin-left:16px;text-align:right}.tox:not([dir=rtl]) .tox-collection__item-caret{margin-left:16px}.tox[dir=rtl] .tox-collection--list .tox-collection__item>:not(:first-child){margin-right:8px}.tox[dir=rtl] .tox-collection--list .tox-collection__item-label:first-child{margin-right:4px}.tox[dir=rtl] .tox-collection__item-icon-rtl .tox-collection__item-icon svg{transform:rotateY(180deg)}.tox[dir=rtl] .tox-collection__item-accessory{margin-right:16px;text-align:left}.tox[dir=rtl] .tox-collection__item-caret{margin-right:16px;transform:rotateY(180deg)}.tox .tox-color-picker-container{display:flex;flex-direction:row;height:225px;margin:0}.tox .tox-sv-palette{box-sizing:border-box;display:flex;height:100%}.tox .tox-sv-palette-spectrum{height:100%}.tox .tox-sv-palette,.tox .tox-sv-palette-spectrum{width:225px}.tox .tox-sv-palette-thumb{background:0 0;border:1px solid #000;border-radius:50%;box-sizing:content-box;height:12px;position:absolute;width:12px}.tox .tox-sv-palette-inner-thumb{border:1px solid #fff;border-radius:50%;height:10px;position:absolute;width:10px}.tox .tox-hue-slider{box-sizing:border-box;height:100%;width:25px}.tox .tox-hue-slider-spectrum{background:linear-gradient(to bottom,red,#ff0080,#f0f,#8000ff,#00f,#0080ff,#0ff,#00ff80,#0f0,#80ff00,#ff0,#ff8000,red);height:100%;width:100%}.tox .tox-hue-slider,.tox .tox-hue-slider-spectrum{width:20px}.tox .tox-hue-slider-thumb{background:#fff;border:1px solid #000;box-sizing:content-box;height:4px;margin-left:-1px;width:100%}.tox .tox-rgb-form{display:flex;flex-direction:column;justify-content:space-between}.tox .tox-rgb-form div{align-items:center;display:flex;justify-content:space-between;margin-bottom:5px;width:inherit}.tox .tox-rgb-form input{width:6em}.tox .tox-rgb-form input.tox-invalid{border:1px solid red!important}.tox .tox-rgb-form .tox-rgba-preview{border:1px solid #000;flex-grow:2;margin-bottom:0}.tox:not([dir=rtl]) .tox-sv-palette{margin-right:15px}.tox:not([dir=rtl]) .tox-hue-slider{margin-right:15px}.tox:not([dir=rtl]) .tox-rgb-form label{margin-right:.5em}.tox[dir=rtl] .tox-sv-palette{margin-left:15px}.tox[dir=rtl] .tox-hue-slider{margin-left:15px}.tox[dir=rtl] .tox-rgb-form label{margin-left:.5em}.tox .tox-toolbar .tox-swatches,.tox .tox-toolbar__overflow .tox-swatches,.tox .tox-toolbar__primary .tox-swatches{margin:2px 0 3px 4px}.tox .tox-collection--list .tox-collection__group .tox-swatches-menu{border:0;margin:-4px 0}.tox .tox-swatches__row{display:flex}.tox .tox-swatch{height:30px;transition:transform .15s,box-shadow .15s;width:30px}.tox .tox-swatch:focus,.tox .tox-swatch:hover{box-shadow:0 0 0 1px rgba(127,127,127,.3) inset;transform:scale(.8)}.tox .tox-swatch--remove{align-items:center;display:flex;justify-content:center}.tox .tox-swatch--remove svg path{stroke:#e74c3c}.tox .tox-swatches__picker-btn{align-items:center;background-color:transparent;border:0;cursor:pointer;display:flex;height:30px;justify-content:center;outline:0;padding:0;width:30px}.tox .tox-swatches__picker-btn svg{height:24px;width:24px}.tox .tox-swatches__picker-btn:hover{background:#dee0e2}.tox:not([dir=rtl]) .tox-swatches__picker-btn{margin-left:auto}.tox[dir=rtl] .tox-swatches__picker-btn{margin-right:auto}.tox .tox-comment-thread{background:#fff;position:relative}.tox .tox-comment-thread>:not(:first-child){margin-top:8px}.tox .tox-comment{background:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);padding:8px 8px 16px 8px;position:relative}.tox .tox-comment__header{align-items:center;color:#222f3e;display:flex;justify-content:space-between}.tox .tox-comment__date{color:rgba(34,47,62,.7);font-size:12px}.tox .tox-comment__body{color:#222f3e;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;margin-top:8px;position:relative;text-transform:initial}.tox .tox-comment__body textarea{resize:none;white-space:normal;width:100%}.tox .tox-comment__expander{padding-top:8px}.tox .tox-comment__expander p{color:rgba(34,47,62,.7);font-size:14px;font-style:normal}.tox .tox-comment__body p{margin:0}.tox .tox-comment__buttonspacing{padding-top:16px;text-align:center}.tox .tox-comment__buttonspacing>:last-child{margin-left:8px}.tox .tox-comment-thread__overlay::after{background:#fff;bottom:0;content:"";display:flex;left:0;opacity:.9;position:absolute;right:0;top:0;z-index:5}.tox .tox-comment__reply{display:flex;flex-shrink:0;flex-wrap:wrap;justify-content:flex-end;margin-top:8px}.tox .tox-comment__reply>:first-child{margin-bottom:8px;width:100%}.tox .tox-comment__edit{display:flex;flex-wrap:wrap;justify-content:flex-end;margin-left:8px;margin-top:16px}.tox .tox-comment__edit>:last-child{margin-left:8px}.tox .tox-comment__gradient::after{background:linear-gradient(rgba(255,255,255,0),#fff);bottom:0;content:"";display:block;height:5em;margin-top:-40px;position:absolute;width:100%}.tox .tox-comment__overlay{background:#fff;bottom:0;display:flex;flex-direction:column;flex-grow:1;left:0;opacity:.9;position:absolute;right:0;text-align:center;top:0;z-index:5}.tox .tox-comment__loading-text{align-items:center;color:#222f3e;display:flex;flex-direction:column;position:relative}.tox .tox-comment__loading-text>div{padding-bottom:16px}.tox .tox-comment__overlaytext{bottom:0;flex-direction:column;font-size:14px;left:0;padding:1em;position:absolute;right:0;top:0;z-index:10}.tox .tox-comment__overlaytext p{background-color:#fff;box-shadow:0 0 8px 8px #fff;color:#222f3e;text-align:center}.tox .tox-comment__overlaytext div:nth-of-type(2){font-size:.8em}.tox .tox-comment__busy-spinner{align-items:center;background-color:#fff;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:1103}.tox .tox-comment__scroll{display:flex;flex-direction:column;flex-shrink:1;overflow:auto}.tox .tox-conversations{margin:8px}.tox:not([dir=rtl]) .tox-comment__reply>:last-child{margin-left:8px}.tox[dir=rtl] .tox-comment__reply>:last-child{margin-right:8px}.tox .tox-user{align-items:center;display:flex}.tox .tox-user__avatar svg{fill:rgba(34,47,62,.7)}.tox .tox-user__name{color:rgba(34,47,62,.7);font-size:12px;font-style:normal;font-weight:700;text-transform:uppercase}.tox:not([dir=rtl]) .tox-user__avatar svg{margin-right:8px}.tox:not([dir=rtl]) .tox-user__avatar+.tox-user__name{margin-left:8px}.tox[dir=rtl] .tox-user__avatar svg{margin-left:8px}.tox[dir=rtl] .tox-user__avatar+.tox-user__name{margin-right:8px}.tox .tox-dialog-wrap{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:fixed;right:0;top:0;z-index:1100}.tox .tox-dialog-wrap__backdrop{background-color:rgba(255,255,255,.75);bottom:0;left:0;position:absolute;right:0;top:0;z-index:1101}.tox .tox-dialog{background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:0 16px 16px -10px rgba(34,47,62,.15),0 0 40px 1px rgba(34,47,62,.15);display:flex;flex-direction:column;max-height:100%;max-width:480px;overflow:hidden;position:relative;width:95vw;z-index:1102}.tox .tox-dialog__header{align-items:center;background-color:#fff;border-bottom:none;color:#222f3e;display:flex;font-size:16px;justify-content:space-between;margin-bottom:16px;padding:8px 16px 0 16px;position:relative}.tox .tox-dialog__header .tox-button{z-index:1}.tox .tox-dialog__draghandle{cursor:grab;height:100%;left:0;position:absolute;top:0;width:100%}.tox .tox-dialog__draghandle:active{cursor:grabbing}.tox .tox-dialog__dismiss{margin-left:auto}.tox .tox-dialog__title{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:20px;font-style:normal;font-weight:400;line-height:1.3;margin:0;text-transform:normal}.tox .tox-dialog__body{color:#222f3e;display:flex;flex:1;-ms-flex-preferred-size:auto;font-size:16px;font-style:normal;font-weight:400;line-height:1.3;min-width:0;padding:0 16px;text-align:left;text-transform:normal}.tox .tox-dialog__body-nav{align-items:flex-start;display:flex;flex-direction:column}.tox .tox-dialog__body-nav-item{border-bottom:2px solid transparent;color:rgba(34,47,62,.7);display:inline-block;font-size:14px;line-height:1.3;margin-bottom:8px;text-decoration:none}.tox .tox-dialog__body-nav-item--active{border-bottom:2px solid #207ab7;color:#207ab7}.tox .tox-dialog__body-content{display:flex;flex:1;flex-direction:column;-ms-flex-preferred-size:auto;max-height:650px;overflow:auto}.tox .tox-dialog__body-content>*{margin-bottom:0;margin-top:16px}.tox .tox-dialog__body-content>:first-child{margin-top:0}.tox .tox-dialog__body-content>:last-child{margin-bottom:0}.tox .tox-dialog__body-content>:only-child{margin-bottom:0;margin-top:0}.tox .tox-dialog--width-lg{height:650px;max-width:1200px}.tox .tox-dialog--width-md{max-width:800px}.tox .tox-dialog--width-md .tox-dialog__body-content{overflow:auto}.tox .tox-dialog__body-content--centered{text-align:center}.tox .tox-dialog__body-content--spacious{margin-bottom:16px}.tox .tox-dialog__footer{align-items:center;background-color:#fff;border-top:1px solid #ccc;display:flex;justify-content:space-between;margin-top:16px;padding:8px 16px}.tox .tox-dialog__busy-spinner{align-items:center;background-color:rgba(255,255,255,.75);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:1103}.tox .tox-dialog__table{border-collapse:collapse;width:100%}.tox .tox-dialog__table thead th{font-weight:700;padding-bottom:8px}.tox .tox-dialog__table tbody tr{border-bottom:1px solid #ccc}.tox .tox-dialog__table tbody tr:last-child{border-bottom:none}.tox .tox-dialog__table td{padding-bottom:8px;padding-top:8px}.tox .tox-dialog__popups{position:absolute;width:100%;z-index:1100}.tox .tox-dialog__body-iframe{display:flex;flex:1;flex-direction:column;-ms-flex-preferred-size:auto}.tox .tox-dialog__body-iframe .tox-navobj{display:flex;flex:1;-ms-flex-preferred-size:auto}.tox .tox-dialog__body-iframe .tox-navobj :nth-child(2){flex:1;-ms-flex-preferred-size:auto;height:100%}body.tox-dialog__disable-scroll{overflow:hidden}.tox:not([dir=rtl]) .tox-dialog__body-nav{margin-right:32px}.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end>*,.tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start>*{margin-left:8px}.tox[dir=rtl] .tox-dialog__body{text-align:right}.tox[dir=rtl] .tox-dialog__body-nav{margin-left:32px}.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end>*,.tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start>*{margin-right:8px}.tox .tox-dropzone-container{display:flex;flex:1;-ms-flex-preferred-size:auto}.tox .tox-dropzone{align-items:center;background:#fff;border:2px dashed #ccc;box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;min-height:100px;padding:10px}.tox .tox-dropzone p{color:rgba(34,47,62,.7);margin:0 0 16px 0}.tox .tox-edit-area{border-top:1px solid #ccc;display:flex;flex:1;-ms-flex-preferred-size:auto;overflow:hidden;position:relative}.tox .tox-edit-area__iframe{background-color:#fff;border:0;box-sizing:border-box;flex:1;-ms-flex-preferred-size:auto;height:100%;position:absolute;width:100%}.tox.tox-inline-edit-area{border:1px dotted #ccc}.tox .tox-control-wrap{flex:1;position:relative}.tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,.tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,.tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid{display:none}.tox .tox-control-wrap svg{display:block}.tox .tox-control-wrap__status-icon-wrap{position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-control-wrap__status-icon-invalid svg{fill:#c00}.tox .tox-control-wrap__status-icon-unknown svg{fill:orange}.tox .tox-control-wrap__status-icon-valid svg{fill:green}.tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,.tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield{padding-right:32px}.tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap{right:4px}.tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,.tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield{padding-left:32px}.tox[dir=rtl] .tox-control-wrap__status-icon-wrap{left:4px}.tox .tox-autocompleter{max-width:25em}.tox .tox-autocompleter .tox-menu{max-width:25em}.tox .tox-color-input{display:flex}.tox .tox-color-input .tox-textfield{border-radius:3px 0 0 3px;display:flex}.tox .tox-color-input span{border-color:rgba(34,47,62,.2);border-radius:0 3px 3px 0;border-style:solid;border-width:1px 1px 1px 0;box-shadow:none;box-sizing:border-box;cursor:pointer;display:flex;width:35px}.tox .tox-color-input span:focus{border-color:#207ab7}.tox[dir=rtl] .tox-color-input .tox-textfield{border-radius:0 3px 3px 0}.tox[dir=rtl] .tox-color-input span{border-radius:3px 0 0 3px;border-width:1px 0 1px 1px}.tox .tox-label,.tox .tox-toolbar-label{color:rgba(34,47,62,.7);display:block;font-size:14px;font-style:normal;font-weight:400;line-height:1.3;padding:0 8px 0 0;text-transform:normal;white-space:nowrap}.tox .tox-toolbar-label{padding:0 8px}.tox[dir=rtl] .tox-label{padding:0 0 0 8px}.tox .tox-form{display:flex;flex:1;flex-direction:column;-ms-flex-preferred-size:auto}.tox .tox-form__group{box-sizing:border-box;margin-bottom:4px}.tox .tox-form__group--error{color:#c00}.tox .tox-form__group--collection{display:flex}.tox .tox-form__grid{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.tox .tox-form__grid--2col>.tox-form__group{width:calc(50% - (8px / 2))}.tox .tox-form__grid--3col>.tox-form__group{width:calc(100% / 3 - (8px / 2))}.tox .tox-form__grid--4col>.tox-form__group{width:calc(25% - (8px / 2))}.tox .tox-form__controls-h-stack{align-items:center;display:flex}.tox .tox-form__group--inline{align-items:center;display:flex}.tox .tox-form__group--stretched{display:flex;flex:1;flex-direction:column;-ms-flex-preferred-size:auto}.tox .tox-form__group--stretched .tox-textarea{flex:1;-ms-flex-preferred-size:auto}.tox .tox-form__group--stretched .tox-navobj{display:flex;flex:1;-ms-flex-preferred-size:auto}.tox .tox-form__group--stretched .tox-navobj :nth-child(2){flex:1;-ms-flex-preferred-size:auto;height:100%}.tox:not([dir=rtl]) .tox-form__controls-h-stack>:not(:first-child){margin-left:4px}.tox[dir=rtl] .tox-form__controls-h-stack>:not(:first-child){margin-right:4px}.tox .tox-lock.tox-locked .tox-lock-icon__unlock,.tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock{display:none}.tox .tox-selectfield{cursor:pointer;position:relative}.tox .tox-selectfield select{padding-right:24px}.tox .tox-selectfield select::-ms-expand{display:none}.tox .tox-selectfield svg{pointer-events:none;position:absolute;top:50%;transform:translateY(-50%)}.tox:not([dir=rtl]) .tox-selectfield svg{right:8px}.tox[dir=rtl] .tox-selectfield svg{left:8px}.tox .tox-selectfield select,.tox .tox-textarea,.tox .tox-textfield,.tox .tox-toolbar-textfield{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#ccc;border-radius:3px;border-style:solid;border-width:1px;box-shadow:none;box-sizing:border-box;color:#222f3e;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:24px;margin:0;outline:0;padding:5px 4.75px;resize:none;width:100%}.tox .tox-selectfield select:focus,.tox .tox-textarea:focus,.tox .tox-textfield:focus{border-color:#207ab7;box-shadow:none;outline:0}.tox .tox-toolbar-textfield{border-width:0;margin-bottom:3px;margin-top:2px;max-width:250px}.tox .tox-toolbar-textfield+*{margin-left:4px}.tox .tox-naked-btn{background-color:transparent;border:0;border-color:transparent;box-shadow:unset;color:#207ab7;cursor:pointer;display:block;margin:0;padding:0}.tox .tox-naked-btn svg{display:block;fill:#222f3e}.tox .tox-textarea{-webkit-appearance:textarea;-moz-appearance:textarea;appearance:textarea;white-space:pre-wrap}.tox-fullscreen{border:0;height:100%;left:0;margin:0;overflow:hidden;padding:0;position:fixed;top:0;width:100%}.tox-fullscreen .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle{display:none}.tox-fullscreen .tox.tox-tinymce.tox-fullscreen{z-index:1200}.tox-fullscreen .tox.tox-tinymce-aux{z-index:1201}.tox .tox-image-tools{width:100%}.tox .tox-image-tools__toolbar{align-items:center;display:flex;justify-content:center}.tox .tox-image-tools__image{background-color:#666;height:380px;overflow:auto;position:relative;width:100%}.tox .tox-image-tools__image,.tox .tox-image-tools__image+.tox-image-tools__toolbar{margin-top:8px}.tox .tox-image-tools__image-bg{background:url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==)}.tox .tox-image-tools__toolbar>.tox-spacer{flex:1;-ms-flex-preferred-size:auto}.tox .tox-croprect-block{background:#000;opacity:.5;position:absolute;zoom:1}.tox .tox-croprect-handle{border:2px solid #fff;height:20px;left:0;position:absolute;top:0;width:20px}.tox .tox-croprect-handle-move{border:0;cursor:move;position:absolute}.tox .tox-croprect-handle-nw{border-width:2px 0 0 2px;cursor:nw-resize;left:100px;margin:-2px 0 0 -2px;top:100px}.tox .tox-croprect-handle-ne{border-width:2px 2px 0 0;cursor:ne-resize;left:200px;margin:-2px 0 0 -20px;top:100px}.tox .tox-croprect-handle-sw{border-width:0 0 2px 2px;cursor:sw-resize;left:100px;margin:-20px 2px 0 -2px;top:200px}.tox .tox-croprect-handle-se{border-width:0 2px 2px 0;cursor:se-resize;left:200px;margin:-20px 0 0 -20px;top:200px}.tox:not([dir=rtl]) .tox-image-tools__toolbar>.tox-slider:not(:first-of-type){margin-left:8px}.tox:not([dir=rtl]) .tox-image-tools__toolbar>.tox-button+.tox-slider{margin-left:32px}.tox:not([dir=rtl]) .tox-image-tools__toolbar>.tox-slider+.tox-button{margin-left:32px}.tox[dir=rtl] .tox-image-tools__toolbar>.tox-slider:not(:first-of-type){margin-right:8px}.tox[dir=rtl] .tox-image-tools__toolbar>.tox-button+.tox-slider{margin-right:32px}.tox[dir=rtl] .tox-image-tools__toolbar>.tox-slider+.tox-button{margin-right:32px}.tox .tox-insert-table-picker{display:flex;flex-wrap:wrap;width:169px}.tox .tox-insert-table-picker>div{border-color:#ccc;border-style:solid;border-width:0 1px 1px 0;box-sizing:content-box;height:16px;width:16px}.tox .tox-collection--list .tox-collection__group .tox-insert-table-picker{margin:-4px 0}.tox .tox-insert-table-picker .tox-insert-table-picker__selected{background-color:rgba(32,122,183,.5);border-color:rgba(32,122,183,.5)}.tox .tox-insert-table-picker__label{color:rgba(34,47,62,.7);display:block;font-size:14px;padding:4px;text-align:center;width:100%}.tox:not([dir=rtl]) .tox-insert-table-picker>div:nth-child(10n){border-right:0}.tox[dir=rtl] .tox-insert-table-picker>div:nth-child(10n+1){border-right:0}.tox .tox-menu{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 4px 8px 0 rgba(34,47,62,.1);display:inline-block;overflow:hidden;vertical-align:top;z-index:1}.tox .tox-menu.tox-collection.tox-collection--list{padding:0}.tox .tox-menu.tox-collection.tox-collection--toolbar{padding:4px}.tox .tox-menu.tox-collection.tox-collection--grid{padding:4px}.tox .tox-menu__label blockquote,.tox .tox-menu__label code,.tox .tox-menu__label h1,.tox .tox-menu__label h2,.tox .tox-menu__label h3,.tox .tox-menu__label h4,.tox .tox-menu__label h5,.tox .tox-menu__label h6,.tox .tox-menu__label p{margin:0}.tox .tox-menubar{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='43px' viewBox='0 0 40 43px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='42px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;background-color:#fff;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;margin-bottom:-1px;padding:0 4px}.tox .tox-mbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px 0;outline:0;overflow:hidden;padding:0 4px;text-transform:normal;width:auto}.tox .tox-mbtn[disabled]{background-color:none;border-color:none;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-mbtn:hover:not(:disabled){background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-mbtn:focus:not(:disabled){background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-mbtn--active{background:#c8cbcf;box-shadow:none;color:#222f3e}.tox .tox-mbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-mbtn[disabled] .tox-mbtn__select-label{cursor:not-allowed}.tox .tox-mbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px;display:none}.tox .tox-notification{background-color:#fffaea;border-color:#ffe89d;border-style:solid;border-width:1px;box-sizing:border-box;display:grid;grid-template-columns:minmax(40px,1fr) auto minmax(40px,1fr);margin-top:5px;opacity:0;padding:5px;transition:transform .1s ease-in,opacity 150ms ease-in}.tox .tox-notification--in{opacity:1}.tox .tox-notification--success{background-color:#dff0d8;border-color:#d6e9c6}.tox .tox-notification--error{background-color:#f2dede;border-color:#ebccd1}.tox .tox-notification--warn{background-color:#fcf8e3;border-color:#faebcc}.tox .tox-notification--info{background-color:#d9edf7;border-color:#779ecb}.tox .tox-notification__body{align-self:center;color:#222f3e;font-size:14px;grid-column-end:3;-ms-grid-column-span:1;grid-column-start:2;grid-row-end:2;grid-row-start:1;text-align:center;white-space:normal;word-break:break-all;word-break:break-word}.tox .tox-notification__body>*{margin:0}.tox .tox-notification__body>*+*{margin-top:1rem}.tox .tox-notification__icon{align-self:center;-ms-grid-column-align:end;grid-column-end:2;-ms-grid-column-span:1;grid-column-start:1;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification__icon svg{display:block}.tox .tox-notification__dismiss{align-self:start;-ms-grid-column-align:end;grid-column-end:4;-ms-grid-column-span:1;grid-column-start:3;grid-row-end:2;grid-row-start:1;justify-self:end}.tox .tox-notification .tox-progress-bar{-ms-grid-column-align:center;grid-column-end:4;-ms-grid-column-span:3;grid-column-start:1;grid-row-end:3;-ms-grid-row-span:1;grid-row-start:2;justify-self:center}.tox .tox-pop{display:inline-block;position:relative}.tox .tox-pop--resizing{transition:width .1s ease}.tox .tox-pop--resizing .tox-toolbar{flex-wrap:nowrap}.tox .tox-pop__dialog{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.15);min-width:0;overflow:hidden}.tox .tox-pop__dialog>:not(.tox-toolbar){margin:4px 4px 4px 8px}.tox .tox-pop__dialog .tox-toolbar{background-color:transparent}.tox .tox-pop::after,.tox .tox-pop::before{border-style:solid;content:'';display:block;height:0;position:absolute;width:0}.tox .tox-pop.tox-pop--bottom::after,.tox .tox-pop.tox-pop--bottom::before{left:50%;top:100%}.tox .tox-pop.tox-pop--bottom::after{border-color:#fff transparent transparent transparent;border-width:8px;margin-left:-8px;margin-top:-1px}.tox .tox-pop.tox-pop--bottom::before{border-color:#ccc transparent transparent transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--top::after,.tox .tox-pop.tox-pop--top::before{left:50%;top:0;transform:translateY(-100%)}.tox .tox-pop.tox-pop--top::after{border-color:transparent transparent #fff transparent;border-width:8px;margin-left:-8px;margin-top:1px}.tox .tox-pop.tox-pop--top::before{border-color:transparent transparent #ccc transparent;border-width:9px;margin-left:-9px}.tox .tox-pop.tox-pop--left::after,.tox .tox-pop.tox-pop--left::before{left:0;top:calc(50% - 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--left::after{border-color:transparent #fff transparent transparent;border-width:8px;margin-left:-15px}.tox .tox-pop.tox-pop--left::before{border-color:transparent #ccc transparent transparent;border-width:10px;margin-left:-19px}.tox .tox-pop.tox-pop--right::after,.tox .tox-pop.tox-pop--right::before{left:100%;top:calc(50% + 1px);transform:translateY(-50%)}.tox .tox-pop.tox-pop--right::after{border-color:transparent transparent transparent #fff;border-width:8px;margin-left:-1px}.tox .tox-pop.tox-pop--right::before{border-color:transparent transparent transparent #ccc;border-width:10px;margin-left:-1px}.tox .tox-pop.tox-pop--align-left::after,.tox .tox-pop.tox-pop--align-left::before{left:20px}.tox .tox-pop.tox-pop--align-right::after,.tox .tox-pop.tox-pop--align-right::before{left:calc(100% - 20px)}.tox .tox-sidebar-wrap{display:flex;flex-direction:row;flex-grow:1;min-height:0}.tox .tox-sidebar{display:flex;flex-direction:row;justify-content:flex-end}.tox .tox-sidebar__slider{display:flex;overflow:hidden}.tox .tox-sidebar__pane-container{display:flex}.tox .tox-sidebar__pane{display:flex}.tox .tox-sidebar--sliding-closed{opacity:0}.tox .tox-sidebar--sliding-open{opacity:1}.tox .tox-sidebar--sliding-growing,.tox .tox-sidebar--sliding-shrinking{transition:width .5s ease,opacity .5s ease}.tox .tox-slider{align-items:center;display:flex;flex:1;-ms-flex-preferred-size:auto;height:24px;justify-content:center;position:relative}.tox .tox-slider__rail{background-color:transparent;border:1px solid #ccc;border-radius:3px;height:10px;min-width:120px;width:100%}.tox .tox-slider__handle{background-color:#207ab7;border:2px solid #185d8c;border-radius:3px;box-shadow:none;height:24px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:14px}.tox .tox-source-code{overflow:auto}.tox .tox-spinner{display:flex}.tox .tox-spinner>div{animation:tam-bouncing-dots 1.5s ease-in-out 0s infinite both;background-color:rgba(34,47,62,.7);border-radius:100%;height:8px;width:8px}.tox .tox-spinner>div:nth-child(1){animation-delay:-.32s}.tox .tox-spinner>div:nth-child(2){animation-delay:-.16s}.tox .tox-spinner>div:not(:first-child){margin-left:4px}@keyframes tam-bouncing-dots{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.tox .tox-statusbar{align-items:center;background-color:#fff;border-top:1px solid #ccc;color:rgba(34,47,62,.7);display:flex;flex:0 0 auto;font-size:12px;height:18px;overflow:hidden;padding:0 8px;position:relative;text-transform:uppercase}.tox .tox-statusbar a{color:rgba(34,47,62,.7);text-decoration:none}.tox .tox-statusbar a:hover{text-decoration:underline}.tox .tox-statusbar__text-container{display:flex;flex:1 1 auto;justify-content:flex-end;overflow:hidden}.tox .tox-statusbar__path{display:flex;flex:1 1 auto;margin-right:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.tox .tox-statusbar__path>*{display:inline;margin-right:4px;white-space:nowrap}.tox .tox-statusbar__wordcount{flex:0 0 auto;margin-left:1ch}.tox .tox-statusbar__resize-handle{align-items:flex-end;align-self:stretch;cursor:nwse-resize;display:flex;flex:0 0 auto;justify-content:flex-end;margin-left:auto;margin-right:-8px;padding-left:1ch}.tox .tox-statusbar__resize-handle svg{display:block;fill:rgba(34,47,62,.7)}.tox:not([dir=rtl]) .tox-statusbar__branding{margin-left:1ch}.tox[dir=rtl] .tox-statusbar{flex-direction:row-reverse}.tox .tox-throbber{z-index:1400}.tox .tox-throbber__busy-spinner{align-items:center;background-color:rgba(255,255,255,.6);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0}.tox .tox-tbtn{align-items:center;background:0 0;border:0;border-radius:3px;box-shadow:none;color:#222f3e;display:flex;flex:0 0 auto;font-size:14px;font-style:normal;font-weight:400;height:34px;justify-content:center;margin:2px 0 3px 0;outline:0;overflow:hidden;padding:0;text-transform:normal;width:34px}.tox .tox-tbtn svg{display:block;fill:#222f3e}.tox .tox-tbtn.tox-tbtn-more{padding-left:5px;padding-right:5px;width:inherit}.tox .tox-tbtn+.tox-tbtn{margin-left:0}.tox .tox-tbtn--enabled{background:#c8cbcf;box-shadow:none;color:#222f3e}.tox .tox-tbtn--enabled>*{transform:none}.tox .tox-tbtn--enabled svg{fill:#222f3e}.tox .tox-tbtn:hover{background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-tbtn:hover svg{fill:#222f3e}.tox .tox-tbtn:focus{background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-tbtn:focus svg{fill:#222f3e}.tox .tox-tbtn:active{background:#c8cbcf;box-shadow:none;color:#222f3e}.tox .tox-tbtn:active svg{fill:#222f3e}.tox .tox-tbtn--disabled,.tox .tox-tbtn--disabled:hover,.tox .tox-tbtn:disabled,.tox .tox-tbtn:disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5);cursor:not-allowed}.tox .tox-tbtn--disabled svg,.tox .tox-tbtn--disabled:hover svg,.tox .tox-tbtn:disabled svg,.tox .tox-tbtn:disabled:hover svg{fill:rgba(34,47,62,.5)}.tox .tox-tbtn:active>*{transform:none}.tox .tox-tbtn--md{height:51px;width:51px}.tox .tox-tbtn--lg{flex-direction:column;height:68px;width:68px}.tox .tox-tbtn--return{align-self:stretch;height:unset;width:16px}.tox .tox-tbtn--labeled{padding:0 4px;width:unset}.tox .tox-tbtn__vlabel{display:block;font-size:10px;font-weight:400;letter-spacing:-.025em;margin-bottom:4px;white-space:nowrap}.tox .tox-tbtn--select{margin:2px 0 3px 0;padding:0 4px;width:auto}.tox .tox-tbtn__select-label{cursor:default;font-weight:400;margin:0 4px}.tox .tox-tbtn__select-chevron{align-items:center;display:flex;justify-content:center;width:16px}.tox .tox-tbtn__select-chevron svg{fill:rgba(34,47,62,.7)}.tox .tox-tbtn--bespoke .tox-tbtn__select-label{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:7em}.tox .tox-split-button{border:0;border-radius:3px;box-sizing:border-box;display:flex;margin:2px 0 3px 0;overflow:hidden}.tox .tox-split-button:hover{box-shadow:0 0 0 1px #dee0e2 inset}.tox .tox-split-button:focus{background:#dee0e2;box-shadow:none;color:#222f3e}.tox .tox-split-button>*{border-radius:0}.tox .tox-split-button__chevron{width:16px}.tox .tox-split-button__chevron svg{fill:rgba(34,47,62,.7)}.tox .tox-pop .tox-split-button__chevron svg{transform:rotate(-90deg)}.tox .tox-split-button .tox-tbtn{margin:0}.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,.tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,.tox .tox-split-button.tox-tbtn--disabled:focus,.tox .tox-split-button.tox-tbtn--disabled:hover{background:0 0;box-shadow:none;color:rgba(34,47,62,.5)}.tox .tox-toolbar,.tox .tox-toolbar__overflow,.tox .tox-toolbar__primary{background:url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;background-color:#fff;border-top:1px solid #ccc;display:flex;flex:0 0 auto;flex-shrink:0;flex-wrap:wrap;margin-bottom:-1px;padding:0 0}.tox .tox-toolbar__overflow.tox-toolbar__overflow--closed{display:none}.tox .tox-pop .tox-toolbar{border-width:0}.tox .tox-toolbar--no-divider{background-image:none}.tox.tox-tinymce-aux .tox-toolbar__overflow{background-color:#fff;border:1px solid #ccc;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.15);margin-left:4px}.tox[dir=rtl] .tox-tbtn__icon-rtl .tox-tbtn__icon-wrap svg{transform:rotateY(180deg)}.tox .tox-toolbar__group{align-items:center;display:flex;flex-wrap:wrap;margin:0 0;padding:0 4px}.tox .tox-toolbar__group:not(:last-of-type){border-right:1px solid #ccc}.tox .tox-toolbar__group--pull-right{margin-left:auto}.tox .tox-tooltip{display:inline-block;padding:8px;position:relative}.tox .tox-tooltip__body{background-color:#222f3e;border-radius:3px;box-shadow:0 2px 4px rgba(34,47,62,.3);color:rgba(255,255,255,.75);font-size:14px;font-style:normal;font-weight:400;padding:4px 8px;text-transform:normal}.tox .tox-tooltip__arrow{position:absolute}.tox .tox-tooltip--down .tox-tooltip__arrow{border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #222f3e;bottom:0;left:50%;position:absolute;transform:translateX(-50%)}.tox .tox-tooltip--up .tox-tooltip__arrow{border-bottom:8px solid #222f3e;border-left:8px solid transparent;border-right:8px solid transparent;left:50%;position:absolute;top:0;transform:translateX(-50%)}.tox .tox-tooltip--right .tox-tooltip__arrow{border-bottom:8px solid transparent;border-left:8px solid #222f3e;border-top:8px solid transparent;position:absolute;right:0;top:50%;transform:translateY(-50%)}.tox .tox-tooltip--left .tox-tooltip__arrow{border-bottom:8px solid transparent;border-right:8px solid #222f3e;border-top:8px solid transparent;left:0;position:absolute;top:50%;transform:translateY(-50%)}.tox .tox-well{border:1px solid #ccc;border-radius:3px;padding:8px;width:100%}.tox .tox-well>:first-child{margin-top:0}.tox .tox-well>:last-child{margin-bottom:0}.tox .tox-well>:only-child{margin:0}.tox .tox-custom-editor{border:1px solid #ccc;border-radius:3px;display:flex;height:525px}.tox .tox-dialog-loading::before{background-color:rgba(0,0,0,.5);content:"";height:100%;position:absolute;width:100%;z-index:1000}.tox .tox-tab{cursor:pointer}.tox .tox-dialog__content-js{display:flex;flex:1;-ms-flex-preferred-size:auto}.tox .tox-dialog__body-content .tox-collection{display:flex;flex:1;-ms-flex-preferred-size:auto}.tox ul{display:block;list-style-type:disc;-webkit-margin-before:1em;margin-block-start:1em;-webkit-margin-after:1em;margin-block-end:1em;-webkit-margin-start:0;margin-inline-start:0;-webkit-margin-end:0;margin-inline-end:0;-webkit-padding-start:40px;padding-inline-start:40px}.tox a{cursor:pointer;color:#2276d2}.tox .tox-image-tools-edit-panel{height:60px}.tox .tox-image-tools__sidebar{height:60px} +/*# sourceMappingURL=skin.min.css.map */ diff --git a/public/tinymce/skins/skin.mobile.min.css b/public/tinymce/skins/skin.mobile.min.css new file mode 100644 index 0000000000..faff20cde4 --- /dev/null +++ b/public/tinymce/skins/skin.mobile.min.css @@ -0,0 +1,2 @@ +.tinymce-mobile-outer-container{all:initial;display:block}.tinymce-mobile-outer-container *{-webkit-box-sizing:initial;box-sizing:initial;line-height:1;margin:0;padding:0;border:0;outline:0;text-shadow:none;float:none;white-space:nowrap;cursor:inherit;-webkit-tap-highlight-color:transparent}.tinymce-mobile-icon-arrow-back:before{content:"\e5cd"}.tinymce-mobile-icon-image:before{content:"\e412"}.tinymce-mobile-icon-cancel-circle:before{content:"\e5c9"}.tinymce-mobile-icon-full-dot:before{content:"\e061"}.tinymce-mobile-icon-align-center:before{content:"\e234"}.tinymce-mobile-icon-align-left:before{content:"\e236"}.tinymce-mobile-icon-align-right:before{content:"\e237"}.tinymce-mobile-icon-bold:before{content:"\e238"}.tinymce-mobile-icon-italic:before{content:"\e23f"}.tinymce-mobile-icon-unordered-list:before{content:"\e241"}.tinymce-mobile-icon-ordered-list:before{content:"\e242"}.tinymce-mobile-icon-font-size:before{content:"\e245"}.tinymce-mobile-icon-underline:before{content:"\e249"}.tinymce-mobile-icon-link:before{content:"\e157"}.tinymce-mobile-icon-unlink:before{content:"\eca2"}.tinymce-mobile-icon-color:before{content:"\e891"}.tinymce-mobile-icon-previous:before{content:"\e314"}.tinymce-mobile-icon-next:before{content:"\e315"}.tinymce-mobile-icon-large-font:before,.tinymce-mobile-icon-style-formats:before{content:"\e264"}.tinymce-mobile-icon-undo:before{content:"\e166"}.tinymce-mobile-icon-redo:before{content:"\e15a"}.tinymce-mobile-icon-removeformat:before{content:"\e239"}.tinymce-mobile-icon-small-font:before{content:"\e906"}.tinymce-mobile-icon-readonly-back:before,.tinymce-mobile-format-matches:after{content:"\e5ca"}.tinymce-mobile-icon-small-heading:before{content:"small"}.tinymce-mobile-icon-large-heading:before{content:"large"}.tinymce-mobile-icon-small-heading:before,.tinymce-mobile-icon-large-heading:before{font-family:sans-serif;font-size:80%}.tinymce-mobile-mask-edit-icon:before{content:"\e254"}.tinymce-mobile-icon-back:before{content:"\e5c4"}.tinymce-mobile-icon-heading:before{content:"Headings";font-family:sans-serif;font-weight:bold;font-size:80%}.tinymce-mobile-icon-h1:before{content:"H1";font-weight:bold}.tinymce-mobile-icon-h2:before{content:"H2";font-weight:bold}.tinymce-mobile-icon-h3:before{content:"H3";font-weight:bold}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;position:absolute;width:100%;height:100%;top:0px;background:rgba(51,51,51,0.5)}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-border-radius:50%;border-radius:50%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;font-family:sans-serif;font-size:1em}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .mixin-menu-item{-webkit-border-radius:50%;border-radius:50%;width:2.1em;height:2.1em;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section{font-size:1em;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (min-device-width:700px){.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section{font-size:1.2em}}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section .tinymce-mobile-mask-tap-icon{-webkit-border-radius:50%;border-radius:50%;width:2.1em;height:2.1em;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;color:#1976D2;background-color:white}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section .tinymce-mobile-mask-tap-icon:before{font-family:'tinymce-mobile';content:"\e900"}.tinymce-mobile-outer-container .tinymce-mobile-disabled-mask .tinymce-mobile-content-container .tinymce-mobile-content-tap-section:not(.tinymce-mobile-mask-tap-icon-selected) .tinymce-mobile-mask-tap-icon{z-index:2}.tinymce-mobile-android-container.tinymce-mobile-android-maximized{position:fixed;top:0;bottom:0;left:0;right:0;border:none;background:#fff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.tinymce-mobile-android-container:not(.tinymce-mobile-android-maximized){position:relative}.tinymce-mobile-android-container .tinymce-mobile-editor-socket{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tinymce-mobile-android-container .tinymce-mobile-editor-socket iframe{display:-webkit-box !important;display:-webkit-flex !important;display:-ms-flexbox !important;display:flex !important;height:auto !important;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tinymce-mobile-android-scroll-reload{overflow:hidden}:not(.tinymce-mobile-readonly-mode)>.tinymce-mobile-android-selection-context-toolbar{margin-top:23px}.tinymce-mobile-toolstrip{background:#fff;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;z-index:1;-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:100%;height:2.5em;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;background-color:#fff;border-bottom:1px solid #ccc}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group:first-of-type,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group:last-of-type{background:#1976D2;color:#eceff1}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-flex-shrink:1;-ms-flex-negative:1;flex-shrink:1}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group>div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group.tinymce-mobile-exit-container{background:#f44336}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group.tinymce-mobile-toolbar-scrollable-group{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item{padding-left:.5em;padding-right:.5em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item.tinymce-mobile-toolbar-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;margin-left:2px;margin-right:2px;height:80%}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar:not(.tinymce-mobile-context-toolbar) .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item.tinymce-mobile-toolbar-button.tinymce-mobile-toolbar-button-selected{background:#c8cbcf;color:#ccc}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;padding-top:.4em;padding-bottom:.4em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden;position:relative;width:100%;min-height:1.5em;padding-left:0em;padding-right:0em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain{-webkit-transition:left cubic-bezier(.4, 0, 1, 1) .15s;transition:left cubic-bezier(.4, 0, 1, 1) .15s;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;height:100%}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen input{font-family:Sans-serif}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;position:relative}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container .tinymce-mobile-input-container-x{position:absolute;right:0px;color:#888;font-size:.6em;font-weight:bold;background:inherit;-webkit-border-radius:50%;border-radius:50%;border:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;height:100%;padding-right:2px}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-input-container.tinymce-mobile-input-container-empty .tinymce-mobile-input-container-x{display:none}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous:before,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next:before{padding-left:.5em;padding-right:.5em;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;font-weight:bold}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-previous.tinymce-mobile-toolbar-navigation-disabled:before,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serialised-dialog .tinymce-mobile-serialised-dialog-chain .tinymce-mobile-serialised-dialog-screen .tinymce-mobile-icon-next.tinymce-mobile-toolbar-navigation-disabled:before{visibility:hidden}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-item{margin:0 2px;font-size:10px;line-height:10px;padding-top:3px;color:#ccc}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-item.tinymce-mobile-dot-active{color:#c8cbcf}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;position:relative;padding:.28em 0;margin-left:10%;margin-right:10%}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-large-font:before,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-large-heading:before{margin-right:.9em;margin-left:.5em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-small-font:before,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-icon-small-heading:before{margin-left:.9em;margin-right:.5em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider{margin-left:0px;margin-right:0px}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-size-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-size-container .tinymce-mobile-slider-size-line{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;margin-top:.3em;margin-bottom:.3em;background:#ccc;height:.2em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container{padding-left:2em;padding-right:2em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-slider-gradient-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-slider-gradient-container .tinymce-mobile-slider-gradient{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;margin-top:.3em;margin-bottom:.3em;background:-webkit-gradient(linear, left top, right top, from(hsl(0,100%,50%)), color-stop(17%, hsl(60,100%,50%)), color-stop(33%, hsl(120,100%,50%)), color-stop(50%, hsl(180,100%,50%)), color-stop(67%, hsl(240,100%,50%)), color-stop(83%, hsl(300,100%,50%)), to(hsl(0,100%,50%)));background:linear-gradient(to right, hsl(0,100%,50%) 0%, hsl(60,100%,50%) 17%, hsl(120,100%,50%) 33%, hsl(180,100%,50%) 50%, hsl(240,100%,50%) 67%, hsl(300,100%,50%) 83%, hsl(0,100%,50%) 100%);height:.2em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-hue-slider-black{background:black;width:1.2em;height:.2em;margin-top:.3em;margin-bottom:.3em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider.tinymce-mobile-hue-slider-container .tinymce-mobile-hue-slider-white{background:white;width:1.2em;height:.2em;margin-top:.3em;margin-bottom:.3em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-thumb{position:absolute;height:.5em;width:.5em;left:-10px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:auto;top:0;bottom:0;-webkit-transition:border 120ms cubic-bezier(.39, .58, .57, 1);transition:border 120ms cubic-bezier(.39, .58, .57, 1);background-color:#455a64;background-clip:padding-box;color:#fff;border:.5em solid rgba(136,136,136,0);-webkit-border-radius:3em;border-radius:3em}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-slider .tinymce-mobile-slider-thumb.tinymce-mobile-thumb-active{border:.5em solid rgba(136,136,136,0.39)}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serializer-wrapper,.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group>div{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-serializer-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item:not(.tinymce-mobile-serialised-dialog){height:100%}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-toolbar-group-item{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group .tinymce-mobile-dot-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input{padding-top:.1em;padding-bottom:.1em;padding-left:5px;font-size:.85em;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;background:#fff;border:none;-webkit-border-radius:0px;border-radius:0px;color:#455a64}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::-webkit-input-placeholder{color:#888}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::-moz-placeholder{color:#888}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::-ms-input-placeholder{color:#888}.tinymce-mobile-toolstrip .tinymce-mobile-toolbar.tinymce-mobile-context-toolbar .tinymce-mobile-toolbar-group input::placeholder{color:#888}.tinymce-mobile-ios-container .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed){min-height:200px}@media only screen and (orientation: landscape){.tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed){min-height:200px}}@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape){.tinymce-mobile-ios-container .tinymce-mobile-dropup:not(.tinymce-mobile-dropup-closed){min-height:150px}}.tinymce-mobile-dropup{background:white;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;overflow:hidden}.tinymce-mobile-dropup.tinymce-mobile-dropup-shrinking{-webkit-transition:height .3s ease-out;transition:height .3s ease-out}.tinymce-mobile-dropup.tinymce-mobile-dropup-growing{-webkit-transition:height .3s ease-in;transition:height .3s ease-in}.tinymce-mobile-dropup.tinymce-mobile-dropup-closed{-webkit-box-flex:0;-webkit-flex-grow:0;-ms-flex-positive:0;flex-grow:0}.tinymce-mobile-dropup.tinymce-mobile-dropup-open:not(.tinymce-mobile-dropup-growing){-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1}.tinymce-mobile-styles-menu{overflow:hidden;outline:4px solid black;position:relative;width:100%;font-family:sans-serif}.tinymce-mobile-styles-menu [role="menu"]{height:100%;position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:100%}.tinymce-mobile-styles-menu [role="menu"].transitioning{-webkit-transition:-webkit-transform .5s ease-in-out;transition:-webkit-transform .5s ease-in-out;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out, -webkit-transform .5s ease-in-out}.tinymce-mobile-styles-menu .tinymce-mobile-styles-item{cursor:pointer;padding:1em 1em;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;border-bottom:1px solid #ddd;color:#455a64}.tinymce-mobile-styles-menu .tinymce-mobile-styles-collapser .tinymce-mobile-styles-collapse-icon:before{font-family:'tinymce-mobile';content:"\e314";color:#455a64}.tinymce-mobile-styles-menu .tinymce-mobile-styles-item.tinymce-mobile-styles-item-is-menu:after{font-family:'tinymce-mobile';content:"\e315";position:absolute;padding-left:1em;padding-right:1em;right:0px;color:#455a64}.tinymce-mobile-styles-menu .tinymce-mobile-styles-item.tinymce-mobile-format-matches:after{font-family:'tinymce-mobile';position:absolute;padding-left:1em;padding-right:1em;right:0px}.tinymce-mobile-styles-menu .tinymce-mobile-styles-separator,.tinymce-mobile-styles-menu .tinymce-mobile-styles-collapser{border-top:#455a64;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;min-height:2.5em;padding-left:1em;padding-right:1em;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;background:#fff;color:#455a64}.tinymce-mobile-styles-menu [data-transitioning-destination="before"][data-transitioning-state],.tinymce-mobile-styles-menu [data-transitioning-state="before"]{-webkit-transform:translate(-100%);transform:translate(-100%)}.tinymce-mobile-styles-menu [data-transitioning-destination="current"][data-transitioning-state],.tinymce-mobile-styles-menu [data-transitioning-state="current"]{-webkit-transform:translate(0%);transform:translate(0%)}.tinymce-mobile-styles-menu [data-transitioning-destination="after"][data-transitioning-state],.tinymce-mobile-styles-menu [data-transitioning-state="after"]{-webkit-transform:translate(100%);transform:translate(100%)}@font-face{font-family:'tinymce-mobile';src:url('fonts/tinymce-mobile.woff?8x92w3') format('woff');font-weight:normal;font-style:normal}@media (min-device-width:700px){.tinymce-mobile-outer-container,.tinymce-mobile-outer-container input{font-size:25px}}@media (max-device-width:700px){.tinymce-mobile-outer-container,.tinymce-mobile-outer-container input{font-size:18px}}.tinymce-mobile-icon{font-family:'tinymce-mobile'}.mixin-flex-and-centre{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.mixin-flex-bar{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:100%}.tinymce-mobile-outer-container .tinymce-mobile-editor-socket iframe{background-color:#FFF;width:100%}.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-editor-socket{overflow:hidden;height:300px}.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-editor-socket iframe{height:100%}.tinymce-mobile-outer-container:not(.tinymce-mobile-fullscreen-maximized) .tinymce-mobile-toolstrip{display:none}.tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon{position:fixed;right:2em;bottom:1em;color:white;background-color:#1976D2;-webkit-border-radius:50%;border-radius:50%;width:2.1em;height:2.1em;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;font-size:1em}@media only screen and (min-device-width:700px){.tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon{font-size:1.2em}}input[type="file"]::-webkit-file-upload-button{display:none}@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape){.tinymce-mobile-ios-container .tinymce-mobile-editor-socket .tinymce-mobile-mask-edit-icon{bottom:50%}} +/*# sourceMappingURL=js/tinymce/skins/ui/oxide/skin.mobile.min.css.map */ \ No newline at end of file diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000000..7729979900 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,19 @@ + + + diff --git a/src/api/roles.ts b/src/api/roles.ts new file mode 100644 index 0000000000..455625682e --- /dev/null +++ b/src/api/roles.ts @@ -0,0 +1,28 @@ +import request from '@/utils/request' + +export const getRoles = (params: any) => + request({ + url: '/roles', + method: 'get', + params + }) + +export const createRole = (data: any) => + request({ + url: '/roles', + method: 'post', + data + }) + +export const updateRole = (id: number, data: any) => + request({ + url: `/roles/${id}`, + method: 'put', + data + }) + +export const deleteRole = (id: number) => + request({ + url: `/roles/${id}`, + method: 'delete' + }) diff --git a/src/api/schema/consumers.ts b/src/api/schema/consumers.ts new file mode 100644 index 0000000000..3a0f4705c2 --- /dev/null +++ b/src/api/schema/consumers.ts @@ -0,0 +1,33 @@ +import request from '@/utils/request' + +import { IConsumerData } from '../types' + +export const defaultConsumerData: IConsumerData = { + username: '', + plugins: {} +} + +export const updateOrCreateConsumer = (data: IConsumerData) => + request({ + url: '/consumers', + method: 'PUT', + data + }) + +export const getList = () => + request({ + url: '/consumers', + method: 'GET' + }) + +export const get = (username: string) => + request({ + url: `/consumers/${username}`, + method: 'GET' + }) + +export const removeConsumer = (username: string) => + request({ + url: `/consumers/${username}`, + method: 'DELETE' + }) diff --git a/src/api/schema/plugins.ts b/src/api/schema/plugins.ts new file mode 100644 index 0000000000..0925cd7589 --- /dev/null +++ b/src/api/schema/plugins.ts @@ -0,0 +1,7 @@ +import request from '@/utils/request' + +export const getPluginList = () => + request({ + url: '/plugins/list', + method: 'get' + }) diff --git a/src/api/schema/routes.ts b/src/api/schema/routes.ts new file mode 100644 index 0000000000..5260069bb3 --- /dev/null +++ b/src/api/schema/routes.ts @@ -0,0 +1,34 @@ +import request from '@/utils/request' +import { IRouteData } from '../types' + +export const getList = () => + request({ + url: '/routes', + method: 'GET' + }) + +export const updateRouter = (id: string, data: any) => + request({ + url: `/routes/${id}`, + method: 'PUT', + data + }) + +export const getRouter = (id: string) => + request({ + url: `/routes/${id}`, + method: 'GET' + }) + +export const removeRouter = (id: string) => + request({ + url: `/routes/${id}`, + method: 'DELETE' + }) + +export const createRouter = (data: any) => + request({ + url: '/routes', + method: 'POST', + data + }) diff --git a/src/api/schema/schema.ts b/src/api/schema/schema.ts new file mode 100644 index 0000000000..15332bb50a --- /dev/null +++ b/src/api/schema/schema.ts @@ -0,0 +1,7 @@ +import request from '@/utils/request' + +export const getPluginSchema = (name: string) => + request({ + url: `/schema/plugins/${name}`, + method: 'get' + }) diff --git a/src/api/schema/services.ts b/src/api/schema/services.ts new file mode 100644 index 0000000000..d97d320be0 --- /dev/null +++ b/src/api/schema/services.ts @@ -0,0 +1,34 @@ +import request from '@/utils/request' +import { IServiceData } from '../types' + +export const getServiceList = () => + request({ + url: '/services', + method: 'get' + }) + +export const updateService = (id: string, data: any) => + request({ + url: `/services/${id}`, + method: 'PUT', + data + }) + +export const getService = (id: string) => + request({ + url: `/services/${id}`, + method: 'GET' + }) + +export const removeService = (id: string) => + request({ + url: `/services/${id}`, + method: 'DELETE' + }) + +export const createService = (data: any) => + request({ + url: '/services', + method: 'POST', + data + }) diff --git a/src/api/schema/ssl.ts b/src/api/schema/ssl.ts new file mode 100644 index 0000000000..ac433abbde --- /dev/null +++ b/src/api/schema/ssl.ts @@ -0,0 +1,35 @@ +import request from '@/utils/request' + +import { ISSLData } from '../types' + +export const getSSLList = () => + request({ + url: '/ssl', + method: 'GET' + }) + +export const updateSSL = (id: string, data: any) => + request({ + url: `/ssl/${id}`, + method: 'PUT', + data + }) + +export const getSSL = (id: string) => + request({ + url: `/ssl/${id}`, + method: 'GET' + }) + +export const removeSSL = (id: string) => + request({ + url: `/ssl/${id}`, + method: 'DELETE' + }) + +export const createSSL = (data: any) => + request({ + url: '/ssl', + method: 'POST', + data + }) diff --git a/src/api/schema/upstream.ts b/src/api/schema/upstream.ts new file mode 100644 index 0000000000..56cfc6f6ec --- /dev/null +++ b/src/api/schema/upstream.ts @@ -0,0 +1,33 @@ +import request from '@/utils/request' + +export const updateStream = (id: string, data: any) => + request({ + url: `/upstreams/${id}`, + method: 'PUT', + data + }) + +export const getUpstream = (id: string) => + request({ + url: `/upstreams/${id}`, + method: 'GET' + }) + +export const removeUpstream = (id: string) => + request({ + url: `/upstreams/${id}`, + method: 'DELETE' + }) + +export const createUpstream = (data: any) => + request({ + url: `/upstreams`, + method: 'POST', + data + }) + +export const getUpstreamList = () => + request({ + url: `/upstreams`, + method: 'GET' + }) diff --git a/src/api/transactions.ts b/src/api/transactions.ts new file mode 100644 index 0000000000..8c964eb53d --- /dev/null +++ b/src/api/transactions.ts @@ -0,0 +1,8 @@ +import request from '@/utils/request' + +export const getTransactions = (params: any) => + request({ + url: '/transactions', + method: 'get', + params + }) diff --git a/src/api/types.d.ts b/src/api/types.d.ts new file mode 100644 index 0000000000..baf9ce5c9a --- /dev/null +++ b/src/api/types.d.ts @@ -0,0 +1,115 @@ +export interface IArticleData { + id: number + status: string + title: string + abstractContent: string + fullContent: string + sourceURL: string + imageURL: string + timestamp: string | number + platforms: string[] + disableComment: boolean + importance: number + author: string + reviewer: string + type: string + pageviews: number +} + +export interface IRoleData { + key: string + name: string + description: string + routes: any +} + +export interface ITransactionData { + orderId: string + timestamp: string | number + username: string + price: number + status: string +} + +export interface IUserData { + id: number + username: string + password: string + name: string + email: string + phone: string + avatar: string + introduction: string + roles: string[] +} + +export type TypeID = number | string +export type TypePlugin = object + +export interface IConsumerData { + username: string + plugins?: TypePlugin +} + +export enum EnumRouteMethod { + GET, + PUT, + POST, + DELETE +} +export interface IRouteData { + // TODO: https://github.com/iresty/apisix/blob/7953e5bb755bf7481b07a177f94d674f8b344741/lua/apisix/core/schema.lua#L175 + // TODO: https://github.com/iresty/apisix/blob/7953e5bb755bf7481b07a177f94d674f8b344741/lua/apisix/core/schema.lua#L149 + methods: [] + plugins: TypePlugin + upstream: IUpstreamData + uri: string + host: string + remote_addr: string + service_id: TypeID + upstream_id: TypeID + id: TypeID +} + +// TODO: https://github.com/iresty/apisix/blob/7953e5bb755bf7481b07a177f94d674f8b344741/lua/apisix/core/schema.lua#L193 +export interface IServiceData { + id: TypeID + plugins: TypePlugin + upstream: IUpstreamData + upstream_id: TypeID +} + +export interface ISSLData { + cert: string + key: string + sni: string +} + +export enum EnumUpstreamType { + chash, + roundrobin +} + +export enum EnumUpstreamKey { + remote_addr +} +export interface IUpstreamData { + nodes: object + type: EnumUpstreamType + key?: EnumUpstreamKey + id?: TypeID +} + +export enum EnumAction { + get, + set, + delete, + create +} + +export interface IDataWrapper { + node: { + value: T + }, + action: EnumAction +} diff --git a/src/api/users.ts b/src/api/users.ts new file mode 100644 index 0000000000..1f1935e701 --- /dev/null +++ b/src/api/users.ts @@ -0,0 +1,54 @@ +import request from '@/utils/request' + +export const getUsers = (params: any) => + request({ + url: '/users', + method: 'get', + params + }) + +export const getUserInfo = (data: any) => + request({ + url: '/users/info', + method: 'post', + data + }) + +export const getUserByName = (username: string) => + request({ + url: `/users/${username}`, + method: 'get' + }) + +export const updateUser = (username: string, data: any) => + request({ + url: `/users/${username}`, + method: 'put', + data + }) + +export const deleteUser = (username: string) => + request({ + url: `/users/${username}`, + method: 'delete' + }) + +export const login = (data: any) => + request({ + url: '/users/login', + method: 'post', + data + }) + +export const logout = () => + request({ + url: '/users/logout', + method: 'post' + }) + +export const register = (data: any) => + request({ + url: '/users/register', + method: 'post', + data + }) diff --git a/src/assets/401-images/401.gif b/src/assets/401-images/401.gif new file mode 100644 index 0000000000..cd6e0d9433 Binary files /dev/null and b/src/assets/401-images/401.gif differ diff --git a/src/assets/404-images/404-cloud.png b/src/assets/404-images/404-cloud.png new file mode 100644 index 0000000000..c6281d0901 Binary files /dev/null and b/src/assets/404-images/404-cloud.png differ diff --git a/src/assets/404-images/404.png b/src/assets/404-images/404.png new file mode 100644 index 0000000000..3d8e2305cc Binary files /dev/null and b/src/assets/404-images/404.png differ diff --git a/src/assets/custom-theme/fonts/element-icons.ttf b/src/assets/custom-theme/fonts/element-icons.ttf new file mode 100644 index 0000000000..570a3e11b2 Binary files /dev/null and b/src/assets/custom-theme/fonts/element-icons.ttf differ diff --git a/src/assets/custom-theme/fonts/element-icons.woff b/src/assets/custom-theme/fonts/element-icons.woff new file mode 100644 index 0000000000..c2bcc00509 Binary files /dev/null and b/src/assets/custom-theme/fonts/element-icons.woff differ diff --git a/src/assets/custom-theme/index.css b/src/assets/custom-theme/index.css new file mode 100644 index 0000000000..e8b4e08be8 --- /dev/null +++ b/src/assets/custom-theme/index.css @@ -0,0 +1 @@ +@charset "UTF-8";.custom-theme .fade-in-linear-enter-active,.custom-theme .fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .fade-in-linear-enter,.custom-theme .fade-in-linear-leave,.custom-theme .fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-linear-enter-active,.custom-theme .el-fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .el-fade-in-linear-enter,.custom-theme .el-fade-in-linear-leave,.custom-theme .el-fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-enter-active,.custom-theme .el-fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-fade-in-enter,.custom-theme .el-fade-in-leave-active{opacity:0}.custom-theme .el-zoom-in-center-enter-active,.custom-theme .el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-zoom-in-center-enter,.custom-theme .el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.custom-theme .el-zoom-in-top-enter-active,.custom-theme .el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center top;transform-origin:center top}.custom-theme .el-zoom-in-top-enter,.custom-theme .el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-bottom-enter-active,.custom-theme .el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center bottom;transform-origin:center bottom}.custom-theme .el-zoom-in-bottom-enter,.custom-theme .el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-left-enter-active,.custom-theme .el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:top left;transform-origin:top left}.custom-theme .el-zoom-in-left-enter,.custom-theme .el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45,.45);transform:scale(.45,.45)}.custom-theme .collapse-transition{-webkit-transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out;transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.custom-theme .horizontal-collapse-transition{-webkit-transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out;transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out}.custom-theme .el-list-enter-active,.custom-theme .el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.custom-theme .el-list-enter,.custom-theme .el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.custom-theme .el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}@font-face{font-family:element-icons;src:url(fonts/element-icons.woff?t=1508751886602) format("woff"),url(fonts/element-icons.ttf?t=1508751886602) format("truetype");font-weight:400;font-style:normal}.custom-theme [class*=" el-icon-"],.custom-theme [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}.custom-theme .el-icon-upload:before{content:"\e60d"}.custom-theme .el-icon-error:before{content:"\e62c"}.custom-theme .el-icon-success:before{content:"\e62d"}.custom-theme .el-icon-warning:before{content:"\e62e"}.custom-theme .el-icon-sort-down:before{content:"\e630"}.custom-theme .el-icon-sort-up:before{content:"\e631"}.custom-theme .el-icon-arrow-left:before{content:"\e600"}.custom-theme .el-icon-circle-plus:before{content:"\e601"}.custom-theme .el-icon-circle-plus-outline:before{content:"\e602"}.custom-theme .el-icon-arrow-down:before{content:"\e603"}.custom-theme .el-icon-arrow-right:before{content:"\e604"}.custom-theme .el-icon-arrow-up:before{content:"\e605"}.custom-theme .el-icon-back:before{content:"\e606"}.custom-theme .el-icon-circle-close:before{content:"\e607"}.custom-theme .el-icon-date:before{content:"\e608"}.custom-theme .el-icon-circle-close-outline:before{content:"\e609"}.custom-theme .el-icon-caret-left:before{content:"\e60a"}.custom-theme .el-icon-caret-bottom:before{content:"\e60b"}.custom-theme .el-icon-caret-top:before{content:"\e60c"}.custom-theme .el-icon-caret-right:before{content:"\e60e"}.custom-theme .el-icon-close:before{content:"\e60f"}.custom-theme .el-icon-d-arrow-left:before{content:"\e610"}.custom-theme .el-icon-check:before{content:"\e611"}.custom-theme .el-icon-delete:before{content:"\e612"}.custom-theme .el-icon-d-arrow-right:before{content:"\e613"}.custom-theme .el-icon-document:before{content:"\e614"}.custom-theme .el-icon-d-caret:before{content:"\e615"}.custom-theme .el-icon-edit-outline:before{content:"\e616"}.custom-theme .el-icon-download:before{content:"\e617"}.custom-theme .el-icon-goods:before{content:"\e618"}.custom-theme .el-icon-search:before{content:"\e619"}.custom-theme .el-icon-info:before{content:"\e61a"}.custom-theme .el-icon-message:before{content:"\e61b"}.custom-theme .el-icon-edit:before{content:"\e61c"}.custom-theme .el-icon-location:before{content:"\e61d"}.custom-theme .el-icon-loading:before{content:"\e61e"}.custom-theme .el-icon-location-outline:before{content:"\e61f"}.custom-theme .el-icon-menu:before{content:"\e620"}.custom-theme .el-icon-minus:before{content:"\e621"}.custom-theme .el-icon-bell:before{content:"\e622"}.custom-theme .el-icon-mobile-phone:before{content:"\e624"}.custom-theme .el-icon-news:before{content:"\e625"}.custom-theme .el-icon-more:before{content:"\e646"}.custom-theme .el-icon-more-outline:before{content:"\e626"}.custom-theme .el-icon-phone:before{content:"\e627"}.custom-theme .el-icon-phone-outline:before{content:"\e628"}.custom-theme .el-icon-picture:before{content:"\e629"}.custom-theme .el-icon-picture-outline:before{content:"\e62a"}.custom-theme .el-icon-plus:before{content:"\e62b"}.custom-theme .el-icon-printer:before{content:"\e62f"}.custom-theme .el-icon-rank:before{content:"\e632"}.custom-theme .el-icon-refresh:before{content:"\e633"}.custom-theme .el-icon-question:before{content:"\e634"}.custom-theme .el-icon-remove:before{content:"\e635"}.custom-theme .el-icon-share:before{content:"\e636"}.custom-theme .el-icon-star-on:before{content:"\e637"}.custom-theme .el-icon-setting:before{content:"\e638"}.custom-theme .el-icon-circle-check:before{content:"\e639"}.custom-theme .el-icon-service:before{content:"\e63a"}.custom-theme .el-icon-sold-out:before{content:"\e63b"}.custom-theme .el-icon-remove-outline:before{content:"\e63c"}.custom-theme .el-icon-star-off:before{content:"\e63d"}.custom-theme .el-icon-circle-check-outline:before{content:"\e63e"}.custom-theme .el-icon-tickets:before{content:"\e63f"}.custom-theme .el-icon-sort:before{content:"\e640"}.custom-theme .el-icon-zoom-in:before{content:"\e641"}.custom-theme .el-icon-time:before{content:"\e642"}.custom-theme .el-icon-view:before{content:"\e643"}.custom-theme .el-icon-upload2:before{content:"\e644"}.custom-theme .el-icon-zoom-out:before{content:"\e645"}.custom-theme .el-icon-loading{-webkit-animation:rotating 2s linear infinite;animation:rotating 2s linear infinite}.custom-theme .el-icon--right{margin-left:5px}.custom-theme .el-icon--left{margin-right:5px}@-webkit-keyframes rotating{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)}}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-select-dropdown{position:absolute;z-index:1001;border:solid 1px #dfe4ed;border-radius:4px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:5px 0}.custom-theme .el-select-dropdown.is-multiple .el-select-dropdown__item.selected{color:#262729;background-color:#fff}.custom-theme .el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover{background-color:#f5f7fa}.custom-theme .el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after{position:absolute;right:20px;font-family:element-icons;content:"\E611";font-size:12px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.custom-theme .el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.custom-theme .el-select-dropdown .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-select-dropdown.is-arrow-fixed .popper__arrow{-webkit-transform:translateX(-200%);transform:translateX(-200%)}.custom-theme .el-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.custom-theme .el-select-dropdown__wrap{max-height:274px}.custom-theme .el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-tag{background-color:rgba(38,39,41,.1);display:inline-block;padding:0 10px;height:32px;line-height:30px;font-size:12px;color:#262729;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid rgba(38,39,41,.2);white-space:nowrap}.custom-theme .el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-5px;color:#262729}.custom-theme .el-tag .el-icon-close::before{display:block}.custom-theme .el-tag .el-icon-close:hover{background-color:#262729;color:#fff}.custom-theme .el-tag--info{background-color:rgba(10,118,164,.1);border-color:rgba(10,118,164,.2);color:#0a76a4}.custom-theme .el-tag--info.is-hit{border-color:#0a76a4}.custom-theme .el-tag--info .el-tag__close{color:#0a76a4}.custom-theme .el-tag--info .el-tag__close:hover{background-color:#0a76a4;color:#fff}.custom-theme .el-tag--success{background-color:rgba(64,145,103,.1);border-color:rgba(64,145,103,.2);color:#409167}.custom-theme .el-tag--success.is-hit{border-color:#409167}.custom-theme .el-tag--success .el-tag__close{color:#409167}.custom-theme .el-tag--success .el-tag__close:hover{background-color:#409167;color:#fff}.custom-theme .el-tag--warning{background-color:rgba(157,164,8,.1);border-color:rgba(157,164,8,.2);color:#9da408}.custom-theme .el-tag--warning.is-hit{border-color:#9da408}.custom-theme .el-tag--warning .el-tag__close{color:#9da408}.custom-theme .el-tag--warning .el-tag__close:hover{background-color:#9da408;color:#fff}.custom-theme .el-tag--danger{background-color:rgba(179,69,14,.1);border-color:rgba(179,69,14,.2);color:#b3450e}.custom-theme .el-tag--danger.is-hit{border-color:#b3450e}.custom-theme .el-tag--danger .el-tag__close{color:#b3450e}.custom-theme .el-tag--danger .el-tag__close:hover{background-color:#b3450e;color:#fff}.custom-theme .el-tag--medium{height:28px;line-height:26px}.custom-theme .el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--small{height:24px;padding:0 8px;line-height:22px}.custom-theme .el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--mini{height:20px;padding:0 5px;line-height:19px}.custom-theme .el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.custom-theme .el-select-dropdown__item{font-size:14px;padding:0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#5a5e66;height:34px;line-height:34px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.custom-theme .el-select-dropdown__item.is-disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .el-select-dropdown__item.is-disabled:hover{background-color:#fff}.custom-theme .el-select-dropdown__item.hover,.custom-theme .el-select-dropdown__item:hover{background-color:#f5f7fa}.custom-theme .el-select-dropdown__item.selected{color:#262729;font-weight:700}.custom-theme .el-select-dropdown__item span{line-height:34px!important}.custom-theme .el-select-group{margin:0;padding:0}.custom-theme .el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.custom-theme .el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.custom-theme .el-select-group__wrap:not(:last-of-type)::after{content:'';position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:#dfe4ed}.custom-theme .el-select-group__title{padding-left:20px;font-size:12px;color:#0a76a4;line-height:30px}.custom-theme .el-select-group .el-select-dropdown__item{padding-left:20px}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-select{display:inline-block;position:relative}.custom-theme .el-select:hover .el-input__inner{border-color:#b4bccc}.custom-theme .el-select .el-input__inner{cursor:pointer;padding-right:35px}.custom-theme .el-select .el-input__inner:focus{border-color:#262729}.custom-theme .el-select .el-input .el-select__caret{color:#b4bccc;font-size:14px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg);line-height:16px;cursor:pointer}.custom-theme .el-select .el-input .el-select__caret.is-reverse{-webkit-transform:rotateZ(0);transform:rotateZ(0)}.custom-theme .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:#b4bccc;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-select .el-input .el-select__caret.is-show-close:hover{color:#878d99}.custom-theme .el-select .el-input.is-disabled .el-input__inner{cursor:not-allowed}.custom-theme .el-select .el-input.is-disabled .el-input__inner:hover{border-color:#dfe4ed}.custom-theme .el-select>.el-input{display:block}.custom-theme .el-select__input{border:none;outline:0;padding:0;margin-left:15px;color:#666;font-size:14px;vertical-align:baseline;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.custom-theme .el-select__input.is-mini{height:14px}.custom-theme .el-select__close{cursor:pointer;position:absolute;top:8px;z-index:1000;right:25px;color:#b4bccc;line-height:18px;font-size:14px}.custom-theme .el-select__close:hover{color:#878d99}.custom-theme .el-select__tags{position:absolute;line-height:normal;white-space:normal;z-index:1;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.custom-theme .el-select .el-tag__close{margin-top:-2px}.custom-theme .el-select .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:3px 0 3px 6px;background-color:#f0f2f5}.custom-theme .el-select .el-tag__close.el-icon-close{background-color:#b4bccc;right:-7px;color:#fff}.custom-theme .el-select .el-tag__close.el-icon-close:hover{background-color:#878d99}.custom-theme .el-select .el-tag__close.el-icon-close::before{display:block;-webkit-transform:translate(0,.5px);transform:translate(0,.5px)}.custom-theme .el-select__tag{display:inline-block;height:24px;line-height:24px;font-size:14px;border-radius:4px;color:#fff;background-color:#262729}.custom-theme .el-select__tag .el-icon-close{font-size:14px}.custom-theme .el-pagination{white-space:nowrap;padding:2px 5px;color:#2d2f33;font-weight:700}.custom-theme .el-pagination::after,.custom-theme .el-pagination::before{display:table;content:""}.custom-theme .el-pagination::after{clear:both}.custom-theme .el-pagination button,.custom-theme .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}.custom-theme .el-pagination .el-input__inner{text-align:center}.custom-theme .el-pagination .el-input__suffix{right:0;-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-pagination .el-select .el-input{width:100px;margin:0 5px}.custom-theme .el-pagination .el-select .el-input .el-input__inner{padding-right:25px;border-radius:3px;height:28px}.custom-theme .el-pagination button{border:none;padding:0 6px;background:0 0}.custom-theme .el-pagination button:focus{outline:0}.custom-theme .el-pagination button:hover{color:#262729}.custom-theme .el-pagination button.disabled{color:#b4bccc;background-color:#fff;cursor:not-allowed}.custom-theme .el-pagination .btn-next,.custom-theme .el-pagination .btn-prev{background:center center no-repeat;background-size:16px;background-color:#fff;cursor:pointer;margin:0;color:#2d2f33}.custom-theme .el-pagination .btn-next .el-icon,.custom-theme .el-pagination .btn-prev .el-icon{display:block;font-size:12px}.custom-theme .el-pagination .btn-prev{padding-right:12px}.custom-theme .el-pagination .btn-next{padding-left:12px}.custom-theme .el-pagination--small .btn-next,.custom-theme .el-pagination--small .btn-prev,.custom-theme .el-pagination--small .el-pager li,.custom-theme .el-pagination--small .el-pager li:last-child{border-color:transparent;font-size:12px;line-height:22px;height:22px;min-width:22px}.custom-theme .el-pagination--small .arrow.disabled{visibility:hidden}.custom-theme .el-pagination__sizes{margin:0 10px 0 0;font-weight:400;color:#5a5e66}.custom-theme .el-pagination__sizes .el-input .el-input__inner{font-size:13px;padding-left:8px}.custom-theme .el-pagination__sizes .el-input .el-input__inner:hover{border-color:#262729}.custom-theme .el-pagination__total{margin-right:10px;font-weight:400;color:#5a5e66}.custom-theme .el-pagination__jump{margin-left:24px;font-weight:400;color:#5a5e66}.custom-theme .el-pagination__jump .el-input__inner{padding:0 3px}.custom-theme .el-pagination__rightwrapper{float:right}.custom-theme .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;-moz-appearance:textfield}.custom-theme .el-pagination__editor.el-input{width:50px}.custom-theme .el-pagination__editor.el-input .el-input__inner{height:28px}.custom-theme .el-pagination__editor .el-input__inner::-webkit-inner-spin-button,.custom-theme .el-pagination__editor .el-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.custom-theme .el-pager{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;list-style:none;display:inline-block;vertical-align:top;font-size:0;padding:0;margin:0}.custom-theme .el-pager .el-icon-more::before{vertical-align:-4px}.custom-theme .el-pager li{padding:0 4px;background:#fff;vertical-align:top;display:inline-block;font-size:13px;min-width:35.5px;height:28px;line-height:28px;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;margin:0}.custom-theme .el-pager li.btn-quicknext,.custom-theme .el-pager li.btn-quickprev{line-height:28px;color:#2d2f33}.custom-theme .el-pager li.btn-quickprev:hover{cursor:pointer}.custom-theme .el-pager li.btn-quicknext:hover{cursor:pointer}.custom-theme .el-pager li.active+li{border-left:0}.custom-theme .el-pager li:hover{color:#262729}.custom-theme .el-pager li.active{color:#262729;cursor:default}.custom-theme .v-modal-enter{-webkit-animation:v-modal-in .2s ease;animation:v-modal-in .2s ease}.custom-theme .v-modal-leave{-webkit-animation:v-modal-out .2s ease forwards;animation:v-modal-out .2s ease forwards}@-webkit-keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-in{0%{opacity:0}}@-webkit-keyframes v-modal-out{100%{opacity:0}}@keyframes v-modal-out{100%{opacity:0}}.custom-theme .v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.custom-theme .el-dialog{position:relative;margin:0 auto 50px;background:#fff;border-radius:2px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.3);box-shadow:0 1px 3px rgba(0,0,0,.3);-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}.custom-theme .el-dialog.is-fullscreen{width:100%;margin-top:0;margin-bottom:0;height:100%;overflow:auto}.custom-theme .el-dialog__wrapper{position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.custom-theme .el-dialog__header{padding:15px;padding-bottom:10px}.custom-theme .el-dialog__headerbtn{position:absolute;top:15px;right:15px;padding:0;background:0 0;border:none;outline:0;cursor:pointer;font-size:16px}.custom-theme .el-dialog__headerbtn .el-dialog__close{color:#0a76a4}.custom-theme .el-dialog__headerbtn:focus .el-dialog__close,.custom-theme .el-dialog__headerbtn:hover .el-dialog__close{color:#262729}.custom-theme .el-dialog__title{line-height:24px;font-size:18px;color:#2d2f33}.custom-theme .el-dialog__body{padding:30px 20px;color:#5a5e66;line-height:24px;font-size:14px}.custom-theme .el-dialog__footer{padding:15px;padding-top:10px;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-dialog--center{text-align:center}.custom-theme .el-dialog--center .el-dialog__header{padding-top:30px}.custom-theme .el-dialog--center .el-dialog__body{text-align:initial;padding:25px 27px 30px}.custom-theme .el-dialog--center .el-dialog__footer{text-align:inherit;padding-bottom:30px}.custom-theme .dialog-fade-enter-active{-webkit-animation:dialog-fade-in .3s;animation:dialog-fade-in .3s}.custom-theme .dialog-fade-leave-active{-webkit-animation:dialog-fade-out .3s;animation:dialog-fade-out .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}}@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}}@-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}}@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}}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-autocomplete{position:relative;display:inline-block}.custom-theme .el-autocomplete-suggestion{margin:5px 0;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);border-radius:4px}.custom-theme .el-autocomplete-suggestion.el-popper .popper__arrow{left:24px!important}.custom-theme .el-autocomplete-suggestion__wrap{max-height:280px;padding:10px 0;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:auto;background-color:#fff;border:1px solid #dfe4ed;border-radius:4px}.custom-theme .el-autocomplete-suggestion__list{margin:0;padding:0}.custom-theme .el-autocomplete-suggestion li{padding:0 20px;margin:0;line-height:34px;cursor:pointer;color:#5a5e66;font-size:14px;list-style:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.custom-theme .el-autocomplete-suggestion li:hover{background-color:#f5f7fa}.custom-theme .el-autocomplete-suggestion li.highlighted{background-color:#f5f7fa}.custom-theme .el-autocomplete-suggestion li.divider{margin-top:6px;border-top:1px solid #000}.custom-theme .el-autocomplete-suggestion li.divider:last-child{margin-bottom:-6px}.custom-theme .el-autocomplete-suggestion.is-loading li{text-align:center;height:100px;line-height:100px;font-size:20px;color:#999}.custom-theme .el-autocomplete-suggestion.is-loading li::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-autocomplete-suggestion.is-loading li:hover{background-color:#fff}.custom-theme .el-autocomplete-suggestion.is-loading .el-icon-loading{vertical-align:middle}.custom-theme .el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-color:#d8dce5;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:.1s;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button+.el-button{margin-left:10px}.custom-theme .el-button.is-round{padding:12px 20px}.custom-theme .el-button:focus,.custom-theme .el-button:hover{color:#262729;border-color:#bebebf;background-color:#e9e9ea}.custom-theme .el-button:active{color:#222325;border-color:#222325;outline:0}.custom-theme .el-button::-moz-focus-inner{border:0}.custom-theme .el-button [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-button.is-plain:focus,.custom-theme .el-button.is-plain:hover{background:#fff;border-color:#262729;color:#262729}.custom-theme .el-button.is-plain:active{background:#fff;border-color:#222325;color:#222325;outline:0}.custom-theme .el-button.is-active{color:#222325;border-color:#222325}.custom-theme .el-button.is-disabled,.custom-theme .el-button.is-disabled:focus,.custom-theme .el-button.is-disabled:hover{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5}.custom-theme .el-button.is-disabled.el-button--text{background-color:transparent}.custom-theme .el-button.is-disabled.is-plain,.custom-theme .el-button.is-disabled.is-plain:focus,.custom-theme .el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#e6ebf5;color:#b4bccc}.custom-theme .el-button.is-loading{position:relative;pointer-events:none}.custom-theme .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,.35)}.custom-theme .el-button.is-round{border-radius:20px;padding:12px 23px}.custom-theme .el-button--primary{color:#fff;background-color:#262729;border-color:#262729}.custom-theme .el-button--primary:focus,.custom-theme .el-button--primary:hover{background:#515254;border-color:#515254;color:#fff}.custom-theme .el-button--primary:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-active{background:#222325;border-color:#222325;color:#fff}.custom-theme .el-button--primary.is-disabled,.custom-theme .el-button--primary.is-disabled:active,.custom-theme .el-button--primary.is-disabled:focus,.custom-theme .el-button--primary.is-disabled:hover{color:#fff;background-color:#939394;border-color:#939394}.custom-theme .el-button--primary.is-plain{color:#262729;background:#e9e9ea;border-color:#a8a9a9}.custom-theme .el-button--primary.is-plain:focus,.custom-theme .el-button--primary.is-plain:hover{background:#262729;border-color:#262729;color:#fff}.custom-theme .el-button--primary.is-plain:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-plain.is-disabled,.custom-theme .el-button--primary.is-plain.is-disabled:active,.custom-theme .el-button--primary.is-plain.is-disabled:focus,.custom-theme .el-button--primary.is-plain.is-disabled:hover{color:#7d7d7f;background-color:#e9e9ea;border-color:#d4d4d4}.custom-theme .el-button--success{color:#fff;background-color:#409167;border-color:#409167}.custom-theme .el-button--success:focus,.custom-theme .el-button--success:hover{background:#66a785;border-color:#66a785;color:#fff}.custom-theme .el-button--success:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-active{background:#3a835d;border-color:#3a835d;color:#fff}.custom-theme .el-button--success.is-disabled,.custom-theme .el-button--success.is-disabled:active,.custom-theme .el-button--success.is-disabled:focus,.custom-theme .el-button--success.is-disabled:hover{color:#fff;background-color:#a0c8b3;border-color:#a0c8b3}.custom-theme .el-button--success.is-plain{color:#409167;background:#ecf4f0;border-color:#b3d3c2}.custom-theme .el-button--success.is-plain:focus,.custom-theme .el-button--success.is-plain:hover{background:#409167;border-color:#409167;color:#fff}.custom-theme .el-button--success.is-plain:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-plain.is-disabled,.custom-theme .el-button--success.is-plain.is-disabled:active,.custom-theme .el-button--success.is-plain.is-disabled:focus,.custom-theme .el-button--success.is-plain.is-disabled:hover{color:#8cbda4;background-color:#ecf4f0;border-color:#d9e9e1}.custom-theme .el-button--warning{color:#fff;background-color:#9da408;border-color:#9da408}.custom-theme .el-button--warning:focus,.custom-theme .el-button--warning:hover{background:#b1b639;border-color:#b1b639;color:#fff}.custom-theme .el-button--warning:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-active{background:#8d9407;border-color:#8d9407;color:#fff}.custom-theme .el-button--warning.is-disabled,.custom-theme .el-button--warning.is-disabled:active,.custom-theme .el-button--warning.is-disabled:focus,.custom-theme .el-button--warning.is-disabled:hover{color:#fff;background-color:#ced284;border-color:#ced284}.custom-theme .el-button--warning.is-plain{color:#9da408;background:#f5f6e6;border-color:#d8db9c}.custom-theme .el-button--warning.is-plain:focus,.custom-theme .el-button--warning.is-plain:hover{background:#9da408;border-color:#9da408;color:#fff}.custom-theme .el-button--warning.is-plain:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-plain.is-disabled,.custom-theme .el-button--warning.is-plain.is-disabled:active,.custom-theme .el-button--warning.is-plain.is-disabled:focus,.custom-theme .el-button--warning.is-plain.is-disabled:hover{color:#c4c86b;background-color:#f5f6e6;border-color:#ebedce}.custom-theme .el-button--danger{color:#fff;background-color:#b3450e;border-color:#b3450e}.custom-theme .el-button--danger:focus,.custom-theme .el-button--danger:hover{background:#c26a3e;border-color:#c26a3e;color:#fff}.custom-theme .el-button--danger:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-active{background:#a13e0d;border-color:#a13e0d;color:#fff}.custom-theme .el-button--danger.is-disabled,.custom-theme .el-button--danger.is-disabled:active,.custom-theme .el-button--danger.is-disabled:focus,.custom-theme .el-button--danger.is-disabled:hover{color:#fff;background-color:#d9a287;border-color:#d9a287}.custom-theme .el-button--danger.is-plain{color:#b3450e;background:#f7ece7;border-color:#e1b59f}.custom-theme .el-button--danger.is-plain:focus,.custom-theme .el-button--danger.is-plain:hover{background:#b3450e;border-color:#b3450e;color:#fff}.custom-theme .el-button--danger.is-plain:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-plain.is-disabled,.custom-theme .el-button--danger.is-plain.is-disabled:active,.custom-theme .el-button--danger.is-plain.is-disabled:focus,.custom-theme .el-button--danger.is-plain.is-disabled:hover{color:#d18f6e;background-color:#f7ece7;border-color:#f0dacf}.custom-theme .el-button--info{color:#fff;background-color:#0a76a4;border-color:#0a76a4}.custom-theme .el-button--info:focus,.custom-theme .el-button--info:hover{background:#3b91b6;border-color:#3b91b6;color:#fff}.custom-theme .el-button--info:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-active{background:#096a94;border-color:#096a94;color:#fff}.custom-theme .el-button--info.is-disabled,.custom-theme .el-button--info.is-disabled:active,.custom-theme .el-button--info.is-disabled:focus,.custom-theme .el-button--info.is-disabled:hover{color:#fff;background-color:#85bbd2;border-color:#85bbd2}.custom-theme .el-button--info.is-plain{color:#0a76a4;background:#e7f1f6;border-color:#9dc8db}.custom-theme .el-button--info.is-plain:focus,.custom-theme .el-button--info.is-plain:hover{background:#0a76a4;border-color:#0a76a4;color:#fff}.custom-theme .el-button--info.is-plain:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-plain.is-disabled,.custom-theme .el-button--info.is-plain.is-disabled:active,.custom-theme .el-button--info.is-plain.is-disabled:focus,.custom-theme .el-button--info.is-plain.is-disabled:hover{color:#6cadc8;background-color:#e7f1f6;border-color:#cee4ed}.custom-theme .el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button--medium.is-round{padding:10px 20px}.custom-theme .el-button--small{padding:9px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--small.is-round{padding:9px 15px}.custom-theme .el-button--mini{padding:7px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--mini.is-round{padding:7px 15px}.custom-theme .el-button--text{border:none;color:#262729;background:0 0;padding-left:0;padding-right:0}.custom-theme .el-button--text:focus,.custom-theme .el-button--text:hover{color:#515254;border-color:transparent;background-color:transparent}.custom-theme .el-button--text:active{color:#222325;border-color:transparent;background-color:transparent}.custom-theme .el-button-group{display:inline-block;vertical-align:middle}.custom-theme .el-button-group::after,.custom-theme .el-button-group::before{display:table;content:""}.custom-theme .el-button-group::after{clear:both}.custom-theme .el-button-group .el-button{float:left;position:relative}.custom-theme .el-button-group .el-button+.el-button{margin-left:0}.custom-theme .el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.custom-theme .el-button-group .el-button:not(:last-child){margin-right:-1px}.custom-theme .el-button-group .el-button:active,.custom-theme .el-button-group .el-button:focus,.custom-theme .el-button-group .el-button:hover{z-index:1}.custom-theme .el-button-group .el-button.is-active{z-index:1}.custom-theme .el-button-group .el-button--primary:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-dropdown{display:inline-block;position:relative;color:#5a5e66;font-size:14px}.custom-theme .el-dropdown .el-button-group{display:block}.custom-theme .el-dropdown .el-button-group .el-button{float:none}.custom-theme .el-dropdown .el-dropdown__caret-button{padding-left:5px;padding-right:5px;position:relative;border-left:none}.custom-theme .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,.5)}.custom-theme .el-dropdown .el-dropdown__caret-button:hover::before{top:0;bottom:0}.custom-theme .el-dropdown .el-dropdown__caret-button .el-dropdown__icon{padding-left:0}.custom-theme .el-dropdown__icon{font-size:12px;margin:0 3px}.custom-theme .el-dropdown-menu{position:absolute;top:0;left:0;z-index:10;padding:10px 0;margin:5px 0;background-color:#fff;border:1px solid #e6ebf5;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.custom-theme .el-dropdown-menu__item{list-style:none;line-height:36px;padding:0 20px;margin:0;font-size:14px;color:#5a5e66;cursor:pointer}.custom-theme .el-dropdown-menu__item:not(.is-disabled):hover{background-color:#e9e9ea;color:#515254}.custom-theme .el-dropdown-menu__item--divided{position:relative;margin-top:6px;border-top:1px solid #e6ebf5}.custom-theme .el-dropdown-menu__item--divided:before{content:'';height:6px;display:block;margin:0 -20px;background-color:#fff}.custom-theme .el-dropdown-menu__item.is-disabled{cursor:default;color:#bbb;pointer-events:none}.custom-theme .el-dropdown-menu--medium{padding:6px 0}.custom-theme .el-dropdown-menu--medium .el-dropdown-menu__item{line-height:30px;padding:0 17px;font-size:14px}.custom-theme .el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:6px}.custom-theme .el-dropdown-menu--medium .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:6px;margin:0 -17px}.custom-theme .el-dropdown-menu--small{padding:6px 0}.custom-theme .el-dropdown-menu--small .el-dropdown-menu__item{line-height:27px;padding:0 15px;font-size:13px}.custom-theme .el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:4px}.custom-theme .el-dropdown-menu--small .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:4px;margin:0 -15px}.custom-theme .el-dropdown-menu--mini{padding:3px 0}.custom-theme .el-dropdown-menu--mini .el-dropdown-menu__item{line-height:24px;padding:0 10px;font-size:12px}.custom-theme .el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided{margin-top:3px}.custom-theme .el-dropdown-menu--mini .el-dropdown-menu__item.el-dropdown-menu__item--divided:before{height:3px;margin:0 -10px}.custom-theme .el-menu{border-right:solid 1px #e6e6e6;list-style:none;position:relative;margin:0;padding-left:0;background-color:#fff}.custom-theme .el-menu::after,.custom-theme .el-menu::before{display:table;content:""}.custom-theme .el-menu::after{clear:both}.custom-theme .el-menu li{list-style:none}.custom-theme .el-menu--horizontal{border-right:none;border-bottom:solid 1px #e6e6e6}.custom-theme .el-menu--horizontal .el-menu-item{float:left;height:60px;line-height:60px;margin:0;cursor:pointer;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:2px solid transparent;color:#878d99}.custom-theme .el-menu--horizontal .el-menu-item a,.custom-theme .el-menu--horizontal .el-menu-item a:hover{color:inherit}.custom-theme .el-menu--horizontal .el-menu-item:focus,.custom-theme .el-menu--horizontal .el-menu-item:hover{background-color:#fff}.custom-theme .el-menu--horizontal .el-submenu{float:left;position:relative}.custom-theme .el-menu--horizontal .el-submenu:focus{outline:0}.custom-theme .el-menu--horizontal .el-submenu:focus>.el-submenu__title{color:#2d2f33}.custom-theme .el-menu--horizontal .el-submenu>.el-menu{position:absolute;top:65px;left:0;border:none;padding:5px 0;background-color:#fff;z-index:100;min-width:100%;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);border-radius:2px}.custom-theme .el-menu--horizontal .el-submenu .el-submenu__title{height:60px;line-height:60px;border-bottom:2px solid transparent;color:#878d99}.custom-theme .el-menu--horizontal .el-submenu .el-submenu__title:hover{background-color:#fff}.custom-theme .el-menu--horizontal .el-submenu .el-menu-item{background-color:#fff;float:none;height:36px;line-height:36px;padding:0 10px}.custom-theme .el-menu--horizontal .el-submenu .el-submenu__icon-arrow{position:static;vertical-align:middle;margin-left:8px;margin-top:-3px}.custom-theme .el-menu--horizontal .el-menu-item:focus,.custom-theme .el-menu--horizontal .el-menu-item:hover,.custom-theme .el-menu--horizontal .el-submenu__title:hover{outline:0;color:#2d2f33}.custom-theme .el-menu--horizontal>.el-menu-item.is-active,.custom-theme .el-menu--horizontal>.el-submenu.is-active .el-submenu__title{border-bottom:2px solid #262729;color:#2d2f33}.custom-theme .el-menu--collapse{width:64px}.custom-theme .el-menu--collapse>.el-menu-item [class^=el-icon-],.custom-theme .el-menu--collapse>.el-submenu>.el-submenu__title [class^=el-icon-]{margin:0;vertical-align:middle;width:24px;text-align:center}.custom-theme .el-menu--collapse>.el-menu-item .el-submenu__icon-arrow,.custom-theme .el-menu--collapse>.el-submenu>.el-submenu__title .el-submenu__icon-arrow{display:none}.custom-theme .el-menu--collapse>.el-menu-item span,.custom-theme .el-menu--collapse>.el-submenu>.el-submenu__title span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.custom-theme .el-menu--collapse>.el-menu-item.is-active i{color:inherit}.custom-theme .el-menu--collapse .el-menu .el-submenu{min-width:200px}.custom-theme .el-menu--collapse .el-submenu{position:relative}.custom-theme .el-menu--collapse .el-submenu .el-menu{position:absolute;margin-left:5px;top:0;left:100%;z-index:10;border:1px solid #dfe4ed;border-radius:2px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.custom-theme .el-menu--collapse .el-submenu.is-opened>.el-submenu__title .el-submenu__icon-arrow{-webkit-transform:none;transform:none}.custom-theme .el-menu-item{height:56px;line-height:56px;font-size:14px;color:#2d2f33;padding:0 20px;cursor:pointer;position:relative;-webkit-transition:border-color .3s,background-color .3s,color .3s;transition:border-color .3s,background-color .3s,color .3s;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.custom-theme .el-menu-item [class^=el-icon-]{margin-right:5px;width:24px;text-align:center;font-size:18px}.custom-theme .el-menu-item *{vertical-align:middle}.custom-theme .el-menu-item:first-child{margin-left:0}.custom-theme .el-menu-item:last-child{margin-right:0}.custom-theme .el-menu-item:focus,.custom-theme .el-menu-item:hover{outline:0;background-color:#e9e9ea}.custom-theme .el-menu-item i{color:#878d99}.custom-theme .el-menu-item.is-active{color:#262729}.custom-theme .el-menu-item.is-active i{color:inherit}.custom-theme .el-submenu__title{position:relative;height:56px;line-height:56px;font-size:14px;color:#2d2f33;padding:0 20px;cursor:pointer;position:relative;-webkit-transition:border-color .3s,background-color .3s,color .3s;transition:border-color .3s,background-color .3s,color .3s;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap}.custom-theme .el-submenu__title *{vertical-align:middle}.custom-theme .el-submenu__title i{color:#878d99}.custom-theme .el-submenu__title:hover{background-color:#e9e9ea}.custom-theme .el-submenu .el-menu{border:none}.custom-theme .el-submenu .el-menu-item{height:50px;line-height:50px;padding:0 45px;min-width:200px}.custom-theme .el-submenu__icon-arrow{position:absolute;top:50%;right:20px;margin-top:-7px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-size:12px}.custom-theme .el-submenu.is-active .el-submenu__title{border-bottom-color:#262729}.custom-theme .el-submenu.is-opened>.el-submenu__title .el-submenu__icon-arrow{-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg)}.custom-theme .el-submenu [class^=el-icon-]{vertical-align:middle;margin-right:5px;width:24px;text-align:center;font-size:18px}.custom-theme .el-menu-item-group>ul{padding:0}.custom-theme .el-menu-item-group__title{padding:7px 0 7px 20px;line-height:normal;font-size:12px;color:#878d99}.custom-theme .horizontal-collapse-transition .el-submenu__title .el-submenu__icon-arrow{-webkit-transition:.2s;transition:.2s;opacity:0}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-input-number{position:relative;display:inline-block;width:180px;line-height:38px}.custom-theme .el-input-number .el-input{display:block}.custom-theme .el-input-number .el-input__inner{-webkit-appearance:none;padding-left:50px;padding-right:50px;text-align:center}.custom-theme .el-input-number__decrease,.custom-theme .el-input-number__increase{position:absolute;z-index:1;top:1px;width:40px;height:auto;text-align:center;background:#f5f7fa;color:#5a5e66;cursor:pointer;font-size:13px}.custom-theme .el-input-number__decrease:hover,.custom-theme .el-input-number__increase:hover{color:#262729}.custom-theme .el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled),.custom-theme .el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled){border-color:#262729}.custom-theme .el-input-number__decrease.is-disabled,.custom-theme .el-input-number__increase.is-disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .el-input-number__increase{right:1px;border-radius:0 4px 4px 0;border-left:1px solid #d8dce5}.custom-theme .el-input-number__decrease{left:1px;border-radius:4px 0 0 4px;border-right:1px solid #d8dce5}.custom-theme .el-input-number.is-disabled .el-input-number__decrease,.custom-theme .el-input-number.is-disabled .el-input-number__increase{border-color:#dfe4ed;color:#dfe4ed}.custom-theme .el-input-number.is-disabled .el-input-number__decrease:hover,.custom-theme .el-input-number.is-disabled .el-input-number__increase:hover{color:#dfe4ed;cursor:not-allowed}.custom-theme .el-input-number--medium{width:200px;line-height:34px}.custom-theme .el-input-number--medium .el-input-number__decrease,.custom-theme .el-input-number--medium .el-input-number__increase{width:36px;font-size:14px}.custom-theme .el-input-number--medium .el-input__inner{padding-left:43px;padding-right:43px}.custom-theme .el-input-number--small{width:130px;line-height:30px}.custom-theme .el-input-number--small .el-input-number__decrease,.custom-theme .el-input-number--small .el-input-number__increase{width:32px;font-size:13px}.custom-theme .el-input-number--small .el-input-number__decrease [class*=el-icon],.custom-theme .el-input-number--small .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.9);transform:scale(.9)}.custom-theme .el-input-number--small .el-input__inner{padding-left:39px;padding-right:39px}.custom-theme .el-input-number--mini{width:130px;line-height:26px}.custom-theme .el-input-number--mini .el-input-number__decrease,.custom-theme .el-input-number--mini .el-input-number__increase{width:28px;font-size:12px}.custom-theme .el-input-number--mini .el-input-number__decrease [class*=el-icon],.custom-theme .el-input-number--mini .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-input-number--mini .el-input__inner{padding-left:35px;padding-right:35px}.custom-theme .el-input-number.is-without-controls .el-input__inner{padding-left:15px;padding-right:15px}.custom-theme .el-input-number.is-controls-right .el-input__inner{padding-left:15px;padding-right:50px}.custom-theme .el-input-number.is-controls-right .el-input-number__decrease,.custom-theme .el-input-number.is-controls-right .el-input-number__increase{height:auto;line-height:19px}.custom-theme .el-input-number.is-controls-right .el-input-number__decrease [class*=el-icon],.custom-theme .el-input-number.is-controls-right .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-input-number.is-controls-right .el-input-number__increase{border-radius:0 4px 0 0;border-bottom:1px solid #d8dce5}.custom-theme .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 #d8dce5;border-radius:0 0 4px 0}.custom-theme .el-input-number.is-controls-right[class*=medium] [class*=decrease],.custom-theme .el-input-number.is-controls-right[class*=medium] [class*=increase]{line-height:17px}.custom-theme .el-input-number.is-controls-right[class*=small] [class*=decrease],.custom-theme .el-input-number.is-controls-right[class*=small] [class*=increase]{line-height:15px}.custom-theme .el-input-number.is-controls-right[class*=mini] [class*=decrease],.custom-theme .el-input-number.is-controls-right[class*=mini] [class*=increase]{line-height:13px}.custom-theme .el-radio{color:#5a5e66;font-weight:500;line-height:1;position:relative;cursor:pointer;display:inline-block;white-space:nowrap;outline:0;font-size:14px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.custom-theme .el-radio.is-bordered{padding:10px 20px 10px 10px;border-radius:4px;border:1px solid #d8dce5}.custom-theme .el-radio.is-bordered.is-checked{border-color:#262729}.custom-theme .el-radio.is-bordered.is-disabled{cursor:not-allowed;border-color:#e6ebf5}.custom-theme .el-radio.is-bordered+.el-radio.is-bordered{margin-left:10px}.custom-theme .el-radio--medium.is-bordered{padding:8px 20px 8px 10px;border-radius:4px}.custom-theme .el-radio--medium.is-bordered .el-radio__label{font-size:14px}.custom-theme .el-radio--medium.is-bordered .el-radio__inner{height:14px;width:14px}.custom-theme .el-radio--small.is-bordered{padding:6px 15px 6px 10px;border-radius:3px}.custom-theme .el-radio--small.is-bordered .el-radio__label{font-size:12px}.custom-theme .el-radio--small.is-bordered .el-radio__inner{height:12px;width:12px}.custom-theme .el-radio--mini.is-bordered{padding:4px 15px 4px 10px;border-radius:3px}.custom-theme .el-radio--mini.is-bordered .el-radio__label{font-size:12px}.custom-theme .el-radio--mini.is-bordered .el-radio__inner{height:12px;width:12px}.custom-theme .el-radio+.el-radio{margin-left:30px}.custom-theme .el-radio__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.custom-theme .el-radio__input.is-disabled .el-radio__inner{background-color:#f5f7fa;border-color:#dfe4ed;cursor:not-allowed}.custom-theme .el-radio__input.is-disabled .el-radio__inner::after{cursor:not-allowed;background-color:#f5f7fa}.custom-theme .el-radio__input.is-disabled .el-radio__inner+.el-radio__label{cursor:not-allowed}.custom-theme .el-radio__input.is-disabled.is-checked .el-radio__inner{background-color:#f5f7fa;border-color:#dfe4ed}.custom-theme .el-radio__input.is-disabled.is-checked .el-radio__inner::after{background-color:#b4bccc}.custom-theme .el-radio__input.is-disabled+span.el-radio__label{color:#b4bccc;cursor:not-allowed}.custom-theme .el-radio__input.is-checked .el-radio__inner{border-color:#262729;background:#262729}.custom-theme .el-radio__input.is-checked .el-radio__inner::after{-webkit-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1)}.custom-theme .el-radio__input.is-checked+.el-radio__label{color:#262729}.custom-theme .el-radio__input.is-focus .el-radio__inner{border-color:#262729}.custom-theme .el-radio__inner{border:1px solid #d8dce5;border-radius:100%;width:14px;height:14px;background-color:#fff;position:relative;cursor:pointer;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-radio__inner:hover{border-color:#262729}.custom-theme .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 .15s cubic-bezier(.71,-.46,.88,.6);transition:-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6);transition:transform .15s cubic-bezier(.71,-.46,.88,.6);transition:transform .15s cubic-bezier(.71,-.46,.88,.6),-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6)}.custom-theme .el-radio__original{opacity:0;outline:0;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.custom-theme .el-radio:focus:not(.is-focus):not(:active) .el-radio__inner{-webkit-box-shadow:0 0 2px 2px #262729;box-shadow:0 0 2px 2px #262729}.custom-theme .el-radio__label{font-size:14px;padding-left:10px}.custom-theme .el-radio-group{display:inline-block;line-height:1;vertical-align:middle;font-size:0}.custom-theme .el-radio-button{position:relative;display:inline-block;outline:0}.custom-theme .el-radio-button__inner{display:inline-block;line-height:1;white-space:nowrap;vertical-align:middle;background:#fff;border:1px solid #d8dce5;font-weight:500;border-left:0;color:#5a5e66;-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 .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);padding:12px 20px;font-size:14px;border-radius:0}.custom-theme .el-radio-button__inner.is-round{padding:12px 20px}.custom-theme .el-radio-button__inner:hover{color:#262729}.custom-theme .el-radio-button__inner [class*=el-icon-]{line-height:.9}.custom-theme .el-radio-button__inner [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-radio-button__orig-radio{opacity:0;outline:0;position:absolute;z-index:-1;left:-999px}.custom-theme .el-radio-button__orig-radio:checked+.el-radio-button__inner{color:#fff;background-color:#262729;border-color:#262729;-webkit-box-shadow:-1px 0 0 0 #262729;box-shadow:-1px 0 0 0 #262729}.custom-theme .el-radio-button__orig-radio:disabled+.el-radio-button__inner{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5;-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-radio-button__orig-radio:disabled:checked+.el-radio-button__inner{background-color:#edf2fc}.custom-theme .el-radio-button:first-child .el-radio-button__inner{border-left:1px solid #d8dce5;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.custom-theme .el-radio-button:last-child .el-radio-button__inner{border-radius:0 4px 4px 0}.custom-theme .el-radio-button:first-child:last-child .el-radio-button__inner{border-radius:4px}.custom-theme .el-radio-button--medium .el-radio-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.custom-theme .el-radio-button--medium .el-radio-button__inner.is-round{padding:10px 20px}.custom-theme .el-radio-button--small .el-radio-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.custom-theme .el-radio-button--small .el-radio-button__inner.is-round{padding:9px 15px}.custom-theme .el-radio-button--mini .el-radio-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.custom-theme .el-radio-button--mini .el-radio-button__inner.is-round{padding:7px 15px}.custom-theme .el-radio-button:focus:not(.is-focus):not(:active){-webkit-box-shadow:0 0 2px 2px #262729;box-shadow:0 0 2px 2px #262729}.custom-theme .el-checkbox{color:#5a5e66;font-weight:500;font-size:14px;position:relative;cursor:pointer;display:inline-block;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #d8dce5}.custom-theme .el-checkbox.is-bordered.is-checked{border-color:#262729}.custom-theme .el-checkbox.is-bordered.is-disabled{border-color:#e6ebf5;cursor:not-allowed}.custom-theme .el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small{padding:3px 15px 7px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini{padding:1px 15px 5px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5;cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner::after{cursor:not-allowed;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{background-color:#b4bccc;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled+span.el-checkbox__label{color:#b4bccc;cursor:not-allowed}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner::after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.custom-theme .el-checkbox__input.is-checked+.el-checkbox__label{color:#262729}.custom-theme .el-checkbox__input.is-focus .el-checkbox__inner{border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::before{content:'';position:absolute;display:block;background-color:#fff;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::after{display:none}.custom-theme .el-checkbox__inner{display:inline-block;position:relative;border:1px solid #d8dce5;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 .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.custom-theme .el-checkbox__inner:hover{border-color:#262729}.custom-theme .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 .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms,-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;-webkit-transform-origin:center;transform-origin:center}.custom-theme .el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;left:-999px}.custom-theme .el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.custom-theme .el-checkbox+.el-checkbox{margin-left:30px}.custom-theme .el-checkbox-button{position:relative;display:inline-block}.custom-theme .el-checkbox-button__inner{display:inline-block;line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-left:0;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;position:relative;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button__inner.is-round{padding:12px 20px}.custom-theme .el-checkbox-button__inner:hover{color:#262729}.custom-theme .el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.custom-theme .el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;left:-999px}.custom-theme .el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#262729;border-color:#262729;-webkit-box-shadow:-1px 0 0 0 #7d7d7f;box-shadow:-1px 0 0 0 #7d7d7f}.custom-theme .el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5;-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #d8dce5;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.custom-theme .el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#262729}.custom-theme .el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.custom-theme .el-checkbox-group{font-size:0}.custom-theme .el-switch{display:inline-block;position:relative;font-size:14px;line-height:20px;height:20px;vertical-align:middle}.custom-theme .el-switch.is-disabled .el-switch__core,.custom-theme .el-switch.is-disabled .el-switch__label{cursor:not-allowed}.custom-theme .el-switch__label{-webkit-transition:.2s;transition:.2s;height:20px;display:inline-block;font-size:14px;font-weight:500;cursor:pointer;vertical-align:middle;color:#2d2f33}.custom-theme .el-switch__label.is-active{color:#262729}.custom-theme .el-switch__label--left{margin-right:10px}.custom-theme .el-switch__label--right{margin-left:10px}.custom-theme .el-switch__label *{line-height:1;font-size:14px;display:inline-block}.custom-theme .el-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.custom-theme .el-switch__input:focus~.el-switch__core{outline:1px solid #262729}.custom-theme .el-switch__core{margin:0;display:inline-block;position:relative;width:40px;height:20px;border:1px solid #d8dce5;outline:0;border-radius:10px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#d8dce5;cursor:pointer;-webkit-transition:border-color .3s,background-color .3s;transition:border-color .3s,background-color .3s;vertical-align:middle}.custom-theme .el-switch__core .el-switch__button{position:absolute;top:1px;left:1px;border-radius:100%;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;width:16px;height:16px;background-color:#fff}.custom-theme .el-switch.is-checked .el-switch__core{border-color:#262729;background-color:#262729}.custom-theme .el-switch.is-disabled{opacity:.6}.custom-theme .el-switch--wide .el-switch__label.el-switch__label--left span{left:10px}.custom-theme .el-switch--wide .el-switch__label.el-switch__label--right span{right:10px}.custom-theme .el-switch .label-fade-enter,.custom-theme .el-switch .label-fade-leave-active{opacity:0}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-select-dropdown{position:absolute;z-index:1001;border:solid 1px #dfe4ed;border-radius:4px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:5px 0}.custom-theme .el-select-dropdown.is-multiple .el-select-dropdown__item.selected{color:#262729;background-color:#fff}.custom-theme .el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover{background-color:#f5f7fa}.custom-theme .el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after{position:absolute;right:20px;font-family:element-icons;content:"\E611";font-size:12px;font-weight:700;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.custom-theme .el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list{padding:0}.custom-theme .el-select-dropdown .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-select-dropdown.is-arrow-fixed .popper__arrow{-webkit-transform:translateX(-200%);transform:translateX(-200%)}.custom-theme .el-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:#999;font-size:14px}.custom-theme .el-select-dropdown__wrap{max-height:274px}.custom-theme .el-select-dropdown__list{list-style:none;padding:6px 0;margin:0;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-tag{background-color:rgba(38,39,41,.1);display:inline-block;padding:0 10px;height:32px;line-height:30px;font-size:12px;color:#262729;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid rgba(38,39,41,.2);white-space:nowrap}.custom-theme .el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-5px;color:#262729}.custom-theme .el-tag .el-icon-close::before{display:block}.custom-theme .el-tag .el-icon-close:hover{background-color:#262729;color:#fff}.custom-theme .el-tag--info{background-color:rgba(10,118,164,.1);border-color:rgba(10,118,164,.2);color:#0a76a4}.custom-theme .el-tag--info.is-hit{border-color:#0a76a4}.custom-theme .el-tag--info .el-tag__close{color:#0a76a4}.custom-theme .el-tag--info .el-tag__close:hover{background-color:#0a76a4;color:#fff}.custom-theme .el-tag--success{background-color:rgba(64,145,103,.1);border-color:rgba(64,145,103,.2);color:#409167}.custom-theme .el-tag--success.is-hit{border-color:#409167}.custom-theme .el-tag--success .el-tag__close{color:#409167}.custom-theme .el-tag--success .el-tag__close:hover{background-color:#409167;color:#fff}.custom-theme .el-tag--warning{background-color:rgba(157,164,8,.1);border-color:rgba(157,164,8,.2);color:#9da408}.custom-theme .el-tag--warning.is-hit{border-color:#9da408}.custom-theme .el-tag--warning .el-tag__close{color:#9da408}.custom-theme .el-tag--warning .el-tag__close:hover{background-color:#9da408;color:#fff}.custom-theme .el-tag--danger{background-color:rgba(179,69,14,.1);border-color:rgba(179,69,14,.2);color:#b3450e}.custom-theme .el-tag--danger.is-hit{border-color:#b3450e}.custom-theme .el-tag--danger .el-tag__close{color:#b3450e}.custom-theme .el-tag--danger .el-tag__close:hover{background-color:#b3450e;color:#fff}.custom-theme .el-tag--medium{height:28px;line-height:26px}.custom-theme .el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--small{height:24px;padding:0 8px;line-height:22px}.custom-theme .el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--mini{height:20px;padding:0 5px;line-height:19px}.custom-theme .el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.custom-theme .el-select-dropdown__item{font-size:14px;padding:0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#5a5e66;height:34px;line-height:34px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.custom-theme .el-select-dropdown__item.is-disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .el-select-dropdown__item.is-disabled:hover{background-color:#fff}.custom-theme .el-select-dropdown__item.hover,.custom-theme .el-select-dropdown__item:hover{background-color:#f5f7fa}.custom-theme .el-select-dropdown__item.selected{color:#262729;font-weight:700}.custom-theme .el-select-dropdown__item span{line-height:34px!important}.custom-theme .el-select-group{margin:0;padding:0}.custom-theme .el-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.custom-theme .el-select-group__wrap:not(:last-of-type){padding-bottom:24px}.custom-theme .el-select-group__wrap:not(:last-of-type)::after{content:'';position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:#dfe4ed}.custom-theme .el-select-group__title{padding-left:20px;font-size:12px;color:#0a76a4;line-height:30px}.custom-theme .el-select-group .el-select-dropdown__item{padding-left:20px}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-select{display:inline-block;position:relative}.custom-theme .el-select:hover .el-input__inner{border-color:#b4bccc}.custom-theme .el-select .el-input__inner{cursor:pointer;padding-right:35px}.custom-theme .el-select .el-input__inner:focus{border-color:#262729}.custom-theme .el-select .el-input .el-select__caret{color:#b4bccc;font-size:14px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg);line-height:16px;cursor:pointer}.custom-theme .el-select .el-input .el-select__caret.is-reverse{-webkit-transform:rotateZ(0);transform:rotateZ(0)}.custom-theme .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:#b4bccc;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-select .el-input .el-select__caret.is-show-close:hover{color:#878d99}.custom-theme .el-select .el-input.is-disabled .el-input__inner{cursor:not-allowed}.custom-theme .el-select .el-input.is-disabled .el-input__inner:hover{border-color:#dfe4ed}.custom-theme .el-select>.el-input{display:block}.custom-theme .el-select__input{border:none;outline:0;padding:0;margin-left:15px;color:#666;font-size:14px;vertical-align:baseline;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.custom-theme .el-select__input.is-mini{height:14px}.custom-theme .el-select__close{cursor:pointer;position:absolute;top:8px;z-index:1000;right:25px;color:#b4bccc;line-height:18px;font-size:14px}.custom-theme .el-select__close:hover{color:#878d99}.custom-theme .el-select__tags{position:absolute;line-height:normal;white-space:normal;z-index:1;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.custom-theme .el-select .el-tag__close{margin-top:-2px}.custom-theme .el-select .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:3px 0 3px 6px;background-color:#f0f2f5}.custom-theme .el-select .el-tag__close.el-icon-close{background-color:#b4bccc;right:-7px;color:#fff}.custom-theme .el-select .el-tag__close.el-icon-close:hover{background-color:#878d99}.custom-theme .el-select .el-tag__close.el-icon-close::before{display:block;-webkit-transform:translate(0,.5px);transform:translate(0,.5px)}.custom-theme .el-select__tag{display:inline-block;height:24px;line-height:24px;font-size:14px;border-radius:4px;color:#fff;background-color:#262729}.custom-theme .el-select__tag .el-icon-close{font-size:14px}.custom-theme .el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-color:#d8dce5;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:.1s;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button+.el-button{margin-left:10px}.custom-theme .el-button.is-round{padding:12px 20px}.custom-theme .el-button:focus,.custom-theme .el-button:hover{color:#262729;border-color:#bebebf;background-color:#e9e9ea}.custom-theme .el-button:active{color:#222325;border-color:#222325;outline:0}.custom-theme .el-button::-moz-focus-inner{border:0}.custom-theme .el-button [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-button.is-plain:focus,.custom-theme .el-button.is-plain:hover{background:#fff;border-color:#262729;color:#262729}.custom-theme .el-button.is-plain:active{background:#fff;border-color:#222325;color:#222325;outline:0}.custom-theme .el-button.is-active{color:#222325;border-color:#222325}.custom-theme .el-button.is-disabled,.custom-theme .el-button.is-disabled:focus,.custom-theme .el-button.is-disabled:hover{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5}.custom-theme .el-button.is-disabled.el-button--text{background-color:transparent}.custom-theme .el-button.is-disabled.is-plain,.custom-theme .el-button.is-disabled.is-plain:focus,.custom-theme .el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#e6ebf5;color:#b4bccc}.custom-theme .el-button.is-loading{position:relative;pointer-events:none}.custom-theme .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,.35)}.custom-theme .el-button.is-round{border-radius:20px;padding:12px 23px}.custom-theme .el-button--primary{color:#fff;background-color:#262729;border-color:#262729}.custom-theme .el-button--primary:focus,.custom-theme .el-button--primary:hover{background:#515254;border-color:#515254;color:#fff}.custom-theme .el-button--primary:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-active{background:#222325;border-color:#222325;color:#fff}.custom-theme .el-button--primary.is-disabled,.custom-theme .el-button--primary.is-disabled:active,.custom-theme .el-button--primary.is-disabled:focus,.custom-theme .el-button--primary.is-disabled:hover{color:#fff;background-color:#939394;border-color:#939394}.custom-theme .el-button--primary.is-plain{color:#262729;background:#e9e9ea;border-color:#a8a9a9}.custom-theme .el-button--primary.is-plain:focus,.custom-theme .el-button--primary.is-plain:hover{background:#262729;border-color:#262729;color:#fff}.custom-theme .el-button--primary.is-plain:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-plain.is-disabled,.custom-theme .el-button--primary.is-plain.is-disabled:active,.custom-theme .el-button--primary.is-plain.is-disabled:focus,.custom-theme .el-button--primary.is-plain.is-disabled:hover{color:#7d7d7f;background-color:#e9e9ea;border-color:#d4d4d4}.custom-theme .el-button--success{color:#fff;background-color:#409167;border-color:#409167}.custom-theme .el-button--success:focus,.custom-theme .el-button--success:hover{background:#66a785;border-color:#66a785;color:#fff}.custom-theme .el-button--success:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-active{background:#3a835d;border-color:#3a835d;color:#fff}.custom-theme .el-button--success.is-disabled,.custom-theme .el-button--success.is-disabled:active,.custom-theme .el-button--success.is-disabled:focus,.custom-theme .el-button--success.is-disabled:hover{color:#fff;background-color:#a0c8b3;border-color:#a0c8b3}.custom-theme .el-button--success.is-plain{color:#409167;background:#ecf4f0;border-color:#b3d3c2}.custom-theme .el-button--success.is-plain:focus,.custom-theme .el-button--success.is-plain:hover{background:#409167;border-color:#409167;color:#fff}.custom-theme .el-button--success.is-plain:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-plain.is-disabled,.custom-theme .el-button--success.is-plain.is-disabled:active,.custom-theme .el-button--success.is-plain.is-disabled:focus,.custom-theme .el-button--success.is-plain.is-disabled:hover{color:#8cbda4;background-color:#ecf4f0;border-color:#d9e9e1}.custom-theme .el-button--warning{color:#fff;background-color:#9da408;border-color:#9da408}.custom-theme .el-button--warning:focus,.custom-theme .el-button--warning:hover{background:#b1b639;border-color:#b1b639;color:#fff}.custom-theme .el-button--warning:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-active{background:#8d9407;border-color:#8d9407;color:#fff}.custom-theme .el-button--warning.is-disabled,.custom-theme .el-button--warning.is-disabled:active,.custom-theme .el-button--warning.is-disabled:focus,.custom-theme .el-button--warning.is-disabled:hover{color:#fff;background-color:#ced284;border-color:#ced284}.custom-theme .el-button--warning.is-plain{color:#9da408;background:#f5f6e6;border-color:#d8db9c}.custom-theme .el-button--warning.is-plain:focus,.custom-theme .el-button--warning.is-plain:hover{background:#9da408;border-color:#9da408;color:#fff}.custom-theme .el-button--warning.is-plain:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-plain.is-disabled,.custom-theme .el-button--warning.is-plain.is-disabled:active,.custom-theme .el-button--warning.is-plain.is-disabled:focus,.custom-theme .el-button--warning.is-plain.is-disabled:hover{color:#c4c86b;background-color:#f5f6e6;border-color:#ebedce}.custom-theme .el-button--danger{color:#fff;background-color:#b3450e;border-color:#b3450e}.custom-theme .el-button--danger:focus,.custom-theme .el-button--danger:hover{background:#c26a3e;border-color:#c26a3e;color:#fff}.custom-theme .el-button--danger:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-active{background:#a13e0d;border-color:#a13e0d;color:#fff}.custom-theme .el-button--danger.is-disabled,.custom-theme .el-button--danger.is-disabled:active,.custom-theme .el-button--danger.is-disabled:focus,.custom-theme .el-button--danger.is-disabled:hover{color:#fff;background-color:#d9a287;border-color:#d9a287}.custom-theme .el-button--danger.is-plain{color:#b3450e;background:#f7ece7;border-color:#e1b59f}.custom-theme .el-button--danger.is-plain:focus,.custom-theme .el-button--danger.is-plain:hover{background:#b3450e;border-color:#b3450e;color:#fff}.custom-theme .el-button--danger.is-plain:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-plain.is-disabled,.custom-theme .el-button--danger.is-plain.is-disabled:active,.custom-theme .el-button--danger.is-plain.is-disabled:focus,.custom-theme .el-button--danger.is-plain.is-disabled:hover{color:#d18f6e;background-color:#f7ece7;border-color:#f0dacf}.custom-theme .el-button--info{color:#fff;background-color:#0a76a4;border-color:#0a76a4}.custom-theme .el-button--info:focus,.custom-theme .el-button--info:hover{background:#3b91b6;border-color:#3b91b6;color:#fff}.custom-theme .el-button--info:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-active{background:#096a94;border-color:#096a94;color:#fff}.custom-theme .el-button--info.is-disabled,.custom-theme .el-button--info.is-disabled:active,.custom-theme .el-button--info.is-disabled:focus,.custom-theme .el-button--info.is-disabled:hover{color:#fff;background-color:#85bbd2;border-color:#85bbd2}.custom-theme .el-button--info.is-plain{color:#0a76a4;background:#e7f1f6;border-color:#9dc8db}.custom-theme .el-button--info.is-plain:focus,.custom-theme .el-button--info.is-plain:hover{background:#0a76a4;border-color:#0a76a4;color:#fff}.custom-theme .el-button--info.is-plain:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-plain.is-disabled,.custom-theme .el-button--info.is-plain.is-disabled:active,.custom-theme .el-button--info.is-plain.is-disabled:focus,.custom-theme .el-button--info.is-plain.is-disabled:hover{color:#6cadc8;background-color:#e7f1f6;border-color:#cee4ed}.custom-theme .el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button--medium.is-round{padding:10px 20px}.custom-theme .el-button--small{padding:9px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--small.is-round{padding:9px 15px}.custom-theme .el-button--mini{padding:7px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--mini.is-round{padding:7px 15px}.custom-theme .el-button--text{border:none;color:#262729;background:0 0;padding-left:0;padding-right:0}.custom-theme .el-button--text:focus,.custom-theme .el-button--text:hover{color:#515254;border-color:transparent;background-color:transparent}.custom-theme .el-button--text:active{color:#222325;border-color:transparent;background-color:transparent}.custom-theme .el-button-group{display:inline-block;vertical-align:middle}.custom-theme .el-button-group::after,.custom-theme .el-button-group::before{display:table;content:""}.custom-theme .el-button-group::after{clear:both}.custom-theme .el-button-group .el-button{float:left;position:relative}.custom-theme .el-button-group .el-button+.el-button{margin-left:0}.custom-theme .el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.custom-theme .el-button-group .el-button:not(:last-child){margin-right:-1px}.custom-theme .el-button-group .el-button:active,.custom-theme .el-button-group .el-button:focus,.custom-theme .el-button-group .el-button:hover{z-index:1}.custom-theme .el-button-group .el-button.is-active{z-index:1}.custom-theme .el-button-group .el-button--primary:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-checkbox{color:#5a5e66;font-weight:500;font-size:14px;position:relative;cursor:pointer;display:inline-block;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #d8dce5}.custom-theme .el-checkbox.is-bordered.is-checked{border-color:#262729}.custom-theme .el-checkbox.is-bordered.is-disabled{border-color:#e6ebf5;cursor:not-allowed}.custom-theme .el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small{padding:3px 15px 7px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini{padding:1px 15px 5px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5;cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner::after{cursor:not-allowed;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{background-color:#b4bccc;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled+span.el-checkbox__label{color:#b4bccc;cursor:not-allowed}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner::after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.custom-theme .el-checkbox__input.is-checked+.el-checkbox__label{color:#262729}.custom-theme .el-checkbox__input.is-focus .el-checkbox__inner{border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::before{content:'';position:absolute;display:block;background-color:#fff;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::after{display:none}.custom-theme .el-checkbox__inner{display:inline-block;position:relative;border:1px solid #d8dce5;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 .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.custom-theme .el-checkbox__inner:hover{border-color:#262729}.custom-theme .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 .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms,-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;-webkit-transform-origin:center;transform-origin:center}.custom-theme .el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;left:-999px}.custom-theme .el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.custom-theme .el-checkbox+.el-checkbox{margin-left:30px}.custom-theme .el-checkbox-button{position:relative;display:inline-block}.custom-theme .el-checkbox-button__inner{display:inline-block;line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-left:0;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;position:relative;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button__inner.is-round{padding:12px 20px}.custom-theme .el-checkbox-button__inner:hover{color:#262729}.custom-theme .el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.custom-theme .el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;left:-999px}.custom-theme .el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#262729;border-color:#262729;-webkit-box-shadow:-1px 0 0 0 #7d7d7f;box-shadow:-1px 0 0 0 #7d7d7f}.custom-theme .el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5;-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #d8dce5;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.custom-theme .el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#262729}.custom-theme .el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.custom-theme .el-checkbox-group{font-size:0}.custom-theme .el-tag{background-color:rgba(38,39,41,.1);display:inline-block;padding:0 10px;height:32px;line-height:30px;font-size:12px;color:#262729;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid rgba(38,39,41,.2);white-space:nowrap}.custom-theme .el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-5px;color:#262729}.custom-theme .el-tag .el-icon-close::before{display:block}.custom-theme .el-tag .el-icon-close:hover{background-color:#262729;color:#fff}.custom-theme .el-tag--info{background-color:rgba(10,118,164,.1);border-color:rgba(10,118,164,.2);color:#0a76a4}.custom-theme .el-tag--info.is-hit{border-color:#0a76a4}.custom-theme .el-tag--info .el-tag__close{color:#0a76a4}.custom-theme .el-tag--info .el-tag__close:hover{background-color:#0a76a4;color:#fff}.custom-theme .el-tag--success{background-color:rgba(64,145,103,.1);border-color:rgba(64,145,103,.2);color:#409167}.custom-theme .el-tag--success.is-hit{border-color:#409167}.custom-theme .el-tag--success .el-tag__close{color:#409167}.custom-theme .el-tag--success .el-tag__close:hover{background-color:#409167;color:#fff}.custom-theme .el-tag--warning{background-color:rgba(157,164,8,.1);border-color:rgba(157,164,8,.2);color:#9da408}.custom-theme .el-tag--warning.is-hit{border-color:#9da408}.custom-theme .el-tag--warning .el-tag__close{color:#9da408}.custom-theme .el-tag--warning .el-tag__close:hover{background-color:#9da408;color:#fff}.custom-theme .el-tag--danger{background-color:rgba(179,69,14,.1);border-color:rgba(179,69,14,.2);color:#b3450e}.custom-theme .el-tag--danger.is-hit{border-color:#b3450e}.custom-theme .el-tag--danger .el-tag__close{color:#b3450e}.custom-theme .el-tag--danger .el-tag__close:hover{background-color:#b3450e;color:#fff}.custom-theme .el-tag--medium{height:28px;line-height:26px}.custom-theme .el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--small{height:24px;padding:0 8px;line-height:22px}.custom-theme .el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--mini{height:20px;padding:0 5px;line-height:19px}.custom-theme .el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.custom-theme .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%;background-color:#fff;font-size:14px;color:#5a5e66}.custom-theme .el-table__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.custom-theme .el-table__empty-text{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:color(#262729 s(16%) l(44%))}.custom-theme .el-table__expand-column .cell{padding:0;text-align:center}.custom-theme .el-table__expand-icon{position:relative;cursor:pointer;color:#666;font-size:12px;-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out;height:20px}.custom-theme .el-table__expand-icon--expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.custom-theme .el-table__expand-icon>.el-icon{position:absolute;left:50%;top:50%;margin-left:-5px;margin-top:-5px}.custom-theme .el-table__expanded-cell{background-color:#fff}.custom-theme .el-table__expanded-cell[class*=cell]{padding:20px 50px}.custom-theme .el-table__expanded-cell:hover{background-color:#f5f7fa!important}.custom-theme .el-table--fit{border-right:0;border-bottom:0}.custom-theme .el-table--fit td.gutter,.custom-theme .el-table--fit th.gutter{border-right-width:1px}.custom-theme .el-table thead{color:#878d99;font-weight:500}.custom-theme .el-table thead.is-group th{background:#f5f7fa}.custom-theme .el-table td,.custom-theme .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}.custom-theme .el-table td.is-center,.custom-theme .el-table th.is-center{text-align:center}.custom-theme .el-table td.is-left,.custom-theme .el-table th.is-left{text-align:left}.custom-theme .el-table td.is-right,.custom-theme .el-table th.is-right{text-align:right}.custom-theme .el-table td.gutter,.custom-theme .el-table th.gutter{width:15px;border-right-width:0;border-bottom-width:0;padding:0}.custom-theme .el-table td.is-hidden>*,.custom-theme .el-table th.is-hidden>*{visibility:hidden}.custom-theme .el-table--medium td,.custom-theme .el-table--medium th{padding:10px 0}.custom-theme .el-table--small{font-size:12px}.custom-theme .el-table--small td,.custom-theme .el-table--small th{padding:8px 0}.custom-theme .el-table--mini{font-size:12px}.custom-theme .el-table--mini td,.custom-theme .el-table--mini th{padding:6px 0}.custom-theme .el-table tr{background-color:#fff}.custom-theme .el-table tr input[type=checkbox]{margin:0}.custom-theme .el-table td,.custom-theme .el-table th.is-leaf{border-bottom:1px solid #e6ebf5}.custom-theme .el-table th.is-sortable{cursor:pointer}.custom-theme .el-table th{white-space:nowrap;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-align:left}.custom-theme .el-table th div{display:inline-block;padding-left:10px;padding-right:10px;line-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.custom-theme .el-table th>.cell{position:relative;word-wrap:normal;text-overflow:ellipsis;display:inline-block;vertical-align:middle;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-table th>.cell.highlight{color:#262729}.custom-theme .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}.custom-theme .el-table td div{-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-table td.gutter{width:0}.custom-theme .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-left:10px;padding-right:10px}.custom-theme .el-table .cell.el-tooltip{white-space:nowrap;min-width:50px}.custom-theme .el-table td:first-child .cell,.custom-theme .el-table th:first-child .cell{padding-left:0}.custom-theme .el-table--border,.custom-theme .el-table--group{border:1px solid #e6ebf5}.custom-theme .el-table--border::after,.custom-theme .el-table--group::after,.custom-theme .el-table::before{content:'';position:absolute;background-color:#e6ebf5;z-index:1}.custom-theme .el-table--border::after,.custom-theme .el-table--group::after{top:0;right:0;width:1px;height:100%}.custom-theme .el-table::before{left:0;bottom:0;width:100%;height:1px}.custom-theme .el-table--border{border-right:none;border-bottom:none}.custom-theme .el-table--border td,.custom-theme .el-table--border th{border-right:1px solid #e6ebf5}.custom-theme .el-table--border td:first-child .cell,.custom-theme .el-table--border th:first-child .cell{padding-left:10px}.custom-theme .el-table--border .has-gutter td:nth-last-of-type(2),.custom-theme .el-table--border .has-gutter th:nth-last-of-type(2){border-right:none}.custom-theme .el-table--border th.gutter:last-of-type{border-bottom:1px solid #e6ebf5;border-bottom-width:1px}.custom-theme .el-table--border th{border-bottom:1px solid #e6ebf5}.custom-theme .el-table--hidden{visibility:hidden}.custom-theme .el-table__fixed,.custom-theme .el-table__fixed-right{position:absolute;top:0;left:0;overflow-x:hidden;-webkit-box-shadow:0 0 10px rgba(0,0,0,.12);box-shadow:0 0 10px rgba(0,0,0,.12)}.custom-theme .el-table__fixed-right::before,.custom-theme .el-table__fixed::before{content:'';position:absolute;left:0;bottom:0;width:100%;height:1px;background-color:#e6ebf5;z-index:4}.custom-theme .el-table__fixed-right-patch{position:absolute;top:-1px;right:0;background-color:#fff;border-bottom:1px solid #e6ebf5}.custom-theme .el-table__fixed-right{top:0;left:auto;right:0}.custom-theme .el-table__fixed-right .el-table__fixed-body-wrapper,.custom-theme .el-table__fixed-right .el-table__fixed-footer-wrapper,.custom-theme .el-table__fixed-right .el-table__fixed-header-wrapper{left:auto;right:0}.custom-theme .el-table__fixed-header-wrapper{position:absolute;left:0;top:0;z-index:3}.custom-theme .el-table__fixed-footer-wrapper{position:absolute;left:0;bottom:0;z-index:3}.custom-theme .el-table__fixed-footer-wrapper tbody td{border-top:1px solid #e6ebf5;background-color:#f5f7fa;color:#5a5e66}.custom-theme .el-table__fixed-body-wrapper{position:absolute;left:0;top:37px;overflow:hidden;z-index:3}.custom-theme .el-table__body-wrapper,.custom-theme .el-table__footer-wrapper,.custom-theme .el-table__header-wrapper{width:100%}.custom-theme .el-table__footer-wrapper{margin-top:-1px}.custom-theme .el-table__footer-wrapper td{border-top:1px solid #e6ebf5}.custom-theme .el-table__body,.custom-theme .el-table__footer,.custom-theme .el-table__header{table-layout:fixed}.custom-theme .el-table__footer-wrapper,.custom-theme .el-table__header-wrapper{overflow:hidden}.custom-theme .el-table__footer-wrapper tbody td,.custom-theme .el-table__header-wrapper tbody td{background-color:#f5f7fa;color:#5a5e66}.custom-theme .el-table__body-wrapper{overflow:auto;position:relative}.custom-theme .el-table__body-wrapper.is-scroll-none~.el-table__fixed,.custom-theme .el-table__body-wrapper.is-scroll-none~.el-table__fixed-right{-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-table__body-wrapper.is-scroll-left~.el-table__fixed{-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-table__body-wrapper.is-scroll-right~.el-table__fixed-right{-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-table__body-wrapper .el-table--border.is-scroll-right~.el-table__fixed-right{border-left:1px solid #e6ebf5}.custom-theme .el-table__body-wrapper .el-table--border.is-scroll-left~.el-table__fixed{border-right:1px solid #e6ebf5}.custom-theme .el-table .caret-wrapper{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:13px;width:24px;cursor:pointer;overflow:initial}.custom-theme .el-table .sort-caret{color:#0a76a4;width:14px;overflow:hidden;font-size:13px}.custom-theme .el-table .ascending .sort-caret.ascending{color:#262729}.custom-theme .el-table .descending .sort-caret.descending{color:#262729}.custom-theme .el-table .hidden-columns{visibility:hidden;position:absolute;z-index:-1}.custom-theme .el-table--striped .el-table__body tr.el-table__row--striped td{background:#fafafa}.custom-theme .el-table--striped .el-table__body tr.el-table__row--striped.current-row td{background-color:#e9e9ea}.custom-theme .el-table__body tr.hover-row.current-row>td,.custom-theme .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.custom-theme .el-table__body tr.hover-row.el-table__row--striped>td,.custom-theme .el-table__body tr.hover-row>td{background-color:#e9e9ea}.custom-theme .el-table__body tr.current-row>td{background-color:#e9e9ea}.custom-theme .el-table__column-resize-proxy{position:absolute;left:200px;top:0;bottom:0;width:0;border-left:1px solid #e6ebf5;z-index:10}.custom-theme .el-table__column-filter-trigger{display:inline-block;line-height:34px;cursor:pointer}.custom-theme .el-table__column-filter-trigger i{color:#0a76a4;font-size:12px;-webkit-transform:scale(.75);transform:scale(.75)}.custom-theme .el-table--enable-row-transition .el-table__body td{-webkit-transition:background-color .25s ease;transition:background-color .25s ease}.custom-theme .el-table--enable-row-hover .el-table__body tr:hover>td{background-color:#f5f7fa}.custom-theme .el-table--fluid-height .el-table__fixed,.custom-theme .el-table--fluid-height .el-table__fixed-right{bottom:0;overflow:hidden}.custom-theme .el-checkbox{color:#5a5e66;font-weight:500;font-size:14px;position:relative;cursor:pointer;display:inline-block;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #d8dce5}.custom-theme .el-checkbox.is-bordered.is-checked{border-color:#262729}.custom-theme .el-checkbox.is-bordered.is-disabled{border-color:#e6ebf5;cursor:not-allowed}.custom-theme .el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small{padding:3px 15px 7px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini{padding:1px 15px 5px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5;cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner::after{cursor:not-allowed;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{background-color:#b4bccc;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled+span.el-checkbox__label{color:#b4bccc;cursor:not-allowed}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner::after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.custom-theme .el-checkbox__input.is-checked+.el-checkbox__label{color:#262729}.custom-theme .el-checkbox__input.is-focus .el-checkbox__inner{border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::before{content:'';position:absolute;display:block;background-color:#fff;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::after{display:none}.custom-theme .el-checkbox__inner{display:inline-block;position:relative;border:1px solid #d8dce5;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 .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.custom-theme .el-checkbox__inner:hover{border-color:#262729}.custom-theme .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 .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms,-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;-webkit-transform-origin:center;transform-origin:center}.custom-theme .el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;left:-999px}.custom-theme .el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.custom-theme .el-checkbox+.el-checkbox{margin-left:30px}.custom-theme .el-checkbox-button{position:relative;display:inline-block}.custom-theme .el-checkbox-button__inner{display:inline-block;line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-left:0;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;position:relative;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button__inner.is-round{padding:12px 20px}.custom-theme .el-checkbox-button__inner:hover{color:#262729}.custom-theme .el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.custom-theme .el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;left:-999px}.custom-theme .el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#262729;border-color:#262729;-webkit-box-shadow:-1px 0 0 0 #7d7d7f;box-shadow:-1px 0 0 0 #7d7d7f}.custom-theme .el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5;-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #d8dce5;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.custom-theme .el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#262729}.custom-theme .el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.custom-theme .el-checkbox-group{font-size:0}.custom-theme .el-tag{background-color:rgba(38,39,41,.1);display:inline-block;padding:0 10px;height:32px;line-height:30px;font-size:12px;color:#262729;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid rgba(38,39,41,.2);white-space:nowrap}.custom-theme .el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-5px;color:#262729}.custom-theme .el-tag .el-icon-close::before{display:block}.custom-theme .el-tag .el-icon-close:hover{background-color:#262729;color:#fff}.custom-theme .el-tag--info{background-color:rgba(10,118,164,.1);border-color:rgba(10,118,164,.2);color:#0a76a4}.custom-theme .el-tag--info.is-hit{border-color:#0a76a4}.custom-theme .el-tag--info .el-tag__close{color:#0a76a4}.custom-theme .el-tag--info .el-tag__close:hover{background-color:#0a76a4;color:#fff}.custom-theme .el-tag--success{background-color:rgba(64,145,103,.1);border-color:rgba(64,145,103,.2);color:#409167}.custom-theme .el-tag--success.is-hit{border-color:#409167}.custom-theme .el-tag--success .el-tag__close{color:#409167}.custom-theme .el-tag--success .el-tag__close:hover{background-color:#409167;color:#fff}.custom-theme .el-tag--warning{background-color:rgba(157,164,8,.1);border-color:rgba(157,164,8,.2);color:#9da408}.custom-theme .el-tag--warning.is-hit{border-color:#9da408}.custom-theme .el-tag--warning .el-tag__close{color:#9da408}.custom-theme .el-tag--warning .el-tag__close:hover{background-color:#9da408;color:#fff}.custom-theme .el-tag--danger{background-color:rgba(179,69,14,.1);border-color:rgba(179,69,14,.2);color:#b3450e}.custom-theme .el-tag--danger.is-hit{border-color:#b3450e}.custom-theme .el-tag--danger .el-tag__close{color:#b3450e}.custom-theme .el-tag--danger .el-tag__close:hover{background-color:#b3450e;color:#fff}.custom-theme .el-tag--medium{height:28px;line-height:26px}.custom-theme .el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--small{height:24px;padding:0 8px;line-height:22px}.custom-theme .el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--mini{height:20px;padding:0 5px;line-height:19px}.custom-theme .el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.custom-theme .el-table-column--selection .cell{padding-left:14px;padding-right:14px}.custom-theme .el-table-filter{border:solid 1px #e6ebf5;border-radius:2px;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-box-sizing:border-box;box-sizing:border-box;margin:2px 0}.custom-theme .el-table-filter__list{padding:5px 0;margin:0;list-style:none;min-width:100px}.custom-theme .el-table-filter__list-item{line-height:36px;padding:0 10px;cursor:pointer;font-size:14px}.custom-theme .el-table-filter__list-item:hover{background-color:#e9e9ea;color:#515254}.custom-theme .el-table-filter__list-item.is-active{background-color:#262729;color:#fff}.custom-theme .el-table-filter__content{min-width:100px}.custom-theme .el-table-filter__bottom{border-top:1px solid #e6ebf5;padding:8px}.custom-theme .el-table-filter__bottom button{background:0 0;border:none;color:#5a5e66;cursor:pointer;font-size:13px;padding:0 3px}.custom-theme .el-table-filter__bottom button:hover{color:#262729}.custom-theme .el-table-filter__bottom button:focus{outline:0}.custom-theme .el-table-filter__bottom button.is-disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .el-table-filter__checkbox-group{padding:10px}.custom-theme .el-table-filter__checkbox-group label.el-checkbox{display:block;margin-bottom:8px;margin-left:5px}.custom-theme .el-table-filter__checkbox-group .el-checkbox:last-child{margin-bottom:0}.custom-theme .el-date-table{font-size:12px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-date-table.is-week-mode .el-date-table__row:hover div{background-color:#edf2fc}.custom-theme .el-date-table.is-week-mode .el-date-table__row:hover td.available:hover{color:#5a5e66}.custom-theme .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}.custom-theme .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}.custom-theme .el-date-table.is-week-mode .el-date-table__row.current div{background-color:#edf2fc}.custom-theme .el-date-table td{width:32px;height:30px;padding:4px 0;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;cursor:pointer;position:relative}.custom-theme .el-date-table td div{height:30px;padding:3px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .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%}.custom-theme .el-date-table td.next-month,.custom-theme .el-date-table td.prev-month{color:#b4bccc}.custom-theme .el-date-table td.today{position:relative}.custom-theme .el-date-table td.today span{color:#262729}.custom-theme .el-date-table td.today.end-date span,.custom-theme .el-date-table td.today.start-date span{color:#fff}.custom-theme .el-date-table td.available:hover{color:#262729}.custom-theme .el-date-table td.in-range div{background-color:#edf2fc}.custom-theme .el-date-table td.in-range div:hover{background-color:#edf2fc}.custom-theme .el-date-table td.current:not(.disabled) span{color:#fff;background-color:#262729}.custom-theme .el-date-table td.end-date div,.custom-theme .el-date-table td.start-date div{color:#fff}.custom-theme .el-date-table td.end-date span,.custom-theme .el-date-table td.start-date span{background-color:#262729}.custom-theme .el-date-table td.start-date div{margin-left:5px;border-top-left-radius:15px;border-bottom-left-radius:15px}.custom-theme .el-date-table td.end-date div{margin-right:5px;border-top-right-radius:15px;border-bottom-right-radius:15px}.custom-theme .el-date-table td.disabled div{background-color:#f5f7fa;opacity:1;cursor:not-allowed;color:#b4bccc}.custom-theme .el-date-table td.week{font-size:80%;color:#5a5e66}.custom-theme .el-date-table th{padding:5px;color:#5a5e66;font-weight:400;border-bottom:solid 1px #e6ebf5}.custom-theme .el-month-table{font-size:12px;margin:-1px;border-collapse:collapse}.custom-theme .el-month-table td{text-align:center;padding:20px 3px;cursor:pointer}.custom-theme .el-month-table td.disabled .cell{background-color:#f5f7fa;cursor:not-allowed;color:#b4bccc}.custom-theme .el-month-table td.disabled .cell:hover{color:#b4bccc}.custom-theme .el-month-table td .cell{width:48px;height:32px;display:block;line-height:32px;color:#5a5e66;margin:0 auto}.custom-theme .el-month-table td .cell:hover{color:#262729}.custom-theme .el-month-table td.current:not(.disabled) .cell{color:#262729}.custom-theme .el-year-table{font-size:12px;margin:-1px;border-collapse:collapse}.custom-theme .el-year-table .el-icon{color:#2d2f33}.custom-theme .el-year-table td{text-align:center;padding:20px 3px;cursor:pointer}.custom-theme .el-year-table td.disabled .cell{background-color:#f5f7fa;cursor:not-allowed;color:#b4bccc}.custom-theme .el-year-table td.disabled .cell:hover{color:#b4bccc}.custom-theme .el-year-table td .cell{width:48px;height:32px;display:block;line-height:32px;color:#5a5e66;margin:0 auto}.custom-theme .el-year-table td .cell:hover{color:#262729}.custom-theme .el-year-table td.current:not(.disabled) .cell{color:#262729}.custom-theme .el-time-spinner.has-seconds .el-time-spinner__wrapper{width:33.3%}.custom-theme .el-time-spinner.has-seconds .el-time-spinner__wrapper:nth-child(2){margin-left:1%}.custom-theme .el-time-spinner__wrapper{max-height:190px;overflow:auto;display:inline-block;width:50%;vertical-align:top;position:relative}.custom-theme .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default){padding-bottom:15px}.custom-theme .el-time-spinner__wrapper.is-arrow{-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;overflow:hidden}.custom-theme .el-time-spinner__wrapper.is-arrow .el-time-spinner__list{-webkit-transform:translateY(-32px);transform:translateY(-32px)}.custom-theme .el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active){background:#fff;cursor:default}.custom-theme .el-time-spinner__arrow{font-size:12px;color:#878d99;position:absolute;left:0;width:100%;z-index:1;text-align:center;height:30px;line-height:30px;cursor:pointer}.custom-theme .el-time-spinner__arrow:hover{color:#262729}.custom-theme .el-time-spinner__arrow.el-icon-arrow-up{top:10px}.custom-theme .el-time-spinner__arrow.el-icon-arrow-down{bottom:10px}.custom-theme .el-time-spinner__input.el-input{width:70%}.custom-theme .el-time-spinner__input.el-input .el-input__inner{padding:0;text-align:center}.custom-theme .el-time-spinner__list{padding:0;margin:0;list-style:none;text-align:center}.custom-theme .el-time-spinner__list::after,.custom-theme .el-time-spinner__list::before{content:'';display:block;width:100%;height:80px}.custom-theme .el-time-spinner__item{height:32px;line-height:32px;font-size:12px;color:#5a5e66}.custom-theme .el-time-spinner__item:hover:not(.disabled):not(.active){background:#f5f7fa;cursor:pointer}.custom-theme .el-time-spinner__item.active:not(.disabled){color:#2d2f33;font-weight:700}.custom-theme .el-time-spinner__item.disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .fade-in-linear-enter-active,.custom-theme .fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .fade-in-linear-enter,.custom-theme .fade-in-linear-leave,.custom-theme .fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-linear-enter-active,.custom-theme .el-fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .el-fade-in-linear-enter,.custom-theme .el-fade-in-linear-leave,.custom-theme .el-fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-enter-active,.custom-theme .el-fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-fade-in-enter,.custom-theme .el-fade-in-leave-active{opacity:0}.custom-theme .el-zoom-in-center-enter-active,.custom-theme .el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-zoom-in-center-enter,.custom-theme .el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.custom-theme .el-zoom-in-top-enter-active,.custom-theme .el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center top;transform-origin:center top}.custom-theme .el-zoom-in-top-enter,.custom-theme .el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-bottom-enter-active,.custom-theme .el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center bottom;transform-origin:center bottom}.custom-theme .el-zoom-in-bottom-enter,.custom-theme .el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-left-enter-active,.custom-theme .el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:top left;transform-origin:top left}.custom-theme .el-zoom-in-left-enter,.custom-theme .el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45,.45);transform:scale(.45,.45)}.custom-theme .collapse-transition{-webkit-transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out;transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.custom-theme .horizontal-collapse-transition{-webkit-transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out;transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out}.custom-theme .el-list-enter-active,.custom-theme .el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.custom-theme .el-list-enter,.custom-theme .el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.custom-theme .el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-date-editor{position:relative;display:inline-block;text-align:left}.custom-theme .el-date-editor.el-input,.custom-theme .el-date-editor.el-input__inner{width:220px}.custom-theme .el-date-editor--daterange.el-input,.custom-theme .el-date-editor--daterange.el-input__inner,.custom-theme .el-date-editor--timerange.el-input,.custom-theme .el-date-editor--timerange.el-input__inner{width:350px}.custom-theme .el-date-editor--datetimerange.el-input,.custom-theme .el-date-editor--datetimerange.el-input__inner{width:400px}.custom-theme .el-date-editor .el-range__icon{font-size:14px;margin-left:-5px;color:#b4bccc;float:left;line-height:32px}.custom-theme .el-date-editor .el-range-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;display:inline-block;height:100%;margin:0;padding:0;width:39%;text-align:center;font-size:14px;color:#5a5e66}.custom-theme .el-date-editor .el-range-input::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input::placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-separator{display:inline-block;height:100%;padding:0 5px;margin:0;text-align:center;line-height:32px;font-size:14px;width:5%;color:#2d2f33}.custom-theme .el-date-editor .el-range__close-icon{font-size:14px;color:#b4bccc;width:25px;display:inline-block;float:right;line-height:32px}.custom-theme .el-range-editor.el-input__inner{padding:3px 10px}.custom-theme .el-range-editor.is-active{border-color:#262729}.custom-theme .el-range-editor.is-active:hover{border-color:#262729}.custom-theme .el-range-editor--medium.el-input__inner{height:36px}.custom-theme .el-range-editor--medium .el-range-separator{line-height:28px;font-size:14px}.custom-theme .el-range-editor--medium .el-range-input{font-size:14px}.custom-theme .el-range-editor--medium .el-range__close-icon,.custom-theme .el-range-editor--medium .el-range__icon{line-height:28px}.custom-theme .el-range-editor--small.el-input__inner{height:32px}.custom-theme .el-range-editor--small .el-range-separator{line-height:24px;font-size:13px}.custom-theme .el-range-editor--small .el-range-input{font-size:13px}.custom-theme .el-range-editor--small .el-range__close-icon,.custom-theme .el-range-editor--small .el-range__icon{line-height:24px}.custom-theme .el-range-editor--mini.el-input__inner{height:28px}.custom-theme .el-range-editor--mini .el-range-separator{line-height:20px;font-size:12px}.custom-theme .el-range-editor--mini .el-range-input{font-size:12px}.custom-theme .el-range-editor--mini .el-range__close-icon,.custom-theme .el-range-editor--mini .el-range__icon{line-height:20px}.custom-theme .el-range-editor.is-disabled{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-range-editor.is-disabled:focus,.custom-theme .el-range-editor.is-disabled:hover{border-color:#dfe4ed}.custom-theme .el-range-editor.is-disabled input{background-color:#f5f7fa;color:#b4bccc;cursor:not-allowed}.custom-theme .el-range-editor.is-disabled input::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input::placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled .el-range-separator{color:#b4bccc}.custom-theme .el-picker-panel{color:#5a5e66;border:1px solid #dfe4ed;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);background:#fff;border-radius:4px;line-height:30px;margin:5px 0}.custom-theme .el-picker-panel__body-wrapper::after,.custom-theme .el-picker-panel__body::after{content:"";display:table;clear:both}.custom-theme .el-picker-panel__content{position:relative;margin:15px}.custom-theme .el-picker-panel__footer{border-top:1px solid #e4e4e4;padding:4px;text-align:right;background-color:#fff;position:relative;font-size:0}.custom-theme .el-picker-panel__shortcut{display:block;width:100%;border:0;background-color:transparent;line-height:28px;font-size:14px;color:#5a5e66;padding-left:12px;text-align:left;outline:0;cursor:pointer}.custom-theme .el-picker-panel__shortcut:hover{color:#262729}.custom-theme .el-picker-panel__shortcut.active{background-color:#e6f1fe;color:#262729}.custom-theme .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}.custom-theme .el-picker-panel__btn[disabled]{color:#ccc;cursor:not-allowed}.custom-theme .el-picker-panel__icon-btn{font-size:12px;color:#2d2f33;border:0;background:0 0;cursor:pointer;outline:0;margin-top:8px}.custom-theme .el-picker-panel__icon-btn:hover{color:#262729}.custom-theme .el-picker-panel__icon-btn.is-disabled{color:#bbb}.custom-theme .el-picker-panel__icon-btn.is-disabled:hover{cursor:not-allowed}.custom-theme .el-picker-panel__link-btn{vertical-align:middle}.custom-theme .el-picker-panel .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-picker-panel [slot=sidebar],.custom-theme .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}.custom-theme .el-picker-panel [slot=sidebar]+.el-picker-panel__body,.custom-theme .el-picker-panel__sidebar+.el-picker-panel__body{margin-left:110px}.custom-theme .el-date-picker{width:322px}.custom-theme .el-date-picker.has-sidebar.has-time{width:434px}.custom-theme .el-date-picker.has-sidebar{width:438px}.custom-theme .el-date-picker.has-time .el-picker-panel__body-wrapper{position:relative}.custom-theme .el-date-picker .el-picker-panel__content{width:292px}.custom-theme .el-date-picker table{table-layout:fixed;width:100%}.custom-theme .el-date-picker__editor-wrap{position:relative;display:table-cell;padding:0 5px}.custom-theme .el-date-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-date-picker__header{margin:12px;text-align:center}.custom-theme .el-date-picker__header--bordered{margin-bottom:0;padding-bottom:12px;border-bottom:solid 1px #e6ebf5}.custom-theme .el-date-picker__header--bordered+.el-picker-panel__content{margin-top:0}.custom-theme .el-date-picker__header-label{font-size:16px;font-weight:500;padding:0 5px;line-height:22px;text-align:center;cursor:pointer;color:#5a5e66}.custom-theme .el-date-picker__header-label:hover{color:#262729}.custom-theme .el-date-picker__header-label.active{color:#262729}.custom-theme .el-date-picker__prev-btn{float:left}.custom-theme .el-date-picker__next-btn{float:right}.custom-theme .el-date-picker__time-wrap{padding:10px;text-align:center}.custom-theme .el-date-picker__time-label{float:left;cursor:pointer;line-height:30px;margin-left:10px}.custom-theme .el-date-range-picker{width:646px}.custom-theme .el-date-range-picker.has-sidebar{width:756px}.custom-theme .el-date-range-picker table{table-layout:fixed;width:100%}.custom-theme .el-date-range-picker .el-picker-panel__body{min-width:513px}.custom-theme .el-date-range-picker .el-picker-panel__content{margin:0}.custom-theme .el-date-range-picker__header{position:relative;text-align:center;height:28px}.custom-theme .el-date-range-picker__header [class*=arrow-left]{float:left}.custom-theme .el-date-range-picker__header [class*=arrow-right]{float:right}.custom-theme .el-date-range-picker__header div{font-size:16px;font-weight:500;margin-right:50px}.custom-theme .el-date-range-picker__content{float:left;width:50%;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:16px}.custom-theme .el-date-range-picker__content.is-left{border-right:1px solid #e4e4e4}.custom-theme .el-date-range-picker__content.is-right .el-date-range-picker__header div{margin-left:50px;margin-right:50px}.custom-theme .el-date-range-picker__editors-wrap{-webkit-box-sizing:border-box;box-sizing:border-box;display:table-cell}.custom-theme .el-date-range-picker__editors-wrap.is-right{text-align:right}.custom-theme .el-date-range-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-date-range-picker__time-header>.el-icon-arrow-right{font-size:20px;vertical-align:middle;display:table-cell;color:#2d2f33}.custom-theme .el-date-range-picker__time-picker-wrap{position:relative;display:table-cell;padding:0 5px}.custom-theme .el-date-range-picker__time-picker-wrap .el-picker-panel{position:absolute;top:13px;right:0;z-index:1;background:#fff}.custom-theme .el-time-range-picker{width:354px;overflow:visible}.custom-theme .el-time-range-picker__content{position:relative;text-align:center;padding:10px}.custom-theme .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}.custom-theme .el-time-range-picker__header{margin-bottom:5px;text-align:center;font-size:14px}.custom-theme .el-time-range-picker__body{border-radius:2px;border:1px solid #dfe4ed}.custom-theme .el-time-panel{margin:5px 0;border:solid 1px #dfe4ed;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(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}.custom-theme .el-time-panel__content{font-size:0;position:relative;overflow:hidden}.custom-theme .el-time-panel__content::after,.custom-theme .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 #dfe4ed;border-bottom:1px solid #dfe4ed}.custom-theme .el-time-panel__content::after{left:50%;margin-left:12%;margin-right:12%}.custom-theme .el-time-panel__content::before{padding-left:50%;margin-right:12%;margin-left:12%}.custom-theme .el-time-panel__content.has-seconds::after{left:calc(100% / 3 * 2)}.custom-theme .el-time-panel__content.has-seconds::before{padding-left:calc(100% / 3)}.custom-theme .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}.custom-theme .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:#2d2f33}.custom-theme .el-time-panel__btn.confirm{font-weight:800;color:#262729}.custom-theme .el-time-panel .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .fade-in-linear-enter-active,.custom-theme .fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .fade-in-linear-enter,.custom-theme .fade-in-linear-leave,.custom-theme .fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-linear-enter-active,.custom-theme .el-fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .el-fade-in-linear-enter,.custom-theme .el-fade-in-linear-leave,.custom-theme .el-fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-enter-active,.custom-theme .el-fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-fade-in-enter,.custom-theme .el-fade-in-leave-active{opacity:0}.custom-theme .el-zoom-in-center-enter-active,.custom-theme .el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-zoom-in-center-enter,.custom-theme .el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.custom-theme .el-zoom-in-top-enter-active,.custom-theme .el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center top;transform-origin:center top}.custom-theme .el-zoom-in-top-enter,.custom-theme .el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-bottom-enter-active,.custom-theme .el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center bottom;transform-origin:center bottom}.custom-theme .el-zoom-in-bottom-enter,.custom-theme .el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-left-enter-active,.custom-theme .el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:top left;transform-origin:top left}.custom-theme .el-zoom-in-left-enter,.custom-theme .el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45,.45);transform:scale(.45,.45)}.custom-theme .collapse-transition{-webkit-transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out;transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.custom-theme .horizontal-collapse-transition{-webkit-transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out;transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out}.custom-theme .el-list-enter-active,.custom-theme .el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.custom-theme .el-list-enter,.custom-theme .el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.custom-theme .el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-date-editor{position:relative;display:inline-block;text-align:left}.custom-theme .el-date-editor.el-input,.custom-theme .el-date-editor.el-input__inner{width:220px}.custom-theme .el-date-editor--daterange.el-input,.custom-theme .el-date-editor--daterange.el-input__inner,.custom-theme .el-date-editor--timerange.el-input,.custom-theme .el-date-editor--timerange.el-input__inner{width:350px}.custom-theme .el-date-editor--datetimerange.el-input,.custom-theme .el-date-editor--datetimerange.el-input__inner{width:400px}.custom-theme .el-date-editor .el-range__icon{font-size:14px;margin-left:-5px;color:#b4bccc;float:left;line-height:32px}.custom-theme .el-date-editor .el-range-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;display:inline-block;height:100%;margin:0;padding:0;width:39%;text-align:center;font-size:14px;color:#5a5e66}.custom-theme .el-date-editor .el-range-input::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input::placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-separator{display:inline-block;height:100%;padding:0 5px;margin:0;text-align:center;line-height:32px;font-size:14px;width:5%;color:#2d2f33}.custom-theme .el-date-editor .el-range__close-icon{font-size:14px;color:#b4bccc;width:25px;display:inline-block;float:right;line-height:32px}.custom-theme .el-range-editor.el-input__inner{padding:3px 10px}.custom-theme .el-range-editor.is-active{border-color:#262729}.custom-theme .el-range-editor.is-active:hover{border-color:#262729}.custom-theme .el-range-editor--medium.el-input__inner{height:36px}.custom-theme .el-range-editor--medium .el-range-separator{line-height:28px;font-size:14px}.custom-theme .el-range-editor--medium .el-range-input{font-size:14px}.custom-theme .el-range-editor--medium .el-range__close-icon,.custom-theme .el-range-editor--medium .el-range__icon{line-height:28px}.custom-theme .el-range-editor--small.el-input__inner{height:32px}.custom-theme .el-range-editor--small .el-range-separator{line-height:24px;font-size:13px}.custom-theme .el-range-editor--small .el-range-input{font-size:13px}.custom-theme .el-range-editor--small .el-range__close-icon,.custom-theme .el-range-editor--small .el-range__icon{line-height:24px}.custom-theme .el-range-editor--mini.el-input__inner{height:28px}.custom-theme .el-range-editor--mini .el-range-separator{line-height:20px;font-size:12px}.custom-theme .el-range-editor--mini .el-range-input{font-size:12px}.custom-theme .el-range-editor--mini .el-range__close-icon,.custom-theme .el-range-editor--mini .el-range__icon{line-height:20px}.custom-theme .el-range-editor.is-disabled{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-range-editor.is-disabled:focus,.custom-theme .el-range-editor.is-disabled:hover{border-color:#dfe4ed}.custom-theme .el-range-editor.is-disabled input{background-color:#f5f7fa;color:#b4bccc;cursor:not-allowed}.custom-theme .el-range-editor.is-disabled input::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input::placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled .el-range-separator{color:#b4bccc}.custom-theme .el-picker-panel{color:#5a5e66;border:1px solid #dfe4ed;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);background:#fff;border-radius:4px;line-height:30px;margin:5px 0}.custom-theme .el-picker-panel__body-wrapper::after,.custom-theme .el-picker-panel__body::after{content:"";display:table;clear:both}.custom-theme .el-picker-panel__content{position:relative;margin:15px}.custom-theme .el-picker-panel__footer{border-top:1px solid #e4e4e4;padding:4px;text-align:right;background-color:#fff;position:relative;font-size:0}.custom-theme .el-picker-panel__shortcut{display:block;width:100%;border:0;background-color:transparent;line-height:28px;font-size:14px;color:#5a5e66;padding-left:12px;text-align:left;outline:0;cursor:pointer}.custom-theme .el-picker-panel__shortcut:hover{color:#262729}.custom-theme .el-picker-panel__shortcut.active{background-color:#e6f1fe;color:#262729}.custom-theme .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}.custom-theme .el-picker-panel__btn[disabled]{color:#ccc;cursor:not-allowed}.custom-theme .el-picker-panel__icon-btn{font-size:12px;color:#2d2f33;border:0;background:0 0;cursor:pointer;outline:0;margin-top:8px}.custom-theme .el-picker-panel__icon-btn:hover{color:#262729}.custom-theme .el-picker-panel__icon-btn.is-disabled{color:#bbb}.custom-theme .el-picker-panel__icon-btn.is-disabled:hover{cursor:not-allowed}.custom-theme .el-picker-panel__link-btn{vertical-align:middle}.custom-theme .el-picker-panel .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-picker-panel [slot=sidebar],.custom-theme .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}.custom-theme .el-picker-panel [slot=sidebar]+.el-picker-panel__body,.custom-theme .el-picker-panel__sidebar+.el-picker-panel__body{margin-left:110px}.custom-theme .el-date-picker{width:322px}.custom-theme .el-date-picker.has-sidebar.has-time{width:434px}.custom-theme .el-date-picker.has-sidebar{width:438px}.custom-theme .el-date-picker.has-time .el-picker-panel__body-wrapper{position:relative}.custom-theme .el-date-picker .el-picker-panel__content{width:292px}.custom-theme .el-date-picker table{table-layout:fixed;width:100%}.custom-theme .el-date-picker__editor-wrap{position:relative;display:table-cell;padding:0 5px}.custom-theme .el-date-picker__time-header{position:relative;border-bottom:1px solid #e4e4e4;font-size:12px;padding:8px 5px 5px 5px;display:table;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-date-picker__header{margin:12px;text-align:center}.custom-theme .el-date-picker__header--bordered{margin-bottom:0;padding-bottom:12px;border-bottom:solid 1px #e6ebf5}.custom-theme .el-date-picker__header--bordered+.el-picker-panel__content{margin-top:0}.custom-theme .el-date-picker__header-label{font-size:16px;font-weight:500;padding:0 5px;line-height:22px;text-align:center;cursor:pointer;color:#5a5e66}.custom-theme .el-date-picker__header-label:hover{color:#262729}.custom-theme .el-date-picker__header-label.active{color:#262729}.custom-theme .el-date-picker__prev-btn{float:left}.custom-theme .el-date-picker__next-btn{float:right}.custom-theme .el-date-picker__time-wrap{padding:10px;text-align:center}.custom-theme .el-date-picker__time-label{float:left;cursor:pointer;line-height:30px;margin-left:10px}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .time-select{margin:5px 0;min-width:0}.custom-theme .time-select .el-picker-panel__content{max-height:200px;margin:0}.custom-theme .time-select-item{padding:8px 10px;font-size:14px;line-height:20px}.custom-theme .time-select-item.selected:not(.disabled){color:#262729;font-weight:700}.custom-theme .time-select-item.disabled{color:#dfe4ed;cursor:not-allowed}.custom-theme .time-select-item:hover{background-color:#f5f7fa;font-weight:700;cursor:pointer}.custom-theme .fade-in-linear-enter-active,.custom-theme .fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .fade-in-linear-enter,.custom-theme .fade-in-linear-leave,.custom-theme .fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-linear-enter-active,.custom-theme .el-fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.custom-theme .el-fade-in-linear-enter,.custom-theme .el-fade-in-linear-leave,.custom-theme .el-fade-in-linear-leave-active{opacity:0}.custom-theme .el-fade-in-enter-active,.custom-theme .el-fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-fade-in-enter,.custom-theme .el-fade-in-leave-active{opacity:0}.custom-theme .el-zoom-in-center-enter-active,.custom-theme .el-zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-zoom-in-center-enter,.custom-theme .el-zoom-in-center-leave-active{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.custom-theme .el-zoom-in-top-enter-active,.custom-theme .el-zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center top;transform-origin:center top}.custom-theme .el-zoom-in-top-enter,.custom-theme .el-zoom-in-top-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-bottom-enter-active,.custom-theme .el-zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:center bottom;transform-origin:center bottom}.custom-theme .el-zoom-in-bottom-enter,.custom-theme .el-zoom-in-bottom-leave-active{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.custom-theme .el-zoom-in-left-enter-active,.custom-theme .el-zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;-webkit-transform-origin:top left;transform-origin:top left}.custom-theme .el-zoom-in-left-enter,.custom-theme .el-zoom-in-left-leave-active{opacity:0;-webkit-transform:scale(.45,.45);transform:scale(.45,.45)}.custom-theme .collapse-transition{-webkit-transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out;transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.custom-theme .horizontal-collapse-transition{-webkit-transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out;transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out}.custom-theme .el-list-enter-active,.custom-theme .el-list-leave-active{-webkit-transition:all 1s;transition:all 1s}.custom-theme .el-list-enter,.custom-theme .el-list-leave-active{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.custom-theme .el-opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.custom-theme .el-date-editor{position:relative;display:inline-block;text-align:left}.custom-theme .el-date-editor.el-input,.custom-theme .el-date-editor.el-input__inner{width:220px}.custom-theme .el-date-editor--daterange.el-input,.custom-theme .el-date-editor--daterange.el-input__inner,.custom-theme .el-date-editor--timerange.el-input,.custom-theme .el-date-editor--timerange.el-input__inner{width:350px}.custom-theme .el-date-editor--datetimerange.el-input,.custom-theme .el-date-editor--datetimerange.el-input__inner{width:400px}.custom-theme .el-date-editor .el-range__icon{font-size:14px;margin-left:-5px;color:#b4bccc;float:left;line-height:32px}.custom-theme .el-date-editor .el-range-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;outline:0;display:inline-block;height:100%;margin:0;padding:0;width:39%;text-align:center;font-size:14px;color:#5a5e66}.custom-theme .el-date-editor .el-range-input::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-input::placeholder{color:#b4bccc}.custom-theme .el-date-editor .el-range-separator{display:inline-block;height:100%;padding:0 5px;margin:0;text-align:center;line-height:32px;font-size:14px;width:5%;color:#2d2f33}.custom-theme .el-date-editor .el-range__close-icon{font-size:14px;color:#b4bccc;width:25px;display:inline-block;float:right;line-height:32px}.custom-theme .el-range-editor.el-input__inner{padding:3px 10px}.custom-theme .el-range-editor.is-active{border-color:#262729}.custom-theme .el-range-editor.is-active:hover{border-color:#262729}.custom-theme .el-range-editor--medium.el-input__inner{height:36px}.custom-theme .el-range-editor--medium .el-range-separator{line-height:28px;font-size:14px}.custom-theme .el-range-editor--medium .el-range-input{font-size:14px}.custom-theme .el-range-editor--medium .el-range__close-icon,.custom-theme .el-range-editor--medium .el-range__icon{line-height:28px}.custom-theme .el-range-editor--small.el-input__inner{height:32px}.custom-theme .el-range-editor--small .el-range-separator{line-height:24px;font-size:13px}.custom-theme .el-range-editor--small .el-range-input{font-size:13px}.custom-theme .el-range-editor--small .el-range__close-icon,.custom-theme .el-range-editor--small .el-range__icon{line-height:24px}.custom-theme .el-range-editor--mini.el-input__inner{height:28px}.custom-theme .el-range-editor--mini .el-range-separator{line-height:20px;font-size:12px}.custom-theme .el-range-editor--mini .el-range-input{font-size:12px}.custom-theme .el-range-editor--mini .el-range__close-icon,.custom-theme .el-range-editor--mini .el-range__icon{line-height:20px}.custom-theme .el-range-editor.is-disabled{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-range-editor.is-disabled:focus,.custom-theme .el-range-editor.is-disabled:hover{border-color:#dfe4ed}.custom-theme .el-range-editor.is-disabled input{background-color:#f5f7fa;color:#b4bccc;cursor:not-allowed}.custom-theme .el-range-editor.is-disabled input::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled input::placeholder{color:#b4bccc}.custom-theme .el-range-editor.is-disabled .el-range-separator{color:#b4bccc}.custom-theme .el-time-spinner.has-seconds .el-time-spinner__wrapper{width:33.3%}.custom-theme .el-time-spinner.has-seconds .el-time-spinner__wrapper:nth-child(2){margin-left:1%}.custom-theme .el-time-spinner__wrapper{max-height:190px;overflow:auto;display:inline-block;width:50%;vertical-align:top;position:relative}.custom-theme .el-time-spinner__wrapper .el-scrollbar__wrap:not(.el-scrollbar__wrap--hidden-default){padding-bottom:15px}.custom-theme .el-time-spinner__wrapper.is-arrow{-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;overflow:hidden}.custom-theme .el-time-spinner__wrapper.is-arrow .el-time-spinner__list{-webkit-transform:translateY(-32px);transform:translateY(-32px)}.custom-theme .el-time-spinner__wrapper.is-arrow .el-time-spinner__item:hover:not(.disabled):not(.active){background:#fff;cursor:default}.custom-theme .el-time-spinner__arrow{font-size:12px;color:#878d99;position:absolute;left:0;width:100%;z-index:1;text-align:center;height:30px;line-height:30px;cursor:pointer}.custom-theme .el-time-spinner__arrow:hover{color:#262729}.custom-theme .el-time-spinner__arrow.el-icon-arrow-up{top:10px}.custom-theme .el-time-spinner__arrow.el-icon-arrow-down{bottom:10px}.custom-theme .el-time-spinner__input.el-input{width:70%}.custom-theme .el-time-spinner__input.el-input .el-input__inner{padding:0;text-align:center}.custom-theme .el-time-spinner__list{padding:0;margin:0;list-style:none;text-align:center}.custom-theme .el-time-spinner__list::after,.custom-theme .el-time-spinner__list::before{content:'';display:block;width:100%;height:80px}.custom-theme .el-time-spinner__item{height:32px;line-height:32px;font-size:12px;color:#5a5e66}.custom-theme .el-time-spinner__item:hover:not(.disabled):not(.active){background:#f5f7fa;cursor:pointer}.custom-theme .el-time-spinner__item.active:not(.disabled){color:#2d2f33;font-weight:700}.custom-theme .el-time-spinner__item.disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .el-time-panel{margin:5px 0;border:solid 1px #dfe4ed;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(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}.custom-theme .el-time-panel__content{font-size:0;position:relative;overflow:hidden}.custom-theme .el-time-panel__content::after,.custom-theme .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 #dfe4ed;border-bottom:1px solid #dfe4ed}.custom-theme .el-time-panel__content::after{left:50%;margin-left:12%;margin-right:12%}.custom-theme .el-time-panel__content::before{padding-left:50%;margin-right:12%;margin-left:12%}.custom-theme .el-time-panel__content.has-seconds::after{left:calc(100% / 3 * 2)}.custom-theme .el-time-panel__content.has-seconds::before{padding-left:calc(100% / 3)}.custom-theme .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}.custom-theme .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:#2d2f33}.custom-theme .el-time-panel__btn.confirm{font-weight:800;color:#262729}.custom-theme .el-time-panel .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-popover{position:absolute;background:#fff;min-width:150px;border-radius:4px;border:1px solid #e6ebf5;padding:12px;z-index:2000;color:#5a5e66;line-height:1.4;text-align:justify;word-break:break-all;font-size:14px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.custom-theme .el-popover--plain{padding:18px 20px}.custom-theme .el-popover__title{color:#2d2f33;font-size:16px;line-height:1;margin-bottom:12px}.custom-theme .el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-height:1.2}.custom-theme .el-tooltip__popper .popper__arrow,.custom-theme .el-tooltip__popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-tooltip__popper .popper__arrow{border-width:6px}.custom-theme .el-tooltip__popper .popper__arrow::after{content:" ";border-width:5px}.custom-theme .el-tooltip__popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-tooltip__popper[x-placement^=top] .popper__arrow{bottom:-6px;border-top-color:#2d2f33;border-bottom-width:0}.custom-theme .el-tooltip__popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-5px;border-top-color:#2d2f33;border-bottom-width:0}.custom-theme .el-tooltip__popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-tooltip__popper[x-placement^=bottom] .popper__arrow{top:-6px;border-top-width:0;border-bottom-color:#2d2f33}.custom-theme .el-tooltip__popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#2d2f33}.custom-theme .el-tooltip__popper[x-placement^=right]{margin-left:12px}.custom-theme .el-tooltip__popper[x-placement^=right] .popper__arrow{left:-6px;border-right-color:#2d2f33;border-left-width:0}.custom-theme .el-tooltip__popper[x-placement^=right] .popper__arrow::after{bottom:-5px;left:1px;border-right-color:#2d2f33;border-left-width:0}.custom-theme .el-tooltip__popper[x-placement^=left]{margin-right:12px}.custom-theme .el-tooltip__popper[x-placement^=left] .popper__arrow{right:-6px;border-right-width:0;border-left-color:#2d2f33}.custom-theme .el-tooltip__popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-5px;margin-left:-5px;border-right-width:0;border-left-color:#2d2f33}.custom-theme .el-tooltip__popper.is-dark{background:#2d2f33;color:#fff}.custom-theme .el-tooltip__popper.is-light{background:#fff;border:1px solid #2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=top] .popper__arrow{border-top-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=top] .popper__arrow::after{border-top-color:#fff}.custom-theme .el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow{border-bottom-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow::after{border-bottom-color:#fff}.custom-theme .el-tooltip__popper.is-light[x-placement^=left] .popper__arrow{border-left-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=left] .popper__arrow::after{border-left-color:#fff}.custom-theme .el-tooltip__popper.is-light[x-placement^=right] .popper__arrow{border-right-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=right] .popper__arrow::after{border-right-color:#fff}.custom-theme .v-modal-enter{-webkit-animation:v-modal-in .2s ease;animation:v-modal-in .2s ease}.custom-theme .v-modal-leave{-webkit-animation:v-modal-out .2s ease forwards;animation:v-modal-out .2s ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{100%{opacity:0}}.custom-theme .v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:.5;background:#000}.custom-theme .el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-color:#d8dce5;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:.1s;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button+.el-button{margin-left:10px}.custom-theme .el-button.is-round{padding:12px 20px}.custom-theme .el-button:focus,.custom-theme .el-button:hover{color:#262729;border-color:#bebebf;background-color:#e9e9ea}.custom-theme .el-button:active{color:#222325;border-color:#222325;outline:0}.custom-theme .el-button::-moz-focus-inner{border:0}.custom-theme .el-button [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-button.is-plain:focus,.custom-theme .el-button.is-plain:hover{background:#fff;border-color:#262729;color:#262729}.custom-theme .el-button.is-plain:active{background:#fff;border-color:#222325;color:#222325;outline:0}.custom-theme .el-button.is-active{color:#222325;border-color:#222325}.custom-theme .el-button.is-disabled,.custom-theme .el-button.is-disabled:focus,.custom-theme .el-button.is-disabled:hover{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5}.custom-theme .el-button.is-disabled.el-button--text{background-color:transparent}.custom-theme .el-button.is-disabled.is-plain,.custom-theme .el-button.is-disabled.is-plain:focus,.custom-theme .el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#e6ebf5;color:#b4bccc}.custom-theme .el-button.is-loading{position:relative;pointer-events:none}.custom-theme .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,.35)}.custom-theme .el-button.is-round{border-radius:20px;padding:12px 23px}.custom-theme .el-button--primary{color:#fff;background-color:#262729;border-color:#262729}.custom-theme .el-button--primary:focus,.custom-theme .el-button--primary:hover{background:#515254;border-color:#515254;color:#fff}.custom-theme .el-button--primary:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-active{background:#222325;border-color:#222325;color:#fff}.custom-theme .el-button--primary.is-disabled,.custom-theme .el-button--primary.is-disabled:active,.custom-theme .el-button--primary.is-disabled:focus,.custom-theme .el-button--primary.is-disabled:hover{color:#fff;background-color:#939394;border-color:#939394}.custom-theme .el-button--primary.is-plain{color:#262729;background:#e9e9ea;border-color:#a8a9a9}.custom-theme .el-button--primary.is-plain:focus,.custom-theme .el-button--primary.is-plain:hover{background:#262729;border-color:#262729;color:#fff}.custom-theme .el-button--primary.is-plain:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-plain.is-disabled,.custom-theme .el-button--primary.is-plain.is-disabled:active,.custom-theme .el-button--primary.is-plain.is-disabled:focus,.custom-theme .el-button--primary.is-plain.is-disabled:hover{color:#7d7d7f;background-color:#e9e9ea;border-color:#d4d4d4}.custom-theme .el-button--success{color:#fff;background-color:#409167;border-color:#409167}.custom-theme .el-button--success:focus,.custom-theme .el-button--success:hover{background:#66a785;border-color:#66a785;color:#fff}.custom-theme .el-button--success:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-active{background:#3a835d;border-color:#3a835d;color:#fff}.custom-theme .el-button--success.is-disabled,.custom-theme .el-button--success.is-disabled:active,.custom-theme .el-button--success.is-disabled:focus,.custom-theme .el-button--success.is-disabled:hover{color:#fff;background-color:#a0c8b3;border-color:#a0c8b3}.custom-theme .el-button--success.is-plain{color:#409167;background:#ecf4f0;border-color:#b3d3c2}.custom-theme .el-button--success.is-plain:focus,.custom-theme .el-button--success.is-plain:hover{background:#409167;border-color:#409167;color:#fff}.custom-theme .el-button--success.is-plain:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-plain.is-disabled,.custom-theme .el-button--success.is-plain.is-disabled:active,.custom-theme .el-button--success.is-plain.is-disabled:focus,.custom-theme .el-button--success.is-plain.is-disabled:hover{color:#8cbda4;background-color:#ecf4f0;border-color:#d9e9e1}.custom-theme .el-button--warning{color:#fff;background-color:#9da408;border-color:#9da408}.custom-theme .el-button--warning:focus,.custom-theme .el-button--warning:hover{background:#b1b639;border-color:#b1b639;color:#fff}.custom-theme .el-button--warning:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-active{background:#8d9407;border-color:#8d9407;color:#fff}.custom-theme .el-button--warning.is-disabled,.custom-theme .el-button--warning.is-disabled:active,.custom-theme .el-button--warning.is-disabled:focus,.custom-theme .el-button--warning.is-disabled:hover{color:#fff;background-color:#ced284;border-color:#ced284}.custom-theme .el-button--warning.is-plain{color:#9da408;background:#f5f6e6;border-color:#d8db9c}.custom-theme .el-button--warning.is-plain:focus,.custom-theme .el-button--warning.is-plain:hover{background:#9da408;border-color:#9da408;color:#fff}.custom-theme .el-button--warning.is-plain:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-plain.is-disabled,.custom-theme .el-button--warning.is-plain.is-disabled:active,.custom-theme .el-button--warning.is-plain.is-disabled:focus,.custom-theme .el-button--warning.is-plain.is-disabled:hover{color:#c4c86b;background-color:#f5f6e6;border-color:#ebedce}.custom-theme .el-button--danger{color:#fff;background-color:#b3450e;border-color:#b3450e}.custom-theme .el-button--danger:focus,.custom-theme .el-button--danger:hover{background:#c26a3e;border-color:#c26a3e;color:#fff}.custom-theme .el-button--danger:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-active{background:#a13e0d;border-color:#a13e0d;color:#fff}.custom-theme .el-button--danger.is-disabled,.custom-theme .el-button--danger.is-disabled:active,.custom-theme .el-button--danger.is-disabled:focus,.custom-theme .el-button--danger.is-disabled:hover{color:#fff;background-color:#d9a287;border-color:#d9a287}.custom-theme .el-button--danger.is-plain{color:#b3450e;background:#f7ece7;border-color:#e1b59f}.custom-theme .el-button--danger.is-plain:focus,.custom-theme .el-button--danger.is-plain:hover{background:#b3450e;border-color:#b3450e;color:#fff}.custom-theme .el-button--danger.is-plain:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-plain.is-disabled,.custom-theme .el-button--danger.is-plain.is-disabled:active,.custom-theme .el-button--danger.is-plain.is-disabled:focus,.custom-theme .el-button--danger.is-plain.is-disabled:hover{color:#d18f6e;background-color:#f7ece7;border-color:#f0dacf}.custom-theme .el-button--info{color:#fff;background-color:#0a76a4;border-color:#0a76a4}.custom-theme .el-button--info:focus,.custom-theme .el-button--info:hover{background:#3b91b6;border-color:#3b91b6;color:#fff}.custom-theme .el-button--info:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-active{background:#096a94;border-color:#096a94;color:#fff}.custom-theme .el-button--info.is-disabled,.custom-theme .el-button--info.is-disabled:active,.custom-theme .el-button--info.is-disabled:focus,.custom-theme .el-button--info.is-disabled:hover{color:#fff;background-color:#85bbd2;border-color:#85bbd2}.custom-theme .el-button--info.is-plain{color:#0a76a4;background:#e7f1f6;border-color:#9dc8db}.custom-theme .el-button--info.is-plain:focus,.custom-theme .el-button--info.is-plain:hover{background:#0a76a4;border-color:#0a76a4;color:#fff}.custom-theme .el-button--info.is-plain:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-plain.is-disabled,.custom-theme .el-button--info.is-plain.is-disabled:active,.custom-theme .el-button--info.is-plain.is-disabled:focus,.custom-theme .el-button--info.is-plain.is-disabled:hover{color:#6cadc8;background-color:#e7f1f6;border-color:#cee4ed}.custom-theme .el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button--medium.is-round{padding:10px 20px}.custom-theme .el-button--small{padding:9px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--small.is-round{padding:9px 15px}.custom-theme .el-button--mini{padding:7px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--mini.is-round{padding:7px 15px}.custom-theme .el-button--text{border:none;color:#262729;background:0 0;padding-left:0;padding-right:0}.custom-theme .el-button--text:focus,.custom-theme .el-button--text:hover{color:#515254;border-color:transparent;background-color:transparent}.custom-theme .el-button--text:active{color:#222325;border-color:transparent;background-color:transparent}.custom-theme .el-button-group{display:inline-block;vertical-align:middle}.custom-theme .el-button-group::after,.custom-theme .el-button-group::before{display:table;content:""}.custom-theme .el-button-group::after{clear:both}.custom-theme .el-button-group .el-button{float:left;position:relative}.custom-theme .el-button-group .el-button+.el-button{margin-left:0}.custom-theme .el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.custom-theme .el-button-group .el-button:not(:last-child){margin-right:-1px}.custom-theme .el-button-group .el-button:active,.custom-theme .el-button-group .el-button:focus,.custom-theme .el-button-group .el-button:hover{z-index:1}.custom-theme .el-button-group .el-button.is-active{z-index:1}.custom-theme .el-button-group .el-button--primary:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-message-box{display:inline-block;width:420px;padding-bottom:10px;vertical-align:middle;background-color:#fff;border-radius:4px;border:1px solid #e6ebf5;font-size:18px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);text-align:left;overflow:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden}.custom-theme .el-message-box__wrapper{position:fixed;top:0;bottom:0;left:0;right:0;text-align:center}.custom-theme .el-message-box__wrapper::after{content:"";display:inline-block;height:100%;width:0;vertical-align:middle}.custom-theme .el-message-box__header{position:relative;padding:15px;padding-bottom:10px}.custom-theme .el-message-box__title{padding-left:0;margin-bottom:0;font-size:18px;line-height:1;color:#2d2f33}.custom-theme .el-message-box__headerbtn{position:absolute;top:15px;right:15px;padding:0;border:none;outline:0;background:0 0;font-size:16px;cursor:pointer}.custom-theme .el-message-box__headerbtn .el-message-box__close{color:#0a76a4}.custom-theme .el-message-box__headerbtn:focus .el-message-box__close,.custom-theme .el-message-box__headerbtn:hover .el-message-box__close{color:#262729}.custom-theme .el-message-box__content{position:relative;padding:10px 15px;color:#5a5e66;font-size:14px}.custom-theme .el-message-box__input{padding-top:15px}.custom-theme .el-message-box__input input.invalid{border-color:#b3450e}.custom-theme .el-message-box__input input.invalid:focus{border-color:#b3450e}.custom-theme .el-message-box__status{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:24px!important}.custom-theme .el-message-box__status::before{padding-left:1px}.custom-theme .el-message-box__status+.el-message-box__message{padding-left:36px;padding-right:12px}.custom-theme .el-message-box__status.el-icon-success{color:#409167}.custom-theme .el-message-box__status.el-icon-info{color:#0a76a4}.custom-theme .el-message-box__status.el-icon-warning{color:#9da408}.custom-theme .el-message-box__status.el-icon-error{color:#b3450e}.custom-theme .el-message-box__message{margin:0}.custom-theme .el-message-box__message p{margin:0;line-height:24px}.custom-theme .el-message-box__errormsg{color:#b3450e;font-size:12px;min-height:18px;margin-top:2px}.custom-theme .el-message-box__btns{padding:5px 15px 0;text-align:right}.custom-theme .el-message-box__btns button:nth-child(2){margin-left:10px}.custom-theme .el-message-box__btns-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.custom-theme .el-message-box--center{padding-bottom:30px}.custom-theme .el-message-box--center .el-message-box__header{padding-top:30px}.custom-theme .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}.custom-theme .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)}.custom-theme .el-message-box--center .el-message-box__message{margin-left:0}.custom-theme .el-message-box--center .el-message-box__btns,.custom-theme .el-message-box--center .el-message-box__content{text-align:center}.custom-theme .el-message-box--center .el-message-box__content{padding-left:27px;padding-right:27px}.custom-theme .msgbox-fade-enter-active{-webkit-animation:msgbox-fade-in .3s;animation:msgbox-fade-in .3s}.custom-theme .msgbox-fade-leave-active{-webkit-animation:msgbox-fade-out .3s;animation:msgbox-fade-out .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}}@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}}@-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}}@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}}.custom-theme .el-breadcrumb{font-size:14px;line-height:1}.custom-theme .el-breadcrumb::after,.custom-theme .el-breadcrumb::before{display:table;content:""}.custom-theme .el-breadcrumb::after{clear:both}.custom-theme .el-breadcrumb__separator{margin:0 9px;font-weight:700;color:#b4bccc}.custom-theme .el-breadcrumb__separator[class*=icon]{margin:0 6px;font-weight:400}.custom-theme .el-breadcrumb__item{float:left}.custom-theme .el-breadcrumb__inner,.custom-theme .el-breadcrumb__inner a{font-weight:700;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1);color:#2d2f33}.custom-theme .el-breadcrumb__inner a:hover,.custom-theme .el-breadcrumb__inner:hover{color:#262729;cursor:pointer}.custom-theme .el-breadcrumb__item:last-child .el-breadcrumb__inner,.custom-theme .el-breadcrumb__item:last-child .el-breadcrumb__inner a,.custom-theme .el-breadcrumb__item:last-child .el-breadcrumb__inner a:hover,.custom-theme .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover{font-weight:400;color:#5a5e66;cursor:text}.custom-theme .el-breadcrumb__item:last-child .el-breadcrumb__separator{display:none}.custom-theme .el-form--label-left .el-form-item__label{text-align:left}.custom-theme .el-form--label-top .el-form-item__label{float:none;display:inline-block;text-align:left;padding:0 0 10px 0}.custom-theme .el-form--inline .el-form-item{display:inline-block;margin-right:10px;vertical-align:top}.custom-theme .el-form--inline .el-form-item__label{float:none;display:inline-block}.custom-theme .el-form--inline .el-form-item__content{display:inline-block;vertical-align:top}.custom-theme .el-form--inline.el-form--label-top .el-form-item__content{display:block}.custom-theme .el-form-item{margin-bottom:22px}.custom-theme .el-form-item::after,.custom-theme .el-form-item::before{display:table;content:""}.custom-theme .el-form-item::after{clear:both}.custom-theme .el-form-item .el-form-item{margin-bottom:0}.custom-theme .el-form-item .el-input__validateIcon{display:none}.custom-theme .el-form-item--medium .el-form-item__label{line-height:36px}.custom-theme .el-form-item--medium .el-form-item__content{line-height:36px}.custom-theme .el-form-item--small .el-form-item__label{line-height:32px}.custom-theme .el-form-item--small .el-form-item__content{line-height:32px}.custom-theme .el-form-item--small.el-form-item{margin-bottom:18px}.custom-theme .el-form-item--small .el-form-item__error{padding-top:2px}.custom-theme .el-form-item--mini .el-form-item__label{line-height:28px}.custom-theme .el-form-item--mini .el-form-item__content{line-height:28px}.custom-theme .el-form-item--mini.el-form-item{margin-bottom:18px}.custom-theme .el-form-item--mini .el-form-item__error{padding-top:1px}.custom-theme .el-form-item__label{text-align:right;vertical-align:middle;float:left;font-size:14px;color:#5a5e66;line-height:40px;padding:0 12px 0 0;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-form-item__content{line-height:40px;position:relative;font-size:14px}.custom-theme .el-form-item__content::after,.custom-theme .el-form-item__content::before{display:table;content:""}.custom-theme .el-form-item__content::after{clear:both}.custom-theme .el-form-item__error{color:#b3450e;font-size:12px;line-height:1;padding-top:4px;position:absolute;top:100%;left:0}.custom-theme .el-form-item__error--inline{position:relative;top:auto;left:auto;display:inline-block;margin-left:10px}.custom-theme .el-form-item.is-required .el-form-item__label:before{content:'*';color:#b3450e;margin-right:4px}.custom-theme .el-form-item.is-error .el-input__inner,.custom-theme .el-form-item.is-error .el-input__inner:focus,.custom-theme .el-form-item.is-error .el-textarea__inner,.custom-theme .el-form-item.is-error .el-textarea__inner:focus{border-color:#b3450e}.custom-theme .el-form-item.is-error .el-input-group__append .el-input__inner,.custom-theme .el-form-item.is-error .el-input-group__prepend .el-input__inner{border-color:transparent}.custom-theme .el-form-item.is-error .el-input__validateIcon{color:#b3450e}.custom-theme .el-form-item.is-success .el-input__inner,.custom-theme .el-form-item.is-success .el-input__inner:focus,.custom-theme .el-form-item.is-success .el-textarea__inner,.custom-theme .el-form-item.is-success .el-textarea__inner:focus{border-color:#409167}.custom-theme .el-form-item.is-success .el-input-group__append .el-input__inner,.custom-theme .el-form-item.is-success .el-input-group__prepend .el-input__inner{border-color:transparent}.custom-theme .el-form-item.is-success .el-input__validateIcon{color:#409167}.custom-theme .el-form-item--feedback .el-input__validateIcon{display:inline-block}.custom-theme .el-tabs__header{padding:0;position:relative;margin:0 0 15px}.custom-theme .el-tabs__active-bar{position:absolute;bottom:0;left:0;height:2px;background-color:#262729;z-index:1;-webkit-transition:-webkit-transform .3s cubic-bezier(.645,.045,.355,1);transition:-webkit-transform .3s cubic-bezier(.645,.045,.355,1);transition:transform .3s cubic-bezier(.645,.045,.355,1);transition:transform .3s cubic-bezier(.645,.045,.355,1),-webkit-transform .3s cubic-bezier(.645,.045,.355,1);list-style:none}.custom-theme .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 .15s;transition:all .15s}.custom-theme .el-tabs__new-tab .el-icon-plus{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}.custom-theme .el-tabs__new-tab:hover{color:#262729}.custom-theme .el-tabs__nav-wrap{overflow:hidden;margin-bottom:-1px;position:relative}.custom-theme .el-tabs__nav-wrap::after{content:"";position:absolute;left:0;bottom:0;width:100%;height:2px;background-color:#dfe4ed;z-index:1}.custom-theme .el-tabs__nav-wrap.is-scrollable{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-tabs__nav-scroll{overflow:hidden}.custom-theme .el-tabs__nav-next,.custom-theme .el-tabs__nav-prev{position:absolute;cursor:pointer;line-height:44px;font-size:12px;color:#878d99}.custom-theme .el-tabs__nav-next{right:0}.custom-theme .el-tabs__nav-prev{left:0}.custom-theme .el-tabs__nav{white-space:nowrap;position:relative;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;float:left;z-index:2}.custom-theme .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:#2d2f33;position:relative}.custom-theme .el-tabs__item:focus,.custom-theme .el-tabs__item:focus:active{outline:0}.custom-theme .el-tabs__item .el-icon-close{border-radius:50%;text-align:center;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);margin-left:5px}.custom-theme .el-tabs__item .el-icon-close:before{-webkit-transform:scale(.9);transform:scale(.9);display:inline-block}.custom-theme .el-tabs__item .el-icon-close:hover{background-color:#b4bccc;color:#fff}.custom-theme .el-tabs__item.is-active{color:#262729}.custom-theme .el-tabs__item:hover{color:#262729;cursor:pointer}.custom-theme .el-tabs__item.is-disabled{color:#b4bccc;cursor:default}.custom-theme .el-tabs__content{overflow:hidden;position:relative}.custom-theme .el-tabs--card>.el-tabs__header{border-bottom:1px solid #dfe4ed}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__nav-wrap::after{content:none}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__nav{border:1px solid #dfe4ed;border-bottom:none;border-radius:4px 4px 0 0}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__active-bar{display:none}.custom-theme .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%}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item{border-bottom:1px solid transparent;border-left:1px solid #dfe4ed;-webkit-transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1);transition:color .3s cubic-bezier(.645,.045,.355,1),padding .3s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item:first-child{border-left:none}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover{padding-left:13px;padding-right:13px}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item.is-closable:hover .el-icon-close{width:14px}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item.is-active{border-bottom-color:#fff}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable{padding-left:20px;padding-right:20px}.custom-theme .el-tabs--card>.el-tabs__header .el-tabs__item.is-active.is-closable .el-icon-close{width:14px}.custom-theme .el-tabs--border-card{background:#fff;border:1px solid #d8dce5;-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04);box-shadow:0 2px 4px 0 rgba(0,0,0,.12),0 0 6px 0 rgba(0,0,0,.04)}.custom-theme .el-tabs--border-card>.el-tabs__content{padding:15px}.custom-theme .el-tabs--border-card>.el-tabs__header{background-color:#f5f7fa;border-bottom:1px solid #dfe4ed;margin:0}.custom-theme .el-tabs--border-card>.el-tabs__header .el-tabs__nav-wrap::after{content:none}.custom-theme .el-tabs--border-card>.el-tabs__header .el-tabs__item{-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);border:1px solid transparent;margin:-1px -1px 0;color:#878d99}.custom-theme .el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active{color:#262729;background-color:#fff;border-right-color:#d8dce5;border-left-color:#d8dce5}.custom-theme .el-tabs--border-card>.el-tabs__header .el-tabs__item:hover{color:#262729}.custom-theme .el-tabs--bottom:not(.el-tabs--border-card):not(.el-tabs--card) .el-tabs__item:nth-child(2),.custom-theme .el-tabs--top:not(.el-tabs--border-card):not(.el-tabs--card) .el-tabs__item:nth-child(2){padding-left:0}.custom-theme .el-tabs--bottom .el-tabs__header{margin-bottom:0;margin-top:10px}.custom-theme .el-tabs--bottom.el-tabs--border-card .el-tabs__header{border-bottom:0;border-top:1px solid #d8dce5}.custom-theme .el-tabs--bottom.el-tabs--border-card .el-tabs__nav-wrap{margin-top:-1px;margin-bottom:0}.custom-theme .el-tabs--bottom.el-tabs--border-card .el-tabs__item{border:1px solid transparent;margin:0 -1px -1px -1px}.custom-theme .el-tabs--left,.custom-theme .el-tabs--right{overflow:hidden}.custom-theme .el-tabs--left .el-tabs__header,.custom-theme .el-tabs--left .el-tabs__nav-scroll,.custom-theme .el-tabs--left .el-tabs__nav-wrap,.custom-theme .el-tabs--right .el-tabs__header,.custom-theme .el-tabs--right .el-tabs__nav-scroll,.custom-theme .el-tabs--right .el-tabs__nav-wrap{height:100%}.custom-theme .el-tabs--left .el-tabs__active-bar,.custom-theme .el-tabs--right .el-tabs__active-bar{top:0;bottom:auto;width:2px;height:auto}.custom-theme .el-tabs--left .el-tabs__nav-wrap,.custom-theme .el-tabs--right .el-tabs__nav-wrap{margin-bottom:0}.custom-theme .el-tabs--left .el-tabs__nav-wrap.is-scrollable,.custom-theme .el-tabs--right .el-tabs__nav-wrap.is-scrollable{padding:30px 0}.custom-theme .el-tabs--left .el-tabs__nav-wrap::after,.custom-theme .el-tabs--right .el-tabs__nav-wrap::after{height:100%;width:2px;bottom:auto;top:0}.custom-theme .el-tabs--left .el-tabs__nav,.custom-theme .el-tabs--right .el-tabs__nav{float:none}.custom-theme .el-tabs--left .el-tabs__item,.custom-theme .el-tabs--right .el-tabs__item{display:block}.custom-theme .el-tabs--left .el-tabs__nav-next,.custom-theme .el-tabs--left .el-tabs__nav-prev,.custom-theme .el-tabs--right .el-tabs__nav-next,.custom-theme .el-tabs--right .el-tabs__nav-prev{height:30px;line-height:30px;width:100%;text-align:center;cursor:pointer}.custom-theme .el-tabs--left .el-tabs__nav-next i,.custom-theme .el-tabs--left .el-tabs__nav-prev i,.custom-theme .el-tabs--right .el-tabs__nav-next i,.custom-theme .el-tabs--right .el-tabs__nav-prev i{-webkit-transform:rotateZ(90deg);transform:rotateZ(90deg)}.custom-theme .el-tabs--left .el-tabs__nav-prev,.custom-theme .el-tabs--right .el-tabs__nav-prev{left:auto;top:0}.custom-theme .el-tabs--left .el-tabs__nav-next,.custom-theme .el-tabs--right .el-tabs__nav-next{right:auto;bottom:0}.custom-theme .el-tabs--left .el-tabs__header{float:left;margin-bottom:0;margin-right:10px}.custom-theme .el-tabs--left .el-tabs__nav-wrap{margin-right:-1px}.custom-theme .el-tabs--left .el-tabs__nav-wrap::after{left:auto;right:0}.custom-theme .el-tabs--left .el-tabs__active-bar{right:0;left:auto}.custom-theme .el-tabs--left .el-tabs__item{text-align:right}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__active-bar{display:none}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__item{border-left:none;border-right:1px solid #dfe4ed;border-bottom:none;border-top:1px solid #dfe4ed}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__item:first-child{border-right:1px solid #dfe4ed;border-top:none}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__item.is-active{border:1px solid #dfe4ed;border-right-color:#fff;border-left:none;border-bottom:none}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__item.is-active:first-child{border-top:none}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__item.is-active:last-child{border-bottom:none}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__nav{border-radius:4px 0 0 4px;border-bottom:1px solid #dfe4ed;border-right:none}.custom-theme .el-tabs--left.el-tabs--card .el-tabs__new-tab{float:none}.custom-theme .el-tabs--left.el-tabs--border-card .el-tabs__header{border-right:1px solid #dfe4ed}.custom-theme .el-tabs--left.el-tabs--border-card .el-tabs__item{border:1px solid transparent;margin:-1px 0 -1px -1px}.custom-theme .el-tabs--left.el-tabs--border-card .el-tabs__item.is-active{border-color:transparent;border-top-color:#d1dbe5;border-bottom-color:#d1dbe5}.custom-theme .el-tabs--right .el-tabs__header{float:right;margin-bottom:0;margin-left:10px}.custom-theme .el-tabs--right .el-tabs__nav-wrap{margin-left:-1px}.custom-theme .el-tabs--right .el-tabs__nav-wrap::after{left:0;right:auto}.custom-theme .el-tabs--right .el-tabs__active-bar{left:0}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__active-bar{display:none}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__item{border-bottom:none;border-top:1px solid #dfe4ed}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__item:first-child{border-left:1px solid #dfe4ed;border-top:none}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__item.is-active{border:1px solid #dfe4ed;border-left-color:#fff;border-right:none;border-bottom:none}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__item.is-active:first-child{border-top:none}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__item.is-active:last-child{border-bottom:none}.custom-theme .el-tabs--right.el-tabs--card .el-tabs__nav{border-radius:0 4px 4px 0;border-bottom:1px solid #dfe4ed;border-left:none}.custom-theme .el-tabs--right.el-tabs--border-card .el-tabs__header{border-left:1px solid #dfe4ed}.custom-theme .el-tabs--right.el-tabs--border-card .el-tabs__item{border:1px solid transparent;margin:-1px -1px -1px 0}.custom-theme .el-tabs--right.el-tabs--border-card .el-tabs__item.is-active{border-color:transparent;border-top-color:#d1dbe5;border-bottom-color:#d1dbe5}.custom-theme .slideInLeft-transition,.custom-theme .slideInRight-transition{display:inline-block}.custom-theme .slideInRight-enter{-webkit-animation:slideInRight-enter .3s;animation:slideInRight-enter .3s}.custom-theme .slideInRight-leave{position:absolute;left:0;right:0;-webkit-animation:slideInRight-leave .3s;animation:slideInRight-leave .3s}.custom-theme .slideInLeft-enter{-webkit-animation:slideInLeft-enter .3s;animation:slideInLeft-enter .3s}.custom-theme .slideInLeft-leave{position:absolute;left:0;right:0;-webkit-animation:slideInLeft-leave .3s;animation:slideInLeft-leave .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)}}@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)}}@-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}}@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}}@-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)}}@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)}}@-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}}@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}}.custom-theme .el-tag{background-color:rgba(38,39,41,.1);display:inline-block;padding:0 10px;height:32px;line-height:30px;font-size:12px;color:#262729;border-radius:4px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid rgba(38,39,41,.2);white-space:nowrap}.custom-theme .el-tag .el-icon-close{border-radius:50%;text-align:center;position:relative;cursor:pointer;font-size:12px;height:18px;width:18px;line-height:18px;vertical-align:middle;top:-1px;right:-5px;color:#262729}.custom-theme .el-tag .el-icon-close::before{display:block}.custom-theme .el-tag .el-icon-close:hover{background-color:#262729;color:#fff}.custom-theme .el-tag--info{background-color:rgba(10,118,164,.1);border-color:rgba(10,118,164,.2);color:#0a76a4}.custom-theme .el-tag--info.is-hit{border-color:#0a76a4}.custom-theme .el-tag--info .el-tag__close{color:#0a76a4}.custom-theme .el-tag--info .el-tag__close:hover{background-color:#0a76a4;color:#fff}.custom-theme .el-tag--success{background-color:rgba(64,145,103,.1);border-color:rgba(64,145,103,.2);color:#409167}.custom-theme .el-tag--success.is-hit{border-color:#409167}.custom-theme .el-tag--success .el-tag__close{color:#409167}.custom-theme .el-tag--success .el-tag__close:hover{background-color:#409167;color:#fff}.custom-theme .el-tag--warning{background-color:rgba(157,164,8,.1);border-color:rgba(157,164,8,.2);color:#9da408}.custom-theme .el-tag--warning.is-hit{border-color:#9da408}.custom-theme .el-tag--warning .el-tag__close{color:#9da408}.custom-theme .el-tag--warning .el-tag__close:hover{background-color:#9da408;color:#fff}.custom-theme .el-tag--danger{background-color:rgba(179,69,14,.1);border-color:rgba(179,69,14,.2);color:#b3450e}.custom-theme .el-tag--danger.is-hit{border-color:#b3450e}.custom-theme .el-tag--danger .el-tag__close{color:#b3450e}.custom-theme .el-tag--danger .el-tag__close:hover{background-color:#b3450e;color:#fff}.custom-theme .el-tag--medium{height:28px;line-height:26px}.custom-theme .el-tag--medium .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--small{height:24px;padding:0 8px;line-height:22px}.custom-theme .el-tag--small .el-icon-close{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-tag--mini{height:20px;padding:0 5px;line-height:19px}.custom-theme .el-tag--mini .el-icon-close{margin-left:-3px;-webkit-transform:scale(.7);transform:scale(.7)}.custom-theme .el-tree{cursor:default;background:#fff;color:#5a5e66}.custom-theme .el-tree__empty-block{position:relative;min-height:60px;text-align:center;width:100%;height:100%}.custom-theme .el-tree__empty-text{position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#623615}.custom-theme .el-tree-node{white-space:nowrap}.custom-theme .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}.custom-theme .el-tree-node__content>.el-tree-node__expand-icon{padding:6px}.custom-theme .el-tree-node__content>.el-checkbox{margin-right:8px}.custom-theme .el-tree-node__content:hover{background-color:#f5f7fa}.custom-theme .el-tree-node__expand-icon{cursor:pointer;color:#b4bccc;font-size:12px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform .3s ease-in-out;transition:-webkit-transform .3s ease-in-out;transition:transform .3s ease-in-out;transition:transform .3s ease-in-out,-webkit-transform .3s ease-in-out}.custom-theme .el-tree-node__expand-icon.expanded{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.custom-theme .el-tree-node__expand-icon.is-leaf{color:transparent;cursor:default}.custom-theme .el-tree-node__label{font-size:14px}.custom-theme .el-tree-node__loading-icon{margin-right:8px;font-size:14px;color:#b4bccc}.custom-theme .el-tree-node>.el-tree-node__children{overflow:hidden;background-color:transparent}.custom-theme .el-tree-node.is-expanded>.el-tree-node__children{display:block}.custom-theme .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content{background-color:#eee}.custom-theme .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 .2s;transition:opacity .2s}.custom-theme .el-alert.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.custom-theme .el-alert--success{background-color:#ecf4f0;color:#409167}.custom-theme .el-alert--success .el-alert__description{color:#409167}.custom-theme .el-alert--info{background-color:#e7f1f6;color:#0a76a4}.custom-theme .el-alert--info .el-alert__description{color:#0a76a4}.custom-theme .el-alert--warning{background-color:#f5f6e6;color:#9da408}.custom-theme .el-alert--warning .el-alert__description{color:#9da408}.custom-theme .el-alert--error{background-color:#f7ece7;color:#b3450e}.custom-theme .el-alert--error .el-alert__description{color:#b3450e}.custom-theme .el-alert__content{display:table-cell;padding:0 8px}.custom-theme .el-alert__icon{font-size:16px;width:16px}.custom-theme .el-alert__icon.is-big{font-size:28px;width:28px}.custom-theme .el-alert__title{font-size:13px;line-height:18px}.custom-theme .el-alert__title.is-bold{font-weight:700}.custom-theme .el-alert .el-alert__description{font-size:12px;margin:5px 0 0 0}.custom-theme .el-alert__closebtn{font-size:12px;color:#b4bccc;opacity:1;position:absolute;top:12px;right:15px;cursor:pointer}.custom-theme .el-alert__closebtn.is-customed{font-style:normal;font-size:13px;top:9px}.custom-theme .el-alert-fade-enter,.custom-theme .el-alert-fade-leave-active{opacity:0}.custom-theme .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 #e6ebf5;position:fixed;background-color:#fff;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);-webkit-transition:opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;transition:opacity .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;transition:opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s;transition:opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s,-webkit-transform .3s;overflow:hidden}.custom-theme .el-notification.right{right:16px}.custom-theme .el-notification.left{left:16px}.custom-theme .el-notification__group{margin-left:13px}.custom-theme .el-notification__title{font-weight:700;font-size:16px;color:#2d2f33;margin:0}.custom-theme .el-notification__content{font-size:14px;line-height:21px;margin:6px 0 0 0;color:#5a5e66;text-align:justify}.custom-theme .el-notification__content p{margin:0}.custom-theme .el-notification__icon{height:24px;width:24px;font-size:24px;-webkit-transform:translateY(4px);transform:translateY(4px)}.custom-theme .el-notification__closeBtn{position:absolute;top:15px;right:15px;cursor:pointer;color:#878d99;font-size:16px}.custom-theme .el-notification__closeBtn:hover{color:#5a5e66}.custom-theme .el-notification .el-icon-success{color:#409167}.custom-theme .el-notification .el-icon-error{color:#b3450e}.custom-theme .el-notification .el-icon-info{color:#0a76a4}.custom-theme .el-notification .el-icon-warning{color:#9da408}.custom-theme .el-notification-fade-enter.right{right:0;-webkit-transform:translateX(100%);transform:translateX(100%)}.custom-theme .el-notification-fade-enter.left{left:0;-webkit-transform:translateX(-100%);transform:translateX(-100%)}.custom-theme .el-notification-fade-leave-active{opacity:0}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-input-number{position:relative;display:inline-block;width:180px;line-height:38px}.custom-theme .el-input-number .el-input{display:block}.custom-theme .el-input-number .el-input__inner{-webkit-appearance:none;padding-left:50px;padding-right:50px;text-align:center}.custom-theme .el-input-number__decrease,.custom-theme .el-input-number__increase{position:absolute;z-index:1;top:1px;width:40px;height:auto;text-align:center;background:#f5f7fa;color:#5a5e66;cursor:pointer;font-size:13px}.custom-theme .el-input-number__decrease:hover,.custom-theme .el-input-number__increase:hover{color:#262729}.custom-theme .el-input-number__decrease:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled),.custom-theme .el-input-number__increase:hover:not(.is-disabled)~.el-input .el-input__inner:not(.is-disabled){border-color:#262729}.custom-theme .el-input-number__decrease.is-disabled,.custom-theme .el-input-number__increase.is-disabled{color:#b4bccc;cursor:not-allowed}.custom-theme .el-input-number__increase{right:1px;border-radius:0 4px 4px 0;border-left:1px solid #d8dce5}.custom-theme .el-input-number__decrease{left:1px;border-radius:4px 0 0 4px;border-right:1px solid #d8dce5}.custom-theme .el-input-number.is-disabled .el-input-number__decrease,.custom-theme .el-input-number.is-disabled .el-input-number__increase{border-color:#dfe4ed;color:#dfe4ed}.custom-theme .el-input-number.is-disabled .el-input-number__decrease:hover,.custom-theme .el-input-number.is-disabled .el-input-number__increase:hover{color:#dfe4ed;cursor:not-allowed}.custom-theme .el-input-number--medium{width:200px;line-height:34px}.custom-theme .el-input-number--medium .el-input-number__decrease,.custom-theme .el-input-number--medium .el-input-number__increase{width:36px;font-size:14px}.custom-theme .el-input-number--medium .el-input__inner{padding-left:43px;padding-right:43px}.custom-theme .el-input-number--small{width:130px;line-height:30px}.custom-theme .el-input-number--small .el-input-number__decrease,.custom-theme .el-input-number--small .el-input-number__increase{width:32px;font-size:13px}.custom-theme .el-input-number--small .el-input-number__decrease [class*=el-icon],.custom-theme .el-input-number--small .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.9);transform:scale(.9)}.custom-theme .el-input-number--small .el-input__inner{padding-left:39px;padding-right:39px}.custom-theme .el-input-number--mini{width:130px;line-height:26px}.custom-theme .el-input-number--mini .el-input-number__decrease,.custom-theme .el-input-number--mini .el-input-number__increase{width:28px;font-size:12px}.custom-theme .el-input-number--mini .el-input-number__decrease [class*=el-icon],.custom-theme .el-input-number--mini .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-input-number--mini .el-input__inner{padding-left:35px;padding-right:35px}.custom-theme .el-input-number.is-without-controls .el-input__inner{padding-left:15px;padding-right:15px}.custom-theme .el-input-number.is-controls-right .el-input__inner{padding-left:15px;padding-right:50px}.custom-theme .el-input-number.is-controls-right .el-input-number__decrease,.custom-theme .el-input-number.is-controls-right .el-input-number__increase{height:auto;line-height:19px}.custom-theme .el-input-number.is-controls-right .el-input-number__decrease [class*=el-icon],.custom-theme .el-input-number.is-controls-right .el-input-number__increase [class*=el-icon]{-webkit-transform:scale(.8);transform:scale(.8)}.custom-theme .el-input-number.is-controls-right .el-input-number__increase{border-radius:0 4px 0 0;border-bottom:1px solid #d8dce5}.custom-theme .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 #d8dce5;border-radius:0 0 4px 0}.custom-theme .el-input-number.is-controls-right[class*=medium] [class*=decrease],.custom-theme .el-input-number.is-controls-right[class*=medium] [class*=increase]{line-height:17px}.custom-theme .el-input-number.is-controls-right[class*=small] [class*=decrease],.custom-theme .el-input-number.is-controls-right[class*=small] [class*=increase]{line-height:15px}.custom-theme .el-input-number.is-controls-right[class*=mini] [class*=decrease],.custom-theme .el-input-number.is-controls-right[class*=mini] [class*=increase]{line-height:13px}.custom-theme .el-tooltip__popper{position:absolute;border-radius:4px;padding:10px;z-index:2000;font-size:12px;line-height:1.2}.custom-theme .el-tooltip__popper .popper__arrow,.custom-theme .el-tooltip__popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-tooltip__popper .popper__arrow{border-width:6px}.custom-theme .el-tooltip__popper .popper__arrow::after{content:" ";border-width:5px}.custom-theme .el-tooltip__popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-tooltip__popper[x-placement^=top] .popper__arrow{bottom:-6px;border-top-color:#2d2f33;border-bottom-width:0}.custom-theme .el-tooltip__popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-5px;border-top-color:#2d2f33;border-bottom-width:0}.custom-theme .el-tooltip__popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-tooltip__popper[x-placement^=bottom] .popper__arrow{top:-6px;border-top-width:0;border-bottom-color:#2d2f33}.custom-theme .el-tooltip__popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#2d2f33}.custom-theme .el-tooltip__popper[x-placement^=right]{margin-left:12px}.custom-theme .el-tooltip__popper[x-placement^=right] .popper__arrow{left:-6px;border-right-color:#2d2f33;border-left-width:0}.custom-theme .el-tooltip__popper[x-placement^=right] .popper__arrow::after{bottom:-5px;left:1px;border-right-color:#2d2f33;border-left-width:0}.custom-theme .el-tooltip__popper[x-placement^=left]{margin-right:12px}.custom-theme .el-tooltip__popper[x-placement^=left] .popper__arrow{right:-6px;border-right-width:0;border-left-color:#2d2f33}.custom-theme .el-tooltip__popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-5px;margin-left:-5px;border-right-width:0;border-left-color:#2d2f33}.custom-theme .el-tooltip__popper.is-dark{background:#2d2f33;color:#fff}.custom-theme .el-tooltip__popper.is-light{background:#fff;border:1px solid #2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=top] .popper__arrow{border-top-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=top] .popper__arrow::after{border-top-color:#fff}.custom-theme .el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow{border-bottom-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=bottom] .popper__arrow::after{border-bottom-color:#fff}.custom-theme .el-tooltip__popper.is-light[x-placement^=left] .popper__arrow{border-left-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=left] .popper__arrow::after{border-left-color:#fff}.custom-theme .el-tooltip__popper.is-light[x-placement^=right] .popper__arrow{border-right-color:#2d2f33}.custom-theme .el-tooltip__popper.is-light[x-placement^=right] .popper__arrow::after{border-right-color:#fff}.custom-theme .el-slider::after,.custom-theme .el-slider::before{display:table;content:""}.custom-theme .el-slider::after{clear:both}.custom-theme .el-slider__runway{width:100%;height:6px;margin:16px 0;background-color:#dfe4ed;border-radius:3px;position:relative;cursor:pointer;vertical-align:middle}.custom-theme .el-slider__runway.show-input{margin-right:160px;width:auto}.custom-theme .el-slider__runway.disabled{cursor:default}.custom-theme .el-slider__runway.disabled .el-slider__bar{background-color:#b4bccc}.custom-theme .el-slider__runway.disabled .el-slider__button{border-color:#b4bccc}.custom-theme .el-slider__runway.disabled .el-slider__button-wrapper.hover,.custom-theme .el-slider__runway.disabled .el-slider__button-wrapper:hover{cursor:not-allowed}.custom-theme .el-slider__runway.disabled .el-slider__button-wrapper.dragging{cursor:not-allowed}.custom-theme .el-slider__runway.disabled .el-slider__button.dragging,.custom-theme .el-slider__runway.disabled .el-slider__button.hover,.custom-theme .el-slider__runway.disabled .el-slider__button:hover{-webkit-transform:scale(1);transform:scale(1)}.custom-theme .el-slider__runway.disabled .el-slider__button.hover,.custom-theme .el-slider__runway.disabled .el-slider__button:hover{cursor:not-allowed}.custom-theme .el-slider__runway.disabled .el-slider__button.dragging{cursor:not-allowed}.custom-theme .el-slider__input{float:right;margin-top:3px}.custom-theme .el-slider__bar{height:6px;background-color:#262729;border-top-left-radius:3px;border-bottom-left-radius:3px;position:absolute}.custom-theme .el-slider__button-wrapper{height:36px;width:36px;position:absolute;z-index:1001;top:-15px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-slider__button-wrapper::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-slider__button-wrapper .el-tooltip{vertical-align:middle;display:inline-block}.custom-theme .el-slider__button-wrapper.hover,.custom-theme .el-slider__button-wrapper:hover{cursor:-webkit-grab;cursor:grab}.custom-theme .el-slider__button-wrapper.dragging{cursor:-webkit-grabbing;cursor:grabbing}.custom-theme .el-slider__button{width:16px;height:16px;border:solid 2px #262729;background-color:#fff;border-radius:50%;-webkit-transition:.2s;transition:.2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-slider__button.dragging,.custom-theme .el-slider__button.hover,.custom-theme .el-slider__button:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.custom-theme .el-slider__button.hover,.custom-theme .el-slider__button:hover{cursor:-webkit-grab;cursor:grab}.custom-theme .el-slider__button.dragging{cursor:-webkit-grabbing;cursor:grabbing}.custom-theme .el-slider__stop{position:absolute;height:6px;width:6px;border-radius:100%;background-color:#fff;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.custom-theme .el-slider.is-vertical{position:relative}.custom-theme .el-slider.is-vertical .el-slider__runway{width:4px;height:100%;margin:0 16px}.custom-theme .el-slider.is-vertical .el-slider__bar{width:4px;height:auto;border-radius:0 0 3px 3px}.custom-theme .el-slider.is-vertical .el-slider__button-wrapper{top:auto;left:-15px;-webkit-transform:translateY(50%);transform:translateY(50%)}.custom-theme .el-slider.is-vertical .el-slider__stop{-webkit-transform:translateY(50%);transform:translateY(50%)}.custom-theme .el-slider.is-vertical.el-slider--with-input{padding-bottom:58px}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input{overflow:visible;float:none;position:absolute;bottom:22px;width:36px;margin-top:15px}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input__inner{text-align:center;padding-left:5px;padding-right:5px}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease,.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{top:32px;margin-top:-1px;border:1px solid #d8dce5;line-height:20px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__decrease{width:18px;right:18px;border-bottom-left-radius:4px}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input .el-input-number__increase{width:19px;border-bottom-right-radius:4px}.custom-theme .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}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__decrease,.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input:hover .el-input-number__increase{border-color:#b4bccc}.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__decrease,.custom-theme .el-slider.is-vertical.el-slider--with-input .el-slider__input:active .el-input-number__increase{border-color:#262729}.custom-theme .el-loading-parent--relative{position:relative!important}.custom-theme .el-loading-parent--hidden{overflow:hidden!important}.custom-theme .el-loading-mask{position:absolute;z-index:10000;background-color:rgba(255,255,255,.9);margin:0;top:0;right:0;bottom:0;left:0;-webkit-transition:opacity .3s;transition:opacity .3s}.custom-theme .el-loading-mask.is-fullscreen{position:fixed}.custom-theme .el-loading-mask.is-fullscreen .el-loading-spinner{margin-top:-25px}.custom-theme .el-loading-mask.is-fullscreen .el-loading-spinner .circular{height:50px;width:50px}.custom-theme .el-loading-spinner{top:50%;margin-top:-21px;width:100%;text-align:center;position:absolute}.custom-theme .el-loading-spinner .el-loading-text{color:#262729;margin:3px 0;font-size:14px}.custom-theme .el-loading-spinner .circular{height:42px;width:42px;-webkit-animation:loading-rotate 2s linear infinite;animation:loading-rotate 2s linear infinite}.custom-theme .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:#262729;stroke-linecap:round}.custom-theme .el-loading-spinner i{color:#262729}.custom-theme .el-loading-fade-enter,.custom-theme .el-loading-fade-leave-active{opacity:0}@-webkit-keyframes loading-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes loading-rotate{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}}@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}}.custom-theme .el-row{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-row::after,.custom-theme .el-row::before{display:table;content:""}.custom-theme .el-row::after{clear:both}.custom-theme .el-row--flex{display:-webkit-box;display:-ms-flexbox;display:flex}.custom-theme .el-row--flex:after,.custom-theme .el-row--flex:before{display:none}.custom-theme .el-row--flex.is-justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.custom-theme .el-row--flex.is-justify-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.custom-theme .el-row--flex.is-justify-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.custom-theme .el-row--flex.is-justify-space-around{-ms-flex-pack:distribute;justify-content:space-around}.custom-theme .el-row--flex.is-align-middle{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.custom-theme .el-row--flex.is-align-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.custom-theme [class*=el-col-]{float:left;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-col-0{display:none}.custom-theme .el-col-1{width:4.16667%}.custom-theme .el-col-offset-1{margin-left:4.16667%}.custom-theme .el-col-pull-1{position:relative;right:4.16667%}.custom-theme .el-col-push-1{position:relative;left:4.16667%}.custom-theme .el-col-2{width:8.33333%}.custom-theme .el-col-offset-2{margin-left:8.33333%}.custom-theme .el-col-pull-2{position:relative;right:8.33333%}.custom-theme .el-col-push-2{position:relative;left:8.33333%}.custom-theme .el-col-3{width:12.5%}.custom-theme .el-col-offset-3{margin-left:12.5%}.custom-theme .el-col-pull-3{position:relative;right:12.5%}.custom-theme .el-col-push-3{position:relative;left:12.5%}.custom-theme .el-col-4{width:16.66667%}.custom-theme .el-col-offset-4{margin-left:16.66667%}.custom-theme .el-col-pull-4{position:relative;right:16.66667%}.custom-theme .el-col-push-4{position:relative;left:16.66667%}.custom-theme .el-col-5{width:20.83333%}.custom-theme .el-col-offset-5{margin-left:20.83333%}.custom-theme .el-col-pull-5{position:relative;right:20.83333%}.custom-theme .el-col-push-5{position:relative;left:20.83333%}.custom-theme .el-col-6{width:25%}.custom-theme .el-col-offset-6{margin-left:25%}.custom-theme .el-col-pull-6{position:relative;right:25%}.custom-theme .el-col-push-6{position:relative;left:25%}.custom-theme .el-col-7{width:29.16667%}.custom-theme .el-col-offset-7{margin-left:29.16667%}.custom-theme .el-col-pull-7{position:relative;right:29.16667%}.custom-theme .el-col-push-7{position:relative;left:29.16667%}.custom-theme .el-col-8{width:33.33333%}.custom-theme .el-col-offset-8{margin-left:33.33333%}.custom-theme .el-col-pull-8{position:relative;right:33.33333%}.custom-theme .el-col-push-8{position:relative;left:33.33333%}.custom-theme .el-col-9{width:37.5%}.custom-theme .el-col-offset-9{margin-left:37.5%}.custom-theme .el-col-pull-9{position:relative;right:37.5%}.custom-theme .el-col-push-9{position:relative;left:37.5%}.custom-theme .el-col-10{width:41.66667%}.custom-theme .el-col-offset-10{margin-left:41.66667%}.custom-theme .el-col-pull-10{position:relative;right:41.66667%}.custom-theme .el-col-push-10{position:relative;left:41.66667%}.custom-theme .el-col-11{width:45.83333%}.custom-theme .el-col-offset-11{margin-left:45.83333%}.custom-theme .el-col-pull-11{position:relative;right:45.83333%}.custom-theme .el-col-push-11{position:relative;left:45.83333%}.custom-theme .el-col-12{width:50%}.custom-theme .el-col-offset-12{margin-left:50%}.custom-theme .el-col-pull-12{position:relative;right:50%}.custom-theme .el-col-push-12{position:relative;left:50%}.custom-theme .el-col-13{width:54.16667%}.custom-theme .el-col-offset-13{margin-left:54.16667%}.custom-theme .el-col-pull-13{position:relative;right:54.16667%}.custom-theme .el-col-push-13{position:relative;left:54.16667%}.custom-theme .el-col-14{width:58.33333%}.custom-theme .el-col-offset-14{margin-left:58.33333%}.custom-theme .el-col-pull-14{position:relative;right:58.33333%}.custom-theme .el-col-push-14{position:relative;left:58.33333%}.custom-theme .el-col-15{width:62.5%}.custom-theme .el-col-offset-15{margin-left:62.5%}.custom-theme .el-col-pull-15{position:relative;right:62.5%}.custom-theme .el-col-push-15{position:relative;left:62.5%}.custom-theme .el-col-16{width:66.66667%}.custom-theme .el-col-offset-16{margin-left:66.66667%}.custom-theme .el-col-pull-16{position:relative;right:66.66667%}.custom-theme .el-col-push-16{position:relative;left:66.66667%}.custom-theme .el-col-17{width:70.83333%}.custom-theme .el-col-offset-17{margin-left:70.83333%}.custom-theme .el-col-pull-17{position:relative;right:70.83333%}.custom-theme .el-col-push-17{position:relative;left:70.83333%}.custom-theme .el-col-18{width:75%}.custom-theme .el-col-offset-18{margin-left:75%}.custom-theme .el-col-pull-18{position:relative;right:75%}.custom-theme .el-col-push-18{position:relative;left:75%}.custom-theme .el-col-19{width:79.16667%}.custom-theme .el-col-offset-19{margin-left:79.16667%}.custom-theme .el-col-pull-19{position:relative;right:79.16667%}.custom-theme .el-col-push-19{position:relative;left:79.16667%}.custom-theme .el-col-20{width:83.33333%}.custom-theme .el-col-offset-20{margin-left:83.33333%}.custom-theme .el-col-pull-20{position:relative;right:83.33333%}.custom-theme .el-col-push-20{position:relative;left:83.33333%}.custom-theme .el-col-21{width:87.5%}.custom-theme .el-col-offset-21{margin-left:87.5%}.custom-theme .el-col-pull-21{position:relative;right:87.5%}.custom-theme .el-col-push-21{position:relative;left:87.5%}.custom-theme .el-col-22{width:91.66667%}.custom-theme .el-col-offset-22{margin-left:91.66667%}.custom-theme .el-col-pull-22{position:relative;right:91.66667%}.custom-theme .el-col-push-22{position:relative;left:91.66667%}.custom-theme .el-col-23{width:95.83333%}.custom-theme .el-col-offset-23{margin-left:95.83333%}.custom-theme .el-col-pull-23{position:relative;right:95.83333%}.custom-theme .el-col-push-23{position:relative;left:95.83333%}.custom-theme .el-col-24{width:100%}.custom-theme .el-col-offset-24{margin-left:100%}.custom-theme .el-col-pull-24{position:relative;right:100%}.custom-theme .el-col-push-24{position:relative;left:100%}@media only screen and (max-width:768px){.custom-theme .el-col-xs-0{display:none}.custom-theme .el-col-xs-1{width:4.16667%}.custom-theme .el-col-xs-offset-1{margin-left:4.16667%}.custom-theme .el-col-xs-pull-1{position:relative;right:4.16667%}.custom-theme .el-col-xs-push-1{position:relative;left:4.16667%}.custom-theme .el-col-xs-2{width:8.33333%}.custom-theme .el-col-xs-offset-2{margin-left:8.33333%}.custom-theme .el-col-xs-pull-2{position:relative;right:8.33333%}.custom-theme .el-col-xs-push-2{position:relative;left:8.33333%}.custom-theme .el-col-xs-3{width:12.5%}.custom-theme .el-col-xs-offset-3{margin-left:12.5%}.custom-theme .el-col-xs-pull-3{position:relative;right:12.5%}.custom-theme .el-col-xs-push-3{position:relative;left:12.5%}.custom-theme .el-col-xs-4{width:16.66667%}.custom-theme .el-col-xs-offset-4{margin-left:16.66667%}.custom-theme .el-col-xs-pull-4{position:relative;right:16.66667%}.custom-theme .el-col-xs-push-4{position:relative;left:16.66667%}.custom-theme .el-col-xs-5{width:20.83333%}.custom-theme .el-col-xs-offset-5{margin-left:20.83333%}.custom-theme .el-col-xs-pull-5{position:relative;right:20.83333%}.custom-theme .el-col-xs-push-5{position:relative;left:20.83333%}.custom-theme .el-col-xs-6{width:25%}.custom-theme .el-col-xs-offset-6{margin-left:25%}.custom-theme .el-col-xs-pull-6{position:relative;right:25%}.custom-theme .el-col-xs-push-6{position:relative;left:25%}.custom-theme .el-col-xs-7{width:29.16667%}.custom-theme .el-col-xs-offset-7{margin-left:29.16667%}.custom-theme .el-col-xs-pull-7{position:relative;right:29.16667%}.custom-theme .el-col-xs-push-7{position:relative;left:29.16667%}.custom-theme .el-col-xs-8{width:33.33333%}.custom-theme .el-col-xs-offset-8{margin-left:33.33333%}.custom-theme .el-col-xs-pull-8{position:relative;right:33.33333%}.custom-theme .el-col-xs-push-8{position:relative;left:33.33333%}.custom-theme .el-col-xs-9{width:37.5%}.custom-theme .el-col-xs-offset-9{margin-left:37.5%}.custom-theme .el-col-xs-pull-9{position:relative;right:37.5%}.custom-theme .el-col-xs-push-9{position:relative;left:37.5%}.custom-theme .el-col-xs-10{width:41.66667%}.custom-theme .el-col-xs-offset-10{margin-left:41.66667%}.custom-theme .el-col-xs-pull-10{position:relative;right:41.66667%}.custom-theme .el-col-xs-push-10{position:relative;left:41.66667%}.custom-theme .el-col-xs-11{width:45.83333%}.custom-theme .el-col-xs-offset-11{margin-left:45.83333%}.custom-theme .el-col-xs-pull-11{position:relative;right:45.83333%}.custom-theme .el-col-xs-push-11{position:relative;left:45.83333%}.custom-theme .el-col-xs-12{width:50%}.custom-theme .el-col-xs-offset-12{margin-left:50%}.custom-theme .el-col-xs-pull-12{position:relative;right:50%}.custom-theme .el-col-xs-push-12{position:relative;left:50%}.custom-theme .el-col-xs-13{width:54.16667%}.custom-theme .el-col-xs-offset-13{margin-left:54.16667%}.custom-theme .el-col-xs-pull-13{position:relative;right:54.16667%}.custom-theme .el-col-xs-push-13{position:relative;left:54.16667%}.custom-theme .el-col-xs-14{width:58.33333%}.custom-theme .el-col-xs-offset-14{margin-left:58.33333%}.custom-theme .el-col-xs-pull-14{position:relative;right:58.33333%}.custom-theme .el-col-xs-push-14{position:relative;left:58.33333%}.custom-theme .el-col-xs-15{width:62.5%}.custom-theme .el-col-xs-offset-15{margin-left:62.5%}.custom-theme .el-col-xs-pull-15{position:relative;right:62.5%}.custom-theme .el-col-xs-push-15{position:relative;left:62.5%}.custom-theme .el-col-xs-16{width:66.66667%}.custom-theme .el-col-xs-offset-16{margin-left:66.66667%}.custom-theme .el-col-xs-pull-16{position:relative;right:66.66667%}.custom-theme .el-col-xs-push-16{position:relative;left:66.66667%}.custom-theme .el-col-xs-17{width:70.83333%}.custom-theme .el-col-xs-offset-17{margin-left:70.83333%}.custom-theme .el-col-xs-pull-17{position:relative;right:70.83333%}.custom-theme .el-col-xs-push-17{position:relative;left:70.83333%}.custom-theme .el-col-xs-18{width:75%}.custom-theme .el-col-xs-offset-18{margin-left:75%}.custom-theme .el-col-xs-pull-18{position:relative;right:75%}.custom-theme .el-col-xs-push-18{position:relative;left:75%}.custom-theme .el-col-xs-19{width:79.16667%}.custom-theme .el-col-xs-offset-19{margin-left:79.16667%}.custom-theme .el-col-xs-pull-19{position:relative;right:79.16667%}.custom-theme .el-col-xs-push-19{position:relative;left:79.16667%}.custom-theme .el-col-xs-20{width:83.33333%}.custom-theme .el-col-xs-offset-20{margin-left:83.33333%}.custom-theme .el-col-xs-pull-20{position:relative;right:83.33333%}.custom-theme .el-col-xs-push-20{position:relative;left:83.33333%}.custom-theme .el-col-xs-21{width:87.5%}.custom-theme .el-col-xs-offset-21{margin-left:87.5%}.custom-theme .el-col-xs-pull-21{position:relative;right:87.5%}.custom-theme .el-col-xs-push-21{position:relative;left:87.5%}.custom-theme .el-col-xs-22{width:91.66667%}.custom-theme .el-col-xs-offset-22{margin-left:91.66667%}.custom-theme .el-col-xs-pull-22{position:relative;right:91.66667%}.custom-theme .el-col-xs-push-22{position:relative;left:91.66667%}.custom-theme .el-col-xs-23{width:95.83333%}.custom-theme .el-col-xs-offset-23{margin-left:95.83333%}.custom-theme .el-col-xs-pull-23{position:relative;right:95.83333%}.custom-theme .el-col-xs-push-23{position:relative;left:95.83333%}.custom-theme .el-col-xs-24{width:100%}.custom-theme .el-col-xs-offset-24{margin-left:100%}.custom-theme .el-col-xs-pull-24{position:relative;right:100%}.custom-theme .el-col-xs-push-24{position:relative;left:100%}}@media only screen and (min-width:768px){.custom-theme .el-col-sm-0{display:none}.custom-theme .el-col-sm-1{width:4.16667%}.custom-theme .el-col-sm-offset-1{margin-left:4.16667%}.custom-theme .el-col-sm-pull-1{position:relative;right:4.16667%}.custom-theme .el-col-sm-push-1{position:relative;left:4.16667%}.custom-theme .el-col-sm-2{width:8.33333%}.custom-theme .el-col-sm-offset-2{margin-left:8.33333%}.custom-theme .el-col-sm-pull-2{position:relative;right:8.33333%}.custom-theme .el-col-sm-push-2{position:relative;left:8.33333%}.custom-theme .el-col-sm-3{width:12.5%}.custom-theme .el-col-sm-offset-3{margin-left:12.5%}.custom-theme .el-col-sm-pull-3{position:relative;right:12.5%}.custom-theme .el-col-sm-push-3{position:relative;left:12.5%}.custom-theme .el-col-sm-4{width:16.66667%}.custom-theme .el-col-sm-offset-4{margin-left:16.66667%}.custom-theme .el-col-sm-pull-4{position:relative;right:16.66667%}.custom-theme .el-col-sm-push-4{position:relative;left:16.66667%}.custom-theme .el-col-sm-5{width:20.83333%}.custom-theme .el-col-sm-offset-5{margin-left:20.83333%}.custom-theme .el-col-sm-pull-5{position:relative;right:20.83333%}.custom-theme .el-col-sm-push-5{position:relative;left:20.83333%}.custom-theme .el-col-sm-6{width:25%}.custom-theme .el-col-sm-offset-6{margin-left:25%}.custom-theme .el-col-sm-pull-6{position:relative;right:25%}.custom-theme .el-col-sm-push-6{position:relative;left:25%}.custom-theme .el-col-sm-7{width:29.16667%}.custom-theme .el-col-sm-offset-7{margin-left:29.16667%}.custom-theme .el-col-sm-pull-7{position:relative;right:29.16667%}.custom-theme .el-col-sm-push-7{position:relative;left:29.16667%}.custom-theme .el-col-sm-8{width:33.33333%}.custom-theme .el-col-sm-offset-8{margin-left:33.33333%}.custom-theme .el-col-sm-pull-8{position:relative;right:33.33333%}.custom-theme .el-col-sm-push-8{position:relative;left:33.33333%}.custom-theme .el-col-sm-9{width:37.5%}.custom-theme .el-col-sm-offset-9{margin-left:37.5%}.custom-theme .el-col-sm-pull-9{position:relative;right:37.5%}.custom-theme .el-col-sm-push-9{position:relative;left:37.5%}.custom-theme .el-col-sm-10{width:41.66667%}.custom-theme .el-col-sm-offset-10{margin-left:41.66667%}.custom-theme .el-col-sm-pull-10{position:relative;right:41.66667%}.custom-theme .el-col-sm-push-10{position:relative;left:41.66667%}.custom-theme .el-col-sm-11{width:45.83333%}.custom-theme .el-col-sm-offset-11{margin-left:45.83333%}.custom-theme .el-col-sm-pull-11{position:relative;right:45.83333%}.custom-theme .el-col-sm-push-11{position:relative;left:45.83333%}.custom-theme .el-col-sm-12{width:50%}.custom-theme .el-col-sm-offset-12{margin-left:50%}.custom-theme .el-col-sm-pull-12{position:relative;right:50%}.custom-theme .el-col-sm-push-12{position:relative;left:50%}.custom-theme .el-col-sm-13{width:54.16667%}.custom-theme .el-col-sm-offset-13{margin-left:54.16667%}.custom-theme .el-col-sm-pull-13{position:relative;right:54.16667%}.custom-theme .el-col-sm-push-13{position:relative;left:54.16667%}.custom-theme .el-col-sm-14{width:58.33333%}.custom-theme .el-col-sm-offset-14{margin-left:58.33333%}.custom-theme .el-col-sm-pull-14{position:relative;right:58.33333%}.custom-theme .el-col-sm-push-14{position:relative;left:58.33333%}.custom-theme .el-col-sm-15{width:62.5%}.custom-theme .el-col-sm-offset-15{margin-left:62.5%}.custom-theme .el-col-sm-pull-15{position:relative;right:62.5%}.custom-theme .el-col-sm-push-15{position:relative;left:62.5%}.custom-theme .el-col-sm-16{width:66.66667%}.custom-theme .el-col-sm-offset-16{margin-left:66.66667%}.custom-theme .el-col-sm-pull-16{position:relative;right:66.66667%}.custom-theme .el-col-sm-push-16{position:relative;left:66.66667%}.custom-theme .el-col-sm-17{width:70.83333%}.custom-theme .el-col-sm-offset-17{margin-left:70.83333%}.custom-theme .el-col-sm-pull-17{position:relative;right:70.83333%}.custom-theme .el-col-sm-push-17{position:relative;left:70.83333%}.custom-theme .el-col-sm-18{width:75%}.custom-theme .el-col-sm-offset-18{margin-left:75%}.custom-theme .el-col-sm-pull-18{position:relative;right:75%}.custom-theme .el-col-sm-push-18{position:relative;left:75%}.custom-theme .el-col-sm-19{width:79.16667%}.custom-theme .el-col-sm-offset-19{margin-left:79.16667%}.custom-theme .el-col-sm-pull-19{position:relative;right:79.16667%}.custom-theme .el-col-sm-push-19{position:relative;left:79.16667%}.custom-theme .el-col-sm-20{width:83.33333%}.custom-theme .el-col-sm-offset-20{margin-left:83.33333%}.custom-theme .el-col-sm-pull-20{position:relative;right:83.33333%}.custom-theme .el-col-sm-push-20{position:relative;left:83.33333%}.custom-theme .el-col-sm-21{width:87.5%}.custom-theme .el-col-sm-offset-21{margin-left:87.5%}.custom-theme .el-col-sm-pull-21{position:relative;right:87.5%}.custom-theme .el-col-sm-push-21{position:relative;left:87.5%}.custom-theme .el-col-sm-22{width:91.66667%}.custom-theme .el-col-sm-offset-22{margin-left:91.66667%}.custom-theme .el-col-sm-pull-22{position:relative;right:91.66667%}.custom-theme .el-col-sm-push-22{position:relative;left:91.66667%}.custom-theme .el-col-sm-23{width:95.83333%}.custom-theme .el-col-sm-offset-23{margin-left:95.83333%}.custom-theme .el-col-sm-pull-23{position:relative;right:95.83333%}.custom-theme .el-col-sm-push-23{position:relative;left:95.83333%}.custom-theme .el-col-sm-24{width:100%}.custom-theme .el-col-sm-offset-24{margin-left:100%}.custom-theme .el-col-sm-pull-24{position:relative;right:100%}.custom-theme .el-col-sm-push-24{position:relative;left:100%}}@media only screen and (min-width:992px){.custom-theme .el-col-md-0{display:none}.custom-theme .el-col-md-1{width:4.16667%}.custom-theme .el-col-md-offset-1{margin-left:4.16667%}.custom-theme .el-col-md-pull-1{position:relative;right:4.16667%}.custom-theme .el-col-md-push-1{position:relative;left:4.16667%}.custom-theme .el-col-md-2{width:8.33333%}.custom-theme .el-col-md-offset-2{margin-left:8.33333%}.custom-theme .el-col-md-pull-2{position:relative;right:8.33333%}.custom-theme .el-col-md-push-2{position:relative;left:8.33333%}.custom-theme .el-col-md-3{width:12.5%}.custom-theme .el-col-md-offset-3{margin-left:12.5%}.custom-theme .el-col-md-pull-3{position:relative;right:12.5%}.custom-theme .el-col-md-push-3{position:relative;left:12.5%}.custom-theme .el-col-md-4{width:16.66667%}.custom-theme .el-col-md-offset-4{margin-left:16.66667%}.custom-theme .el-col-md-pull-4{position:relative;right:16.66667%}.custom-theme .el-col-md-push-4{position:relative;left:16.66667%}.custom-theme .el-col-md-5{width:20.83333%}.custom-theme .el-col-md-offset-5{margin-left:20.83333%}.custom-theme .el-col-md-pull-5{position:relative;right:20.83333%}.custom-theme .el-col-md-push-5{position:relative;left:20.83333%}.custom-theme .el-col-md-6{width:25%}.custom-theme .el-col-md-offset-6{margin-left:25%}.custom-theme .el-col-md-pull-6{position:relative;right:25%}.custom-theme .el-col-md-push-6{position:relative;left:25%}.custom-theme .el-col-md-7{width:29.16667%}.custom-theme .el-col-md-offset-7{margin-left:29.16667%}.custom-theme .el-col-md-pull-7{position:relative;right:29.16667%}.custom-theme .el-col-md-push-7{position:relative;left:29.16667%}.custom-theme .el-col-md-8{width:33.33333%}.custom-theme .el-col-md-offset-8{margin-left:33.33333%}.custom-theme .el-col-md-pull-8{position:relative;right:33.33333%}.custom-theme .el-col-md-push-8{position:relative;left:33.33333%}.custom-theme .el-col-md-9{width:37.5%}.custom-theme .el-col-md-offset-9{margin-left:37.5%}.custom-theme .el-col-md-pull-9{position:relative;right:37.5%}.custom-theme .el-col-md-push-9{position:relative;left:37.5%}.custom-theme .el-col-md-10{width:41.66667%}.custom-theme .el-col-md-offset-10{margin-left:41.66667%}.custom-theme .el-col-md-pull-10{position:relative;right:41.66667%}.custom-theme .el-col-md-push-10{position:relative;left:41.66667%}.custom-theme .el-col-md-11{width:45.83333%}.custom-theme .el-col-md-offset-11{margin-left:45.83333%}.custom-theme .el-col-md-pull-11{position:relative;right:45.83333%}.custom-theme .el-col-md-push-11{position:relative;left:45.83333%}.custom-theme .el-col-md-12{width:50%}.custom-theme .el-col-md-offset-12{margin-left:50%}.custom-theme .el-col-md-pull-12{position:relative;right:50%}.custom-theme .el-col-md-push-12{position:relative;left:50%}.custom-theme .el-col-md-13{width:54.16667%}.custom-theme .el-col-md-offset-13{margin-left:54.16667%}.custom-theme .el-col-md-pull-13{position:relative;right:54.16667%}.custom-theme .el-col-md-push-13{position:relative;left:54.16667%}.custom-theme .el-col-md-14{width:58.33333%}.custom-theme .el-col-md-offset-14{margin-left:58.33333%}.custom-theme .el-col-md-pull-14{position:relative;right:58.33333%}.custom-theme .el-col-md-push-14{position:relative;left:58.33333%}.custom-theme .el-col-md-15{width:62.5%}.custom-theme .el-col-md-offset-15{margin-left:62.5%}.custom-theme .el-col-md-pull-15{position:relative;right:62.5%}.custom-theme .el-col-md-push-15{position:relative;left:62.5%}.custom-theme .el-col-md-16{width:66.66667%}.custom-theme .el-col-md-offset-16{margin-left:66.66667%}.custom-theme .el-col-md-pull-16{position:relative;right:66.66667%}.custom-theme .el-col-md-push-16{position:relative;left:66.66667%}.custom-theme .el-col-md-17{width:70.83333%}.custom-theme .el-col-md-offset-17{margin-left:70.83333%}.custom-theme .el-col-md-pull-17{position:relative;right:70.83333%}.custom-theme .el-col-md-push-17{position:relative;left:70.83333%}.custom-theme .el-col-md-18{width:75%}.custom-theme .el-col-md-offset-18{margin-left:75%}.custom-theme .el-col-md-pull-18{position:relative;right:75%}.custom-theme .el-col-md-push-18{position:relative;left:75%}.custom-theme .el-col-md-19{width:79.16667%}.custom-theme .el-col-md-offset-19{margin-left:79.16667%}.custom-theme .el-col-md-pull-19{position:relative;right:79.16667%}.custom-theme .el-col-md-push-19{position:relative;left:79.16667%}.custom-theme .el-col-md-20{width:83.33333%}.custom-theme .el-col-md-offset-20{margin-left:83.33333%}.custom-theme .el-col-md-pull-20{position:relative;right:83.33333%}.custom-theme .el-col-md-push-20{position:relative;left:83.33333%}.custom-theme .el-col-md-21{width:87.5%}.custom-theme .el-col-md-offset-21{margin-left:87.5%}.custom-theme .el-col-md-pull-21{position:relative;right:87.5%}.custom-theme .el-col-md-push-21{position:relative;left:87.5%}.custom-theme .el-col-md-22{width:91.66667%}.custom-theme .el-col-md-offset-22{margin-left:91.66667%}.custom-theme .el-col-md-pull-22{position:relative;right:91.66667%}.custom-theme .el-col-md-push-22{position:relative;left:91.66667%}.custom-theme .el-col-md-23{width:95.83333%}.custom-theme .el-col-md-offset-23{margin-left:95.83333%}.custom-theme .el-col-md-pull-23{position:relative;right:95.83333%}.custom-theme .el-col-md-push-23{position:relative;left:95.83333%}.custom-theme .el-col-md-24{width:100%}.custom-theme .el-col-md-offset-24{margin-left:100%}.custom-theme .el-col-md-pull-24{position:relative;right:100%}.custom-theme .el-col-md-push-24{position:relative;left:100%}}@media only screen and (min-width:1200px){.custom-theme .el-col-lg-0{display:none}.custom-theme .el-col-lg-1{width:4.16667%}.custom-theme .el-col-lg-offset-1{margin-left:4.16667%}.custom-theme .el-col-lg-pull-1{position:relative;right:4.16667%}.custom-theme .el-col-lg-push-1{position:relative;left:4.16667%}.custom-theme .el-col-lg-2{width:8.33333%}.custom-theme .el-col-lg-offset-2{margin-left:8.33333%}.custom-theme .el-col-lg-pull-2{position:relative;right:8.33333%}.custom-theme .el-col-lg-push-2{position:relative;left:8.33333%}.custom-theme .el-col-lg-3{width:12.5%}.custom-theme .el-col-lg-offset-3{margin-left:12.5%}.custom-theme .el-col-lg-pull-3{position:relative;right:12.5%}.custom-theme .el-col-lg-push-3{position:relative;left:12.5%}.custom-theme .el-col-lg-4{width:16.66667%}.custom-theme .el-col-lg-offset-4{margin-left:16.66667%}.custom-theme .el-col-lg-pull-4{position:relative;right:16.66667%}.custom-theme .el-col-lg-push-4{position:relative;left:16.66667%}.custom-theme .el-col-lg-5{width:20.83333%}.custom-theme .el-col-lg-offset-5{margin-left:20.83333%}.custom-theme .el-col-lg-pull-5{position:relative;right:20.83333%}.custom-theme .el-col-lg-push-5{position:relative;left:20.83333%}.custom-theme .el-col-lg-6{width:25%}.custom-theme .el-col-lg-offset-6{margin-left:25%}.custom-theme .el-col-lg-pull-6{position:relative;right:25%}.custom-theme .el-col-lg-push-6{position:relative;left:25%}.custom-theme .el-col-lg-7{width:29.16667%}.custom-theme .el-col-lg-offset-7{margin-left:29.16667%}.custom-theme .el-col-lg-pull-7{position:relative;right:29.16667%}.custom-theme .el-col-lg-push-7{position:relative;left:29.16667%}.custom-theme .el-col-lg-8{width:33.33333%}.custom-theme .el-col-lg-offset-8{margin-left:33.33333%}.custom-theme .el-col-lg-pull-8{position:relative;right:33.33333%}.custom-theme .el-col-lg-push-8{position:relative;left:33.33333%}.custom-theme .el-col-lg-9{width:37.5%}.custom-theme .el-col-lg-offset-9{margin-left:37.5%}.custom-theme .el-col-lg-pull-9{position:relative;right:37.5%}.custom-theme .el-col-lg-push-9{position:relative;left:37.5%}.custom-theme .el-col-lg-10{width:41.66667%}.custom-theme .el-col-lg-offset-10{margin-left:41.66667%}.custom-theme .el-col-lg-pull-10{position:relative;right:41.66667%}.custom-theme .el-col-lg-push-10{position:relative;left:41.66667%}.custom-theme .el-col-lg-11{width:45.83333%}.custom-theme .el-col-lg-offset-11{margin-left:45.83333%}.custom-theme .el-col-lg-pull-11{position:relative;right:45.83333%}.custom-theme .el-col-lg-push-11{position:relative;left:45.83333%}.custom-theme .el-col-lg-12{width:50%}.custom-theme .el-col-lg-offset-12{margin-left:50%}.custom-theme .el-col-lg-pull-12{position:relative;right:50%}.custom-theme .el-col-lg-push-12{position:relative;left:50%}.custom-theme .el-col-lg-13{width:54.16667%}.custom-theme .el-col-lg-offset-13{margin-left:54.16667%}.custom-theme .el-col-lg-pull-13{position:relative;right:54.16667%}.custom-theme .el-col-lg-push-13{position:relative;left:54.16667%}.custom-theme .el-col-lg-14{width:58.33333%}.custom-theme .el-col-lg-offset-14{margin-left:58.33333%}.custom-theme .el-col-lg-pull-14{position:relative;right:58.33333%}.custom-theme .el-col-lg-push-14{position:relative;left:58.33333%}.custom-theme .el-col-lg-15{width:62.5%}.custom-theme .el-col-lg-offset-15{margin-left:62.5%}.custom-theme .el-col-lg-pull-15{position:relative;right:62.5%}.custom-theme .el-col-lg-push-15{position:relative;left:62.5%}.custom-theme .el-col-lg-16{width:66.66667%}.custom-theme .el-col-lg-offset-16{margin-left:66.66667%}.custom-theme .el-col-lg-pull-16{position:relative;right:66.66667%}.custom-theme .el-col-lg-push-16{position:relative;left:66.66667%}.custom-theme .el-col-lg-17{width:70.83333%}.custom-theme .el-col-lg-offset-17{margin-left:70.83333%}.custom-theme .el-col-lg-pull-17{position:relative;right:70.83333%}.custom-theme .el-col-lg-push-17{position:relative;left:70.83333%}.custom-theme .el-col-lg-18{width:75%}.custom-theme .el-col-lg-offset-18{margin-left:75%}.custom-theme .el-col-lg-pull-18{position:relative;right:75%}.custom-theme .el-col-lg-push-18{position:relative;left:75%}.custom-theme .el-col-lg-19{width:79.16667%}.custom-theme .el-col-lg-offset-19{margin-left:79.16667%}.custom-theme .el-col-lg-pull-19{position:relative;right:79.16667%}.custom-theme .el-col-lg-push-19{position:relative;left:79.16667%}.custom-theme .el-col-lg-20{width:83.33333%}.custom-theme .el-col-lg-offset-20{margin-left:83.33333%}.custom-theme .el-col-lg-pull-20{position:relative;right:83.33333%}.custom-theme .el-col-lg-push-20{position:relative;left:83.33333%}.custom-theme .el-col-lg-21{width:87.5%}.custom-theme .el-col-lg-offset-21{margin-left:87.5%}.custom-theme .el-col-lg-pull-21{position:relative;right:87.5%}.custom-theme .el-col-lg-push-21{position:relative;left:87.5%}.custom-theme .el-col-lg-22{width:91.66667%}.custom-theme .el-col-lg-offset-22{margin-left:91.66667%}.custom-theme .el-col-lg-pull-22{position:relative;right:91.66667%}.custom-theme .el-col-lg-push-22{position:relative;left:91.66667%}.custom-theme .el-col-lg-23{width:95.83333%}.custom-theme .el-col-lg-offset-23{margin-left:95.83333%}.custom-theme .el-col-lg-pull-23{position:relative;right:95.83333%}.custom-theme .el-col-lg-push-23{position:relative;left:95.83333%}.custom-theme .el-col-lg-24{width:100%}.custom-theme .el-col-lg-offset-24{margin-left:100%}.custom-theme .el-col-lg-pull-24{position:relative;right:100%}.custom-theme .el-col-lg-push-24{position:relative;left:100%}}@media only screen and (min-width:1920px){.custom-theme .el-col-xl-0{display:none}.custom-theme .el-col-xl-1{width:4.16667%}.custom-theme .el-col-xl-offset-1{margin-left:4.16667%}.custom-theme .el-col-xl-pull-1{position:relative;right:4.16667%}.custom-theme .el-col-xl-push-1{position:relative;left:4.16667%}.custom-theme .el-col-xl-2{width:8.33333%}.custom-theme .el-col-xl-offset-2{margin-left:8.33333%}.custom-theme .el-col-xl-pull-2{position:relative;right:8.33333%}.custom-theme .el-col-xl-push-2{position:relative;left:8.33333%}.custom-theme .el-col-xl-3{width:12.5%}.custom-theme .el-col-xl-offset-3{margin-left:12.5%}.custom-theme .el-col-xl-pull-3{position:relative;right:12.5%}.custom-theme .el-col-xl-push-3{position:relative;left:12.5%}.custom-theme .el-col-xl-4{width:16.66667%}.custom-theme .el-col-xl-offset-4{margin-left:16.66667%}.custom-theme .el-col-xl-pull-4{position:relative;right:16.66667%}.custom-theme .el-col-xl-push-4{position:relative;left:16.66667%}.custom-theme .el-col-xl-5{width:20.83333%}.custom-theme .el-col-xl-offset-5{margin-left:20.83333%}.custom-theme .el-col-xl-pull-5{position:relative;right:20.83333%}.custom-theme .el-col-xl-push-5{position:relative;left:20.83333%}.custom-theme .el-col-xl-6{width:25%}.custom-theme .el-col-xl-offset-6{margin-left:25%}.custom-theme .el-col-xl-pull-6{position:relative;right:25%}.custom-theme .el-col-xl-push-6{position:relative;left:25%}.custom-theme .el-col-xl-7{width:29.16667%}.custom-theme .el-col-xl-offset-7{margin-left:29.16667%}.custom-theme .el-col-xl-pull-7{position:relative;right:29.16667%}.custom-theme .el-col-xl-push-7{position:relative;left:29.16667%}.custom-theme .el-col-xl-8{width:33.33333%}.custom-theme .el-col-xl-offset-8{margin-left:33.33333%}.custom-theme .el-col-xl-pull-8{position:relative;right:33.33333%}.custom-theme .el-col-xl-push-8{position:relative;left:33.33333%}.custom-theme .el-col-xl-9{width:37.5%}.custom-theme .el-col-xl-offset-9{margin-left:37.5%}.custom-theme .el-col-xl-pull-9{position:relative;right:37.5%}.custom-theme .el-col-xl-push-9{position:relative;left:37.5%}.custom-theme .el-col-xl-10{width:41.66667%}.custom-theme .el-col-xl-offset-10{margin-left:41.66667%}.custom-theme .el-col-xl-pull-10{position:relative;right:41.66667%}.custom-theme .el-col-xl-push-10{position:relative;left:41.66667%}.custom-theme .el-col-xl-11{width:45.83333%}.custom-theme .el-col-xl-offset-11{margin-left:45.83333%}.custom-theme .el-col-xl-pull-11{position:relative;right:45.83333%}.custom-theme .el-col-xl-push-11{position:relative;left:45.83333%}.custom-theme .el-col-xl-12{width:50%}.custom-theme .el-col-xl-offset-12{margin-left:50%}.custom-theme .el-col-xl-pull-12{position:relative;right:50%}.custom-theme .el-col-xl-push-12{position:relative;left:50%}.custom-theme .el-col-xl-13{width:54.16667%}.custom-theme .el-col-xl-offset-13{margin-left:54.16667%}.custom-theme .el-col-xl-pull-13{position:relative;right:54.16667%}.custom-theme .el-col-xl-push-13{position:relative;left:54.16667%}.custom-theme .el-col-xl-14{width:58.33333%}.custom-theme .el-col-xl-offset-14{margin-left:58.33333%}.custom-theme .el-col-xl-pull-14{position:relative;right:58.33333%}.custom-theme .el-col-xl-push-14{position:relative;left:58.33333%}.custom-theme .el-col-xl-15{width:62.5%}.custom-theme .el-col-xl-offset-15{margin-left:62.5%}.custom-theme .el-col-xl-pull-15{position:relative;right:62.5%}.custom-theme .el-col-xl-push-15{position:relative;left:62.5%}.custom-theme .el-col-xl-16{width:66.66667%}.custom-theme .el-col-xl-offset-16{margin-left:66.66667%}.custom-theme .el-col-xl-pull-16{position:relative;right:66.66667%}.custom-theme .el-col-xl-push-16{position:relative;left:66.66667%}.custom-theme .el-col-xl-17{width:70.83333%}.custom-theme .el-col-xl-offset-17{margin-left:70.83333%}.custom-theme .el-col-xl-pull-17{position:relative;right:70.83333%}.custom-theme .el-col-xl-push-17{position:relative;left:70.83333%}.custom-theme .el-col-xl-18{width:75%}.custom-theme .el-col-xl-offset-18{margin-left:75%}.custom-theme .el-col-xl-pull-18{position:relative;right:75%}.custom-theme .el-col-xl-push-18{position:relative;left:75%}.custom-theme .el-col-xl-19{width:79.16667%}.custom-theme .el-col-xl-offset-19{margin-left:79.16667%}.custom-theme .el-col-xl-pull-19{position:relative;right:79.16667%}.custom-theme .el-col-xl-push-19{position:relative;left:79.16667%}.custom-theme .el-col-xl-20{width:83.33333%}.custom-theme .el-col-xl-offset-20{margin-left:83.33333%}.custom-theme .el-col-xl-pull-20{position:relative;right:83.33333%}.custom-theme .el-col-xl-push-20{position:relative;left:83.33333%}.custom-theme .el-col-xl-21{width:87.5%}.custom-theme .el-col-xl-offset-21{margin-left:87.5%}.custom-theme .el-col-xl-pull-21{position:relative;right:87.5%}.custom-theme .el-col-xl-push-21{position:relative;left:87.5%}.custom-theme .el-col-xl-22{width:91.66667%}.custom-theme .el-col-xl-offset-22{margin-left:91.66667%}.custom-theme .el-col-xl-pull-22{position:relative;right:91.66667%}.custom-theme .el-col-xl-push-22{position:relative;left:91.66667%}.custom-theme .el-col-xl-23{width:95.83333%}.custom-theme .el-col-xl-offset-23{margin-left:95.83333%}.custom-theme .el-col-xl-pull-23{position:relative;right:95.83333%}.custom-theme .el-col-xl-push-23{position:relative;left:95.83333%}.custom-theme .el-col-xl-24{width:100%}.custom-theme .el-col-xl-offset-24{margin-left:100%}.custom-theme .el-col-xl-pull-24{position:relative;right:100%}.custom-theme .el-col-xl-push-24{position:relative;left:100%}}.custom-theme .el-progress{position:relative;line-height:1}.custom-theme .el-progress__text{font-size:14px;color:#5a5e66;display:inline-block;vertical-align:middle;margin-left:10px;line-height:1}.custom-theme .el-progress__text i{vertical-align:middle;display:block}.custom-theme .el-progress--circle{display:inline-block}.custom-theme .el-progress--circle .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%)}.custom-theme .el-progress--circle .el-progress__text i{vertical-align:middle;display:inline-block}.custom-theme .el-progress--without-text .el-progress__text{display:none}.custom-theme .el-progress--without-text .el-progress-bar{padding-right:0;margin-right:0;display:block}.custom-theme .el-progress--text-inside .el-progress-bar{padding-right:0;margin-right:0}.custom-theme .el-progress.is-success .el-progress-bar__inner{background-color:#409167}.custom-theme .el-progress.is-success .el-progress__text{color:#409167}.custom-theme .el-progress.is-exception .el-progress-bar__inner{background-color:#b3450e}.custom-theme .el-progress.is-exception .el-progress__text{color:#b3450e}.custom-theme .el-progress-bar{padding-right:50px;display:inline-block;vertical-align:middle;width:100%;margin-right:-55px;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-progress-bar__outer{height:6px;border-radius:100px;background-color:#e6ebf5;overflow:hidden;position:relative;vertical-align:middle}.custom-theme .el-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:#262729;text-align:right;border-radius:100px;line-height:1;white-space:nowrap}.custom-theme .el-progress-bar__inner::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-progress-bar__innerText{display:inline-block;vertical-align:middle;color:#fff;font-size:12px;margin:0 5px}@-webkit-keyframes progress{0%{background-position:0 0}100%{background-position:32px 0}}@keyframes progress{0%{background-position:0 0}100%{background-position:32px 0}}.custom-theme .el-upload{display:inline-block;text-align:center;cursor:pointer}.custom-theme .el-upload__input{display:none}.custom-theme .el-upload__tip{font-size:12px;color:#5a5e66;margin-top:7px}.custom-theme .el-upload iframe{position:absolute;z-index:-1;top:0;left:0;opacity:0}.custom-theme .el-upload--picture-card{background-color:#fbfdff;border:1px dashed #c0ccda;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:148px;height:148px;cursor:pointer;line-height:146px;vertical-align:top}.custom-theme .el-upload--picture-card i{font-size:28px;color:#8c939d}.custom-theme .el-upload--picture-card:hover{border-color:#262729;color:#262729}.custom-theme .el-upload-dragger{background-color:#fff;border:1px dashed #d9d9d9;border-radius:6px;-webkit-box-sizing:border-box;box-sizing:border-box;width:360px;height:180px;text-align:center;cursor:pointer;position:relative;overflow:hidden}.custom-theme .el-upload-dragger .el-icon-upload{font-size:67px;color:#b4bccc;margin:40px 0 16px;line-height:50px}.custom-theme .el-upload-dragger+.el-upload__tip{text-align:center}.custom-theme .el-upload-dragger~.el-upload__files{border-top:1px solid #d8dce5;margin-top:7px;padding-top:5px}.custom-theme .el-upload-dragger .el-upload__text{color:#5a5e66;font-size:14px;text-align:center}.custom-theme .el-upload-dragger .el-upload__text em{color:#262729;font-style:normal}.custom-theme .el-upload-dragger:hover{border-color:#262729}.custom-theme .el-upload-dragger.is-dragover{background-color:rgba(32,159,255,.06);border:2px dashed #262729}.custom-theme .el-upload-list{margin:0;padding:0;list-style:none}.custom-theme .el-upload-list__item{-webkit-transition:all .5s cubic-bezier(.55,0,.1,1);transition:all .5s cubic-bezier(.55,0,.1,1);font-size:14px;color:#5a5e66;line-height:1.8;margin-top:5px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;width:100%}.custom-theme .el-upload-list__item .el-progress{position:absolute;top:20px;width:100%}.custom-theme .el-upload-list__item .el-progress__text{position:absolute;right:0;top:-13px}.custom-theme .el-upload-list__item .el-progress-bar{margin-right:0;padding-right:0}.custom-theme .el-upload-list__item:first-child{margin-top:10px}.custom-theme .el-upload-list__item .el-icon-upload-success{color:#409167}.custom-theme .el-upload-list__item .el-icon-close{display:none;position:absolute;top:5px;right:5px;cursor:pointer;opacity:.75;color:#5a5e66}.custom-theme .el-upload-list__item .el-icon-close:hover{opacity:1}.custom-theme .el-upload-list__item .el-icon-close-tip{display:none;position:absolute;top:5px;right:0;cursor:pointer;opacity:1;color:#262729;-webkit-transform:translate(15%,0);transform:translate(15%,0)}.custom-theme .el-upload-list__item:hover{background-color:#f5f7fa}.custom-theme .el-upload-list__item:hover .el-icon-close{display:inline-block}.custom-theme .el-upload-list__item:hover .el-progress__text{display:none}.custom-theme .el-upload-list__item.is-success .el-upload-list__item-status-label{display:block}.custom-theme .el-upload-list__item.is-success .el-upload-list__item-name:focus,.custom-theme .el-upload-list__item.is-success .el-upload-list__item-name:hover{color:#262729;cursor:pointer}.custom-theme .el-upload-list__item.is-success:focus .el-icon-close-tip{display:inline-block}.custom-theme .el-upload-list__item.is-success:active,.custom-theme .el-upload-list__item.is-success:focus:not(.focusing){outline-width:0}.custom-theme .el-upload-list__item.is-success:active .el-icon-close-tip,.custom-theme .el-upload-list__item.is-success:focus:not(.focusing) .el-icon-close-tip{display:none}.custom-theme .el-upload-list__item.is-success:focus .el-upload-list__item-status-label,.custom-theme .el-upload-list__item.is-success:hover .el-upload-list__item-status-label{display:none}.custom-theme .el-upload-list.is-disabled .el-upload-list__item:hover .el-upload-list__item-status-label{display:block}.custom-theme .el-upload-list__item-name{color:#5a5e66;display:block;margin-right:40px;overflow:hidden;padding-left:4px;text-overflow:ellipsis;-webkit-transition:color .3s;transition:color .3s;white-space:nowrap}.custom-theme .el-upload-list__item-name [class^=el-icon]{height:100%;margin-right:7px;color:#878d99;line-height:inherit}.custom-theme .el-upload-list__item-status-label{position:absolute;right:5px;top:0;line-height:inherit;display:none}.custom-theme .el-upload-list__item-delete{position:absolute;right:10px;top:0;font-size:12px;color:#5a5e66;display:none}.custom-theme .el-upload-list__item-delete:hover{color:#262729}.custom-theme .el-upload-list--picture-card{margin:0;display:inline;vertical-align:top}.custom-theme .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}.custom-theme .el-upload-list--picture-card .el-upload-list__item .el-icon-check,.custom-theme .el-upload-list--picture-card .el-upload-list__item .el-icon-circle-check{color:#fff}.custom-theme .el-upload-list--picture-card .el-upload-list__item .el-icon-close{display:none}.custom-theme .el-upload-list--picture-card .el-upload-list__item:hover .el-upload-list__item-status-label{display:none}.custom-theme .el-upload-list--picture-card .el-upload-list__item:hover .el-progress__text{display:block}.custom-theme .el-upload-list--picture-card .el-upload-list__item-name{display:none}.custom-theme .el-upload-list--picture-card .el-upload-list__item-thumbnail{width:100%;height:100%}.custom-theme .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,.2);box-shadow:0 0 1pc 1px rgba(0,0,0,.2)}.custom-theme .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)}.custom-theme .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,.5);-webkit-transition:opacity .3s;transition:opacity .3s}.custom-theme .el-upload-list--picture-card .el-upload-list__item-actions::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-upload-list--picture-card .el-upload-list__item-actions span{display:none;cursor:pointer}.custom-theme .el-upload-list--picture-card .el-upload-list__item-actions span+span{margin-left:15px}.custom-theme .el-upload-list--picture-card .el-upload-list__item-actions .el-upload-list__item-delete{position:static;font-size:inherit;color:inherit}.custom-theme .el-upload-list--picture-card .el-upload-list__item-actions:hover{opacity:1}.custom-theme .el-upload-list--picture-card .el-upload-list__item-actions:hover span{display:inline-block}.custom-theme .el-upload-list--picture-card .el-progress{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);bottom:auto;width:126px}.custom-theme .el-upload-list--picture-card .el-progress .el-progress__text{top:50%}.custom-theme .el-upload-list--picture .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;margin-top:10px;padding:10px 10px 10px 90px;height:92px}.custom-theme .el-upload-list--picture .el-upload-list__item .el-icon-check,.custom-theme .el-upload-list--picture .el-upload-list__item .el-icon-circle-check{color:#fff}.custom-theme .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}.custom-theme .el-upload-list--picture .el-upload-list__item:hover .el-progress__text{display:block}.custom-theme .el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name{line-height:70px;margin-top:0}.custom-theme .el-upload-list--picture .el-upload-list__item.is-success .el-upload-list__item-name i{display:none}.custom-theme .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}.custom-theme .el-upload-list--picture .el-upload-list__item-name{display:block;margin-top:20px}.custom-theme .el-upload-list--picture .el-upload-list__item-name i{font-size:70px;line-height:1;position:absolute;left:9px;top:10px}.custom-theme .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}.custom-theme .el-upload-list--picture .el-upload-list__item-status-label i{font-size:12px;margin-top:12px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.custom-theme .el-upload-list--picture .el-progress{position:relative;top:-7px}.custom-theme .el-upload-cover{position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;z-index:10;cursor:default}.custom-theme .el-upload-cover::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-upload-cover img{display:block;width:100%;height:100%}.custom-theme .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,.2);box-shadow:0 0 1pc 1px rgba(0,0,0,.2)}.custom-theme .el-upload-cover__label i{font-size:12px;margin-top:11px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);color:#fff}.custom-theme .el-upload-cover__progress{display:inline-block;vertical-align:middle;position:static;width:243px}.custom-theme .el-upload-cover__progress+.el-upload__inner{opacity:0}.custom-theme .el-upload-cover__content{position:absolute;top:0;left:0;width:100%;height:100%}.custom-theme .el-upload-cover__interact{position:absolute;bottom:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.72);text-align:center}.custom-theme .el-upload-cover__interact .btn{display:inline-block;color:#fff;font-size:14px;cursor:pointer;vertical-align:middle;-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s;transition:transform .3s cubic-bezier(.23,1,.32,1) .1s,opacity .3s cubic-bezier(.23,1,.32,1) .1s,-webkit-transform .3s cubic-bezier(.23,1,.32,1) .1s;margin-top:60px}.custom-theme .el-upload-cover__interact .btn i{margin-top:0}.custom-theme .el-upload-cover__interact .btn span{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.custom-theme .el-upload-cover__interact .btn:not(:first-child){margin-left:35px}.custom-theme .el-upload-cover__interact .btn:hover{-webkit-transform:translateY(-13px);transform:translateY(-13px)}.custom-theme .el-upload-cover__interact .btn:hover span{opacity:1}.custom-theme .el-upload-cover__interact .btn i{color:#fff;display:block;font-size:24px;line-height:inherit;margin:0 auto 5px}.custom-theme .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:#2d2f33}.custom-theme .el-upload-cover+.el-upload__inner{opacity:0;position:relative;z-index:1}.custom-theme .el-progress{position:relative;line-height:1}.custom-theme .el-progress__text{font-size:14px;color:#5a5e66;display:inline-block;vertical-align:middle;margin-left:10px;line-height:1}.custom-theme .el-progress__text i{vertical-align:middle;display:block}.custom-theme .el-progress--circle{display:inline-block}.custom-theme .el-progress--circle .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%)}.custom-theme .el-progress--circle .el-progress__text i{vertical-align:middle;display:inline-block}.custom-theme .el-progress--without-text .el-progress__text{display:none}.custom-theme .el-progress--without-text .el-progress-bar{padding-right:0;margin-right:0;display:block}.custom-theme .el-progress--text-inside .el-progress-bar{padding-right:0;margin-right:0}.custom-theme .el-progress.is-success .el-progress-bar__inner{background-color:#409167}.custom-theme .el-progress.is-success .el-progress__text{color:#409167}.custom-theme .el-progress.is-exception .el-progress-bar__inner{background-color:#b3450e}.custom-theme .el-progress.is-exception .el-progress__text{color:#b3450e}.custom-theme .el-progress-bar{padding-right:50px;display:inline-block;vertical-align:middle;width:100%;margin-right:-55px;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-progress-bar__outer{height:6px;border-radius:100px;background-color:#e6ebf5;overflow:hidden;position:relative;vertical-align:middle}.custom-theme .el-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:#262729;text-align:right;border-radius:100px;line-height:1;white-space:nowrap}.custom-theme .el-progress-bar__inner::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-progress-bar__innerText{display:inline-block;vertical-align:middle;color:#fff;font-size:12px;margin:0 5px}@keyframes progress{0%{background-position:0 0}100%{background-position:32px 0}}.custom-theme .el-time-spinner{width:100%;white-space:nowrap}.custom-theme .el-spinner{display:inline-block;vertical-align:middle}.custom-theme .el-spinner-inner{-webkit-animation:rotate 2s linear infinite;animation:rotate 2s linear infinite;width:50px;height:50px}.custom-theme .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}@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{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}}@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}}.custom-theme .el-message{min-width:380px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;border-width:1px;border-style:solid;border-color:#e6ebf5;position:fixed;left:50%;top:20px;-webkit-transform:translateX(-50%);transform:translateX(-50%);background-color:#edf2fc;-webkit-transition:opacity .3s,-webkit-transform .4s;transition:opacity .3s,-webkit-transform .4s;transition:opacity .3s,transform .4s;transition:opacity .3s,transform .4s,-webkit-transform .4s;overflow:hidden;padding:15px 15px 15px 20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.custom-theme .el-message.is-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.custom-theme .el-message p{margin:0}.custom-theme .el-message--info .el-message__content{color:#0a76a4}.custom-theme .el-message--success{background-color:#ecf4f0;border-color:#d9e9e1}.custom-theme .el-message--success .el-message__content{color:#409167}.custom-theme .el-message--warning{background-color:#f5f6e6;border-color:#ebedce}.custom-theme .el-message--warning .el-message__content{color:#9da408}.custom-theme .el-message--error{background-color:#f7ece7;border-color:#f0dacf}.custom-theme .el-message--error .el-message__content{color:#b3450e}.custom-theme .el-message__icon{margin-right:10px}.custom-theme .el-message__content{padding:0;font-size:14px;line-height:1}.custom-theme .el-message__content:focus{outline-width:0}.custom-theme .el-message__closeBtn{position:absolute;top:50%;right:15px;-webkit-transform:translateY(-50%);transform:translateY(-50%);cursor:pointer;color:#b4bccc;font-size:16px}.custom-theme .el-message__closeBtn:focus{outline-width:0}.custom-theme .el-message__closeBtn:hover{color:#878d99}.custom-theme .el-message .el-icon-success{color:#409167}.custom-theme .el-message .el-icon-error{color:#b3450e}.custom-theme .el-message .el-icon-info{color:#0a76a4}.custom-theme .el-message .el-icon-warning{color:#9da408}.custom-theme .el-message-fade-enter,.custom-theme .el-message-fade-leave-active{opacity:0;-webkit-transform:translate(-50%,-100%);transform:translate(-50%,-100%)}.custom-theme .el-badge{position:relative;vertical-align:middle;display:inline-block}.custom-theme .el-badge__content{background-color:#b3450e;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}.custom-theme .el-badge__content.is-fixed{position:absolute;top:0;right:10px;-webkit-transform:translateY(-50%) translateX(100%);transform:translateY(-50%) translateX(100%)}.custom-theme .el-badge__content.is-fixed.is-dot{right:5px}.custom-theme .el-badge__content.is-dot{height:8px;width:8px;padding:0;right:0;border-radius:50%}.custom-theme .el-card{border-radius:4px;border:1px solid #e6ebf5;background-color:#fff;overflow:hidden;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1);color:#2d2f33}.custom-theme .el-card__header{padding:18px 20px;border-bottom:1px solid #e6ebf5;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-card__body{padding:20px}.custom-theme .el-rate{height:20px;line-height:1}.custom-theme .el-rate:active,.custom-theme .el-rate:focus{outline-width:0}.custom-theme .el-rate__item{display:inline-block;position:relative;font-size:0;vertical-align:middle}.custom-theme .el-rate__icon{position:relative;display:inline-block;font-size:18px;margin-right:6px;color:#b4bccc;-webkit-transition:.3s;transition:.3s}.custom-theme .el-rate__icon.hover{-webkit-transform:scale(1.15);transform:scale(1.15)}.custom-theme .el-rate__icon .path2{position:absolute;left:0;top:0}.custom-theme .el-rate__decimal{position:absolute;top:0;left:0;display:inline-block;overflow:hidden}.custom-theme .el-rate__text{font-size:14px;vertical-align:middle}.custom-theme .el-steps{display:-webkit-box;display:-ms-flexbox;display:flex}.custom-theme .el-steps--simple{padding:13px 8%;border-radius:4px;background:#f5f7fa}.custom-theme .el-steps--horizontal{white-space:nowrap}.custom-theme .el-steps--vertical{height:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.custom-theme .el-step{position:relative;-ms-flex-negative:1;flex-shrink:1}.custom-theme .el-step:last-of-type .el-step__line{display:none}.custom-theme .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}.custom-theme .el-step:last-of-type .el-step__description,.custom-theme .el-step:last-of-type .el-step__main{padding-right:0}.custom-theme .el-step__head{position:relative;width:100%}.custom-theme .el-step__head.is-process{color:#2d2f33;border-color:#2d2f33}.custom-theme .el-step__head.is-wait{color:#b4bccc;border-color:#b4bccc}.custom-theme .el-step__head.is-success{color:#409167;border-color:#409167}.custom-theme .el-step__head.is-error{color:#b3450e;border-color:#b3450e}.custom-theme .el-step__head.is-finish{color:#262729;border-color:#262729}.custom-theme .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:.15s ease-out;transition:.15s ease-out}.custom-theme .el-step__icon.is-text{border-radius:50%;border:2px solid;border-color:inherit}.custom-theme .el-step__icon.is-icon{width:40px}.custom-theme .el-step__icon-inner{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;text-align:center;font-weight:700;line-height:1;color:inherit}.custom-theme .el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:25px;font-weight:400}.custom-theme .el-step__icon-inner.is-status{-webkit-transform:translateY(1px);transform:translateY(1px)}.custom-theme .el-step__line{position:absolute;border-color:inherit;background-color:#b4bccc}.custom-theme .el-step__line-inner{display:block;border-width:1px;border-style:solid;border-color:inherit;-webkit-transition:.15s ease-out;transition:.15s ease-out;-webkit-box-sizing:border-box;box-sizing:border-box;width:0;height:0}.custom-theme .el-step__main{white-space:normal;text-align:left}.custom-theme .el-step__title{font-size:16px;line-height:38px}.custom-theme .el-step__title.is-process{font-weight:700;color:#2d2f33}.custom-theme .el-step__title.is-wait{color:#b4bccc}.custom-theme .el-step__title.is-success{color:#409167}.custom-theme .el-step__title.is-error{color:#b3450e}.custom-theme .el-step__title.is-finish{color:#262729}.custom-theme .el-step__description{padding-right:10%;margin-top:-5px;font-size:12px;line-height:20px;font-weight:400}.custom-theme .el-step__description.is-process{color:#2d2f33}.custom-theme .el-step__description.is-wait{color:#b4bccc}.custom-theme .el-step__description.is-success{color:#409167}.custom-theme .el-step__description.is-error{color:#b3450e}.custom-theme .el-step__description.is-finish{color:#262729}.custom-theme .el-step.is-horizontal{display:inline-block}.custom-theme .el-step.is-horizontal .el-step__line{height:2px;top:11px;left:0;right:0}.custom-theme .el-step.is-vertical{display:-webkit-box;display:-ms-flexbox;display:flex}.custom-theme .el-step.is-vertical .el-step__head{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;width:24px}.custom-theme .el-step.is-vertical .el-step__main{padding-left:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.custom-theme .el-step.is-vertical .el-step__title{line-height:24px;padding-bottom:8px}.custom-theme .el-step.is-vertical .el-step__line{width:2px;top:0;bottom:0;left:11px}.custom-theme .el-step.is-vertical .el-step__icon.is-icon{width:24px}.custom-theme .el-step.is-center .el-step__head{text-align:center}.custom-theme .el-step.is-center .el-step__main{text-align:center}.custom-theme .el-step.is-center .el-step__description{padding-left:20%;padding-right:20%}.custom-theme .el-step.is-center .el-step__line{left:50%;right:-50%}.custom-theme .el-step.is-simple{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.custom-theme .el-step.is-simple .el-step__head{width:auto;font-size:0;padding-right:10px}.custom-theme .el-step.is-simple .el-step__icon{background:0 0;width:16px;height:16px;font-size:12px}.custom-theme .el-step.is-simple .el-step__icon-inner[class*=el-icon]:not(.is-status){font-size:18px}.custom-theme .el-step.is-simple .el-step__icon-inner.is-status{-webkit-transform:scale(.8) translateY(1px);transform:scale(.8) translateY(1px)}.custom-theme .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}.custom-theme .el-step.is-simple .el-step__title{font-size:16px;line-height:20px}.custom-theme .el-step.is-simple:not(:last-of-type) .el-step__title{max-width:50%;word-break:break-all}.custom-theme .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}.custom-theme .el-step.is-simple .el-step__arrow::after,.custom-theme .el-step.is-simple .el-step__arrow::before{content:'';display:inline-block;position:absolute;height:15px;width:1px;background:#b4bccc}.custom-theme .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}.custom-theme .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%}.custom-theme .el-step.is-simple:last-of-type .el-step__arrow{display:none}.custom-theme .el-carousel{overflow-x:hidden;position:relative}.custom-theme .el-carousel__container{position:relative;height:300px}.custom-theme .el-carousel__arrow{border:none;outline:0;padding:0;margin:0;height:36px;width:36px;cursor:pointer;-webkit-transition:.3s;transition:.3s;border-radius:50%;background-color:rgba(31,45,61,.11);color:#fff;position:absolute;top:50%;z-index:10;-webkit-transform:translateY(-50%);transform:translateY(-50%);text-align:center;font-size:12px}.custom-theme .el-carousel__arrow--left{left:16px}.custom-theme .el-carousel__arrow--right{right:16px}.custom-theme .el-carousel__arrow:hover{background-color:rgba(31,45,61,.23)}.custom-theme .el-carousel__arrow i{cursor:pointer}.custom-theme .el-carousel__indicators{position:absolute;list-style:none;bottom:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:0;padding:0;z-index:2}.custom-theme .el-carousel__indicators--outside{bottom:26px;text-align:center;position:static;-webkit-transform:none;transform:none}.custom-theme .el-carousel__indicators--outside .el-carousel__indicator:hover button{opacity:.64}.custom-theme .el-carousel__indicators--outside button{background-color:#b4bccc;opacity:.24}.custom-theme .el-carousel__indicators--labels{left:0;right:0;-webkit-transform:none;transform:none;text-align:center}.custom-theme .el-carousel__indicators--labels .el-carousel__button{height:auto;width:auto;padding:2px 18px;font-size:12px}.custom-theme .el-carousel__indicators--labels .el-carousel__indicator{padding:6px 4px}.custom-theme .el-carousel__indicator{display:inline-block;background-color:transparent;padding:12px 4px;cursor:pointer}.custom-theme .el-carousel__indicator:hover button{opacity:.72}.custom-theme .el-carousel__indicator.is-active button{opacity:1}.custom-theme .el-carousel__button{display:block;opacity:.48;width:30px;height:2px;background-color:#fff;border:none;outline:0;padding:0;margin:0;cursor:pointer;-webkit-transition:.3s;transition:.3s}.custom-theme .carousel-arrow-left-enter,.custom-theme .carousel-arrow-left-leave-active{-webkit-transform:translateY(-50%) translateX(-10px);transform:translateY(-50%) translateX(-10px);opacity:0}.custom-theme .carousel-arrow-right-enter,.custom-theme .carousel-arrow-right-leave-active{-webkit-transform:translateY(-50%) translateX(10px);transform:translateY(-50%) translateX(10px);opacity:0}.custom-theme .el-scrollbar{overflow:hidden;position:relative}.custom-theme .el-scrollbar:active>.el-scrollbar__bar,.custom-theme .el-scrollbar:focus>.el-scrollbar__bar,.custom-theme .el-scrollbar:hover>.el-scrollbar__bar{opacity:1;-webkit-transition:opacity 340ms ease-out;transition:opacity 340ms ease-out}.custom-theme .el-scrollbar__wrap{overflow:scroll;height:100%}.custom-theme .el-scrollbar__wrap--hidden-default::-webkit-scrollbar{width:0;height:0}.custom-theme .el-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:rgba(135,141,153,.3);-webkit-transition:.3s background-color;transition:.3s background-color}.custom-theme .el-scrollbar__thumb:hover{background-color:rgba(135,141,153,.5)}.custom-theme .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}.custom-theme .el-scrollbar__bar.is-vertical{width:6px;top:2px}.custom-theme .el-scrollbar__bar.is-vertical>div{width:100%}.custom-theme .el-scrollbar__bar.is-horizontal{height:6px;left:2px}.custom-theme .el-scrollbar__bar.is-horizontal>div{height:100%}.custom-theme .el-carousel__item{position:absolute;top:0;left:0;width:100%;height:100%;display:inline-block;overflow:hidden;z-index:0}.custom-theme .el-carousel__item.is-active{z-index:2}.custom-theme .el-carousel__item.is-animating{-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out,-webkit-transform .4s ease-in-out}.custom-theme .el-carousel__item--card{width:50%;-webkit-transition:-webkit-transform .4s ease-in-out;transition:-webkit-transform .4s ease-in-out;transition:transform .4s ease-in-out;transition:transform .4s ease-in-out,-webkit-transform .4s ease-in-out}.custom-theme .el-carousel__item--card.is-in-stage{cursor:pointer;z-index:1}.custom-theme .el-carousel__item--card.is-in-stage.is-hover .el-carousel__mask,.custom-theme .el-carousel__item--card.is-in-stage:hover .el-carousel__mask{opacity:.12}.custom-theme .el-carousel__item--card.is-active{z-index:2}.custom-theme .el-carousel__mask{position:absolute;width:100%;height:100%;top:0;left:0;background-color:#fff;opacity:.24;-webkit-transition:.2s;transition:.2s}.custom-theme .el-collapse{border-top:1px solid #e6ebf5;border-bottom:1px solid #e6ebf5}.custom-theme .el-collapse-item__header{height:48px;line-height:48px;background-color:#fff;color:#2d2f33;cursor:pointer;border-bottom:1px solid #e6ebf5;font-size:13px;font-weight:500;-webkit-transition:border-bottom-color .3s;transition:border-bottom-color .3s}.custom-theme .el-collapse-item__header:active,.custom-theme .el-collapse-item__header:focus:not(.focusing){outline-width:0}.custom-theme .el-collapse-item__arrow{margin-right:8px;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;float:right;line-height:48px;font-weight:300}.custom-theme .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 #e6ebf5}.custom-theme .el-collapse-item__content{padding-bottom:25px;font-size:13px;color:#2d2f33;line-height:1.769230769230769}.custom-theme .el-collapse-item.is-active .el-collapse-item__header{border-bottom-color:transparent}.custom-theme .el-collapse-item.is-active .el-collapse-item__header .el-collapse-item__arrow{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.custom-theme .el-collapse-item:last-child{margin-bottom:-1px}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-popper .popper__arrow,.custom-theme .el-popper .popper__arrow::after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.custom-theme .el-popper .popper__arrow{border-width:6px;-webkit-filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03));filter:drop-shadow(0 2px 12px rgba(0, 0, 0, .03))}.custom-theme .el-popper .popper__arrow::after{content:" ";border-width:6px}.custom-theme .el-popper[x-placement^=top]{margin-bottom:12px}.custom-theme .el-popper[x-placement^=top] .popper__arrow{bottom:-6px;left:50%;margin-right:3px;border-top-color:#e6ebf5;border-bottom-width:0}.custom-theme .el-popper[x-placement^=top] .popper__arrow::after{bottom:1px;margin-left:-6px;border-top-color:#fff;border-bottom-width:0}.custom-theme .el-popper[x-placement^=bottom]{margin-top:12px}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow{top:-6px;left:50%;margin-right:3px;border-top-width:0;border-bottom-color:#e6ebf5}.custom-theme .el-popper[x-placement^=bottom] .popper__arrow::after{top:1px;margin-left:-6px;border-top-width:0;border-bottom-color:#fff}.custom-theme .el-popper[x-placement^=right]{margin-left:12px}.custom-theme .el-popper[x-placement^=right] .popper__arrow{top:50%;left:-6px;margin-bottom:3px;border-right-color:#e6ebf5;border-left-width:0}.custom-theme .el-popper[x-placement^=right] .popper__arrow::after{bottom:-6px;left:1px;border-right-color:#fff;border-left-width:0}.custom-theme .el-popper[x-placement^=left]{margin-right:12px}.custom-theme .el-popper[x-placement^=left] .popper__arrow{top:50%;right:-6px;margin-bottom:3px;border-right-width:0;border-left-color:#e6ebf5}.custom-theme .el-popper[x-placement^=left] .popper__arrow::after{right:1px;bottom:-6px;margin-left:-6px;border-right-width:0;border-left-color:#fff}.custom-theme .el-cascader{display:inline-block;position:relative;font-size:14px;line-height:40px}.custom-theme .el-cascader .el-input,.custom-theme .el-cascader .el-input__inner{cursor:pointer}.custom-theme .el-cascader .el-input__icon{-webkit-transition:none;transition:none}.custom-theme .el-cascader .el-icon-arrow-down{-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;font-size:14px}.custom-theme .el-cascader .el-icon-arrow-down.is-reverse{-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg)}.custom-theme .el-cascader .el-icon-circle-close{z-index:2;-webkit-transition:color .2s cubic-bezier(.645,.045,.355,1);transition:color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-cascader .el-icon-circle-close:hover{color:#878d99}.custom-theme .el-cascader__clearIcon{z-index:2;position:relative}.custom-theme .el-cascader__label{position:absolute;left:0;top:0;height:100%;padding:0 25px 0 15px;color:#5a5e66;width:100%;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;text-align:left;font-size:inherit}.custom-theme .el-cascader__label span{color:#000}.custom-theme .el-cascader--medium{font-size:14px;line-height:36px}.custom-theme .el-cascader--small{font-size:13px;line-height:32px}.custom-theme .el-cascader--mini{font-size:12px;line-height:28px}.custom-theme .el-cascader.is-disabled .el-cascader__label{z-index:2;color:#b4bccc}.custom-theme .el-cascader-menus{white-space:nowrap;background:#fff;position:absolute;margin:5px 0;z-index:2;border:solid 1px #dfe4ed;border-radius:2px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.custom-theme .el-cascader-menus .popper__arrow{-webkit-transform:translateX(-400%);transform:translateX(-400%)}.custom-theme .el-cascader-menu{display:inline-block;vertical-align:top;height:204px;overflow:auto;border-right:solid 1px #dfe4ed;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:6px 0;min-width:160px}.custom-theme .el-cascader-menu:last-child{border-right:0}.custom-theme .el-cascader-menu__item{font-size:14px;padding:8px 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#5a5e66;height:34px;line-height:1.5;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer}.custom-theme .el-cascader-menu__item--extensible:after{font-family:element-icons;content:"\e604";font-size:14px;color:#bfcbd9;position:absolute;right:15px}.custom-theme .el-cascader-menu__item.is-disabled{color:#b4bccc;background-color:#fff;cursor:not-allowed}.custom-theme .el-cascader-menu__item.is-disabled:hover{background-color:#fff}.custom-theme .el-cascader-menu__item.is-active{color:#262729}.custom-theme .el-cascader-menu__item:hover{background-color:#f5f7fa}.custom-theme .el-cascader-menu__item.selected{color:#fff;background-color:#f5f7fa}.custom-theme .el-cascader-menu__item__keyword{font-weight:700}.custom-theme .el-cascader-menu--flexible{height:auto;max-height:180px;overflow:auto}.custom-theme .el-cascader-menu--flexible .el-cascader-menu__item{overflow:visible}.custom-theme .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}.custom-theme .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%}.custom-theme .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,.6);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.custom-theme .el-color-hue-slider.is-vertical{width:12px;height:180px;padding:2px 0}.custom-theme .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%)}.custom-theme .el-color-hue-slider.is-vertical .el-color-hue-slider__thumb{left:0;top:0;width:100%;height:4px}.custom-theme .el-color-svpanel{position:relative;width:280px;height:180px}.custom-theme .el-color-svpanel__black,.custom-theme .el-color-svpanel__white{position:absolute;top:0;left:0;right:0;bottom:0}.custom-theme .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))}.custom-theme .el-color-svpanel__black{background:-webkit-gradient(linear,left bottom,left top,from(#000),to(transparent));background:linear-gradient(to top,#000,transparent)}.custom-theme .el-color-svpanel__cursor{position:absolute}.custom-theme .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,.3),0 0 1px 2px rgba(0,0,0,.4);box-shadow:0 0 0 1.5px #fff,inset 0 0 1px 1px rgba(0,0,0,.3),0 0 1px 2px rgba(0,0,0,.4);border-radius:50%;-webkit-transform:translate(-2px,-2px);transform:translate(-2px,-2px)}.custom-theme .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==)}.custom-theme .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%}.custom-theme .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,.6);box-shadow:0 0 2px rgba(0,0,0,.6);z-index:1}.custom-theme .el-color-alpha-slider.is-vertical{width:20px;height:180px}.custom-theme .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%)}.custom-theme .el-color-alpha-slider.is-vertical .el-color-alpha-slider__thumb{left:0;top:0;width:100%;height:4px}.custom-theme .el-color-dropdown{width:300px}.custom-theme .el-color-dropdown__main-wrapper{margin-bottom:6px}.custom-theme .el-color-dropdown__main-wrapper::after{content:"";display:table;clear:both}.custom-theme .el-color-dropdown__btns{margin-top:6px;text-align:right}.custom-theme .el-color-dropdown__value{float:left;line-height:26px;font-size:12px;color:#000;width:160px}.custom-theme .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}.custom-theme .el-color-dropdown__btn[disabled]{color:#ccc;cursor:not-allowed}.custom-theme .el-color-dropdown__btn:hover{color:#262729;border-color:#262729}.custom-theme .el-color-dropdown__link-btn{cursor:pointer;color:#262729;text-decoration:none;padding:15px;font-size:12px}.custom-theme .el-color-dropdown__link-btn:hover{color:tint(#262729,20%)}.custom-theme .el-color-picker{display:inline-block;position:relative;line-height:normal;height:40px}.custom-theme .el-color-picker.is-disabled .el-color-picker__trigger{cursor:not-allowed}.custom-theme .el-color-picker--medium{height:36px}.custom-theme .el-color-picker--medium .el-color-picker__trigger{height:36px;width:36px}.custom-theme .el-color-picker--medium .el-color-picker__mask{height:34px;width:34px}.custom-theme .el-color-picker--small{height:32px}.custom-theme .el-color-picker--small .el-color-picker__trigger{height:32px;width:32px}.custom-theme .el-color-picker--small .el-color-picker__mask{height:30px;width:30px}.custom-theme .el-color-picker--small .el-color-picker__empty,.custom-theme .el-color-picker--small .el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0) scale(.8);transform:translate3d(-50%,-50%,0) scale(.8)}.custom-theme .el-color-picker--mini{height:28px}.custom-theme .el-color-picker--mini .el-color-picker__trigger{height:28px;width:28px}.custom-theme .el-color-picker--mini .el-color-picker__mask{height:26px;width:26px}.custom-theme .el-color-picker--mini .el-color-picker__empty,.custom-theme .el-color-picker--mini .el-color-picker__icon{-webkit-transform:translate3d(-50%,-50%,0) scale(.8);transform:translate3d(-50%,-50%,0) scale(.8)}.custom-theme .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,.7)}.custom-theme .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}.custom-theme .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}.custom-theme .el-color-picker__color.is-alpha{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.custom-theme .el-color-picker__color-inner{position:absolute;left:0;top:0;right:0;bottom:0}.custom-theme .el-color-picker__empty{font-size:12px;color:#999;position:absolute;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.custom-theme .el-color-picker__icon{display:inline-block;position:absolute;width:100%;top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0);color:#fff;text-align:center;font-size:12px}.custom-theme .el-color-picker__panel{position:absolute;z-index:10;padding:6px;background-color:#fff;border:1px solid #e6ebf5;border-radius:4px;-webkit-box-shadow:0 2px 12px 0 rgba(0,0,0,.1);box-shadow:0 2px 12px 0 rgba(0,0,0,.1)}.custom-theme .el-input{position:relative;font-size:14px;display:inline-block;width:100%}.custom-theme .el-input::-webkit-scrollbar{z-index:11;width:6px}.custom-theme .el-input::-webkit-scrollbar:horizontal{height:6px}.custom-theme .el-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#b4bccc}.custom-theme .el-input::-webkit-scrollbar-corner{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track{background:#fff}.custom-theme .el-input::-webkit-scrollbar-track-piece{background:#fff;width:6px}.custom-theme .el-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid #d8dce5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#5a5e66;display:inline-block;font-size:inherit;height:40px;line-height:1;outline:0;padding:0 15px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.custom-theme .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input__inner:hover{border-color:#b4bccc}.custom-theme .el-input__inner:focus{outline:0;border-color:#262729}.custom-theme .el-input__suffix{position:absolute;height:100%;right:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s;pointer-events:none}.custom-theme .el-input__suffix-inner{pointer-events:all}.custom-theme .el-input__prefix{position:absolute;height:100%;left:5px;top:0;text-align:center;color:#b4bccc;-webkit-transition:all .3s;transition:all .3s}.custom-theme .el-input__icon{height:100%;width:25px;text-align:center;-webkit-transition:all .3s;transition:all .3s;line-height:40px}.custom-theme .el-input__icon:after{content:'';height:100%;width:0;display:inline-block;vertical-align:middle}.custom-theme .el-input__validateIcon{pointer-events:none}.custom-theme .el-input.is-active .el-input__inner{outline:0;border-color:#262729}.custom-theme .el-input.is-disabled .el-input__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-input.is-disabled .el-input__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__inner::placeholder{color:#b4bccc}.custom-theme .el-input.is-disabled .el-input__icon{cursor:not-allowed}.custom-theme .el-input--suffix .el-input__inner{padding-right:30px}.custom-theme .el-input--prefix .el-input__inner{padding-left:30px}.custom-theme .el-input--medium{font-size:14px}.custom-theme .el-input--medium .el-input__inner{height:36px}.custom-theme .el-input--medium .el-input__icon{line-height:36px}.custom-theme .el-input--small{font-size:13px}.custom-theme .el-input--small .el-input__inner{height:32px}.custom-theme .el-input--small .el-input__icon{line-height:32px}.custom-theme .el-input--mini{font-size:12px}.custom-theme .el-input--mini .el-input__inner{height:28px}.custom-theme .el-input--mini .el-input__icon{line-height:28px}.custom-theme .el-input-group{line-height:normal;display:inline-table;width:100%;border-collapse:separate}.custom-theme .el-input-group>.el-input__inner{vertical-align:middle;display:table-cell}.custom-theme .el-input-group__append,.custom-theme .el-input-group__prepend{background-color:#f5f7fa;color:#0a76a4;vertical-align:middle;display:table-cell;position:relative;border:1px solid #d8dce5;border-radius:4px;padding:0 20px;width:1px;white-space:nowrap}.custom-theme .el-input-group__append:focus,.custom-theme .el-input-group__prepend:focus{outline:0}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-select,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-select{display:inline-block;margin:-20px}.custom-theme .el-input-group__append button.el-button,.custom-theme .el-input-group__append div.el-select .el-input__inner,.custom-theme .el-input-group__append div.el-select:hover .el-input__inner,.custom-theme .el-input-group__prepend button.el-button,.custom-theme .el-input-group__prepend div.el-select .el-input__inner,.custom-theme .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}.custom-theme .el-input-group__append .el-button,.custom-theme .el-input-group__append .el-input,.custom-theme .el-input-group__prepend .el-button,.custom-theme .el-input-group__prepend .el-input{font-size:inherit}.custom-theme .el-input-group__prepend{border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-input-group__append{border-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--prepend .el-input__inner{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-input-group--append .el-input__inner{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-textarea{display:inline-block;width:100%;vertical-align:bottom}.custom-theme .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:14px;color:#5a5e66;background-color:#fff;background-image:none;border:1px solid #d8dce5;border-radius:4px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1)}.custom-theme .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-textarea__inner:hover{border-color:#b4bccc}.custom-theme .el-textarea__inner:focus{outline:0;border-color:#262729}.custom-theme .el-textarea.is-disabled .el-textarea__inner{background-color:#f5f7fa;border-color:#dfe4ed;color:#b4bccc;cursor:not-allowed}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-webkit-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner:-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::-ms-input-placeholder{color:#b4bccc}.custom-theme .el-textarea.is-disabled .el-textarea__inner::placeholder{color:#b4bccc}.custom-theme .el-button{display:inline-block;line-height:1;white-space:nowrap;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-color:#d8dce5;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;-webkit-transition:.1s;transition:.1s;font-weight:500;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button+.el-button{margin-left:10px}.custom-theme .el-button.is-round{padding:12px 20px}.custom-theme .el-button:focus,.custom-theme .el-button:hover{color:#262729;border-color:#bebebf;background-color:#e9e9ea}.custom-theme .el-button:active{color:#222325;border-color:#222325;outline:0}.custom-theme .el-button::-moz-focus-inner{border:0}.custom-theme .el-button [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-button.is-plain:focus,.custom-theme .el-button.is-plain:hover{background:#fff;border-color:#262729;color:#262729}.custom-theme .el-button.is-plain:active{background:#fff;border-color:#222325;color:#222325;outline:0}.custom-theme .el-button.is-active{color:#222325;border-color:#222325}.custom-theme .el-button.is-disabled,.custom-theme .el-button.is-disabled:focus,.custom-theme .el-button.is-disabled:hover{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5}.custom-theme .el-button.is-disabled.el-button--text{background-color:transparent}.custom-theme .el-button.is-disabled.is-plain,.custom-theme .el-button.is-disabled.is-plain:focus,.custom-theme .el-button.is-disabled.is-plain:hover{background-color:#fff;border-color:#e6ebf5;color:#b4bccc}.custom-theme .el-button.is-loading{position:relative;pointer-events:none}.custom-theme .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,.35)}.custom-theme .el-button.is-round{border-radius:20px;padding:12px 23px}.custom-theme .el-button--primary{color:#fff;background-color:#262729;border-color:#262729}.custom-theme .el-button--primary:focus,.custom-theme .el-button--primary:hover{background:#515254;border-color:#515254;color:#fff}.custom-theme .el-button--primary:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-active{background:#222325;border-color:#222325;color:#fff}.custom-theme .el-button--primary.is-disabled,.custom-theme .el-button--primary.is-disabled:active,.custom-theme .el-button--primary.is-disabled:focus,.custom-theme .el-button--primary.is-disabled:hover{color:#fff;background-color:#939394;border-color:#939394}.custom-theme .el-button--primary.is-plain{color:#262729;background:#e9e9ea;border-color:#a8a9a9}.custom-theme .el-button--primary.is-plain:focus,.custom-theme .el-button--primary.is-plain:hover{background:#262729;border-color:#262729;color:#fff}.custom-theme .el-button--primary.is-plain:active{background:#222325;border-color:#222325;color:#fff;outline:0}.custom-theme .el-button--primary.is-plain.is-disabled,.custom-theme .el-button--primary.is-plain.is-disabled:active,.custom-theme .el-button--primary.is-plain.is-disabled:focus,.custom-theme .el-button--primary.is-plain.is-disabled:hover{color:#7d7d7f;background-color:#e9e9ea;border-color:#d4d4d4}.custom-theme .el-button--success{color:#fff;background-color:#409167;border-color:#409167}.custom-theme .el-button--success:focus,.custom-theme .el-button--success:hover{background:#66a785;border-color:#66a785;color:#fff}.custom-theme .el-button--success:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-active{background:#3a835d;border-color:#3a835d;color:#fff}.custom-theme .el-button--success.is-disabled,.custom-theme .el-button--success.is-disabled:active,.custom-theme .el-button--success.is-disabled:focus,.custom-theme .el-button--success.is-disabled:hover{color:#fff;background-color:#a0c8b3;border-color:#a0c8b3}.custom-theme .el-button--success.is-plain{color:#409167;background:#ecf4f0;border-color:#b3d3c2}.custom-theme .el-button--success.is-plain:focus,.custom-theme .el-button--success.is-plain:hover{background:#409167;border-color:#409167;color:#fff}.custom-theme .el-button--success.is-plain:active{background:#3a835d;border-color:#3a835d;color:#fff;outline:0}.custom-theme .el-button--success.is-plain.is-disabled,.custom-theme .el-button--success.is-plain.is-disabled:active,.custom-theme .el-button--success.is-plain.is-disabled:focus,.custom-theme .el-button--success.is-plain.is-disabled:hover{color:#8cbda4;background-color:#ecf4f0;border-color:#d9e9e1}.custom-theme .el-button--warning{color:#fff;background-color:#9da408;border-color:#9da408}.custom-theme .el-button--warning:focus,.custom-theme .el-button--warning:hover{background:#b1b639;border-color:#b1b639;color:#fff}.custom-theme .el-button--warning:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-active{background:#8d9407;border-color:#8d9407;color:#fff}.custom-theme .el-button--warning.is-disabled,.custom-theme .el-button--warning.is-disabled:active,.custom-theme .el-button--warning.is-disabled:focus,.custom-theme .el-button--warning.is-disabled:hover{color:#fff;background-color:#ced284;border-color:#ced284}.custom-theme .el-button--warning.is-plain{color:#9da408;background:#f5f6e6;border-color:#d8db9c}.custom-theme .el-button--warning.is-plain:focus,.custom-theme .el-button--warning.is-plain:hover{background:#9da408;border-color:#9da408;color:#fff}.custom-theme .el-button--warning.is-plain:active{background:#8d9407;border-color:#8d9407;color:#fff;outline:0}.custom-theme .el-button--warning.is-plain.is-disabled,.custom-theme .el-button--warning.is-plain.is-disabled:active,.custom-theme .el-button--warning.is-plain.is-disabled:focus,.custom-theme .el-button--warning.is-plain.is-disabled:hover{color:#c4c86b;background-color:#f5f6e6;border-color:#ebedce}.custom-theme .el-button--danger{color:#fff;background-color:#b3450e;border-color:#b3450e}.custom-theme .el-button--danger:focus,.custom-theme .el-button--danger:hover{background:#c26a3e;border-color:#c26a3e;color:#fff}.custom-theme .el-button--danger:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-active{background:#a13e0d;border-color:#a13e0d;color:#fff}.custom-theme .el-button--danger.is-disabled,.custom-theme .el-button--danger.is-disabled:active,.custom-theme .el-button--danger.is-disabled:focus,.custom-theme .el-button--danger.is-disabled:hover{color:#fff;background-color:#d9a287;border-color:#d9a287}.custom-theme .el-button--danger.is-plain{color:#b3450e;background:#f7ece7;border-color:#e1b59f}.custom-theme .el-button--danger.is-plain:focus,.custom-theme .el-button--danger.is-plain:hover{background:#b3450e;border-color:#b3450e;color:#fff}.custom-theme .el-button--danger.is-plain:active{background:#a13e0d;border-color:#a13e0d;color:#fff;outline:0}.custom-theme .el-button--danger.is-plain.is-disabled,.custom-theme .el-button--danger.is-plain.is-disabled:active,.custom-theme .el-button--danger.is-plain.is-disabled:focus,.custom-theme .el-button--danger.is-plain.is-disabled:hover{color:#d18f6e;background-color:#f7ece7;border-color:#f0dacf}.custom-theme .el-button--info{color:#fff;background-color:#0a76a4;border-color:#0a76a4}.custom-theme .el-button--info:focus,.custom-theme .el-button--info:hover{background:#3b91b6;border-color:#3b91b6;color:#fff}.custom-theme .el-button--info:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-active{background:#096a94;border-color:#096a94;color:#fff}.custom-theme .el-button--info.is-disabled,.custom-theme .el-button--info.is-disabled:active,.custom-theme .el-button--info.is-disabled:focus,.custom-theme .el-button--info.is-disabled:hover{color:#fff;background-color:#85bbd2;border-color:#85bbd2}.custom-theme .el-button--info.is-plain{color:#0a76a4;background:#e7f1f6;border-color:#9dc8db}.custom-theme .el-button--info.is-plain:focus,.custom-theme .el-button--info.is-plain:hover{background:#0a76a4;border-color:#0a76a4;color:#fff}.custom-theme .el-button--info.is-plain:active{background:#096a94;border-color:#096a94;color:#fff;outline:0}.custom-theme .el-button--info.is-plain.is-disabled,.custom-theme .el-button--info.is-plain.is-disabled:active,.custom-theme .el-button--info.is-plain.is-disabled:focus,.custom-theme .el-button--info.is-plain.is-disabled:hover{color:#6cadc8;background-color:#e7f1f6;border-color:#cee4ed}.custom-theme .el-button--medium{padding:10px 20px;font-size:14px;border-radius:4px}.custom-theme .el-button--medium.is-round{padding:10px 20px}.custom-theme .el-button--small{padding:9px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--small.is-round{padding:9px 15px}.custom-theme .el-button--mini{padding:7px 15px;font-size:12px;border-radius:3px}.custom-theme .el-button--mini.is-round{padding:7px 15px}.custom-theme .el-button--text{border:none;color:#262729;background:0 0;padding-left:0;padding-right:0}.custom-theme .el-button--text:focus,.custom-theme .el-button--text:hover{color:#515254;border-color:transparent;background-color:transparent}.custom-theme .el-button--text:active{color:#222325;border-color:transparent;background-color:transparent}.custom-theme .el-button-group{display:inline-block;vertical-align:middle}.custom-theme .el-button-group::after,.custom-theme .el-button-group::before{display:table;content:""}.custom-theme .el-button-group::after{clear:both}.custom-theme .el-button-group .el-button{float:left;position:relative}.custom-theme .el-button-group .el-button+.el-button{margin-left:0}.custom-theme .el-button-group .el-button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.custom-theme .el-button-group .el-button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.custom-theme .el-button-group .el-button:not(:first-child):not(:last-child){border-radius:0}.custom-theme .el-button-group .el-button:not(:last-child){margin-right:-1px}.custom-theme .el-button-group .el-button:active,.custom-theme .el-button-group .el-button:focus,.custom-theme .el-button-group .el-button:hover{z-index:1}.custom-theme .el-button-group .el-button.is-active{z-index:1}.custom-theme .el-button-group .el-button--primary:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--primary:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--success:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--warning:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--danger:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:first-child{border-right-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:last-child{border-left-color:rgba(255,255,255,.5)}.custom-theme .el-button-group .el-button--info:not(:first-child):not(:last-child){border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.custom-theme .el-checkbox{color:#5a5e66;font-weight:500;font-size:14px;position:relative;cursor:pointer;display:inline-block;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.custom-theme .el-checkbox.is-bordered{padding:9px 20px 9px 10px;border-radius:4px;border:1px solid #d8dce5}.custom-theme .el-checkbox.is-bordered.is-checked{border-color:#262729}.custom-theme .el-checkbox.is-bordered.is-disabled{border-color:#e6ebf5;cursor:not-allowed}.custom-theme .el-checkbox.is-bordered+.el-checkbox.is-bordered{margin-left:10px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium{padding:7px 20px 7px 10px;border-radius:4px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label{line-height:17px;font-size:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner{height:14px;width:14px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small{padding:3px 15px 7px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label{line-height:15px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini{padding:1px 15px 5px 10px;border-radius:3px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label{line-height:12px;font-size:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner{height:12px;width:12px}.custom-theme .el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after{height:6px;width:2px}.custom-theme .el-checkbox__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5;cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner::after{cursor:not-allowed;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled .el-checkbox__inner+.el-checkbox__label{cursor:not-allowed}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{background-color:#edf2fc;border-color:#d8dce5}.custom-theme .el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{background-color:#b4bccc;border-color:#b4bccc}.custom-theme .el-checkbox__input.is-disabled+span.el-checkbox__label{color:#b4bccc;cursor:not-allowed}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-checked .el-checkbox__inner::after{-webkit-transform:rotate(45deg) scaleY(1);transform:rotate(45deg) scaleY(1)}.custom-theme .el-checkbox__input.is-checked+.el-checkbox__label{color:#262729}.custom-theme .el-checkbox__input.is-focus .el-checkbox__inner{border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner{background-color:#262729;border-color:#262729}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::before{content:'';position:absolute;display:block;background-color:#fff;height:2px;-webkit-transform:scale(.5);transform:scale(.5);left:0;right:0;top:5px}.custom-theme .el-checkbox__input.is-indeterminate .el-checkbox__inner::after{display:none}.custom-theme .el-checkbox__inner{display:inline-block;position:relative;border:1px solid #d8dce5;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 .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.custom-theme .el-checkbox__inner:hover{border-color:#262729}.custom-theme .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 .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;transition:transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms,-webkit-transform .15s cubic-bezier(.71,-.46,.88,.6) 50ms;-webkit-transform-origin:center;transform-origin:center}.custom-theme .el-checkbox__original{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;left:-999px}.custom-theme .el-checkbox__label{display:inline-block;padding-left:10px;line-height:19px;font-size:14px}.custom-theme .el-checkbox+.el-checkbox{margin-left:30px}.custom-theme .el-checkbox-button{position:relative;display:inline-block}.custom-theme .el-checkbox-button__inner{display:inline-block;line-height:1;font-weight:500;white-space:nowrap;vertical-align:middle;cursor:pointer;background:#fff;border:1px solid #d8dce5;border-left:0;color:#5a5e66;-webkit-appearance:none;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;outline:0;margin:0;position:relative;-webkit-transition:all .3s cubic-bezier(.645,.045,.355,1);transition:all .3s cubic-bezier(.645,.045,.355,1);-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;padding:12px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button__inner.is-round{padding:12px 20px}.custom-theme .el-checkbox-button__inner:hover{color:#262729}.custom-theme .el-checkbox-button__inner [class*=el-icon-]{line-height:.9}.custom-theme .el-checkbox-button__inner [class*=el-icon-]+span{margin-left:5px}.custom-theme .el-checkbox-button__original{opacity:0;outline:0;position:absolute;margin:0;left:-999px}.custom-theme .el-checkbox-button.is-checked .el-checkbox-button__inner{color:#fff;background-color:#262729;border-color:#262729;-webkit-box-shadow:-1px 0 0 0 #7d7d7f;box-shadow:-1px 0 0 0 #7d7d7f}.custom-theme .el-checkbox-button.is-disabled .el-checkbox-button__inner{color:#b4bccc;cursor:not-allowed;background-image:none;background-color:#fff;border-color:#e6ebf5;-webkit-box-shadow:none;box-shadow:none}.custom-theme .el-checkbox-button:first-child .el-checkbox-button__inner{border-left:1px solid #d8dce5;border-radius:4px 0 0 4px;-webkit-box-shadow:none!important;box-shadow:none!important}.custom-theme .el-checkbox-button.is-focus .el-checkbox-button__inner{border-color:#262729}.custom-theme .el-checkbox-button:last-child .el-checkbox-button__inner{border-radius:0 4px 4px 0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner{padding:10px 20px;font-size:14px;border-radius:0}.custom-theme .el-checkbox-button--medium .el-checkbox-button__inner.is-round{padding:10px 20px}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner{padding:9px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--small .el-checkbox-button__inner.is-round{padding:9px 15px}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner{padding:7px 15px;font-size:12px;border-radius:0}.custom-theme .el-checkbox-button--mini .el-checkbox-button__inner.is-round{padding:7px 15px}.custom-theme .el-checkbox-group{font-size:0}.custom-theme .el-transfer{font-size:14px}.custom-theme .el-transfer__buttons{display:inline-block;vertical-align:middle;padding:0 30px}.custom-theme .el-transfer__button{display:block;margin:0 auto;padding:10px;border-radius:50%;color:#fff;background-color:#262729;font-size:0}.custom-theme .el-transfer__button.is-with-texts{border-radius:4px}.custom-theme .el-transfer__button.is-disabled{border:1px solid #d8dce5;background-color:#f5f7fa;color:#b4bccc}.custom-theme .el-transfer__button.is-disabled:hover{border:1px solid #d8dce5;background-color:#f5f7fa;color:#b4bccc}.custom-theme .el-transfer__button:first-child{margin-bottom:10px}.custom-theme .el-transfer__button:nth-child(2){margin:0}.custom-theme .el-transfer__button i,.custom-theme .el-transfer__button span{font-size:14px}.custom-theme .el-transfer__button [class*=el-icon-]+span{margin-left:0}.custom-theme .el-transfer-panel{border:1px solid #e6ebf5;border-radius:4px;overflow:hidden;background:#fff;display:inline-block;vertical-align:middle;width:200px;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.custom-theme .el-transfer-panel__body{height:246px}.custom-theme .el-transfer-panel__body.is-with-footer{padding-bottom:40px}.custom-theme .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}.custom-theme .el-transfer-panel__list.is-filterable{height:194px;padding-top:0}.custom-theme .el-transfer-panel__item{height:30px;line-height:30px;padding-left:15px;display:block}.custom-theme .el-transfer-panel__item+.el-transfer-panel__item{margin-left:0}.custom-theme .el-transfer-panel__item.el-checkbox{color:#5a5e66}.custom-theme .el-transfer-panel__item:hover{color:#262729}.custom-theme .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}.custom-theme .el-transfer-panel__item .el-checkbox__input{position:absolute;top:8px}.custom-theme .el-transfer-panel__filter{text-align:center;margin:15px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:auto}.custom-theme .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}.custom-theme .el-transfer-panel__filter .el-input__icon{margin-left:5px}.custom-theme .el-transfer-panel__filter .el-icon-circle-close{cursor:pointer}.custom-theme .el-transfer-panel .el-transfer-panel__header{height:40px;line-height:40px;background:#f5f7fa;margin:0;padding-left:15px;border-bottom:1px solid #e6ebf5;-webkit-box-sizing:border-box;box-sizing:border-box;color:#000}.custom-theme .el-transfer-panel .el-transfer-panel__header .el-checkbox{display:block;line-height:40px}.custom-theme .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label{font-size:16px;color:#2d2f33;font-weight:400}.custom-theme .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span{position:absolute;right:15px;color:#878d99;font-size:12px;font-weight:400}.custom-theme .el-transfer-panel .el-transfer-panel__footer{height:40px;background:#fff;margin:0;padding:0;border-top:1px solid #e6ebf5;position:absolute;bottom:0;left:0;width:100%;z-index:1}.custom-theme .el-transfer-panel .el-transfer-panel__footer::after{display:inline-block;content:"";height:100%;vertical-align:middle}.custom-theme .el-transfer-panel .el-transfer-panel__footer .el-checkbox{padding-left:20px;color:#5a5e66}.custom-theme .el-transfer-panel .el-transfer-panel__empty{margin:0;height:30px;line-height:30px;padding:6px 15px 0;color:#878d99}.custom-theme .el-transfer-panel .el-checkbox__label{padding-left:8px}.custom-theme .el-transfer-panel .el-checkbox__inner{height:14px;width:14px;border-radius:3px}.custom-theme .el-transfer-panel .el-checkbox__inner::after{height:6px;width:3px;left:4px}.custom-theme .el-container{display:-webkit-box;display:-ms-flexbox;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;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-container.is-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.custom-theme .el-header{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-aside{overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box}.custom-theme .el-main{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding:20px}.custom-theme .el-footer{padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box} \ No newline at end of file diff --git a/src/components/AvatarUpload/index.vue b/src/components/AvatarUpload/index.vue new file mode 100644 index 0000000000..a4132bedff --- /dev/null +++ b/src/components/AvatarUpload/index.vue @@ -0,0 +1,77 @@ + + + diff --git a/src/components/BackToTop/index.vue b/src/components/BackToTop/index.vue new file mode 100644 index 0000000000..eebb725001 --- /dev/null +++ b/src/components/BackToTop/index.vue @@ -0,0 +1,112 @@ + + + + + diff --git a/src/components/Breadcrumb/index.vue b/src/components/Breadcrumb/index.vue new file mode 100644 index 0000000000..006a9b91a3 --- /dev/null +++ b/src/components/Breadcrumb/index.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/src/components/Charts/BarChart.vue b/src/components/Charts/BarChart.vue new file mode 100644 index 0000000000..63a6a93d4f --- /dev/null +++ b/src/components/Charts/BarChart.vue @@ -0,0 +1,136 @@ + + + diff --git a/src/components/Charts/LineChart.vue b/src/components/Charts/LineChart.vue new file mode 100644 index 0000000000..134d972b1c --- /dev/null +++ b/src/components/Charts/LineChart.vue @@ -0,0 +1,192 @@ + + + diff --git a/src/components/Charts/MixedChart.vue b/src/components/Charts/MixedChart.vue new file mode 100644 index 0000000000..48ef5ef362 --- /dev/null +++ b/src/components/Charts/MixedChart.vue @@ -0,0 +1,248 @@ + + + diff --git a/src/components/Charts/mixins/resize.ts b/src/components/Charts/mixins/resize.ts new file mode 100644 index 0000000000..158077379a --- /dev/null +++ b/src/components/Charts/mixins/resize.ts @@ -0,0 +1,67 @@ +import { ECharts } from 'echarts' +import { Component, Vue } from 'vue-property-decorator' + +@Component({ + name: 'ResizeMixin' +}) +export default class extends Vue { + protected chart!: ECharts | null + private sidebarElm?: Element + + mounted() { + this.initResizeEvent() + this.initSidebarResizeEvent() + } + + beforeDestroy() { + this.destroyResizeEvent() + this.destroySidebarResizeEvent() + } + + activated() { + this.initResizeEvent() + this.initSidebarResizeEvent() + } + + deactivated() { + this.destroyResizeEvent() + this.destroySidebarResizeEvent() + } + + private chartResizeHandler() { + if (this.chart) { + this.chart.resize() + } + } + + private sidebarResizeHandler(e: TransitionEvent) { + if (e.propertyName === 'width') { + this.chartResizeHandler() + } + } + + private initResizeEvent() { + if (this.chartResizeHandler) { + window.addEventListener('resize', this.chartResizeHandler) + } + } + + private destroyResizeEvent() { + if (this.chartResizeHandler) { + window.removeEventListener('resize', this.chartResizeHandler) + } + } + + private initSidebarResizeEvent() { + this.sidebarElm = document.getElementsByClassName('sidebar-container')[0] + if (this.sidebarElm) { + this.sidebarElm.addEventListener('transitionend', this.sidebarResizeHandler as EventListener) + } + } + + private destroySidebarResizeEvent() { + if (this.sidebarElm) { + this.sidebarElm.removeEventListener('transitionend', this.sidebarResizeHandler as EventListener) + } + } +} diff --git a/src/components/DraggableKanban/index.vue b/src/components/DraggableKanban/index.vue new file mode 100644 index 0000000000..127d71d3ae --- /dev/null +++ b/src/components/DraggableKanban/index.vue @@ -0,0 +1,83 @@ + + + + + diff --git a/src/components/DraggableList/index.vue b/src/components/DraggableList/index.vue new file mode 100644 index 0000000000..296326966f --- /dev/null +++ b/src/components/DraggableList/index.vue @@ -0,0 +1,180 @@ + + + + + diff --git a/src/components/DraggableSelect/index.vue b/src/components/DraggableSelect/index.vue new file mode 100644 index 0000000000..35569018f9 --- /dev/null +++ b/src/components/DraggableSelect/index.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/src/components/DropdownMenu/index.vue b/src/components/DropdownMenu/index.vue new file mode 100644 index 0000000000..be714cc3d1 --- /dev/null +++ b/src/components/DropdownMenu/index.vue @@ -0,0 +1,113 @@ + + + + + diff --git a/src/components/Dropzone/index.vue b/src/components/Dropzone/index.vue new file mode 100644 index 0000000000..27891283af --- /dev/null +++ b/src/components/Dropzone/index.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/src/components/ErrorLog/index.vue b/src/components/ErrorLog/index.vue new file mode 100644 index 0000000000..8ef2100556 --- /dev/null +++ b/src/components/ErrorLog/index.vue @@ -0,0 +1,105 @@ + + + + + diff --git a/src/components/GithubCorner/index.vue b/src/components/GithubCorner/index.vue new file mode 100644 index 0000000000..26d4f83a67 --- /dev/null +++ b/src/components/GithubCorner/index.vue @@ -0,0 +1,71 @@ + + + + + diff --git a/src/components/Hamburger/index.vue b/src/components/Hamburger/index.vue new file mode 100644 index 0000000000..5a28314b73 --- /dev/null +++ b/src/components/Hamburger/index.vue @@ -0,0 +1,37 @@ + + + + + diff --git a/src/components/HeaderSearch/index.vue b/src/components/HeaderSearch/index.vue new file mode 100644 index 0000000000..a09d611e1b --- /dev/null +++ b/src/components/HeaderSearch/index.vue @@ -0,0 +1,218 @@ + + + + + diff --git a/src/components/JsonEditor/index.vue b/src/components/JsonEditor/index.vue new file mode 100644 index 0000000000..4147a3373e --- /dev/null +++ b/src/components/JsonEditor/index.vue @@ -0,0 +1,91 @@ +