/**
 * Draft v0.11.7
 *
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
.DraftEditor-editorContainer,
.DraftEditor-root,
.public-DraftEditor-content {
  height: inherit;
  text-align: left;
  text-align: initial;
}
.public-DraftEditor-content[contenteditable=true] {
  -webkit-user-modify: read-write-plaintext-only;
}
.DraftEditor-root {
  position: relative;
}
.DraftEditor-editorContainer {
  background-color: rgba(255, 255, 255, 0);
  border-left: 0.1px solid transparent;
  position: relative;
  z-index: 1;
}
.public-DraftEditor-block {
  position: relative;
}
.DraftEditor-alignLeft .public-DraftStyleDefault-block {
  text-align: left;
}
.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root {
  left: 0;
  text-align: left;
}
.DraftEditor-alignCenter .public-DraftStyleDefault-block {
  text-align: center;
}
.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.DraftEditor-alignRight .public-DraftStyleDefault-block {
  text-align: right;
}
.DraftEditor-alignRight .public-DraftEditorPlaceholder-root {
  right: 0;
  text-align: right;
}
.public-DraftEditorPlaceholder-root {
  color: #9197a3;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.public-DraftEditorPlaceholder-hasFocus {
  color: #bdc1c9;
}
.DraftEditorPlaceholder-hidden {
  display: none;
}
.public-DraftStyleDefault-block {
  position: relative;
  white-space: pre-wrap;
}
.public-DraftStyleDefault-ltr {
  direction: ltr;
  text-align: left;
}
.public-DraftStyleDefault-rtl {
  direction: rtl;
  text-align: right;
}
.public-DraftStyleDefault-listLTR {
  direction: ltr;
}
.public-DraftStyleDefault-listRTL {
  direction: rtl;
}
.public-DraftStyleDefault-ol,
.public-DraftStyleDefault-ul {
  margin: 16px 0;
  padding: 0;
}
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR {
  margin-left: 1.5em;
}
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL {
  margin-right: 1.5em;
}
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR {
  margin-left: 3em;
}
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL {
  margin-right: 3em;
}
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR {
  margin-left: 4.5em;
}
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL {
  margin-right: 4.5em;
}
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR {
  margin-left: 6em;
}
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL {
  margin-right: 6em;
}
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR {
  margin-left: 7.5em;
}
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL {
  margin-right: 7.5em;
}
.public-DraftStyleDefault-unorderedListItem {
  list-style-type: square;
  position: relative;
}
.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0 {
  list-style-type: disc;
}
.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1 {
  list-style-type: circle;
}
.public-DraftStyleDefault-orderedListItem {
  list-style-type: none;
  position: relative;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before {
  left: -36px;
  position: absolute;
  text-align: right;
  width: 30px;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before {
  position: absolute;
  right: -36px;
  text-align: left;
  width: 30px;
}
.public-DraftStyleDefault-orderedListItem:before {
  content: counter(ol0) ". ";
  counter-increment: ol0;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before {
  content: counter(ol1, lower-alpha) ". ";
  counter-increment: ol1;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before {
  content: counter(ol2, lower-roman) ". ";
  counter-increment: ol2;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before {
  content: counter(ol3) ". ";
  counter-increment: ol3;
}
.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before {
  content: counter(ol4, lower-alpha) ". ";
  counter-increment: ol4;
}
.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset {
  counter-reset: ol0;
}
.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset {
  counter-reset: ol1;
}
.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset {
  counter-reset: ol2;
}
.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset {
  counter-reset: ol3;
}
.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset {
  counter-reset: ol4;
}

/**
 * prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
 * @author Tim  Shedor
 */
