* {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  html, body {
    font-family: -apple-system, "SF UI Text", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Zen Hei", sans-serif;
    font-weight: normal;
    line-height: 18px;
    font-size: 16px;
    height: 100%;
    overflow: hidden;
  }
  body {
    font-size: 12px;
  }
  @media screen and (min-resolution: 2dppx) {
    body {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  }

body {
    color: #525e71;
  }

    body.new-embedded #IBOT_MODAL_ROOT .ModalPortal {
         min-width: 0;
       }

    @media only screen and (max-height: 511px) {
          body.new-embedded #workspace>div>.logo {
            margin: 0px auto 20px;
            height: 150px;
          }

            body.new-embedded #workspace>div>.logo .svg-icon {
              width: 300px;
            }

          body.new-embedded #workspace>div>.content {
             margin: 20px auto;
          }

            body.new-embedded #workspace>div>.content .proposal {
              margin: 16px auto 35px;
            }

          body.new-embedded #workspace>div>.btn-list .btn {
             width: 115px;
             height: 40px;
             font-size: 14px;
             line-height: 40px;
          }
        }

    body #workspace {
      /*background-color: #f5f5f5;*/

      /*.example-app {*/
      /*  background-color: #f5f5f5;*/
      /*}*/
    }
  @font-face {
    font-family: Inter;
    src: url('/mb-workspace/fonts/Inter-Regular.ttf'), url('/mb-workspace/fonts/Inter-SemiBold.ttf');
  }
  html.wonder-share body {
    font-family: Inter, -apple-system, "SF UI Text", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Zen Hei", sans-serif;
  }
  .spinner {
    width: 30px;
    height: 30px;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(51, 54, 58, 0.6) transparent;
    border-radius: 100%;
    transform-origin: 50% 50% 0;
    animation: mb-spin .8s infinite linear;
    display: inline-block;
  }
  @keyframes mb-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(359deg);
    }
  }
  kbd {
    font-family: Inter;
  }
  #loading {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #loading .logo {
      width: 100px;
      height: 100px;
    }
  #loading span {
      margin-top: 15px;
      font-size: 14px;
      line-height: 28px;
      color: #F77D77;
    }
  html.wonder-share body #loading .logo {
        width: 86px;
        height: 86px;
        background: url('/mb-workspace/images/MockittLoading.gif');
        background-repeat: no-repeat;
      }
  html.wonder-share body #loading span {
        color: #4257ff;
      }

