@charset "UTF-8";

/* fade */
.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.28s;
  transition: opacity 0.28s;
}

.fade-enter,
.fade-leave-active {
  opacity: 0;
}

/* fade-transform */
.fade-transform-leave-active,
.fade-transform-enter-active {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.fade-transform-enter {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.fade-transform-leave-to {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

/* breadcrumb transition */
.breadcrumb-enter-active,
.breadcrumb-leave-active {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.breadcrumb-enter,
.breadcrumb-leave-active {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.breadcrumb-move {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.breadcrumb-leave-active {
  position: absolute;
}

.el-breadcrumb__inner,
.el-breadcrumb__inner a {
  font-weight: 400 !important;
}

.el-upload input[type=file] {
  display: none !important;
}

.el-upload__input {
  display: none;
}

.el-dialog {
  -webkit-transform: none;
          transform: none;
  left: 0;
  position: relative;
  margin: 0 auto;
}

.upload-container .el-upload {
  width: 100%;
}
.upload-container .el-upload .el-upload-dragger {
  width: 100%;
  height: 200px;
}

.el-dropdown-menu a {
  display: block;
}

.el-range-separator {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* switch按钮样式 */
.switch .el-switch__label {
  position: absolute;
  display: none;
  color: #fff !important;
}

/*打开时文字位置设置*/
.switch .el-switch__label--right {
  z-index: 1;
}

/* 调整打开时文字的显示位子 */
.switch .el-switch__label--right span {
  margin-right: 9px;
  font-size: 10px !important;
}

/*关闭时文字位置设置*/
.switch .el-switch__label--left {
  z-index: 1;
}

/* 调整关闭时文字的显示位子 */
.switch .el-switch__label--left span {
  margin-left: 16px;
  font-size: 10px !important;
}

/*显示文字*/
.switch .el-switch__label.is-active {
  display: block;
}

/* 调整按钮的宽度 */
.switch.el-switch .el-switch__core,
.switch.el-switch .el-switch__label {
  width: 55px !important;
  margin: 0;
}

.apc-flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.apc-flex-row.spaced-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.apc-flex-row.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.apc-flex-row.start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.apc-flex-row.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.apc-flex-row.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.apc-flex-row.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.apc-flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.apc-flex-column.spaced-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.apc-flex-column.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.apc-flex-column.start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.apc-flex-column.end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.apc-flex-column.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.apc-flex-column.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fluid {
  width: 100%;
}

#app .top-menu-container {
  height: 50px;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  overflow: hidden;
  background-color: #304156;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#app .top-menu-container .top-logo {
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
  width: calc(120px + 120px) !important;
}
#app .top-menu-container .top-toolbar {
  width: 40px;
  height: 50px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
#app .top-menu-container .top-toolbar .hamburger-container {
  height: 50px;
  line-height: 50px;
  color: #ffffff;
}
#app .top-menu-container .top-menu {
  height: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
#app .top-menu-container .top-avatar {
  height: 50px;
  line-height: 50px;
}
#app .main-container {
  padding-top: 50px;
  min-height: calc(100% - 50px);
  -webkit-transition: margin-left 0.28s;
  transition: margin-left 0.28s;
  position: relative;
}
#app .main-container.sidebarLeft {
  margin-left: 120px;
}
#app .main-container.subSidebarLeft {
  margin-left: calc(120px + 120px);
}
#app .sidebar-container {
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
  width: 120px !important;
  background-color: #304156;
  height: calc(100% - 50px);
  position: fixed;
  font-size: 0px;
  top: 50px;
  bottom: 0;
  left: 0;
  z-index: 1001;
  overflow: hidden;
}
#app .sidebar-container .horizontal-collapse-transition {
  -webkit-transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
  transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
}
#app .sidebar-container .scrollbar-wrapper {
  overflow-x: hidden !important;
}
#app .sidebar-container .el-scrollbar__bar.is-vertical {
  right: 0px;
}
#app .sidebar-container .el-scrollbar {
  height: 100%;
}
#app .sidebar-container.has-logo .el-scrollbar {
  height: calc(100% - 50px);
}
#app .sidebar-container .is-horizontal {
  display: none;
}
#app .sidebar-container a {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
#app .sidebar-container .svg-icon {
  margin-right: 16px;
}
#app .sidebar-container .sub-el-icon {
  margin-right: 12px;
  margin-left: -2px;
}
#app .sidebar-container .el-menu {
  border: none;
  height: 100%;
  width: 100% !important;
}
#app .sidebar-container .el-menu .el-submenu__icon-arrow {
  display: none;
}
#app .sidebar-container .submenu-title-noDropdown:hover,
#app .sidebar-container .el-submenu__title:hover {
  background-color: #263445 !important;
}
#app .sidebar-container .is-active > .el-submenu__title {
  color: #f4f4f5 !important;
}
#app .sidebar-container .nest-menu .el-submenu > .el-submenu__title, #app .sidebar-container .el-submenu .el-menu-item {
  min-width: 120px !important;
  background-color: #1f2d3d !important;
}
#app .sidebar-container .nest-menu .el-submenu > .el-submenu__title:hover, #app .sidebar-container .el-submenu .el-menu-item:hover {
  background-color: #001528 !important;
}
#app .sub-sidebar-container {
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
  width: 120px !important;
  height: calc(100% - 50px);
  position: fixed;
  font-size: 0px;
  top: 50px;
  bottom: 0;
  left: 120px;
  z-index: 1001;
  overflow: hidden;
  background-color: #ffffff;
}
#app .sub-sidebar-container .horizontal-collapse-transition {
  -webkit-transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
  transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
}
#app .sub-sidebar-container .scrollbar-wrapper {
  overflow-x: hidden !important;
}
#app .sub-sidebar-container .el-scrollbar__bar.is-vertical {
  right: 0px;
}
#app .sub-sidebar-container .el-scrollbar {
  height: 100%;
}
#app .sub-sidebar-container .is-horizontal {
  display: none;
}
#app .sub-sidebar-container a {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
#app .sub-sidebar-container .svg-icon {
  margin-right: 16px;
}
#app .sub-sidebar-container .sub-el-icon {
  margin-right: 12px;
  margin-left: -2px;
}
#app .sub-sidebar-container .el-menu {
  border: none;
  height: 100%;
  width: 100% !important;
}
#app .sub-sidebar-container .nest-menu .el-submenu > .el-submenu__title, #app .sub-sidebar-container .el-submenu .el-menu-item {
  min-width: 120px !important;
}
#app .hideSidebar .top-logo,
#app .hideSidebar .sidebar-container {
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
  width: 54px !important;
}
#app .hideSidebar .sub-sidebar-container {
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
}
#app .hideSidebar .main-container.sidebarLeft {
  margin-left: 54px;
}
#app .hideSidebar .submenu-title-noDropdown {
  padding: 0 !important;
  position: relative;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip {
  padding: 0 !important;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon {
  margin-left: 20px;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip .sub-el-icon {
  margin-left: 19px;
}
#app .hideSidebar .el-submenu {
  overflow: hidden;
}
#app .hideSidebar .el-submenu .el-submenu__icon-arrow {
  display: none;
}
#app .hideSidebar .el-submenu > .el-submenu__title {
  padding: 0 !important;
}
#app .hideSidebar .el-submenu > .el-submenu__title .svg-icon {
  margin-left: 20px;
}
#app .hideSidebar .el-submenu > .el-submenu__title .sub-el-icon {
  margin-left: 19px;
}
#app .hideSidebar .el-menu--collapse .el-submenu > .el-submenu__title > span {
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  display: inline-block;
}
#app .el-menu--collapse .el-menu .el-submenu {
  min-width: 54px !important;
}
#app .mobile .main-container {
  margin-left: 0px;
}
#app .mobile .main-container.sidebarLeft {
  margin-left: 0px;
}
#app .mobile .top-logo {
  -webkit-transition: none !important;
  transition: none !important;
  width: 54px !important;
}
#app .mobile .sidebar-container {
  -webkit-transition: -webkit-transform 0.28s;
  transition: -webkit-transform 0.28s;
  transition: transform 0.28s;
  transition: transform 0.28s, -webkit-transform 0.28s;
  width: 120px !important;
}
#app .mobile .sub-sidebar-container {
  -webkit-transition: -webkit-transform 0.28s;
  transition: -webkit-transform 0.28s;
  transition: transform 0.28s;
  transition: transform 0.28s, -webkit-transform 0.28s;
  width: 120px !important;
}
#app .mobile.hideSidebar .sidebar-container {
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: translate3d(-120px, 0, 0);
          transform: translate3d(-120px, 0, 0);
}
#app .mobile.hideSidebar .sub-sidebar-container {
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform: translate3d(-120px, 0, 0);
          transform: translate3d(-120px, 0, 0);
}
#app .withoutAnimation .main-container,
#app .withoutAnimation .top-logo,
#app .withoutAnimation .sidebar-container,
#app .withoutAnimation .sub-sidebar-container {
  -webkit-transition: none;
  transition: none;
}