code[class*="language-"],
pre[class*="language-"] {
  color: black;
  background: none;
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  tab-size: 4;
  -webkit-hyphens: none;
  hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
  position: relative;
  margin: 0.5em 0;
  overflow: visible;
  padding: 1px;
}
pre[class*="language-"] > code {
  position: relative;
  z-index: 1;
  border-left: 10px solid #358ccb;
  box-shadow: -1px 0px 0px 0px #358ccb, 0px 0px 0px 1px #dfdfdf;
  background-color: #fdfdfd;
  background-image: linear-gradient(transparent 50%, rgba(69, 142, 209, 0.04) 50%);
  background-size: 3em 3em;
  background-origin: content-box;
  background-attachment: local;
}
code[class*="language-"] {
  max-height: inherit;
  height: inherit;
  padding: 0 1em;
  display: block;
  overflow: auto;
}
/* Margin bottom to accommodate shadow */
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background-color: #fdfdfd;
  box-sizing: border-box;
  margin-bottom: 1em;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
  position: relative;
  padding: 0.2em;
  border-radius: 0.3em;
  color: #c92c2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline;
  white-space: normal;
}
pre[class*="language-"]:before,
pre[class*="language-"]:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0.75em;
  left: 0.18em;
  width: 40%;
  height: 20%;
  max-height: 13em;
  box-shadow: 0px 13px 8px #979797;
  transform: rotate(-2deg);
}
pre[class*="language-"]:after {
  right: 0.75em;
  left: auto;
  transform: rotate(2deg);
}
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #7D8B99;
}
.token.punctuation {
  color: #5F6364;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.function-name,
.token.constant,
.token.symbol,
.token.deleted {
  color: #c92c2c;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.function,
.token.builtin,
.token.inserted {
  color: #2f9c0a;
}
.token.operator,
.token.entity,
.token.url,
.token.variable {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
  color: #1990b8;
}
.token.regex,
.token.important {
  color: #e90;
}
.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}
.token.important {
  font-weight: normal;
}
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}
.token.namespace {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  pre[class*="language-"]:before,
  pre[class*="language-"]:after {
    bottom: 14px;
    box-shadow: none;
  }
}
/* Plugin styles: Line Numbers */
pre[class*="language-"].line-numbers.line-numbers {
  padding-left: 0;
}
pre[class*="language-"].line-numbers.line-numbers code {
  padding-left: 3.8em;
}
pre[class*="language-"].line-numbers.line-numbers .line-numbers-rows {
  left: 0;
}
/* Plugin styles: Line Highlight */
pre[class*="language-"][data-line] {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
pre[data-line] code {
  position: relative;
  padding-left: 4em;
}
pre .line-highlight {
  margin-top: 0;
}

.app-container > .ant-tabs > .ant-tabs-bar,
.app-container > .ant-tabs .ant-tabs-tabpane > .ant-tabs > .ant-tabs-bar {
  background: #fff;
  margin-bottom: 0;
}
.app-container .ant-card-bordered {
  border: none;
}
.app-container > .ant-tabs .ant-tabs-tabpane > .ant-card {
  margin-bottom: 8px;
}
:root {
  --font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'WebQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
  --font-size: 14px;
  --header-height: 56px;
  --header-margin-bottom: 8px;
  --left-side-width: 240px;
  --breadcrumb-margin-left: 24px;
  --card-border-radius: 4px;
  --area-gap-size: 16px;
  --text-gap-size: 0.5rem;
  --tag-border-radius: 4px;
  --tag-font-size: 12px;
  --color-primary: #ee4d2d;
  --color-success: #1ab394;
  --color-warning: #f8ac59;
  --color-danger: #ed5565;
  --color-info: #3f5060;
  --color-disabled: #9099a0;
  --text-color-lighter: #fff;
  --text-color-light: #dddedf;
  --text-color: #9a9d9f;
  --text-color-dark: #676a6c;
  --text-color-darker: #333;
  --text-color-blue: #2673dd;
  --placeholder-text-color: #b7b7b7;
  --border-color: #e5e5e5;
  --bg-color-lighter: #fff;
  --bg-color-light: #f3f3f4;
  --bg-color: #232932;
  --bg-color-dark: #4a4a4a;
  --bg-color-darker: #393939;
  --bg-card: #fff;
  --table-border-color: #f2f2f4;
  --table-head-bg-color: #f5f6f9;
}
html,
body,
#root,
#root .water-mark > div {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'WebQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
  font-family: var(--font-family);
  font-size: 14px;
  font-size: var(--font-size);
  color: #333;
  color: var(--text-color-darker);
}
@keyframes circle-dash {
  0% {
    stroke-dasharray: 1, 125;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -25px;
  }
  100% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -125px;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.app-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
}
.app-loading svg {
  animation: rotate 2s linear infinite;
  width: 42px;
  height: 42px;
  position: absolute;
  top: calc(50% - 21px);
  left: calc(50% - 21px);
}
.app-loading svg circle {
  animation: circle-dash 2s ease-in-out infinite;
}
.app-loading > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.app-root {
  display: flex;
  min-height: 100%;
}
.app-sidebar {
  background: #232932;
  background: var(--bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  width: var(--left-side-width);
  height: 100%;
  /** light-theme */
}
.app-sidebar .app-logo {
  display: block;
  text-align: center;
  width: 240px;
  width: var(--left-side-width);
  height: 56px;
  height: var(--header-height);
  margin: 0 auto;
  padding: 12px;
}
.app-sidebar .app-logo img {
  width: 100px;
  height: 32px;
}
.app-sidebar .app-logo.app-logo-citylink img {
  width: 110px;
  height: 40px;
}
.app-sidebar .app-logo + .ssc-dropdown,
.app-sidebar .app-entity-switch.loading {
  margin: 8px 0 0;
  min-width: 176px;
}
.app-sidebar .app-entity-switch {
  border: 1px solid #e2e6ec;
  border-radius: 16px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 10px;
  -webkit-user-select: none;
          user-select: none;
  white-space: nowrap;
  min-width: 176px;
  max-width: calc(240px - 16px);
  max-width: calc(var(--left-side-width) - 16px);
  overflow: hidden;
  width: 198px;
}
.app-sidebar .app-entity-switch span {
  margin-left: 4px;
}
.app-sidebar .app-entity-switch span:first-child {
  margin-left: 0;
}
.app-sidebar .app-search-catalog {
  padding-top: 16px;
}
.app-sidebar .app-search-catalog .ssc-input > span {
  border: none;
}
.app-sidebar .app-search-catalog .ssc-input input {
  background: transparent;
  color: #fff;
  padding: 0 1px;
  width: 160px;
}
.app-sidebar .app-search-catalog .ssc-input img {
  padding-right: 0;
}
.app-sidebar .app-menu {
  box-shadow: none;
  width: 100%;
  height: calc(100% - 56px - 48px);
  height: calc(100% - var(--header-height) - 48px);
  overflow: auto;
  margin-top: 8px;
}
.app-sidebar .app-menu::-webkit-scrollbar {
  display: none;
}
.app-sidebar .app-menu a {
  color: inherit;
}
.app-sidebar .app-menu .rc-menu-submenu > .rc-menu {
  background: var(--color-menu-background);
}
.app-sidebar .app-menu .ssc-menu-item a {
  display: block;
}
.app-sidebar .app-menu .ssc-menu-icon {
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 24px);
}
.app-sidebar .app-menu .ssc-menu-icon + .ssc-icon {
  min-width: 24px;
}
.app-sidebar .app-menu.rc-menu-inline .app-menu-level-1 .rc-menu-submenu-title,
.app-sidebar .app-menu.rc-menu-inline .ssc-menu-item.app-menu-level-1 {
  padding-left: 12px !important;
}
.app-sidebar .app-menu.rc-menu-inline .app-menu-level-2 .rc-menu-submenu-title,
.app-sidebar .app-menu.rc-menu-inline .ssc-menu-item.app-menu-level-2 {
  padding-left: 40px !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-sidebar .app-menu.rc-menu-inline .app-menu-level-3 .rc-menu-submenu-title,
.app-sidebar .app-menu.rc-menu-inline .ssc-menu-item.app-menu-level-3 {
  padding-left: 60px !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-sidebar .app-sidebar-expand-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.app-sidebar .app-sidebar-expand-toggle > span {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  width: 43px;
  height: 43px;
}
.app-sidebar .app-sidebar-expand-toggle > span:hover {
  background: rgba(255, 255, 255, 0.1);
}
.app-sidebar.app-sidebar-light-theme {
  background: #fff;
  background: var(--bg-color-lighter);
  border-right: 1px solid #e5e5e5;
  border-right: 1px solid var(--border-color);
}
.app-sidebar.app-sidebar-light-theme .app-entity-switch {
  color: #303844;
}
.app-sidebar.app-sidebar-light-theme .app-search-catalog .ssc-input input {
  color: #303844;
}
.app-sidebar.app-sidebar-light-theme .app-sidebar-expand-toggle > span {
  color: #303844;
}
.app-sidebar.app-sidebar-light-theme .app-menu .rc-menu-submenu > .rc-menu {
  background: #fff;
  background: var(--bg-color-lighter);
}
.app-sidebar-shrink {
  --left-side-width: 56px;
  --logo-size: 32px;
  /** light-theme */
}
.app-sidebar-shrink .app-logo {
  width: var(--logo-size);
  height: var(--logo-size);
  margin: 12px auto;
  padding: 0;
  overflow: hidden;
}
.app-sidebar-shrink .app-logo img {
  object-fit: cover;
  object-position: 3px 0;
}
.app-sidebar-shrink .app-sidebar .ssc-dropdown {
  color: #fff;
  cursor: pointer;
  min-width: 0;
  min-width: initial;
  text-align: center;
}
.app-sidebar-shrink .app-sidebar .ssc-dropdown .ssc-icon {
  width: 100%;
}
.app-sidebar-shrink .app-sidebar .app-menu .rc-menu-submenu-title {
  border-left: none;
  justify-content: center;
}
.app-sidebar-shrink .app-sidebar .app-menu .rc-menu-submenu-title .ssc-menu-icon {
  width: auto;
}
.app-sidebar-shrink .app-sidebar .app-menu .rc-menu-submenu-title .ssc-menu-icon .anticon {
  margin-right: 0;
}
.app-sidebar-shrink .app-sidebar .app-sidebar-expand-toggle > span {
  width: 100%;
}
.app-sidebar-shrink.app-sidebar-light-theme .ssc-dropdown {
  color: #303844;
}
.app-right-content {
  background: #f5f6f9;
  width: calc(100% - 240px);
  width: calc(100% - var(--left-side-width));
}
.app-right-content .app-header {
  background: #fff;
  display: flex;
  height: 56px;
  height: var(--header-height);
  line-height: 56px;
  line-height: var(--header-height);
}
.app-right-content .app-header .app-breadcrumb {
  flex-grow: 1;
  margin-left: 24px;
  margin-left: var(--breadcrumb-margin-left);
}
.app-right-content .app-header .app-breadcrumb .ssc-breadcrumb-collapse-items {
  margin-bottom: 0;
  padding-right: 0;
  padding-bottom: 0;
  max-width: 554px;
  width: auto;
}
.app-right-content .app-header .app-breadcrumb ~ * {
  padding: 0 8px;
}
.app-right-content .app-header .app-pfb-control,
.app-right-content .app-header .app-fte-control {
  cursor: pointer;
  margin-left: auto;
  padding: 0 16px;
  padding: 0 var(--area-gap-size);
}
.app-right-content .app-header .app-pfb-control.app-fte-control,
.app-right-content .app-header .app-fte-control.app-fte-control {
  padding-left: 0;
}
.app-right-content .app-header .app-user-info {
  padding: 0 16px;
  padding: 0 var(--area-gap-size);
}
.app-right-content .app-header .app-user-info .ant-avatar {
  background: #e2e6ec;
  margin-right: 0.5rem;
  margin-right: var(--text-gap-size);
}
.app-right-content .app-header .app-user-dropdown {
  cursor: pointer;
}
.app-right-content .app-container {
  position: relative;
  width: 100%;
  height: calc(100% - 56px);
  height: calc(100% - var(--header-height));
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 0;
}
.app-right-content .app-container:before {
  content: '';
  display: block;
  height: 8px;
  height: var(--header-margin-bottom);
  background: #f5f6f9;
}
.app-right-content .app-container > :not([class~=ssc-new-design]) {
  width: 100%;
}
.app-entity-switch-dropdown.ssc-dropdown-overlay {
  max-height: none;
  max-height: initial;
  overflow: hidden;
  padding: 0;
  width: 196px;
}
.app-entity-switch-dropdown.ssc-dropdown-overlay .ssc-menu {
  width: 100%;
}
.app-entity-switch-dropdown.ssc-dropdown-overlay .ssc-menu .ssc-menu-icon + .ssc-icon {
  min-width: 24px;
}
.app-search-catalog-dropdown.ssc-dropdown-overlay {
  max-height: initial;
  padding: 0;
  width: 216px;
  max-height: 400px;
}
.app-search-catalog-dropdown.ssc-dropdown-overlay .app-search-catalog-no-result {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-search-catalog-dropdown.ssc-dropdown-overlay em {
  color: #ee4d2d;
  color: var(--color-primary);
  font-style: normal;
}
.app-search-catalog-dropdown.ssc-dropdown-overlay .ssc-menu-icon {
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-index-error-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.app-home {
  background: #fff;
  min-height: calc(100% - 8px);
  min-height: calc(100% - var(--header-margin-bottom));
  padding: 16px;
  padding: var(--area-gap-size);
}
.app-skeleton,
.app-not-found,
.app-error {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  text-align: center;
  line-height: 1;
}
.app-skeleton .ssc-button > *,
.app-not-found .ssc-button > *,
.app-error .ssc-button > * {
  vertical-align: middle;
}
.app-skeleton .ssc-button + span,
.app-not-found .ssc-button + span,
.app-error .ssc-button + span {
  display: block;
  line-height: 1.5;
}
.app-skeleton {
  align-items: center;
}
.app-error div {
  margin: 1em 0;
}
.app-error em {
  font-weight: bold;
}
.app-error ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: -webkit-max-content;
  width: max-content;
}
.app-error ul li {
  text-align: left;
  margin-bottom: 1em;
}
.app-breadcrumb .ssc-breadcrumb-collapse-items {
  max-width: 100% !important;
}
.app-banner {
  background: #fff;
  padding: 16px 16px 0;
  box-sizing: border-box;
}
.app-banner:empty {
  display: none;
}
.app-banner .ssc-alert:last-child {
  margin-bottom: 0;
}
.app-banner .ssc-icon-close {
  width: 20px;
  height: 20px;
}
.app-menu.ssc-menu-item-group,
.app-menu .ssc-menu-item-group,
.app-menu .rc-menu-item-group-title {
  border-radius: 4px;
}
.app-menu .rc-menu-item-group-title {
  border-bottom: none;
  color: #fff;
  font-weight: 500;
  padding: 10px 16px;
}
.app-menu .rc-menu-item-group-list {
  list-style: none !important;
  border-radius: 4px;
  overflow: hidden;
}
.app-menu .rc-menu-item-group-list .rc-menu-submenu-title,
.app-menu .rc-menu-item-group-list .ssc-menu-item {
  padding: 0 16px 0 12px;
}
.app-menu .rc-menu-item-group-list .ssc-menu-item {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.app-menu .rc-menu-item-group-list .ssc-menu-item:first-child {
  border-top-left-radius: 4px;
}
.app-menu .rc-menu-item-group-list .ssc-menu-item:last-child {
  border-bottom-left-radius: 4px;
}
.ssc-submenu-light .rc-menu-item-group-title {
  color: #303844;
}

.app-container > .ant-tabs > .ant-tabs-bar,
.app-container > .ant-tabs .ant-tabs-tabpane > .ant-tabs > .ant-tabs-bar {
  background: #fff;
  margin-bottom: 0;
}
.app-container .ant-card-bordered {
  border: none;
}
.app-container > .ant-tabs .ant-tabs-tabpane > .ant-card {
  margin-bottom: 8px;
}
:root {
  --font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'WebQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
  --font-size: 14px;
  --header-height: 56px;
  --header-margin-bottom: 8px;
  --left-side-width: 240px;
  --breadcrumb-margin-left: 24px;
  --card-border-radius: 4px;
  --area-gap-size: 16px;
  --text-gap-size: 0.5rem;
  --tag-border-radius: 4px;
  --tag-font-size: 12px;
  --color-primary: #ee4d2d;
  --color-success: #1ab394;
  --color-warning: #f8ac59;
  --color-danger: #ed5565;
  --color-info: #3f5060;
  --color-disabled: #9099a0;
  --text-color-lighter: #fff;
  --text-color-light: #dddedf;
  --text-color: #9a9d9f;
  --text-color-dark: #676a6c;
  --text-color-darker: #333;
  --text-color-blue: #2673dd;
  --placeholder-text-color: #b7b7b7;
  --border-color: #e5e5e5;
  --bg-color-lighter: #fff;
  --bg-color-light: #f3f3f4;
  --bg-color: #232932;
  --bg-color-dark: #4a4a4a;
  --bg-color-darker: #393939;
  --bg-card: #fff;
  --table-border-color: #f2f2f4;
  --table-head-bg-color: #f5f6f9;
}
html,
body,
#root,
#root .water-mark > div {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, 'PingFang SC', 'WebQuanYi Micro Hei', 'Microsoft Yahei', sans-serif;
  font-family: var(--font-family);
  font-size: 14px;
  font-size: var(--font-size);
  color: #333;
  color: var(--text-color-darker);
}
@keyframes circle-dash {
  0% {
    stroke-dasharray: 1, 125;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -25px;
  }
  100% {
    stroke-dasharray: 100, 125;
    stroke-dashoffset: -125px;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.sub-app-browser-navbar {
  display: flex;
  margin: -6px 0 0;
}
.sub-app-browser-navbar .ssc-button {
  border-radius: 0;
  flex-grow: 0;
  margin-left: -1px !important;
  text-align: center;
  width: 32px;
}
.sub-app-browser-navbar .ssc-button:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-left: 0;
}
.sub-app-browser-navbar .ssc-button .ssc-button-icon {
  margin-right: 0;
}
.sub-app-browser-navbar .sub-app-browser-country-select {
  border: 1px solid #ecf0f4;
  border-left: none;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.sub-app-browser-navbar .sub-app-browser-country-select .ssc-dropdown-reference {
  padding: 0 16px;
}
.sub-app-browser-navbar .sub-app-browser-country-select .app-entity-switch {
  line-height: 30px;
}
.sub-app-browser-navbar .sub-app-browser-country-select .app-entity-switch span {
  margin-right: 4px;
}
.sub-app-browser-navbar .ssc-button + .sub-app-browser-country-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.sub-app-browser-navbar .sub-app-browser-title {
  border: 1px solid #ecf0f4;
  border-radius: 4px;
  flex-grow: 1;
  line-height: 30px;
  margin: 0 32px 0 8px;
  overflow: hidden;
  padding: 0 16px;
  position: relative;
  text-align: center;
}
.sub-app-browser-navbar .sub-app-browser-title.navigating {
  cursor: wait;
}
.sub-app-browser-navbar .sub-app-browser-title.navigating::before {
  content: '';
  background-color: #ecf0f4;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.3s;
}
.sub-app-browser-navbar .sub-app-browser-title.navigating.stage-1:before {
  animation: stage-1 0.3s forwards;
}
.sub-app-browser-navbar .sub-app-browser-title.navigating.stage-2:before {
  animation: stage-2 0.3s forwards;
}
.sub-app-browser-navbar .sub-app-browser-title.navigating.stage-3:before {
  animation: stage-3 0.3s forwards;
}
.sub-app-browser-navbar .sub-app-browser-title.navigating.stage-4:before {
  animation: stage-4 0.3s forwards;
}
.sub-app-browser-navbar .sub-app-browser-title .sub-app-browser-title-text {
  position: relative;
  z-index: 1;
}
.sub-app-browser-navbar .sub-app-browser-title .ssc-icon {
  margin-left: 4px;
  cursor: pointer;
}
.sub-app-browser-content {
  min-height: 300px;
  max-height: calc(100vh - 150px);
  overflow: auto;
  margin: 16px -24px -16px;
}
@keyframes stage-1 {
  from {
    width: 0;
  }
  to {
    width: 5%;
  }
}
@keyframes stage-2 {
  from {
    width: 5%;
  }
  to {
    width: 25%;
  }
}
@keyframes stage-3 {
  from {
    width: 25%;
  }
  to {
    width: 75%;
  }
}
@keyframes stage-4 {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.znxdi3-live-tip-body-color-breathe{position:absolute;top:0;box-sizing:border-box;width:100%;height:100%;border:8px solid #ee4d2d;animation-timing-function:ease-in-out;animation-name:border-breathe;animation-duration:1.5s;animation-iteration-count:infinite;animation-direction:alternate;z-index:1;pointer-events:none}@keyframes border-breathe{0%{border-color:transparent}to{border-color:#ee2c4a}}.znxdi3-live-tip-fixed-title{position:fixed;top:8px;left:50%;transform:translate(-50%);display:flex;background-color:#ee2c4a;animation-timing-function:ease-in-out;animation-name:breathe;animation-duration:1.5s;animation-iteration-count:infinite;animation-direction:alternate;z-index:1;pointer-events:none}.znxdi3-live-tip-fixed-middle-label{background:#fff}.znxdi3-live-tip-fixed-title-middle-label-span{background-color:#ee2c4a;padding:0 12px 6px;color:#fff;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.znxdi3-live-tip-fixed-title-left{width:10px;background-color:#fff;border-top-right-radius:4px}.znxdi3-live-tip-fixed-title-right{width:10px;background-color:#fff;border-top-left-radius:4px}@keyframes breathe{0%{opacity:0}to{opacity:1}}