/* reset */
  button {
    background: none;
    border: 0;
    outline: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
  }
  input {
    background: none;
    border: 0;
    outline: 0;
  }
  /* ellipsis */
  .quote {
    display: inline-block;
  }
  .user-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 10em;
  }
  .project-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 30em;
  }
  .widget-name {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 12em;
  }
  /* form */
  input.regular:not([type="radio"]):not([type="checkbox"]):not([readonly]) {
      padding: .25em .5em;
      background: #fff;
      border: 0;
      border-bottom: 1px solid #d7d7d7;
      border-radius: 0;
      color: #27364e;
      transition: all .2s ease-out;
    }
  input.regular:not([type="radio"]):not([type="checkbox"]):not([readonly])::-moz-placeholder {
        color: #a9afb8;
      }
  input.regular:not([type="radio"]):not([type="checkbox"]):not([readonly])::placeholder {
        color: #a9afb8;
      }
  input.regular:not([type="radio"]):not([type="checkbox"]):not([readonly]):hover, input.regular:not([type="radio"]):not([type="checkbox"]):not([readonly]):focus {
        border-color: #eb5648;
      }
  input.regular[readonly] {
      padding: .25em .5em;
      background-color: #f6f6f6;
      border: 0;
      color: rgba(#27364e, .4);
    }
  textarea.regular:focus {
      outline: 0;
    }
  textarea.regular[readonly] {
      padding: .25em .5em;
      background-color: #f6f6f6;
      border: 0;
      color: rgba(#27364e, .4);
    }
  button.regular, button.primary {
    padding: .25em;
    border: 1px solid #eb5648;
    border-radius: 1px;
    color: #eb5648;
    cursor: pointer;
    transition: all .2s ease-out;
  }
  button.regular:not(button), button.primary:not(button) {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
  button.regular:hover:not([disabled]), button.primary:hover:not([disabled]) {
      background-color: #eb5648;
      border: 1px solid #eb5648;
      color: #fff;
    }
  button.regular[disabled], button.primary[disabled] {
      opacity: .6;
    }
  button.primary {
    background-color: #eb5648;
    color: #fff;
  }
  button.primary:hover:not([disabled]) {
      background-color: #ff7c75;
      border-color: #ff7c75;
      color: #fff;
    }

/* NOTE: this file is script generated, change should be made at 'script/generate/HostedFont.js' */
@font-face {
  font-style: normal;
  font-family: 'PingFangSC';
  font-weight: 100;
  src: url('/mb-sigma/fonts/zh-CN/PingFangSC/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PingFangSC';
  font-weight: 200;
  src: url('/mb-sigma/fonts/zh-CN/PingFangSC/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PingFangSC';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/PingFangSC/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PingFangSC';
  font-weight: 400;
  src: local('PingFangSC-Regular'), local('PingFang SC Regular'), local('.PingFangSC-Regular'), local('.PingFang SC Regular'), local('PingFangSC'), local('PingFang SC'), url('/mb-sigma/fonts/zh-CN/PingFangSC/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PingFangSC';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/PingFangSC/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PingFangSC';
  font-weight: 600;
  src: local('PingFangSC-Semibold'), local('PingFang SC Semibold'), local('.PingFangSC-Semibold'), local('.PingFang SC Semibold'), url('/mb-sigma/fonts/zh-CN/PingFangSC/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSansSC';
  font-weight: 200;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSansSC/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSansSC';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSansSC/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSansSC';
  font-weight: 400;
  src: local('SourceHanSansSC-Regular'), local('Source Han Sans SC Regular'), local('Source Han Sans SC'), local('Noto Sans CJK SC Regular'), local('Noto Sans CJK SC'), url('/mb-sigma/fonts/zh-CN/SourceHanSansSC/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSansSC';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSansSC/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSansSC';
  font-weight: 700;
  src: local('SourceHanSansSC-Bold'), local('Source Han Sans SC Bold'), local('Noto Sans CJK SC Bold'), url('/mb-sigma/fonts/zh-CN/SourceHanSansSC/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSansSC';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSansSC/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SFUIText';
  font-weight: 400;
  src: local('SFUIText-Regular'), local('.SFUIText-Regular'), local('SFProText-Regular'), local('SFProText'), url('/fonts/sf-ui/Text-Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SFUIText';
  font-weight: 700;
  src: local('SFUIText-Bold'), local('.SFUIText-Bold'), local('SFProText-Bold'), url('/fonts/sf-ui/Text-Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Roboto';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Roboto/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Roboto';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Roboto/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Roboto';
  font-weight: 400;
  src: local('Roboto'), url('/mb-sigma/fonts/en/Roboto/Regular.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Roboto';
  font-weight: 400;
  src: local('Roboto-Italic'), local('Roboto Italic'), url('/mb-sigma/fonts/en/Roboto/Italic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Roboto';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Roboto/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Roboto';
  font-weight: 700;
  src: local('Roboto-Bold'), local('Roboto Bold'), url('/mb-sigma/fonts/en/Roboto/Bold.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Roboto';
  font-weight: 700;
  src: local('Roboto-BoldItalic'), local('Roboto Bold Italic'), url('/mb-sigma/fonts/en/Roboto/BoldItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Roboto';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Roboto/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaPuHui';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/AlibabaPuHui/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaPuHui';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/AlibabaPuHui/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaPuHui';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/AlibabaPuHui/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaPuHui';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/AlibabaPuHui/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaPuHui';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/AlibabaPuHui/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OPPOSans';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/OPPOSans/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OPPOSans';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/OPPOSans/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OPPOSans';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/OPPOSans/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OPPOSans';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/OPPOSans/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OPPOSans';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/OPPOSans/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 100;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/Thin.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 100;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/ThinItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/Light.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/LightItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/Regular.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/RegularItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/Medium.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/MediumItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/Bold.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/BoldItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/Black.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'HarmonyOS_Sans_Condensed';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_Condensed/BlackItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_SC';
  font-weight: 100;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_SC/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_SC';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_SC/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_SC';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_SC/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_SC';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_SC/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_SC';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_SC/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_SC';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_SC/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_TC';
  font-weight: 100;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_TC/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_TC';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_TC/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_TC';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_TC/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_TC';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_TC/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_TC';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_TC/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'HarmonyOS_Sans_TC';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/HarmonyOS_Sans_TC/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PMZDBiaoTi';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/PMZDBiaoTi/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PMZDCuShuSong';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/PMZDCuShuSong/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'PMZDQingSong';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/PMZDQingSong/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 200;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 500;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 600;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceHanSerif';
  font-weight: 900;
  src: url('/mb-sigma/fonts/zh-CN/SourceHanSerif/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'TaipeiHei';
  font-weight: 300;
  src: url('/mb-sigma/fonts/zh-CN/TaipeiHei/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'TaipeiHei';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/TaipeiHei/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'TaipeiHei';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/TaipeiHei/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'YSBiaoTiHei';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/YSBiaoTiHei/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'YSHaoShenTi';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/YSHaoShenTi/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'ZKGaoDuanHei';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/ZKGaoDuanHei/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'ZKKuHei';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/ZKKuHei/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'ZKKuaiLeTi';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/ZKKuaiLeTi/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'ZKQingKeHuangYou';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/ZKQingKeHuangYou/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'ZKWenYi';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/ZKWenYi/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'ZKXiaoWeiLogo';
  font-weight: 400;
  src: url('/mb-sigma/fonts/zh-CN/ZKXiaoWeiLogo/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaSans';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/AlibabaSans/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaSans';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/AlibabaSans/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaSans';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/AlibabaSans/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaSans';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/AlibabaSans/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'AlibabaSans';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/AlibabaSans/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Inter/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Inter/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Inter/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Inter/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Inter/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Inter/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Inter/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/Inter/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Inter';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Inter/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lato';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Lato/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lato';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Lato/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lato';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Lato/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lato';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Lato/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lato';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Lato/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lobster';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Lobster/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lora';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Lora/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lora';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Lora/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lora';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Lora/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Lora';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Lora/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Montserrat/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Montserrat/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Montserrat/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Montserrat/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Montserrat/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Montserrat/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Montserrat/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/Montserrat/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Montserrat';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Montserrat/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'MontserratAlternates';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/MontserratAlternates/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'NotoSans';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/NotoSans/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'NotoSans';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/NotoSans/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OpenSans';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/OpenSans/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OpenSans';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/OpenSans/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OpenSans';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/OpenSans/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OpenSans';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/OpenSans/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'OpenSans';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/OpenSans/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Oswald';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Oswald/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Oswald';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Oswald/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Oswald';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Oswald/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Oswald';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Oswald/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Oswald';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Oswald/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Oswald';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Oswald/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Playfair Display';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Playfair Display/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Playfair Display';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Playfair Display/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Playfair Display';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Playfair Display/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Playfair Display';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Playfair Display/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Playfair Display';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/Playfair Display/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Playfair Display';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Playfair Display/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Poppins/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Poppins/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Poppins/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Poppins/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Poppins/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Poppins/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Poppins/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/Poppins/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Poppins';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Poppins/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Raleway/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Raleway/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Raleway/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Raleway/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Raleway/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Raleway/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Raleway/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/Raleway/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Raleway';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Raleway/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/SF Pro Display/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/SF Pro Display/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/SF Pro Display/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/SF Pro Display/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/SF Pro Display/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/SF Pro Display/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/SF Pro Display/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/SF Pro Display/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Display';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/SF Pro Display/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/SF Pro Text/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/SF Pro Text/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/SF Pro Text/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/SF Pro Text/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/SF Pro Text/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/SF Pro Text/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/SF Pro Text/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/SF Pro Text/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SF Pro Text';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/SF Pro Text/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceSans Pro';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/SourceSans Pro/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceSans Pro';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/SourceSans Pro/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceSans Pro';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/SourceSans Pro/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceSans Pro';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/SourceSans Pro/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceSans Pro';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/SourceSans Pro/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'SourceSans Pro';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/SourceSans Pro/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Spartan/Thin.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Spartan/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Spartan/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Spartan/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Spartan/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 600;
  src: url('/mb-sigma/fonts/en/Spartan/SemiBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Spartan/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 800;
  src: url('/mb-sigma/fonts/en/Spartan/ExtraBold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Spartan';
  font-weight: 900;
  src: url('/mb-sigma/fonts/en/Spartan/Black.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Ubuntu';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Ubuntu/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Ubuntu';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Ubuntu/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Ubuntu';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Ubuntu/Medium.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Ubuntu';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Ubuntu/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZLanTingHei';
  font-weight: 300;
  src: local('FZLanTingHeiS-L-GB'), url('/mb-sigma/fonts/zh-CN/FZLanTingHei/Light.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZLanTingHei';
  font-weight: 400;
  src: local('FZLanTingHeiS-R-GB'), url('/mb-sigma/fonts/zh-CN/FZLanTingHei/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZYuan';
  font-weight: 400;
  src: local('FZZhunYuan-M02S'), url('/mb-sigma/fonts/zh-CN/FZYuan/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZYuan';
  font-weight: 700;
  src: url('/mb-sigma/fonts/zh-CN/FZYuan/Bold.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZXinSong';
  font-weight: 400;
  src: local('FZNewShuSong-Z10S'), url('/mb-sigma/fonts/zh-CN/FZXinSong/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZKai';
  font-weight: 400;
  src: local('FZKai-Z03S'), url('/mb-sigma/fonts/zh-CN/FZKai/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZGongYeHei';
  font-weight: 400;
  src: local('FZGongYHS-R-GB'), url('/mb-sigma/fonts/zh-CN/FZGongYeHei/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZHanZhenGuangBiao';
  font-weight: 400;
  src: local('FZHanZhenGuangBiaoS-GB'), url('/mb-sigma/fonts/zh-CN/FZHanZhenGuangBiao/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'FZZongYi';
  font-weight: 400;
  src: local('FZZongYi-M05S'), url('/mb-sigma/fonts/zh-CN/FZZongYi/Regular.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Helvetica/Light.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Helvetica/LightItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Helvetica/Regular.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Helvetica/Italic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Helvetica/Bold.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Helvetica/BoldItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/Thin.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica Neue';
  font-weight: 100;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/ThinItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/ExtraLight.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica Neue';
  font-weight: 200;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/ExtraLightItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/Light.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica Neue';
  font-weight: 300;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/LightItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/Regular.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica Neue';
  font-weight: 400;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/Italic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/Medium.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica Neue';
  font-weight: 500;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/MediumItalic.woff2') format('woff2');
}
@font-face {
  font-style: normal;
  font-family: 'Helvetica Neue';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/Bold.woff2') format('woff2');
}
@font-face {
  font-style: italic;
  font-family: 'Helvetica Neue';
  font-weight: 700;
  src: url('/mb-sigma/fonts/en/Helvetica Neue/BoldItalic.woff2') format('woff2');
}
.widget {
    position: absolute;
  }

    .widget.highlight {
      opacity: 0.5 !important;
      background-color: rgba(223, 140, 0, 0.3) !important;
    }

    .widget.tdunderline .text {
      text-decoration: underline;
    }

    .widget.tdoverline .text {
      text-decoration: overline;
    }

    .widget.tdline-through .text {
      text-decoration: line-through;
    }

    .widget .template {
      display: none;
    }
  .pg {
    width: 40px;
    height: 40px;
    background: rgba(255, 97, 97, 0.3);
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }
  .text_view, .rounded_rect, .circle_rect, .mtooltip, .placeholder, .polygon, .star {
    background: transparent;
    color: #101010;
    overflow: hidden;
    border-color: #bbb;
  }
  .text_view .text, .rounded_rect .text, .circle_rect .text, .mtooltip .text, .placeholder .text, .polygon .text, .star .text {
      width: 100%;
      white-space: pre-wrap;
      word-break: break-word;
      word-wrap: break-word;
    }
  .text_view .text p, .rounded_rect .text p, .circle_rect .text p, .mtooltip .text p, .placeholder .text p, .polygon .text p, .star .text p {
        padding: 0;
        margin-bottom: 5px;
        white-space: pre-wrap;
      }
  .text_view .text p:last-child, .rounded_rect .text p:last-child, .circle_rect .text p:last-child, .mtooltip .text p:last-child, .placeholder .text p:last-child, .polygon .text p:last-child, .star .text p:last-child {
          margin-bottom: 0;
        }
  .polygon .text, .star .text {
      display: table-cell;
    }
  .placeholder .text {
      width: auto;
      max-height: 100%;
      overflow: hidden;
   }
  .stickyCircle {
    cursor: pointer;
  }
  .rich_text {
    display: flex;
    background: transparent;
    color: #101010;
    overflow: hidden;
    white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
  }
  .rich_text.auto {
      white-space: pre;
      overflow: visible;
    }
  .rich_text .rich-text {
      width: 100%;
    }
  .rich_text.vtop {
      align-items: flex-start;
    }
  .rich_text.vmiddle {
      align-items: center;
    }
  .rich_text.vertical-lr {
      writing-mode: vertical-lr;
    }
  .rich_text.horizontal-tb {
      writing-mode: horizontal-tb;
    }
  .rich_text.vbottom {
      align-items: flex-end;
    }
  .rich_text p:last-child {
      margin-bottom: 0 !important;
    }
  /* 使用flex的元素 */
  .label, .button, .text_view, .rounded_rect, .circle_rect, .mtooltip, .placeholder, .polygon, .star, .drop_menu, .button_solid {
    display: flex;
  }
  .label.hleft, .button.hleft, .text_view.hleft, .rounded_rect.hleft, .circle_rect.hleft, .mtooltip.hleft, .placeholder.hleft, .polygon.hleft, .star.hleft, .drop_menu.hleft, .button_solid.hleft {
      justify-content: flex-start;
    }
  .label.hcenter, .button.hcenter, .text_view.hcenter, .rounded_rect.hcenter, .circle_rect.hcenter, .mtooltip.hcenter, .placeholder.hcenter, .polygon.hcenter, .star.hcenter, .drop_menu.hcenter, .button_solid.hcenter {
      justify-content: center;
    }
  .label.hright, .button.hright, .text_view.hright, .rounded_rect.hright, .circle_rect.hright, .mtooltip.hright, .placeholder.hright, .polygon.hright, .star.hright, .drop_menu.hright, .button_solid.hright {
      justify-content: flex-end;
    }
  .label.vtop, .button.vtop, .text_view.vtop, .rounded_rect.vtop, .circle_rect.vtop, .mtooltip.vtop, .placeholder.vtop, .polygon.vtop, .star.vtop, .drop_menu.vtop, .button_solid.vtop {
      align-items: flex-start;
    }
  .label.vmiddle, .button.vmiddle, .text_view.vmiddle, .rounded_rect.vmiddle, .circle_rect.vmiddle, .mtooltip.vmiddle, .placeholder.vmiddle, .polygon.vmiddle, .star.vmiddle, .drop_menu.vmiddle, .button_solid.vmiddle {
      align-items: center;
    }
  .label.vertical-lr, .button.vertical-lr, .text_view.vertical-lr, .rounded_rect.vertical-lr, .circle_rect.vertical-lr, .mtooltip.vertical-lr, .placeholder.vertical-lr, .polygon.vertical-lr, .star.vertical-lr, .drop_menu.vertical-lr, .button_solid.vertical-lr {
      writing-mode: vertical-lr;
    }
  .label.horizontal-tb, .button.horizontal-tb, .text_view.horizontal-tb, .rounded_rect.horizontal-tb, .circle_rect.horizontal-tb, .mtooltip.horizontal-tb, .placeholder.horizontal-tb, .polygon.horizontal-tb, .star.horizontal-tb, .drop_menu.horizontal-tb, .button_solid.horizontal-tb {
      writing-mode: horizontal-tb;
    }
  .label.vbottom, .button.vbottom, .text_view.vbottom, .rounded_rect.vbottom, .circle_rect.vbottom, .mtooltip.vbottom, .placeholder.vbottom, .polygon.vbottom, .star.vbottom, .drop_menu.vbottom, .button_solid.vbottom {
      align-items: flex-end;
    }
  .label {
    color: #101010;
    overflow: visible;
    background: transparent;
    border-color: #bbb;
    display: flex;
    white-space: nowrap;
  }
  .label p {
      white-space: nowrap;
    }
  .label.tdunderline p {
      text-decoration: underline;
    }
  .label.tdoverline p {
      text-decoration: overline;
    }
  .label.tdline-through p {
      text-decoration: line-through;
    }
  .mtooltip {
    overflow: visible;
    background: white;
    border-color: #aaa;
    border-style: solid;
  }
  .mtooltip .arrow, .mtooltip .arrow2 {
      position: absolute;
      background-image: none;
    }
  .mtooltip .arrow.top, .mtooltip .arrow.bottom, .mtooltip .arrow2.top, .mtooltip .arrow2.bottom {
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
      }
  .mtooltip .arrow.top, .mtooltip .arrow2.top {
        border-bottom-color: #aaa;
        border-bottom-style: solid;
      }
  .mtooltip .arrow.bottom, .mtooltip .arrow2.bottom {
        bottom: 0;
        border-top-color: #aaa;
        border-top-style: solid;
      }
  .mtooltip .arrow.left, .mtooltip .arrow.right, .mtooltip .arrow2.left, .mtooltip .arrow2.right {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
      }
  .mtooltip .arrow.left, .mtooltip .arrow2.left {
        border-right-color: #aaa;
        border-right-style: solid;
      }
  .mtooltip .arrow.right, .mtooltip .arrow2.right {
        right: 0;
        border-left-color: #aaa;
        border-left-style: solid;
      }
  .sticky {
    background: #fff5a7;
    padding: 10px 8px;
    line-height: 20px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .sticky > div {
      -webkit-user-select: inherit;
         -moz-user-select: inherit;
              user-select: inherit;
    }
  .sticky .text, .sticky .text * {
      -webkit-user-select: inherit;
         -moz-user-select: inherit;
              user-select: inherit;
    }
  .sticky p {
      margin-bottom: 5px;
      word-break: break-word;
      word-wrap: break-word;
    }
  .sticky .point {
      position: absolute;
      opacity: 0;
      width: 14px;
      height: 14px;
      cursor: pointer;
    }
  .button, .button_solid {
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 1px solid #bbb;
    color: #101010;
  }
  .button .button-wrapper, .button_solid .button-wrapper {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: inherit;
      align-items: inherit;
    }
  .button .button-wrapper .icon, .button_solid .button-wrapper .icon {
        margin: 0 4px;
      }
  .button .button-wrapper .text, .button_solid .button-wrapper .text {
        white-space: pre;
        /* line-height: normal; */
      }
  .text_field {
    background: white;
    z-index: 5;
    color: #888;
    border: 1px solid #bbb;
  }
  .text_field span {
      padding: 0 8px;
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      white-space: pre;
    }
  .text_field.vmiddle span {
      top: 50%;
      height: 12px;
      margin-top: -5px;
      line-height: 12px;
    }
  .text_field.vtop span {
      top: 0;
      line-height: 100%;
    }
  .text_field.vbottom span {
      bottom: 0;
      line-height: 100%;
    }
  .mtext_input, .mtextarea {
    z-index: 5;
    color: #888;
    border-color: #bbb;
    background: white;
    line-height: 100%;
  }
  .mtext_input input, .mtext_input textarea, .mtextarea input, .mtextarea textarea {
      padding: 0 8px;
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      font-size: inherit;
      font-weight: inherit;
      font-style: inherit;
      color: inherit;
      border: none;
      border-radius: inherit;
      outline: none;
      background: inherit;
      text-align: inherit;
      line-height: inherit;
      resize: none;
    }
  .mtext_input input::-webkit-input-placeholder, .mtext_input textarea::-webkit-input-placeholder, .mtextarea input::-webkit-input-placeholder, .mtextarea textarea::-webkit-input-placeholder {
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
        font-style: inherit;
        line-height: inherit;
        word-break: break-all;
      }
  .mtext_input {
    line-height: 1.4;
  }
  .mtext_input input[type=date], .mtext_input input[type=time], .mtext_input input[type=datetime-local] {
      display: flex;
      align-items: center;
      -webkit-appearance: none;
    }
  .svg_icon_path {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .svg_icon_path svg.svg-icon-path-icon {
      width: 100%;
      height: 100%;
      vertical-align: top;
    }
  .svg-icon-wrap {
    position: relative;
    display: block;
  }
  .svg-icon-wrap > .svg-icon {
      width: 100%;
      height: 100%;
      vertical-align: top;
    }
  .mradiobutton input, .mcheckbox input {
      height: 100%;
    }
  .mselect {
    z-index: 5;
    color: #888;
    border-color: #bbb;
    border-radius: 6px;
    background: white;
    min-height: 17px;
  }
  .mselect select {
      padding: 0 8px;
      padding-right: 19px;
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      font-size: inherit;
      color: inherit;
      border: none;
      border-radius: inherit;
      outline: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      background-color: inherit;
      background-image: url("data:image/svg+xml,%20%20%3Csvg%0A%20%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20%20class%3D%22svg-icon%20icon%20arrow-icon%22%0A%20%20%20%20viewBox%3D%220%200%208%208%22%0A%20%20%3E%0A%20%20%20%20%3Cpath%0A%20%20%20%20%20%20fill-rule%3D%22evenodd%22%0A%20%20%20%20%20%20clip-rule%3D%22evenodd%22%0A%20%20%20%20%20%20d%3D%22M7.18198%202.64658C7.37724%202.84184%207.37724%203.15842%207.18198%203.35369L4.35355%206.18211C4.15829%206.37738%203.84171%206.37738%203.64645%206.18211L0.81802%203.35369C0.622757%203.15842%200.622757%202.84184%200.81802%202.64658C1.01328%202.45132%201.32986%202.45132%201.52513%202.64658L4%205.12145L6.47487%202.64658C6.67014%202.45132%206.98672%202.45132%207.18198%202.64658Z%22%0A%20%20%20%20%20%20fill%3D%22%23888%22%0A%20%20%20%20%3E%3C%2Fpath%3E%0A%20%20%3C%2Fsvg%3E");
      background-repeat: no-repeat, repeat;
      background-position: right 4px top 50%, 0 0;
      background-size: 10px auto, 100%;
      line-height: initial;
    }
  .navigation_bar, .nav_bar {
    font-size: 18px;
    height: 45px;
    width: 100%;
    top: 0;
    left: 0;
    background: #f8f8f8;
    color: #101010;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid transparent;
  }
  .navigation_bar span, .nav_bar span {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  .navigation_bar {
    border-color: #bbb;
    box-sizing: content-box; /* 使border在box外, 从而可以被下方元素遮盖 */
  }
  .search_bar {
    z-index: 4;
    width: 100%;
    height: 45px;
    background: #ccc;
    font-size: 14px;
    color: #888;
    border-color: #bbb;
  }
  .search_bar::after {
      content: "\00a0";
      position: absolute;
      bottom: -1px;
      left: 0;
      height: 1px;
      width: 100%;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      border-bottom-color: inherit;
      display: block;
    }
  .search_bar i.fa-search {
      position: absolute;
      top: 7px;
      left: 20px;
      line-height: 32px;
    }
  .search_bar .text_edit {
      position: absolute;
      top: 7px;
      left: 10px;
      right: 10px;
      height: 32px;
      border-radius: 8px;
      background-color: white;
    }
  .search_bar .text_edit input {
        border: none;
        width: 100%;
        height: 100%;
        line-height: 100%;
        background-color: transparent;
        text-align: inherit;
        padding: 0 26px;
        outline: none;
        color: inherit;
      }
  .search_bar .text_edit input::-webkit-input-placeholder {
          color: inherit;
        }
  .search_bar .text_edit input::-moz-placeholder {
          color: inherit;
        }
  .tab_item {
    height: 45px;
    z-index: 5;
    color: #444;
    font-size: 12px;
  }
  .tab_item .wrapper {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  .tab_item .wrapper .text {
        white-space: nowrap;
        margin-top: 2px;
        line-height: 1;
      }
  .tab_bar {
    z-index: 4;
    width: 100%;
    height: 45px;
    left: 0;
    bottom: 0;
    background: #f8f8f8;
    border-top: 1px solid #bbb;
  }
  .icon_button {
    z-index: 5;
    font-size: 24px;
    color: #444;
    text-align: center;
    border-color: #bbb;
    border-style: solid;
  }
  .icon_button .icon {
      position: absolute;
      height: 12px;
      line-height: 12px;
      width: 100%;
      text-align: center;
      top: 50%;
      margin-top: -5px;
      left: 0;
    }
  .image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transition: inherit;
    transition-property: filter;
  }
  .image-wrapper span {
      background: #e8e8e8;
      height: 100%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: inherit;
    }
  .image-wrapper span i {
        font-size: 26px;
      }
  .image-wrapper span .icon {
        color: #8d9ea7;
      }
  .image-wrapper .wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: inherit;
      transition: inherit;
    }
  .image-wrapper .wrapper img {
        width: 100%;
        border-radius: inherit;
        transition: inherit;
        pointer-events: none;
      }
  .image_view {
    z-index: 3;
    overflow: hidden;
    color: #bec2c9;
    border-style: solid;
  }
  .image_view.highlight span, .image_view.highlight .wrapper {
        opacity: 0.5;
      }
  .carousel .carousel-wrapper {
      position: relative;
      height: 100% !important;
    }
  .carousel .carousel-wrapper .slider-control-centerleft {
        display: none;
      }
  .carousel .carousel-wrapper .slider-control-centerright {
        display: none;
      }
  .carousel .carousel-wrapper .slider-control-bottomcenter, .carousel .carousel-wrapper .pointers {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 30px;
        top: auto !important;
        right: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: translateX(0) !important;
      }
  .carousel .carousel-wrapper .slider-control-bottomcenter .pointer, .carousel .carousel-wrapper .pointers .pointer {
          display: block;
          width: 8px;
          height: 8px;
          border-radius: 4px;
          margin: 0 10px 0 0;
        }
  .carousel .carousel-wrapper .slider-control-bottomcenter .pointer:last-child, .carousel .carousel-wrapper .pointers .pointer:last-child {
            margin: 0;
          }
  .carousel .carousel-wrapper.vertical .slider-control-bottomcenter, .carousel .carousel-wrapper.vertical .pointers {
          flex-direction: column;
          width: 30px;
          height: 100%;
          top: 0 !important;
          right: 0 !important;
          bottom: auto !important;
          left: auto !important;
          transform: translateY(0) !important;
        }
  .carousel .carousel-wrapper.vertical .slider-control-bottomcenter .pointer, .carousel .carousel-wrapper.vertical .pointers .pointer {
            margin: 0 0 10px 0;
          }
  .carousel .carousel-wrapper.vertical .slider-control-bottomcenter .pointer:last-child, .carousel .carousel-wrapper.vertical .pointers .pointer:last-child {
              margin: 0;
            }
  .carousel .slider {
      visibility: inherit !important;
      width: 100% !important;
      height: 100% !important;
    }
  .carousel .slider .slider-frame {
        width: 100% !important;
        height: 100% !important;
      }
  .carousel .slider .slider-list {
        width: 100% !important;
        height: 100% !important;
      }
  .carousel .slider .slider-slide {
        width: 100% !important;
        height: 100% !important;
      }
  .rectangle {
    z-index: 2;
    border-top: 1px solid #bbb;
    background: white;
    border-color: #bbb;
  }
  .rectangle::before {
      content: "\00a0";
      position: absolute;
      top: -1px;
      left: -1px;
      bottom: -1px;
      right: -1px;
      border-left-width: 1px;
      border-left-style: solid;
      border-right-width: 1px;
      border-right-style: solid;
      border-color: inherit;
      display: block;
    }
  .rectangle::after {
      content: "\00a0";
      position: absolute;
      bottom: -1px;
      left: 0;
      height: 1px;
      width: 100%;
      border-top-width: 1px;
      border-top-style: solid;
      border-color: inherit;
      display: block;
    }
  .circle_rect {
    border-radius: 100%;
  }
  .placeholder .diagonalLines {
      position: absolute;
    }
  .hr {
    z-index: 5;
    background: transparent;
    padding: 5px 0;
    border-color: #bbb;
    border-width: 0;
  }
  .hr span {
      width: 100%;
      height: 100%;
      display: block;
      border-top-width: 1px;
      border-bottom-width: 0;
      border-left-width: 0;
      border-right-width: 0;
      border-style: inherit;
      border-color: inherit;
      min-height: 1px;
    }
  .ve {
    z-index: 5;
    background: transparent;
    padding: 0 5px;
    border-color: #bbb;
    border-width: 0;
  }
  .ve span {
      width: 100%;
      height: 100%;
      display: block;
      border-left-width: 1px;
      border-bottom-width: 0;
      border-top-width: 0;
      border-right-width: 0;
      border-style: inherit;
      border-color: inherit;
      min-width: 1px;
    }
  .map_view {
    z-index: 2;
    border-top: 1px solid #bbb;
    overflow: hidden;
  }
  .map_view::after {
      content: "\00a0";
      position: absolute;
      bottom: -1px;
      left: 0;
      height: 1px;
      width: 100%;
      border-top: 1px solid #bbb;
      display: block;
    }
  .map_view .image {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
      background: #eeece4;
    }
  .map_view img {
      width: 1280px;
      height: 800px;
      pointer-events: none;
    }
  .switch {
    width: 50px;
    height: 30px;
  }
  .iOS-Switch, .Android-Switch, .iOS-Check, .Android-Check, .Android-Radio {
    position: relative;
    display: block;
    opacity: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 100px;
    cursor: inherit;
  }
  .iOS-Switch input, .Android-Switch input, .iOS-Check input, .Android-Check input, .Android-Radio input {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      cursor: inherit;
    }
  .iOS-Switch .CheckState, .Android-Switch .CheckState, .iOS-Check .CheckState, .Android-Check .CheckState, .Android-Radio .CheckState {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      color: transparent;
      background-color: #fff;
    }
  .iOS-Switch svg, .Android-Switch svg, .iOS-Check svg, .Android-Check svg, .Android-Radio svg {
      display: block;
      transition: all 0.1s ease-in-out;
      stroke: currentColor;
      fill: none;
    }
  .iOS-Switch input:checked + .CheckState, .Android-Switch input:checked + .CheckState, .iOS-Check input:checked + .CheckState, .Android-Check input:checked + .CheckState, .Android-Radio input:checked + .CheckState {
      color: #fff;
    }
  .iOS-Switch input:checked + .CheckState svg, .Android-Switch input:checked + .CheckState svg, .iOS-Check input:checked + .CheckState svg, .Android-Check input:checked + .CheckState svg, .Android-Radio input:checked + .CheckState svg {
        opacity: 1;
      }
  .iOS-Switch input:not(:checked) + .CheckState svg, .Android-Switch input:not(:checked) + .CheckState svg, .iOS-Check input:not(:checked) + .CheckState svg, .Android-Check input:not(:checked) + .CheckState svg, .Android-Radio input:not(:checked) + .CheckState svg {
        opacity: 0;
      }
  .iOS-Switch {
    z-index: 5;
  }
  .iOS-Switch .CheckState {
      text-align: center;
      border-radius: 30% / 50%;
      padding-right: 40%;
      color: #333;
      background-color: #f0f0f2;
      border: 1px solid #bbb;
    }
  .iOS-Switch .CheckState::after {
        content: '';
        position: absolute;
        left: 4%;
        top: 50%;
        display: block;
        margin: 0;
        padding: 0;
        width: 52%;
        padding-bottom: 52%;
        background-color: #fff;
        border-radius: 100%;
        box-shadow: -1px 2px 4px #aaa;
        transition: transform 0.25s ease-in-out;
        transform: translate(0, -50%);
      }
  .iOS-Switch input:checked + .CheckState {
      background-color: #00e266;
      border-color: transparent;
    }
  .iOS-Switch input:checked + .CheckState::after {
        transform: translate(77%, -50%);
      }
  .iOS-Switch:not(div) .CheckState {
      transition: 0.25s ease-in-out;
      transition-property: background border;
    }
  .Android-Switch {
    display: flex;
    align-items: center;
  }
  .Android-Switch .CheckState {
      position: relative;
      height: 70%;
      background-color: #a7a5a6;
      border-radius: 18% / 50%;
      transition: background 0.25s ease-in-out;
    }
  .Android-Switch .CheckState::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 54.5%;
        padding-bottom: 54.5%; /* to make a square */
        background-color: #efefef;
        border-radius: 50%;
        box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
        transition: transform 0.25s ease-in-out;
        transform: translate(0, -50%);
      }
  .Android-Switch input:checked + .CheckState {
      background-color: rgba(86, 119, 252, 0.5);
    }
  .Android-Switch input:checked + .CheckState::after {
        background-color: #5677fc;
        transform: translate(85%, -50%);
      }
  .iOS-Check svg {
      width: 55%;
      height: 36%;
    }
  .iOS-Check .CheckState {
      border: 1px solid #c7c7cd;
      border-radius: 50%;
    }
  .iOS-Check input:checked + .CheckState {
      background-color: #0076ff;
      border-color: transparent;
    }
  .Android-Check svg {
      width: 78%;
      height: 56%;
      fill: currentColor;
      stroke: none;
    }
  .Android-Check .CheckState {
      border: 2px solid #ccc;
      border-radius: 11%;
    }
  .Android-Check input:checked + .CheckState {
      background-color: #5677fc;
      border-color: transparent;
    }
  .Android-Radio .CheckState {
      padding: 15%;
      background-color: transparent;
      background-clip: content-box;
      border: 2px solid #ccc;
      border-radius: 50%;
    }
  .Android-Radio input:checked + .CheckState {
      background-color: #5677fc;
      border-color: #5677fc;
    }
  .unified_keyboard {
    z-index: 3;
    bottom: 0;
    width: 100%;
  }
  .unified_keyboard .keyboard-img {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
    }
  .legacy_iphone_status_bar, .legacy_iphone_x_status_bar, .legacy_android_status_bar, .legacy_ipad_status_bar {
    z-index: 3;
    height: 20px;
    background: #f8f8f8;
    color: #101010;
    left: 0;
    top: 0;
    width: 100%;
    border-color: #bbb;
  }
  .legacy_iphone_status_bar > div, .legacy_iphone_x_status_bar > div, .legacy_android_status_bar > div, .legacy_ipad_status_bar > div {
      border-color: inherit;
    }
  .legacy_iphone_status_bar svg, .legacy_iphone_x_status_bar svg, .legacy_android_status_bar svg, .legacy_ipad_status_bar svg {
      fill: currentColor;
      stroke: currentColor;
      stroke-width: 0;
    }
  .legacy_iphone_status_bar .signal, .legacy_iphone_status_bar .time, .legacy_iphone_status_bar .battery, .legacy_iphone_status_bar .carrier, .legacy_iphone_status_bar .wifi, .legacy_iphone_x_status_bar .signal, .legacy_iphone_x_status_bar .time, .legacy_iphone_x_status_bar .battery, .legacy_iphone_x_status_bar .carrier, .legacy_iphone_x_status_bar .wifi, .legacy_android_status_bar .signal, .legacy_android_status_bar .time, .legacy_android_status_bar .battery, .legacy_android_status_bar .carrier, .legacy_android_status_bar .wifi, .legacy_ipad_status_bar .signal, .legacy_ipad_status_bar .time, .legacy_ipad_status_bar .battery, .legacy_ipad_status_bar .carrier, .legacy_ipad_status_bar .wifi {
      top: 50%;
      transform: translateY(-50%);
    }
  .legacy_iphone_status_bar .signal, .legacy_iphone_x_status_bar .signal, .legacy_android_status_bar .signal, .legacy_ipad_status_bar .signal {
      position: absolute;
    }
  .legacy_iphone_status_bar .carrier, .legacy_iphone_x_status_bar .carrier, .legacy_android_status_bar .carrier, .legacy_ipad_status_bar .carrier {
      position: absolute;
      left: 45px;
      height: 12px;
      line-height: 12px;
      font-size: 12px;
    }
  .legacy_iphone_status_bar .time, .legacy_iphone_x_status_bar .time, .legacy_android_status_bar .time, .legacy_ipad_status_bar .time {
      position: absolute;
      left: 50%;
      width: 60px;
      margin-left: -30px;
      line-height: 12px;
      font-size: 12px;
      text-align: center;
    }
  .legacy_iphone_status_bar .battery, .legacy_iphone_x_status_bar .battery, .legacy_android_status_bar .battery, .legacy_ipad_status_bar .battery {
      position: absolute;
      right: 6px;
      width: 24px;
      height: 10px;
      display: flex;
    }
  .legacy_ipad_status_bar .signal, .legacy_iphone_status_bar .signal {
      left: 1.5%;
      height: 6px;
      display: flex;
    }
  .legacy_ipad_status_bar .signal {
      left: 0.8%;
    }
  .legacy_iphone_x_status_bar {
    height: 44px;
  }
  .legacy_iphone_x_status_bar .time {
      left: 13%;
      font-size: 13px;
      font-weight: bold;
    }
  .legacy_iphone_x_status_bar .time .meridian {
        display: none;
      }
  .legacy_iphone_x_status_bar .signal {
      right: 17%;
      height: 9px;
      display: flex;
      align-items: flex-end;
    }
  .legacy_iphone_x_status_bar .wifi {
      display: flex;
      position: absolute;
      font-size: 16px;
      left: initial;
      right: 11.5%;
    }
  .legacy_iphone_x_status_bar .battery {
      left: initial;
      right: 4%;
    }
  .landscape .legacy_iphone_x_status_bar .time {
        left: 6%;
      }
  .landscape .legacy_iphone_x_status_bar .wifi {
        right: 9.5%;
      }
  .legacy_android_status_bar {
    background: #555;
    color: #fff;
    height: 23px;
  }
  .legacy_android_status_bar .time {
      left: auto;
      right: 10px;
      width: auto;
      line-height: 12px;
      font-size: 13px;
    }
  .legacy_android_status_bar .signal {
      position: absolute;
      margin: 0;
      right: 72px;
      width: 12px;
      height: 12px;
      overflow: hidden;
      color: white;
    }
  .legacy_android_status_bar .battery {
      right: 52px;
      width: 8px;
      height: 14px;
    }
  .ios_status_bar, .iphone_x_status_bar, .android_status_bar {
    width: 100%;
    background: #f8f8f8;
    color: #101010;
  }
  .ios_status_bar svg, .iphone_x_status_bar svg, .android_status_bar svg {
      height: 12px;
      fill: currentColor;
    }
  .ios_status_bar svg > *, .iphone_x_status_bar svg > *, .android_status_bar svg > * {
        fill: currentColor;
      }
  .ios_status_bar .StatusBarTime, .ios_status_bar .StatusBarSignal, .ios_status_bar .StatusBarWifi, .ios_status_bar .StatusBarBattery, .iphone_x_status_bar .StatusBarTime, .iphone_x_status_bar .StatusBarSignal, .iphone_x_status_bar .StatusBarWifi, .iphone_x_status_bar .StatusBarBattery, .android_status_bar .StatusBarTime, .android_status_bar .StatusBarSignal, .android_status_bar .StatusBarWifi, .android_status_bar .StatusBarBattery {
      display: flex;
      align-items: center;
      height: 100%;
    }
  .ios_status_bar {
    height: 20px;
  }
  .iphone_x_status_bar {
    height: 44px;
  }
  .android_status_bar {
    height: 23px;
    background-color: #555;
    color: #fff;
  }
  .iOS-StatusBar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5em;
    width: 100%;
    height: 100%;
  }
  .iOS-StatusBar .StatusBarSignal {
      margin-right: 0.25em;
    }
  .iOS-StatusBar .StatusBarWifi {
      margin-left: 0.25em;
      margin-right: auto;
    }
  .iOS-StatusBar .StatusBarBattery {
      margin-left: auto;
    }
  .iOS-StatusBar .StatusBarTime {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
  .iPhoneX-StatusBar {
    display: flex;
    justify-content: center;
    height: 100%;
    padding: 0 14px;
  }
  .iPhoneX-StatusBar .StatusBarTime {
      justify-content: center;
      margin-right: auto;
      margin-left: 7px;
      width: 54px;
      font-size: 14px;
      font-weight: 600;
    }
  .iPhoneX-StatusBar .StatusBarSignal {
      margin-left: auto;
    }
  .iPhoneX-StatusBar .StatusBarSignal, .iPhoneX-StatusBar .StatusBarWifi {
      margin-right: 0.4em;
    }
  .Android-StatusBar {
    display: flex;
    justify-content: flex-end;
    padding: 0 10px;
    height: 100%;
    font-size: 16px;
  }
  .Android-StatusBar .StatusBarBattery {
      font-size: 18px;
      margin: 0 6px;
    }
  .Android-StatusBar .StatusBarTime {
      font-size: 13px;
    }
  .lr {
    background: rgba(255, 195, 16, 0.2);
    border: 1px solid #ffc310;
  }
  .webpage .webpage-wrapper {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      -webkit-overflow-scrolling: touch;
    }
  .webpage .webpage-wrapper::-webkit-scrollbar {
        width: 0;
        height: 0;
      }
  .webpage .webpage-wrapper .webpage-position {
        width: 100%;
        height: 100%;
      }
  .webpage .webpage-wrapper .webpage-header {
        display: flex;
        background-color: #ededed;
        padding: 0 12px;
        align-items: center;
        min-height: 40px;
      }
  .webpage .webpage-wrapper .webpage-header .dot, .webpage .webpage-wrapper .webpage-header .dot2 {
          height: 22px;
          width: 22px;
          border-radius: 50%;
          background-color: #dbdbdb;
        }
  .webpage .webpage-wrapper .webpage-header .dot2 {
          margin: 0 8px 0 8px;
        }
  .webpage .webpage-wrapper .webpage-header .oval {
          min-width: 0;
          flex: 1;
          border-radius: 11px;
          height: 22px;
          line-height: 22px;
          background: #dbdbdb;
        }
  .webpage .webpage-wrapper .webpage-header .oval .text {
            font-size: 12px;
            padding-left: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: #7d8694;
          }
  .webpage .webpage-wrapper .content {
        height: calc(100% - 40px);
        padding: 12px;
        background-color: #f7f7f7;
        margin-top: -1px;
      }
  .webpage .webpage-wrapper .content .webpage-url {
          background-color: #ebebeb;
          height: 100%;
          display: flex;
          align-items: center;
          justify-content: center;
        }
  .webpage .webpage-wrapper .content .webpage-url .desc {
            font-size: 16px;
            color: #8d9ea7;
          }
  .webpage span {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      line-height: 30px !important; /* TODO rm global line-height: 1后, 删除!important */
      margin: 10px;
      text-align: center;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.31);
    }
  .webpage .notice {
      position: absolute;
      top: 60px;
      text-align: left;
      color: red;
      left: 0;
      width: 100%;
      line-height: 22px;
    }
  .webpage .iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
  .widget.line {
    pointer-events: none;
  }
  .widget.line svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: inherit;
    }
  .widget.line svg > path {
        transition: inherit;
      }
  .triangleb svg, .triangletl svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  .mb-screen, .mb-dragging-puppet {
    color: #5b6b73;
  }
  .mb-screen.mac.ios, .mb-dragging-puppet.mac.ios {
        font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Pingfang SC', 'Microsoft Yahei', 'WenQuanYi Micro Hei', sans-serif;
      }
  .mb-screen.mac.android, .mb-dragging-puppet.mac.android {
        font-family: Roboto, Arial, 'Noto Sans CJK SC', 'Noto Sans CJK TC', 'Pingfang SC', 'Microsoft Yahei', 'WenQuanYi Micro Hei', sans-serif;
      }
  .mb-screen.mac.others, .mb-dragging-puppet.mac.others {
        font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Pingfang SC', 'Microsoft Yahei', 'WenQuanYi Micro Hei', sans-serif;
      }
  .mb-screen.windows.ios, .mb-screen.other-os.ios, .mb-dragging-puppet.windows.ios, .mb-dragging-puppet.other-os.ios {
        font-family: BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Microsoft Yahei', 'WenQuanYi Micro Hei', 'Pingfang SC', sans-serif;
      }
  .mb-screen.windows.android, .mb-screen.other-os.android, .mb-dragging-puppet.windows.android, .mb-dragging-puppet.other-os.android {
        font-family: Roboto, Arial, 'Noto Sans CJK SC', 'Noto Sans CJK TC', 'Microsoft Yahei', 'WenQuanYi Micro Hei', 'Pingfang SC', sans-serif;
      }
  .mb-screen.windows.others, .mb-screen.other-os.others, .mb-dragging-puppet.windows.others, .mb-dragging-puppet.other-os.others {
        font-family: Roboto, BlinkMacSystemFont, 'Helvetica Neue', Arial, 'Microsoft Yahei', 'WenQuanYi Micro Hei', 'Pingfang SC', sans-serif;
      }
  .mb-screen:not(.isQuickAnnotateClass).others {
      /*.widget {*/
      /*  cursor: default;*/
    }
  /*}*/
  .mb-screen:not(.isQuickAnnotateClass).others input, .mb-screen:not(.isQuickAnnotateClass).others textarea {
        cursor: text;
      }
  .mb-screen:not(.isQuickAnnotateClass).others input[type='radio'], .mb-screen:not(.isQuickAnnotateClass).others input[type='checkbox'], .mb-screen:not(.isQuickAnnotateClass).others textarea[type='radio'], .mb-screen:not(.isQuickAnnotateClass).others textarea[type='checkbox'] {
              cursor: pointer;
          }
  /*.clickable,*/
  .mb-screen:not(.isQuickAnnotateClass).others .iOS-Switch, .mb-screen:not(.isQuickAnnotateClass).others .Android-Switch, .mb-screen:not(.isQuickAnnotateClass).others .iOS-Check, .mb-screen:not(.isQuickAnnotateClass).others .Android-Check, .mb-screen:not(.isQuickAnnotateClass).others .Android-Radio {
        cursor: pointer;
      }
  .audio {
    background-color: #e8e8e8;
  }
  .audio div {
      display: flex;
    }
  .audio div button.play-pause {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: #fff;
        margin-left: 12px;
        align-self: center;
      }
  .audio div button.play-pause[data-state=pause] svg.play {
              display: block;
              width: 10px;
              height: 13px;
              margin-left: 14px;
              margin-right: 12px;
            }
  .audio div button.play-pause[data-state=pause] svg.pause {
              display: none;
            }
  .audio div button.play-pause[data-state=play] svg.play {
              display: none;
            }
  .audio div button.play-pause[data-state=play] svg.pause {
              display: block;
              width: 20px;
              height: 20px;
              margin-left: 8px;
              margin-right: 8px;
            }
  .audio div span.progress {
        display: flex;
        align-self: center;
        margin-left: 12px;
      }
  .audio div span.progress span {
          line-height: 20px;
          font-weight: 500;
        }
  .audio div span.progress .current-time, .audio div span.progress .duration {
          min-width: 35px;
        }
  .audio div input[type=range] {
        -webkit-appearance: none;
        position: relative;
        min-width: 24px;
        flex-grow: 1;
        flex-shrink: 1;
        align-self: center;
        margin: 0 12px;
        background-color: transparent;
      }
  .audio div input[type=range]::before {
        position: absolute;
        height: 100%;
        width: 0;
        content: '';
        background-color: #7d8b94;
        border-radius: 100px;
      }
  .audio div input[type=range]::-webkit-slider-runnable-track {
        height: 4px;
        border-radius: 100px;
        background-color: rgba(164, 173, 179, 0.6);
      }
  .audio div input[type=range]::-webkit-slider-thumb {
        position: relative;
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.23);
        margin-top: -6px;
        opacity: 1;
        cursor: pointer;
      }
  .audio div input[type=range]::-moz-range-track {
        height: 4px;
        border-radius: 100px;
        background-color: rgba(164, 173, 179, 0.6);
      }
  .audio div input[type=range]::-moz-range-progress {
        height: 4px;
        border-radius: 100px;
        background-color: #7d8b94;
      }
  .audio div input[type=range]::-moz-range-thumb {
        position: relative;
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.23);
        margin-top: -6px;
        opacity: 1;
        cursor: pointer;
      }
  .audio div input[type=range]:focus {
        outline: none;
      }
  .audio div button.mute-control {
        margin-left: auto;
        margin-right: 23px;
        pointer-events: none;
      }
  .audio div button.mute-control svg {
          display: block;
          margin: auto;
          height: 18px;
          width: 18px;
        }
  .video .video {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
  .video .video video {
        width: 100%;
        height: 100%;
      }
  .video .video video:focus {
          outline: none;
        }
  .video .video .iframe-container {
        width: 100%;
        height: 100%;
      }
  .video .video .status-indicator {
        margin: auto;
        text-align: center;
        color: #dbdbdb;
      }
  .video .video .controls-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
      }
  .video .video .controls-container .progress-bar {
          background-color: #f2f4f5;
          margin: 0 16px;
          border-radius: 100px;
          width: auto;
          height: 3px;
          opacity: 0.2;
        }
  .video .video .controls-container .controls {
          display: flex;
          align-items: center;
          margin-top: 8px;
          margin-bottom: 12px;
        }
  .video .video .controls-container .controls svg path {
              fill: #f7f7f7;
            }
  .video .video .controls-container .controls .play-button {
            min-width: 12px;
            min-height: 15px;
            margin-left: 18px;
          }
  .video .video .controls-container .controls .progress {
            color: #f7f7f7;
            margin-left: 14px;
            margin-right: auto;
            font-size: 14px;
            white-space: nowrap;
          }
  .video .video .controls-container .controls .mute-control {
            min-width: 18px;
            min-height: 14px;
            margin-left: 14px;
            margin-right: 22px;
            opacity: 0.4;
          }
  .video .video .controls-container .controls .full-screen {
            min-width: 17px;
            min-height: 15px;
            margin-right: 20px;
            opacity: 0.4;
          }
  .qrcode {
    overflow: hidden;
  }
  .qrcode .behavior {
      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -54px;
      margin-top: -16px;
      line-height: 32px;
      height: 32px;
      width: 108px;
      font-size: 12px;
      z-index: 101;
      text-align: center;
      background-color: rgba(31, 41, 46, 0);
      border-radius: 2px;
      pointer-events: none;
    }
  .qrcode .behavior:lang(en) {
        width: 100px;
        margin-left: -50px;
        height: 50px;
        margin-top: -25px;
        line-height: 16px;
      }
  .qrcode .behavior:lang(ja) {
        width: 150px;
        margin-left: -75px;
      }
  .qrcode .behavior span {
        color: #fff;
        opacity: 0;
      }
  .qrcode:hover .behavior {
        background-color: rgba(31, 41, 46, 0.9);
      }
  .qrcode:hover .behavior span {
          opacity: 1;
        }

.panel {
    position: absolute;
    z-index: 5;
  }

/* 动态组件编辑模式下显示全局手势 */

.panel:not(.is-panel-editing) .pg {
      display: none;
    }

.panel .state {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 5;
      background-size: 100% auto;
    }

.panel .state .navigation_bar, .panel .state .nav_bar {
        top: 0;
      }

.panel .state.active {
        z-index: 6;
      }

.panel.highlight {
      background-color: rgba(223, 140, 0, 0.6) !important;
    }

.panel.highlight .state {
        opacity: 0.5 !important;
      }

/* 动态组件预览时滚动条 */

.panel.overFlowHide {
      overflow: hidden;
    }

.panel.overFlowAuto {
      overflow: auto;
      overflow: overlay;
    }

.panel.overFlowX {
      overflow-x: auto;
      overflow-x: overlay;
      overflow-y: hidden;
    }

.panel.overFlowY {
      overflow-y: auto;
      overflow-y: overlay;
      overflow-x: hidden;
    }

.android .navigation_bar, .android .nav_bar {
      height: 55px;
    }

input, textarea, .editable, .editable * {
    -webkit-user-select: text;
       -moz-user-select: text;
            user-select: text;
  }

a {
    text-decoration: none;
    color: #979797;
    cursor: pointer;
  }

a.active-link {
      color: #eb5648;
    }

.svg-icon > * {
      fill: currentColor; /* patch firefox path not inherit "fill: currentColor" */
    }

.svg-icon.fill [fill] {
        fill: currentColor;
        stroke: none;
      }

.svg-icon.fill [stroke] {
        stroke: currentColor;
        fill: none;
      }

.svg-icon.fill [fill='none'] {
        fill: none
      }

.svg-icon.fill [fill='none'][stroke] {
        stroke: currentColor;
      }

.svg-icon.fill [stroke = 'none'] {
        stroke: none;
      }

.svg-icon.fill [stroke = 'none'][fill] {
        fill: currentColor;
      }

.svg-icon.fill:not([fill]), .svg-icon.fill:not([stroke]) {
        fill: currentColor;
      }

.SelectMenu .SelectOption, .SelectGroup, .CoreSelectMenu .SelectOption {
    transform: translate(0, 0);
  }

#font-preload {
    position: absolute;
    top: -65535px;
    left: -65535px;
    font-size: 12px;
    pointer-events: none;
  }

    #font-preload .aw {
      position: absolute;
      width: auto;
      white-space: nowrap;
    }

    #font-preload .ah {
      position: absolute;
      height: auto;
      word-break: break-word;
      word-wrap: break-word;
    }

    #font-preload .ah p {
      margin-bottom: 5px;
      white-space: pre-wrap;
    }

    #font-preload .ah p:last-child {
      margin-bottom: 0;
    }

    #font-preload .auto-size {
      white-space: pre;
      width: -moz-fit-content;
      width: fit-content;
    }

    #font-preload .auto-size.vertical-lr {
        writing-mode: vertical-lr;
      }

    #font-preload .auto-size.horizontal-tb {
        writing-mode: horizontal-tb;
      }

    #font-preload .auto-height, #font-preload .auto-width {
      white-space: pre-wrap;
      word-break: break-word;
      word-wrap: break-word;
    }

    #font-preload .auto-height.vertical-lr, #font-preload .auto-width.vertical-lr {
        writing-mode: vertical-lr;
      }

    #font-preload .auto-height.horizontal-tb, #font-preload .auto-width.horizontal-tb {
        writing-mode: horizontal-tb;
      }

/**
 * (c) jExcel v3.6.3
 *
 * Author: Paul Hodel <paul.hodel@gmail.com>
 * Website: https://bossanova.uk/jexcel/
 * Description: Create amazing web based spreadsheets.
 *
 * This software is distribute under MIT License
 */
:root {
    --jexcel-border-color:#000;
  }
* {
    box-sizing: border-box;
  }
.jexcel_container {
    display:inline-block;
    padding-right:2px;
    box-sizing: border-box;
    overscroll-behavior: contain;
  }
.jexcel_container.fullscreen {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    z-index:2001;
  }
.jexcel_container.fullscreen .jexcel_content {
    overflow:auto;
    width:100%;
    height:100%;
    background-color:#ffffff;
  }
.jexcel_container.fullscreen.with-toolbar {
    height: calc(100% - 46px);
  }
.jexcel_content {
    display:inline-block;
    box-sizing: border-box;
    padding-right:2px;
    position:relative;
  }
.jexcel {
    border-collapse:separate;
    table-layout:fixed;
    white-space: nowrap;
    empty-cells:show;
    border:0px;
    background-color:#fff;
    width:0;

    border-top:1px solid transparent;
    border-left:1px solid transparent;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
  }
.jexcel > thead > tr > td
  {
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
    border-right:1px solid transparent;
    border-bottom:1px solid transparent;
    background-color:#f3f3f3;
    padding:2px;
    cursor:pointer;
    box-sizing: border-box;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index:2000;
  }
.with-toolbar .jexcel > thead > tr > td
  {
    top:42px;
  }
.jexcel > thead.draggable > tr > td::before
  {
    content:'\00a0';
    width:100%;
    height:3px;
    position:absolute;
    bottom:0px;
    left:0px;
    cursor:move;
  }
.jexcel > thead.resizable > tr > td::after
  {
    content:'\00a0';
    width:3px;
    height:100%;
    position:absolute;
    top:0px;
    right:0px;
    cursor:col-resize;
  }
.jexcel > thead > tr > td.dragging
  {
    background-color:#fff;
    opacity:0.5;
  }
.jexcel > thead > tr > td:first-child:after, .jexcel > thead > tr.jexcel_nested > td::before, .jexcel > thead > tr.jexcel_nested > td::after
  {
    cursor:default;
  }
.jexcel > thead > tr > td.selected
  {
    background-color:#dcdcdc;
  }
.jexcel > thead > tr > td.arrow-up
  {
    background-repeat:no-repeat;
    background-position:center right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 14l5-5 5 5H7z' fill='gray'/%3E%3C/svg%3E");
    text-decoration:underline;
  }
.jexcel > thead > tr > td.arrow-down
  {
    background-repeat:no-repeat;
    background-position:center right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
    text-decoration:underline;
  }
.jexcel > tbody > tr > td:first-child
  {
    position:relative;
    background-color:#f3f3f3;
    text-align:center;
  }
.jexcel > tbody.resizable > tr > td:first-child::before
  {
    content:'\00a0';
    width:100%;
    height:3px;
    position:absolute;
    bottom:0px;
    left:0px;
    cursor:row-resize;
  }
.jexcel > tbody.draggable > tr > td:first-child::after
  {
    content:'\00a0';
    width:3px;
    height:100%;
    position:absolute;
    top:0px;
    right:0px;
    cursor:move;
  }
.jexcel > tbody > tr.dragging > td
  {
    background-color:#eee;
    opacity:0.5;
  }
.jexcel > tbody > tr > td
  {
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
    border-right:1px solid transparent;
    border-bottom:1px solid transparent;
    padding:4px;
    white-space: nowrap;
    box-sizing: border-box;
    line-height:1em;
  }
.jexcel > tbody > tr > td:last-child
  {
    overflow:hidden;
  }
.jexcel > tbody > tr > td > img
  {
    display:inline-block;
    max-width:100px;
  }
.jexcel > tbody > tr > td.readonly
  {
    color:rgba(0,0,0,0.3)
  }
.jexcel > tbody > tr.selected > td:first-child
  {
    background-color:#dcdcdc;
  }
.jexcel > tbody > tr > td > select, .jexcel > tbody > tr > td > input, .jexcel > tbody > tr > td > textarea
  {
    border:0px;
    border-radius:0px;
    outline:0px;
    width:100%;
    margin:0px;
    padding:0px;
    background-color:transparent;
    box-sizing: border-box;
  }
.jexcel > tbody > tr > td > textarea
  {
    resize: none;
    padding-top:6px !important;
  }
.jexcel > tbody > tr > td > input[type=checkbox]
  {
    width:12px;
    margin-top:2px;
  }
.jexcel > tbody > tr > td > input[type=radio]
  {
    width:12px;
    margin-top:2px;
  }
.jexcel > tbody > tr > td > select
  {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 40%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
  }
.jexcel > tbody > tr > td.dropdown
  {
    background-repeat: no-repeat;
    background-position:top 50% right 5px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E");
    text-overflow: ellipsis;
    overflow-x:hidden;
  }
.jexcel > tbody > tr > td.dropdown.jexcel_comments
  {
    background:url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E") top 50% right 5px no-repeat, url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=') top right no-repeat;
  }
.jexcel > tbody > tr > td > .color
  {
    width:90%;
    height:10px;
    margin:auto;
  }
.jexcel .highlight {
    background-color:rgba(0,0,0,0.05);
  }
.jexcel .highlight-top {
    border-top:1px solid #000; /* var(--jexcel-border-color);*/
    box-shadow: 0px -1px #ccc;
  }
.jexcel .highlight-left {
    border-left:1px solid #000; /* var(--jexcel-border-color);*/
    box-shadow: -1px 0px #ccc;
  }
.jexcel .highlight-right {
    border-right:1px solid #000; /* var(--jexcel-border-color);*/
  }
.jexcel .highlight-bottom {
    border-bottom:1px solid #000; /* var(--jexcel-border-color);*/
  }
.jexcel .highlight-top.highlight-left {
    box-shadow: -1px -1px #ccc;
    -webkit-box-shadow: -1px -1px #ccc;
    -moz-box-shadow: -1px -1px #ccc;
  }
.jexcel .highlight-selected
  {
    background-color:rgba(0,0,0,0.0);
  }
.jexcel .selection
  {
    background-color:rgba(0,0,0,0.05);
  }
.jexcel .selection-left
  {
    border-left:1px dotted #000;
  }
.jexcel .selection-right
  {
    border-right:1px dotted #000;
  }
.jexcel .selection-top
  {
    border-top:1px dotted #000;
  }
.jexcel .selection-bottom
  {
    border-bottom:1px dotted #000;
  }
.jexcel_corner
  {
    position:absolute;
    background-color: rgb(0, 0, 0);
    height: 1px;
    width: 1px;
    border: 1px solid rgb(255, 255, 255);
    top:-2000px;
    left:-2000px;
    cursor:crosshair;
    box-sizing: initial;
    z-index:7000;
    padding: 2px;
  }
.jexcel .editor
  {
    outline:0px solid transparent;
    overflow:visible;
    white-space: nowrap;
    text-align:left;
    padding:0px;
    box-sizing: border-box;
    overflow:visible !important;
  }
.jexcel .editor > input
  {
    padding-left:4px;
  }
.jexcel .editor .jupload
  {
    position:fixed;
    top:100%;
    z-index:8000;
    -webkit-user-select:none;
       -moz-user-select:none;
            user-select:none;
    -webkit-font-smoothing: antialiased;
    font-size: .875rem;
    letter-spacing: .2px;
    border-radius: 4px;
    box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
    padding:10px;
    background-color:#fff;
    width:300px;
    min-height:225px;
    margin-top:2px;
  }
.jexcel .editor .jupload img
  {
    width:100%;
    height:auto;
  }
.jexcel .editor .jclose:after
  {
    position:absolute;
    top:0;
    right:0;
    margin:10px;
    content:'close';
    font-family:'Material icons';
    font-size:24px;
    width:24px;
    height:24px;
    line-height:24px;
    cursor:pointer;
    text-shadow: 0px 0px 5px #fff;
  }
.jexcel, .jexcel td, .jexcel_corner
  {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
  }
.jexcel .dragline
  {
    position:absolute;
  }
.jexcel .dragline div
  {
    position:relative;
    top:-6px;
    height:5px;
    width:22px;
  }
.jexcel .dragline div:hover
  {
    cursor:move;
  }
.jexcel .onDrag
  {
    background-color:rgba(0,0,0,0.6);
  }
.jexcel .error
  {
    border:1px solid red;
  }
.jexcel thead td.resizing
  {
    border-right-style:dotted !important;
    border-right-color:red !important;
  }
.jexcel tbody tr.resizing > td
  {
    border-bottom-style:dotted !important;
    border-bottom-color:red !important;
  }
.jexcel tbody td.resizing
  {
    border-right-style:dotted !important;
    border-right-color:red !important;
  }
.jexcel .jdropdown-header
  {
    border:0px !important;
    outline:none !important;
    width:100% !important;
    height:100% !important;
    padding:0px !important;
    padding-left:8px !important;
  }
.jexcel .jdropdown-container
  {
    margin-top:1px;
  }
.jexcel .jdropdown-container-header {
    padding: 0px;
    margin: 0px;
    height: inherit;
  }
.jexcel .jdropdown-picker
  {
    border:0px !important;
    padding:0px !important;
    width:inherit;
    height:inherit;
  }
.jexcel .jexcel_comments
  {
    background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=');
    background-repeat: no-repeat;
    background-position: top right;
  }
.jexcel .sp-replacer
  {
    margin: 2px;
    border:0px;
  }
.jexcel > thead > tr.jexcel_filter > td > input
  {
    border:0px;
    width:100%;
    outline:none;
  }
.jexcel_filter
  {
    display:flex;
    justify-content:space-between;
    margin-bottom:4px;
  }
.jexcel_filter > div
  {
    padding:8px;
    align-items:center;
  }
.jexcel_pagination
  {
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
.jexcel_pagination > div
  {
    display:flex;
    padding:10px;
  }
.jexcel_pagination > div:last-child
  {
    padding-right:10px;
    padding-top:10px;
  }
.jexcel_pagination > div > div
  {
    text-align:center;
    width:36px;
    height:36px;
    line-height:34px;
    border:1px solid #ccc;
    box-sizing: border-box;
    margin-left:2px;
    cursor:pointer;
  }
.jexcel_page_selected
  {
    font-weight:bold;
    background-color:#f3f3f3;
  }
.jexcel_toolbar
  {
    display:flex;
    background-color:#f3f3f3;
    border:1px solid #ccc;
    padding:4px;
    margin:0px 2px 4px 1px;
    position:sticky;
    top:0px;
    z-index:8001;
  }
.jexcel_toolbar:empty
  {
    display:none;
  }
.jexcel_toolbar i.jexcel_toolbar_item
  {
    width:24px;
    height:24px;
    padding:4px;
    cursor:pointer;
    display:inline-block;
  }
.jexcel_toolbar i.jexcel_toolbar_item:hover
  {
    background-color:#ddd;
  }
.jexcel_toolbar select.jexcel_toolbar_item
  {
    margin-left:2px;
    margin-right:2px;
    display:inline-block;
    border:0px;
    background-color:transparent;
    padding-right:10px;
  }
.jexcel .dragging-left
  {
    background-repeat: no-repeat;
    background-position:top 50% left 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M14 7l-5 5 5 5V7z'/%3E%3Cpath fill='none' d='M24 0v24H0V0h24z'/%3E%3C/svg%3E");
  }
.jexcel .dragging-right
  {
    background-repeat: no-repeat;
    background-position:top 50% right 0px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M10 17l5-5-5-5v10z'/%3E%3Cpath fill='none' d='M0 24V0h24v24H0z'/%3E%3C/svg%3E");
  }
.jexcel_tabs > .jexcel_tab
  {
    display:none;
  }
.jexcel_tabs > .jexcel_tab_link
  {
    display:inline-block;
    padding:10px;
    padding-left:20px;
    padding-right:20px;
    margin-right:5px;
    margin-bottom:5px;
    background-color:#f3f3f3;
    cursor:pointer;
  }
.jexcel_tabs > .jexcel_tab_link.selected
  {
    background-color:#ddd;
  }
.jexcel_hidden_index tr > td:first-child, .jexcel_hidden_index colgroup > col:first-child
  {
    display:none;
  }

.RrZKprPGiEqkxEELaP57 {
    display: none;
    position: absolute;
    pointer-events: none;
    z-index: 11;
    background-image: none;
  }

    .RrZKprPGiEqkxEELaP57 .tab_bar, .RrZKprPGiEqkxEELaP57 .keyboard {
      top: 0 !important;
    }

    .RrZKprPGiEqkxEELaP57 .pg {
      width: 40px !important;
      height: 40px !important;
    }

    .RrZKprPGiEqkxEELaP57[data-do-not-create=true] .carousel, .RrZKprPGiEqkxEELaP57[data-do-not-create=true] .map_view {
        width: 200px !important;
        height: 100px !important;
    }

    .RrZKprPGiEqkxEELaP57[data-do-not-create=true] .image_view, .RrZKprPGiEqkxEELaP57[data-do-not-create=true] .image_view .wrapper {
        max-width: 109px;
        max-height: 109px;
    }

    .RrZKprPGiEqkxEELaP57[data-do-not-create=true] .image_view img {
        width: auto !important;
        height: auto !important;
        max-width: 109px;
        max-height: 109px;
    }
  .WVRqDWvrnmzMpK3ZflPA {
    position: absolute;
    pointer-events: none;
    background: white;
    z-index: 11;
    border: 1px dotted black;
    opacity: 0.5;
    display: none;
  }

:lang(en) .leftdrawer .name, :lang(en) .rightdrawer .name {
        transform: translateX(-50%) scale(0.83);
      }
  .UtTGKuAeVkS_bstgDAZv {
    position: relative;
    height: 53px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 9px;
    margin-right: 16px;
    cursor: pointer;
  }
  /* &:nth-child(3) {
      margin-right: 51px;
    }

    &:nth-child(5) {
      margin-right: 101px !important;
    }

    /* &:nth-child(4n + 5) {
      margin-right: 0;
    } */
  .UtTGKuAeVkS_bstgDAZv:nth-child(4n) {
      margin-right: 0;
    }
  .UtTGKuAeVkS_bstgDAZv .pages {
      position: relative;
      height: 34px;
      width: 34px;
      line-height: 28px;
      border: 1px solid #c8cdd0;
      border-radius: 2px;
      overflow: hidden;
      transition: all 0.15s ease-in-out;
    }
  .UtTGKuAeVkS_bstgDAZv .name {
      position: absolute;
      white-space: nowrap;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }
  .UtTGKuAeVkS_bstgDAZv .page1, .UtTGKuAeVkS_bstgDAZv .page2 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: all 1s ease-in-out;
      font-size: 17px;
      line-height: 34px;
      text-align: center;
      color: #fff;
    }
  .UtTGKuAeVkS_bstgDAZv .page1 {
      z-index: 2;
      background: #ebebeb;
      color: #415058;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  .UtTGKuAeVkS_bstgDAZv .page2 {
      background: #298df8;
    }
  .UtTGKuAeVkS_bstgDAZv .page1:before, .UtTGKuAeVkS_bstgDAZv .page2:before {
      display: none;
    }
  .UtTGKuAeVkS_bstgDAZv .page2.icon-arrow-bottom, .UtTGKuAeVkS_bstgDAZv .page2.icon-arrow-top, .UtTGKuAeVkS_bstgDAZv .page2.icon-arrow-left, .UtTGKuAeVkS_bstgDAZv .page2.icon-arrow-right {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  .UtTGKuAeVkS_bstgDAZv:hover .pages {
      border: 1px solid #3299ff;
    }
  .UtTGKuAeVkS_bstgDAZv.current .pages {
      border: 1px solid #3299ff;
      box-shadow: 0 0 4px 0 rgba(34, 162, 237, 0.66);
    }
  /* 默认 */
  .UtTGKuAeVkS_bstgDAZv.none .page1 {
        top: 5px;
        left: 5px;
        width: 19px;
        height: 19px;
      }
  /* 左菜单 */
  .UtTGKuAeVkS_bstgDAZv.leftmenu:hover .page1 {
          box-shadow: -1px 0 2px 0 rgba(0, 0, 0, 0.1);
          animation: leftmenu1 1s linear infinite;
        }
  .UtTGKuAeVkS_bstgDAZv.leftmenu:hover .page2 {
          animation: leftmenu2 1s linear infinite;
        }
  @keyframes leftmenu1 {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(70%);
      }

      100% {
        transform: translateX(70%);
      }
    }
  @keyframes leftmenu2 {
      from {
        transform: translateX(-100%);
      }

      20% {
        transform: translateX(-100%);
      }

      80% {
        transform: translateX(-30%);
      }

      100% {
        transform: translateX(-30%);
      }
    }
  /* 右菜单 */
  .UtTGKuAeVkS_bstgDAZv.rightmenu:hover .page1 {
          animation: rightmenu1 1s linear infinite;
          box-shadow: -1px 0 2px 0 rgba(0, 0, 0, 0.1);
        }
  .UtTGKuAeVkS_bstgDAZv.rightmenu:hover .page2 {
          animation: rightmenu2 1s linear infinite;
        }
  @keyframes rightmenu1 {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(-70%);
      }

      100% {
        transform: translateX(-70%);
      }
    }
  @keyframes rightmenu2 {
      from {
        transform: translateX(100%);
      }

      20% {
        transform: translateX(100%);
      }

      80% {
        transform: translateX(30%);
      }

      100% {
        transform: translateX(30%);
      }
    }
  /* 左抽屉 */
  .UtTGKuAeVkS_bstgDAZv.leftdrawer .page2 {
        left: -100%;
        z-index: 2;
      }
  .UtTGKuAeVkS_bstgDAZv.leftdrawer:hover .page2 {
          animation: leftdrawer 1s linear infinite;
          box-shadow: -1px 0 2px 0 rgba(0, 0, 0, 0.1);
        }
  @keyframes leftdrawer {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(70%);
      }

      100% {
        transform: translateX(70%);
      }
    }
  /* 右抽屉 */
  .UtTGKuAeVkS_bstgDAZv.rightdrawer .page2 {
        left: 100%;
        z-index: 2;
      }
  .UtTGKuAeVkS_bstgDAZv.rightdrawer:hover .page2 {
          animation: rightdrawer 1s linear infinite;
          box-shadow: -1px 0 2px 0 rgba(0, 0, 0, 0.1);
        }
  @keyframes rightdrawer {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(-70%);
      }

      100% {
        transform: translateX(-70%);
      }
    }
  /* 左移入 */
  .UtTGKuAeVkS_bstgDAZv.slideright .page2 {
        left: -100%;
      }
  .UtTGKuAeVkS_bstgDAZv.slideright:hover .page1, .UtTGKuAeVkS_bstgDAZv.slideright:hover .page2 {
          animation: slideright 1s linear infinite;
        }
  @keyframes slideright {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(100%);
      }

      100% {
        transform: translateX(100%);
      }
    }
  /* 右移入 */
  .UtTGKuAeVkS_bstgDAZv.slideleft .page2 {
        left: 100%;
      }
  .UtTGKuAeVkS_bstgDAZv.slideleft:hover .page1, .UtTGKuAeVkS_bstgDAZv.slideleft:hover .page2 {
          animation: slideleft 1s linear infinite;
        }
  @keyframes slideleft {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(-100%);
      }
    }
  /* 上移入 */
  .UtTGKuAeVkS_bstgDAZv.slidetop .page2 {
        top: -100%;
      }
  .UtTGKuAeVkS_bstgDAZv.slidetop:hover .page1, .UtTGKuAeVkS_bstgDAZv.slidetop:hover .page2 {
          animation: slidetop 1s linear infinite;
        }
  @keyframes slidetop {
      from {
        transform: translateY(0);
      }

      20% {
        transform: translateY(0);
      }

      80% {
        transform: translateY(100%);
      }

      100% {
        transform: translateY(100%);
      }
    }
  /* 下移入 */
  .UtTGKuAeVkS_bstgDAZv.slidebottom .page2 {
        top: 100%;
      }
  .UtTGKuAeVkS_bstgDAZv.slidebottom:hover .page1, .UtTGKuAeVkS_bstgDAZv.slidebottom:hover .page2 {
          animation: slidebottom 1s linear infinite;
        }
  @keyframes slidebottom {
      from {
        transform: translateY(0);
      }

      20% {
        transform: translateY(0);
      }

      80% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(-100%);
      }
    }
  /* 左弹入 */
  .UtTGKuAeVkS_bstgDAZv.slideleft2 .page2 {
        left: -100%;
        z-index: 3;
      }
  .UtTGKuAeVkS_bstgDAZv.slideleft2:hover .page2 {
          animation: slideleft2 1s linear infinite;
        }
  @keyframes slideleft2 {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(100%);
      }

      100% {
        transform: translateX(100%);
      }
    }
  /* 右弹入 */
  .UtTGKuAeVkS_bstgDAZv.slideright2 .page2 {
        left: 100%;
        z-index: 2;
      }
  .UtTGKuAeVkS_bstgDAZv.slideright2:hover .page2 {
          animation: slideright2 1s linear infinite;
        }
  @keyframes slideright2 {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(-100%);
      }
    }
  /* 上弹入 */
  .UtTGKuAeVkS_bstgDAZv.topin .page2 {
        top: -100%;
        z-index: 3;
      }
  .UtTGKuAeVkS_bstgDAZv.topin:hover .page2 {
          animation: topin 1s linear infinite;
        }
  @keyframes topin {
      from {
        transform: translateY(0);
      }

      20% {
        transform: translateY(0);
      }

      80% {
        transform: translateY(100%);
      }

      100% {
        transform: translateY(100%);
      }
    }
  /* 下弹入 */
  .UtTGKuAeVkS_bstgDAZv.popin .page2 {
        top: 100%;
        z-index: 3;
      }
  .UtTGKuAeVkS_bstgDAZv.popin:hover .page2 {
          animation: popin 1s linear infinite;
        }
  @keyframes popin {
      from {
        transform: translateY(0);
      }

      20% {
        transform: translateY(0);
      }

      80% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(-100%);
      }
    }
  /* 左弹出 */
  .UtTGKuAeVkS_bstgDAZv.leftout:hover .page1 {
        animation: leftout 1s linear infinite;
      }
  @keyframes leftout {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(-100%);
      }
    }
  /* 右弹出 */
  .UtTGKuAeVkS_bstgDAZv.rightout:hover .page1 {
        animation: rightout 1s ease-in-out infinite;
      }
  @keyframes rightout {
      from {
        transform: translateX(0);
      }

      20% {
        transform: translateX(0);
      }

      80% {
        transform: translateX(100%);
      }

      100% {
        transform: translateX(100%);
      }
    }
  /* 上弹出 */
  .UtTGKuAeVkS_bstgDAZv.topout:hover .page1 {
        animation: topout 1s ease-in-out infinite;
      }
  @keyframes topout {
      from {
        transform: translateY(0);
      }

      20% {
        transform: translateY(0);
      }

      80% {
        transform: translateY(-100%);
      }

      100% {
        transform: translateY(-100%);
      }
    }
  /* 下弹出 */
  .UtTGKuAeVkS_bstgDAZv.popout:hover .page1 {
        animation: popout 1s ease-in-out infinite;
      }
  @keyframes popout {
      from {
        transform: translateY(0);
      }

      20% {
        transform: translateY(0);
      }

      80% {
        transform: translateY(100%);
      }

      100% {
        transform: translateY(100%);
      }
    }

.renew-modal {
    z-index: 1049 !important;
  }


span.data-grid-container, span.data-grid-container:focus {
  outline: none;
}

.data-grid-container .data-grid {
  table-layout: fixed;
  border-collapse: collapse;
} 

.data-grid-container .data-grid .cell.updated {
    background-color: rgba(0, 145, 253, 0.16);
    transition : background-color 0ms ease ;
}
.data-grid-container .data-grid .cell {
  height: 17px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  cursor: cell;
  background-color: unset;
  transition : background-color 500ms ease;
  vertical-align: middle;
  text-align: right;
  border: 1px solid #DDD;
  padding: 0;
}
.data-grid-container .data-grid .cell.selected {
  border: 1px double rgb(33, 133, 208);
  transition: none;
  box-shadow: inset 0 -100px 0 rgba(33, 133, 208, 0.15);
}

.data-grid-container .data-grid .cell.read-only {
  background: whitesmoke;
  color: #999;
  text-align: center;
}

.data-grid-container .data-grid .cell > .text {
  padding: 2px 5px;
  text-overflow: ellipsis;
  overflow: hidden;
}


.data-grid-container .data-grid .cell > input {
  outline: none !important;
  border: 2px solid rgb(33, 133, 208);
  text-align:right;
  width: calc(100% - 6px);
  height: 11px;
  background: none;
  display: block;
}


.data-grid-container .data-grid .cell {
  vertical-align: bottom;
}

.data-grid-container .data-grid .cell,
.data-grid-container .data-grid.wrap .cell,
.data-grid-container .data-grid.wrap .cell.wrap,
.data-grid-container .data-grid .cell.wrap,
.data-grid-container .data-grid.nowrap .cell.wrap,
.data-grid-container .data-grid.clip .cell.wrap {
  white-space: normal;
}

.data-grid-container .data-grid.nowrap .cell,
.data-grid-container .data-grid.nowrap .cell.nowrap,
.data-grid-container .data-grid .cell.nowrap,
.data-grid-container .data-grid.wrap .cell.nowrap,
.data-grid-container .data-grid.clip .cell.nowrap {
  white-space: nowrap;
  overflow-x: visible;
}

.data-grid-container .data-grid.clip .cell,
.data-grid-container .data-grid.clip .cell.clip,
.data-grid-container .data-grid .cell.clip,
.data-grid-container .data-grid.wrap .cell.clip,
.data-grid-container .data-grid.nowrap .cell.clip {
  white-space: nowrap;
  overflow-x: hidden;
}

.data-grid-container .data-grid .cell .value-viewer, .data-grid-container .data-grid .cell .data-editor {
  display: block;
}

.nT4U2_NOIS7CAZHovWxY {
  position: absolute;
  left: 0;
  top: 100vh;
  width: 100%;
  height: 100%;
  margin: 1px 0 0;
  border: none;
  visibility: hidden;
  pointer-events: none;
}

.QVXBTXRKR_gixOc5Zs9n .screen-coworkers {
      position: absolute;
      height: 32px;
      display: flex;
      justify-content: flex-end;
      z-index: 2;
    }

      .QVXBTXRKR_gixOc5Zs9n .screen-coworkers.left {
        margin-right: 8px;
      }

      .QVXBTXRKR_gixOc5Zs9n .screen-coworkers.right {
        margin-left: 8px;
      }
    .QVXBTXRKR_gixOc5Zs9n .coworker {
      position: relative;
      height: 32px;
      margin-left: 7px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .QVXBTXRKR_gixOc5Zs9n .coworker .avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.23);
      }
    .QVXBTXRKR_gixOc5Zs9n .coworker .name {
        display: none;
        position: absolute;
        z-index: 1;
        top: 100%;
        min-width: 52px;
        margin: 12px 0;
        padding: 0 6px;
        white-space: nowrap;
        height: 22px;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        color: #fff;
        text-align: center;
        line-height: 20px;
        border-radius: 4px;
        background: #1f292e;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
      }
    .QVXBTXRKR_gixOc5Zs9n .coworker .name::before {
          content: '';
          position: absolute;
          bottom: 100%;
          border: 5px solid transparent;
          border-bottom-color: #1f292e;
          left: 50%;
          transform: translateX(-50%);
        }
    .QVXBTXRKR_gixOc5Zs9n .coworker:hover .name {
        pointer-events: none;
        display: flex;
      }

:root {
  /* 普通状态, 拖拽中状态, 找到目标元素状态 */
}

.HCDwhqkkLfjMQRafUqNN {
    position: fixed; /* 因为需要盖住rightnav, 并防止被artboard overflow, 所以用fixed*/
    z-index: 2; /* 需要比rightnav和rightnav的toggle-btn高, 且比MainPanel低 */
    pointer-events: auto;
  }

.HCDwhqkkLfjMQRafUqNN.is-dragging {
      z-index: 200; /* 按下时, 需要高于StatePanel */
      pointer-events: none;
    }

/* 临时禁用handler的鼠标事件(防止mousemove的target是handler) */

.HCDwhqkkLfjMQRafUqNN.is-dragging .line {
        border-color: #8d9ea7;
      }

.HCDwhqkkLfjMQRafUqNN.is-dragging .handler {
        color: #8d9ea7;
      }

.HCDwhqkkLfjMQRafUqNN.is-active .line {
        border-color: #298df8;
      }

.HCDwhqkkLfjMQRafUqNN.is-active .handler {
        color: #298df8;
      }

.HCDwhqkkLfjMQRafUqNN.shield-corner-events {
      pointer-events: none;
    }

.HCDwhqkkLfjMQRafUqNN .line {
      position: absolute;
      top: 0;
      left: 0;
      width: 26px;
      border-top: 2px solid #c8cdd0;
      transform-origin: left center;
    }

.HCDwhqkkLfjMQRafUqNN .handler {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      width: 1em;
      height: 1em;
      margin-top: -0.5em;
      margin-left: -0.5em;
      background: white;
      color: #c8cdd0;
      border: 2px solid currentColor;
      border-radius: 50%;
      cursor: grab;
    }

.HCDwhqkkLfjMQRafUqNN .handler .icon {
        font-size: 12px;
      }

.link-design-context-menu > ul {
    width: -moz-max-content;
    width: max-content;
    min-width: 120px !important;
    max-width: 350px;
  }

.link-design-context-menu > ul li, .link-design-context-menu > ul li span {
      max-width: 150px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

.QEoONXh9wsDDpaosLrNZ {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }

.kjO70kLTw2_mHRXujuaF {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 12px;
    min-height: 12px;
    z-index: 16;
    outline: none;
    overflow: hidden;
    background-color: lightblue;
    border-color: transparent;
    -webkit-user-select: text;
       -moz-user-select: text;
            user-select: text;
    pointer-events: auto;
  }
    .kjO70kLTw2_mHRXujuaF * {
      -webkit-user-select: text;
         -moz-user-select: text;
              user-select: text;
    }
    .kjO70kLTw2_mHRXujuaF.hleft {
      justify-content: flex-start;
    }
    .kjO70kLTw2_mHRXujuaF.hcenter {
      justify-content: center;
    }
    .kjO70kLTw2_mHRXujuaF.hright {
      justify-content: flex-end;
    }
    .kjO70kLTw2_mHRXujuaF.vtop {
      align-items: flex-start;
    }
    .kjO70kLTw2_mHRXujuaF.vmiddle {
      align-items: center;
    }
    .kjO70kLTw2_mHRXujuaF.vertical-lr {
      writing-mode: vertical-lr;
    }
    .kjO70kLTw2_mHRXujuaF.horizontal-tb {
      writing-mode: horizontal-tb;
    }
    .kjO70kLTw2_mHRXujuaF.vbottom {
      align-items: flex-end;
    }
    .kjO70kLTw2_mHRXujuaF.label p {
      margin: 0;
    }
    .kjO70kLTw2_mHRXujuaF.button {
      padding: 0 !important;
    }
    .kjO70kLTw2_mHRXujuaF.mtext_input {
      padding: 0 8px !important;
      align-items: center;
    }
    .kjO70kLTw2_mHRXujuaF.mselect {
      display: block;
    }
    .kjO70kLTw2_mHRXujuaF.mtooltip .text {
      position: static;
      padding: 0 !important;
    }
    .kjO70kLTw2_mHRXujuaF.webpage {
      display: block;
      padding: 10px !important;
      font-size: 12px !important;
      color: #7D8694 !important;
      line-height: 22px;
      height: auto !important;
      text-align: left !important;
      margin-left: 78px;
      margin-top: -1px;
    }
    .kjO70kLTw2_mHRXujuaF.tab_item {
      justify-content: center;
      white-space: nowrap;
      line-height: 1;
      overflow: visible;
    }
    .kjO70kLTw2_mHRXujuaF.sticky {
      display: block;
    }
    .kjO70kLTw2_mHRXujuaF p {
      margin-bottom: 5px;
    }
    .kjO70kLTw2_mHRXujuaF p:last-child {
        margin-bottom: 0;
      }

.H0sPWlzvqcxAnd4SvswB {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 12px;
    min-height: 12px;
    z-index: 16;
    overflow: visible;
    cursor: text;
    pointer-events: auto;
  }

    .H0sPWlzvqcxAnd4SvswB .editor {
      outline: none;
      border-color: transparent;
      -webkit-user-select: text;
         -moz-user-select: text;
              user-select: text;
    }

    .H0sPWlzvqcxAnd4SvswB .editor p:last-child {
          margin-bottom: 0 !important;
        }

    .H0sPWlzvqcxAnd4SvswB * {
      -webkit-user-select: text;
         -moz-user-select: text;
              user-select: text;
    }

    .H0sPWlzvqcxAnd4SvswB.auto {
      width: -moz-max-content;
      width: max-content;
    }

    .H0sPWlzvqcxAnd4SvswB.left {
      text-align: left;
    }

    .H0sPWlzvqcxAnd4SvswB.center {
      text-align: center;
      justify-content: center;
    }

    .H0sPWlzvqcxAnd4SvswB.right {
      text-align: right;
      justify-content: flex-end;
    }

    .H0sPWlzvqcxAnd4SvswB.justify {
      text-align: justify;
    }

    .H0sPWlzvqcxAnd4SvswB.top {
      align-items: flex-start;
    }

    .H0sPWlzvqcxAnd4SvswB.middle {
      align-items: center;
    }

    .H0sPWlzvqcxAnd4SvswB.bottom {
      align-items: flex-end;
    }

.fSfak0XSv3W2Jo1eTWeY::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      border: 2px solid transparent;
      transition: all 0.15s ease-in-out;
    }
    .fSfak0XSv3W2Jo1eTWeY.is-active::after {
        background: rgba(41, 141, 248, 0.06);
        border-color: #298df8;
      }

.master-delete-modal {
    border-radius: 0 0 4px 4px;
  }

    .master-delete-modal .content {
      padding: 0;
    }

    .master-delete-modal .content p {
        font-size: 12px;
        color: #5b6b73;
        line-height: 22px;
      }

    .master-delete-modal .content p span {
          color: #298df8;
        }

.combo-group-remove-modal .content {
      padding: 0;
    }

      .combo-group-remove-modal .content p {
        font-size: 12px;
        color: #5b6b73;
      }

      .combo-group-remove-modal .content p span {
          color: #298df8;
        }

      .combo-group-remove-modal .content footer .Select {
          margin-right: auto;
        }

.screen-action-modal .content .desc {
      text-align: start;
      display: flex;
    }
    .screen-action-modal .FormEntry > .val:only-child {
      margin-left: 0;
      padding-left: 0.5em;
    }

/*

github.com style (c) Vasily Polovnyov <vast@whiteants.net>

*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  color: #333;
  background: #f8f8f8;
}

.hljs-comment,
.hljs-quote {
  color: #998;
  font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
  color: #333;
  font-weight: bold;
}

.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
  color: #008080;
}

.hljs-string,
.hljs-doctag {
  color: #d14;
}

.hljs-title,
.hljs-section,
.hljs-selector-id {
  color: #900;
  font-weight: bold;
}

.hljs-subst {
  font-weight: normal;
}

.hljs-type,
.hljs-class .hljs-title {
  color: #458;
  font-weight: bold;
}

.hljs-tag,
.hljs-name,
.hljs-attribute {
  color: #000080;
  font-weight: normal;
}

.hljs-regexp,
.hljs-link {
  color: #009926;
}

.hljs-symbol,
.hljs-bullet {
  color: #990073;
}

.hljs-built_in,
.hljs-builtin-name {
  color: #0086b3;
}

.hljs-meta {
  color: #999;
  font-weight: bold;
}

.hljs-deletion {
  background: #fdd;
}

.hljs-addition {
  background: #dfd;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

ul.ToolbarSelectMenu {
      width: 100%;
      margin-top: 1em;
      padding: 0 0.5em;
      font-size: 12px;
      min-width: 7em;
    }
    ul.ToolbarSelectMenu li {
      justify-content: center;
      margin: 0.5em 0;
      border-radius: 2px;
    }

.PM26Ljznui8RJWuxUXab {
    position: absolute;
    pointer-events: none;
    background-size: cover;
    z-index: 4;

    /* &.none {
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      border: 1px solid var(--default-border-color);
    } */

  }

    .PM26Ljznui8RJWuxUXab.default {
      top: -var(--default-padding);
      left: -var(--default-padding);
      right: -var(--default-padding);
      bottom: -var(--default-padding);
      border: 1px dashed #d9d9d9;
      background-color: rgba(255, 255, 255, 0.5);
      z-index: -1;
    }

    .PM26Ljznui8RJWuxUXab.default::after {
        content: '';
        position: absolute;
        top: 10px
;
        left: 10px
;
        right: 10px
;
        bottom: 10px
;
        border: 1px solid #d9d9d9;
      }

.pcanvas {
    z-index: 1;
  }

    .pcanvas.active {
      z-index: 3;
    }

#sticky-container {
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    z-index: 200;
  }

    #sticky-container > div {
      overflow: visible;
      position: relative;
      top: 0;
      left: 0;
      height: 0;
    }

    #sticky-container .sticky {
      -webkit-user-select: text;
         -moz-user-select: text;
              user-select: text;
    }

    #sticky-container .sticky .arrow {
        pointer-events: none;
      }

    /* 批注hover时, 链接线高亮 */

    #sticky-container .sticky:hover .sideline, #sticky-container .sticky:hover .arrow {
          opacity: 0.7;
        }

