.ant-skeleton {
  background-color: #fff;
}
.ant-modal .ant-modal-close {
  color: #fff;
}
.ant-modal .ant-modal-close .ant-modal-close-x {
  height: 46px;
  width: 46px;
  line-height: 46px;
}
.ant-modal .ant-modal-header {
  background: #28549e !important;
  padding: 12px 24px;
}
.ant-modal .ant-modal-header .ant-modal-title {
  color: #fff;
}
.ant-modal .ant-modal-body {
  min-height: 163px;
}
.ant-modal .ant-modal-content .ant-modal-close-icon {
  color: #fff !important;
}
.ant-modal .ant-modal-footer {
  background: #F0F2F5;
  padding: 8px 16px;
}
.ant-modal .ant-modal-footer .ant-btn {
  margin-left: 8px;
}
.ant-select {
  min-width: 100px;
}
.ant-select-dropdown-menu-item-group-list {
  padding-left: 20px;
}
.ant-menu .ant-menu-item {
  width: 100% !important;
}
.ant-card .ant-card-head .ant-card-head-title {
  font-size: 14px;
  font-weight: bold;
  padding: 12px 0;
}
.ant-card .ant-card-head .ant-card-extra {
  padding: 0;
}
.ant-card .ant-card-head .ant-card-extra .table-header-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 47px;
  line-height: 47px;
}
.ant-card .ant-card-head .ant-card-extra .table-header-button [table-header-child] {
  margin-left: 8px;
}
.ant-card .ant-card-head .card-title {
  margin-right: 16px;
}
.ant-card .ant-card-body {
  padding: 12px;
  line-height: 1;
}
.ant-card .ant-card-body .ant-table-wrapper {
  width: 100%;
}
.ant-tree .ant-tree-node-content-wrapper .tree-item-action-wrapper {
  display: none;
  float: right;
}
.ant-tree .ant-tree-node-content-wrapper .tree-item-action-dot {
  padding: 0 8px;
}
.ant-tree .ant-tree-node-content-wrapper .tree-item-action-dot:hover {
  background-color: var(--primaryColor);
  color: #fff;
  font-weight: bold;
}
.ant-tree .ant-tree-node-content-wrapper:hover .tree-item-action-wrapper {
  display: block;
}
.ant-tabs.ant-tabs-card .ant-tabs-nav-container .ant-tabs-nav-wrap {
  padding-left: 8px;
}
.ant-tabs.ant-tabs-card .ant-tabs-nav-container .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab {
  border-radius: 0;
}
.ant-tabs.ant-tabs-card .ant-tabs-nav-container .ant-tabs-nav-wrap .ant-tabs-nav .ant-tabs-tab-active {
  border-top-color: var(--primaryColor);
}
.ant-tabs.ant-tabs-card .ant-tabs-content {
  overflow: auto;
}
.ant-select-dropdown .ant-select-dropdown-content .ant-select-dropdown-menu.ant-select-dropdown-menu-vertical {
  max-height: 400px;
}
.ant-layout-sider,
.ant-layout.ant-layout-has-sider {
  min-height: 279px;
  background: transparent;
}
.ant-layout-sider .sider-tabs,
.ant-layout.ant-layout-has-sider .sider-tabs {
  background-color: #fff;
}
.ant-drawer .ant-drawer-header {
  padding: 13px 24px;
  background: #28549e;
  color: #fff;
  border-radius: 0;
}
.ant-drawer .ant-drawer-header .ant-drawer-title {
  color: #fff;
}
.ant-drawer .ant-drawer-header .ant-drawer-close {
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: #fff;
}
.ant-drawer .ant-drawer-body {
  height: calc(100% - 65px);
  overflow: auto;
}
.jtl-chart-radio-button .ant-radio-button-wrapper:hover {
  color: #43a4fd !important;
}
.jtl-chart-radio-button .ant-radio-button-wrapper-checked,
.jtl-chart-radio-button .ant-radio-button-wrapper-checked:hover {
  color: #fff !important;
  background: #43a4fd !important;
  border-color: #43a4fd !important;
}
.jtl-chart-radio-button .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
  background-color: #43a4fd !important;
}
.jtl-chart-radio-button .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  box-shadow: -1px 0 0 0 #43a4fd !important;
  -webkit-box-shadow: -1px 0 0 0 #43a4fd !important;
}
.drag-row-table .ant-table .ant-table-row {
  cursor: move;
}
.ant-layout {
  background: #F0F2F5 !important;
}
.ant-descriptions-item-label {
  width: 200px;
}

@charset "UTF-8";
/* Mixins */
/* Global transition */
.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity 0.28s;
  transition: opacity 0.28s;
}

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

.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-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;
}