.el-menu--vertical > .el-menu .svg-icon {
  margin-right: 16px;
}
.el-menu--vertical > .el-menu .sub-el-icon {
  margin-right: 12px;
  margin-left: -2px;
}
.el-menu--vertical .nest-menu .el-submenu > .el-submenu__title:hover,
.el-menu--vertical .el-menu-item:hover {
  background-color: #263445 !important;
}
.el-menu--vertical > .el-menu--popup {
  max-height: 100vh;
  overflow-y: auto;
}
.el-menu--vertical > .el-menu--popup::-webkit-scrollbar-track-piece {
  background: #d3dce6;
}
.el-menu--vertical > .el-menu--popup::-webkit-scrollbar {
  width: 6px;
}
.el-menu--vertical > .el-menu--popup::-webkit-scrollbar-thumb {
  background: #99a9bf;
  border-radius: 20px;
}

body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}

label {
  font-weight: 700;
}

html {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#app {
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

div:focus {
  outline: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

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

.text-right {
  text-align: right;
}

.app-main {
  background: #f0f2f5;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
.app-main .w-200 {
  width: 200px;
}
.app-main .app-container {
  padding: 20px;
  margin: 20px;
  background: #ffffff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  min-height: calc(100vh - 130px - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.app-main .app-container .filter-container {
  padding-bottom: 10px;
}
.app-main .app-container .filter-container .filter-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  margin-bottom: 10px;
}
.app-main .app-container .filter-container .filter-item + .filter-item {
  margin-left: 10px;
}
.app-main .app-container .table-container {
  width: 100%;
}
.app-main .app-container .el-table::before {
  content: none;
}
.app-main .app-container .el-table__fixed::before {
  content: none;
}
.app-main .app-container .el-table__fixed-right::before {
  content: none;
}
.app-main .app-container .el-input-number--small {
  width: 180px;
}
.app-main .app-container .form-container {
  width: 100%;
  height: calc(100vh - 50px - 35px - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.app-main .app-container .form-container .form-container-header {
  height: 40px;
  line-height: 40px;
  background: #ffffff;
}
.app-main .app-container .form-container .form-container-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: auto;
}
.app-main .app-container .form-container .form-container-footer {
  height: 40px;
  line-height: 40px;
  background: #ffffff;
}

.mobile .app-main .w-200 {
  width: 100%;
}
.mobile .app-main .app-container .filter-container .filter-item {
  margin-left: 0;
}
.mobile .app-main .app-container .filter-container .filter-item.el-date-editor.el-range-editor.el-input__inner.el-date-editor--datetimerange {
  width: auto;
}
.mobile .el-dialog {
  width: 100% !important;
  margin-top: 0 !important;
}

.markerClass {
  width: 10px;
  height: 10px;
  /*transform: translate3d(0px, 0px, 0px);*/
  position: relative;
  outline: none;
  background-color: red;
  -webkit-box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.75);
          box-shadow: 1px 1px 8px 0 rgba(0, 0, 0, 0.75);
  border-radius: 100%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  display: block;
  opacity: 0.7;
}

.markerClass::after {
  content: "";
  border-radius: 100%;
  height: 300%;
  width: 300%;
  position: absolute;
  margin: -100% 0 0 -100%;
  -webkit-box-shadow: 0 0 6px 2px red;
          box-shadow: 0 0 6px 2px red;
  -webkit-animation: pulsate 1s ease-out;
          animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /*无穷反复*/
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  50% {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
#app[data-v-7ba5bd90] {
  width: 100%;
  min-height: 100vh;
}
@charset "UTF-8";
/* 修复input 背景不协调 和光标变色 */
/* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
@supports (-webkit-mask: none) and (not (cater-color: #fff)) {
.login-container .el-input input {
    color: #fff;
}
}
/* reset element-ui css */
.login-container .el-input {
  display: inline-block;
  height: 47px;
  width: 85%;
}
.login-container .el-input input {
  background: transparent;
  border: 0px;
  -webkit-appearance: none;
  border-radius: 0px;
  padding: 12px 5px 12px 15px;
  color: #fff;
  height: 47px;
  caret-color: #fff;
}
.login-container .el-input input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #283443 inset !important;
          box-shadow: 0 0 0px 1000px #283443 inset !important;
  -webkit-text-fill-color: #fff !important;
}
.login-container .el-form-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  color: #454545;
}
.login-container[data-v-37dfd6fc] {
  min-height: 100%;
  width: 100%;
  background-color: #2d3a4b;
  overflow: hidden;
}
.login-container .login-form[data-v-37dfd6fc] {
  position: relative;
  width: 520px;
  max-width: 100%;
  padding: 160px 35px 0;
  margin: 0 auto;
  overflow: hidden;
}
.login-container .tips[data-v-37dfd6fc] {
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}
.login-container .tips span[data-v-37dfd6fc]:first-of-type {
  margin-right: 16px;
}
.login-container .svg-container[data-v-37dfd6fc] {
  padding: 6px 5px 6px 15px;
  color: #889aa4;
  vertical-align: middle;
  width: 30px;
  display: inline-block;
}
.login-container .title-container[data-v-37dfd6fc] {
  position: relative;
}
.login-container .title-container .title[data-v-37dfd6fc] {
  font-size: 26px;
  color: #eee;
  margin: 0px auto 40px auto;
  text-align: center;
  font-weight: bold;
}
.login-container .show-pwd[data-v-37dfd6fc] {
  position: absolute;
  right: 10px;
  top: 7px;
  font-size: 16px;
  color: #889aa4;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wscn-http404-container[data-v-6b3aeb0e] {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 40%;
  left: 50%;
}
.wscn-http404[data-v-6b3aeb0e] {
  position: relative;
  width: 1200px;
  padding: 0 50px;
  overflow: hidden;
}
.wscn-http404 .pic-404[data-v-6b3aeb0e] {
  position: relative;
  float: left;
  width: 600px;
  overflow: hidden;
}
.wscn-http404 .pic-404__parent[data-v-6b3aeb0e] {
  width: 100%;
}
.wscn-http404 .pic-404__child[data-v-6b3aeb0e] {
  position: absolute;
}
.wscn-http404 .pic-404__child.left[data-v-6b3aeb0e] {
  width: 80px;
  top: 17px;
  left: 220px;
  opacity: 0;
  -webkit-animation-name: cloudLeft-data-v-6b3aeb0e;
          animation-name: cloudLeft-data-v-6b3aeb0e;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.wscn-http404 .pic-404__child.mid[data-v-6b3aeb0e] {
  width: 46px;
  top: 10px;
  left: 420px;
  opacity: 0;
  -webkit-animation-name: cloudMid-data-v-6b3aeb0e;
          animation-name: cloudMid-data-v-6b3aeb0e;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.wscn-http404 .pic-404__child.right[data-v-6b3aeb0e] {
  width: 62px;
  top: 100px;
  left: 500px;
  opacity: 0;
  -webkit-animation-name: cloudRight-data-v-6b3aeb0e;
          animation-name: cloudRight-data-v-6b3aeb0e;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes cloudLeft-data-v-6b3aeb0e {
0% {
    top: 17px;
    left: 220px;
    opacity: 0;
}
20% {
    top: 33px;
    left: 188px;
    opacity: 1;
}
80% {
    top: 81px;
    left: 92px;
    opacity: 1;
}
100% {
    top: 97px;
    left: 60px;
    opacity: 0;
}
}
@keyframes cloudLeft-data-v-6b3aeb0e {
0% {
    top: 17px;
    left: 220px;
    opacity: 0;
}
20% {
    top: 33px;
    left: 188px;
    opacity: 1;
}
80% {
    top: 81px;
    left: 92px;
    opacity: 1;
}
100% {
    top: 97px;
    left: 60px;
    opacity: 0;
}
}
@-webkit-keyframes cloudMid-data-v-6b3aeb0e {
0% {
    top: 10px;
    left: 420px;
    opacity: 0;
}
20% {
    top: 40px;
    left: 360px;
    opacity: 1;
}
70% {
    top: 130px;
    left: 180px;
    opacity: 1;
}
100% {
    top: 160px;
    left: 120px;
    opacity: 0;
}
}
@keyframes cloudMid-data-v-6b3aeb0e {
0% {
    top: 10px;
    left: 420px;
    opacity: 0;
}
20% {
    top: 40px;
    left: 360px;
    opacity: 1;
}
70% {
    top: 130px;
    left: 180px;
    opacity: 1;
}
100% {
    top: 160px;
    left: 120px;
    opacity: 0;
}
}
@-webkit-keyframes cloudRight-data-v-6b3aeb0e {
0% {
    top: 100px;
    left: 500px;
    opacity: 0;
}
20% {
    top: 120px;
    left: 460px;
    opacity: 1;
}
80% {
    top: 180px;
    left: 340px;
    opacity: 1;
}
100% {
    top: 200px;
    left: 300px;
    opacity: 0;
}
}
@keyframes cloudRight-data-v-6b3aeb0e {
0% {
    top: 100px;
    left: 500px;
    opacity: 0;
}
20% {
    top: 120px;
    left: 460px;
    opacity: 1;
}
80% {
    top: 180px;
    left: 340px;
    opacity: 1;
}
100% {
    top: 200px;
    left: 300px;
    opacity: 0;
}
}
.wscn-http404 .bullshit[data-v-6b3aeb0e] {
  position: relative;
  float: left;
  width: 300px;
  padding: 30px 0;
  overflow: hidden;
}
.wscn-http404 .bullshit__oops[data-v-6b3aeb0e] {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  color: #1482f0;
  opacity: 0;
  margin-bottom: 20px;
  -webkit-animation-name: slideUp-data-v-6b3aeb0e;
          animation-name: slideUp-data-v-6b3aeb0e;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.wscn-http404 .bullshit__headline[data-v-6b3aeb0e] {
  font-size: 20px;
  line-height: 24px;
  color: #222;
  font-weight: bold;
  opacity: 0;
  margin-bottom: 10px;
  -webkit-animation-name: slideUp-data-v-6b3aeb0e;
          animation-name: slideUp-data-v-6b3aeb0e;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.wscn-http404 .bullshit__info[data-v-6b3aeb0e] {
  font-size: 13px;
  line-height: 21px;
  color: grey;
  opacity: 0;
  margin-bottom: 30px;
  -webkit-animation-name: slideUp-data-v-6b3aeb0e;
          animation-name: slideUp-data-v-6b3aeb0e;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.wscn-http404 .bullshit__return-home[data-v-6b3aeb0e] {
  display: block;
  float: left;
  width: 110px;
  height: 36px;
  background: #1482f0;
  border-radius: 100px;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
  -webkit-animation-name: slideUp-data-v-6b3aeb0e;
          animation-name: slideUp-data-v-6b3aeb0e;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes slideUp-data-v-6b3aeb0e {
0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
}
100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
}
@keyframes slideUp-data-v-6b3aeb0e {
0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
}
100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
}
@charset "UTF-8";
/* 合计行整体样式修改开始 */
.el-table[data-v-04a770be] .el-table__footer-wrapper tbody td {
  border: 1px solid black;
}
.total-zone[data-v-04a770be],
.reject-zone[data-v-04a770be] {
  margin-top: 20px;
}
.total-zone .label[data-v-04a770be],
.reject-zone .label[data-v-04a770be] {
  padding: 8px 0;
}
.drawer-body[data-v-04a770be] {
  padding: 20px;
  height: 100%;
}
.el-drawer__body[data-v-04a770be] {
  position: relative;
  padding: 20px;
}
.filter-container[data-v-04a770be] {
  position: relative;
}
.remove-btn[data-v-04a770be] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.demo-drawer__footer[data-v-04a770be] {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.chart-container[data-v-04a770be] {
  position: relative;
  width: 100%;
  height: calc(100vh - 354px);
}
.panel-row[data-v-04a770be] {
  overflow-y: auto;
  height: calc(100vh - 50px - 35px - 40px - 280px);
}
.refresh[data-v-04a770be] {
  padding-top: 5px;
  padding-bottom: 10px;
  text-align: right;
}
.refresh span[data-v-04a770be] {
  margin-right: 10px;
}
.refresh .btn-tip[data-v-04a770be] {
  margin-left: 20px;
  width: 40px;
  height: 40px;
}
.el-page-header[data-v-04a770be] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hed-content[data-v-04a770be] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-head[data-v-04a770be] {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.detail-head .left[data-v-04a770be] {
  width: 40%;
  color: #C0C4CC;
}
.detail-head .right[data-v-04a770be] {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #555;
}
.lp-panel-title[data-v-04a770be] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #373d41;
  height: 32px;
}
.lp-grid[data-v-04a770be] {
  border-bottom: 1px solid #ecedee;
  border-right: 1px solid #ecedee;
}
.next-row[data-v-04a770be] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lp-grid .next-row.next-row-wrap[data-v-04a770be] {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.lp-grid-row[data-v-04a770be] {
  margin: 0 !important;
  padding: 0 !important;
}
.next-tabs[data-v-04a770be],
.next-tabs *[data-v-04a770be],
.next-tabs[data-v-04a770be] :after,
.next-tabs[data-v-04a770be] :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.lp-grid-row .next-col[data-v-04a770be] {
  border-top: 1px solid #ecedee;
  overflow: hidden;
}
.next-col-8[data-v-04a770be] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  width: 33.33333%;
  max-width: 33.33333%;
}
.next-col-24[data-v-04a770be] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.deviceInfo_EDk7y .lp-grid-col-left[data-v-04a770be] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-grid-col-left[data-v-04a770be] {
  background-color: #fbfbfc;
  border-right: 1px solid #ecedee;
  border-left: 1px solid #ecedee;
  color: #73777a;
  padding: 14px 12px;
  position: relative;
  line-height: 20px;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-grid-col-right[data-v-04a770be] {
  color: #373d41;
  position: relative;
  padding: 14px 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 20px;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item[data-v-04a770be] {
  margin-bottom: 10px;
}
.clearfix[data-v-04a770be]:before,
.clearfix[data-v-04a770be]:after {
  display: table;
  content: "";
}
.clearfix[data-v-04a770be]:after {
  clear: both;
}
.length0_9_2h1PN[data-v-04a770be] {
  max-width: calc(100% - 24px);
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 28px;
  color: #333;
}
.icon-shopping[data-v-04a770be] {
  font-size: 18px;
  vertical-align: top;
  margin-top: 10px;
  color: #ccc;
  margin-left: 4px;
}
.icon-shopping[data-v-04a770be]:hover {
  color: #606266;
}
.modify-button[data-v-04a770be] {
  margin-left: 24px;
  color: #20a0ff;
  cursor: pointer;
}

/* .el-col-24[data-v-04a770be] {
width: auto;
margin-right: 24px;
padding-top: 3px;
font-size: 12px;
} */
.el-col-24[data-v-04a770be] {
  width: auto !important;
  margin-right: 24px;
  padding-top: 3px;
  font-size: 12px;
}
.el-table th > .cell[data-v-04a770be] {
  font-size: 10px !important;
}
.el-table td[data-v-04a770be], .el-table th[data-v-04a770be] {
  font-size: 11px !important;
}
.el-table td[data-v-04a770be], .el-table th.is-leaf[data-v-04a770be] {
  border-bottom: 1px solid #EBEEF5;
  font-size: 49px !important;
}

/* 表格头和表格体单元格样式 */
/* 样式添加到你的 CSS 文件中，确保在打印时生效 */
@media print {
  /* 为整个表格添加边框 */
.el-table[data-v-04a770be] {
    border: 1px solid #000 !important;
    border-collapse: collapse !important;
    /* 确保边框合并 */
    width: 100% !important;
    /* 如果需要的话，设置表格宽度为100% */
    font-size: 10px !important;
}
.el-table__header-wrapper[data-v-04a770be] {
    width: 720px;
}
.el-table td[data-v-04a770be], .el-table th.is-leaf[data-v-04a770be] {
    font-size: 11px !important;
}
.el-table td[data-v-04a770be], .el-table th[data-v-04a770be] {
    font-size: 11px !important;
}

  /* 合计行整体样式修改开始 */
.el-table[data-v-04a770be] .el-table__footer-wrapper tbody td {
    border-bottom: 3px solid black !important;
}
.el-table el-table--fit el-table--border el-table--enable-row-hover el-table--enable-row-transition el-table--small[data-v-04a770be] {
    width: 722px !important;
    border: 0px !important;
}
.el-table--border[data-v-04a770be] {
    /* border-right: none; */
    /* border-bottom: none; */
    border: none !important;
}
.el-table__footer[data-v-04a770be] {
    border-bottom: 1px solid red !important;
}
.el-table th > .cell[data-v-04a770be] {
    font-size: 10px !important;
}
}
.modify-input.el-input {
  margin-left: 4px;
  margin-right: 24px;
  width: 100px;
}
.modify-input.el-input input.el-input__inner {
  height: 28px;
}
.app-breadcrumb.el-breadcrumb[data-v-b50ef614] {
  display: inline-block;
  font-size: 14px;
  line-height: 35px;
  margin-left: 8px;
}
.app-breadcrumb.el-breadcrumb .no-redirect[data-v-b50ef614] {
  color: #97a8be;
  cursor: text;
}
.navbar[data-v-d16d6306] {
  height: 35px;
  overflow: hidden;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
          box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  border-left: 1px solid #eee;
}
.navbar .hamburger-container[data-v-d16d6306] {
  line-height: 46px;
  height: 100%;
  float: left;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.navbar .hamburger-container[data-v-d16d6306]:hover {
  background: rgba(0, 0, 0, 0.025);
}
.navbar .breadcrumb-container[data-v-d16d6306] {
  float: left;
}

.sub-el-icon[data-v-31ea41b3] {
  color: currentColor;
  width: 1em;
  height: 1em;
}



.app-main[data-v-078753dd] {
  /*50 = navbar  */
  min-height: calc(100vh - 50px - 35px);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.fixed-header+.app-main[data-v-078753dd] {
  padding-top: 35px;
}

.el-popup-parent--hidden .fixed-header {
  padding-right: 15px;
}
.sidebarLogoFade-enter-active[data-v-6494804b] {
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
}
.sidebarLogoFade-enter[data-v-6494804b],
.sidebarLogoFade-leave-to[data-v-6494804b] {
  opacity: 0;
}
.sidebar-logo-container[data-v-6494804b] {
  position: relative;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #2b2f3a;
  text-align: center;
  overflow: hidden;
}
.sidebar-logo-container .sidebar-logo-link[data-v-6494804b] {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-logo-container .sidebar-logo-link .sidebar-logo[data-v-6494804b] {
  width: 32px;
  height: 32px;
  margin: 0 6px;
}
.sidebar-logo-container .sidebar-logo-link .sidebar-title[data-v-6494804b] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  margin: 0;
  color: #fff;
  font-weight: 600;
  line-height: 50px;
  font-size: 14px;
  font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
  vertical-align: middle;
}
.sidebar-logo-container.collapse .sidebar-logo[data-v-6494804b] {
  margin: 0px;
}
.mobile .sidebarLogoFade-enter-active[data-v-6494804b] {
  -webkit-transition: none;
  transition: none;
}
.mobile .sidebar-logo-container .sidebar-logo[data-v-6494804b] {
  margin: 0 !important;
}
.mobile .sidebar-logo-container .sidebar-title[data-v-6494804b] {
  display: none;
}
.top-menu-bar .el-menu--horizontal.el-menu[data-v-02c84338] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-menu-bar .el-menu--horizontal > .el-menu-item[data-v-02c84338] {
  height: 50px !important;
  line-height: 50px !important;
}
.top-menu-bar .el-menu--horizontal > .el-submenu .el-submenu__title[data-v-02c84338] {
  height: 50px !important;
  line-height: 50px !important;
}
.top-menu-bar .svg-icon[data-v-02c84338] {
  margin-right: 5px;
}
.top-menu-bar .el-scrollbar__bar.is-horizontal[data-v-02c84338] {
  display: none;
}
.top-menu-bar[data-v-02c84338]  .el-scrollbar__thumb {
  background-color: rgba(255, 255, 255, 0.5);
}
.top-menu-bar[data-v-02c84338]  .el-scrollbar__thumb:hover {
  background-color: #409eff;
}
.mobile .top-menu-bar[data-v-02c84338]  .el-menu--horizontal > .el-menu-item {
  padding: 0 10px;
  display: inline-block;
}
.mobile .top-menu-bar[data-v-02c84338]  .el-menu--horizontal > .el-menu-item .sub-el-icon {
  display: none;
}
.mobile .top-menu-bar[data-v-02c84338]  .el-menu--horizontal > .el-menu-item .svg-icon {
  display: none;
}
.mobile .top-menu-bar[data-v-02c84338]  .el-scrollbar__thumb {
  display: none;
}
.mobile .top-menu-bar[data-v-02c84338]  .el-scrollbar__thumb:hover {
  display: none;
}

.hamburger[data-v-4e6f274c] {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
.hamburger.is-active[data-v-4e6f274c] {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

[data-v-13877386]:export {
  menuText: #bfcbd9;
  menuActiveText: #409EFF;
  subMenuActiveText: #f4f4f5;
  menuBg: #304156;
  menuHover: #263445;
  subMenuBg: #1f2d3d;
  subMenuHover: #001528;
  sideBarWidth: 120px;
  subBarWidth: 120px;
}
.app-wrapper[data-v-13877386] {
  position: relative;
  height: 100%;
  width: 100%;
}
.app-wrapper[data-v-13877386]:after {
  content: "";
  display: table;
  clear: both;
}
.app-wrapper.mobile.openSidebar[data-v-13877386] {
  position: fixed;
  top: 0;
}
.drawer-bg[data-v-13877386] {
  background: #000;
  opacity: 0.3;
  width: 100%;
  top: 0;
  height: 100%;
  position: absolute;
  z-index: 999;
}
.fixed-header[data-v-13877386] {
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 9;
  width: 100%;
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
}
.sidebarLeft .fixed-header[data-v-13877386] {
  width: calc(100% - 120px);
}
.subSidebarLeft .fixed-header[data-v-13877386] {
  width: calc(100% - 120px - 120px);
}
.hideSidebar .fixed-header[data-v-13877386] {
  width: 100%;
}
.hideSidebar .sidebarLeft .fixed-header[data-v-13877386] {
  width: calc(100% - 54px);
}
.mobile .fixed-header[data-v-13877386] {
  width: 100%;
}
.mobile .sidebarLeft .fixed-header[data-v-13877386] {
  width: 100%;
}
.right-menu[data-v-13877386] {
  float: right;
  height: 100%;
  line-height: 50px;
}
.right-menu[data-v-13877386]:focus {
  outline: none;
}
.right-menu .right-menu-item[data-v-13877386] {
  display: inline-block;
  padding: 0 8px;
  height: 100%;
  font-size: 18px;
  color: #5a5e66;
  vertical-align: text-bottom;
}
.right-menu .right-menu-item.hover-effect[data-v-13877386] {
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.right-menu .right-menu-item.hover-effect[data-v-13877386]:hover {
  background: rgba(0, 0, 0, 0.025);
}
.right-menu .avatar-container[data-v-13877386] {
  margin-left: 15px;
  margin-right: 30px;
  height: 50px;
}
.right-menu .avatar-container .avatar-wrapper[data-v-13877386] {
  margin-top: 10px;
  position: relative;
}
.right-menu .avatar-container .avatar-wrapper .user-avatar[data-v-13877386] {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 10px;
}
.right-menu .avatar-container .avatar-wrapper .el-icon-caret-bottom[data-v-13877386] {
  cursor: pointer;
  position: absolute;
  right: -20px;
  top: 10px;
  font-size: 12px;
}

.svg-icon[data-v-c8a70580] {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.svg-external-icon[data-v-c8a70580] {
  background-color: currentColor;
  -webkit-mask-size: cover!important;
          mask-size: cover!important;
  display: inline-block;
}