#simulator-container {
    transition: right 0.5s ease-in-out;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

    #simulator-container .screen-viewport {
      position: relative;
    }

    #simulator-container .screen-viewport .zoom-area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform-origin: 50% 50%;
      }

    #simulator-container .screen-viewport .no-zoom-area-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-origin: center center;
        pointer-events: none;
      }

    #simulator-container .screen-viewport .no-zoom-area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 200;
      }

    #simulator-container .screen-viewport .no-zoom-area #ui-comment-marker-panel {
          pointer-events: auto;
        }

    #simulator-container.wait-drag {
      cursor: grab;
    }

    #simulator-container.wait-drag:active {
        cursor: grabbing;
      }

    /* 拖拽画布时, 禁止画布接收鼠标事件 */

    #simulator-container.wait-drag .screen-viewport, #simulator-container.wait-drag .ui-layers {
        pointer-events: none;
      }

    #simulator-container.is-immersive .animated {
        animation-name: noop !important;
      }

    /* 禁止批注组件鼠标事件 */

    #simulator-container.is-immersive #simulator {
        pointer-events: none;
      }

    #simulator-container.is-comment-active {
      cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAMAAACeyVWkAAAAM1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAABToCx4AAAAD3RSTlMABg0KGBIpMBw/JiFPRjb/jfUZAAAAhUlEQVQY032RUQrEIAxENxMTjbZN73/aDa2wJV2cH+HxYEb9rEMMpheEuyNjLn564ayOoCPJJD1oF3oyYtGgKkz0a4e0GrQ2AZhm+51znqDZ/shcgpbchsvVw2zfgm672aGXSyija7WgVrWPAvq7YbE33S29g6d3uJfUqz3Jpc32918s8wX3rwd4ah+CRwAAAABJRU5ErkJggg==') 0 0, default;
    }

    /* 禁止批注组件鼠标事件 */

    #simulator-container.is-comment-active #sticky-container {
        pointer-events: none;
      }

    /* 评论模式下, 鼠标进入画板时, no-zoom-area-wrapper 接受鼠标事件以显示评论cursor */

    #simulator-container.is-comment-active .no-zoom-area-wrapper {
        pointer-events: auto;
      }

    /* 页面展开时, 隐藏header和footer */

    #simulator-container.is-screen-expanded .screen-header, #simulator-container.is-screen-expanded .screen-footer {
        display: none;
      }

    #simulator-container.is-screen-expanded .screen-content {
        height: 100%;
      }

    #simulator-container.is-screen-expanded .screen-content > .widgets {
          height: 100% !important;
        }

    #simulator-container.is-screen-expanded .screen-content > .widgets > .scontainer {
            margin-top: 0 !important;
          }

    #simulator-container.is-fullscreen-mode {
      overflow: visible;
    }

    #simulator-container.is-fullscreen-mode .screen-viewport {
        animation: slideUp 0.35s ease-in-out;
      }