/* 可以设置不同的进入和离开动画 */
/* 设置持续时间和动画函数 */
.slide-fade-enter-active {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slide-fade-leave-active {
  -webkit-transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter, .slide-fade-leave-to {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  opacity: 0;
}

::-webkit-scrollbar {
  z-index: 11;
  width: 6px;
}
::-webkit-scrollbar:horizontal {
  height: 6px;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  width: 6px;
  background: rgba(144, 147, 153, 0.5);
}
::-webkit-scrollbar-track-piece {
  width: 6px;
}

.topo-panel {
  height: 100%;
  width: 100%;
}

/* Global scss */
body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  font-family: Microsoft YaHei, PingFang SC, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Hiragino Sans GB, Arial, sans-serif;
}

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

a,
a:focus,
a:hover {
  color: inherit;
  outline: none;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

div:focus {
  outline: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.hide {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

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

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

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

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.text-ellipsis, .parking-card-wrapper .parking-card-item .parking-card-item-number {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
}

.h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.margin-0 {
  margin: 0;
}

.margin-16 {
  margin: 16px;
}

.tab-margin-16 {
  margin: 0 16px 16px 16px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-right-20 {
  margin-right: 20px;
}

.text-bold {
  font-weight: bold;
}

/* Customer component scss */
/* page component */
.page-header .page-breadcrumb {
  padding: 10px 20px;
}
.page-header .header-title {
  font-size: 16px;
  font-weight: bold;
  color: #373d41;
  vertical-align: bottom;
  line-height: 40px;
  padding: 8px 0 4px 24px;
  background: #fff;
  margin-bottom: 16px;
}
.page-header .header-title a {
  vertical-align: middle;
}
.page-header .header-title i.anticon {
  font-size: 22px;
}
.page-header .header-sub-title {
  font-weight: bold;
  font-size: 20px;
  margin-left: 24px;
  color: #373d41;
}

.page-table-search {
  margin-bottom: 16px;
  padding: 16px 24px;
  background-color: #fff;
}
.page-table-search__header {
  padding: 0 12px 16px 0;
  border-bottom: solid 1px #edeef0;
  margin-bottom: 8px;
}
.page-table-search__input {
  max-width: 200px;
  vertical-align: top;
}
.page-table-search__add-btn {
  float: right;
  margin-top: 8px;
}

.page-table-search-small {
  padding: 8px 0;
}

.page-body-bg-white {
  background-color: #fff;
}

.page-body-margin {
  margin: 4px 24px 0 24px;
}

.page-body-margin-left-right {
  margin: 0 24px;
}

.page-body-margin-left-16 {
  margin-left: 16px;
}

.page-top-menu {
  padding: 0 0 16px 16px;
}

.form-edit-component .ant-modal {
  width: 40vw !important;
  min-width: 600px;
  max-width: 1000px;
}

.form-edit-component-small .ant-modal {
  width: 30vw !important;
  max-width: 800px;
}

.form-edit-component-large .ant-modal {
  width: 70vw !important;
  max-width: 1200px;
}

.form-edit-component-max .ant-modal {
  width: 80vw !important;
  max-width: 1920px;
}

/* jtl common */
.jtl-link,
.jtl-link:hover,
.ant-table td a,
.ant-table td a:hover {
  color: var(--primaryColor);
  cursor: pointer;
}

.jtl-link-disabled,
.jtl-link-disabled:hover,
.ant-table td a[disabled],
.ant-table td a[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.ant-table td {
  white-space: pre-wrap;
}

.jtl-update-link {
  color: #faad14;
}

.jtl-del-link {
  color: #e07460 !important;
}

.jtl-edit-link {
  color: #e59940 !important;
}

/* status-circle */
.status-circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #888;
}

.active-circle {
  background: rgb(0, 112, 204);
}

.online-circle,
.circle-true,
.true-circle {
  background: rgb(30, 142, 62);
}

.offline-circle,
.circle-false,
.false-circle {
  background: #888;
}

.jtl-tag-wrapper {
  display: inline-block;
  padding: 4px;
}

.table-query-card {
  margin-bottom: 16px;
}
.table-query-card .table-query-item {
  display: inline-block;
  margin-right: 4px;
  vertical-align: top;
}
.table-query-card .table-query-item__search-label {
  display: inline-block;
  width: 100px;
  text-align: right;
  margin-right: 4px;
}
.table-query-card .table-query-item__search-control {
  vertical-align: middle;
}

.table-query-card .ant-row {
  margin-bottom: 8px;
}
.table-query-card .ant-row span.query-lable {
  display: inline-block;
  width: 100px;
}
.table-query-card .ant-row .query-control {
  width: calc(100% - 104px) !important;
}

.hight-light-word {
  color: #dc4f59;
}

.resize-table-th {
  position: relative;
}

.table-draggable-handle {
  /* width: 10px !important; */
  height: 100% !important;
  cursor: col-resize;
  -ms-touch-action: none;
      touch-action: none;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: -5px;
}

.draggable-wrapper .ant-table-row {
  cursor: move;
}
.draggable-wrapper .ant-table-row * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.action-update {
  color: #faad14 !important;
}

.action-delete {
  color: #dc4f59 !important;
}

.table-custom-expand-wrapper {
  position: absolute;
  width: 14px;
}
.table-custom-expand-wrapper .table-custom-expand-icon {
  cursor: pointer;
}

.table-custom-expand-label {
  margin-left: 20px;
  display: inline-block;
  white-space: nowrap;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ant-table-row-level-1 {
  background-color: #fffbe6;
}
.ant-table-row-level-1 .table-custom-expand-wrapper {
  margin-left: 40px;
}
.ant-table-row-level-1 .table-custom-expand-label {
  margin-left: 60px;
}

.ant-table-row-level-2 {
  background-color: #f6ffe6;
}
.ant-table-row-level-2 .table-custom-expand-wrapper {
  margin-left: 60px;
}
.ant-table-row-level-2 .table-custom-expand-label {
  margin-left: 80px;
  max-width: 200px;
}

.ant-table-row-level-3 {
  background-color: #eaffe6;
}
.ant-table-row-level-3 .table-custom-expand-wrapper {
  margin-left: 80px;
}
.ant-table-row-level-3 .table-custom-expand-label {
  margin-left: 100px;
  max-width: 180px;
}

.ant-table-row-level-4 {
  background-color: #e6ffef;
}
.ant-table-row-level-4 .table-custom-expand-wrapper {
  margin-left: 100px;
}
.ant-table-row-level-4 .table-custom-expand-label {
  margin-left: 120px;
  max-width: 160px;
}

.ant-table-row-level-5 {
  background-color: #e6fffb;
}
.ant-table-row-level-5 .table-custom-expand-wrapper {
  margin-left: 120px;
}
.ant-table-row-level-5 .table-custom-expand-label {
  margin-left: 140px;
  max-width: 140px;
}

.ant-table-row-level-6 {
  background-color: #e6f6ff;
}
.ant-table-row-level-6 .table-custom-expand-wrapper {
  margin-left: 140px;
}
.ant-table-row-level-6 .table-custom-expand-label {
  margin-left: 160px;
  max-width: 120px;
}

.ant-table-row-level-7 {
  background-color: #e6f6ff;
}
.ant-table-row-level-7 .table-custom-expand-wrapper {
  margin-left: 160px;
}
.ant-table-row-level-7 .table-custom-expand-label {
  margin-left: 180px;
  max-width: 100px;
}

.ant-table-row-level-8 {
  background-color: #e6f6ff;
}
.ant-table-row-level-8 .table-custom-expand-wrapper {
  margin-left: 180px;
}
.ant-table-row-level-8 .table-custom-expand-label {
  margin-left: 200px;
  max-width: 80px;
}

.sider-tabs .ant-tabs-content {
  padding: 0 12px;
}

.transform-dialog .transform-header {
  margin-bottom: 16px;
}
.transform-dialog .transform-column {
  border: solid 1px #d9d9d9;
  height: 60vh;
  overflow-y: auto;
}
.transform-dialog .transform-column-middle {
  height: 60vh;
}
.transform-dialog .transform-column-no-border {
  border: none;
}
.transform-dialog .transform-name {
  display: inline-block;
  max-width: calc(100% - 90px);
  vertical-align: top;
}
.transform-dialog .transform-name-right {
  max-width: calc(100% - 80px);
}
.transform-dialog .right-close-icon {
  float: right;
  height: 32px;
  line-height: 32px;
  padding: 0 4px;
}
.transform-dialog .right-close-icon:hover {
  float: right;
  color: var(--primaryColor);
}
.transform-dialog .ul-list {
  padding: 8px 0 8px 16px;
  max-height: 60vh;
  height: 100%;
  overflow-y: auto;
}
.transform-dialog .ul-list li {
  height: 32px;
  line-height: 32px;
  cursor: pointer;
}
.transform-dialog .ul-list li .ant-checkbox-wrapper {
  width: 100%;
}
.transform-dialog .ul-list li:hover {
  background-color: #fffbf0;
}
.transform-dialog .ul-list .li-no-hover:hover {
  background-color: transparent;
}
.transform-dialog .ul-list-no-padding {
  padding: 0;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.ant-descriptions-title .description-title-button {
  margin-left: 16px;
  vertical-align: middle;
}

.width100 {
  width: 100% !important;
}

.primary-color {
  color: var(--primaryColor) !important;
}

.secondary-color {
  color: #575757;
}

.text-desc {
  font-size: 12px;
  color: #575757;
}

.select-load-more {
  display: inline-block;
  padding: 4px 8px;
  cursor: pointer;
  margin-bottom: 4px;
}

.clickable {
  cursor: pointer;
}

.custom-loading-wrapper {
  position: relative;
}

.height100 {
  height: 100%;
}

.dark-card {
  background-color: #252B36;
  background: #252B36;
  border-radius: 0;
}
.dark-card .ant-card-head {
  background-color: #252B36;
  color: #fff;
}
.dark-card .ant-card-body {
  background-color: #191F28;
}
.dark-card .ant-menu-dark,
.dark-card .ant-menu-dark .ant-menu-sub {
  background: transparent;
}
.dark-card .ant-menu-dark .ant-menu-item a,
.dark-card .ant-menu-dark .ant-menu-sub .ant-menu-item a {
  color: #6c737b;
}
.dark-card .ant-menu-dark .ant-menu-item-selected,
.dark-card .ant-menu-dark .ant-menu-sub .ant-menu-item-selected {
  background-color: #3E495C;
}
.dark-card .ant-menu-dark .ant-menu-item-selected a,
.dark-card .ant-menu-dark .ant-menu-sub .ant-menu-item-selected a {
  color: #feffff;
}

.jtl-dark-query-component .table-query-item__search-label,
.jtl-dark-query-component .ant-calendar-range-picker-separator {
  color: #d9dcdf;
}
.jtl-dark-query-component .ant-select-selection {
  background-color: transparent;
}
.jtl-dark-query-component .ant-select-selection .ant-select-arrow {
  color: #797d80;
}
.jtl-dark-query-component .ant-input {
  border-color: rgba(217, 220, 223, 0.5);
  color: #d9dcdf;
  background-color: #191F28;
  outline: none;
}
.jtl-dark-query-component .ant-input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.jtl-dark-query-component .ant-btn-icon-only {
  color: rgb(217, 220, 223);
}
.jtl-dark-query-component input::-webkit-input-placeholder,
.jtl-dark-query-component .ant-input-search-icon,
.jtl-dark-query-component .ant-input-search-icon:hover {
  color: rgba(217, 220, 223, 0.5);
}
.jtl-dark-query-component .input::-webkit-input-placeholder {
  font-size: 12px;
}
.jtl-dark-query-component .ant-btn-link[disabled] {
  color: rgba(217, 220, 223, 0.3);
}
.jtl-dark-query-component .ant-select .ant-select-selection-selected-value,
.jtl-dark-query-component .ant-select .ant-select-search__field {
  color: #d9dcdf;
}
.jtl-dark-query-component .ant-select .ant-input {
  border-color: #fff;
  color: #d9dcdf;
  background-color: #191F28;
}
.jtl-dark-query-component .ant-select .ant-select .ant-select-selection-selected-value,
.jtl-dark-query-component .ant-select .ant-select .ant-select-search__field {
  color: #d9dcdf;
}
.jtl-dark-query-component .ant-select .ant-select .ant-select-selection__clear {
  color: #d9dcdf;
}
.jtl-dark-query-component .ant-radio-wrapper {
  color: #ffffff;
}

.ant-select-dropdown-dark {
  background-color: #191F28;
  color: #d9dcdf;
}
.ant-select-dropdown-dark .ant-empty-description {
  color: #d9dcdf;
}
.ant-select-dropdown-dark .ant-select-dropdown-search {
  background: transparent;
}
.ant-select-dropdown-dark .ant-select-search__field {
  border-color: #fff;
  background-color: #191F28;
}
.ant-select-dropdown-dark .ant-select-tree,
.ant-select-dropdown-dark .ant-select-tree-title,
.ant-select-dropdown-dark .ant-select-dropdown-menu-item {
  color: #d9dcdf;
}
.ant-select-dropdown-dark .ant-select-tree li .ant-select-tree-node-content-wrapper:hover,
.ant-select-dropdown-dark .ant-select-dropdown-menu-item-active,
.ant-select-dropdown-dark .ant-select-dropdown-menu-item-selected {
  background-color: #fff;
  color: #333;
}
.ant-select-dropdown-dark .ant-select-tree li .ant-select-tree-node-content-wrapper:hover .ant-select-tree-title,
.ant-select-dropdown-dark .ant-select-dropdown-menu-item-active .ant-select-tree-title,
.ant-select-dropdown-dark .ant-select-dropdown-menu-item-selected .ant-select-tree-title {
  color: #333;
}
.ant-select-dropdown-dark .ant-select-tree-node-selected .ant-select-tree-title {
  color: #333;
}

.checkbox-dark {
  color: #d9dcdf;
}

.jtl-button-dark .ant-btn {
  border-radius: 2px;
  background-color: #455774;
  color: #fff;
  border: solid 1px #9a9ea2;
}

.jtl-button-dark2 .ant-btn {
  border-radius: 4px;
  background-color: rgba(29, 157, 206, 0.2);
  color: #D3EBFC;
  border: solid 1px #1F99C7;
}

.table-dark {
  background-color: #191F28;
}
.table-dark .ant-table-placeholder {
  background-color: #191F28;
}
.table-dark .ant-table-thead > tr > th,
.table-dark .ant-empty-description,
.table-dark .ant-pagination,
.table-dark .ant-pagination-item a,
.table-dark .ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link,
.table-dark .ant-pagination.mini .ant-pagination-next .ant-pagination-item-link {
  color: #d9dcdf;
}
.table-dark .ant-table-tbody > tr > td,
.table-dark .ant-table-thead > tr > th {
  border-bottom: 1px solid #222732;
}
.table-dark .ant-table {
  color: #949aa1;
  border: none;
}
.table-dark .ant-table-thead {
  color: #d9dcdf;
  background: #161c25 !important;
  background-color: #161c25 !important;
}
.table-dark .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body,
.table-dark .ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.table-dark .ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.table-dark .ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.table-dark .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
  background: #161c25;
  color: #fff;
}
.table-dark .ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) {
  border: 1px solid #3181c5;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(39, 120, 189, 0.32);
          box-shadow: 0px 0px 21px 0px rgba(39, 120, 189, 0.32);
  border-radius: 8px;
}
.table-dark .ant-pagination-item-active {
  background: #288ee5;
  color: #fafafa;
}
.table-dark .ant-pagination.mini .ant-pagination-item {
  margin-left: 4px;
  color: #949aa1;
}
.table-dark .ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) {
  border: 1px solid #3a4351;
}
.table-dark .ant-table-row-level-1 {
  background-color: transparent;
}

.ant-table .ant-table-thead {
  background-color: #F8F8F8;
}

.parking-table .ant-table {
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.parking-table .ant-table .ant-table-body {
  margin: 0;
}

.parking-card-wrapper .sub-system-header-card {
  background-color: #fff;
  color: #000;
  margin-bottom: 16px;
}
.parking-card-wrapper .parking-card-item {
  min-width: 200px;
  padding: 24px 0;
}
.parking-card-wrapper .parking-card-item .parking-card-item-icon {
  height: 38px;
  width: 38px;
  margin-right: 20px;
  vertical-align: baseline;
}
.parking-card-wrapper .parking-card-item .parking-card-item-text-wrapper {
  display: inline-block;
}
.parking-card-wrapper .parking-card-item .parking-card-item-title {
  font-weight: bold;
  color: #585E65;
}
.parking-card-wrapper .parking-card-item .parking-card-item-number {
  font-size: 24px;
  max-width: 190px;
  display: inline-block;
  vertical-align: bottom;
  color: #363B40;
  font-weight: bold;
}
.parking-card-wrapper .parking-card-item .parking-card-item-unit {
  font-size: 12px;
  margin-left: 8px;
  margin-bottom: 6px;
  display: inline-block;
  color: #363B40;
}

body {
  --primaryColor: #488DEE;
}
/* Mixins */
.jtl-button-component {
  display: inline-block;
  overflow: hidden;
}
.jtl-button-component .el-loading-spinner {
  margin-top: -15px;
}
.jtl-button-component .el-loading-spinner .circular {
  height: 30px;
  width: 30px;
}
/* Mixins */
.jtl-card-component {
  border-radius: 2px;
  width: 100%;
  background-color: #fff;
}
.jtl-card-component .card-header {
  padding: 16px 16px 8px 16px;
  line-height: 24px;
}
.jtl-card-component .card-header-title {
  font-weight: bold;
}
/* Mixins */
.jtl-image-component[data-v-52ca0742] {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
}
.jtl-image-component img[data-v-52ca0742] {
  max-height: 100%;
  max-width: 100%;
}
.jtl-image-component img.load-error[data-v-52ca0742] {
  width: 50%;
  max-width: 262px;
}
/* Mixins */
.attribute-data-type-value-component .attribute-data__value-wrapper, .attribute-data-type-value-component .attribute-data__type-wrapper {
  width: 100%;
}
/* Mixins */
.data-param-form-component .data-param-wrap {
  margin-left: 8px;
  margin-bottom: 8px;
}
.data-param-form-component .data-param-wrap .data-param-row .data-param-col-name {
  border: 1px solid #e1e2e5;
  background: #e3f2fd;
  height: 40px;
  line-height: 40px;
}
/* Mixins */
.things-model-type-component {
  margin-bottom: -24px;
}
.things-model-type-component .form-item__data-range .ant-input {
  display: inline-block;
  width: calc(50% - 8.8px);
}
.things-model-type-component .form-item__data-bool-true .ant-input {
  width: calc(100% - 42px);
  margin-left: 3px;
}
.things-model-type-component .form-item__data-bool-false .ant-input {
  width: calc(100% - 42px);
}
.things-model-type-component .ant-form-item {
  width: 100%;
}
.things-model-type-component .enum-remove-link {
  position: absolute;
  width: 36px;
  margin-left: 8px;
}
/* Mixins */
.select-device-attribute-table-component .ant-table-body table tr td {
  height: 76px;
  padding: 2px 16px;
}
.select-device-attribute-table-component .ant-table-body table tr td .ant-form-item {
  width: 100%;
  margin-bottom: 0;
  height: 40px;
}
.select-device-attribute-table-component .ant-table-body table tr td .ant-form-item .ant-form-explain {
  margin-top: -6px;
}
/* Mixins */
.jtl-form-table-component .ant-table-body {
  margin: 0 0 !important;
}
/* Mixins */
.select-user-component .select-user-wrapper {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  line-height: 30px;
  padding: 0 3px;
}
.select-user-component .select-user-wrapper .select-user-tag {
  color: rgba(0, 0, 0, 0.65);
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  height: 24px;
  margin-top: 3px;
  line-height: 22px;
  padding: 0 5px;
  font-size: 14px;
  margin-right: 3px;
  display: inline-block;
}
.select-user-component .select-user-wrapper .select-user-tag .select-user-icon {
  padding-left: 3px;
  font-size: 10px;
}
.select-user-component .no-user-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.25);
}
/* Mixins */
.linkage-device-component .linkage-device-wrapper {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  line-height: 30px;
}
/* Mixins */
.jtl-form-tablev2-component .table-row-delete {
  text-decoration: line-through;
}
/* Mixins */
.resource-url-form-component .resource-http-method {
  display: inline-block;
  width: 150px;
}
.resource-url-form-component .resource-url {
  display: inline-block;
  width: calc(100% - 195px);
}
/* Mixins */
.array-string-form-component .string-input {
  display: inline-block;
  width: calc(100% - 45px);
}
/* Mixins */
.jtl-json-editor-component .pure-form select {
  height: 28px !important;
}
.jtl-json-editor-component .json-operate-btn {
  position: absolute;
  top: 0px;
  right: -50px;
}
/* Mixins */
.radio-list {
  height: 38px;
}
.linkage-device-select-dialog .link-device {
  padding: 8px;
  background-color: #eee;
  margin: 24px 0;
}
.linkage-device-select-dialog .transform-column, .linkage-device-select-dialog .transform-column-middle {
  height: 45vh !important;
}
.linkage-device-select-dialog .left-transform-column .ul-list {
  max-height: calc(45vh - 48px) !important;
  height: calc(100% - 48px) !important;
}
.linkage-device-select-dialog .tip-text {
  display: inline-block;
  color: #575757;
  margin-top: 8px;
}
.edge-add-device-component .transform-column, .edge-add-device-component .transform-column-middle {
  height: 45vh !important;
}
.edge-add-device-component .left-transform-column .ul-list {
  max-height: calc(45vh - 48px) !important;
  height: calc(100% - 48px) !important;
}
/* Mixins */
.jtl-form-table-component .ant-table-body {
  margin: 0 0 !important;
}
/* Mixins */
.driver-config-component .form-title[data-v-55790ea8] {
  font-weight: bold;
  font-size: 14px;
  padding-left: 10%;
  color: #575757;
}
.form-item-message[data-v-55790ea8] {
  position: absolute;
  padding-left: 10px;
  color: #575757;
  word-break: break-all;
  width: 50%;
}
.enum-remove-link[data-v-55790ea8] {
  position: absolute;
  width: 36px;
  margin-left: 8px;
}
/* Mixins */
.jtl-form-component .ant-form-item {
  display: inline-block;
}
.jtl-form-component .ant-form-item .ant-form-item-children {
  display: inline-block;
  width: 100%;
}
.jtl-form-component .ant-form-item .form-select-device__add {
  line-height: 30px;
}
.jtl-form-component .ant-form-item .hit-icon {
  color: #52c41a;
  position: absolute;
  right: -20px;
  top: 13px;
}
.jtl-form-component .ant-form-item .form-item-message {
  position: absolute;
  padding-left: 10px;
  color: #575757;
  word-break: break-all;
  width: 50%;
}
.jtl-form-component .ant-form-item .ant-form-item-label label {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: inline-block;
  line-height: 1;
}
.jtl-form-component .jtl-form-item__attribute-data-type-value .ant-form-item-control.has-error .attribute-data-type-value-component .ant-select-selection {
  border-color: #d9d9d9 !important;
}
.jtl-form-component .jtl-form-item__attribute-data-type-value .ant-form-item-control.has-error .attribute-data-type-value-component .ant-select-arrow {
  color: #d9d9d9 !important;
}
.jtl-form-component .jtl-form-item__attribute-data-type-value .ant-form-item-control.has-error .ant-form-explain {
  margin-left: 150px;
}
/* Mixins */
.jtl-tree-select-component {
  display: inline-block;
  vertical-align: top;
}
.jtl-tree-select-component .ant-select {
  min-width: 200px;
  width: 100%;
}
/* Mixins */
.jtl-select-space-component {
  display: inline-block;
  vertical-align: top;
}
.jtl-select-space-component .ant-select {
  min-width: 200px;
}
/* Mixins */
.jtl-select-group-component {
  width: 100%;
  display: inline-block;
  vertical-align: top;
}
.jtl-select-group-component .ant-select {
  width: 100%;
}
/* Mixins */
.jtl-select-device-component {
  display: inline-block;
  vertical-align: top;
}
.jtl-select-device-component .ant-select {
  min-width: 200px;
}
/* Mixins */
.jtl-select-people-component {
  display: inline-block;
  vertical-align: top;
}
.jtl-select-people-component .ant-select {
  min-width: 200px;
}
/* Mixins */
.jtl-select-property-component {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.jtl-select-property-component .ant-select {
  width: 100%;
}
/* Mixins */
.jtl-table-query-component .table-query-item {
  display: block;
  line-height: 32px;
  height: 40px;
}
.jtl-table-query-component .query-control {
  vertical-align: top;
}
.jtl-table-query-component .query-control .ant-select-selection--multiple .ant-select-selection__rendered {
  margin-right: 20px;
  overflow-x: auto;
  display: -webkit-box;
  display: -moz-box;
}
.jtl-table-query-component .query-control .ant-select-selection--multiple .ant-select-selection__rendered ul {
  margin-right: 20px;
  overflow-x: auto;
  display: -webkit-box;
  display: -moz-box;
}
/* Mixins */
.jtl-transform-component .transform-header {
  margin-bottom: 16px;
}
.jtl-transform-component .transform-header .transform-remove-all {
  position: absolute;
  bottom: -12px;
  right: 0;
}
.jtl-transform-component .transform-column {
  border: solid 1px #d9d9d9;
  padding: 16px 0 0 16px;
  height: 425px;
}
.jtl-transform-component .transform-column-middle {
  height: 425px;
}
.jtl-transform-component .transform-name {
  display: inline-block;
  max-width: calc(100% - 50px);
  vertical-align: top;
}
.jtl-transform-component .transform-name-search {
  width: calc(100% - 16px);
}
.jtl-transform-component .transform-name-right {
  max-width: calc(100% - 38px);
}
.jtl-transform-component .transform-tag {
  float: right;
  margin-top: 2px;
}
.jtl-transform-component .right-close-icon {
  float: right;
  height: 32px;
  line-height: 32px;
  padding: 0 4px;
  margin-right: 16px;
}
.jtl-transform-component .right-close-icon:hover {
  float: right;
  color: var(--primaryColor);
}
.jtl-transform-component .ul-list {
  margin-top: 12px;
  height: 363px;
  overflow-y: auto;
}
.jtl-transform-component .ul-list li {
  height: 32px;
  line-height: 32px;
  cursor: pointer;
}
.jtl-transform-component .ul-list li .ant-checkbox-wrapper {
  width: 100%;
}
.jtl-transform-component .ul-list li:hover {
  background-color: #fffbf0;
}
.jtl-transform-component .ul-list-right {
  margin-top: 0;
}
/* Mixins */
.jtl-tooltip-component .jtl-tooltip {
  width: 100%;
}
/* Mixins */
.jtl-tree-group-component {
  width: 100%;
}
.jtl-tree-group-component .tree-group-spin {
  min-height: 200px;
}
.jtl-tree-group-component .jtl-tree {
  width: 100%;
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-content-wrapper {
  width: calc(100% - 20px);
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-content-wrapper .ant-tree-title .jtl-tooltip-component {
  display: inline-block;
  width: calc(100% - 18px);
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-content-wrapper .tree-item-action-dot {
  margin-right: -4px;
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-selected {
  font-weight: bold;
}
/* Mixins */
.jtl-tree-group-component .jtl-tree {
  width: 100%;
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-content-wrapper {
  width: calc(100% - 20px);
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-content-wrapper .ant-tree-title .jtl-tooltip-component {
  display: inline-block;
  width: calc(100% - 18px);
}
.jtl-tree-group-component .jtl-tree .ant-tree-node-selected {
  font-weight: bold;
}
/* Mixins */
.jtl-tree-professional-component .jtl-tree {
  width: 100%;
}
.jtl-tree-professional-component .jtl-tree .ant-tree-node-content-wrapper {
  width: calc(100% - 20px);
}
.jtl-tree-professional-component .jtl-tree .ant-tree-node-content-wrapper .ant-tree-title .jtl-tooltip-component {
  display: inline-block;
  width: calc(100% - 18px);
}
.jtl-tree-professional-component .jtl-tree .ant-tree-node-selected {
  font-weight: bold;
}
/* Mixins */
.jtl-upload-component .jtl-upload-preview .ant-modal-close-x {
  height: 24px;
  width: 30px;
  line-height: 24px;
}
/* Mixins */
.jtl-entity-attribute-form .ant-form-item {
  margin-bottom: 0 !important;
}
/* Mixins */
/* Mixins */
.jtl-tree-component {
  display: inline-block;
  vertical-align: top;
}
.jtl-tree-component .ant-select {
  min-width: 200px;
}
/* Mixins */
.jtl-qrcode-component {
  background-color: #fff;
  max-width: 500px;
}
.jtl-qrcode-component .qrcode-wrapper {
  height: 100%;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.jtl-qrcode-component .qrcode-wrapper img {
  width: 100%;
}
.qrcode-modal .ant-modal {
  width: 475px !important;
}
.qrcode-modal .ant-modal-body {
  padding: 0;
}
.qrcode-modal-content {
  padding: 0 !important;
  height: 281px;
  width: 100%;
}
.qrcode-modal-content .qrcode-logo {
  height: 50px;
  color: #000;
  border-bottom: solid 1px #bbb;
}
.qrcode-modal-content .qrcode-logo img {
  height: 40px;
  margin-top: 5px;
}
.qrcode-modal-content .qrcode {
  width: 100%;
}
.qrcode-modal-content .factory-code {
  position: absolute;
  left: 8px;
  bottom: 0;
  font-size: 16px;
}
.qrcode-modal-content .factory-code .factory-code-label {
  color: #575757;
}
.qrcode-modal-download .ant-modal-content {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
/* Mixins */
.jtl-chart {
  min-height: 100px;
  min-width: 100px;
  width: 100%;
  height: 100%;
}
/* Mixins */
.jtl-custom-gauge .ant-progress-circle-trail {
  stroke: #aaa !important;
}
.jtl-custom-gauge .jtl-custom-gauge-percent-wrapper {
  line-height: 1.5;
}
.jtl-custom-gauge .jtl-custom-gauge-percent-wrapper .jtl-custom-gauge-percent {
  font-size: 24px;
  color: #47484D;
  font-weight: 400;
}
.jtl-custom-gauge .jtl-custom-gauge-percent-wrapper .jtl-custom-gauge-desc {
  color: #85888C;
}
/* Mixins */
.jtl-editor-component .editor-wrapper {
  text-align: left;
}
/* Mixins */
.jtl-video-component {
  width: 100%;
  height: 100%;
}
.jtl-video-component .playWnd {
  width: 100%;
  height: 100%;
  background-color: #262626;
}
.jtl-cron-modal .ant-modal-body {
  padding: 0px;
}
.jtl-cron-modal .ant-modal-body .card-container {
  background: #fff;
  overflow: hidden;
  padding: 0px;
  position: relative;
  width: 100%;
}
.jtl-cron-modal .ant-modal-body .card-container .ant-tabs {
  padding: 0;
}
.jtl-cron-modal .ant-modal-body .card-container .ant-tabs .ant-tabs-tabpane {
  padding: 0 0 0 15px;
}
.jtl-cron-modal .ant-modal-body .card-container .ant-tabs .ant-tabs-tabpane .ant-row {
  margin: 10px 0;
}
.jtl-cron-modal .ant-modal-body .card-container .ant-tabs .ant-tabs-tabpane .ant-select,
.jtl-cron-modal .ant-modal-body .card-container .ant-tabs .ant-tabs-tabpane .ant-input-number {
  width: 100px;
}
.jtl-cron-modal .container-widthEn {
  width: 755px;
}
.jtl-cron-modal .container-widthCn {
  width: 608px;
}
.jtl-cron-modal .language {
  text-align: center;
  position: absolute;
  right: 13px;
  top: 13px;
  border: 1px solid transparent;
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  color: #409eff;
  z-index: 1;
  background: #f5f7fa;
  outline: none;
  width: 47px;
  border-bottom: 1px solid #e6ebf5;
  border-radius: 0;
}
.jtl-cron-modal .card-container .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
}
.jtl-cron-modal .card-container .bottom .cronButton {
  margin: 0 10px;
  line-height: 40px;
}
.jtl-cron-modal .tabBody .a-row {
  margin: 10px 0;
}
.jtl-cron-modal .tabBody .a-row .long .a-select {
  width: 354px;
}
.jtl-cron-modal .tabBody .a-row .a-input-number {
  width: 110px;
}


.components-input-demo-presuffix .anticon-close-circle[data-v-1cd7cd60] {
  cursor: pointer;
  color: #ccc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 12px;
}
.components-input-demo-presuffix .anticon-close-circle[data-v-1cd7cd60]:hover {
  color: #f5222d;
}
.components-input-demo-presuffix .anticon-close-circle[data-v-1cd7cd60]:active {
  color: #666;
}


.v-charts-component-loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  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;
  background-color: rgba(255, 255, 255, .9);
}
.v-charts-component-loading.jtlReportTheme {
  background-color: #191f28;
}
.v-charts-mask-status {
  -webkit-filter: blur(1px);
          filter: blur(1px);
}
.v-charts-component-loading .circular {
  width: 42px;
  height: 42px;
  -webkit-animation: loading-rotate 2s linear infinite;
          animation: loading-rotate 2s linear infinite;
}
.v-charts-component-loading .path {
  -webkit-animation: loading-dash 1.5s ease-in-out infinite;
          animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90,150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #20a0ff;
  stroke-linecap: round;
}
@-webkit-keyframes loading-rotate {
100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
@keyframes loading-rotate {
100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
@-webkit-keyframes loading-dash {
0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
}
50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
}
100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
}
}
@keyframes loading-dash {
0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
}
50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
}
100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
}
}


.v-charts-data-empty {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  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;
  /* background-color: rgba(255, 255, 255, .3); */
  background-color: transparent;
  color: #fff;
  font-size: 14px;
}

/* Mixins */
.app-componnet {
  position: relative;
  height: 100%;
  min-width: 768px;
  min-height: 300px;
}
.app-componnet .full-screen-loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 99999;
  background-color: #000;
  opacity: 0.6;
}
.app-componnet .full-screen-loading .ant-spin-text {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  font-size: 32px;
  font-weight: bold;
}

/*# sourceMappingURL=app.2493140b.css.map*/