/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */ border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }

.CodeMirror-hints {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  list-style: none;

  margin: 0;
  padding: 2px;
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  border-radius: 3px;
  border: 1px solid silver;

  background: white;
  font-size: 90%;
  font-family: monospace;

  max-height: 20em;
  overflow-y: auto;
}

.CodeMirror-hint {
  margin: 0;
  padding: 0 4px;
  border-radius: 2px;
  white-space: pre;
  color: black;
  cursor: pointer;
}

li.CodeMirror-hint-active {
  background: #08f;
  color: white;
}

/*

    Name:       Base16 Default Light
    Author:     Chris Kempson (http://chriskempson.com)

    CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
    Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)

*/

.cm-s-base16-light.CodeMirror { background: #f5f5f5; color: #202020; }
.cm-s-base16-light div.CodeMirror-selected { background: #e0e0e0; }
.cm-s-base16-light .CodeMirror-line::-moz-selection, .cm-s-base16-light .CodeMirror-line > span::-moz-selection, .cm-s-base16-light .CodeMirror-line > span > span::-moz-selection { background: #e0e0e0; }
.cm-s-base16-light .CodeMirror-line::selection, .cm-s-base16-light .CodeMirror-line > span::selection, .cm-s-base16-light .CodeMirror-line > span > span::selection { background: #e0e0e0; }
.cm-s-base16-light .CodeMirror-line::-moz-selection, .cm-s-base16-light .CodeMirror-line > span::-moz-selection, .cm-s-base16-light .CodeMirror-line > span > span::-moz-selection { background: #e0e0e0; }
.cm-s-base16-light .CodeMirror-gutters { background: #f5f5f5; border-right: 0px; }
.cm-s-base16-light .CodeMirror-guttermarker { color: #ac4142; }
.cm-s-base16-light .CodeMirror-guttermarker-subtle { color: #b0b0b0; }
.cm-s-base16-light .CodeMirror-linenumber { color: #b0b0b0; }
.cm-s-base16-light .CodeMirror-cursor { border-left: 1px solid #505050; }

.cm-s-base16-light span.cm-comment { color: #8f5536; }
.cm-s-base16-light span.cm-atom { color: #aa759f; }
.cm-s-base16-light span.cm-number { color: #aa759f; }

.cm-s-base16-light span.cm-property, .cm-s-base16-light span.cm-attribute { color: #90a959; }
.cm-s-base16-light span.cm-keyword { color: #ac4142; }
.cm-s-base16-light span.cm-string { color: #f4bf75; }

.cm-s-base16-light span.cm-variable { color: #90a959; }
.cm-s-base16-light span.cm-variable-2 { color: #6a9fb5; }
.cm-s-base16-light span.cm-def { color: #d28445; }
.cm-s-base16-light span.cm-bracket { color: #202020; }
.cm-s-base16-light span.cm-tag { color: #ac4142; }
.cm-s-base16-light span.cm-link { color: #aa759f; }
.cm-s-base16-light span.cm-error { background: #ac4142; color: #505050; }

.cm-s-base16-light .CodeMirror-activeline-background { background: #DDDCDC; }
.cm-s-base16-light .CodeMirror-matchingbracket { color: #f5f5f5 !important; background-color: #6A9FB5 !important}

@charset "UTF-8";.el-tiptap-editor{border-radius:8px;display:flex;flex-direction:column;max-height:100%;position:relative;width:100%}.el-tiptap-editor,.el-tiptap-editor *{box-sizing:border-box}.el-tiptap-editor .border-top-radius{border-top-left-radius:8px;border-top-right-radius:8px}.el-tiptap-editor .border-bottom-radius{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.el-tiptap-editor__codemirror{display:flex;flex-grow:1;font-size:16px;line-height:24px;overflow:scroll}.el-tiptap-editor__codemirror .CodeMirror{flex-grow:1;height:auto}.el-tiptap-editor--fullscreen{border-radius:0!important;bottom:0!important;height:100%!important;left:0!important;margin:0!important;position:fixed!important;right:0!important;top:0!important;width:100%!important;z-index:500}.el-tiptap-editor--fullscreen .el-tiptap-editor__content,.el-tiptap-editor--fullscreen .el-tiptap-editor__footer,.el-tiptap-editor--fullscreen .el-tiptap-editor__menu-bar{border-radius:0!important}.el-tiptap-editor>.el-tiptap-editor__content{background-color:#fff;border:1px solid #ebeef5;border-bottom:0;border-top:0;color:#000;flex-grow:1;padding:30px 20px}.el-tiptap-editor__menu-bar{background-color:#fff;border:1px solid #ebeef5;border-bottom:0;display:flex;flex-shrink:0;flex-wrap:wrap;padding:5px;position:relative}.el-tiptap-editor__menu-bar:before{bottom:0;background-color:#ebeef5;content:"";height:1px;left:0;margin:0 10px;right:0;position:absolute}.el-tiptap-editor__menu-bubble{background-color:#fff;border-radius:8px;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);display:flex;padding:5px;opacity:0;position:absolute;transform:translateX(-50%);transition:opacity .3s ease-in-out;visibility:hidden;z-index:50}.el-tiptap-editor__menu-bubble--active{opacity:1;visibility:visible}.el-tiptap-editor__content{font-family:sans-serif;line-height:1.7;overflow-x:auto;text-align:left}.el-tiptap-editor__content,.el-tiptap-editor__content>*{box-sizing:border-box}.el-tiptap-editor__content p{margin-bottom:0;margin-top:0;outline:0}.el-tiptap-editor__content h1,.el-tiptap-editor__content h2,.el-tiptap-editor__content h3,.el-tiptap-editor__content h4,.el-tiptap-editor__content h5{margin-top:20px;margin-bottom:20px}.el-tiptap-editor__content h1:first-child,.el-tiptap-editor__content h2:first-child,.el-tiptap-editor__content h3:first-child,.el-tiptap-editor__content h4:first-child,.el-tiptap-editor__content h5:first-child{margin-top:0}.el-tiptap-editor__content h1:last-child,.el-tiptap-editor__content h2:last-child,.el-tiptap-editor__content h3:last-child,.el-tiptap-editor__content h4:last-child,.el-tiptap-editor__content h5:last-child{margin-bottom:0}.el-tiptap-editor__content ol,.el-tiptap-editor__content ul{counter-reset:none;list-style-type:none;margin-bottom:0;margin-left:24px;margin-top:0;padding-bottom:5px;padding-left:0;padding-top:5px}.el-tiptap-editor__content li>p{margin:0}.el-tiptap-editor__content li>p:first-child:before{content:counter(el-tiptap-counter) ".";display:inline-block;left:-5px;line-height:1;margin-left:-24px;position:relative;text-align:right;top:0;width:24px}.el-tiptap-editor__content ul li>p:first-child:before{content:"•";text-align:center}.el-tiptap-editor__content ol{counter-reset:el-tiptap-counter}.el-tiptap-editor__content ol li>p:first-child:before{counter-increment:el-tiptap-counter}.el-tiptap-editor__content a{color:#409eff;cursor:pointer}.el-tiptap-editor__content blockquote{border-left:5px solid #edf2fc;border-radius:2px;color:#606266;margin:10px 0;padding-left:1em}.el-tiptap-editor__content code{background-color:#d9ecff;border-radius:4px;color:#409eff;display:inline-block;font-size:14px;font-weight:700;padding:0 8px}.el-tiptap-editor__content pre{background-color:#303133;color:#d9ecff;font-size:16px;overflow-x:auto;padding:14px 20px;margin:10px 0;border-radius:5px}.el-tiptap-editor__content pre code{background-color:transparent;border-radius:0;color:inherit;display:block;font-family:"Menlo,Monaco,Consolas,Courier,monospace";font-size:inherit;font-weight:400;padding:0}.el-tiptap-editor__content img{display:inline-block;float:none;margin:12px 0;max-width:100%}.el-tiptap-editor__content img[data-display=inline]{margin-left:12px;margin-right:12px}.el-tiptap-editor__content img[data-display=block]{display:block}.el-tiptap-editor__content img[data-display=left]{float:left;margin-left:0;margin-right:12px}.el-tiptap-editor__content img[data-display=right]{float:right;margin-left:12px;margin-right:0}.el-tiptap-editor__content .image-view{display:inline-block;float:none;line-height:0;margin:12px 0;max-width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:baseline}.el-tiptap-editor__content .image-view--inline{margin-left:12px;margin-right:12px}.el-tiptap-editor__content .image-view--block{display:block}.el-tiptap-editor__content .image-view--left{float:left;margin-left:0;margin-right:12px}.el-tiptap-editor__content .image-view--right{float:right;margin-left:12px;margin-right:0}.el-tiptap-editor__content .image-view__body{clear:both;display:inline-block;max-width:100%;outline-color:transparent;outline-style:solid;outline-width:2px;transition:all .2s ease-in;position:relative}.el-tiptap-editor__content .image-view__body:hover{outline-color:#ffc83d}.el-tiptap-editor__content .image-view__body--focused:hover,.el-tiptap-editor__content .image-view__body--resizing:hover{outline-color:transparent}.el-tiptap-editor__content .image-view__body__placeholder{height:100%;left:0;position:absolute;top:0;width:100%;z-index:-1}.el-tiptap-editor__content .image-view__body__image{cursor:pointer;margin:0}.el-tiptap-editor__content .image-resizer{border:1px solid #409eff;height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.el-tiptap-editor__content .image-resizer__handler{background-color:#409eff;border:1px solid #fff;border-radius:2px;box-sizing:border-box;display:block;height:12px;position:absolute;width:12px;z-index:2}.el-tiptap-editor__content .image-resizer__handler--tl{cursor:nw-resize;left:-6px;top:-6px}.el-tiptap-editor__content .image-resizer__handler--tr{cursor:ne-resize;right:-6px;top:-6px}.el-tiptap-editor__content .image-resizer__handler--bl{bottom:-6px;cursor:sw-resize;left:-6px}.el-tiptap-editor__content .image-resizer__handler--br{bottom:-6px;cursor:se-resize;right:-6px}.el-tiptap-editor__content ul[data-type=todo_list]{margin-left:5px}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item{display:flex;flex-direction:row;justify-content:flex-start;margin-bottom:0}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item[data-text-align=right]{justify-content:flex-end!important}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item[data-text-align=center]{justify-content:center!important}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item[data-text-align=justify]{text-align:space-between!important}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item .todo-content{padding-left:10px}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item .todo-content>p{font-size:16px}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item .todo-content>p:last-of-type{margin-bottom:0}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item--done>.todo-checkbox{color:#409eff}.el-tiptap-editor__content ul[data-type=todo_list] .todo-item--done>.todo-content>p{color:#409eff;text-decoration:line-through}.el-tiptap-editor__content hr{margin-top:20px;margin-bottom:20px}.el-tiptap-editor__content [data-indent="1"]{margin-left:30px!important}.el-tiptap-editor__content [data-indent="2"]{margin-left:60px!important}.el-tiptap-editor__content [data-indent="3"]{margin-left:90px!important}.el-tiptap-editor__content [data-indent="4"]{margin-left:120px!important}.el-tiptap-editor__content [data-indent="5"]{margin-left:150px!important}.el-tiptap-editor__content [data-indent="6"]{margin-left:180px!important}.el-tiptap-editor__content [data-indent="7"]{margin-left:210px!important}.el-tiptap-editor__content .tableWrapper{margin:1em 0;overflow-x:auto}.el-tiptap-editor__content table{border-collapse:collapse;table-layout:fixed;width:100%;margin:0;overflow:hidden}.el-tiptap-editor__content td,.el-tiptap-editor__content th{border:2px solid #ebeef5;box-sizing:border-box;min-width:1em;padding:3px 5px;position:relative;vertical-align:top}.el-tiptap-editor__content td.selectedCell,.el-tiptap-editor__content th.selectedCell{background-color:#ecf5ff}.el-tiptap-editor__content th{font-weight:500;text-align:left}.el-tiptap-editor__content .column-resize-handle{background-color:#b3d8ff;bottom:0;pointer-events:none;position:absolute;right:-2px;top:0;width:4px;z-index:20}.el-tiptap-editor__content .iframe{height:0;padding-bottom:56.25%;position:relative;width:100%}.el-tiptap-editor__content .iframe__embed{border:0;height:100%;left:0;position:absolute;top:0;width:100%}.el-tiptap-editor__content .resize-cursor{cursor:ew-resize;cursor:col-resize}.el-tiptap-editor__footer{align-items:center;background-color:#fff;border:1px solid #ebeef5;display:flex;font-family:sans-serif;font-size:14px;justify-content:flex-end;padding:10px}.el-tiptap-editor .ProseMirror{outline:0}.el-tiptap-editor__placeholder.el-tiptap-editor--empty:first-child:before,.el-tiptap-editor__with-title-placeholder:first-child:before,.el-tiptap-editor__with-title-placeholder:nth-child(2):before{color:#c0c4cc;content:attr(data-empty-text);float:left;height:0;pointer-events:none}.el-tiptap-editor__characters{color:#939599}.el-tiptap-editor__command-button{border:1px solid transparent;box-sizing:border-box;align-items:center;border-radius:50%;color:#303133;cursor:pointer;display:flex;justify-content:center;height:40px;margin:2px;outline:0;transition:all .2s ease-in-out;width:40px}.el-tiptap-editor__command-button:hover{background-color:#e4e9f2}.el-tiptap-editor__command-button--active{background-color:#ecf5ff;color:#409eff}.el-tiptap-editor__command-button--readonly{cursor:default;opacity:.3;pointer-events:none}.el-tiptap-editor__command-button--readonly:hover{background-color:transparent}.el-tiptap-dropdown-menu .el-tiptap-dropdown-menu__item{color:#303133;line-height:1.5;padding-top:5px;padding-bottom:5px}.el-tiptap-dropdown-menu .el-tiptap-dropdown-menu__item [data-item-type=heading]{margin-bottom:0;margin-top:0}.el-tiptap-dropdown-menu .el-tiptap-dropdown-menu__item--active{background-color:#ecf5ff;color:#409eff}.el-tiptap-popper.el-popper{min-width:0}.el-tiptap-popper__menu__item{color:#303133;cursor:pointer;padding:8px 0}.el-tiptap-popper__menu__item--active,.el-tiptap-popper__menu__item:hover{color:#409eff}.el-tiptap-popper__menu__item--disabled{cursor:default;opacity:.2}.el-tiptap-popper__menu__item--disabled:hover{color:inherit}.el-tiptap-popper__menu__item__separator{border-top:1px solid #dcdfe6;height:0;margin:5px 0;width:100%}.el-tiptap-upload{display:flex}.el-tiptap-upload .el-upload,.el-tiptap-upload .el-upload-dragger{flex-grow:1}.el-tiptap-upload .el-upload-dragger{align-items:center;display:flex;flex-direction:column;justify-content:center;height:300px;width:100%}.el-tiptap-upload .el-upload-dragger .el-tiptap-upload__icon{font-size:50px;margin-bottom:10px}.el-tiptap-upload .el-upload-dragger:hover .el-tiptap-upload__icon{color:#409eff}.color-set{display:flex;flex-direction:row;flex-wrap:wrap;width:240px}.color-set .color{border-radius:50%;box-shadow:0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);color:#fff;height:30px;transition:all .2s ease-in-out;width:30px}.color-set .color,.color-set .color__wrapper{box-sizing:border-box}.color-set .color__wrapper{align-items:center;cursor:pointer;display:flex;flex:0 0 12.5%;justify-content:center;padding:5px}.color-set .color--selected,.color-set .color:hover{border:2px solid #fff;transform:scale(1.3)}.color-set .color--remove{position:relative}.color-set .color--remove:hover:before{transform:rotate(-45deg)}.color-set .color--remove:hover:after{transform:rotate(45deg)}.color-set .color--remove:after,.color-set .color--remove:before{background-color:#f56c6c;bottom:0;content:"";left:50%;position:absolute;margin:2px 0;top:0;transform:translateX(-50%);transition:all .2s ease-in-out;width:2px}.color-hex{align-items:center;display:flex;flex-direction:row;justify-content:space-between;margin-top:10px}.color-hex .color-hex__button{margin-left:10px;padding-left:15px;padding-right:15px}.table-grid-size-editor__body{flex-direction:column;flex-wrap:wrap;justify-content:space-between}.table-grid-size-editor__body,.table-grid-size-editor__row{display:flex}.table-grid-size-editor__cell{background-color:#fff;padding:5px}.table-grid-size-editor__cell__inner{border:1px solid #dcdfe6;box-sizing:border-box;border-radius:2px;height:16px;padding:4px;width:16px}.table-grid-size-editor__cell--selected .table-grid-size-editor__cell__inner{background-color:#ecf5ff;border-color:#409eff}.table-grid-size-editor__footer{margin-top:5px;text-align:center}.el-tiptap-edit-image-dialog .el-form-item:last-child{margin-bottom:0}.el-tiptap-edit-image-dialog input[type=number]::-webkit-inner-spin-button,.el-tiptap-edit-image-dialog input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}.el-tiptap-edit-link-dialog .el-form-item:last-child{margin-bottom:0}.el-popper.el-tiptap-image-popper{background-color:#fff;border-radius:8px;box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);min-width:0;padding:5px}.el-popper.el-tiptap-image-popper .image-bubble-menu{align-items:center;display:flex;flex-direction:row}.link-bubble-menu{display:flex}.fa-icon{display:inline-block;fill:currentColor;overflow:visible}.fa-icon>g{transform-origin:50% 50%}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both{transform:scale(-1)}.fa-spin>g{-webkit-animation:fa-spin 1s linear 0s infinite;animation:fa-spin 1s linear 0s infinite}.fa-pulse>g{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}.fa-inverse{color:#fff}@-webkit-keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@keyframes fa-spin{0%{transform:rotate(0)}to{transform:rotate(1turn)}}
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */

figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */

figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* Hidden
   ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

.svg-icon[data-v-bdcecbe0]{width:1em;height:1em;vertical-align:-.15em;fill:currentColor;overflow:hidden}.svg-external-icon[data-v-bdcecbe0]{background-color:currentColor;-webkit-mask-size:cover!important;mask-size:cover!important;display:inline-block}.nav-popper{padding:8px 12px!important;font-size:12px!important}.header-tooltips{z-index:3006!important}.headernav-left.left-nav[data-v-58802808]{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.headernav-left.left-nav .logo-image[data-v-58802808]{width:120px;height:30px;margin-top:10px;background:url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/logo_new2.svg) no-repeat 50%/100% 100%}.headernav-left.left-nav .vice-text[data-v-58802808]{margin-left:20px;color:#222;font-size:14px;cursor:pointer;font-weight:400;height:50px;line-height:50px;margin-right:20px}.headernav-left.left-nav .vice-text .vice-icon[data-v-58802808]{margin:0 6px;font-size:16px;vertical-align:middle}.headernav-left.left-nav .vice-text[data-v-58802808]:nth-of-type(2){margin-left:0}.headernav-left.left-nav .vice-text[data-v-58802808]:before{content:"";height:30%;border-left:1px solid #e9ebee;margin-right:12px}.headernav-left.left-nav .vice-text.active[data-v-58802808],.headernav-left.left-nav .vice-text[data-v-58802808]:hover{color:#507afe}.headernav-left.left-nav .panel-label_tool[data-v-58802808]{cursor:pointer}.headernav-left.left-nav .panel-label[data-v-58802808]{font-size:14px;vertical-align:middle;line-height:22px}.headernav-left.left-nav .panel[data-v-58802808]{overflow:hidden;vertical-align:middle;height:50px;line-height:50px}.headernav-left.left-nav .panel .menu-icon[data-v-58802808]{font-size:16px;margin-right:6px;vertical-align:middle;cursor:pointer}.headernav-left.left-nav .panel .panel-content[data-v-58802808]{font-weight:400;color:#222;line-height:22px;vertical-align:middle;cursor:pointer;font-size:14px}.headernav-left.left-nav .panel .panel-content.active[data-v-58802808],.headernav-left.left-nav .panel .panel-content[data-v-58802808]:hover{color:#507afe}.headernav-left.left-nav .panel-menu-left[data-v-58802808]{width:318px;background:#f4f6f5 url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/nav-bg.svg) no-repeat 50%/cover;min-height:484px;height:100%;padding:56px 0 0 66px}.headernav-left.left-nav .panel-menu-left .panel-title[data-v-58802808]{display:inline-block;width:124px;height:22px;margin-bottom:14px}.headernav-left.left-nav .panel-menu-left .panel-menu-tips[data-v-58802808]{width:232px;height:66px;opacity:1;color:#666;font-size:13px;line-height:22px;margin-bottom:26px}.headernav-left.left-nav .panel-menu-left .panel-menu-handel[data-v-58802808]{width:221px;height:58px;border-radius:6px;opacity:1;background:-webkit-gradient(linear,left bottom, left top,from(#fff),to(#f3f5f8));background:linear-gradient(0deg,#fff,#f3f5f8);-webkit-box-shadow:0 4px 8px 0 rgba(90,114,175,.3);box-shadow:0 4px 8px 0 rgba(90,114,175,.3);margin-bottom:10px;position:relative;padding-top:6px}.headernav-left.left-nav .panel-menu-left .panel-menu-handel .panel-menu-label[data-v-58802808]{color:#222;font-size:14px;font-weight:500;text-align:left;line-height:22px;margin-bottom:4px;padding-left:72px}.headernav-left.left-nav .panel-menu-left .panel-menu-handel .panel-menu-desc[data-v-58802808]{color:#535d74;font-size:12px;font-weight:400;text-align:left;line-height:20px;padding-left:72px}.headernav-left.left-nav .panel-menu-left .panel-menu-handel .panel-menu-icon[data-v-58802808]{position:absolute;top:50%;left:20px;font-size:32px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.headernav-left.left-nav .panel-menu-left .panel-menu-handel.ticket[data-v-58802808]{background:-webkit-gradient(linear,left bottom, left top,from(#507afe),to(#3263ff));background:linear-gradient(0deg,#507afe,#3263ff)}.headernav-left.left-nav .panel-menu-left .panel-menu-handel.ticket .panel-menu-label[data-v-58802808]{color:#fff}.headernav-left.left-nav .panel-menu-left .panel-menu-handel.ticket .panel-menu-desc[data-v-58802808]{color:hsla(0,0%,100%,.5)}.headernav-left.left-nav .panel-menu-left .panel-menu-handel[data-v-58802808]:hover{-webkit-box-shadow:0 4px 24px 0 rgba(90,114,175,.3);box-shadow:0 4px 24px 0 rgba(90,114,175,.3)}.headernav-left.left-nav .panel-menu-mask[data-v-58802808]{position:absolute;top:51px;left:-20px;z-index:3006;line-height:0;width:calc(100% + 40px);height:calc(100vh - 49px);background:rgba(0,0,0,.3)}.headernav-left.left-nav .panel-menu[data-v-58802808]{width:100%;min-height:484px;position:absolute;top:0;left:0;overflow:hidden;background-color:#fff}.headernav-left.left-nav .panel-menu .panel-menu-right[data-v-58802808]{width:calc(100% - 318px);padding:32px 40px 20px 40px;-webkit-box-sizing:border-box;box-sizing:border-box}.headernav-left.left-nav .panel-menu .menu-icon_close[data-v-58802808]{position:absolute;top:12px;right:12px;cursor:pointer;font-size:28px}.headernav-left.left-nav .panel-menu .title[data-v-58802808]{color:#222;font-size:16px;margin-bottom:20px;font-weight:400;padding-left:10px}.headernav-left.left-nav .panel-menu .title .menu-list-icon[data-v-58802808]{margin-right:12px}.headernav-left.left-nav .panel-menu .menu-list[data-v-58802808]{margin-bottom:18px}.headernav-left.left-nav .panel-menu .menu-list:first-of-type .title[data-v-58802808]{margin-top:0}.headernav-left.left-nav .panel-menu .menu-list[data-v-58802808]:last-of-type{margin-bottom:0}.headernav-left.left-nav .panel-menu .menu[data-v-58802808]{font-weight:400;width:calc((100% - 8px)/5);-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-bottom:3px;padding:8px 12px;margin-right:2px;height:68px;overflow:hidden}.headernav-left.left-nav .panel-menu .menu[data-v-58802808]:nth-of-type(5n){margin-right:0}.headernav-left.left-nav .panel-menu .menu[data-v-58802808] .el-link--inner{display:grid}.headernav-left.left-nav .panel-menu .menu .menu-name[data-v-58802808]{width:100%;font-size:14px;color:#222;margin-bottom:8px;font-weight:500;text-overflow:ellipsis;overflow:hidden;line-height:22px;white-space:nowrap}.headernav-left.left-nav .panel-menu .menu .menu-name .menu-name_label[data-v-58802808]{vertical-align:middle}.headernav-left.left-nav .panel-menu .menu .menu-name .menu-no-url[data-v-58802808]{font-size:10px;font-weight:400;text-align:left;margin-left:6px;color:#798fc5;width:48px;height:17px;padding:2px 4px;border-radius:3px;cursor:not-allowed;background:#f4f8fe;vertical-align:middle}.headernav-left.left-nav .panel-menu .menu .menu-name .menu-no-url.has-time[data-v-58802808]{color:#507afe}.headernav-left.left-nav .panel-menu .menu .menu-name .menu-no-url.no-permission[data-v-58802808]{color:#ff9902;background-color:#fff5e2}.headernav-left.left-nav .panel-menu .menu .menu-description[data-v-58802808]{font-size:13px;font-weight:400;color:#666;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;line-height:22px}.headernav-left.left-nav .panel-menu .menu.active[data-v-58802808],.headernav-left.left-nav .panel-menu .menu[data-v-58802808]:hover{border-radius:3px;background:#f5f5f5}.headernav-left.left-nav .panel-menu .menu.active .menu-name[data-v-58802808],.headernav-left.left-nav .panel-menu .menu:hover .menu-name[data-v-58802808]{color:#507afe}.headernav-left.left-nav .panel-menu .menu.has-time[data-v-58802808]{cursor:not-allowed}[data-v-cfe9b286] .setting-dialog{max-width:1100px}[data-v-cfe9b286] .setting-dialog .el-dialog__body{padding:20px}[data-v-cfe9b286] .setting-dialog .el-dialog__body .dialog-scrollBar .el-scrollbar__wrap{overflow-x:hidden}[data-v-cfe9b286] .setting-dialog .el-dialog__footer{padding-top:0}[data-v-cfe9b286] .setting-dialog .el-dialog__header{font-size:16px;font-weight:500;color:rgba(0,0,0,.85);border-bottom:1px solid #e9ebee}.table-switch[data-v-e69b09e0]{height:46px;background:#fff;line-height:46px;text-align:center}.table-switch.left[data-v-e69b09e0]{text-align:left}.table-switch.right[data-v-e69b09e0]{text-align:right}.table-switch_item[data-v-e69b09e0]{height:100%;display:inline-block;padding:0 10px;margin-right:2px;position:relative;cursor:pointer;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:-webkit-fit-content;width:fit-content;width:-moz-fit-content}.table-switch_item[data-v-e69b09e0]:last-of-type{margin-right:0}.table-switch_item[data-v-e69b09e0]:before{content:"";display:inline-block;width:0;height:2px;background-color:#0f6dff;position:absolute;bottom:0;left:50%;-webkit-transition:all .2s linear;transition:all .2s linear}.table-switch_item.active[data-v-e69b09e0]{background-color:#fff;border-right:none;color:#0f6dff}.table-switch_item.active[data-v-e69b09e0]:before{width:100%;left:0}.table-switch_item[data-v-e69b09e0]:hover{color:#0f6dff}.table-switch_item[data-v-e69b09e0]:hover:before{width:100%;left:0}.table-switch_item.disabled[data-v-e69b09e0]{cursor:not-allowed;color:rgba(0,0,0,.25)}.table-switch_item.disabled[data-v-e69b09e0]:before{display:none}.table-switch_item.disabled[data-v-e69b09e0]:hover{color:rgba(0,0,0,.25)}.table-switch_item.disabled.active[data-v-e69b09e0]{background-color:inherit;color:rgba(0,0,0,.25)}.empty-comp[data-v-50773bfa]{width:100%;text-align:center;position:absolute;top:50%;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.empty-comp .admin[data-v-50773bfa]{width:100px;height:100px;display:inline-block;background:url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/empty_bg.svg) no-repeat top/contain}.empty-comp_label[data-v-50773bfa]{color:#909399;margin-top:5px}.infinite-list[data-v-475c4efe]{height:calc(80vh - 150px);padding-right:20px}.infinite-list-item[data-v-475c4efe]{background:#fff;border-radius:5px;border:1px solid #dde0e3;margin-bottom:20px;padding:0 15px 15px 15px}.infinite-list-img[data-v-475c4efe]{display:inline-block;width:100%;height:160px;padding:20px 20px 40px 20px;background:#eef5fb url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/notice_bg.png) no-repeat 50%/cover;border-radius:4px;margin-bottom:6px;position:relative}.infinite-list-img .infinite-list-logo[data-v-475c4efe]{position:absolute;top:15px;left:20px}.infinite-list-img .infinite-list-logo .infinite-list-image[data-v-475c4efe]{width:14px;height:9px;vertical-align:middle;margin-right:5px;display:inline-block;background:url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/logo.svg) no-repeat top/contain}.infinite-list-img .infinite-list-logo .infinite-list-name[data-v-475c4efe]{vertical-align:middle;font-size:12px}.infinite-list-img .infinite-list-content[data-v-475c4efe]{padding-top:40px}.infinite-list-img .infinite-list-content .infinite-list-tips[data-v-475c4efe]{font-size:20px;color:rgba(0,0,0,.85);font-weight:600}.infinite-list-img .infinite-list-content .infinite-list-btn[data-v-475c4efe]{padding:0 0 0 10px;font-size:14px;height:24px;line-height:24px;color:#fff;width:220px;background:url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/blue_bg.png) no-repeat 50%/cover;border-radius:25px}.infinite-list-img.is-planet[data-v-475c4efe]{background:#fc391c url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/planet_bg.png) no-repeat 50%/cover}.infinite-list-img.is-planet .infinite-list-content[data-v-475c4efe]{padding-top:10px}.infinite-list-img.is-planet .infinite-list-tips[data-v-475c4efe]{display:inline-block;font-size:38px;color:#fff;margin-bottom:20px}.infinite-list-img.is-planet .infinite-list-btn[data-v-475c4efe]{color:#d60000;background:url(https://myom-release.oss-cn-hangzhou.aliyuncs.com/mysm/resource/workbench/orange_bg.png) no-repeat 50%/cover}.infinite-list-title[data-v-475c4efe]{height:52px;line-height:52px;padding-left:40px;padding-bottom:15px;border-bottom:1px solid rgba(0,0,0,.09);position:relative;margin-bottom:15px;cursor:pointer}.infinite-list-title .type[data-v-475c4efe]{color:#999}.infinite-list-title:hover .title-label[data-v-475c4efe]{color:#0f6dff}.title-label[data-v-475c4efe]{font-size:14px;font-weight:500;color:#333;height:100%;line-height:53px;display:inline-block;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;overflow:hidden;width:calc(100% - 80px)}.title-label[data-v-475c4efe]:before{position:absolute;left:10px;-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.title-label.show-more[data-v-475c4efe]:before{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.infinite-list-time[data-v-475c4efe]{margin-top:15px;font-size:12px;font-weight:400;width:100%;color:rgba(0,0,0,.45);text-align:right}.infinite-list-time.el-icon-time[data-v-475c4efe]:before{color:#0f6dff;margin-right:10px}.notice-content_html[data-v-475c4efe]{line-height:22px}.notice-content_html.show-more[data-v-475c4efe]{display:inline-block;width:100%;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;word-break:break-all;-webkit-box-orient:vertical;line-clamp:3;-webkit-line-clamp:3;max-height:66px}.notice-content_html.show-more img[data-v-475c4efe]{display:none}[data-v-06e87b95] .el-dialog__body{padding-right:10px}[data-v-06e87b95] .el-dialog__header{font-size:14px;font-weight:400;padding-top:0;padding-bottom:0;border-bottom:1px solid rgba(0,0,0,.09)}[data-v-06e87b95] .el-dialog__headerbtn{top:12px}[data-v-06e87b95] .table-switch{text-align:left}[data-v-06e87b95] .table-switch_item{font-weight:400}.notice-scroll_content[data-v-06e87b95]{position:relative}.headernav-right.right-nav[data-v-8bc73764]{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;top:50%;right:20px;margin-top:-25px}.headernav-right.right-nav .vice-text[data-v-8bc73764]{margin-right:20px;position:relative;font-weight:400;font-size:14px;min-width:112px;height:28px;line-height:28px;border-radius:28px;background:url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTEgMjgiIGNsYXNzPSJkZXNpZ24taWNvbmZvbnQiPjxyZWN0IHdpZHRoPSIxMTEiIGhlaWdodD0iMjgiIHJ4PSIxNCIgZmlsbD0idXJsKCN2eXg0NmRpZmlfX3BhaW50MF9saW5lYXJfOTU2Xzc5NDgpIi8+PHBhdGggZD0iTTgxIDBoLTNsLTkgMjhoM2w5LTI4ek00NyAwaC03bC05IDI4aDdsOS0yOHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjA4Ii8+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJ2eXg0NmRpZmlfX3BhaW50MF9saW5lYXJfOTU2Xzc5NDgiIHgxPSIwIiB5MT0iMTQiIHgyPSIxMTEiIHkyPSIxNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiM1MDdBRkUiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMyQ0Q5RkYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48L3N2Zz4=") no-repeat 50%/cover;color:#fff;margin-top:11px}.headernav-right.right-nav .vice-text .panel-label[data-v-8bc73764]{margin-left:8px}.headernav-right.right-nav .vice-text[data-v-8bc73764]:after{content:"";display:inline-block;width:1px;height:15px;background-color:#e9ebee;position:absolute;top:49%;right:-10px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.headernav-right.right-nav .vice-text[data-v-8bc73764]:hover{background-image:url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTEgMjgiIGNsYXNzPSJkZXNpZ24taWNvbmZvbnQiPjxyZWN0IHdpZHRoPSIxMTEiIGhlaWdodD0iMjgiIHJ4PSIxNCIgZmlsbD0idXJsKCNhcWdvNWQ2aXdfX3BhaW50MF9saW5lYXJfOTU2Xzg1MDkpIi8+PHJlY3Qgd2lkdGg9IjExMSIgaGVpZ2h0PSIyOCIgcng9IjE0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9Ii4yIi8+PHBhdGggZD0iTTgxIDBoLTNsLTkgMjhoM2w5LTI4ek00NyAwaC03bC05IDI4aDdsOS0yOHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjA4Ii8+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhcWdvNWQ2aXdfX3BhaW50MF9saW5lYXJfOTU2Xzg1MDkiIHgxPSIwIiB5MT0iMTQiIHgyPSIxMTEiIHkyPSIxNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiM1MDdBRkUiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMyQ0Q5RkYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48L3N2Zz4=")}.headernav-right.right-nav .vice-text[data-v-8bc73764]:active{background-image:url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTEgMjgiIGNsYXNzPSJkZXNpZ24taWNvbmZvbnQiPjxyZWN0IHdpZHRoPSIxMTEiIGhlaWdodD0iMjgiIHJ4PSIxNCIgZmlsbD0idXJsKCM5YTU3c2l2bzVfX3BhaW50MF9saW5lYXJfOTU2XzkyODcpIi8+PHJlY3Qgd2lkdGg9IjExMSIgaGVpZ2h0PSIyOCIgcng9IjE0IiBmaWxsPSIjMDAwIiBmaWxsLW9wYWNpdHk9Ii4xIi8+PHBhdGggZD0iTTgxIDBoLTNsLTkgMjhoM2w5LTI4ek00NyAwaC03bC05IDI4aDdsOS0yOHoiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iLjA4Ii8+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSI5YTU3c2l2bzVfX3BhaW50MF9saW5lYXJfOTU2XzkyODciIHgxPSIwIiB5MT0iMTQiIHgyPSIxMTEiIHkyPSIxNCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiM1MDdBRkUiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMyQ0Q5RkYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48L3N2Zz4=")}.headernav-right.right-nav .dropdown[data-v-8bc73764]{margin-right:20px;cursor:pointer;font-size:14px;color:#222}.headernav-right.right-nav .dropdown span[data-v-8bc73764]{margin-left:4px}.headernav-right.right-nav .dropdown .panel[data-v-8bc73764]{position:absolute;top:42px;max-width:400px;z-index:3006;background-color:#fff;-webkit-box-shadow:0 0 1px 1px #e9ebee;box-shadow:0 0 1px 1px #e9ebee}.headernav-right.right-nav .dropdown .panel .item[data-v-8bc73764]{height:38px;line-height:38px;padding:0 12px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.headernav-right.right-nav .dropdown .panel .item[data-v-8bc73764]:hover{background-color:#f5f5f5}.headernav-right .toolbar[data-v-8bc73764]{cursor:pointer;font-weight:400;font-size:14px;margin-right:20px;color:#222!important}.headernav-right .toolbar-icon[data-v-8bc73764]{width:18px;height:18px;vertical-align:-3px}.headernav-right .toolbar.active[data-v-8bc73764],.headernav-right .toolbar[data-v-8bc73764]:hover{color:#0f6dff!important}.headernav-right .toolbar[data-v-8bc73764]:before{content:"";width:1px;height:30%;background-color:#e9ebee;margin-right:20px}.headernav-right .header-nav-icon[data-v-8bc73764]{position:relative}.headernav-right .header-nav-icon .nv-handle-icon[data-v-8bc73764]{font-size:16px;margin-left:12px;font-weight:500;cursor:pointer;display:block;float:left;vertical-align:middle}.headernav-right .header-nav-icon .nv-handle-icon.disabled[data-v-8bc73764]{cursor:not-allowed}.headernav-right .header-nav-icon .nv-handle-icon[data-v-8bc73764]:hover{color:rgba(80,122,254,.7)}.headernav-right .header-nav-icon .nv-handle-icon[data-v-8bc73764] .el-badge{vertical-align:unset}.headernav-right .header-nav-icon .nv-handle-icon[data-v-8bc73764] .el-badge .el-badge__content.is-fixed{top:20px;right:7px;z-index:1}.headernav-right .header-nav-icon[data-v-8bc73764]:before{content:"";width:1px;height:15px;display:inline-block;background-color:#e9ebee;position:absolute;top:49%;left:0;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.headernav-right .userinfo-wrapper[data-v-8bc73764]{cursor:pointer;position:relative;height:100%;padding-top:9px;margin-left:20px}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764]{width:150px;display:none;position:absolute;top:50px;right:-20px;background-color:#fff;border:1px solid #e9ebee;z-index:3006}.headernav-right .userinfo-wrapper .user-handle-container .handle-items[data-v-8bc73764]{height:42px;line-height:42px}.headernav-right .userinfo-wrapper .user-handle-container .handle-items .user-avatar[data-v-8bc73764]{margin-right:8px}.headernav-right .userinfo-wrapper .user-handle-container .handle-items[data-v-8bc73764]:first-of-type{border-top:1px solid #e9ebee;padding-left:12px}.headernav-right .userinfo-wrapper .user-handle-container .handle-items[data-v-8bc73764]:hover{background-color:rgba(80,122,254,.075)}.headernav-right .userinfo-wrapper .user-handle-container .handle-items:hover .handle-item-text[data-v-8bc73764]{color:#507afe}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title{padding-left:12px!important}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item{padding-left:40px!important}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title{height:40px;line-height:38px}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item .el-link,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title .el-link{display:inline-block;width:100%;height:100%;font-weight:400}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item.user-handle-item,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title.user-handle-item{padding-left:12px!important}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item:hover,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title:hover{background-color:rgba(80,122,254,.075)}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item:hover .el-link,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title:hover .el-link{color:#507afe}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item.is-active,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title.is-active{background:rgba(80,122,254,.1)}.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-menu-item.is-active .el-link,.headernav-right .userinfo-wrapper .user-handle-container[data-v-8bc73764] .el-submenu__title.is-active .el-link{color:#507afe}.headernav-right .userinfo-wrapper .handle-items-icon[data-v-8bc73764]{color:#b8b8b8;margin-right:13px}.headernav-right .userinfo-wrapper:hover .user-handle-container[data-v-8bc73764]{display:block}.headernav-right .user-item[data-v-8bc73764]{font-size:14px;position:relative;vertical-align:-8px;width:calc(100% - 44px);display:inline-block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.headernav-right .user-item.user-logout[data-v-8bc73764]{cursor:pointer}.headernav-container.header-navbar-wrapper[data-v-4c1ac290]{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#fff;padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box;border-bottom:1px solid #e9ebee;position:relative}.headernav-container.header-navbar-wrapper .header-navbar-right[data-v-4c1ac290]{height:51px;line-height:51px}.stop-service-content.el-message-box{width:600px}.stop-service-content .stop-title{color:#333;font-size:16px;font-weight:400;text-align:left;line-height:24px;margin-bottom:16px}.stop-service-content .el-message-box__status{color:#1990ff;font-size:16px;-webkit-transform:unset;transform:unset;top:0}.stop-service-content .el-message-box__content{padding:0 28px}.stop-service-content .stop-tips{color:#666;font-size:13px;font-weight:400;line-height:22px}.stop-service-content .stop-tips:nth-last-of-type(2){margin-top:20px}.stop-service-content .stop-tips .stop-phone{color:#266eff}.user-group[data-v-af2c1162]{width:100%}.position[data-v-af2c1162]{color:#222;font-size:14px;font-weight:400;padding-top:2px}.user-items_content[data-v-af2c1162]{background:#fff;border-radius:2px;padding:12px 12px 12px 68px;border:1px solid #e8e8e8;position:relative;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.user-items_content[data-v-af2c1162]:hover{-webkit-box-shadow:0 2px 8px 1px rgba(0,0,0,.09);box-shadow:0 2px 8px 1px rgba(0,0,0,.09)}.user-items_content.empty[data-v-af2c1162]{background-color:#fbfbfc;padding-left:16px;text-align:center;line-height:74px;color:#666;font-size:13px;font-weight:400;position:relative;border-color:transparent}.user-items_content.empty .empty-icon[data-v-af2c1162]{width:88px;height:90px;position:absolute;bottom:0;right:0;z-index:0}.user-items_content.empty .empty-icon_desc[data-v-af2c1162]{width:100%;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.user-group-label[data-v-af2c1162]{color:#333;font-size:14px;font-weight:400;line-height:22px;margin:24px 0 8px 0}.user-group-label.user-group-label1[data-v-af2c1162]{margin-top:8px}.user-items[data-v-af2c1162]{width:100%;display:grid;grid-template-rows:repeat(auto-fill,106px);grid-template-columns:repeat(auto-fill,minmax(auto,304px));grid-template-areas:inherit;gap:16px}.user-items[data-v-af2c1162]:nth-of-type(2n){margin-right:0}.user-items .icon[data-v-af2c1162]{display:inline-block;text-align:center;line-height:40px;width:40px;height:40px;font-size:18px;color:#fff;background-color:#ffbf00;border-radius:50%;position:absolute;top:12px;left:12px}.user-items .copy-icon[data-v-af2c1162]{margin-left:12px;color:#c5c5c5;vertical-align:middle;cursor:pointer}.user-items .copy-icon[data-v-af2c1162]:hover{color:rgba(80,122,254,.075)}.user-items .copy-icon.active[data-v-af2c1162]{color:#507afe}.user-items .name[data-v-af2c1162]{font-weight:400;color:#222;font-size:13px;line-height:24px;margin-bottom:2px}.user-items .info-box[data-v-af2c1162]{margin-bottom:6px;font-size:13px}.user-items .info-box[data-v-af2c1162]:last-of-type{margin-bottom:0}.user-items .info-box .info-label[data-v-af2c1162]{color:#999;vertical-align:middle}.user-items .info-box .info-desc[data-v-af2c1162]{color:#222;width:calc(100% - 66px);vertical-align:middle}.ellipsis[data-v-af2c1162]{display:inline-block;width:100%;text-overflow:ellipsis;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:16px}.service-group .service-group_content[data-v-80ab4db0]{height:calc(100vh - 60px);padding:0 20px}.service-group[data-v-80ab4db0] .el-drawer .el-drawer__body{padding:0}.service-group[data-v-80ab4db0] .el-drawer .el-drawer__header{margin-bottom:0;padding:0 20px;height:48px;line-height:48px;color:#333;font-size:16px;font-weight:400}.service-group[data-v-80ab4db0] .el-drawer .el-drawer__close-btn{font-size:14px;color:#999}.feedback[data-v-21417b36]{position:fixed;bottom:170px;right:0;width:32px;border-radius:25px;opacity:1;background:#fff;-webkit-box-shadow:0 0 8px 0 rgba(0,0,0,.1);box-shadow:0 0 8px 0 rgba(0,0,0,.1);z-index:999;text-align:center;overflow:hidden;padding:4px 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.feedback .feedback-items[data-v-21417b36]{width:100%;cursor:pointer;display:inline-block;height:36px;line-height:36px;position:relative}.feedback .feedback-items[data-v-21417b36]:hover{color:#507afe}.feedback .feedback-items[data-v-21417b36]:after{content:"";display:inline-block;width:100%;height:1px;border:1px solid #eaeaea;position:absolute;bottom:-2px;left:0}.feedback .feedback-items[data-v-21417b36]:last-of-type:after{display:none}.feedback-dialog[data-v-21417b36] .el-select{width:100%}.feedback-dialog[data-v-21417b36] .el-form-item__label{font-size:13px;font-weight:400}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