@keyframes slideUp {
  from {
    top: 38px;
  }

  to {
    top: 0;
  }
}

.apps-count-over {
    border-radius: 4px;
    width: 510px !important;
    padding: 0 !important;
  }

    .apps-count-over header {
      height: 60px;
      padding: 19px 24px;
      border-bottom: 1px solid #e8e8e8;
      font-size: 16px;
      color: #1f292e;
      margin-bottom: 0;
    }

    .apps-count-over header .close-btn {
        display: inline-block;
        width: 14px;
        height: 14px;
      }

    .apps-count-over header .close-btn:hover {
          color: #415058;
        }

    .apps-count-over .content {
      min-height: 152px;
      font-size: 14px;
      color: #1f292e;
      line-height: 22px;
      padding: 0 !important;
    }

    .apps-count-over .content > div {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08),
          0 9px 28px rbga(0, 0, 0, 0.05);
      }

    .apps-count-over .content > div .modal-content {
          display: flex;
          flex: 1;
          flex-direction: column;
          align-items: stretch;
          padding: 20px 30px;
          overflow: hidden;
          position: relative;
        }

    .apps-count-over .content > div .modal-content p {
            margin: 0 0 5px;
            font-size: 14px;
            line-height: 22px;
            font-family: PingFangSC-Regular;
            font-style: normal;
            font-weight: 400;
            color: #333;
          }

    .apps-count-over .content > div .modal-content p .strong {
              font-weight: 600;
            }

    .apps-count-over .content > div .modal-content table, .apps-count-over .content > div .modal-content table tr th, .apps-count-over .content > div .modal-content table tr td {
            border: 1px solid rgb(229, 229, 229);
          }

    .apps-count-over .content > div .modal-content table {
            font-size: 14px;
            color: #333;
            margin-top: 10px;
            margin-bottom: 20px;
            line-height: 38px;
            text-align: center;
            border-collapse: collapse;
          }

    .apps-count-over .content > div .modal-content .highlight {
            color: #ff6161;
          }

    .apps-count-over .content > div .modal-footer {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          flex-direction: row-reverse;
          padding: 14px 24px;
          background: #f7f7f7;
          border-bottom-left-radius: 8px;
          border-bottom-right-radius: 8px;
        }

    .apps-count-over .content > div .modal-footer .btn-cancel, .apps-count-over .content > div .modal-footer .btn-confirm {
            min-width: 72px;
            height: 32px;
            font-size: 14px;
            line-height: 22px;
            margin-left: 10px;
            padding: 4px 10px;
            border-radius: 4px;
            box-sizing: border-box;
            transition: 300ms;
          }

    .apps-count-over .content > div .modal-footer .btn-cancel {
            border: 1px solid #e5e5e5;
            color: #333;
            border: 1px solid #dbdbdb;
          }

    .apps-count-over .content > div .modal-footer .btn-cancel:hover {
              background: #F2F2F2;
              border: 1px solid #DEDEE4;
            }

    .apps-count-over .content > div .modal-footer .btn-confirm {
            color: #fff;
            background-color: #298df8;
            border: 1px solid #298df8;
          }

    .apps-count-over .content > div .modal-footer .btn-confirm:hover {
              background-color: #1169c9;
              border: 1px solid #1169c9;
            }

    .apps-count-over .content > div .modal-footer .btn-confirm:disabled {
              background-color: #ccc;
              cursor: not-allowed;
            }

.apps-count-over {
    border-radius: 2px;
    width: 510px !important;
    padding: 0 !important;
  }

    .apps-count-over header {
      height: 60px;
      padding: 19px 24px;
      border-bottom: 1px solid #e8e8e8;
      font-size: 16px;
      color: #1f292e;
      margin-bottom: 0;
    }

    .apps-count-over header .close-btn {
        display: inline-block;
        width: 14px;
        height: 14px;
      }

    .apps-count-over header .close-btn:hover {
          color: #415058;
        }

    .apps-count-over .content {
      min-height: 152px;
      font-size: 14px;
      color: #1f292e;
      line-height: 22px;
      padding: 0 !important;
    }

    .apps-count-over .content .modal-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: stretch;
        padding: 20px 30px;
        overflow: hidden;
        position: relative;
      }

    .apps-count-over .content .modal-content p {
          margin: 0 0 5px;
          font-size: 14px;
          line-height: 22px;
          font-family: PingFangSC-Regular;
          font-style: normal;
          font-weight: 400;
          color: #333;
        }

    .apps-count-over .content .modal-content p .strong {
            color: #333;
            font-weight: 600;
          }

    .apps-count-over .content .modal-content p .tip {
            color: #999;
          }

    .apps-count-over .content .modal-footer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 14px 24px;
        background: #f7f7f7;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
      }

    .apps-count-over .content .modal-footer .btn-cancel, .apps-count-over .content .modal-footer .btn-confirm {
          min-width: 72px;
          height: 32px;
          font-size: 14px;
          line-height: 22px;
          margin-left: 10px;
          padding: 4px 10px;
          border-radius: 2px;
          box-sizing: border-box;
        }

    .apps-count-over .content .modal-footer .btn-cancel{
          border: 1px solid #e5e5e5;
          color: #333;
        }

    .apps-count-over .content .modal-footer .btn-confirm{
          color: #fff;
          background-color: #298df8;
          border: 1px solid #298df8;
        }

    .apps-count-over .content .modal-footer .btn-confirm:disabled{
            background-color: #ccc;
            cursor: not-allowed;
          }

.asset-group-remove-modal .content {
      padding: 0;
    }

      .asset-group-remove-modal .content p {
        font-size: 12px;
        color: #5b6b73;
      }

      .asset-group-remove-modal .content p span {
          color: #298df8;
        }

      .asset-group-remove-modal .content footer .Select {
          margin-right: auto;
        }

.state-item-remove-modal .content {
      padding: 0;
    }

      .state-item-remove-modal .content p {
        font-size: 12px;
        color: #5b6b73;
      }

      .state-item-remove-modal .content p span {
          color: #298df8;
        }

      .state-item-remove-modal .content footer .Select {
          margin-right: auto;
        }

.library-remove-modal .content {
      padding: 0;
    }

      .library-remove-modal .content p {
        font-size: 12px;
        color: #5b6b73;
      }

      .library-remove-modal .content p span {
          color: #298df8;
        }

      .library-remove-modal .content footer .Select {
          margin-right: auto;
        }

.manage-page-modal {
    border-radius: 4px;
    width: 510px !important;
    padding: 0 !important;
  }

    .manage-page-modal header {
      height: 60px;
      padding: 19px 24px;
      border-bottom: 1px solid #e8e8e8;
      font-size: 16px;
      color: #1f292e;
      margin-bottom: 0;
    }

    .manage-page-modal header .close-btn {
        display: inline-block;
        width: 14px;
        height: 14px;
      }

    .manage-page-modal header .close-btn:hover {
          color: #415058;
        }

    .manage-page-modal .content {
      min-height: 152px;
      font-size: 14px;
      color: #1f292e;
      line-height: 22px;
      padding: 0 !important;
      
    }

    .manage-page-modal .content .modal-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        position: relative;
      }

    .manage-page-modal .content .modal-footer {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row-reverse;
        padding: 14px 24px;
        background: #f7f7f7;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top: 1px solid #e8e8e8;
      }

    .manage-page-modal .content .modal-footer .btn-confirm {
          min-width: 72px;
          height: 32px;
          font-size: 14px;
          line-height: 22px;
          margin-left: 10px;
          padding: 4px 10px;
          border-radius: 4px;
          box-sizing: border-box;
          transition: 300ms;
          color: #fff;
          background-color: #298df8;
          border: 1px solid #298df8;
        }

    .manage-page-modal .content .modal-footer .btn-confirm:hover {
            background-color: #1169c9;
            border: 1px solid #1169c9;
          }

    .manage-page-modal .content .modal-footer .btn-confirm:disabled {
            background-color: #ccc;
            cursor: not-allowed;
          }


/*# sourceMappingURL=design-related-7ae780bbe2a61664d607.css.map*/