/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-notification {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: fixed;
  z-index: 1010;
  width: 384px;
  max-width: calc(100vw - 32px);
  margin-right: 24px;
}
.ant-notification-topLeft,
.ant-notification-bottomLeft {
  margin-right: 0;
  margin-left: 24px;
}
.ant-notification-topLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-bottomLeft .ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-topLeft .ant-notification-fade-appear.ant-notification-fade-appear-active,
.ant-notification-bottomLeft .ant-notification-fade-appear.ant-notification-fade-appear-active {
  -webkit-animation-name: NotificationLeftFadeIn;
          animation-name: NotificationLeftFadeIn;
}
.ant-notification-close-icon {
  font-size: 14px;
  cursor: pointer;
}
.ant-notification-notice {
  position: relative;
  margin-bottom: 16px;
  padding: 16px 24px;
  overflow: hidden;
  line-height: 1.5;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ant-notification-notice-message {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-notification-notice-message-single-line-auto-margin {
  display: block;
  width: calc(384px - 24px * 2 - 24px - 48px - 100%);
  max-width: 4px;
  background-color: transparent;
  pointer-events: none;
}
.ant-notification-notice-message-single-line-auto-margin::before {
  display: block;
  content: '';
}
.ant-notification-notice-description {
  font-size: 14px;
}
.ant-notification-notice-closable .ant-notification-notice-message {
  padding-right: 24px;
}
.ant-notification-notice-with-icon .ant-notification-notice-message {
  margin-bottom: 4px;
  margin-left: 48px;
  font-size: 16px;
}
.ant-notification-notice-with-icon .ant-notification-notice-description {
  margin-left: 48px;
  font-size: 14px;
}
.ant-notification-notice-icon {
  position: absolute;
  margin-left: 4px;
  font-size: 24px;
  line-height: 24px;
}
.anticon.ant-notification-notice-icon-success {
  color: #52c41a;
}
.anticon.ant-notification-notice-icon-info {
  color: #1890ff;
}
.anticon.ant-notification-notice-icon-warning {
  color: #faad14;
}
.anticon.ant-notification-notice-icon-error {
  color: #f5222d;
}
.ant-notification-notice-close {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 0, 0, 0.45);
  outline: none;
}
.ant-notification-notice-close:hover {
  color: rgba(0, 0, 0, 0.67);
}
.ant-notification-notice-btn {
  float: right;
  margin-top: 16px;
}
.ant-notification .notification-fade-effect {
  -webkit-animation-duration: 0.24s;
          animation-duration: 0.24s;
  -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ant-notification-fade-enter,
.ant-notification-fade-appear {
  opacity: 0;
  -webkit-animation-duration: 0.24s;
          animation-duration: 0.24s;
  -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.ant-notification-fade-leave {
  -webkit-animation-duration: 0.24s;
          animation-duration: 0.24s;
  -webkit-animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
          animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.ant-notification-fade-enter.ant-notification-fade-enter-active,
.ant-notification-fade-appear.ant-notification-fade-appear-active {
  -webkit-animation-name: NotificationFadeIn;
          animation-name: NotificationFadeIn;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.ant-notification-fade-leave.ant-notification-fade-leave-active {
  -webkit-animation-name: NotificationFadeOut;
          animation-name: NotificationFadeOut;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
@-webkit-keyframes NotificationFadeIn {
  0% {
    left: 384px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeIn {
  0% {
    left: 384px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes NotificationLeftFadeIn {
  0% {
    right: 384px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    right: 384px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes NotificationFadeOut {
  0% {
    max-height: 150px;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }
}
@keyframes NotificationFadeOut {
  0% {
    max-height: 150px;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  top: 100px;
  width: auto;
  margin: 0 auto;
  padding-bottom: 24px;
  pointer-events: none;
}
.ant-modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.ant-modal-title {
  margin: 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  word-wrap: break-word;
}
.ant-modal-content {
  position: relative;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}
.ant-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-modal-close-x {
  display: block;
  width: 56px;
  height: 56px;
  font-size: 16px;
  font-style: normal;
  line-height: 56px;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
}
.ant-modal-close:focus,
.ant-modal-close:hover {
  color: rgba(0, 0, 0, 0.75);
  text-decoration: none;
}
.ant-modal-header {
  padding: 16px 24px;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0;
}
.ant-modal-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.ant-modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: transparent;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-modal-footer button + button {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear {
  -webkit-transform: none;
          transform: none;
  opacity: 0;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden {
  display: none;
}
.ant-modal-open {
  overflow: hidden;
}
.ant-modal-centered {
  text-align: center;
}
.ant-modal-centered::before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.ant-modal-centered .ant-modal {
  top: 0;
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .ant-modal {
    max-width: calc(84vw);
    margin: 8px auto;
  }
  .ant-modal-centered .ant-modal {
    -ms-flex: 1 1;
        flex: 1 1;
  }
}
.ant-modal-confirm .ant-modal-header {
  display: none;
}
.ant-modal-confirm .ant-modal-close {
  display: none;
}
.ant-modal-confirm .ant-modal-body {
  padding: 32px 32px 24px;
}
.ant-modal-confirm-body-wrapper {
  zoom: 1;
}
.ant-modal-confirm-body-wrapper::before,
.ant-modal-confirm-body-wrapper::after {
  display: table;
  content: '';
}
.ant-modal-confirm-body-wrapper::after {
  clear: both;
}
.ant-modal-confirm-body .ant-modal-confirm-title {
  display: block;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.ant-modal-confirm-body .ant-modal-confirm-content {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.ant-modal-confirm-body > .anticon {
  float: left;
  margin-right: 16px;
  font-size: 22px;
}
.ant-modal-confirm-body > .anticon + .ant-modal-confirm-title + .ant-modal-confirm-content {
  margin-left: 38px;
}
.ant-modal-confirm .ant-modal-confirm-btns {
  float: right;
  margin-top: 24px;
}
.ant-modal-confirm .ant-modal-confirm-btns button + button {
  margin-bottom: 0;
  margin-left: 8px;
}
.ant-modal-confirm-error .ant-modal-confirm-body > .anticon {
  color: #f5222d;
}
.ant-modal-confirm-warning .ant-modal-confirm-body > .anticon,
.ant-modal-confirm-confirm .ant-modal-confirm-body > .anticon {
  color: #faad14;
}
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
  color: #1890ff;
}
.ant-modal-confirm-success .ant-modal-confirm-body > .anticon {
  color: #52c41a;
}
.modal___2BzfX {
  width: 600px;
}
@font-face {
  font-family: 'anticon';
  /* project id 575155 */
  src: url('//at.alicdn.com/t/font_575155_or9dnpixrc9.eot');
  src: url('//at.alicdn.com/t/font_575155_or9dnpixrc9.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_575155_or9dnpixrc9.woff') format('woff'), url('//at.alicdn.com/t/font_575155_or9dnpixrc9.ttf') format('truetype'), url('//at.alicdn.com/t/font_575155_or9dnpixrc9.svg#anticon') format('svg');
}
html,
body,
#root {
  height: 100%;
}
canvas {
  display: block;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* stylelint-disable selector-no-id, declaration-no-important   */
.globalSpin___1IMQg {
  width: 100%;
  margin: 40px 0 !important;
}
 {
  /**不同浏览器固定textArea高**/
  /**table**/
  /** .ant-table-placeholder {
    border-left: 1px solid #e8e8e8 !important;
    border-right: 1px solid #e8e8e8 !important;
    margin-top: -15px;
  }**/
  /** 清除firefox表头滚动条**/
  /**sider menu**/
  /**.ant-menu-item.ant-menu-item-selected a {
    background: #d9e2ec !important;
    color: #1b2125 !important;
  }**/
  /**选中ant-menu-submenu 菜单**/
  /**一级导航样式**/
  /**箭头颜色**/
  /**选择菜单**/
  /**预留表单提示信息高度**/
  /**增大按钮间距**/
  /**iconfont字体引入**/
  /**禁用级联**/
  /**禁用select**/
  /**搜索表单专用**/
  /**新增表单外包裹专用**/
  /**新增表单专用**/
  /**带addon的Input**/
  /**InputNumber控件宽度**/
  /**表格内按钮**/
  /**全局富文本编辑器样式**/
  /**表格数字居右**/
}
.ant-btn.ant-btn-primary.christmas::before {
  display: none!important;
}
.text-center {
  text-align: center;
}
i.anticon.anticon-spin.anticon-loading {
  margin-left: 0 !important;
}
.letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.searchModalButton textarea {
  width: 80%;
  float: left;
  margin-top: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  resize: none;
  line-height: 30px;
  text-align: left;
  text-indent: 4px;
  font-size: 12px;
  padding: 0;
}
.searchModalButton input {
  width: 80%;
  float: left;
  text-indent: 4px;
  margin-top: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  line-height: 30px;
  text-align: left;
  font-size: 12px;
  padding: 0;
}
.searchModalButton button {
  width: 20%;
  float: left;
  margin-top: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 !important;
}
.ant-input-number-input[disabled],
.ant-input-disabled {
  color: #000 !important;
}
.ant-btn-sm {
  /**line-height: 1.15!important;**/
  height: 24px;
  line-height: 1.25;
  padding: 0 7px;
}
.normalTextArea {
  height: 48px !important;
}
form textarea.ant-input {
  height: 52px;
}
.ant-table-small {
  border: 0 !important;
}
.ant-table-small > .ant-table-content .ant-table-placeholder,
.ant-table-small > .ant-table-content .ant-table-row:last-child td {
  border-bottom: 1px solid #e8e8e8 !important;
}
.ant-table-small > .ant-table-content .ant-table-header {
  margin-bottom: 0 !important;
}
.ant-table-thead > tr:first-of-type th {
  border-top: 1px solid #e8e8e8 !important;
}
.ant-table-thead > tr th:nth-of-type(1),
.ant-table-tbody > tr td:nth-of-type(1) {
  border-left: 1px solid #e8e8e8 !important;
}
.ant-table-thead > tr th:nth-last-of-type(1),
.ant-table-tbody > tr td:nth-last-of-type(1) {
  border-right: 1px solid #e8e8e8;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  /**overflow: hidden !important;
    padding: 0 !important;
    margin: 0 13px 0 0!important;**/
}
.anticon-menu-fold {
  text-align: right !important;
  padding-right: 15px;
}
.anticon-menu-fold + div {
  overflow-x: scroll !important;
}
.anticon-menu-unfold {
  text-align: center !important;
}
.ant-menu-inline,
.ant-menu-vertical,
.ant-menu-vertical-left {
  border-right: none !important;
}
.ant-menu-inline .ant-menu-item:not(:last-child) {
  margin-bottom: 0 !important;
}
.ant-menu-submenu .menuundefined > .ant-menu-submenu-title {
  padding-left: 10px !important;
}
.ant-menu-submenu .menuundefined > .ant-menu-submenu-title i.anticon.anticon-double-right {
  display: none;
}
.ant-menu-item .anticon-double-right,
.ant-menu-submenu-title .anticon-double-right {
  display: none !important;
}
.menuundefined > .ant-menu-submenu-title:hover::before {
  display: none !important;
}
.menuundefined > ul.ant-menu::before {
  content: none !important;
}
.ant-menu-submenu::before,
.ant-menu-item::before {
  content: none !important;
}
.ant-menu-submenu,
.ant-menu-item {
  position: relative;
}
.ant-menu-submenu::before,
.ant-menu-item::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 7px;
  left: 20px;
  top: 20px;
  border-top: 1px dotted #9dbdd6;
  border-top-color: #8eb3d0 !important;
}
li.ant-menu-item.ant-menu-item-selected {
  position: relative;
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item,
.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-inline .ant-menu-submenu-title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.ant-menu-submenu-selected {
  background-color: transparent !important;
  color: #6093f2 !important;
}
.ant-menu-item-active .ant-menu-item:hover,
.ant-menu-submenu:hover {
  background: transparent !important;
  color: #fff !important;
}
.ant-menu-submenu-selected:hover {
  background: transparent !important;
  color: #fafafa !important;
}
.ant-menu-submenu-open:hover {
  background: transparent !important;
  color: #fff !important;
}
.menuundefined > .ant-menu-submenu-title {
  background: transparent;
  border-bottom: 1px solid #86CAFD;
  margin: 0 !important;
}
.menuundefined > .ant-menu-submenu-title span {
  color: #fff;
}
.menuundefined > .ant-menu-submenu-title .action {
  color: #aeb9d1 !important;
}
.menuundefined > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.menuundefined > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  color: rgba(255, 255, 255, 0.6) !important;
}
.menuundefined > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.menuundefined > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  background: rgba(255, 255, 255, 0.6) !important;
}
.menu0,
.menu1 {
  color: #fff !important;
}
.menu2 {
  color: #333 !important;
}
.menu3 .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.menu3 .ant-menu-submenu-title .ant-menu-submenu-arrow:before {
  background: #333 !important;
}
.menu2 .ant-menu .ant-menu-submenu-selected {
  background-color: #cfebfe !important;
  border-left: 3px solid #6093f2 !important;
}
.menu2 .ant-menu .ant-menu-submenu-selected > a,
.menu2 .ant-menu .ant-menu-item-active > a,
.menu2 .ant-menu .ant-menu-submenu-selected > span,
.menu2 .ant-menu .ant-menu-item-active > span {
  color: #6093f2 !important;
}
.menu0 .ant-menu .ant-menu-item-active,
.menu0 .ant-menu .ant-menu-submenu-selected,
.menu0 .ant-menu-submenu-title:hover,
.menu0 .ant-menu-item-selected {
  background-color: #237fdd !important;
  color: #fff !important;
}
.menu1 .ant-menu-item.lastNodeClass {
  background-color: #edf8fe !important;
}
.menu1 .ant-menu-item.lastNodeClass a {
  color: #333 !important;
}
.menu1 .ant-menu .ant-menu-item.ant-menu-item-selected,
.menu1 .ant-menu .ant-menu-item.NodeClass .ant-menu .ant-menu-submenu-selected {
  background: #cfebfe !important;
}
.menu1 .ant-menu .ant-menu-item.ant-menu-item-selected a,
.menu1 .ant-menu .ant-menu-item.NodeClass .ant-menu .ant-menu-submenu-selected a,
.menu1 .ant-menu .ant-menu-item.ant-menu-item-selected span,
.menu1 .ant-menu .ant-menu-item.NodeClass .ant-menu .ant-menu-submenu-selected span {
  color: #6093f2 !important;
}
.menu1 .ant-menu .ant-menu-item-active {
  background-color: #edf8fe !important;
}
.menu1 .ant-menu .ant-menu-item-active a {
  color: #6093f2 !important;
}
.ant-menu-submenu > .ant-menu {
  background-color: transparent !important;
}
.ant-menu-submenu-popup.ant-menu-submenu > .ant-menu {
  background-color: #fff !important;
}
.ant-menu-submenu-arrow {
  right: 20px !important;
}
.ant-menu-submenu-title {
  padding-left: 20px !important;
}
.menu1 .ant-menu-submenu-title,
.menu0 .lastNodeClass {
  padding-left: 40px !important;
}
.menu2 .ant-menu-submenu-title,
.menu1 .lastNodeClass {
  padding-left: 60px !important;
}
.menu3 .ant-menu-submenu-title {
  padding-left: 16px !important;
}
.ant-menu .menu2.ant-menu-submenu-active .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu .menu2.ant-menu-submenu-selected .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu .menu2.ant-menu-submenu-active .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu .menu2.ant-menu-submenu-selected .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #6093f2 !important;
}
.ant-menu .menu2 .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu .menu2 .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #333 !important;
}
.ant-menu .menu3 .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu .menu3 .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #333 !important;
}
.ant-menu .menu3.ant-menu-submenu-active .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu .menu3.ant-menu-submenu-selected .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu .menu3.ant-menu-submenu-active .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu .menu3.ant-menu-submenu-selected .ant-menu-submenu-title .ant-menu-submenu-arrow:before {
  background-color: #6093f2 !important;
}
.NodeClass {
  padding: 0 !important;
}
.ant-menu .NodeClass {
  background-color: #edf8fe !important;
}
.ant-menu .NodeClass.ant-menu-item-active span {
  color: #6093f2 !important;
}
.ant-menu .NodeClass:hover span {
  color: #6093f2 !important;
}
.menuundefined ~ .lastNodeClass a,
.menuundefined > .ant-menu-submenu-title span {
  color: #fff !important;
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow:after {
  background: rgba(255, 255, 255, 0.6) !important;
}
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:after,
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow:before,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow:before {
  background: rgba(255, 255, 255, 0.6) !important;
}
.ant-menu-vertical .ant-menu-item:after,
.ant-menu-vertical-left .ant-menu-item:after,
.ant-menu-vertical-right .ant-menu-item:after,
.ant-menu-inline .ant-menu-item:after {
  border-right: none !important;
}
.ant-menu-item:hover,
.ant-menu-item-active,
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-submenu-active,
.ant-menu-submenu-title:hover {
  color: #6093f2 !important;
}
.menu0 .ant-menu-item > a,
.menu1 .ant-menu-item > a {
  color: #fff !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu2 .ant-menu-item > a {
  color: #333 !important;
}
.menu2 .ant-menu-item-selected {
  background-color: #cfebfe !important;
  border-left: 3px solid #6093f2 !important;
}
.menu2 .ant-menu-item-selected a {
  color: #6093f2 !important;
}
.menuundefined .ant-menu-submenu-selected > .ant-menu-submenu-title {
  /**background-color: #017acb !important;
    color: #1963aa !important;**/
  background-color: #237fdd !important;
  color: #fff !important;
}
.menuundefined .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.menuundefined .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(255, 255, 255, 0.6) !important;
}
.ant-menu.ant-menu-dark .ant-menu-item-selected,
.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background: #fff !important;
  color: #2b7dbc !important;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
  background: #fff !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.ant-layout {
  position: relative;
}
.ant-layout-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.ant-layout-header {
  height: 64px !important;
  line-height: 64px !important;
  background: linear-gradient(60deg, #00AFFB, #4870F3) !important;
}
table .ant-table-selection,
table .ant-table-selection-column {
  min-width: auto !important;
  /** width: 32px!important;**/
}
.ant-card.ant-card-bordered.ant-card-wider-padding.ant-card-padding-transition .ant-card-body {
  padding: 10px 20px 0 !important;
}
.ant-form-item {
  margin-bottom: 0 !important;
  min-height: 64px !important;
}
.ant-form-item .ant-form-explain {
  font-size: 12px !important;
  line-height: 12px !important;
  float: left;
}
.ant-form-inline .ant-form-item {
  margin-right: 8px !important;
}
.ant-btn-plus-margin {
  margin-right: 4px;
}
.table-can-click tr:hover {
  cursor: pointer !important;
}
.text-right {
  text-align: right;
}
table th {
  background: #f3f7fc;
  text-align: center;
  color: #285fa6;
}
table tr .ant-table-selection-column {
  width: 30px;
}
table th,
table td {
  /** white-space: nowrap!important;**/
  padding: 5px 4px !important;
}
.ant-table-tbody > tr.ant-table-row-selected td {
  background: #cacaca !important;
}
.ant-table-pagination.ant-pagination {
  margin: 10px 0 0 !important;
}
.anticon {
  font-family: 'anticon' !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.anticon-profile:before {
  content: "\E628";
}
.anticon-yidiandiantubiao01:before {
  content: "\E605";
}
.anticon-cc-pie-chart:before {
  content: "\E685";
}
.anticon-wajueji01:before {
  content: "\E614";
}
.anticon-shipinshengchanqiye:before {
  content: "\E613";
}
.anticon-setting:before {
  content: "\E676";
}
.anticon-guanwangxitong:before {
  content: "\E60D";
}
.anticon-cycle:before {
  content: "\E71E";
}
.anticon-calculator:before {
  content: "\E60E";
}
.anticon-save:before {
  content: "\E662";
}
.anticon-bank:before {
  content: "\E63B";
}
.anticon-bars:before {
  content: "\E606";
}
.anticon-exception:before {
  content: "\E61F";
}
.anticon-database:before {
  content: "\E615";
}
.anticon-icon-p_mrpjinduzhuizong:before {
  content: "\E608";
}
.anticon-huanbao:before {
  content: "\E638";
}
.anticon-rizhiguanli:before {
  content: "\E62F";
}
.anticon-rizhi:before {
  content: "\E600";
}
.anticon-tags-o:before {
  content: "\E735";
}
.anticon-to-top:before {
  content: "\E736";
}
.anticon-user-add:before {
  content: "\E739";
}
.anticon-reload:before {
  content: "\E6DD";
}
.anticon-team:before {
  content: "\E7AE";
}
.anticon-areachart:before {
  content: "\E7AF";
}
.anticon-solution:before {
  content: "\E7B5";
}
.anticon-file-ppt:before {
  content: "\E7B9";
}
.anticon-file-text:before {
  content: "\E7BA";
}
.anticon-home:before {
  content: "\E7C6";
}
.anticon-select:before {
  content: "\E7D4";
}
.anticon-zhuqunguanli:before {
  content: "\E617";
}
.anticon-zhuchangkeshihua:before {
  content: "\E618";
}
.anticon-zhongzhuguanli:before {
  content: "\E619";
}
.anticon-shujujiekou:before {
  content: "\E61A";
}
.anticon-jichuziliao:before {
  content: "\E61B";
}
.anticon-jichushezhi1:before {
  content: "\E624";
}
.anticon-shopping-cart:before {
  content: "\E611";
}
.ant-card {
  width: 100%;
  height: 100%;
}
.ant-card-body {
  padding: 10px 20px;
  width: 100%;
  height: 100%;
}
.ant-card-body .ant-row {
  height: 100%;
}
.ant-card-body > div {
  height: 100%;
  width: 100%;
}
.searchForm .ant-row {
  width: auto !important;
}
.ant-tabs .ant-tabs-content {
  position: relative;
}
.normalContent {
  height: 100% !important;
  margin-left: -17px !important;
}
.normalContentNew {
  position: relative;
  height: 100% !important;
  margin-left: 7px !important;
}
.normalTableList {
  position: relative;
  min-height: 300px;
  z-index: 1;
}
.table-icon {
  display: block;
}
.table-icon i {
  color: rgba(0, 0, 0, 0.45);
  display: inline-block;
  font-size: 8px \9;
  -webkit-transform: scale(0.66666667) rotate(0deg);
  transform: scale(0.66666667) rotate(0deg);
  line-height: 4px;
  height: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.table-icon i.sorter-active {
  color: #1890ff;
}
.ant-cascader-picker-disabled {
  color: #000000 !important;
}
.ant-select-disabled {
  color: #000000 !important;
}
.h25 {
  /**height: 25px !important;
    line-height: 25px !important;
    margin-top: 7.5px !important;
    :global {
      .ant-input {
        height: 25px;
      }
      .ant-input-number-input {
        height: 22px;
      }
      .ant-select-selection--single {
        height: 25px;

        .ant-select-selection__rendered {
          line-height: 25px;
        }
      }
    }**/
}
.normalSearchForm {
  position: relative;
  padding: 0 44px !important;
}
.normalSearchForm {
  /**.ant-select {
        display: inline;
      }**/
  /**.ant-btn-plus-margin {
        margin-right: 20px;
      }**/
}
.normalSearchForm .ant-form-item-label {
  text-align: left;
}
.normalSearchForm .ant-form-item-label ::after {
  content: '';
}
.normalSearchForm .ant-calendar-picker {
  width: '100%';
}
.normalSearchForm .ant-form-item-control {
  line-height: 1;
}
.normalSearchForm .ant-btn-sm {
  /**width: 3.1vw;**/
  /**height: 1.87vw;**/
  line-height: 1;
  border-radius: 3px;
}
.normalSearchForm .ant-form-item-label label:after {
  content: '';
}
.normalSearchForm .ant-form label {
  font-size: 14px;
  color: #8896a1;
  font-family: 'Microsoft YaHei';
  font-weight: bold;
}
.normalSearchForm .ant-form-item-label {
  height: 26px !important;
  vertical-align: middle;
  line-height: 26px !important;
  margin-top: 2px;
  font-size: 14px;
  color: #8896a1;
  font-family: 'Microsoft YaHei';
  font-weight: bold;
}
.normalSearchForm .ant-form-item {
  margin-right: 20px;
  min-height: auto;
}
.normalSearchForm .ant-form-item-label label {
  color: #8896a1;
  font-family: 'Microsoft YaHei';
  font-weight: bold;
}
.normalSearchForm .searchButton {
  position: absolute;
  right: 40px;
  top: 28px;
  text-align: right;
}
.normalSearchForm .searchButton .ant-btn,
.normalSearchForm .searchButton .ant-btn-primary {
  font-family: 'Microsoft YaHei';
  font-weight: bold;
  margin-left: 20px;
}
.normalSearchForm .searchButton .ant-btn {
  color: #8896a1;
}
.normalSearchForm .searchButton .ant-btn-primary {
  color: #fff;
  background: #017acb !important;
  border-color: #017acb !important;
}
.line {
  text-align: center;
}
.line span {
  display: inline-block;
  padding: 0 3vh;
  height: 1px;
  background: #8896a1;
}
.dateLine {
  border-bottom: 1px solid #ccc;
  margin-top: 40px;
  margin-right: 20px;
}
.normalContentNewAdd {
  width: 70vw;
  margin: 15px auto 0 !important;
}
.normalAddForm .ant-form-item {
  min-height: 85px !important;
}
.normalAddForm .ant-form-item-label {
  text-align: left;
  font-size: 16px;
  color: #8896a1;
  line-height: 24px;
  margin-top: 10px;
}
.normalAddForm .ant-form-item-label label {
  font-size: 16px;
  color: #8896a1;
  font-weight: bold;
}
.normalAddForm .ant-form-item-label ::after {
  content: '';
}
.normalAddForm .ant-form-item-label .ant-form-item-required::before {
  content: '';
}
.normalAddForm .ant-form-item-label .ant-form-item-required:after {
  display: inline-block;
  margin-left: 10px;
  content: '*';
  font-family: SimSun;
  line-height: 1;
  font-size: 16px;
  color: #f5222d;
}
.normalAddForm .buttonWrapper {
  margin-top: 10px;
  text-align: right;
}
.normalAddForm .buttonWrapper .ant-btn {
  width: 160px;
}
.normalAddForm .buttonWrapper .ant-btn-primary {
  background-color: #017acb !important;
  border-color: #017acb !important;
}
.normalAddForm .buttonWrapper .backBtn {
  margin-right: 10px;
}
.addonH25 .ant-input-group-wrapper .ant-input-group .ant-input {
  width: 80%;
  height: 25px;
  line-height: 25px;
}
.addonH25 .ant-input-group-wrapper .ant-input-group-addon {
  display: inline-block;
  width: 20%;
  padding: 4.5px 11px;
}
.formItemHack {
  /**兼容IE下ant-form-item-control控件行高**/
}
.formItemHack .ant-form-item-control-wrapper {
  /**padding-top: 7.5px;**/
}
.formItemHack .ant-form-item-control-wrapper .ant-form-item-control .ant-cascader-picker {
  margin-top: 7.5px;
}
.ant-input-number {
  width: 100% !important;
}
.ant-calendar-picker {
  width: 100%;
}
.normalOperateBtn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.normalOperateBtn .normalEditBtn {
  background-color: #017acb !important;
  border-color: #017acb !important;
  margin-right: 10px;
  border-radius: 3px;
}
.normalOperateBtn .normalDelBtn {
  border-radius: 3px;
}
.editor-content {
  padding: 6px 5px 0;
  border-radius: 2px;
  min-height: 300px;
  border: 1px solid #F1F1F1;
}
.editor-content .public-DraftStyleDefault-block {
  margin: 0;
}
.text-right > div {
  width: 100% !important;
  text-align: right !important;
}
.text-left > div {
  width: 100% !important;
  text-align: left !important;
}
::-webkit-scrollbar {
  width: 0;
  height: 14px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 5px solid transparent;
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
}
::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
/* stylelint-enable */
.ant-modal-root___1fH6D .ant-modal-wrap___1IPqJ .ant-modal___2SNIL {
  width: 800px !important;
}
 /deep/ .ant-modal___2SNIL {
  width: 800px ;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-spin {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  display: none;
  color: #1890ff;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-spin-spinning {
  position: static;
  display: inline-block;
  opacity: 1;
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px;
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  position: absolute;
  top: 50%;
  width: 100%;
  padding-top: 5px;
  text-shadow: 0 1px 2px #fff;
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  margin-top: -20px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  margin: -7px;
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  padding-top: 2px;
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  margin-top: -17px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  margin: -16px;
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  padding-top: 11px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  margin-top: -26px;
}
.ant-spin-container {
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ant-spin-container::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none \9;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
  pointer-events: none;
}
.ant-spin-blur {
  clear: both;
  overflow: hidden;
  opacity: 0.5;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.ant-spin-blur::after {
  opacity: 0.4;
  pointer-events: auto;
}
.ant-spin-tip {
  color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  height: 1em;
}
.ant-spin-dot-item {
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #1890ff;
  border-radius: 100%;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  opacity: 0.3;
  -webkit-animation: antSpinMove 1s infinite linear alternate;
          animation: antSpinMove 1s infinite linear alternate;
}
.ant-spin-dot-item:nth-child(1) {
  top: 0;
  left: 0;
}
.ant-spin-dot-item:nth-child(2) {
  top: 0;
  right: 0;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.ant-spin-dot-item:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.ant-spin-dot-item:nth-child(4) {
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.ant-spin-dot-spin {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: antRotate 1.2s infinite linear;
          animation: antRotate 1.2s infinite linear;
}
.ant-spin-sm .ant-spin-dot {
  font-size: 14px;
}
.ant-spin-sm .ant-spin-dot i {
  width: 6px;
  height: 6px;
}
.ant-spin-lg .ant-spin-dot {
  font-size: 32px;
}
.ant-spin-lg .ant-spin-dot i {
  width: 14px;
  height: 14px;
}
.ant-spin.ant-spin-show-text .ant-spin-text {
  display: block;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ */
  .ant-spin-blur {
    background: #fff;
    opacity: 0.5;
  }
}
@-webkit-keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@-webkit-keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}
@keyframes antRotate {
  to {
    -webkit-transform: rotate(405deg);
            transform: rotate(405deg);
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 1010;
  width: 100%;
  pointer-events: none;
}
.ant-message-notice {
  padding: 8px;
  text-align: center;
}
.ant-message-notice:first-child {
  margin-top: -8px;
}
.ant-message-notice-content {
  display: inline-block;
  padding: 10px 16px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: all;
}
.ant-message-success .anticon {
  color: #52c41a;
}
.ant-message-error .anticon {
  color: #f5222d;
}
.ant-message-warning .anticon {
  color: #faad14;
}
.ant-message-info .anticon,
.ant-message-loading .anticon {
  color: #1890ff;
}
.ant-message .anticon {
  position: relative;
  top: 1px;
  margin-right: 8px;
  font-size: 16px;
}
.ant-message-notice.move-up-leave.move-up-leave-active {
  overflow: hidden;
  -webkit-animation-name: MessageMoveOut;
          animation-name: MessageMoveOut;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}
@-webkit-keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes MessageMoveOut {
  0% {
    max-height: 150px;
    padding: 8px;
    opacity: 1;
  }
  100% {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: auto;
      flex: auto;
  -ms-flex-direction: column;
      flex-direction: column;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
  background: #f0f2f5;
}
.ant-layout,
.ant-layout * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ant-layout.ant-layout-has-sider {
  -ms-flex-direction: row;
      flex-direction: row;
}
.ant-layout.ant-layout-has-sider > .ant-layout,
.ant-layout.ant-layout-has-sider > .ant-layout-content {
  overflow-x: hidden;
}
.ant-layout-header,
.ant-layout-footer {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
.ant-layout-header {
  height: 64px;
  padding: 0 50px;
  line-height: 64px;
  background: #001529;
}
.ant-layout-footer {
  padding: 24px 50px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  background: #f0f2f5;
}
.ant-layout-content {
  -ms-flex: auto;
      flex: auto;
  /* fix firefox can't set height smaller than content on flex item */
  min-height: 0;
}
.ant-layout-sider {
  position: relative;
  /* fix firefox can't set width smaller than content on flex item */
  min-width: 0;
  background: #001529;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ant-layout-sider-children {
  height: 100%;
  margin-top: -0.1px;
  padding-top: 0.1px;
}
.ant-layout-sider-has-trigger {
  padding-bottom: 48px;
}
.ant-layout-sider-right {
  -ms-flex-order: 1;
      order: 1;
}
.ant-layout-sider-trigger {
  position: fixed;
  bottom: 0;
  z-index: 1;
  height: 48px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  background: #002140;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ant-layout-sider-zero-width > * {
  overflow: hidden;
}
.ant-layout-sider-zero-width-trigger {
  position: absolute;
  top: 64px;
  right: -36px;
  z-index: 1;
  width: 36px;
  height: 42px;
  color: #fff;
  font-size: 18px;
  line-height: 42px;
  text-align: center;
  background: #001529;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-layout-sider-zero-width-trigger:hover {
  background: #192c3e;
}
.ant-layout-sider-zero-width-trigger-right {
  left: -36px;
  border-radius: 4px 0 0 4px;
}
.ant-layout-sider-light {
  background: #fff;
}
.ant-layout-sider-light .ant-layout-sider-trigger {
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
}
.ant-layout-sider-light .ant-layout-sider-zero-width-trigger {
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-dropdown {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  display: block;
}
.ant-dropdown::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: -7px;
  left: -7px;
  z-index: -9999;
  opacity: 0.0001;
  content: ' ';
}
.ant-dropdown-wrap {
  position: relative;
}
.ant-dropdown-wrap .ant-btn > .anticon-down {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-wrap .ant-btn > .anticon-down {
  font-size: 12px;
}
.ant-dropdown-wrap .anticon-down::before {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.ant-dropdown-wrap-open .anticon-down::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ant-dropdown-hidden,
.ant-dropdown-menu-hidden {
  display: none;
}
.ant-dropdown-menu {
  position: relative;
  margin: 0;
  padding: 4px 0;
  text-align: left;
  list-style-type: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, 0, 0);
}
.ant-dropdown-menu-item-group-title {
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-dropdown-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
}
.ant-dropdown-menu-submenu-popup > .ant-dropdown-menu {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.ant-dropdown-menu-submenu-popup ul,
.ant-dropdown-menu-submenu-popup li {
  list-style: none;
}
.ant-dropdown-menu-submenu-popup ul {
  margin-right: 0.3em;
  margin-left: 0.3em;
  padding: 0;
}
.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
  clear: both;
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-menu-submenu-title > .anticon:first-child,
.ant-dropdown-menu-item > span > .anticon:first-child,
.ant-dropdown-menu-submenu-title > span > .anticon:first-child {
  min-width: 12px;
  margin-right: 8px;
  font-size: 12px;
}
.ant-dropdown-menu-item > a,
.ant-dropdown-menu-submenu-title > a {
  display: block;
  margin: -5px -12px;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-dropdown-menu-item-selected,
.ant-dropdown-menu-submenu-title-selected,
.ant-dropdown-menu-item-selected > a,
.ant-dropdown-menu-submenu-title-selected > a {
  color: #1890ff;
  background-color: #e6f7ff;
}
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
  background-color: #e6f7ff;
}
.ant-dropdown-menu-item-disabled,
.ant-dropdown-menu-submenu-title-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-dropdown-menu-item-disabled:hover,
.ant-dropdown-menu-submenu-title-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-item-divider,
.ant-dropdown-menu-submenu-title-divider {
  height: 1px;
  margin: 4px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {
  position: absolute;
  right: 8px;
}
.ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.45);
  font-style: normal;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow-icon,
:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  font-size: 12px;
}
.ant-dropdown-menu-item-group-list {
  margin: 0 8px;
  padding: 0;
  list-style: none;
}
.ant-dropdown-menu-submenu-title {
  padding-right: 26px;
}
.ant-dropdown-menu-submenu-vertical {
  position: relative;
}
.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 100%;
  margin-left: 4px;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-submenu.ant-dropdown-menu-submenu-disabled .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow-icon {
  color: rgba(0, 0, 0, 0.25);
  background-color: #fff;
  cursor: not-allowed;
}
.ant-dropdown-menu-submenu-selected .ant-dropdown-menu-submenu-title {
  color: #1890ff;
}
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-enter.slide-down-enter-active.ant-dropdown-placement-bottomRight,
.ant-dropdown.slide-down-appear.slide-down-appear-active.ant-dropdown-placement-bottomRight {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-enter.slide-up-enter-active.ant-dropdown-placement-topRight,
.ant-dropdown.slide-up-appear.slide-up-appear-active.ant-dropdown-placement-topRight {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomLeft,
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomCenter,
.ant-dropdown.slide-down-leave.slide-down-leave-active.ant-dropdown-placement-bottomRight {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topLeft,
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topCenter,
.ant-dropdown.slide-up-leave.slide-up-leave-active.ant-dropdown-placement-topRight {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.ant-dropdown-trigger > .anticon.anticon-down,
.ant-dropdown-link > .anticon.anticon-down {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-trigger > .anticon.anticon-down,
:root .ant-dropdown-link > .anticon.anticon-down {
  font-size: 12px;
}
.ant-dropdown-button {
  white-space: nowrap;
}
.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-dropdown-button .anticon.anticon-down {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
}
:root .ant-dropdown-button .anticon.anticon-down {
  font-size: 12px;
}
.ant-dropdown-menu-dark,
.ant-dropdown-menu-dark .ant-dropdown-menu {
  background: #001529;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow::after,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a .ant-dropdown-menu-submenu-arrow::after {
  color: rgba(255, 255, 255, 0.65);
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-submenu-title:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item > a:hover {
  color: #fff;
  background: transparent;
}
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected:hover,
.ant-dropdown-menu-dark .ant-dropdown-menu-item-selected > a {
  color: #fff;
  background: #1890ff;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-avatar {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  background: #ccc;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
}
.ant-avatar-image {
  background: transparent;
}
.ant-avatar-string {
  position: absolute;
  left: 50%;
  -webkit-transform-origin: 0 center;
          transform-origin: 0 center;
}
.ant-avatar.ant-avatar-icon {
  font-size: 18px;
}
.ant-avatar-lg {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.ant-avatar-lg-string {
  position: absolute;
  left: 50%;
  -webkit-transform-origin: 0 center;
          transform-origin: 0 center;
}
.ant-avatar-lg.ant-avatar-icon {
  font-size: 24px;
}
.ant-avatar-sm {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
}
.ant-avatar-sm-string {
  position: absolute;
  left: 50%;
  -webkit-transform-origin: 0 center;
          transform-origin: 0 center;
}
.ant-avatar-sm.ant-avatar-icon {
  font-size: 14px;
}
.ant-avatar-square {
  border-radius: 4px;
}
.ant-avatar > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-table-wrapper {
  zoom: 1;
}
.ant-table-wrapper::before,
.ant-table-wrapper::after {
  display: table;
  content: '';
}
.ant-table-wrapper::after {
  clear: both;
}
.ant-table {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  clear: both;
}
.ant-table-body {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ant-table-empty .ant-table-body {
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
.ant-table table {
  width: 100%;
  text-align: left;
  border-radius: 4px 4px 0 0;
  border-collapse: separate;
  border-spacing: 0;
}
.ant-table-layout-fixed table {
  table-layout: fixed;
}
.ant-table-thead > tr > th {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  text-align: left;
  background: #fafafa;
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-table-thead > tr > th[colspan]:not([colspan='1']) {
  text-align: center;
}
.ant-table-thead > tr > th .anticon-filter,
.ant-table-thead > tr > th .ant-table-filter-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 100%;
  color: #bfbfbf;
  font-size: 12px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-table-thead > tr > th .anticon-filter > svg,
.ant-table-thead > tr > th .ant-table-filter-icon > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -6px;
}
.ant-table-thead > tr > th .ant-table-filter-selected.anticon {
  color: #1890ff;
}
.ant-table-thead > tr > th .ant-table-column-sorter {
  display: table-cell;
  vertical-align: middle;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner {
  height: 1em;
  margin-top: 0.35em;
  margin-left: 0.57142857em;
  color: #bfbfbf;
  line-height: 1em;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down {
  display: inline-block;
  font-size: 12px;
  font-size: 11px \9;
  -webkit-transform: scale(0.91666667) rotate(0deg);
          transform: scale(0.91666667) rotate(0deg);
  display: block;
  height: 1em;
  line-height: 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up,
:root .ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down {
  font-size: 12px;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-up.on,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner .ant-table-column-sorter-down.on {
  color: #1890ff;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full {
  margin-top: -0.15em;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-up,
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down {
  height: 0.5em;
  line-height: 0.5em;
}
.ant-table-thead > tr > th .ant-table-column-sorter .ant-table-column-sorter-inner-full .ant-table-column-sorter-down {
  margin-top: 0.125em;
}
.ant-table-thead > tr > th.ant-table-column-has-actions {
  position: relative;
  background-clip: padding-box;
  /* stylelint-disable-next-line */
  -webkit-background-clip: border-box;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters {
  padding-right: 30px !important;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .anticon-filter.ant-table-filter-open,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters .ant-table-filter-icon.ant-table-filter-open {
  color: rgba(0, 0, 0, 0.45);
  background: #e5e5e5;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:hover,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:hover {
  color: rgba(0, 0, 0, 0.45);
  background: #e5e5e5;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .anticon-filter:active,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-filters:hover .ant-table-filter-icon:active {
  color: rgba(0, 0, 0, 0.65);
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters {
  cursor: pointer;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover {
  background: #f2f2f2;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .anticon-filter,
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:hover .ant-table-filter-icon {
  background: #f2f2f2;
}
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-up:not(.on),
.ant-table-thead > tr > th.ant-table-column-has-actions.ant-table-column-has-sorters:active .ant-table-column-sorter-down:not(.on) {
  color: rgba(0, 0, 0, 0.45);
}
.ant-table-thead > tr > th .ant-table-header-column {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters {
  display: table;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > .ant-table-column-title {
  display: table-cell;
  vertical-align: middle;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters > *:not(.ant-table-column-sorter) {
  position: relative;
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-table-thead > tr > th .ant-table-header-column .ant-table-column-sorters:hover::before {
  background: rgba(0, 0, 0, 0.04);
}
.ant-table-thead > tr > th.ant-table-column-has-sorters {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-table-thead > tr:first-child > th:first-child {
  border-top-left-radius: 4px;
}
.ant-table-thead > tr:first-child > th:last-child {
  border-top-right-radius: 4px;
}
.ant-table-thead > tr:not(:last-child) > th[colspan] {
  border-bottom: 0;
}
.ant-table-tbody > tr > td {
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition: all 0.3s, border 0s;
  transition: all 0.3s, border 0s;
}
.ant-table-thead > tr,
.ant-table-tbody > tr {
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.ant-table-thead > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-thead > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td,
.ant-table-tbody > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected) > td {
  background: #e6f7ff;
}
.ant-table-thead > tr.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-tbody > tr.ant-table-row-selected > td.ant-table-column-sort {
  background: #fafafa;
}
.ant-table-thead > tr:hover.ant-table-row-selected > td,
.ant-table-tbody > tr:hover.ant-table-row-selected > td {
  background: #fafafa;
}
.ant-table-thead > tr:hover.ant-table-row-selected > td.ant-table-column-sort,
.ant-table-tbody > tr:hover.ant-table-row-selected > td.ant-table-column-sort {
  background: #fafafa;
}
.ant-table-thead > tr:hover {
  background: none;
}
.ant-table-footer {
  position: relative;
  padding: 16px 16px;
  color: rgba(0, 0, 0, 0.85);
  background: #fafafa;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-table-footer::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fafafa;
  content: '';
}
.ant-table.ant-table-bordered .ant-table-footer {
  border: 1px solid #e8e8e8;
}
.ant-table-title {
  position: relative;
  top: 1px;
  padding: 16px 0;
  border-radius: 4px 4px 0 0;
}
.ant-table.ant-table-bordered .ant-table-title {
  padding-right: 16px;
  padding-left: 16px;
  border: 1px solid #e8e8e8;
}
.ant-table-title + .ant-table-content {
  position: relative;
  border-radius: 4px 4px 0 0;
}
.ant-table-bordered .ant-table-title + .ant-table-content,
.ant-table-bordered .ant-table-title + .ant-table-content table,
.ant-table-bordered .ant-table-title + .ant-table-content .ant-table-thead > tr:first-child > th {
  border-radius: 0;
}
.ant-table-without-column-header .ant-table-title + .ant-table-content,
.ant-table-without-column-header table {
  border-radius: 0;
}
.ant-table-without-column-header.ant-table-bordered.ant-table-empty .ant-table-placeholder {
  border-top: 1px solid #e8e8e8;
  border-radius: 4px;
}
.ant-table-tbody > tr.ant-table-row-selected td {
  color: inherit;
  background: #fafafa;
}
.ant-table-thead > tr > th.ant-table-column-sort {
  background: #f5f5f5;
}
.ant-table-tbody > tr > td.ant-table-column-sort {
  background: rgba(0, 0, 0, 0.01);
}
.ant-table-thead > tr > th,
.ant-table-tbody > tr > td {
  padding: 16px 16px;
  overflow-wrap: break-word;
}
.ant-table-expand-icon-th,
.ant-table-row-expand-icon-cell {
  width: 50px;
  min-width: 50px;
  text-align: center;
}
.ant-table-header {
  overflow: hidden;
  background: #fafafa;
}
.ant-table-header table {
  border-radius: 4px 4px 0 0;
}
.ant-table-loading {
  position: relative;
}
.ant-table-loading .ant-table-body {
  background: #fff;
  opacity: 0.5;
}
.ant-table-loading .ant-table-spin-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 20px;
  margin-left: -30px;
  line-height: 20px;
}
.ant-table-loading .ant-table-with-pagination {
  margin-top: -20px;
}
.ant-table-loading .ant-table-without-pagination {
  margin-top: 10px;
}
.ant-table-bordered .ant-table-header > table,
.ant-table-bordered .ant-table-body > table,
.ant-table-bordered .ant-table-fixed-left table,
.ant-table-bordered .ant-table-fixed-right table {
  border: 1px solid #e8e8e8;
  border-right: 0;
  border-bottom: 0;
}
.ant-table-bordered.ant-table-empty .ant-table-placeholder {
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-header > table {
  border-bottom: 0;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-body > table {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-header + .ant-table-body > table,
.ant-table-bordered.ant-table-fixed-header .ant-table-body-inner > table {
  border-top: 0;
}
.ant-table-bordered .ant-table-thead > tr:not(:last-child) > th {
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-bordered .ant-table-thead > tr > th,
.ant-table-bordered .ant-table-tbody > tr > td {
  border-right: 1px solid #e8e8e8;
}
.ant-table-placeholder {
  position: relative;
  z-index: 1;
  margin-top: -1px;
  padding: 16px 16px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.ant-table-pagination.ant-pagination {
  float: right;
  margin: 16px 0;
}
.ant-table-filter-dropdown {
  position: relative;
  min-width: 96px;
  margin-left: -8px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-table-filter-dropdown .ant-dropdown-menu {
  max-height: calc(100vh - 130px);
  overflow-x: hidden;
  border: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-table-filter-dropdown .ant-dropdown-menu-item > label + span {
  padding-right: 0;
}
.ant-table-filter-dropdown .ant-dropdown-menu-sub {
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-table-filter-dropdown .ant-dropdown-menu .ant-dropdown-submenu-contain-selected .ant-dropdown-menu-submenu-title::after {
  color: #1890ff;
  font-weight: bold;
  text-shadow: 0 0 2px #bae7ff;
}
.ant-table-filter-dropdown .ant-dropdown-menu-item {
  overflow: hidden;
}
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-item:last-child,
.ant-table-filter-dropdown > .ant-dropdown-menu > .ant-dropdown-menu-submenu:last-child .ant-dropdown-menu-submenu-title {
  border-radius: 0;
}
.ant-table-filter-dropdown-btns {
  padding: 7px 8px;
  overflow: hidden;
  border-top: 1px solid #e8e8e8;
}
.ant-table-filter-dropdown-link {
  color: #1890ff;
}
.ant-table-filter-dropdown-link:hover {
  color: #40a9ff;
}
.ant-table-filter-dropdown-link:active {
  color: #096dd9;
}
.ant-table-filter-dropdown-link.confirm {
  float: left;
}
.ant-table-filter-dropdown-link.clear {
  float: right;
}
.ant-table-selection {
  white-space: nowrap;
}
.ant-table-selection-select-all-custom {
  margin-right: 4px !important;
}
.ant-table-selection .anticon-down {
  color: #bfbfbf;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-table-selection-menu {
  min-width: 96px;
  margin-top: 5px;
  margin-left: -30px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-table-selection-menu .ant-action-down {
  color: #bfbfbf;
}
.ant-table-selection-down {
  display: inline-block;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}
.ant-table-selection-down:hover .anticon-down {
  color: rgba(0, 0, 0, 0.6);
}
.ant-table-row-expand-icon {
  color: #1890ff;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  display: inline-block;
  width: 17px;
  height: 17px;
  color: inherit;
  line-height: 13px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-table-row-expand-icon:focus,
.ant-table-row-expand-icon:hover {
  color: #40a9ff;
}
.ant-table-row-expand-icon:active {
  color: #096dd9;
}
.ant-table-row-expand-icon:focus,
.ant-table-row-expand-icon:hover,
.ant-table-row-expand-icon:active {
  border-color: currentColor;
}
.ant-table-row-expanded::after {
  content: '-';
}
.ant-table-row-collapsed::after {
  content: '+';
}
.ant-table-row-spaced {
  visibility: hidden;
}
.ant-table-row-spaced::after {
  content: '.';
}
.ant-table-row-cell-ellipsis,
.ant-table-row-cell-ellipsis .ant-table-column-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-table-row-cell-ellipsis .ant-table-column-title {
  display: block;
}
.ant-table-row-cell-break-word {
  word-wrap: break-word;
  word-break: break-word;
}
tr.ant-table-expanded-row,
tr.ant-table-expanded-row:hover {
  background: #fbfbfb;
}
tr.ant-table-expanded-row td > .ant-table-wrapper {
  margin: -16px -16px -17px;
}
.ant-table .ant-table-row-indent + .ant-table-row-expand-icon {
  margin-right: 8px;
}
.ant-table-scroll {
  overflow: auto;
  overflow-x: hidden;
}
.ant-table-scroll table {
  min-width: 100%;
}
.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) {
  color: transparent;
}
.ant-table-scroll table .ant-table-fixed-columns-in-body:not([colspan]) > * {
  visibility: hidden;
}
.ant-table-body-inner {
  height: 100%;
}
.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  position: relative;
  background: #fff;
}
.ant-table-fixed-header .ant-table-body-inner {
  overflow: scroll;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  margin-bottom: -20px;
  padding-bottom: 20px;
  overflow: scroll;
  opacity: 0.9999;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  border: 1px solid #e8e8e8;
  border-width: 0 0 1px 0;
}
.ant-table-hide-scrollbar {
  scrollbar-color: transparent transparent;
  min-width: unset;
}
.ant-table-hide-scrollbar::-webkit-scrollbar {
  min-width: inherit;
  background-color: transparent;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  border: 1px solid #e8e8e8;
  border-width: 1px 1px 1px 0;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead > tr:only-child > th:last-child {
  border-right-color: transparent;
}
.ant-table-fixed-left,
.ant-table-fixed-right {
  position: absolute;
  top: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.ant-table-fixed-left table,
.ant-table-fixed-right table {
  width: auto;
  background: #fff;
}
.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-outer .ant-table-fixed,
.ant-table-fixed-header .ant-table-fixed-right .ant-table-body-outer .ant-table-fixed {
  border-radius: 0;
}
.ant-table-fixed-left {
  left: 0;
  -webkit-box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
          box-shadow: 6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
.ant-table-fixed-left .ant-table-header {
  overflow-y: hidden;
}
.ant-table-fixed-left .ant-table-body-inner {
  margin-right: -20px;
  padding-right: 20px;
}
.ant-table-fixed-header .ant-table-fixed-left .ant-table-body-inner {
  padding-right: 0;
}
.ant-table-fixed-left,
.ant-table-fixed-left table {
  border-radius: 4px 0 0 0;
}
.ant-table-fixed-left .ant-table-thead > tr > th:last-child {
  border-top-right-radius: 0;
}
.ant-table-fixed-right {
  right: 0;
  -webkit-box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);
          box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
.ant-table-fixed-right,
.ant-table-fixed-right table {
  border-radius: 0 4px 0 0;
}
.ant-table-fixed-right .ant-table-expanded-row {
  color: transparent;
  pointer-events: none;
}
.ant-table-fixed-right .ant-table-thead > tr > th:first-child {
  border-top-left-radius: 0;
}
.ant-table.ant-table-scroll-position-left .ant-table-fixed-left {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-table.ant-table-scroll-position-right .ant-table-fixed-right {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-table colgroup > col.ant-table-selection-col {
  width: 60px;
}
.ant-table-thead > tr > th.ant-table-selection-column-custom .ant-table-selection {
  margin-right: -15px;
}
.ant-table-thead > tr > th.ant-table-selection-column,
.ant-table-tbody > tr > td.ant-table-selection-column {
  text-align: center;
}
.ant-table-thead > tr > th.ant-table-selection-column .ant-radio-wrapper,
.ant-table-tbody > tr > td.ant-table-selection-column .ant-radio-wrapper {
  margin-right: 0;
}
.ant-table-row[class*='ant-table-row-level-0'] .ant-table-selection-column > span {
  display: inline-block;
}
.ant-table-filter-dropdown .ant-checkbox-wrapper + span,
.ant-table-filter-dropdown-submenu .ant-checkbox-wrapper + span {
  padding-left: 8px;
}
/**
* Another fix of Firefox:
*/
@supports (-moz-appearance: meterbar) {
  .ant-table-thead > tr > th.ant-table-column-has-actions {
    background-clip: padding-box;
  }
}
.ant-table-middle > .ant-table-title,
.ant-table-middle > .ant-table-content > .ant-table-footer {
  padding: 12px 8px;
}
.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
.ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {
  padding: 12px 8px;
}
.ant-table-middle tr.ant-table-expanded-row td > .ant-table-wrapper {
  margin: -12px -8px -13px;
}
.ant-table-small {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.ant-table-small > .ant-table-title,
.ant-table-small > .ant-table-content > .ant-table-footer {
  padding: 8px 8px;
}
.ant-table-small > .ant-table-title {
  top: 0;
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-small > .ant-table-content > .ant-table-footer {
  background-color: transparent;
  border-top: 1px solid #e8e8e8;
}
.ant-table-small > .ant-table-content > .ant-table-footer::before {
  background-color: transparent;
}
.ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0 8px;
}
.ant-table-small > .ant-table-content > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {
  border: 0;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td {
  padding: 8px 8px;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th {
  background-color: transparent;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr {
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-small > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th.ant-table-column-sort {
  background-color: rgba(0, 0, 0, 0.01);
}
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table {
  padding: 0;
}
.ant-table-small > .ant-table-content .ant-table-header {
  background-color: transparent;
  border-radius: 4px 4px 0 0;
}
.ant-table-small > .ant-table-content .ant-table-placeholder,
.ant-table-small > .ant-table-content .ant-table-row:last-child td {
  border-bottom: 0;
}
.ant-table-small.ant-table-bordered {
  border-right: 0;
}
.ant-table-small.ant-table-bordered .ant-table-title {
  border: 0;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-content {
  border-right: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-footer {
  border: 0;
  border-top: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-footer::before {
  display: none;
}
.ant-table-small.ant-table-bordered .ant-table-placeholder {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}
.ant-table-small.ant-table-bordered .ant-table-thead > tr > th.ant-table-row-cell-last,
.ant-table-small.ant-table-bordered .ant-table-tbody > tr > td:last-child {
  border-right: none;
}
.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-thead > tr > th:last-child,
.ant-table-small.ant-table-bordered .ant-table-fixed-left .ant-table-tbody > tr > td:last-child {
  border-right: 1px solid #e8e8e8;
}
.ant-table-small.ant-table-bordered .ant-table-fixed-right {
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.ant-table-small tr.ant-table-expanded-row td > .ant-table-wrapper {
  margin: -8px -8px -9px;
}
.ant-table-small.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  border-radius: 0 0 4px 4px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-empty {
  margin: 0 8px;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.ant-empty-image {
  height: 100px;
  margin-bottom: 8px;
}
.ant-empty-image img {
  height: 100%;
}
.ant-empty-image svg {
  height: 100%;
  margin: auto;
}
.ant-empty-description {
  margin: 0;
}
.ant-empty-footer {
  margin-top: 16px;
}
.ant-empty-normal {
  margin: 32px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-normal .ant-empty-image {
  height: 40px;
}
.ant-empty-small {
  margin: 8px 0;
  color: rgba(0, 0, 0, 0.25);
}
.ant-empty-small .ant-empty-image {
  height: 35px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-radio-group {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-radio-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  margin-right: 8px;
  white-space: nowrap;
  cursor: pointer;
}
.ant-radio {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: sub;
  outline: none;
  cursor: pointer;
}
.ant-radio-wrapper:hover .ant-radio,
.ant-radio:hover .ant-radio-inner,
.ant-radio-input:focus + .ant-radio-inner {
  border-color: #1890ff;
}
.ant-radio-input:focus + .ant-radio-inner {
  -webkit-box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.08);
          box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.08);
}
.ant-radio-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1890ff;
  border-radius: 50%;
  visibility: hidden;
  -webkit-animation: antRadioEffect 0.36s ease-in-out;
          animation: antRadioEffect 0.36s ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  content: '';
}
.ant-radio:hover::after,
.ant-radio-wrapper:hover .ant-radio::after {
  visibility: visible;
}
.ant-radio-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 1px;
  border-radius: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-radio-inner::after {
  position: absolute;
  top: 3px;
  left: 3px;
  display: table;
  width: 8px;
  height: 8px;
  background-color: #1890ff;
  border-top: 0;
  border-left: 0;
  border-radius: 8px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: ' ';
}
.ant-radio-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.ant-radio-checked .ant-radio-inner {
  border-color: #1890ff;
}
.ant-radio-checked .ant-radio-inner::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-radio-disabled .ant-radio-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
  cursor: not-allowed;
}
.ant-radio-disabled .ant-radio-inner::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.ant-radio-disabled .ant-radio-input {
  cursor: not-allowed;
}
.ant-radio-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
span.ant-radio + * {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: 32px;
  margin: 0;
  padding: 0 15px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 30px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top-width: 1.02px;
  border-left: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s, background 0.3s, border-color 0.3s;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.ant-radio-button-wrapper a {
  color: rgba(0, 0, 0, 0.65);
}
.ant-radio-button-wrapper > .ant-radio-button {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0;
}
.ant-radio-group-large .ant-radio-button-wrapper {
  height: 40px;
  font-size: 16px;
  line-height: 38px;
}
.ant-radio-group-small .ant-radio-button-wrapper {
  height: 24px;
  padding: 0 7px;
  line-height: 22px;
}
.ant-radio-button-wrapper:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: -1px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #d9d9d9;
  content: '';
}
.ant-radio-button-wrapper:first-child {
  border-left: 1px solid #d9d9d9;
  border-radius: 4px 0 0 4px;
}
.ant-radio-button-wrapper:last-child {
  border-radius: 0 4px 4px 0;
}
.ant-radio-button-wrapper:first-child:last-child {
  border-radius: 4px;
}
.ant-radio-button-wrapper:hover {
  position: relative;
  color: #1890ff;
}
.ant-radio-button-wrapper:focus-within {
  outline: 3px solid rgba(24, 144, 255, 0.06);
}
.ant-radio-button-wrapper .ant-radio-inner,
.ant-radio-button-wrapper input[type='checkbox'],
.ant-radio-button-wrapper input[type='radio'] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  z-index: 1;
  color: #1890ff;
  background: #fff;
  border-color: #1890ff;
  -webkit-box-shadow: -1px 0 0 0 #1890ff;
          box-shadow: -1px 0 0 0 #1890ff;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled)::before {
  background-color: #1890ff !important;
  opacity: 0.1;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):first-child {
  border-color: #1890ff;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
  color: #40a9ff;
  border-color: #40a9ff;
  -webkit-box-shadow: -1px 0 0 0 #40a9ff;
          box-shadow: -1px 0 0 0 #40a9ff;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
  color: #096dd9;
  border-color: #096dd9;
  -webkit-box-shadow: -1px 0 0 0 #096dd9;
          box-shadow: -1px 0 0 0 #096dd9;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  outline: 3px solid rgba(24, 144, 255, 0.06);
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  color: #fff;
  background: #1890ff;
  border-color: #1890ff;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):hover {
  color: #fff;
  background: #40a9ff;
  border-color: #40a9ff;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):active {
  color: #fff;
  background: #096dd9;
  border-color: #096dd9;
}
.ant-radio-group-solid .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled):focus-within {
  outline: 3px solid rgba(24, 144, 255, 0.06);
}
.ant-radio-button-wrapper-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-radio-button-wrapper-disabled:first-child,
.ant-radio-button-wrapper-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
}
.ant-radio-button-wrapper-disabled:first-child {
  border-left-color: #d9d9d9;
}
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #d9d9d9;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@-webkit-keyframes antRadioEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes antRadioEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@supports (-moz-appearance: meterbar) and (background-blend-mode: difference, normal) {
  .ant-radio {
    vertical-align: text-bottom;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
@-webkit-keyframes antCheckboxEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes antCheckboxEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
.ant-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner,
.ant-checkbox:hover .ant-checkbox-inner,
.ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #1890ff;
}
.ant-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1890ff;
  border-radius: 2px;
  visibility: hidden;
  -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
          animation: antCheckboxEffect 0.36s ease-in-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  content: '';
}
.ant-checkbox:hover::after,
.ant-checkbox-wrapper:hover .ant-checkbox::after {
  visibility: visible;
}
.ant-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
          transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-checkbox-checked .ant-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
          transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #1890ff;
  border-color: #1890ff;
}
.ant-checkbox-disabled {
  cursor: not-allowed;
}
.ant-checkbox-disabled.ant-checkbox-checked .ant-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  -webkit-animation-name: none;
          animation-name: none;
}
.ant-checkbox-disabled .ant-checkbox-input {
  cursor: not-allowed;
}
.ant-checkbox-disabled .ant-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-checkbox-disabled .ant-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  -webkit-animation-name: none;
          animation-name: none;
}
.ant-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-checkbox-disabled:hover::after,
.ant-checkbox-wrapper:hover .ant-checkbox-disabled::after {
  visibility: hidden;
}
.ant-checkbox-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}
.ant-checkbox-wrapper.ant-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-checkbox-wrapper + .ant-checkbox-wrapper {
  margin-left: 8px;
}
.ant-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-checkbox-group {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-checkbox-group-item {
  display: inline-block;
  margin-right: 8px;
}
.ant-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-checkbox-group-item + .ant-checkbox-group-item {
  margin-left: 0;
}
.ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-checkbox-indeterminate .ant-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #1890ff;
  border: 0;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-checkbox-indeterminate.ant-checkbox-disabled .ant-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-pagination {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
}
.ant-pagination ul,
.ant-pagination ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-pagination::after {
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  content: ' ';
}
.ant-pagination-total-text {
  display: inline-block;
  height: 32px;
  margin-right: 8px;
  line-height: 30px;
  vertical-align: middle;
}
.ant-pagination-item {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  margin-right: 8px;
  font-family: Arial;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-pagination-item a {
  display: block;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.65);
  -webkit-transition: none;
  transition: none;
}
.ant-pagination-item a:hover {
  text-decoration: none;
}
.ant-pagination-item:focus,
.ant-pagination-item:hover {
  border-color: #1890ff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-pagination-item:focus a,
.ant-pagination-item:hover a {
  color: #1890ff;
}
.ant-pagination-item-active {
  font-weight: 500;
  background: #fff;
  border-color: #1890ff;
}
.ant-pagination-item-active a {
  color: #1890ff;
}
.ant-pagination-item-active:focus,
.ant-pagination-item-active:hover {
  border-color: #40a9ff;
}
.ant-pagination-item-active:focus a,
.ant-pagination-item-active:hover a {
  color: #40a9ff;
}
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  outline: 0;
}
.ant-pagination-jump-prev .ant-pagination-item-container,
.ant-pagination-jump-next .ant-pagination-item-container {
  position: relative;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
  display: inline-block;
  font-size: 12px;
  font-size: 12px \9;
  -webkit-transform: scale(1) rotate(0deg);
          transform: scale(1) rotate(0deg);
  color: #1890ff;
  letter-spacing: -1px;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
:root .ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon,
:root .ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon {
  font-size: 12px;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-link-icon-svg,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-link-icon-svg {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-pagination-jump-prev .ant-pagination-item-container .ant-pagination-item-ellipsis,
.ant-pagination-jump-next .ant-pagination-item-container .ant-pagination-item-ellipsis {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing: 2px;
  text-align: center;
  text-indent: 0.13em;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,
.ant-pagination-jump-next:focus .ant-pagination-item-link-icon,
.ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
.ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
  opacity: 1;
}
.ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,
.ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,
.ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
.ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
  opacity: 0;
}
.ant-pagination-prev,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  margin-right: 8px;
}
.ant-pagination-prev,
.ant-pagination-next,
.ant-pagination-jump-prev,
.ant-pagination-jump-next {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  color: rgba(0, 0, 0, 0.65);
  font-family: Arial;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-pagination-prev,
.ant-pagination-next {
  outline: 0;
}
.ant-pagination-prev a,
.ant-pagination-next a {
  color: rgba(0, 0, 0, 0.65);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-pagination-prev:hover a,
.ant-pagination-next:hover a {
  border-color: #40a9ff;
}
.ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-next .ant-pagination-item-link {
  display: block;
  height: 100%;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-pagination-prev:focus .ant-pagination-item-link,
.ant-pagination-next:focus .ant-pagination-item-link,
.ant-pagination-prev:hover .ant-pagination-item-link,
.ant-pagination-next:hover .ant-pagination-item-link {
  color: #1890ff;
  border-color: #1890ff;
}
.ant-pagination-disabled,
.ant-pagination-disabled:hover,
.ant-pagination-disabled:focus {
  cursor: not-allowed;
}
.ant-pagination-disabled a,
.ant-pagination-disabled:hover a,
.ant-pagination-disabled:focus a,
.ant-pagination-disabled .ant-pagination-item-link,
.ant-pagination-disabled:hover .ant-pagination-item-link,
.ant-pagination-disabled:focus .ant-pagination-item-link {
  color: rgba(0, 0, 0, 0.25);
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-pagination-slash {
  margin: 0 10px 0 5px;
}
.ant-pagination-options {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
}
.ant-pagination-options-size-changer.ant-select {
  display: inline-block;
  width: auto;
  margin-right: 8px;
}
.ant-pagination-options-quick-jumper {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  vertical-align: top;
}
.ant-pagination-options-quick-jumper input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 50px;
  margin: 0 8px;
}
.ant-pagination-options-quick-jumper input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-pagination-options-quick-jumper input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-pagination-options-quick-jumper input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-pagination-options-quick-jumper input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-pagination-options-quick-jumper input:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-pagination-options-quick-jumper input:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-pagination-options-quick-jumper input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-pagination-options-quick-jumper input-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-pagination-options-quick-jumper input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-pagination-options-quick-jumper input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
textarea.ant-pagination-options-quick-jumper input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.ant-pagination-options-quick-jumper input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-pagination-options-quick-jumper input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-pagination-simple .ant-pagination-prev,
.ant-pagination-simple .ant-pagination-next {
  height: 24px;
  line-height: 24px;
  vertical-align: top;
}
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link {
  height: 24px;
  border: 0;
}
.ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination-simple .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination-simple .ant-pagination-simple-pager {
  display: inline-block;
  height: 24px;
  margin-right: 8px;
}
.ant-pagination-simple .ant-pagination-simple-pager input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  margin-right: 8px;
  padding: 0 6px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.ant-pagination-simple .ant-pagination-simple-pager input:hover {
  border-color: #1890ff;
}
.ant-pagination.mini .ant-pagination-total-text,
.ant-pagination.mini .ant-pagination-simple-pager {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-item {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 22px;
}
.ant-pagination.mini .ant-pagination-item:not(.ant-pagination-item-active) {
  background: transparent;
  border-color: transparent;
}
.ant-pagination.mini .ant-pagination-prev,
.ant-pagination.mini .ant-pagination-next {
  min-width: 24px;
  height: 24px;
  margin: 0;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link,
.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link {
  background: transparent;
  border-color: transparent;
}
.ant-pagination.mini .ant-pagination-prev .ant-pagination-item-link::after,
.ant-pagination.mini .ant-pagination-next .ant-pagination-item-link::after {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-jump-prev,
.ant-pagination.mini .ant-pagination-jump-next {
  height: 24px;
  margin-right: 0;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-options {
  margin-left: 2px;
}
.ant-pagination.mini .ant-pagination-options-quick-jumper {
  height: 24px;
  line-height: 24px;
}
.ant-pagination.mini .ant-pagination-options-quick-jumper input {
  height: 24px;
  padding: 1px 7px;
  width: 44px;
}
.ant-pagination.ant-pagination-disabled {
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item {
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item a {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  border: none;
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active {
  background: #dbdbdb;
  border-color: transparent;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item-active a {
  color: #fff;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link,
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:hover,
.ant-pagination.ant-pagination-disabled .ant-pagination-item-link:focus {
  color: rgba(0, 0, 0, 0.45);
  background: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-link-icon,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-link-icon,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-link-icon,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-link-icon {
  opacity: 0;
}
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:focus .ant-pagination-item-ellipsis,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:focus .ant-pagination-item-ellipsis,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-prev:hover .ant-pagination-item-ellipsis,
.ant-pagination.ant-pagination-disabled .ant-pagination-jump-next:hover .ant-pagination-item-ellipsis {
  opacity: 1;
}
@media only screen and (max-width: 992px) {
  .ant-pagination-item-after-jump-prev,
  .ant-pagination-item-before-jump-next {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .ant-pagination-options {
    display: none;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  outline: 0;
}
.ant-select ul,
.ant-select ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-select > ul > li > a {
  padding: 0;
  background-color: #fff;
}
.ant-select-arrow {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 1;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.ant-select-arrow > * {
  line-height: 1;
}
.ant-select-arrow svg {
  display: inline-block;
}
.ant-select-arrow::before {
  display: none;
}
.ant-select-arrow .ant-select-arrow-icon {
  display: block;
}
.ant-select-arrow .ant-select-arrow-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-select-selection {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-top-width: 1.02px;
  border-radius: 4px;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-select-selection:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-select-focused .ant-select-selection,
.ant-select-selection:focus,
.ant-select-selection:active {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-select-selection__clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  font-style: normal;
  line-height: 12px;
  text-align: center;
  text-transform: none;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: color 0.3s ease, opacity 0.15s ease;
  transition: color 0.3s ease, opacity 0.15s ease;
  text-rendering: auto;
}
.ant-select-selection__clear::before {
  display: block;
}
.ant-select-selection__clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-select-selection:hover .ant-select-selection__clear {
  opacity: 1;
}
.ant-select-selection-selected-value {
  float: left;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-select-no-arrow .ant-select-selection-selected-value {
  padding-right: 0;
}
.ant-select-disabled {
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-disabled .ant-select-selection {
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-select-disabled .ant-select-selection:hover,
.ant-select-disabled .ant-select-selection:focus,
.ant-select-disabled .ant-select-selection:active {
  border-color: #d9d9d9;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-select-disabled .ant-select-selection__clear {
  display: none;
  visibility: hidden;
  pointer-events: none;
}
.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice {
  padding-right: 10px;
  color: rgba(0, 0, 0, 0.33);
  background: #f5f5f5;
}
.ant-select-disabled .ant-select-selection--multiple .ant-select-selection__choice__remove {
  display: none;
}
.ant-select-selection--single {
  position: relative;
  height: 32px;
  cursor: pointer;
}
.ant-select-selection--single .ant-select-selection__rendered {
  margin-right: 24px;
}
.ant-select-no-arrow .ant-select-selection__rendered {
  margin-right: 11px;
}
.ant-select-selection__rendered {
  position: relative;
  display: block;
  margin-right: 11px;
  margin-left: 11px;
  line-height: 30px;
}
.ant-select-selection__rendered::after {
  display: inline-block;
  width: 0;
  visibility: hidden;
  content: '.';
  pointer-events: none;
}
.ant-select-lg {
  font-size: 16px;
}
.ant-select-lg .ant-select-selection--single {
  height: 40px;
}
.ant-select-lg .ant-select-selection__rendered {
  line-height: 38px;
}
.ant-select-lg .ant-select-selection--multiple {
  min-height: 40px;
}
.ant-select-lg .ant-select-selection--multiple .ant-select-selection__rendered li {
  height: 32px;
  line-height: 32px;
}
.ant-select-lg .ant-select-selection--multiple .ant-select-selection__clear,
.ant-select-lg .ant-select-selection--multiple .ant-select-arrow {
  top: 20px;
}
.ant-select-sm .ant-select-selection--single {
  height: 24px;
}
.ant-select-sm .ant-select-selection__rendered {
  margin-left: 7px;
  line-height: 22px;
}
.ant-select-sm .ant-select-selection--multiple {
  min-height: 24px;
}
.ant-select-sm .ant-select-selection--multiple .ant-select-selection__rendered li {
  height: 16px;
  line-height: 14px;
}
.ant-select-sm .ant-select-selection--multiple .ant-select-selection__clear,
.ant-select-sm .ant-select-selection--multiple .ant-select-arrow {
  top: 12px;
}
.ant-select-sm .ant-select-selection__clear,
.ant-select-sm .ant-select-arrow {
  right: 8px;
}
.ant-select-disabled .ant-select-selection__choice__remove {
  color: rgba(0, 0, 0, 0.25);
  cursor: default;
}
.ant-select-disabled .ant-select-selection__choice__remove:hover {
  color: rgba(0, 0, 0, 0.25);
}
.ant-select-search__field__wrap {
  position: relative;
  display: inline-block;
}
.ant-select-selection__placeholder,
.ant-select-search__field__placeholder {
  position: absolute;
  top: 50%;
  right: 9px;
  left: 0;
  max-width: 100%;
  height: 20px;
  margin-top: -10px;
  overflow: hidden;
  color: #bfbfbf;
  line-height: 20px;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
}
.ant-select-search__field__placeholder {
  left: 12px;
}
.ant-select-search__field__mirror {
  position: absolute;
  top: 0;
  left: 0;
  white-space: pre;
  opacity: 0;
  pointer-events: none;
}
.ant-select-search--inline {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ant-select-search--inline .ant-select-search__field__wrap {
  width: 100%;
  height: 100%;
}
.ant-select-search--inline .ant-select-search__field {
  width: 100%;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  background: transparent;
  border-width: 0;
  border-radius: 4px;
  outline: 0;
}
.ant-select-search--inline > i {
  float: right;
}
.ant-select-selection--multiple {
  min-height: 32px;
  padding-bottom: 3px;
  cursor: text;
  zoom: 1;
}
.ant-select-selection--multiple::before,
.ant-select-selection--multiple::after {
  display: table;
  content: '';
}
.ant-select-selection--multiple::after {
  clear: both;
}
.ant-select-selection--multiple .ant-select-search--inline {
  position: static;
  float: left;
  width: auto;
  max-width: 100%;
  padding: 0;
}
.ant-select-selection--multiple .ant-select-search--inline .ant-select-search__field {
  width: 0.75em;
  max-width: 100%;
  padding: 1px;
}
.ant-select-selection--multiple .ant-select-selection__rendered {
  height: auto;
  margin-bottom: -3px;
  margin-left: 5px;
}
.ant-select-selection--multiple .ant-select-selection__placeholder {
  margin-left: 6px;
}
.ant-select-selection--multiple > ul > li,
.ant-select-selection--multiple .ant-select-selection__rendered > ul > li {
  height: 24px;
  margin-top: 3px;
  line-height: 22px;
}
.ant-select-selection--multiple .ant-select-selection__choice {
  position: relative;
  float: left;
  max-width: 99%;
  margin-right: 4px;
  padding: 0 20px 0 10px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  cursor: default;
  -webkit-transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-select-selection--multiple .ant-select-selection__choice__disabled {
  padding: 0 10px;
}
.ant-select-selection--multiple .ant-select-selection__choice__content {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-select-selection--multiple .ant-select-selection__choice__remove {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: inherit;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
}
.ant-select-selection--multiple .ant-select-selection__choice__remove > * {
  line-height: 1;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove svg {
  display: inline-block;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove::before {
  display: none;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove .ant-select-selection--multiple .ant-select-selection__choice__remove-icon {
  display: block;
}
:root .ant-select-selection--multiple .ant-select-selection__choice__remove {
  font-size: 12px;
}
.ant-select-selection--multiple .ant-select-selection__choice__remove:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-select-selection--multiple .ant-select-selection__clear,
.ant-select-selection--multiple .ant-select-arrow {
  top: 16px;
}
.ant-select-allow-clear .ant-select-selection--multiple .ant-select-selection__rendered,
.ant-select-show-arrow .ant-select-selection--multiple .ant-select-selection__rendered {
  margin-right: 20px;
}
.ant-select-open .ant-select-arrow-icon svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ant-select-open .ant-select-selection {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-select-combobox .ant-select-arrow {
  display: none;
}
.ant-select-combobox .ant-select-search--inline {
  float: none;
  width: 100%;
  height: 100%;
}
.ant-select-combobox .ant-select-search__field__wrap {
  width: 100%;
  height: 100%;
}
.ant-select-combobox .ant-select-search__field {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
}
.ant-select-combobox.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered,
.ant-select-combobox.ant-select-show-arrow .ant-select-selection:hover .ant-select-selection__rendered {
  margin-right: 20px;
}
.ant-select-dropdown {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  top: -9999px;
  left: -9999px;
  z-index: 1050;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  font-variant: initial;
  background-color: #fff;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft,
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft,
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.ant-select-dropdown-hidden {
  display: none;
}
.ant-select-dropdown-menu {
  max-height: 250px;
  margin-bottom: 0;
  padding: 4px 0;
  padding-left: 0;
  overflow: auto;
  list-style: none;
  outline: none;
}
.ant-select-dropdown-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ant-select-dropdown-menu-item-group-list > .ant-select-dropdown-menu-item {
  padding-left: 20px;
}
.ant-select-dropdown-menu-item-group-title {
  height: 32px;
  padding: 0 12px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  line-height: 32px;
}
.ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:first-child:not(:last-child),
.ant-select-dropdown-menu-item-group:not(:last-child) .ant-select-dropdown-menu-item-group-list .ant-select-dropdown-menu-item:last-child {
  border-radius: 0;
}
.ant-select-dropdown-menu-item {
  position: relative;
  display: block;
  padding: 5px 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) {
  background-color: #e6f7ff;
}
.ant-select-dropdown-menu-item-selected {
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  background-color: #fafafa;
}
.ant-select-dropdown-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-dropdown-menu-item-disabled:hover {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled) {
  background-color: #e6f7ff;
}
.ant-select-dropdown-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item {
  padding-right: 32px;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item .ant-select-selected-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  color: transparent;
  font-weight: bold;
  font-size: 12px;
  text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item:hover .ant-select-selected-icon {
  color: rgba(0, 0, 0, 0.87);
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-disabled .ant-select-selected-icon {
  display: none;
}
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected .ant-select-selected-icon,
.ant-select-dropdown.ant-select-dropdown--multiple .ant-select-dropdown-menu-item-selected:hover .ant-select-selected-icon {
  display: inline-block;
  color: #1890ff;
}
.ant-select-dropdown--empty.ant-select-dropdown--multiple .ant-select-dropdown-menu-item {
  padding-right: 12px;
}
.ant-select-dropdown-container-open .ant-select-dropdown,
.ant-select-dropdown-open .ant-select-dropdown {
  display: block;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-divider {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  background: #e8e8e8;
}
.ant-divider,
.ant-divider-vertical {
  position: relative;
  top: -0.06em;
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin: 0 8px;
  vertical-align: middle;
}
.ant-divider-horizontal {
  display: block;
  clear: both;
  width: 100%;
  min-width: 100%;
  height: 1px;
  margin: 24px 0;
}
.ant-divider-horizontal.ant-divider-with-text-center,
.ant-divider-horizontal.ant-divider-with-text-left,
.ant-divider-horizontal.ant-divider-with-text-right {
  display: table;
  margin: 16px 0;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  background: transparent;
}
.ant-divider-horizontal.ant-divider-with-text-center::before,
.ant-divider-horizontal.ant-divider-with-text-left::before,
.ant-divider-horizontal.ant-divider-with-text-right::before,
.ant-divider-horizontal.ant-divider-with-text-center::after,
.ant-divider-horizontal.ant-divider-with-text-left::after,
.ant-divider-horizontal.ant-divider-with-text-right::after {
  position: relative;
  top: 50%;
  display: table-cell;
  width: 50%;
  border-top: 1px solid #e8e8e8;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  content: '';
}
.ant-divider-horizontal.ant-divider-with-text-left .ant-divider-inner-text,
.ant-divider-horizontal.ant-divider-with-text-right .ant-divider-inner-text {
  display: inline-block;
  padding: 0 10px;
}
.ant-divider-horizontal.ant-divider-with-text-left::before {
  top: 50%;
  width: 5%;
}
.ant-divider-horizontal.ant-divider-with-text-left::after {
  top: 50%;
  width: 95%;
}
.ant-divider-horizontal.ant-divider-with-text-right::before {
  top: 50%;
  width: 95%;
}
.ant-divider-horizontal.ant-divider-with-text-right::after {
  top: 50%;
  width: 5%;
}
.ant-divider-inner-text {
  display: inline-block;
  padding: 0 24px;
}
.ant-divider-dashed {
  background: none;
  border-color: #e8e8e8;
  border-style: dashed;
  border-width: 1px 0 0;
}
.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed {
  border-top: 0;
}
.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed::before,
.ant-divider-horizontal.ant-divider-with-text-center.ant-divider-dashed::after,
.ant-divider-horizontal.ant-divider-with-text-left.ant-divider-dashed::after,
.ant-divider-horizontal.ant-divider-with-text-right.ant-divider-dashed::after {
  border-style: dashed none none;
}
.ant-divider-vertical.ant-divider-dashed {
  border-width: 0 0 0 1px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-menu {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  margin-bottom: 0;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 0;
  list-style: none;
  background: #fff;
  outline: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: background 0.3s, width 0.2s;
  transition: background 0.3s, width 0.2s;
  zoom: 1;
}
.ant-menu::before,
.ant-menu::after {
  display: table;
  content: '';
}
.ant-menu::after {
  clear: both;
}
.ant-menu ul,
.ant-menu ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-menu-hidden {
  display: none;
}
.ant-menu-item-group-title {
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-menu-submenu,
.ant-menu-submenu-inline {
  -webkit-transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-selected {
  color: #1890ff;
}
.ant-menu-item:active,
.ant-menu-submenu-title:active {
  background: #e6f7ff;
}
.ant-menu-submenu .ant-menu-sub {
  cursor: initial;
  -webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item > a {
  display: block;
  color: rgba(0, 0, 0, 0.65);
}
.ant-menu-item > a:hover {
  color: #1890ff;
}
.ant-menu-item > a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  content: '';
}
.ant-menu-item > .ant-badge > a {
  color: rgba(0, 0, 0, 0.65);
}
.ant-menu-item > .ant-badge > a:hover {
  color: #1890ff;
}
.ant-menu-item-divider {
  height: 1px;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-menu-item:hover,
.ant-menu-item-active,
.ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open,
.ant-menu-submenu-active,
.ant-menu-submenu-title:hover {
  color: #1890ff;
}
.ant-menu-horizontal .ant-menu-item,
.ant-menu-horizontal .ant-menu-submenu {
  margin-top: -1px;
}
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu .ant-menu-submenu-title:hover {
  background-color: transparent;
}
.ant-menu-item-selected {
  color: #1890ff;
}
.ant-menu-item-selected > a,
.ant-menu-item-selected > a:hover {
  color: #1890ff;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #e6f7ff;
}
.ant-menu-inline,
.ant-menu-vertical,
.ant-menu-vertical-left {
  border-right: 1px solid #e8e8e8;
}
.ant-menu-vertical-right {
  border-left: 1px solid #e8e8e8;
}
.ant-menu-vertical.ant-menu-sub,
.ant-menu-vertical-left.ant-menu-sub,
.ant-menu-vertical-right.ant-menu-sub {
  min-width: 160px;
  padding: 0;
  border-right: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item::after,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-vertical.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-item,
.ant-menu-vertical.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-left.ant-menu-sub > .ant-menu-submenu,
.ant-menu-vertical-right.ant-menu-sub > .ant-menu-submenu {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}
.ant-menu-horizontal.ant-menu-sub {
  min-width: 114px;
}
.ant-menu-item,
.ant-menu-submenu-title {
  position: relative;
  display: block;
  margin: 0;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), padding 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .anticon,
.ant-menu-submenu-title .anticon {
  min-width: 14px;
  margin-right: 10px;
  font-size: 14px;
  -webkit-transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: font-size 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-item .anticon + span,
.ant-menu-submenu-title .anticon + span {
  opacity: 1;
  -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu > .ant-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  background-color: #e8e8e8;
}
.ant-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
  background: #fff;
  border-radius: 4px;
}
.ant-menu-submenu-popup .submenu-title-wrapper {
  padding-right: 20px;
}
.ant-menu-submenu-popup::before {
  position: absolute;
  top: -7px;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.0001;
  content: ' ';
}
.ant-menu-submenu > .ant-menu {
  background-color: #fff;
  border-radius: 4px;
}
.ant-menu-submenu > .ant-menu-submenu-title::after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  position: absolute;
  width: 6px;
  height: 1.5px;
  background: #fff;
  background: rgba(0, 0, 0, 0.65) \9;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0.65)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  background-image: none \9;
  border-radius: 2px;
  -webkit-transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  content: '';
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  -webkit-transform: rotate(45deg) translateY(-2px);
          transform: rotate(45deg) translateY(-2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  -webkit-transform: rotate(-45deg) translateY(2px);
          transform: rotate(-45deg) translateY(2px);
}
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::after,
.ant-menu-submenu-vertical > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-left > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-vertical-right > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before,
.ant-menu-submenu-inline > .ant-menu-submenu-title:hover .ant-menu-submenu-arrow::before {
  background: -webkit-gradient(linear, left top, right top, from(#1890ff), to(#1890ff));
  background: linear-gradient(to right, #1890ff, #1890ff);
}
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  -webkit-transform: rotate(-45deg) translateX(2px);
          transform: rotate(-45deg) translateX(2px);
}
.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  -webkit-transform: rotate(45deg) translateX(-2px);
          transform: rotate(45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::after {
  -webkit-transform: rotate(-45deg) translateX(-2px);
          transform: rotate(-45deg) translateX(-2px);
}
.ant-menu-submenu-open.ant-menu-submenu-inline > .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  -webkit-transform: rotate(45deg) translateX(2px);
          transform: rotate(45deg) translateX(2px);
}
.ant-menu-vertical .ant-menu-submenu-selected,
.ant-menu-vertical-left .ant-menu-submenu-selected,
.ant-menu-vertical-right .ant-menu-submenu-selected {
  color: #1890ff;
}
.ant-menu-vertical .ant-menu-submenu-selected > a,
.ant-menu-vertical-left .ant-menu-submenu-selected > a,
.ant-menu-vertical-right .ant-menu-submenu-selected > a {
  color: #1890ff;
}
.ant-menu-horizontal {
  line-height: 46px;
  white-space: nowrap;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-menu-horizontal > .ant-menu-item,
.ant-menu-horizontal > .ant-menu-submenu {
  position: relative;
  top: 1px;
  display: inline-block;
  vertical-align: bottom;
  border-bottom: 2px solid transparent;
}
.ant-menu-horizontal > .ant-menu-item:hover,
.ant-menu-horizontal > .ant-menu-submenu:hover,
.ant-menu-horizontal > .ant-menu-item-active,
.ant-menu-horizontal > .ant-menu-submenu-active,
.ant-menu-horizontal > .ant-menu-item-open,
.ant-menu-horizontal > .ant-menu-submenu-open,
.ant-menu-horizontal > .ant-menu-item-selected,
.ant-menu-horizontal > .ant-menu-submenu-selected {
  color: #1890ff;
  border-bottom: 2px solid #1890ff;
}
.ant-menu-horizontal > .ant-menu-item > a {
  display: block;
  color: rgba(0, 0, 0, 0.65);
}
.ant-menu-horizontal > .ant-menu-item > a:hover {
  color: #1890ff;
}
.ant-menu-horizontal > .ant-menu-item > a::before {
  bottom: -2px;
}
.ant-menu-horizontal > .ant-menu-item-selected > a {
  color: #1890ff;
}
.ant-menu-horizontal::after {
  display: block;
  clear: both;
  height: 0;
  content: ' ';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item {
  position: relative;
}
.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 3px solid #1890ff;
  -webkit-transform: scaleY(0.0001);
          transform: scaleY(0.0001);
  opacity: 0;
  -webkit-transition: opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: '';
}
.ant-menu-vertical .ant-menu-item,
.ant-menu-vertical-left .ant-menu-item,
.ant-menu-vertical-right .ant-menu-item,
.ant-menu-inline .ant-menu-item,
.ant-menu-vertical .ant-menu-submenu-title,
.ant-menu-vertical-left .ant-menu-submenu-title,
.ant-menu-vertical-right .ant-menu-submenu-title,
.ant-menu-inline .ant-menu-submenu-title {
  height: 40px;
  margin-top: 4px;
  margin-bottom: 4px;
  padding: 0 16px;
  overflow: hidden;
  font-size: 14px;
  line-height: 40px;
  text-overflow: ellipsis;
}
.ant-menu-vertical .ant-menu-submenu,
.ant-menu-vertical-left .ant-menu-submenu,
.ant-menu-vertical-right .ant-menu-submenu,
.ant-menu-inline .ant-menu-submenu {
  padding-bottom: 0.02px;
}
.ant-menu-vertical .ant-menu-item:not(:last-child),
.ant-menu-vertical-left .ant-menu-item:not(:last-child),
.ant-menu-vertical-right .ant-menu-item:not(:last-child),
.ant-menu-inline .ant-menu-item:not(:last-child) {
  margin-bottom: 8px;
}
.ant-menu-vertical > .ant-menu-item,
.ant-menu-vertical-left > .ant-menu-item,
.ant-menu-vertical-right > .ant-menu-item,
.ant-menu-inline > .ant-menu-item,
.ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
}
.ant-menu-inline {
  width: 100%;
}
.ant-menu-inline .ant-menu-selected::after,
.ant-menu-inline .ant-menu-item-selected::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  -webkit-transition: opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-menu-inline .ant-menu-item,
.ant-menu-inline .ant-menu-submenu-title {
  width: calc(100% + 1px);
}
.ant-menu-inline .ant-menu-submenu-title {
  padding-right: 34px;
}
.ant-menu-inline-collapsed {
  width: 80px;
}
.ant-menu-inline-collapsed > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title {
  left: 0;
  padding: 0 32px !important;
  text-overflow: clip;
}
.ant-menu-inline-collapsed > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .ant-menu-submenu-arrow {
  display: none;
}
.ant-menu-inline-collapsed > .ant-menu-item .anticon,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon {
  margin: 0;
  font-size: 16px;
  line-height: 40px;
}
.ant-menu-inline-collapsed > .ant-menu-item .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title .anticon + span {
  display: inline-block;
  max-width: 0;
  opacity: 0;
}
.ant-menu-inline-collapsed-tooltip {
  pointer-events: none;
}
.ant-menu-inline-collapsed-tooltip .anticon {
  display: none;
}
.ant-menu-inline-collapsed-tooltip a {
  color: rgba(255, 255, 255, 0.85);
}
.ant-menu-inline-collapsed .ant-menu-item-group-title {
  padding-right: 4px;
  padding-left: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-menu-item-group-list {
  margin: 0;
  padding: 0;
}
.ant-menu-item-group-list .ant-menu-item,
.ant-menu-item-group-list .ant-menu-submenu-title {
  padding: 0 16px 0 28px;
}
.ant-menu-root.ant-menu-vertical,
.ant-menu-root.ant-menu-vertical-left,
.ant-menu-root.ant-menu-vertical-right,
.ant-menu-root.ant-menu-inline {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-menu-sub.ant-menu-inline {
  padding: 0;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-menu-sub.ant-menu-inline > .ant-menu-item,
.ant-menu-sub.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  height: 40px;
  line-height: 40px;
  list-style-position: inside;
  list-style-type: disc;
}
.ant-menu-sub.ant-menu-inline .ant-menu-item-group-title {
  padding-left: 32px;
}
.ant-menu-item-disabled,
.ant-menu-submenu-disabled {
  color: rgba(0, 0, 0, 0.25) !important;
  background: none;
  border-color: transparent !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled > a,
.ant-menu-submenu-disabled > a {
  color: rgba(0, 0, 0, 0.25) !important;
  pointer-events: none;
}
.ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(0, 0, 0, 0.25) !important;
  cursor: not-allowed;
}
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(0, 0, 0, 0.25) !important;
}
.ant-menu-dark,
.ant-menu-dark .ant-menu-sub {
  color: rgba(255, 255, 255, 0.65);
  background: #001529;
}
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow {
  opacity: 0.45;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-sub .ant-menu-submenu-title .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark.ant-menu-submenu-popup {
  background: transparent;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
  background: #000c17;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) inset;
}
.ant-menu-dark.ant-menu-horizontal {
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item,
.ant-menu-dark.ant-menu-horizontal > .ant-menu-submenu {
  top: 0;
  margin-top: 0;
  border-color: #001529;
  border-bottom: 0;
}
.ant-menu-dark.ant-menu-horizontal > .ant-menu-item > a::before {
  bottom: 0;
}
.ant-menu-dark .ant-menu-item,
.ant-menu-dark .ant-menu-item-group-title,
.ant-menu-dark .ant-menu-item > a {
  color: rgba(255, 255, 255, 0.65);
}
.ant-menu-dark.ant-menu-inline,
.ant-menu-dark.ant-menu-vertical,
.ant-menu-dark.ant-menu-vertical-left,
.ant-menu-dark.ant-menu-vertical-right {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-vertical .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item {
  left: 0;
  margin-left: 0;
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-dark.ant-menu-vertical-right .ant-menu-item::after {
  border-right: 0;
}
.ant-menu-dark.ant-menu-inline .ant-menu-item,
.ant-menu-dark.ant-menu-inline .ant-menu-submenu-title {
  width: 100%;
}
.ant-menu-dark .ant-menu-item:hover,
.ant-menu-dark .ant-menu-item-active,
.ant-menu-dark .ant-menu-submenu-active,
.ant-menu-dark .ant-menu-submenu-open,
.ant-menu-dark .ant-menu-submenu-selected,
.ant-menu-dark .ant-menu-submenu-title:hover {
  color: #fff;
  background-color: transparent;
}
.ant-menu-dark .ant-menu-item:hover > a,
.ant-menu-dark .ant-menu-item-active > a,
.ant-menu-dark .ant-menu-submenu-active > a,
.ant-menu-dark .ant-menu-submenu-open > a,
.ant-menu-dark .ant-menu-submenu-selected > a,
.ant-menu-dark .ant-menu-submenu-title:hover > a {
  color: #fff;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow {
  opacity: 1;
}
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-active > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-open > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-selected > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-title:hover > .ant-menu-submenu-title:hover > .ant-menu-submenu-arrow::before {
  background: #fff;
}
.ant-menu-dark .ant-menu-item:hover {
  background-color: transparent;
}
.ant-menu-dark .ant-menu-item-selected {
  color: #fff;
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected::after {
  border-right: 0;
}
.ant-menu-dark .ant-menu-item-selected > a,
.ant-menu-dark .ant-menu-item-selected > a:hover {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .anticon {
  color: #fff;
}
.ant-menu-dark .ant-menu-item-selected .anticon + span {
  color: #fff;
}
.ant-menu.ant-menu-dark .ant-menu-item-selected,
.ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #1890ff;
}
.ant-menu-dark .ant-menu-item-disabled,
.ant-menu-dark .ant-menu-submenu-disabled,
.ant-menu-dark .ant-menu-item-disabled > a,
.ant-menu-dark .ant-menu-submenu-disabled > a {
  color: rgba(255, 255, 255, 0.35) !important;
  opacity: 0.8;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title {
  color: rgba(255, 255, 255, 0.35) !important;
}
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before,
.ant-menu-dark .ant-menu-item-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.ant-menu-dark .ant-menu-submenu-disabled > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after {
  background: rgba(255, 255, 255, 0.35) !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-tooltip {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1060;
  display: block;
  max-width: 250px;
  visibility: visible;
}
.ant-tooltip-hidden {
  display: none;
}
.ant-tooltip-placement-top,
.ant-tooltip-placement-topLeft,
.ant-tooltip-placement-topRight {
  padding-bottom: 8px;
}
.ant-tooltip-placement-right,
.ant-tooltip-placement-rightTop,
.ant-tooltip-placement-rightBottom {
  padding-left: 8px;
}
.ant-tooltip-placement-bottom,
.ant-tooltip-placement-bottomLeft,
.ant-tooltip-placement-bottomRight {
  padding-top: 8px;
}
.ant-tooltip-placement-left,
.ant-tooltip-placement-leftTop,
.ant-tooltip-placement-leftBottom {
  padding-right: 8px;
}
.ant-tooltip-inner {
  min-width: 30px;
  min-height: 32px;
  padding: 6px 8px;
  color: #fff;
  text-align: left;
  text-decoration: none;
  word-wrap: break-word;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-tooltip-arrow {
  position: absolute;
  display: block;
  width: 13.07106781px;
  height: 13.07106781px;
  overflow: hidden;
  background: transparent;
  pointer-events: none;
}
.ant-tooltip-arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.75);
  content: '';
  pointer-events: auto;
}
.ant-tooltip-placement-top .ant-tooltip-arrow,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow,
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  bottom: -5.07106781px;
}
.ant-tooltip-placement-top .ant-tooltip-arrow::before,
.ant-tooltip-placement-topLeft .ant-tooltip-arrow::before,
.ant-tooltip-placement-topRight .ant-tooltip-arrow::before {
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-6.53553391px) rotate(45deg);
          transform: translateY(-6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-top .ant-tooltip-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ant-tooltip-placement-topLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-topRight .ant-tooltip-arrow {
  right: 13px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  left: -5.07106781px;
}
.ant-tooltip-placement-right .ant-tooltip-arrow::before,
.ant-tooltip-placement-rightTop .ant-tooltip-arrow::before,
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow::before {
  -webkit-box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateX(6.53553391px) rotate(45deg);
          transform: translateX(6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-right .ant-tooltip-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ant-tooltip-placement-rightTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-rightBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  right: -5.07106781px;
}
.ant-tooltip-placement-left .ant-tooltip-arrow::before,
.ant-tooltip-placement-leftTop .ant-tooltip-arrow::before,
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow::before {
  -webkit-box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateX(-6.53553391px) rotate(45deg);
          transform: translateX(-6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-left .ant-tooltip-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ant-tooltip-placement-leftTop .ant-tooltip-arrow {
  top: 5px;
}
.ant-tooltip-placement-leftBottom .ant-tooltip-arrow {
  bottom: 5px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  top: -5.07106781px;
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow::before,
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow::before,
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow::before {
  -webkit-box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: -3px -3px 7px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(6.53553391px) rotate(45deg);
          transform: translateY(6.53553391px) rotate(45deg);
}
.ant-tooltip-placement-bottom .ant-tooltip-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ant-tooltip-placement-bottomLeft .ant-tooltip-arrow {
  left: 13px;
}
.ant-tooltip-placement-bottomRight .ant-tooltip-arrow {
  right: 13px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-tag {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
  height: auto;
  margin-right: 8px;
  padding: 0 7px;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  cursor: default;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-tag:hover {
  opacity: 0.85;
}
.ant-tag,
.ant-tag a,
.ant-tag a:hover {
  color: rgba(0, 0, 0, 0.65);
}
.ant-tag > a:first-child:last-child {
  display: inline-block;
  margin: 0 -8px;
  padding: 0 8px;
}
.ant-tag .anticon-close {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
:root .ant-tag .anticon-close {
  font-size: 12px;
}
.ant-tag .anticon-close:hover {
  color: rgba(0, 0, 0, 0.85);
}
.ant-tag-has-color {
  border-color: transparent;
}
.ant-tag-has-color,
.ant-tag-has-color a,
.ant-tag-has-color a:hover,
.ant-tag-has-color .anticon-close,
.ant-tag-has-color .anticon-close:hover {
  color: #fff;
}
.ant-tag-checkable {
  background-color: transparent;
  border-color: transparent;
}
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #1890ff;
}
.ant-tag-checkable:active,
.ant-tag-checkable-checked {
  color: #fff;
}
.ant-tag-checkable-checked {
  background-color: #1890ff;
}
.ant-tag-checkable:active {
  background-color: #096dd9;
}
.ant-tag-hidden {
  display: none;
}
.ant-tag-pink {
  color: #eb2f96;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-pink-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}
.ant-tag-magenta {
  color: #eb2f96;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-magenta-inverse {
  color: #fff;
  background: #eb2f96;
  border-color: #eb2f96;
}
.ant-tag-red {
  color: #f5222d;
  background: #fff1f0;
  border-color: #ffa39e;
}
.ant-tag-red-inverse {
  color: #fff;
  background: #f5222d;
  border-color: #f5222d;
}
.ant-tag-volcano {
  color: #fa541c;
  background: #fff2e8;
  border-color: #ffbb96;
}
.ant-tag-volcano-inverse {
  color: #fff;
  background: #fa541c;
  border-color: #fa541c;
}
.ant-tag-orange {
  color: #fa8c16;
  background: #fff7e6;
  border-color: #ffd591;
}
.ant-tag-orange-inverse {
  color: #fff;
  background: #fa8c16;
  border-color: #fa8c16;
}
.ant-tag-yellow {
  color: #fadb14;
  background: #feffe6;
  border-color: #fffb8f;
}
.ant-tag-yellow-inverse {
  color: #fff;
  background: #fadb14;
  border-color: #fadb14;
}
.ant-tag-gold {
  color: #faad14;
  background: #fffbe6;
  border-color: #ffe58f;
}
.ant-tag-gold-inverse {
  color: #fff;
  background: #faad14;
  border-color: #faad14;
}
.ant-tag-cyan {
  color: #13c2c2;
  background: #e6fffb;
  border-color: #87e8de;
}
.ant-tag-cyan-inverse {
  color: #fff;
  background: #13c2c2;
  border-color: #13c2c2;
}
.ant-tag-lime {
  color: #a0d911;
  background: #fcffe6;
  border-color: #eaff8f;
}
.ant-tag-lime-inverse {
  color: #fff;
  background: #a0d911;
  border-color: #a0d911;
}
.ant-tag-green {
  color: #52c41a;
  background: #f6ffed;
  border-color: #b7eb8f;
}
.ant-tag-green-inverse {
  color: #fff;
  background: #52c41a;
  border-color: #52c41a;
}
.ant-tag-blue {
  color: #1890ff;
  background: #e6f7ff;
  border-color: #91d5ff;
}
.ant-tag-blue-inverse {
  color: #fff;
  background: #1890ff;
  border-color: #1890ff;
}
.ant-tag-geekblue {
  color: #2f54eb;
  background: #f0f5ff;
  border-color: #adc6ff;
}
.ant-tag-geekblue-inverse {
  color: #fff;
  background: #2f54eb;
  border-color: #2f54eb;
}
.ant-tag-purple {
  color: #722ed1;
  background: #f9f0ff;
  border-color: #d3adf7;
}
.ant-tag-purple-inverse {
  color: #fff;
  background: #722ed1;
  border-color: #722ed1;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-popover {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1030;
  font-weight: normal;
  white-space: normal;
  text-align: left;
  cursor: auto;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
.ant-popover::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.01);
  content: '';
}
.ant-popover-hidden {
  display: none;
}
.ant-popover-placement-top,
.ant-popover-placement-topLeft,
.ant-popover-placement-topRight {
  padding-bottom: 10px;
}
.ant-popover-placement-right,
.ant-popover-placement-rightTop,
.ant-popover-placement-rightBottom {
  padding-left: 10px;
}
.ant-popover-placement-bottom,
.ant-popover-placement-bottomLeft,
.ant-popover-placement-bottomRight {
  padding-top: 10px;
}
.ant-popover-placement-left,
.ant-popover-placement-leftTop,
.ant-popover-placement-leftBottom {
  padding-right: 10px;
}
.ant-popover-inner {
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.15) \9;
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.15) \9;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ant-popover {
    /* IE10+ */
  }
  .ant-popover-inner {
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
}
.ant-popover-title {
  min-width: 177px;
  min-height: 32px;
  margin: 0;
  padding: 5px 16px 4px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
.ant-popover-inner-content {
  padding: 12px 16px;
  color: rgba(0, 0, 0, 0.65);
}
.ant-popover-message {
  position: relative;
  padding: 4px 0 12px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.ant-popover-message > .anticon {
  position: absolute;
  top: 8px;
  color: #faad14;
  font-size: 14px;
}
.ant-popover-message-title {
  padding-left: 22px;
}
.ant-popover-buttons {
  margin-bottom: 4px;
  text-align: right;
}
.ant-popover-buttons button {
  margin-left: 8px;
}
.ant-popover-arrow {
  position: absolute;
  display: block;
  width: 8.48528137px;
  height: 8.48528137px;
  background: transparent;
  border-style: solid;
  border-width: 4.24264069px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow {
  bottom: 6.2px;
  border-top-color: transparent;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-left-color: transparent;
  -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.07);
}
.ant-popover-placement-top > .ant-popover-content > .ant-popover-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.ant-popover-placement-topLeft > .ant-popover-content > .ant-popover-arrow {
  left: 16px;
}
.ant-popover-placement-topRight > .ant-popover-content > .ant-popover-arrow {
  right: 16px;
}
.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow {
  left: 6px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  -webkit-box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: -3px 3px 7px rgba(0, 0, 0, 0.07);
}
.ant-popover-placement-right > .ant-popover-content > .ant-popover-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.ant-popover-placement-rightTop > .ant-popover-content > .ant-popover-arrow {
  top: 12px;
}
.ant-popover-placement-rightBottom > .ant-popover-content > .ant-popover-arrow {
  bottom: 12px;
}
.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  top: 6px;
  border-top-color: #fff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff;
  -webkit-box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
          box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.06);
}
.ant-popover-placement-bottom > .ant-popover-content > .ant-popover-arrow {
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.ant-popover-placement-bottomLeft > .ant-popover-content > .ant-popover-arrow {
  left: 16px;
}
.ant-popover-placement-bottomRight > .ant-popover-content > .ant-popover-arrow {
  right: 16px;
}
.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow,
.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow {
  right: 6px;
  border-top-color: #fff;
  border-right-color: #fff;
  border-bottom-color: transparent;
  border-left-color: transparent;
  -webkit-box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
          box-shadow: 3px -3px 7px rgba(0, 0, 0, 0.07);
}
.ant-popover-placement-left > .ant-popover-content > .ant-popover-arrow {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.ant-popover-placement-leftTop > .ant-popover-content > .ant-popover-arrow {
  top: 12px;
}
.ant-popover-placement-leftBottom > .ant-popover-content > .ant-popover-arrow {
  bottom: 12px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-badge {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  color: unset;
  line-height: 1;
}
.ant-badge-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
  text-align: center;
  background: #f5222d;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 1px #fff;
          box-shadow: 0 0 0 1px #fff;
}
.ant-badge-count a,
.ant-badge-count a:hover {
  color: #fff;
}
.ant-badge-multiple-words {
  padding: 0 8px;
}
.ant-badge-dot {
  width: 6px;
  height: 6px;
  background: #f5222d;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 0 1px #fff;
          box-shadow: 0 0 0 1px #fff;
}
.ant-badge-count,
.ant-badge-dot,
.ant-badge .ant-scroll-number-custom-component {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}
.ant-badge-status {
  line-height: inherit;
  vertical-align: baseline;
}
.ant-badge-status-dot {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 6px;
  height: 6px;
  vertical-align: middle;
  border-radius: 50%;
}
.ant-badge-status-success {
  background-color: #52c41a;
}
.ant-badge-status-processing {
  position: relative;
  background-color: #1890ff;
}
.ant-badge-status-processing::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1890ff;
  border-radius: 50%;
  -webkit-animation: antStatusProcessing 1.2s infinite ease-in-out;
          animation: antStatusProcessing 1.2s infinite ease-in-out;
  content: '';
}
.ant-badge-status-default {
  background-color: #d9d9d9;
}
.ant-badge-status-error {
  background-color: #f5222d;
}
.ant-badge-status-warning {
  background-color: #faad14;
}
.ant-badge-status-pink {
  background: #eb2f96;
}
.ant-badge-status-magenta {
  background: #eb2f96;
}
.ant-badge-status-red {
  background: #f5222d;
}
.ant-badge-status-volcano {
  background: #fa541c;
}
.ant-badge-status-orange {
  background: #fa8c16;
}
.ant-badge-status-yellow {
  background: #fadb14;
}
.ant-badge-status-gold {
  background: #faad14;
}
.ant-badge-status-cyan {
  background: #13c2c2;
}
.ant-badge-status-lime {
  background: #a0d911;
}
.ant-badge-status-green {
  background: #52c41a;
}
.ant-badge-status-blue {
  background: #1890ff;
}
.ant-badge-status-geekblue {
  background: #2f54eb;
}
.ant-badge-status-purple {
  background: #722ed1;
}
.ant-badge-status-text {
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.ant-badge-zoom-appear,
.ant-badge-zoom-enter {
  -webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
          animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ant-badge-zoom-leave {
  -webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
          animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ant-badge-not-a-wrapper:not(.ant-badge-status) {
  vertical-align: middle;
}
.ant-badge-not-a-wrapper .ant-scroll-number {
  position: relative;
  top: auto;
  display: block;
}
.ant-badge-not-a-wrapper .ant-badge-count {
  -webkit-transform: none;
          transform: none;
}
@-webkit-keyframes antStatusProcessing {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
    opacity: 0;
  }
}
@keyframes antStatusProcessing {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
    opacity: 0;
  }
}
.ant-scroll-number {
  overflow: hidden;
}
.ant-scroll-number-only {
  display: inline-block;
  height: 20px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ant-scroll-number-only > p.ant-scroll-number-only-unit {
  height: 20px;
  margin: 0;
}
.ant-scroll-number-symbol {
  vertical-align: top;
}
@-webkit-keyframes antZoomBadgeIn {
  0% {
    -webkit-transform: scale(0) translate(50%, -50%);
            transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translate(50%, -50%);
            transform: scale(1) translate(50%, -50%);
  }
}
@keyframes antZoomBadgeIn {
  0% {
    -webkit-transform: scale(0) translate(50%, -50%);
            transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translate(50%, -50%);
            transform: scale(1) translate(50%, -50%);
  }
}
@-webkit-keyframes antZoomBadgeOut {
  0% {
    -webkit-transform: scale(1) translate(50%, -50%);
            transform: scale(1) translate(50%, -50%);
  }
  100% {
    -webkit-transform: scale(0) translate(50%, -50%);
            transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
}
@keyframes antZoomBadgeOut {
  0% {
    -webkit-transform: scale(1) translate(50%, -50%);
            transform: scale(1) translate(50%, -50%);
  }
  100% {
    -webkit-transform: scale(0) translate(50%, -50%);
            transform: scale(0) translate(50%, -50%);
    opacity: 0;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
}
.ant-list * {
  outline: none;
}
.ant-list-pagination {
  margin-top: 24px;
  text-align: right;
}
.ant-list-pagination .ant-pagination-options {
  text-align: left;
}
.ant-list-more {
  margin-top: 12px;
  text-align: center;
}
.ant-list-more button {
  padding-right: 32px;
  padding-left: 32px;
}
.ant-list-spin {
  min-height: 40px;
  text-align: center;
}
.ant-list-empty-text {
  padding: 16px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  text-align: center;
}
.ant-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 12px 0;
}
.ant-list-item-content {
  color: rgba(0, 0, 0, 0.65);
}
.ant-list-item-meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1;
      flex: 1 1;
  -ms-flex-align: start;
      align-items: flex-start;
  font-size: 0;
}
.ant-list-item-meta-avatar {
  margin-right: 16px;
}
.ant-list-item-meta-content {
  -ms-flex: 1 0;
      flex: 1 0;
}
.ant-list-item-meta-title {
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 22px;
}
.ant-list-item-meta-title > a {
  color: rgba(0, 0, 0, 0.65);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-list-item-meta-title > a:hover {
  color: #1890ff;
}
.ant-list-item-meta-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
}
.ant-list-item-action {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-left: 48px;
  padding: 0;
  font-size: 0;
  list-style: none;
}
.ant-list-item-action > li {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
}
.ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-item-action-split {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 14px;
  margin-top: -7px;
  background-color: #e8e8e8;
}
.ant-list-header {
  background: transparent;
}
.ant-list-footer {
  background: transparent;
}
.ant-list-header,
.ant-list-footer {
  padding-top: 12px;
  padding-bottom: 12px;
}
.ant-list-empty {
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  text-align: center;
}
.ant-list-split .ant-list-item {
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-split .ant-list-item:last-child {
  border-bottom: none;
}
.ant-list-split .ant-list-header {
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-loading .ant-list-spin-nested-loading {
  min-height: 32px;
}
.ant-list-something-after-last-item .ant-spin-container > .ant-list-items > .ant-list-item:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-lg .ant-list-item {
  padding-top: 16px;
  padding-bottom: 16px;
}
.ant-list-sm .ant-list-item {
  padding-top: 8px;
  padding-bottom: 8px;
}
.ant-list-vertical .ant-list-item {
  -ms-flex-align: initial;
      align-items: initial;
}
.ant-list-vertical .ant-list-item-main {
  display: block;
  -ms-flex: 1 1;
      flex: 1 1;
}
.ant-list-vertical .ant-list-item-extra {
  margin-left: 40px;
}
.ant-list-vertical .ant-list-item-meta {
  margin-bottom: 16px;
}
.ant-list-vertical .ant-list-item-meta-title {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  line-height: 24px;
}
.ant-list-vertical .ant-list-item-action {
  margin-top: 16px;
  margin-left: auto;
}
.ant-list-vertical .ant-list-item-action > li {
  padding: 0 16px;
}
.ant-list-vertical .ant-list-item-action > li:first-child {
  padding-left: 0;
}
.ant-list-grid .ant-col > .ant-list-item {
  display: block;
  max-width: 100%;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.ant-list-item-no-flex {
  display: block;
}
.ant-list:not(.ant-list-vertical) .ant-list-item-no-flex .ant-list-item-action {
  float: right;
}
.ant-list-bordered {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-list-bordered .ant-list-header {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-footer {
  padding-right: 24px;
  padding-left: 24px;
}
.ant-list-bordered .ant-list-item {
  padding-right: 24px;
  padding-left: 24px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-list-bordered .ant-list-pagination {
  margin: 16px 24px;
}
.ant-list-bordered.ant-list-sm .ant-list-item {
  padding-right: 16px;
  padding-left: 16px;
}
.ant-list-bordered.ant-list-sm .ant-list-header,
.ant-list-bordered.ant-list-sm .ant-list-footer {
  padding: 8px 16px;
}
.ant-list-bordered.ant-list-lg .ant-list-header,
.ant-list-bordered.ant-list-lg .ant-list-footer {
  padding: 16px 24px;
}
@media screen and (max-width: 768px) {
  .ant-list-item-action {
    margin-left: 24px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin-left: 24px;
  }
}
@media screen and (max-width: 576px) {
  .ant-list-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ant-list-item-action {
    margin-left: 12px;
  }
  .ant-list-vertical .ant-list-item {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .ant-list-vertical .ant-list-item-main {
    min-width: 220px;
  }
  .ant-list-vertical .ant-list-item-extra {
    margin: auto auto 16px;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.list___dBoGk {
  max-height: 400px;
  overflow: auto;
}
.list___dBoGk .item___2Q9cc {
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
  cursor: pointer;
  padding-left: 24px;
  padding-right: 24px;
}
.list___dBoGk .item___2Q9cc .meta___2TuCW {
  width: 100%;
}
.list___dBoGk .item___2Q9cc .avatar___JIM8k {
  background: #fff;
  margin-top: 4px;
}
.list___dBoGk .item___2Q9cc.read___2CBMV {
  opacity: .4;
}
.list___dBoGk .item___2Q9cc:last-child {
  border-bottom: 0;
}
.list___dBoGk .item___2Q9cc:hover {
  background: #e6f7ff;
}
.list___dBoGk .item___2Q9cc .title___1EJ3D {
  font-weight: normal;
  margin-bottom: 8px;
}
.list___dBoGk .item___2Q9cc .description___2Vi4T {
  font-size: 12px;
  line-height: 1.5;
}
.list___dBoGk .item___2Q9cc .datetime___10cEB {
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.5;
}
.list___dBoGk .item___2Q9cc .extra___18k2K {
  float: right;
  color: rgba(0, 0, 0, 0.45);
  font-weight: normal;
  margin-right: 0;
  margin-top: -1.5px;
}
.notFound___3XZm8 {
  text-align: center;
  padding: 73px 0 88px 0;
  color: rgba(0, 0, 0, 0.45);
}
.notFound___3XZm8 img {
  display: inline-block;
  margin-bottom: 16px;
  height: 76px;
}
.clear___2CEXh {
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #e8e8e8;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}
.clear___2CEXh:hover {
  color: rgba(0, 0, 0, 0.85);
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.popover___1lOwT {
  width: 336px;
}
.popover___1lOwT .ant-popover-inner-content {
  padding: 0;
}
.noticeButton___1BQ9R {
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #fff;
}
.noticeButton___1BQ9R:hover {
  color: #000;
}
.noticeButton___1BQ9R:hover .badge___2-cmQ {
  color: #000;
}
.badge___2-cmQ {
  color: #fff;
}
.icon___2PleP {
  font-size: 16px;
  padding: 4px;
}
.tabs___nQO6L .ant-tabs-nav-scroll {
  text-align: center;
}
.tabs___nQO6L .ant-tabs-bar {
  margin-bottom: 4px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-select-auto-complete {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
}
.ant-select-auto-complete.ant-select .ant-select-selection {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-select-auto-complete.ant-select .ant-select-selection__rendered {
  height: 100%;
  margin-right: 0;
  margin-left: 0;
  line-height: 32px;
}
.ant-select-auto-complete.ant-select .ant-select-selection__placeholder {
  margin-right: 12px;
  margin-left: 12px;
}
.ant-select-auto-complete.ant-select .ant-select-selection--single {
  height: auto;
}
.ant-select-auto-complete.ant-select .ant-select-search--inline {
  position: static;
  float: left;
}
.ant-select-auto-complete.ant-select-allow-clear .ant-select-selection:hover .ant-select-selection__rendered {
  margin-right: 0 !important;
}
.ant-select-auto-complete.ant-select .ant-input {
  height: 32px;
  line-height: 1.5;
  background: transparent;
  border-width: 1px;
}
.ant-select-auto-complete.ant-select .ant-input:focus,
.ant-select-auto-complete.ant-select .ant-input:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-select-auto-complete.ant-select .ant-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
  background-color: transparent;
}
.ant-select-auto-complete.ant-select .ant-input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-select-auto-complete.ant-select-lg .ant-select-selection__rendered {
  line-height: 40px;
}
.ant-select-auto-complete.ant-select-lg .ant-input {
  height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.ant-select-auto-complete.ant-select-sm .ant-select-selection__rendered {
  line-height: 24px;
}
.ant-select-auto-complete.ant-select-sm .ant-input {
  height: 24px;
  padding-top: 1px;
  padding-bottom: 1px;
}
.ant-input-group > .ant-select-auto-complete .ant-select-search__field.ant-input-affix-wrapper {
  display: inline;
  float: none;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.headerSearch___1yNxp .anticon-search {
  cursor: pointer;
  font-size: 16px;
}
.headerSearch___1yNxp .icon___2VgW9:hover {
  color: #fff;
}
.headerSearch___1yNxp .input___3Zg3O {
  -webkit-transition: width 0.3s, margin-left 0.3s;
  transition: width 0.3s, margin-left 0.3s;
  width: 0;
  background: #fff;
  border-radius: 0;
  height: 33px;
}
.headerSearch___1yNxp .input___3Zg3O .ant-select-selection {
  background: transparent;
}
.headerSearch___1yNxp .input___3Zg3O input {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.headerSearch___1yNxp .input___3Zg3O.show___2tiHk {
  width: 210px;
  margin-left: 8px;
  padding-left: 6px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-progress {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-progress-line {
  position: relative;
  width: 100%;
  font-size: 14px;
}
.ant-progress-small.ant-progress-line,
.ant-progress-small.ant-progress-line .ant-progress-text .anticon {
  font-size: 12px;
}
.ant-progress-outer {
  display: inline-block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
}
.ant-progress-show-info .ant-progress-outer {
  margin-right: calc(-2em - 8px);
  padding-right: calc(2em + 8px);
}
.ant-progress-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  vertical-align: middle;
  background-color: #f5f5f5;
  border-radius: 100px;
}
.ant-progress-circle-trail {
  stroke: #f5f5f5;
}
.ant-progress-circle-path {
  -webkit-animation: ant-progress-appear 0.3s;
          animation: ant-progress-appear 0.3s;
}
.ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #1890ff;
}
.ant-progress-success-bg,
.ant-progress-bg {
  position: relative;
  background-color: #1890ff;
  border-radius: 100px;
  -webkit-transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
  transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
}
.ant-progress-success-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #52c41a;
}
.ant-progress-text {
  display: inline-block;
  width: 2em;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 1em;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
  vertical-align: middle;
  word-break: normal;
}
.ant-progress-text .anticon {
  font-size: 14px;
}
.ant-progress-status-active .ant-progress-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  -webkit-animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
          animation: ant-progress-active 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite;
  content: '';
}
.ant-progress-status-exception .ant-progress-bg {
  background-color: #f5222d;
}
.ant-progress-status-exception .ant-progress-text {
  color: #f5222d;
}
.ant-progress-status-exception .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #f5222d;
}
.ant-progress-status-success .ant-progress-bg {
  background-color: #52c41a;
}
.ant-progress-status-success .ant-progress-text {
  color: #52c41a;
}
.ant-progress-status-success .ant-progress-inner:not(.ant-progress-circle-gradient) .ant-progress-circle-path {
  stroke: #52c41a;
}
.ant-progress-circle .ant-progress-inner {
  position: relative;
  line-height: 1;
  background-color: transparent;
}
.ant-progress-circle .ant-progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1;
  white-space: normal;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ant-progress-circle .ant-progress-text .anticon {
  font-size: 1.16666667em;
}
.ant-progress-circle.ant-progress-status-exception .ant-progress-text {
  color: #f5222d;
}
.ant-progress-circle.ant-progress-status-success .ant-progress-text {
  color: #52c41a;
}
@-webkit-keyframes ant-progress-active {
  0% {
    width: 0;
    opacity: 0.1;
  }
  20% {
    width: 0;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes ant-progress-active {
  0% {
    width: 0;
    opacity: 0.1;
  }
  20% {
    width: 0;
    opacity: 0.5;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.main___3nzs3 {
  width: 500px;
  margin: 40px auto;
}
.err___3vtp- {
  color: #ff0000;
}
.medium___rSzLb {
  color: #faad14;
}
.Popover___3OGBa {
  width: 250px;
}
.Popover___3OGBa .ant-popover-inner-content {
  padding: 12px 16px !important;
}
.success___1r6HL {
  color: #52c41a;
}
.reset___3WIIo .ant-progress-inner {
  background-color: #f5f5f5 !important;
}
.captcha___xzhsE {
  background-color: #fff;
  position: fixed;
  top: 100px;
  left: 50%;
  z-index: 9999;
}
.verifybox___3cQG4{
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  border: 1px solid #e4e7eb;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.3);
          box-shadow: 0 0 10px rgba(0,0,0,.3);
  left: 50%;
  top:50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
.verifybox-top___nzjEz{
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  text-align: left;
  font-size: 16px;
  color: #45494c;
  border-bottom: 1px solid #e4e7eb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.verifybox-bottom___1jpOD{
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.verifybox-close___2BsOs{
  position: absolute;
  top: 13px;
  right: 9px;
  width: 24px;
  height: 24px;
  text-align: center;
  cursor: pointer;
}
.mask___2ehWJ{
  position: fixed;
  top: -200px;
  left:0;
  z-index: 1001;
  width: 100%;
  height: 100vh;
  /* background: rgba(0,0,0,.3); */
  background: black;
  /* display: none; */
  -webkit-transition: all .5s;
  transition: all .5s;
}
.verify-tips___1lEHW{
  position: absolute;
  left: 0px;
  bottom:0px;
  width: 100%;
  height: 30px;
  line-height:30px;
  color: #fff;
}
.suc-bg___2aaVZ{
 background-color:rgba(92, 184, 92,.5);
 filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7f5CB85C, endcolorstr=#7f5CB85C);
}
.err-bg___35ueK{
 background-color:rgba(217, 83, 79,.5);
 filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7fD9534F, endcolorstr=#7fD9534F);
}
.tips-enter___3ZcTy,.tips-leave-to___1Me4f{
  bottom: -30px;
}
.tips-enter-active___3NKMF,.tips-leave-active___3AP9c{
  -webkit-transition: bottom .5s;
  transition: bottom .5s;
}
/* ---------------------------- */
/*常规验证码*/
.verify-code___12EoH {
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 5px;
  border: 1px solid #ddd;
}

.cerify-code-panel___T3yPn {
  height: 100%;
  overflow: hidden;
}

.verify-code-area___3ym3L {
  float: left;
}

.verify-input-area___3vkZY {
  float: left;
  width: 60%;
  padding-right: 10px;

}

.verify-change-area___27jj4 {
  line-height: 30px;
  float: left;
}

.varify-input-code___3tA5C {
  display: inline-block;
  width: 100%;
  height: 25px;
}

.verify-change-code___2zQYy {
  color: #337AB7;
  cursor: pointer;
}

.verify-btn___1mdKG {
  width: 200px;
  height: 30px;
  background-color: #337AB7;
  color: #FFFFFF;
  border: none;
  margin-top: 10px;
}


/*滑动验证码*/
.verify-bar-area___2dwE_ {
  position: relative;
  background: #FFFFFF;
  text-align: center;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
}

.verify-bar-area___2dwE_ .verify-move-block___pdCzS {
  position: absolute;
  top: 0px;
  left: 0;
  background: #fff;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-shadow: 0 0 2px #888888;
          box-shadow: 0 0 2px #888888;
  -webkit-border-radius: 1px;
}

.verify-bar-area___2dwE_ .verify-move-block___pdCzS:hover {
  background-color: #337ab7;
  color: #FFFFFF;
}

.verify-bar-area___2dwE_ .verify-left-bar___33Oja {
  position: absolute;
  top: -1px;
  left: -1px;
  background: #f0fff0;
  cursor: pointer;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #ddd;
}

.verify-img-panel___AUPXY {
  margin: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 3px;
  position: relative;
}

.verify-img-panel___AUPXY .verify-refresh___kHmT7 {
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 5px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.verify-img-panel___AUPXY .icon-refresh___1dlKB {
  font-size: 20px;
  color: #fff;
}

.verify-img-panel___AUPXY .verify-gap___2dHkW {
  background-color: #fff;
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
}

.verify-bar-area___2dwE_ .verify-move-block___pdCzS .verify-sub-block___a7Dc1 {
  position: absolute;
  text-align: center;
  z-index: 3;
  /* border: 1px solid #fff; */
}

.verify-bar-area___2dwE_ .verify-move-block___pdCzS .verify-icon___YAyvj {
  font-size: 18px;
}

.verify-bar-area___2dwE_ .verify-msg___71C5j {
  z-index: 3;
}

/*字体图标的css*/
/*@font-face {font-family: "iconfont";*/
/*src: url('../fonts/iconfont.eot?t=1508229193188'); !* IE9*!*/
/*src: url('../fonts/iconfont.eot?t=1508229193188#iefix') format('embedded-opentype'), !* IE6-IE8 *!*/
/*url('data:application/x-font-woff;charset=utf-8;base64,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') format('woff'),*/
/*url('../fonts/iconfont.ttf?t=1508229193188') format('truetype'), !* chrome, firefox, opera, Safari, Android, iOS 4.2+*!*/
/*url('../fonts/iconfont.svg?t=1508229193188#iconfont') format('svg'); !* iOS 4.1- *!*/
/*}*/

.iconfont___2Rd8b {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-check___2n2Mz:before {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-image: url("data:image/png;base64,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");
  background-size: contain;
}

.icon-close___t7ALk:before {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-image: url("data:image/png;base64,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");
  background-size: contain;
}

.icon-right___2RET1:before {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  z-index: 9999;
  background-image: url("data:image/png;base64,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");
  background-size: contain;
}

.icon-refresh___1dlKB:before {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-image: url("data:image/png;base64,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");
  background-size: contain;
}

.verify-img-out___3J-1y{
  height: 200px;
}
.btn___3inXK{
  border: none;
  outline: none;
  width: 300px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  background-color: #409EFF;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1em;
}
.mask___2ehWJ {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1001;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,.3);
	-webkit-transition: all .5s;
	transition: all .5s;
}
.siderEmbed___2f9Ha{
  margin-top: 80px;
}
.sliderPopup___1boec, .pointPopup___3EBOJ, .pointEmbed___2RPaS{
  margin-top: 40px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.onlinePeopleWrap___3oMBx .ant-modal-body___1yxkU {
  padding: 1px 15px 8px;
}
.header___1L3tU {
  padding: 0 12px 0 0;
  -webkit-box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
          box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
  position: relative;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.ant-layout {
  overflow-x: hidden;
}
.onlinePeopleWrap .ant-modal-body {
  padding: 1px 15px 8px;
}
.onlinePeopleWrap .ant-modal-content {
  min-height: 220px;
}
.logo___Y_DTB {
  height: 64px;
  line-height: 58px;
  vertical-align: top;
  display: inline-block;
  padding: 0 0 0 24px;
  cursor: pointer;
  font-size: 20px;
}
.logo___Y_DTB img {
  display: inline-block;
  vertical-align: middle;
}
.menu___2IuJy .anticon {
  /**margin-right: 8px;**/
}
.menu___2IuJy .ant-dropdown-menu-item {
  width: 160px;
}
.right___3kEl5 {
  float: right;
  height: 100%;
}
.right___3kEl5 .action___119rd {
  cursor: pointer;
  padding: 0 12px;
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 100%;
}
.right___3kEl5 .action___119rd > i {
  font-size: 16px;
  vertical-align: middle;
}
.right___3kEl5 .action___119rd:hover,
.right___3kEl5 .action___119rd.ant-popover-open {
  background: #e6f7ff;
}
.right___3kEl5 .action___119rd:hover {
  color: #000;
}
.right___3kEl5 .search___345Sj {
  padding: 0;
  margin: 0 12px;
}
.right___3kEl5 .search___345Sj:hover {
  background: transparent;
}
.right___3kEl5 .account___39VBq .avatar___HsSLb {
  margin: 13px 8px 13px 0;
  color: #1890ff;
  background: rgba(255, 255, 255, 0.85);
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .header___1L3tU .ant-divider-vertical {
    vertical-align: unset;
  }
  .header___1L3tU .name___dJ0yb {
    display: none;
  }
  .header___1L3tU i.trigger___3Dsd1 {
    padding: 0 12px;
  }
  .header___1L3tU .logo___Y_DTB {
    padding-right: 12px;
    position: relative;
  }
  .header___1L3tU .right___3kEl5 {
    position: absolute;
    right: 12px;
    top: 0;
    background: #fff;
  }
  .header___1L3tU .right___3kEl5 .account___39VBq .avatar___HsSLb {
    margin-right: 0;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.globalFooter___3uaww {
  padding: 0 16px;
  margin: 10px 0;
  text-align: center;
}
.globalFooter___3uaww .links___lgymZ {
  margin-bottom: 8px;
}
.globalFooter___3uaww .links___lgymZ a {
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.globalFooter___3uaww .links___lgymZ a:not(:last-child) {
  margin-right: 40px;
}
.globalFooter___3uaww .links___lgymZ a:hover {
  color: rgba(0, 0, 0, 0.65);
}
.globalFooter___3uaww .copyright___3hV2q {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.drawer {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.drawer > * {
  transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shaow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  -webkit-transition: opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shaow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shaow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), opacity 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), box-shaow 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer-bg {
  background: #000;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.drawer-content-wrapper {
  position: absolute;
  height: 100%;
}
.drawer-content {
  background: #fff;
  height: 100%;
  overflow: auto;
  z-index: 1;
  position: relative;
}
.drawer-button {
  position: absolute;
  top: 72px;
  width: 41px;
  height: 40px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 0;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background: #fff;
}
.drawer-button-icon {
  width: 14px;
  height: 2px;
  background: #333;
  position: relative;
  -webkit-transition: background 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: background 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer-button-icon:before,
.drawer-button-icon:after {
  content: '';
  display: block;
  position: absolute;
  background: #333;
  width: 100%;
  height: 2px;
  transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.drawer-button-icon:before {
  top: -5px;
}
.drawer-button-icon:after {
  top: 5px;
}
.drawer-left .drawer-button {
  right: -40px;
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 4px 4px 0;
}
.drawer-left.drawer-open .drawer-wrapper {
  -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}
.drawer-right .drawer-button {
  left: -40px;
  -webkit-box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px 0 0 4px;
}
.drawer-right.drawer-open .drawer-wrapper {
  -webkit-box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.15);
}
.drawer.drawer-open {
  pointer-events: auto;
}
.drawer.drawer-open .drawer-bg {
  opacity: .3;
}
.drawer.drawer-open .drawer-button-icon {
  background: transparent;
}
.drawer.drawer-open .drawer-button-icon:before {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}
.drawer.drawer-open .drawer-button-icon:after {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable selector-no-id, declaration-no-important   */
.logo___2J9hf {
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  line-height: 64px;
  padding-left: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
}
.logo___2J9hf img {
  width: 99px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
}
.logo___2J9hf h1 {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 30px;
  margin: 0 0 0 12px;
  font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.sider___g53Yu,
.siders___3Prvj {
  min-height: 100vh;
  background: white;
  position: relative;
  z-index: 10;
  height: 100%;
  border-right: 2px solid #ccb5ce;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}
.siders___3Prvj {
  margin-right: 20px;
}
.telescopic___14kmv,
.backTelescopic___1XM7J {
  position: absolute;
  top: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 18px;
  height: 68px;
  background-color: rgba(54, 79, 116, 0.6);
  z-index: 99;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
}
.telescopic___14kmv {
  right: 0;
}
.backTelescopic___1XM7J {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  right: -20px;
}
.icon___wOYWy {
  width: 14px;
  margin-right: 10px;
}
i.trigger___3ftaW {
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s, padding 0s;
  transition: all .3s, padding 0s;
  background: white;
  color: #1b2125;
  line-height: 50px!important;
  font-size: 25px;
  border-bottom: 1px solid #ccb5ce;
  padding: 10px 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.drawer .drawer-content {
  background: #001529;
}
.anticon-menu-unfold ~ .menuContent {
  overflow: hidden;
}
.ant-menu-dark,
.ant-menu-dark .ant-menu-sub {
  background: none!important;
}
.ant-layout-sider-collapsed {
  width: 50px!important;
  min-width: 50px!important;
  max-width: 50px!important;
}
.ant-menu-submenu-popup {
  z-index: 40 !important;
}
.ant-menu-inline-collapsed > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-submenu {
  z-index: 40 !important;
}
.ant-menu-inline-collapsed > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-item-group > .ant-menu-item-group-list > .ant-menu-item,
.ant-menu-inline-collapsed > .ant-menu-submenu > .ant-menu-submenu-title {
  padding: 0!important;
  text-align: center;
  color: #fff;
}
.menu3 > .ant-menu-submenu-title {
  padding-right: 36px !important;
}
.sideMenu___3vzHA {
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  overflow-y: scroll;
}
.menuContent___10nmU {
  position: absolute;
  top: 46px;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  overflow-y: scroll;
  background: linear-gradient(160deg, #5AC5fE, #3985F6);
}
.menuContent___10nmU .ant-menu {
  background: transparent;
}
.menuContent___10nmU .ant-menu:hover {
  background: transparent;
}
.difference___vy07A .ant-menu-submenu-title {
  padding-left: 96px;
}
.difference___vy07A .ant-menu-submenu-title:hover {
  color: #333 !important;
}
.difference___vy07A .ant-menu-submenu-selected > .ant-menu-submenu-title {
  background-color: transparent !important;
}
.difference___vy07A .ant-menu-submenu-title span {
  color: #333;
}
.difference___vy07A .ant-menu-submenu-active .ant-menu-submenu-title {
  background-color: #edf8fe !important;
}
.difference___vy07A .ant-menu-submenu-selected {
  background-color: #cfebfe !important;
}
/* stylelint-enable */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.exception___19n05 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}
.exception___19n05 .imgBlock___2g-kj {
  -ms-flex: 0 0 62.5%;
      flex: 0 0 62.5%;
  width: 62.5%;
  padding-right: 152px;
  zoom: 1;
}
.exception___19n05 .imgBlock___2g-kj:before,
.exception___19n05 .imgBlock___2g-kj:after {
  content: " ";
  display: table;
}
.exception___19n05 .imgBlock___2g-kj:after {
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}
.exception___19n05 .imgEle___cXgra {
  height: 360px;
  width: 100%;
  max-width: 430px;
  float: right;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.exception___19n05 .content___3PvOs {
  -ms-flex: auto;
      flex: auto;
}
.exception___19n05 .content___3PvOs h1 {
  color: #434e59;
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  margin-bottom: 24px;
}
.exception___19n05 .content___3PvOs .desc___3G5g3 {
  color: rgba(0, 0, 0, 0.45);
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
.exception___19n05 .content___3PvOs .actions___1lAdW button:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 1200px) {
  .exception___19n05 .imgBlock___2g-kj {
    padding-right: 88px;
  }
}
@media screen and (max-width: 576px) {
  .exception___19n05 {
    display: block;
    text-align: center;
  }
  .exception___19n05 .imgBlock___2g-kj {
    padding-right: 0;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 480px) {
  .exception___19n05 .imgBlock___2g-kj {
    margin-bottom: -24px;
    overflow: hidden;
  }
}
.ant-tabs-bar {
  position: relative;
  z-index: 10;
  margin: 10px 0 0 7px;
}
.ant-tabs-no-animation > .ant-tabs-content > .ant-tabs-tabpane-inactive,
.no-flex > .ant-tabs-content > .ant-tabs-tabpane-inactive {
  display: none;
}
.main___FDfAf {
  padding: 44px 20px;
  overflow: auto;
  height: 100%;
  text-align: center;
}
.main___FDfAf h2 {
  height: 50px;
  width: 300px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  margin: 0 auto 40px;
  background-color: #007acc;
  color: #fff;
}
.main___FDfAf .scroll {
  clear: both;
}
.content___1icG5 {
  display: -ms-flexbox;
  display: flex;
}
.flex___1up1p {
  width: 200px;
}
.flex___1up1p .twoLevelMenu,
.flex___1up1p .threeLevelMenu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.flex___1up1p .twoLevelMenu {
  width: 80%;
  border: 1px solid #007acc;
  border-radius: 4px;
  text-align: center;
  height: 45px;
  margin: 0 auto;
  cursor: pointer;
  background-color: #007acc;
  color: #fff;
}
.flex___1up1p .threeLevelMenu {
  width: 60%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  height: 40px;
  margin: 10px auto 0;
  cursor: pointer;
  color: #333;
  position: relative;
}
.flex___1up1p .threeLevelMenu .line {
  width: 1px;
  height: 11px;
  border-left: 1px solid #d9d9d9;
  position: absolute;
  top: -11px;
  left: 50%;
}
.trigger___1QaC4 {
  background: "red";
}
.trigger___1QaC4 .ant-btn {
  margin-right: 8px;
  margin-bottom: 12px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.container___3rCSG {
  background: #f0f2f5;
  background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
  width: 100%;
  min-height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: relative;
}
.top___3tcoI {
  text-align: center;
}
.header___3StSZ {
  height: 44px;
  line-height: 44px;
}
.header___3StSZ a {
  text-decoration: none;
}
.logo___2CWIy {
  height: 44px;
  vertical-align: top;
  margin-right: 16px;
}
.title___2h165 {
  font-size: 33px;
  color: rgba(0, 0, 0, 0.85);
  font-family: 'Myriad Pro', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-weight: 600;
  position: relative;
  top: 2px;
}
.desc___i73Yc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  margin-top: 12px;
  margin-bottom: 40px;
}
.footer___3ATtC {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media only screen and (max-width: 750px), only screen and (max-device-width: 720px) {
  html,
  body {
    font-size: 20px;
  }
}
@media only screen and (max-width: 414px), only screen and (max-device-width: 414px) {
  html,
  body {
    font-size: 11.04px;
  }
}
@media only screen and (max-width: 375px), only screen and (max-device-width: 375px) {
  html,
  body {
    font-size: 10px;
  }
}
@media only screen and (max-width: 360px), only screen and (max-device-width: 360px) {
  html,
  body {
    font-size: 9.6px;
  }
}
@media only screen and (max-width: 320px), only screen and (max-device-width: 320px) {
  html,
  body {
    font-size: 8.53333333px;
  }
}
.download {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.bottom {
  position: absolute;
  top: 20.7rem;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
}
.titlebar {
  height: 4.8rem;
  background: #4b4b4b;
  line-height: 4.4rem;
  color: #fff;
  font-size: 1.4rem;
}
.titlebar img {
  width: 2.4rem;
  margin: 0 1rem 0 2rem;
}
.box-center {
  height: 9.8rem;
  background: #fafafa;
  border-bottom: 1px solid #e6e6e6;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.box-center img {
  width: 21rem;
}
.box-middle {
  padding: 1rem;
  background: #fafafa;
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
}
.box-middle > div {
  height: 4rem;
  font-size: 1.2rem;
  color: #ea4848;
  padding: 1rem;
}
.card {
  margin: 1rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #fafafa;
  padding: 1.5rem 1rem;
  border: 1px solid #e6e6e6;
}
.card > div {
  overflow: hidden;
}
.card img {
  float: left;
  width: 6rem;
  height: 6rem;
  margin-right: 1rem;
}
.card .text {
  overflow: hidden;
}
.card .text p {
  color: #333;
  font-size: 1.6rem;
  margin: 0;
}
.card .text > div {
  font-size: 1.2rem;
  color: #999;
  margin: .2rem 0;
}
.card .text > div > span:first-of-type {
  display: inline-block;
  width: 40%;
}
.card > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1.5rem 0 0 0;
  color: #17bcbd;
  border: 0.2rem solid #17bcbd;
  height: 4rem;
  font-size: 1.4rem;
  border-radius: .6rem;
  padding: 0px .8rem;
  width: 100%;
  background-color: #fff;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-alert {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  padding: 8px 15px 8px 37px;
  word-wrap: break-word;
  border-radius: 4px;
}
.ant-alert.ant-alert-no-icon {
  padding: 8px 15px;
}
.ant-alert.ant-alert-closable {
  padding-right: 30px;
}
.ant-alert-icon {
  position: absolute;
  top: 11.5px;
  left: 16px;
}
.ant-alert-description {
  display: none;
  font-size: 14px;
  line-height: 22px;
}
.ant-alert-success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
}
.ant-alert-success .ant-alert-icon {
  color: #52c41a;
}
.ant-alert-info {
  background-color: #e6f7ff;
  border: 1px solid #91d5ff;
}
.ant-alert-info .ant-alert-icon {
  color: #1890ff;
}
.ant-alert-warning {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
}
.ant-alert-warning .ant-alert-icon {
  color: #faad14;
}
.ant-alert-error {
  background-color: #fff1f0;
  border: 1px solid #ffa39e;
}
.ant-alert-error .ant-alert-icon {
  color: #f5222d;
}
.ant-alert-close-icon {
  position: absolute;
  top: 8px;
  right: 16px;
  padding: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 22px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.ant-alert-close-icon .anticon-close {
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-alert-close-icon .anticon-close:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-alert-close-text {
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-alert-close-text:hover {
  color: rgba(0, 0, 0, 0.75);
}
.ant-alert-with-description {
  position: relative;
  padding: 15px 15px 15px 64px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.5;
  border-radius: 4px;
}
.ant-alert-with-description.ant-alert-no-icon {
  padding: 15px;
}
.ant-alert-with-description .ant-alert-icon {
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 24px;
}
.ant-alert-with-description .ant-alert-close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  cursor: pointer;
}
.ant-alert-with-description .ant-alert-message {
  display: block;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-alert-message {
  color: rgba(0, 0, 0, 0.85);
}
.ant-alert-with-description .ant-alert-description {
  display: block;
}
.ant-alert.ant-alert-closing {
  height: 0 !important;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-alert-slide-up-leave {
  -webkit-animation: antAlertSlideUpOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation: antAlertSlideUpOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ant-alert-banner {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
}
@-webkit-keyframes antAlertSlideUpIn {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@keyframes antAlertSlideUpIn {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
}
@-webkit-keyframes antAlertSlideUpOut {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
}
@keyframes antAlertSlideUpOut {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    opacity: 0;
  }
}
@media screen and (max-width: 1360px) {
  .main___2jCiI header {
    display: none;
  }
}
@media screen and (max-width: 1380px) {
  .main___2jCiI header {
    top: 5%!important;
  }
  .main___2jCiI .content___2v51K {
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1920px) {
  .main___2jCiI header {
    top: 12%!important;
  }
  .main___2jCiI .content___2v51K {
    -webkit-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
  }
}
* {
  margin: 0;
  padding: 0;
}
.boxLoading___2vLcN {
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  font-size: 1.6vw;
}
.main___2jCiI {
  width: 100%;
  height: 100vh;
  position: relative;
  min-height: 570px;
  min-width: 1250px;
}
.main___2jCiI header {
  position: absolute;
  top: 5%;
  width: 100%;
  text-align: center;
  font-family: PingFang SC;
  font-size: 30px;
  color: #fff;
  height: 42px;
  font-weight: 600;
  line-height: 42px;
}
.main___2jCiI header img {
  vertical-align: middle;
  margin-right: 14px;
  /* margin-right: 1%; */
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.main___2jCiI .content___2v51K {
  width: 830px;
  height: 415px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
  background: #ffffff;
  border-radius: 10px;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.main___2jCiI .content___2v51K .left___2kvqP {
  -ms-flex: 4 1;
      flex: 4 1;
  height: 100%;
}
.main___2jCiI .content___2v51K .right___3Ew_7 {
  -ms-flex: 7 1;
      flex: 7 1;
  height: 100%;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG {
  font-size: 18px;
  color: #919596;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding-top: 5%;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-tab {
  font-weight: 600;
  padding: 8px 60px;
  cursor: pointer;
  font-size: 18px;
  color: #919596;
  font-family: PingFang SC;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-tab-active {
  color: #1890FF!important;
  border-bottom: 2px solid #1890FF!important;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content {
  width: 100%;
  overflow: hidden!important;
  margin: 0 auto;
  padding: 5% 0px 0px;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content .ant-input {
  width: 100%;
  font-size: 14px;
  height: 40px;
  color: #333;
  padding: 13px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0px!important;
  border: 1px solid #EBEBEB;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content .ant-tabs-tabpane > .ant-form-item {
  margin-bottom: 24px !important;
  min-height: 40px !important;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content .ant-tabs-tabpane > .ant-form-item .ant-form-explain {
  line-height: 30px !important;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content .ant-btn {
  border: 0!important;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content .ant-btn-lg {
  border: 0!important;
}
.main___2jCiI .content___2v51K .right___3Ew_7 .tabs___R4MnG .ant-tabs .ant-tabs-content .formBottom .ant-form-item {
  margin-bottom: 0px!important;
  min-height: 44px;
}
.main___2jCiI footer {
  position: absolute;
  bottom: 28px;
  width: 100%;
  text-align: center;
}
.main___2jCiI footer p {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.main___2jCiI .tabs___R4MnG .ant-tabs-ink-bar {
  background: #1890FF;
}
.loginBtn___2-3yn {
  width: 100%;
  padding: 13px 16px;
  color: #fff;
  cursor: pointer;
  background-color: #1890FF;
  border: 0;
  height: 47px;
  margin-top: 0px!important;
  border-radius: 0px!important;
}
.loginBtn___2-3yn span {
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 600;
}
.yanzhengbtn___2D4G1 {
  color: #919596;
  border: 1px solid #ccc;
  padding: 8px 10px;
  margin-bottom: 22px;
  cursor: pointer;
}
.mymodel___1779s .ant-modal-close-x {
  width: 40px;
  height: 30px;
  line-height: 30px;
}
.sdpLoginDiv___1m8aL {
  display: inline-block;
  width: 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
}
.sdpLoginDiv___1m8aL:hover {
  opacity: 0.9;
}
.sdpLoginDiv___1m8aL img {
  width: 100%;
}
.sdpLoginDiv___1m8aL .loginTypeTipText___39aZv {
  text-align: center;
  font-size: 14px;
  padding: 12px;
  margin-top: -45px;
  background: #00000073;
  color: #fff;
  position: absolute;
  width: 100%;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
.outDivNoborder___ky_7G {
  position: absolute;
  top: 0;
  left: 0;
  width: 310px;
  height: 155px;
}
.outDiv___3URVB {
  position: relative;
  width: 310px;
  height: 195px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.outDivNext___2s3gl {
  width: 310px;
  height: 155px;
}
.outDivLitBlock___2Csq8 {
  position: absolute;
  top: 0;
  left: 0;
}
/**滑块*/
.outBkock___3yu_F {
  position: relative;
  width: 310px;
  height: 40px;
}
.moveBkock___26H8C {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: move;
  width: 48px;
  height: 38px;
  background: #fff;
  z-index: 3;
}
.posBkockDefault___3QliO,
.posBkockColor___1buLF {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background: #e2e2e2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.posBkockColor___1buLF {
  width: 0;
  background: #40a9ff;
  z-index: 2;
}
.icon_check___AJ0wZ {
  font-size: 18px;
  z-index: 1 !important;
}
.redos___2Bsdu {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 100;
  font-size: 20px;
  color: #fff !important;
}
.orangeColor___2TOBa {
  color: #007acc;
}
.globalTableLink___pQR3d {
  color: #76b1cb;
}
.previewContent___tJsNn .ant-carousel {
  width: 100%;
}
.previewContent___tJsNn .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___tJsNn .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___tJsNn .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___tJsNn .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___tJsNn .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.globalModal___2yDeR .ant-modal-footer {
  text-align: center;
}
.globalModal___2yDeR .ant-modal-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.globalModal___2yDeR .ant-modal-footer {
  text-align: center;
}
.globalModal___2yDeR .ant-btn-primary {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.globalModal___2yDeR .ant-btn-primary:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.globalModal___2yDeR .ant-spin-nested-loading {
  width: 100%;
}
.globalModal___2yDeR .ant-upload-list-item {
  width: 100%!important;
}
.main___6l-_a {
  width: 500px;
  margin: 40px auto;
}
.err___37Rl4 {
  color: #ff0000;
}
.medium___261og {
  color: #faad14;
}
.Popover___2OsWY {
  width: 250px;
}
.success___13dEP {
  color: #52c41a;
}
.reset___XzY3L .ant-progress-inner {
  background-color: #f5f5f5 !important;
}
.reset___XzY3L .ant-popover-inner-content {
  padding: 12px 16px !important;
}
.main___1xvTy {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-device-width: 480px) {
  .main___1xvTy {
    width: 100%!important;
    margin: 0 auto;
    padding: 0 12px!important;
  }
}
@media screen and (max-device-width: 320px) {
  .main___1xvTy {
    width: 100%!important;
    margin: 0 auto;
    padding: 0 12px!important;
  }
}
.margin_top___3g0tt {
  padding-top: 60px;
}
.margin_top___3g0tt .ant-tabs-nav-scroll {
  width: 250px !important;
  margin: 0 auto !important;
}
.stepsContent___3jFVU {
  margin-top: 16px;
  border: 1px dashed #e9e9e9;
  border-radius: 6px;
  background-color: #fafafa;
  min-height: 200px;
  text-align: center;
  padding-top: 20px;
}
.stepsAction___2UFjk {
  margin-top: 24px;
}
.title___1rDZ0 {
  width: 100%;
  text-align: center;
  font-size: 16px;
}
@media screen and (max-device-width: 480px) {
  .main___vM0jv {
    width: 100%!important;
    margin: 0 auto;
    padding: 0 12px!important;
  }
  .main___vM0jv .Popover___2P0dq {
    width: 250px;
    top: 396px!important;
  }
  .main___vM0jv .Popover___2P0dq .ant-popover-inner-content {
    padding: 12px 16px !important;
  }
}
@media screen and (max-device-width: 320px) {
  .main___vM0jv {
    width: 100%!important;
    padding: 0 12px!important;
  }
  .main___vM0jv .Popover___2P0dq {
    width: 250px;
    top: 396px!important;
  }
  .main___vM0jv .Popover___2P0dq .ant-popover-inner-content {
    padding: 12px 16px !important;
  }
}
.main___vM0jv {
  width: 500px;
  margin: 40px auto;
}
.err___gyjI- {
  color: #ff0000;
}
.medium___2At7C {
  color: #faad14;
}
.Popover___2P0dq {
  width: 250px;
}
.Popover___2P0dq .ant-popover-inner-content {
  padding: 12px 16px !important;
}
.success___2FNsY {
  color: #52c41a;
}
.reset___3hSTx .ant-progress-inner {
  background-color: #f5f5f5 !important;
}
.main___z2GbL {
  width: 600px;
  margin: 0 auto;
}


.stepsContent___3KEDx {
  margin-top: 16px;
  border: 1px dashed #e9e9e9;
  border-radius: 6px;
  background-color: #fafafa;
  min-height: 200px;
  text-align: center;
  padding-top: 20px;
}

.stepsAction___1Xihq {
  margin-top: 24px;
}

.title___3o7dm {
  width: 100%;
  text-align: center;
  font-size: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.registerLayout___11Zzz {
  margin-top: -110px;
}
.registerLayout___11Zzz .ant-layout-header {
  height: 30px!important;
  line-height: 30px!important;
  margin-bottom: 20px;
}
.main____pV_J {
  width: 800px;
  margin: 0 auto;
  padding: 20px 100px;
  background: #fff;
}
.main____pV_J .ant-form-item {
  margin-bottom: 24px;
}
.main____pV_J .ant-form-explain {
  margin-top: 2px;
  margin-bottom: 5px;
}
.main____pV_J h2 {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}
.main____pV_J .getCaptcha___3Ac2M {
  display: block;
  width: 100%;
}
.main____pV_J .login___2LRRD {
  float: right;
  line-height: 40px;
}
.success___1s2uC,
.warning___1mxFE,
.error___cLR7E {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.success___1s2uC {
  color: #52c41a;
}
.warning___1mxFE {
  color: #faad14;
}
.error___cLR7E {
  color: #f5222d;
}
.progress-pass___2jaF3 > .progress___39kYU .ant-progress-bg {
  background-color: #faad14;
}
.registerButton___1ZZIF {
  text-align: center;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.result___xC0Dg {
  text-align: center;
  width: 72%;
  margin: 0 auto;
}
.result___xC0Dg .icon___2CoVh {
  font-size: 72px;
  line-height: 72px;
  margin-bottom: 24px;
}
.result___xC0Dg .icon___2CoVh > .success___2q7O4 {
  color: #52c41a;
}
.result___xC0Dg .icon___2CoVh > .error___3Awyc {
  color: #f5222d;
}
.result___xC0Dg .title___1iwWn {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 16px;
}
.result___xC0Dg .description___2gsKY {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 24px;
}
.result___xC0Dg .extra___27zTj {
  background: #fafafa;
  padding: 24px 40px;
  border-radius: 2px;
  text-align: left;
}
.result___xC0Dg .actions___3ojTs {
  margin-top: 32px;
}
.result___xC0Dg .actions___3ojTs button:not(:last-child) {
  margin-right: 8px;
}
.registerResult___3yuYZ .anticon {
  font-size: 64px;
}
.registerResult___3yuYZ .title___17w4b {
  margin-top: 32px;
  font-size: 20px;
  line-height: 28px;
}
.registerResult___3yuYZ .actions___2Fqbo {
  margin-top: 40px;
}
.registerResult___3yuYZ .actions___2Fqbo a + a {
  margin-left: 8px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___348Kf {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  top: 55px;
}
.standardTable___348Kf .ant-table-wrapper,
.standardTable___348Kf .ant-spin-nested-loading,
.standardTable___348Kf .ant-spin-container,
.standardTable___348Kf .ant-table {
  height: 100%;
}
.standardTable___348Kf .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___348Kf .ant-table-body {
  position: absolute!important;
  top: 32px;
  right: 0;
  bottom: 38px;
  left: 0;
}
.standardTable___348Kf .ant-table-pagination {
  position: absolute;
  bottom: 0;
  right: 0;
}
.standardTable___348Kf .tableAlert___qQVM4 {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.content___13wW7 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  top: 0;
}
@media screen and (max-width: 576px) {
  .content___13wW7 {
    margin: 24px 0 0;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3_izC .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___3_izC .tableAlert___pdziA {
  margin-bottom: 16px;
}
.tableListOperator___2eLkR {
  margin: 16px 0;
}
.hide___1Pg8i {
  display: none!important;
}
.orangeColor___e_SUV {
  color: #007acc;
}
.globalTableLink___1zLB1 {
  color: #76b1cb;
}
.previewContent___2-Ic9 .ant-carousel {
  width: 100%;
}
.previewContent___2-Ic9 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2-Ic9 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2-Ic9 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2-Ic9 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2-Ic9 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.standardTable___1bTuG {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.standardTable___1bTuG .grayItem___emD8L {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
}
.standardTable___1bTuG .btnWrap___zi8c- {
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
  width: 40%;
  padding: 8px;
  height: 40px;
}
.standardTable___1bTuG .btnWrap___zi8c- .ant-btn {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-right: 12px;
}
.standardTable___1bTuG .btnWrap___zi8c- .ant-btn:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.standardTable___1bTuG {
  /**兼容Firefox、IE表头**/
}
.standardTable___1bTuG .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___1bTuG .ant-table {
  height: 100%;
}
.standardTable___1bTuG .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___1bTuG .ant-table-body {
  top: 40px;
  left: 0;
  right: 0;
  bottom: 56px;
}
.standardTable___1bTuG .ant-table-pagination {
  position: absolute;
  top: -33px;
  right: 0;
  margin: 0 !important;
}
.standardTable___1bTuG .ant-table-wrapper {
  height: 100%;
}
.standardTable___1bTuG .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___1bTuG .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___1bTuG table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___1bTuG table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___1bTuG table tr.red td {
  background: #ec03035c;
}
.standardTable___1bTuG .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___1bTuG .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___1bTuG .ant-table-thead > tr:hover > td,
.standardTable___1bTuG .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___1bTuG .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___1bTuG table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed !important;
  font-size: 14px !important;
  height: 40px !important;
}
.standardTable___1bTuG table td {
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.standardTable___1bTuG table tr .ant-table-selection-column {
  width: 30px !important;
}
.standardTable___1bTuG .normalOperateBtn .editBtn {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin: 0 10px;
}
.standardTable___1bTuG .normalOperateBtn .editBtn:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.standardTable___1bTuG .normalOperateBtn .viewBtn {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
  margin: 0 10px;
}
.standardTable___1bTuG .normalOperateBtn .viewBtn:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-calendar-picker-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1050;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft,
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topRight,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topRight {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft,
.ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomRight,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft,
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomRight {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft,
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topRight {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft,
.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomRight {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.ant-calendar-picker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  outline: none;
  cursor: text;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ant-calendar-picker-input {
  outline: none;
}
.ant-calendar-picker-input.ant-input {
  line-height: 1.5;
}
.ant-calendar-picker-input.ant-input-sm {
  padding-top: 0;
  padding-bottom: 0;
}
.ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #40a9ff;
}
.ant-calendar-picker:focus .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-calendar-picker-clear,
.ant-calendar-picker-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  font-size: 12px;
  line-height: 14px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-calendar-picker-clear {
  z-index: 2;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.ant-calendar-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-calendar-picker:hover .ant-calendar-picker-clear {
  opacity: 1;
  pointer-events: auto;
}
.ant-calendar-picker-icon {
  display: inline-block;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1;
}
.ant-input-disabled + .ant-calendar-picker-icon {
  cursor: not-allowed;
}
.ant-calendar-picker-small .ant-calendar-picker-clear,
.ant-calendar-picker-small .ant-calendar-picker-icon {
  right: 8px;
}
.ant-calendar {
  position: relative;
  width: 280px;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #fff;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-calendar-input-wrap {
  height: 34px;
  padding: 6px 10px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-calendar-input {
  width: 100%;
  height: 22px;
  color: rgba(0, 0, 0, 0.65);
  background: #fff;
  border: 0;
  outline: 0;
  cursor: auto;
}
.ant-calendar-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-calendar-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-calendar-week-number {
  width: 286px;
}
.ant-calendar-week-number-cell {
  text-align: center;
}
.ant-calendar-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-calendar-header a:hover {
  color: #40a9ff;
}
.ant-calendar-header .ant-calendar-century-select,
.ant-calendar-header .ant-calendar-decade-select,
.ant-calendar-header .ant-calendar-year-select,
.ant-calendar-header .ant-calendar-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-header .ant-calendar-century-select-arrow,
.ant-calendar-header .ant-calendar-decade-select-arrow,
.ant-calendar-header .ant-calendar-year-select-arrow,
.ant-calendar-header .ant-calendar-month-select-arrow {
  display: none;
}
.ant-calendar-header .ant-calendar-prev-century-btn,
.ant-calendar-header .ant-calendar-next-century-btn,
.ant-calendar-header .ant-calendar-prev-decade-btn,
.ant-calendar-header .ant-calendar-next-decade-btn,
.ant-calendar-header .ant-calendar-prev-month-btn,
.ant-calendar-header .ant-calendar-next-month-btn,
.ant-calendar-header .ant-calendar-prev-year-btn,
.ant-calendar-header .ant-calendar-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-header .ant-calendar-prev-century-btn,
.ant-calendar-header .ant-calendar-prev-decade-btn,
.ant-calendar-header .ant-calendar-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-prev-century-btn::before,
.ant-calendar-header .ant-calendar-prev-decade-btn::before,
.ant-calendar-header .ant-calendar-prev-year-btn::before,
.ant-calendar-header .ant-calendar-prev-century-btn::after,
.ant-calendar-header .ant-calendar-prev-decade-btn::after,
.ant-calendar-header .ant-calendar-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-prev-century-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-decade-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-year-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-century-btn:hover::after,
.ant-calendar-header .ant-calendar-prev-decade-btn:hover::after,
.ant-calendar-header .ant-calendar-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-prev-century-btn::after,
.ant-calendar-header .ant-calendar-prev-decade-btn::after,
.ant-calendar-header .ant-calendar-prev-year-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-prev-century-btn::after,
.ant-calendar-header .ant-calendar-prev-decade-btn::after,
.ant-calendar-header .ant-calendar-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-header .ant-calendar-next-century-btn,
.ant-calendar-header .ant-calendar-next-decade-btn,
.ant-calendar-header .ant-calendar-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-next-century-btn::before,
.ant-calendar-header .ant-calendar-next-decade-btn::before,
.ant-calendar-header .ant-calendar-next-year-btn::before,
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-next-century-btn:hover::before,
.ant-calendar-header .ant-calendar-next-decade-btn:hover::before,
.ant-calendar-header .ant-calendar-next-year-btn:hover::before,
.ant-calendar-header .ant-calendar-next-century-btn:hover::after,
.ant-calendar-header .ant-calendar-next-decade-btn:hover::after,
.ant-calendar-header .ant-calendar-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-next-century-btn::before,
.ant-calendar-header .ant-calendar-next-decade-btn::before,
.ant-calendar-header .ant-calendar-next-year-btn::before,
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-header .ant-calendar-next-century-btn::before,
.ant-calendar-header .ant-calendar-next-decade-btn::before,
.ant-calendar-header .ant-calendar-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-header .ant-calendar-next-century-btn::after,
.ant-calendar-header .ant-calendar-next-decade-btn::after,
.ant-calendar-header .ant-calendar-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-header .ant-calendar-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-prev-month-btn::before,
.ant-calendar-header .ant-calendar-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-prev-month-btn:hover::before,
.ant-calendar-header .ant-calendar-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-prev-month-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-header .ant-calendar-next-month-btn::before,
.ant-calendar-header .ant-calendar-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-header .ant-calendar-next-month-btn:hover::before,
.ant-calendar-header .ant-calendar-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-header .ant-calendar-next-month-btn::after {
  display: none;
}
.ant-calendar-header .ant-calendar-next-month-btn::before,
.ant-calendar-header .ant-calendar-next-month-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-body {
  padding: 8px 12px;
}
.ant-calendar table {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
}
.ant-calendar table,
.ant-calendar th,
.ant-calendar td {
  text-align: center;
  border: 0;
}
.ant-calendar-calendar-table {
  margin-bottom: 0;
  border-spacing: 0;
}
.ant-calendar-column-header {
  width: 33px;
  padding: 6px 0;
  line-height: 18px;
  text-align: center;
}
.ant-calendar-column-header .ant-calendar-column-header-inner {
  display: block;
  font-weight: normal;
}
.ant-calendar-week-number-header .ant-calendar-column-header-inner {
  display: none;
}
.ant-calendar-cell {
  height: 30px;
  padding: 3px 0;
}
.ant-calendar-date {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
  text-align: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-calendar-date-panel {
  position: relative;
  outline: none;
}
.ant-calendar-date:hover {
  background: #e6f7ff;
  cursor: pointer;
}
.ant-calendar-date:active {
  color: #fff;
  background: #40a9ff;
}
.ant-calendar-today .ant-calendar-date {
  color: #1890ff;
  font-weight: bold;
  border-color: #1890ff;
}
.ant-calendar-selected-day .ant-calendar-date {
  background: #bae7ff;
}
.ant-calendar-last-month-cell .ant-calendar-date,
.ant-calendar-next-month-btn-day .ant-calendar-date,
.ant-calendar-last-month-cell .ant-calendar-date:hover,
.ant-calendar-next-month-btn-day .ant-calendar-date:hover {
  color: rgba(0, 0, 0, 0.25);
  background: transparent;
  border-color: transparent;
}
.ant-calendar-disabled-cell .ant-calendar-date {
  position: relative;
  width: auto;
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: not-allowed;
}
.ant-calendar-disabled-cell .ant-calendar-date:hover {
  background: #f5f5f5;
}
.ant-calendar-disabled-cell.ant-calendar-selected-day .ant-calendar-date::before {
  position: absolute;
  top: -1px;
  left: 5px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  content: '';
}
.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date {
  position: relative;
  padding-right: 5px;
  padding-left: 5px;
}
.ant-calendar-disabled-cell.ant-calendar-today .ant-calendar-date::before {
  position: absolute;
  top: -1px;
  left: 5px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 2px;
  content: ' ';
}
.ant-calendar-disabled-cell-first-of-row .ant-calendar-date {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.ant-calendar-disabled-cell-last-of-row .ant-calendar-date {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.ant-calendar-footer {
  padding: 0 12px;
  line-height: 38px;
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-footer:empty {
  border-top: 0;
}
.ant-calendar-footer-btn {
  display: block;
  text-align: center;
}
.ant-calendar-footer-extra {
  text-align: left;
}
.ant-calendar .ant-calendar-today-btn,
.ant-calendar .ant-calendar-clear-btn {
  display: inline-block;
  margin: 0 0 0 8px;
  text-align: center;
}
.ant-calendar .ant-calendar-today-btn-disabled,
.ant-calendar .ant-calendar-clear-btn-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-calendar .ant-calendar-today-btn:only-child,
.ant-calendar .ant-calendar-clear-btn:only-child {
  margin: 0;
}
.ant-calendar .ant-calendar-clear-btn {
  position: absolute;
  top: 7px;
  right: 5px;
  display: none;
  width: 20px;
  height: 20px;
  margin: 0;
  overflow: hidden;
  line-height: 20px;
  text-align: center;
  text-indent: -76px;
}
.ant-calendar .ant-calendar-clear-btn::after {
  display: inline-block;
  width: 20px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1;
  text-indent: 43px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.ant-calendar .ant-calendar-clear-btn:hover::after {
  color: rgba(0, 0, 0, 0.45);
}
.ant-calendar .ant-calendar-ok-btn {
  position: relative;
  display: inline-block;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
  background-image: none;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  height: 32px;
  padding: 0 15px;
  color: #fff;
  background-color: #1890ff;
  border-color: #1890ff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 22px;
}
.ant-calendar .ant-calendar-ok-btn > .anticon {
  line-height: 1;
}
.ant-calendar .ant-calendar-ok-btn,
.ant-calendar .ant-calendar-ok-btn:active,
.ant-calendar .ant-calendar-ok-btn:focus {
  outline: 0;
}
.ant-calendar .ant-calendar-ok-btn:not([disabled]):hover {
  text-decoration: none;
}
.ant-calendar .ant-calendar-ok-btn:not([disabled]):active {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled] {
  cursor: not-allowed;
}
.ant-calendar .ant-calendar-ok-btn.disabled > *,
.ant-calendar .ant-calendar-ok-btn[disabled] > * {
  pointer-events: none;
}
.ant-calendar .ant-calendar-ok-btn-lg {
  height: 40px;
  padding: 0 15px;
  font-size: 16px;
  border-radius: 4px;
}
.ant-calendar .ant-calendar-ok-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 4px;
}
.ant-calendar .ant-calendar-ok-btn > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn:hover,
.ant-calendar .ant-calendar-ok-btn:focus {
  color: #fff;
  background-color: #40a9ff;
  border-color: #40a9ff;
}
.ant-calendar .ant-calendar-ok-btn:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn:focus > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn:focus > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn:active,
.ant-calendar .ant-calendar-ok-btn.active {
  color: #fff;
  background-color: #096dd9;
  border-color: #096dd9;
}
.ant-calendar .ant-calendar-ok-btn:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.active > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn-disabled,
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled],
.ant-calendar .ant-calendar-ok-btn-disabled:hover,
.ant-calendar .ant-calendar-ok-btn.disabled:hover,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover,
.ant-calendar .ant-calendar-ok-btn-disabled:focus,
.ant-calendar .ant-calendar-ok-btn.disabled:focus,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus,
.ant-calendar .ant-calendar-ok-btn-disabled:active,
.ant-calendar .ant-calendar-ok-btn.disabled:active,
.ant-calendar .ant-calendar-ok-btn[disabled]:active,
.ant-calendar .ant-calendar-ok-btn-disabled.active,
.ant-calendar .ant-calendar-ok-btn.disabled.active,
.ant-calendar .ant-calendar-ok-btn[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar .ant-calendar-ok-btn-disabled,
.ant-calendar .ant-calendar-ok-btn.disabled,
.ant-calendar .ant-calendar-ok-btn[disabled],
.ant-calendar .ant-calendar-ok-btn-disabled:hover,
.ant-calendar .ant-calendar-ok-btn.disabled:hover,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover,
.ant-calendar .ant-calendar-ok-btn-disabled:focus,
.ant-calendar .ant-calendar-ok-btn.disabled:focus,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus,
.ant-calendar .ant-calendar-ok-btn-disabled:active,
.ant-calendar .ant-calendar-ok-btn.disabled:active,
.ant-calendar .ant-calendar-ok-btn[disabled]:active,
.ant-calendar .ant-calendar-ok-btn-disabled.active,
.ant-calendar .ant-calendar-ok-btn.disabled.active,
.ant-calendar .ant-calendar-ok-btn[disabled].active {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child {
  color: currentColor;
}
.ant-calendar .ant-calendar-ok-btn-disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled] > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:hover > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:focus > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled]:active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn-disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn.disabled.active > a:only-child::after,
.ant-calendar .ant-calendar-ok-btn[disabled].active > a:only-child::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  content: '';
}
.ant-calendar-range-picker-input {
  width: 44%;
  height: 99%;
  text-align: center;
  background-color: transparent;
  border: 0;
  outline: 0;
}
.ant-calendar-range-picker-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-calendar-range-picker-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range-picker-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range-picker-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-calendar-range-picker-input[disabled] {
  cursor: not-allowed;
}
.ant-calendar-range-picker-separator {
  display: inline-block;
  min-width: 10px;
  height: 100%;
  color: rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  text-align: center;
  vertical-align: top;
  pointer-events: none;
}
.ant-calendar-range {
  width: 552px;
  overflow: hidden;
}
.ant-calendar-range .ant-calendar-date-panel::after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: '.';
}
.ant-calendar-range-part {
  position: relative;
  width: 50%;
}
.ant-calendar-range-left {
  float: left;
}
.ant-calendar-range-left .ant-calendar-time-picker-inner {
  border-right: 1px solid #e8e8e8;
}
.ant-calendar-range-right {
  float: right;
}
.ant-calendar-range-right .ant-calendar-time-picker-inner {
  border-left: 1px solid #e8e8e8;
}
.ant-calendar-range-middle {
  position: absolute;
  left: 50%;
  z-index: 1;
  height: 34px;
  margin: 1px 0 0 0;
  padding: 0 200px 0 0;
  color: rgba(0, 0, 0, 0.45);
  line-height: 34px;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
.ant-calendar-range-right .ant-calendar-date-input-wrap {
  margin-left: -90px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-range-middle {
  padding: 0 10px 0 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.ant-calendar-range .ant-calendar-today :not(.ant-calendar-disabled-cell) :not(.ant-calendar-last-month-cell) :not(.ant-calendar-next-month-btn-day) .ant-calendar-date {
  color: #1890ff;
  background: #bae7ff;
  border-color: #1890ff;
}
.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date {
  color: #fff;
  background: #1890ff;
  border: 1px solid transparent;
}
.ant-calendar-range .ant-calendar-selected-start-date .ant-calendar-date:hover,
.ant-calendar-range .ant-calendar-selected-end-date .ant-calendar-date:hover {
  background: #1890ff;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-range-right .ant-calendar-date-input-wrap {
  margin-left: 0;
}
.ant-calendar-range .ant-calendar-input-wrap {
  position: relative;
  height: 34px;
}
.ant-calendar-range .ant-calendar-input,
.ant-calendar-range .ant-calendar-time-picker-input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 24px;
  padding-right: 0;
  padding-left: 0;
  line-height: 24px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-calendar-range .ant-calendar-input::-moz-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-calendar-range .ant-calendar-input:-ms-input-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range .ant-calendar-input::-webkit-input-placeholder,
.ant-calendar-range .ant-calendar-time-picker-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-calendar-range .ant-calendar-input:placeholder-shown,
.ant-calendar-range .ant-calendar-time-picker-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-calendar-range .ant-calendar-input:hover,
.ant-calendar-range .ant-calendar-time-picker-input:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-calendar-range .ant-calendar-input:focus,
.ant-calendar-range .ant-calendar-time-picker-input:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-calendar-range .ant-calendar-input-disabled,
.ant-calendar-range .ant-calendar-time-picker-input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-calendar-range .ant-calendar-input-disabled:hover,
.ant-calendar-range .ant-calendar-time-picker-input-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-calendar-range .ant-calendar-input[disabled],
.ant-calendar-range .ant-calendar-time-picker-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-calendar-range .ant-calendar-input[disabled]:hover,
.ant-calendar-range .ant-calendar-time-picker-input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
textarea.ant-calendar-range .ant-calendar-input,
textarea.ant-calendar-range .ant-calendar-time-picker-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.ant-calendar-range .ant-calendar-input-lg,
.ant-calendar-range .ant-calendar-time-picker-input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-calendar-range .ant-calendar-input-sm,
.ant-calendar-range .ant-calendar-time-picker-input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-calendar-range .ant-calendar-input:focus,
.ant-calendar-range .ant-calendar-time-picker-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-calendar-range .ant-calendar-time-picker-icon {
  display: none;
}
.ant-calendar-range.ant-calendar-week-number {
  width: 574px;
}
.ant-calendar-range.ant-calendar-week-number .ant-calendar-range-part {
  width: 286px;
}
.ant-calendar-range .ant-calendar-year-panel,
.ant-calendar-range .ant-calendar-month-panel,
.ant-calendar-range .ant-calendar-decade-panel {
  top: 34px;
}
.ant-calendar-range .ant-calendar-month-panel .ant-calendar-year-panel {
  top: 0;
}
.ant-calendar-range .ant-calendar-decade-panel-table,
.ant-calendar-range .ant-calendar-year-panel-table,
.ant-calendar-range .ant-calendar-month-panel-table {
  height: 208px;
}
.ant-calendar-range .ant-calendar-in-range-cell {
  position: relative;
  border-radius: 0;
}
.ant-calendar-range .ant-calendar-in-range-cell > div {
  position: relative;
  z-index: 1;
}
.ant-calendar-range .ant-calendar-in-range-cell::before {
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  left: 0;
  display: block;
  background: #e6f7ff;
  border: 0;
  border-radius: 0;
  content: '';
}
.ant-calendar-range .ant-calendar-footer-extra {
  float: left;
}
div.ant-calendar-range-quick-selector {
  text-align: left;
}
div.ant-calendar-range-quick-selector > a {
  margin-right: 8px;
}
.ant-calendar-range .ant-calendar-header,
.ant-calendar-range .ant-calendar-month-panel-header,
.ant-calendar-range .ant-calendar-year-panel-header,
.ant-calendar-range .ant-calendar-decade-panel-header {
  border-bottom: 0;
}
.ant-calendar-range .ant-calendar-body,
.ant-calendar-range .ant-calendar-month-panel-body,
.ant-calendar-range .ant-calendar-year-panel-body,
.ant-calendar-range .ant-calendar-decade-panel-body {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker {
  top: 68px;
  z-index: 2;
  width: 100%;
  height: 207px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-panel {
  height: 267px;
  margin-top: -34px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-inner {
  height: 100%;
  padding-top: 40px;
  background: none;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-combobox {
  display: inline-block;
  height: 100%;
  background-color: #fff;
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select {
  height: 100%;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-time-picker-select ul {
  max-height: 100%;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  margin-right: 8px;
}
.ant-calendar-range.ant-calendar-time .ant-calendar-today-btn {
  height: 22px;
  margin: 8px 12px;
  line-height: 22px;
}
.ant-calendar-range-with-ranges.ant-calendar-time .ant-calendar-time-picker {
  height: 233px;
}
.ant-calendar-range.ant-calendar-show-time-picker .ant-calendar-body {
  border-top-color: transparent;
}
.ant-calendar-time-picker {
  position: absolute;
  top: 40px;
  width: 100%;
  background-color: #fff;
}
.ant-calendar-time-picker-panel {
  position: absolute;
  z-index: 1050;
  width: 100%;
}
.ant-calendar-time-picker-inner {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  outline: none;
}
.ant-calendar-time-picker-combobox {
  width: 100%;
}
.ant-calendar-time-picker-column-1,
.ant-calendar-time-picker-column-1 .ant-calendar-time-picker-select {
  width: 100%;
}
.ant-calendar-time-picker-column-2 .ant-calendar-time-picker-select {
  width: 50%;
}
.ant-calendar-time-picker-column-3 .ant-calendar-time-picker-select {
  width: 33.33%;
}
.ant-calendar-time-picker-column-4 .ant-calendar-time-picker-select {
  width: 25%;
}
.ant-calendar-time-picker-input-wrap {
  display: none;
}
.ant-calendar-time-picker-select {
  position: relative;
  float: left;
  height: 226px;
  overflow: hidden;
  font-size: 14px;
  border-right: 1px solid #e8e8e8;
}
.ant-calendar-time-picker-select:hover {
  overflow-y: auto;
}
.ant-calendar-time-picker-select:first-child {
  margin-left: 0;
  border-left: 0;
}
.ant-calendar-time-picker-select:last-child {
  border-right: 0;
}
.ant-calendar-time-picker-select ul {
  width: 100%;
  max-height: 206px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-calendar-time-picker-select li {
  width: 100%;
  height: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  list-style: none;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-calendar-time-picker-select li:last-child::after {
  display: block;
  height: 202px;
  content: '';
}
.ant-calendar-time-picker-select li:hover {
  background: #e6f7ff;
}
.ant-calendar-time-picker-select li:focus {
  color: #1890ff;
  font-weight: 600;
  outline: none;
}
li.ant-calendar-time-picker-select-option-selected {
  font-weight: 600;
  background: #f5f5f5;
}
li.ant-calendar-time-picker-select-option-disabled {
  color: rgba(0, 0, 0, 0.25);
}
li.ant-calendar-time-picker-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}
.ant-calendar-time .ant-calendar-day-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 34px;
}
.ant-calendar-time .ant-calendar-footer {
  position: relative;
  height: auto;
}
.ant-calendar-time .ant-calendar-footer-btn {
  text-align: right;
}
.ant-calendar-time .ant-calendar-footer .ant-calendar-today-btn {
  float: left;
  margin: 0;
}
.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn {
  display: inline-block;
  margin-right: 8px;
}
.ant-calendar-time .ant-calendar-footer .ant-calendar-time-picker-btn-disabled {
  color: rgba(0, 0, 0, 0.25);
}
.ant-calendar-month-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 4px;
  outline: none;
}
.ant-calendar-month-panel > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
}
.ant-calendar-month-panel-hidden {
  display: none;
}
.ant-calendar-month-panel-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.ant-calendar-month-panel-header a:hover {
  color: #40a9ff;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select,
.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-century-select-arrow,
.ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select-arrow,
.ant-calendar-month-panel-header .ant-calendar-month-panel-year-select-arrow,
.ant-calendar-month-panel-header .ant-calendar-month-panel-month-select-arrow {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn:hover::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-century-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-decade-btn::after,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-prev-month-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
  display: none;
}
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::before,
.ant-calendar-month-panel-header .ant-calendar-month-panel-next-month-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-month-panel-body {
  -ms-flex: 1 1;
      flex: 1 1;
}
.ant-calendar-month-panel-footer {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-month-panel-footer .ant-calendar-footer-extra {
  padding: 0 12px;
}
.ant-calendar-month-panel-table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month {
  color: #fff;
  background: #1890ff;
}
.ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month:hover {
  color: #fff;
  background: #1890ff;
}
.ant-calendar-month-panel-cell {
  text-align: center;
}
.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month,
.ant-calendar-month-panel-cell-disabled .ant-calendar-month-panel-month:hover {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-calendar-month-panel-month {
  display: inline-block;
  height: 24px;
  margin: 0 auto;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: center;
  background: transparent;
  border-radius: 2px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-calendar-month-panel-month:hover {
  background: #e6f7ff;
  cursor: pointer;
}
.ant-calendar-year-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  border-radius: 4px;
  outline: none;
}
.ant-calendar-year-panel > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
}
.ant-calendar-year-panel-hidden {
  display: none;
}
.ant-calendar-year-panel-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.ant-calendar-year-panel-header a:hover {
  color: #40a9ff;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select,
.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-century-select-arrow,
.ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select-arrow,
.ant-calendar-year-panel-header .ant-calendar-year-panel-year-select-arrow,
.ant-calendar-year-panel-header .ant-calendar-year-panel-month-select-arrow {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn:hover::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-century-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-decade-btn::after,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-prev-month-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
  display: none;
}
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::before,
.ant-calendar-year-panel-header .ant-calendar-year-panel-next-month-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-year-panel-body {
  -ms-flex: 1 1;
      flex: 1 1;
}
.ant-calendar-year-panel-footer {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-year-panel-footer .ant-calendar-footer-extra {
  padding: 0 12px;
}
.ant-calendar-year-panel-table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-calendar-year-panel-cell {
  text-align: center;
}
.ant-calendar-year-panel-year {
  display: inline-block;
  height: 24px;
  margin: 0 auto;
  padding: 0 8px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: center;
  background: transparent;
  border-radius: 2px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-calendar-year-panel-year:hover {
  background: #e6f7ff;
  cursor: pointer;
}
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year {
  color: #fff;
  background: #1890ff;
}
.ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year:hover {
  color: #fff;
  background: #1890ff;
}
.ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
.ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  color: rgba(0, 0, 0, 0.25);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-calendar-decade-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  background: #fff;
  border-radius: 4px;
  outline: none;
}
.ant-calendar-decade-panel-hidden {
  display: none;
}
.ant-calendar-decade-panel-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-bottom: 1px solid #e8e8e8;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.ant-calendar-decade-panel-header a:hover {
  color: #40a9ff;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select {
  display: inline-block;
  padding: 0 2px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  line-height: 40px;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-century-select-arrow,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-decade-select-arrow,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-year-select-arrow,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-month-select-arrow {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  position: absolute;
  top: 0;
  display: inline-block;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 16px;
  font-family: Arial, 'Hiragino Sans GB', 'Microsoft Yahei', 'Microsoft Sans Serif', sans-serif;
  line-height: 40px;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn {
  left: 7px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-year-btn::after {
  position: relative;
  left: -3px;
  display: inline-block;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn {
  right: 7px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn:hover::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::before {
  position: relative;
  left: 3px;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-century-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-decade-btn::after,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-year-btn::after {
  display: inline-block;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn {
  left: 29px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-prev-month-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn {
  right: 29px;
  height: 100%;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #aaa;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn:hover::after {
  border-color: rgba(0, 0, 0, 0.65);
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
  display: none;
}
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::before,
.ant-calendar-decade-panel-header .ant-calendar-decade-panel-next-month-btn::after {
  -webkit-transform: rotate(135deg) scale(0.8);
          transform: rotate(135deg) scale(0.8);
}
.ant-calendar-decade-panel-body {
  -ms-flex: 1 1;
      flex: 1 1;
}
.ant-calendar-decade-panel-footer {
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-decade-panel-footer .ant-calendar-footer-extra {
  padding: 0 12px;
}
.ant-calendar-decade-panel-table {
  width: 100%;
  height: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.ant-calendar-decade-panel-cell {
  white-space: nowrap;
  text-align: center;
}
.ant-calendar-decade-panel-decade {
  display: inline-block;
  height: 24px;
  margin: 0 auto;
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-align: center;
  background: transparent;
  border-radius: 2px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ant-calendar-decade-panel-decade:hover {
  background: #e6f7ff;
  cursor: pointer;
}
.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade {
  color: #fff;
  background: #1890ff;
}
.ant-calendar-decade-panel-selected-cell .ant-calendar-decade-panel-decade:hover {
  color: #fff;
  background: #1890ff;
}
.ant-calendar-decade-panel-last-century-cell .ant-calendar-decade-panel-decade,
.ant-calendar-decade-panel-next-century-cell .ant-calendar-decade-panel-decade {
  color: rgba(0, 0, 0, 0.25);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-calendar-month .ant-calendar-month-header-wrap {
  position: relative;
  height: 288px;
}
.ant-calendar-month .ant-calendar-month-panel,
.ant-calendar-month .ant-calendar-year-panel {
  top: 0;
  height: 100%;
}
.ant-calendar-week-number-cell {
  opacity: 0.5;
}
.ant-calendar-week-number .ant-calendar-body tr {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-calendar-week-number .ant-calendar-body tr:hover {
  background: #e6f7ff;
}
.ant-calendar-week-number .ant-calendar-body tr.ant-calendar-active-week {
  font-weight: bold;
  background: #bae7ff;
}
.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day .ant-calendar-date,
.ant-calendar-week-number .ant-calendar-body tr .ant-calendar-selected-day:hover .ant-calendar-date {
  color: rgba(0, 0, 0, 0.65);
  background: transparent;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-time-picker-panel {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: absolute;
  z-index: 1050;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
.ant-time-picker-panel-inner {
  position: relative;
  left: -2px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  outline: none;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-time-picker-panel-input {
  width: 100%;
  max-width: 154px;
  margin: 0;
  padding: 0;
  line-height: normal;
  border: 0;
  outline: 0;
  cursor: auto;
}
.ant-time-picker-panel-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-time-picker-panel-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-panel-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-panel-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-time-picker-panel-input-wrap {
  position: relative;
  padding: 7px 2px 7px 12px;
  border-bottom: 1px solid #e8e8e8;
}
.ant-time-picker-panel-input-invalid {
  border-color: #f5222d;
}
.ant-time-picker-panel-narrow .ant-time-picker-panel-input-wrap {
  max-width: 112px;
}
.ant-time-picker-panel-select {
  position: relative;
  float: left;
  width: 56px;
  max-height: 192px;
  overflow: hidden;
  font-size: 14px;
  border-left: 1px solid #e8e8e8;
}
.ant-time-picker-panel-select:hover {
  overflow-y: auto;
}
.ant-time-picker-panel-select:first-child {
  margin-left: 0;
  border-left: 0;
}
.ant-time-picker-panel-select:last-child {
  border-right: 0;
}
.ant-time-picker-panel-select:only-child {
  width: 100%;
}
.ant-time-picker-panel-select ul {
  width: 56px;
  margin: 0;
  padding: 0 0 160px;
  list-style: none;
}
.ant-time-picker-panel-select li {
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 0 0 12px;
  line-height: 32px;
  text-align: left;
  list-style: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-time-picker-panel-select li:focus {
  color: #1890ff;
  font-weight: 600;
  outline: none;
}
.ant-time-picker-panel-select li:hover {
  background: #e6f7ff;
}
li.ant-time-picker-panel-select-option-selected {
  font-weight: 600;
  background: #f5f5f5;
}
li.ant-time-picker-panel-select-option-selected:hover {
  background: #f5f5f5;
}
li.ant-time-picker-panel-select-option-disabled {
  color: rgba(0, 0, 0, 0.25);
}
li.ant-time-picker-panel-select-option-disabled:hover {
  background: transparent;
  cursor: not-allowed;
}
li.ant-time-picker-panel-select-option-disabled:focus {
  color: rgba(0, 0, 0, 0.25);
  font-weight: inherit;
}
.ant-time-picker-panel-combobox {
  zoom: 1;
}
.ant-time-picker-panel-combobox::before,
.ant-time-picker-panel-combobox::after {
  display: table;
  content: '';
}
.ant-time-picker-panel-combobox::after {
  clear: both;
}
.ant-time-picker-panel-addon {
  padding: 8px;
  border-top: 1px solid #e8e8e8;
}
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topLeft,
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-topRight,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topLeft,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-topRight {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomLeft,
.ant-time-picker-panel.slide-up-enter.slide-up-enter-active.ant-time-picker-panel-placement-bottomRight,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomLeft,
.ant-time-picker-panel.slide-up-appear.slide-up-appear-active.ant-time-picker-panel-placement-bottomRight {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topLeft,
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-topRight {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomLeft,
.ant-time-picker-panel.slide-up-leave.slide-up-leave-active.ant-time-picker-panel-placement-bottomRight {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.ant-time-picker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 128px;
  outline: none;
  cursor: text;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ant-time-picker-input {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-time-picker-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-time-picker-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-time-picker-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-time-picker-input:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-time-picker-input:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-time-picker-input-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-time-picker-input-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-time-picker-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-time-picker-input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
textarea.ant-time-picker-input {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.ant-time-picker-input-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-time-picker-input-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-time-picker-input[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-time-picker-input[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-time-picker-open {
  opacity: 0;
}
.ant-time-picker-icon,
.ant-time-picker-clear {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 14px;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-time-picker-icon .ant-time-picker-clock-icon,
.ant-time-picker-clear .ant-time-picker-clock-icon {
  display: block;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
}
.ant-time-picker-clear {
  z-index: 2;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.ant-time-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-time-picker:hover .ant-time-picker-clear {
  opacity: 1;
  pointer-events: auto;
}
.ant-time-picker-large .ant-time-picker-input {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-time-picker-small .ant-time-picker-input {
  height: 24px;
  padding: 1px 7px;
}
.ant-time-picker-small .ant-time-picker-icon,
.ant-time-picker-small .ant-time-picker-clear {
  right: 7px;
}
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .ant-input {
      line-height: 1.5;
    }
  }
}
.fieldInfoTable___3zYfC {
  position: absolute;
  top: 65px;
  right: 0;
  bottom: 0;
  left: 0;
}
.fieldInfoTable___3zYfC .ant-table-body {
  top: 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-cascader {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
}
.ant-cascader-input.ant-input {
  position: static;
  width: 100%;
  padding-right: 24px;
  background-color: transparent !important;
  cursor: pointer;
}
.ant-cascader-picker-show-search .ant-cascader-input.ant-input {
  position: relative;
}
.ant-cascader-picker {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  outline: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-cascader-picker-with-value .ant-cascader-picker-label {
  color: transparent;
}
.ant-cascader-picker-disabled {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.ant-cascader-picker-disabled .ant-cascader-input {
  cursor: not-allowed;
}
.ant-cascader-picker:focus .ant-cascader-input {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-cascader-picker-show-search.ant-cascader-picker-focused {
  color: rgba(0, 0, 0, 0.25);
}
.ant-cascader-picker-label {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 20px;
  margin-top: -10px;
  padding: 0 20px 0 12px;
  overflow: hidden;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-cascader-picker-clear {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 2;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 12px;
  background: #fff;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: color 0.3s ease, opacity 0.15s ease;
  transition: color 0.3s ease, opacity 0.15s ease;
}
.ant-cascader-picker-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-cascader-picker:hover .ant-cascader-picker-clear {
  opacity: 1;
}
.ant-cascader-picker-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 12px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.ant-cascader-picker-arrow.ant-cascader-picker-arrow-expand {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.ant-cascader-picker-label:hover + .ant-cascader-input {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-cascader-picker-small .ant-cascader-picker-clear,
.ant-cascader-picker-small .ant-cascader-picker-arrow {
  right: 8px;
}
.ant-cascader-menus {
  position: absolute;
  z-index: 1050;
  font-size: 14px;
  white-space: nowrap;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-cascader-menus ul,
.ant-cascader-menus ol {
  margin: 0;
  list-style: none;
}
.ant-cascader-menus-empty,
.ant-cascader-menus-hidden {
  display: none;
}
.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-bottomLeft,
.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-bottomLeft {
  -webkit-animation-name: antSlideUpIn;
          animation-name: antSlideUpIn;
}
.ant-cascader-menus.slide-up-enter.slide-up-enter-active.ant-cascader-menus-placement-topLeft,
.ant-cascader-menus.slide-up-appear.slide-up-appear-active.ant-cascader-menus-placement-topLeft {
  -webkit-animation-name: antSlideDownIn;
          animation-name: antSlideDownIn;
}
.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-bottomLeft {
  -webkit-animation-name: antSlideUpOut;
          animation-name: antSlideUpOut;
}
.ant-cascader-menus.slide-up-leave.slide-up-leave-active.ant-cascader-menus-placement-topLeft {
  -webkit-animation-name: antSlideDownOut;
          animation-name: antSlideDownOut;
}
.ant-cascader-menu {
  display: inline-block;
  min-width: 111px;
  height: 180px;
  margin: 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #e8e8e8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.ant-cascader-menu:first-child {
  border-radius: 4px 0 0 4px;
}
.ant-cascader-menu:last-child {
  margin-right: -1px;
  border-right-color: transparent;
  border-radius: 0 4px 4px 0;
}
.ant-cascader-menu:only-child {
  border-radius: 4px;
}
.ant-cascader-menu-item {
  padding: 5px 12px;
  line-height: 22px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-cascader-menu-item:hover {
  background: #e6f7ff;
}
.ant-cascader-menu-item-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-cascader-menu-item-disabled:hover {
  background: transparent;
}
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled),
.ant-cascader-menu-item-active:not(.ant-cascader-menu-item-disabled):hover {
  font-weight: 600;
  background-color: #fafafa;
}
.ant-cascader-menu-item-expand {
  position: relative;
  padding-right: 24px;
}
.ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
.ant-cascader-menu-item-loading-icon {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  position: absolute;
  right: 12px;
  color: rgba(0, 0, 0, 0.45);
}
:root .ant-cascader-menu-item-expand .ant-cascader-menu-item-expand-icon,
:root .ant-cascader-menu-item-loading-icon {
  font-size: 12px;
}
.ant-cascader-menu-item .ant-cascader-menu-item-keyword {
  color: #f5222d;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
@-webkit-keyframes antCheckboxEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes antCheckboxEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
.ant-tree.ant-tree-directory {
  position: relative;
}
.ant-tree.ant-tree-directory > li span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher {
  position: relative;
  z-index: 1;
}
.ant-tree.ant-tree-directory > li span.ant-tree-switcher.ant-tree-switcher-noop,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-switcher.ant-tree-switcher-noop {
  pointer-events: none;
}
.ant-tree.ant-tree-directory > li span.ant-tree-checkbox,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-checkbox {
  position: relative;
  z-index: 1;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper {
  border-radius: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper:hover::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper:hover::before {
  background: #e6f7ff;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper.ant-tree-node-selected,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper.ant-tree-node-selected {
  color: #fff;
  background: transparent;
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 24px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
.ant-tree.ant-tree-directory > li span.ant-tree-node-content-wrapper > span,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li span.ant-tree-node-content-wrapper > span {
  position: relative;
  z-index: 1;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-switcher,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-switcher {
  color: #fff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox .ant-tree-checkbox-inner {
  border-color: #1890ff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked::after {
  border-color: #fff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background: #fff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-checkbox.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: #1890ff;
}
.ant-tree.ant-tree-directory > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before,
.ant-tree.ant-tree-directory .ant-tree-child-tree > li.ant-tree-treenode-selected > span.ant-tree-node-content-wrapper::before {
  background: #1890ff;
}
.ant-tree-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox:hover .ant-tree-checkbox-inner,
.ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner {
  border-color: #1890ff;
}
.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1890ff;
  border-radius: 2px;
  visibility: hidden;
  -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
          animation: antCheckboxEffect 0.36s ease-in-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  content: '';
}
.ant-tree-checkbox:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox::after {
  visibility: visible;
}
.ant-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
          transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
          transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #1890ff;
  border-color: #1890ff;
}
.ant-tree-checkbox-disabled {
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled.ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  -webkit-animation-name: none;
          animation-name: none;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-input {
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  -webkit-animation-name: none;
          animation-name: none;
}
.ant-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-tree-checkbox-disabled:hover::after,
.ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-disabled::after {
  visibility: hidden;
}
.ant-tree-checkbox-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}
.ant-tree-checkbox-wrapper.ant-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-tree-checkbox-wrapper + .ant-tree-checkbox-wrapper {
  margin-left: 8px;
}
.ant-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-tree-checkbox-group {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-tree-checkbox-group-item {
  display: inline-block;
  margin-right: 8px;
}
.ant-tree-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-tree-checkbox-group-item + .ant-tree-checkbox-group-item {
  margin-left: 0;
}
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-tree-checkbox-indeterminate .ant-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #1890ff;
  border: 0;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-tree-checkbox-indeterminate.ant-tree-checkbox-disabled .ant-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-tree {
  /* see https://github.com/ant-design/ant-design/issues/16259 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  margin: 0;
  padding: 0;
}
.ant-tree-checkbox-checked::after {
  position: absolute;
  top: 16.67%;
  left: 0;
  width: 100%;
  height: 66.67%;
}
.ant-tree ol,
.ant-tree ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ant-tree li {
  margin: 0;
  padding: 4px 0;
  white-space: nowrap;
  list-style: none;
  outline: 0;
}
.ant-tree li span[draggable],
.ant-tree li span[draggable='true'] {
  line-height: 20px;
  border-top: 2px transparent solid;
  border-bottom: 2px transparent solid;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
.ant-tree li.drag-over > span[draggable] {
  color: white;
  background-color: #1890ff;
  opacity: 0.8;
}
.ant-tree li.drag-over-gap-top > span[draggable] {
  border-top-color: #1890ff;
}
.ant-tree li.drag-over-gap-bottom > span[draggable] {
  border-bottom-color: #1890ff;
}
.ant-tree li.filter-node > span {
  color: #f5222d !important;
  font-weight: 500 !important;
}
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #1890ff;
  font-size: 14px;
  -webkit-transform: none;
          transform: none;
}
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-loading-icon svg,
.ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_open::after,
:root .ant-tree li.ant-tree-treenode-loading span.ant-tree-switcher.ant-tree-switcher_close::after {
  opacity: 0;
}
.ant-tree li ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.ant-tree li .ant-tree-node-content-wrapper {
  display: inline-block;
  height: 24px;
  margin: 0;
  padding: 0 5px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 24px;
  text-decoration: none;
  vertical-align: top;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-tree li .ant-tree-node-content-wrapper:hover {
  background-color: #e6f7ff;
}
.ant-tree li .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #bae7ff;
}
.ant-tree li span.ant-tree-checkbox {
  top: initial;
  height: 24px;
  margin: 0 4px 0 2px;
  padding: 4px 0;
}
.ant-tree li span.ant-tree-switcher,
.ant-tree li span.ant-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0;
  line-height: 24px;
  text-align: center;
  vertical-align: top;
  border: 0 none;
  outline: none;
  cursor: pointer;
}
.ant-tree li span.ant-tree-iconEle:empty {
  display: none;
}
.ant-tree li span.ant-tree-switcher {
  position: relative;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher-noop {
  cursor: default;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
:root .ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-tree li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.ant-tree li:last-child > span.ant-tree-switcher::before,
.ant-tree li:last-child > span.ant-tree-iconEle::before {
  display: none;
}
.ant-tree > li:first-child {
  padding-top: 7px;
}
.ant-tree > li:last-child {
  padding-bottom: 7px;
}
.ant-tree-child-tree > li:first-child {
  padding-top: 8px;
}
.ant-tree-child-tree > li:last-child {
  padding-bottom: 0;
}
li.ant-tree-treenode-disabled > span:not(.ant-tree-switcher),
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper,
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
li.ant-tree-treenode-disabled > .ant-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-tree-icon__open {
  margin-right: 2px;
  vertical-align: top;
}
.ant-tree-icon__close {
  margin-right: 2px;
  vertical-align: top;
}
.ant-tree.ant-tree-show-line li {
  position: relative;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher {
  color: rgba(0, 0, 0, 0.45);
  background: #fff;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher-noop .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_open .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon {
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
}
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-tree.ant-tree-show-line li span.ant-tree-switcher.ant-tree-switcher_close .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-tree.ant-tree-show-line li:not(:last-child)::before {
  position: absolute;
  left: 12px;
  width: 1px;
  height: 100%;
  height: calc(78%);
  margin: 22px 0 0;
  border-left: 1px solid #d9d9d9;
  content: ' ';
}
.ant-tree.ant-tree-icon-hide .ant-tree-treenode-loading .ant-tree-iconEle {
  display: none;
}
.ant-tree.ant-tree-block-node li .ant-tree-node-content-wrapper {
  width: calc(100% - 24px);
}
.ant-tree.ant-tree-block-node li span.ant-tree-checkbox + .ant-tree-node-content-wrapper {
  width: calc(100% - 46px);
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___1nhGt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___1nhGt {
  /**兼容Firefox、IE表头**/
}
.standardTable___1nhGt .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___1nhGt .ant-table {
  height: 100%;
}
.standardTable___1nhGt .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___1nhGt .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___1nhGt .ant-table-pagination {
  position: absolute;
  bottom: 4px;
  right: 0;
  margin: 0 !important;
}
.standardTable___1nhGt .ant-table-wrapper {
  height: 100%;
}
.standardTable___1nhGt .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___1nhGt .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___1nhGt table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___1nhGt table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___1nhGt table tr.red td {
  background: #ec03035c;
}
.standardTable___1nhGt .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___1nhGt .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___1nhGt .ant-table-thead > tr:hover > td,
.standardTable___1nhGt .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___1nhGt .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___1nhGt table th {
  background: #f3f7fc !important;
  text-align: center !important;
  color: #285fa6 !important;
}
.standardTable___1nhGt table tr .ant-table-selection-column {
  width: 30px !important;
}
.standardTable___1nhGt .ant-table-thead > tr th:nth-last-of-type(1),
.standardTable___1nhGt .ant-table-tbody > tr td:nth-last-of-type(1) {
  border-right: 1px solid #e8e8e8 !important;
}
.standardTable___1nhGt .ant-table-bordered .ant-table-thead > tr > th {
  border-right: 1px solid #e8e8e8 !important;
}
.standardTable___1nhGt .tableAlert___3rMle {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___Vp00w .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___Vp00w .ant-table-placeholder {
  margin: 0;
}
.tableList___pN1c- {
  width: 100%;
  height: 100%;
  position: relative;
}
.tableList___pN1c- .operaBtn___Jby3I {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-bottom: 10px;
}
.tableList___pN1c- .orgUserTable___11cmU {
  position: absolute;
  top: 37px;
  right: 0;
  bottom: 0;
  left: 0;
}
.tableListForm___BudXw {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.tableListForm___BudXw .ant-btn-sm {
  padding: 0 7px !important;
}
.menuRow___1vo1g {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  bottom: 20px;
}
.hidden___XwfHC {
  display: none!important;
}
.tableListOperator___195tG {
  margin: 16px 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___Obwp3 .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___Obwp3 .ant-table-placeholder {
  margin: 0;
}
.tableList___2aa7x {
  width: 100%;
  height: 100%;
  position: relative;
}
.tableListForm___5X2Ip {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.tableListForm___5X2Ip .ant-btn-sm {
  padding: 0 7px !important;
}
.menuRow___1WlfW {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  bottom: 20px;
}
.hidden___O505C {
  display: none!important;
}
.tableListOperator___2IKg1 {
  margin: 16px 0;
}
.menuTable___NqrJi {
  position: relative;
  min-height: 300px;
}
.submitButtons___1sPnD {
  position: absolute;
  right: 27px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3DePq {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___3DePq {
  /**兼容Firefox、IE表头**/
}
.standardTable___3DePq .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___3DePq .ant-table {
  height: 100%;
}
.standardTable___3DePq .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___3DePq .ant-table-body {
  position: absolute!important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___3DePq .ant-table-pagination {
  position: absolute;
  bottom: 4px;
  right: 0;
  margin: 0!important;
}
.standardTable___3DePq .ant-table-wrapper {
  height: 100%;
}
.standardTable___3DePq .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___3DePq .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___3DePq table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___3DePq table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___3DePq table tr.red td {
  background: #ec03035c;
}
.standardTable___3DePq .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___3DePq .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___3DePq .ant-table-thead > tr:hover > td,
.standardTable___3DePq .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___3DePq .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___3DePq .tableAlert___1No3u {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3D3eL .ant-table-pagination {
  margin-top: 24px;
}
.groupTypeTable___uUXzZ {
  position: absolute;
  top: 53px;
  right: 0;
  left: -15px;
  bottom: 0;
}
.searchForm___2pFV6 {
  margin-top: 10px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3KMqy .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___2iJMM {
  position: relative;
  z-index: 2;
}
.tableCss___Wcd1P {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  bottom: 8px;
}
.AppManageTable___JCfvq {
  position: absolute;
  top: 48px;
  right: 0;
  bottom: 0;
  left: -12px;
}
.btnWrapper___2wa_F {
  position: absolute;
  top: 7px;
  right: 0;
}
.fieldInfoTable___16IHo {
  position: absolute;
  top: 65px;
  right: 0;
  bottom: 0;
  left: 0;
}
.fieldInfoTable___16IHo .ant-table-body {
  top: 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-upload {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  outline: 0;
}
.ant-upload p {
  margin: 0;
}
.ant-upload-btn {
  display: block;
  width: 100%;
  outline: none;
}
.ant-upload input[type='file'] {
  cursor: pointer;
}
.ant-upload.ant-upload-select {
  display: inline-block;
}
.ant-upload.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-select-picture-card {
  display: table;
  float: left;
  width: 104px;
  height: 104px;
  margin-right: 8px;
  margin-bottom: 8px;
  text-align: center;
  vertical-align: top;
  background-color: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.ant-upload.ant-upload-select-picture-card > .ant-upload {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}
.ant-upload.ant-upload-select-picture-card:hover {
  border-color: #1890ff;
}
.ant-upload.ant-upload-drag {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.ant-upload.ant-upload-drag .ant-upload {
  padding: 16px 0;
}
.ant-upload.ant-upload-drag.ant-upload-drag-hover:not(.ant-upload-disabled) {
  border-color: #096dd9;
}
.ant-upload.ant-upload-drag.ant-upload-disabled {
  cursor: not-allowed;
}
.ant-upload.ant-upload-drag .ant-upload-btn {
  display: table;
  height: 100%;
}
.ant-upload.ant-upload-drag .ant-upload-drag-container {
  display: table-cell;
  vertical-align: middle;
}
.ant-upload.ant-upload-drag:not(.ant-upload-disabled):hover {
  border-color: #40a9ff;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon {
  margin-bottom: 20px;
}
.ant-upload.ant-upload-drag p.ant-upload-drag-icon .anticon {
  color: #40a9ff;
  font-size: 48px;
}
.ant-upload.ant-upload-drag p.ant-upload-text {
  margin: 0 0 4px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
}
.ant-upload.ant-upload-drag p.ant-upload-hint {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-upload.ant-upload-drag .anticon-plus {
  color: rgba(0, 0, 0, 0.25);
  font-size: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-upload.ant-upload-drag .anticon-plus:hover {
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload.ant-upload-drag:hover .anticon-plus {
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-picture-card-wrapper {
  zoom: 1;
  display: inline-block;
  width: 100%;
}
.ant-upload-picture-card-wrapper::before,
.ant-upload-picture-card-wrapper::after {
  display: table;
  content: '';
}
.ant-upload-picture-card-wrapper::after {
  clear: both;
}
.ant-upload-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  zoom: 1;
}
.ant-upload-list::before,
.ant-upload-list::after {
  display: table;
  content: '';
}
.ant-upload-list::after {
  clear: both;
}
.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-1 {
  padding-right: 14px;
}
.ant-upload-list-item-list-type-text:hover .ant-upload-list-item-name-icon-count-2 {
  padding-right: 28px;
}
.ant-upload-list-item {
  position: relative;
  height: 22px;
  margin-top: 8px;
  font-size: 14px;
}
.ant-upload-list-item-name {
  display: inline-block;
  width: 100%;
  padding-left: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-upload-list-item-name-icon-count-1 {
  padding-right: 14px;
}
.ant-upload-list-item-card-actions {
  position: absolute;
  right: 0;
  opacity: 0;
}
.ant-upload-list-item-card-actions.picture {
  top: 25px;
  line-height: 1;
  opacity: 1;
}
.ant-upload-list-item-card-actions .anticon {
  padding-right: 6px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-list-item-info {
  height: 100%;
  padding: 0 12px 0 4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.ant-upload-list-item-info > span {
  display: block;
  width: 100%;
  height: 100%;
}
.ant-upload-list-item-info .anticon-loading,
.ant-upload-list-item-info .anticon-paper-clip {
  position: absolute;
  top: 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-upload-list-item .anticon-close {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  position: absolute;
  top: 6px;
  right: 4px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 0;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
:root .ant-upload-list-item .anticon-close {
  font-size: 12px;
}
.ant-upload-list-item .anticon-close:hover {
  color: rgba(0, 0, 0, 0.65);
}
.ant-upload-list-item:hover .ant-upload-list-item-info {
  background-color: #e6f7ff;
}
.ant-upload-list-item:hover .anticon-close {
  opacity: 1;
}
.ant-upload-list-item:hover .ant-upload-list-item-card-actions {
  opacity: 1;
}
.ant-upload-list-item-error,
.ant-upload-list-item-error .anticon-paper-clip,
.ant-upload-list-item-error .ant-upload-list-item-name {
  color: #f5222d;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions {
  opacity: 1;
}
.ant-upload-list-item-error .ant-upload-list-item-card-actions .anticon {
  color: #f5222d;
}
.ant-upload-list-item-progress {
  position: absolute;
  bottom: -12px;
  width: 100%;
  padding-left: 26px;
  font-size: 14px;
  line-height: 0;
}
.ant-upload-list-picture .ant-upload-list-item,
.ant-upload-list-picture-card .ant-upload-list-item {
  position: relative;
  height: 66px;
  padding: 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-upload-list-picture .ant-upload-list-item:hover,
.ant-upload-list-picture-card .ant-upload-list-item:hover {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-error,
.ant-upload-list-picture-card .ant-upload-list-item-error {
  border-color: #f5222d;
}
.ant-upload-list-picture .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item-info {
  padding: 0;
}
.ant-upload-list-picture .ant-upload-list-item:hover .ant-upload-list-item-info,
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info {
  background: transparent;
}
.ant-upload-list-picture .ant-upload-list-item-uploading,
.ant-upload-list-picture-card .ant-upload-list-item-uploading {
  border-style: dashed;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 48px;
  height: 48px;
  font-size: 26px;
  line-height: 54px;
  text-align: center;
  opacity: 0.8;
}
.ant-upload-list-picture .ant-upload-list-item-icon,
.ant-upload-list-picture-card .ant-upload-list-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ant-upload-list-picture .ant-upload-list-item-image,
.ant-upload-list-picture-card .ant-upload-list-item-image {
  max-width: 100%;
}
.ant-upload-list-picture .ant-upload-list-item-thumbnail img,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
}
.ant-upload-list-picture .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  margin: 0 0 0 8px;
  padding-right: 8px;
  padding-left: 48px;
  overflow: hidden;
  line-height: 44px;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-upload-list-picture .ant-upload-list-item-name-icon-count-1,
.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-1 {
  padding-right: 18px;
}
.ant-upload-list-picture .ant-upload-list-item-name-icon-count-2,
.ant-upload-list-picture-card .ant-upload-list-item-name-icon-count-2 {
  padding-right: 36px;
}
.ant-upload-list-picture .ant-upload-list-item-uploading .ant-upload-list-item-name,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-name {
  line-height: 28px;
}
.ant-upload-list-picture .ant-upload-list-item-progress,
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 14px;
  width: calc(100% - 24px);
  margin-top: 0;
  padding-left: 56px;
}
.ant-upload-list-picture .anticon-close,
.ant-upload-list-picture-card .anticon-close {
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  opacity: 1;
}
.ant-upload-list-picture-card.ant-upload-list::after {
  display: none;
}
.ant-upload-list-picture-card-container {
  float: left;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
}
.ant-upload-list-picture-card .ant-upload-list-item {
  float: left;
  width: 104px;
  height: 104px;
  margin: 0 8px 8px 0;
}
.ant-upload-list-picture-card .ant-upload-list-item-info {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.ant-upload-list-picture-card .ant-upload-list-item-info::before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: ' ';
}
.ant-upload-list-picture-card .ant-upload-list-item:hover .ant-upload-list-item-info::before {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete {
  z-index: 10;
  width: 16px;
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-eye-o:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-download:hover,
.ant-upload-list-picture-card .ant-upload-list-item-actions .anticon-delete:hover {
  color: #fff;
}
.ant-upload-list-picture-card .ant-upload-list-item-info:hover + .ant-upload-list-item-actions,
.ant-upload-list-picture-card .ant-upload-list-item-actions:hover {
  opacity: 1;
}
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail,
.ant-upload-list-picture-card .ant-upload-list-item-thumbnail img {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ant-upload-list-picture-card .ant-upload-list-item-name {
  display: none;
  margin: 8px 0 0;
  padding: 0;
  line-height: 1.5;
  text-align: center;
}
.ant-upload-list-picture-card .anticon-picture + .ant-upload-list-item-name {
  position: absolute;
  bottom: 10px;
  display: block;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading.ant-upload-list-item {
  background-color: #fafafa;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info {
  height: auto;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info::before,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-eye-o,
.ant-upload-list-picture-card .ant-upload-list-item-uploading .ant-upload-list-item-info .anticon-delete {
  display: none;
}
.ant-upload-list-picture-card .ant-upload-list-item-uploading-text {
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-upload-list-picture-card .ant-upload-list-item-progress {
  bottom: 32px;
  padding-left: 0;
}
.ant-upload-list .ant-upload-success-icon {
  color: #52c41a;
  font-weight: bold;
}
.ant-upload-list .ant-upload-animate-enter,
.ant-upload-list .ant-upload-animate-leave,
.ant-upload-list .ant-upload-animate-inline-enter,
.ant-upload-list .ant-upload-animate-inline-leave {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation-fill-mode: cubic-bezier(0.78, 0.14, 0.15, 0.86);
}
.ant-upload-list .ant-upload-animate-enter {
  -webkit-animation-name: uploadAnimateIn;
          animation-name: uploadAnimateIn;
}
.ant-upload-list .ant-upload-animate-leave {
  -webkit-animation-name: uploadAnimateOut;
          animation-name: uploadAnimateOut;
}
.ant-upload-list .ant-upload-animate-inline-enter {
  -webkit-animation-name: uploadAnimateInlineIn;
          animation-name: uploadAnimateInlineIn;
}
.ant-upload-list .ant-upload-animate-inline-leave {
  -webkit-animation-name: uploadAnimateInlineOut;
          animation-name: uploadAnimateInlineOut;
}
@-webkit-keyframes uploadAnimateIn {
  from {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateIn {
  from {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@-webkit-keyframes uploadAnimateOut {
  to {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateOut {
  to {
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@-webkit-keyframes uploadAnimateInlineIn {
  from {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineIn {
  from {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@-webkit-keyframes uploadAnimateInlineOut {
  to {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
@keyframes uploadAnimateInlineOut {
  to {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
  }
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___OEkMy .ant-table-wrapper {
  height: 468px;
}
.standardTable___OEkMy .ant-table-placeholder {
  margin: 0;
}
.standardTable___OEkMy .ant-spin-nested-loading,
.standardTable___OEkMy .ant-spin-container {
  height: 100%;
}
.standardTable___OEkMy .ant-table-pagination {
  margin-top: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.standardTable___OEkMy .ant-table {
  position: absolute;
  bottom: 32px;
  top: 0;
  left: 0;
  right: 0;
}
.standardTable___OEkMy .ant-table-body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.standardTable___OEkMy .tableAlert___3iIfi {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___16hJ7 .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___16hJ7 .tableAlert___359v_ {
  margin-bottom: 16px;
}
.tableListForm___cBgMY {
  margin: 30px 0 6px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.tableList___1f46u {
  position: relative;
  height: 100%;
}
.tableList___1f46u .ant-tabs-bar {
  margin: 0;
}
.rows___1Hr3g {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  bottom: 0;
}
.tableListForm___6yXTD {
  margin: 0 0;
  position: relative;
  z-index: 1;
}
.tableListForm___6yXTD .ant-btn-sm {
  padding: 0 7px !important;
}
.hidden___VEC-3 {
  display: none!important;
}
.tableListOperator___3qCaD {
  margin: 16px 0;
}
.groupModal___127lb {
  height: 600px;
  overflow: hidden;
}
.groupModal___127lb .ant-tree {
  height: 473px;
  overflow: hidden;
  overflow-y: scroll;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___1Dd3t .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___1Dd3t .tableAlert___2XhGU {
  margin-bottom: 16px;
}
.standardTable___1Dd3t .checked___985MH td {
  background: #e6f7ff;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3-Xz0 .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___3-Xz0 .tableAlert___3-VvM {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___N2Dv1 .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___2HNZ2 {
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___KvnCa {
  position: absolute;
  top: 55px;
  right: 0;
  bottom: 0;
  left: 0;
}
.standardTable___KvnCa {
  /**兼容Firefox、IE表头**/
}
.standardTable___KvnCa .ant-table {
  height: 100%;
}
.standardTable___KvnCa .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___KvnCa .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 35px;
}
.standardTable___KvnCa .ant-table-pagination {
  position: absolute;
  bottom: 4px;
  right: 0;
  margin: 0 !important;
}
.standardTable___KvnCa .ant-table-wrapper {
  height: 100%;
}
.standardTable___KvnCa .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___KvnCa .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___KvnCa table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___KvnCa table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___KvnCa table tr.red td {
  background: #ec03035c;
}
.standardTable___KvnCa .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___KvnCa .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___KvnCa .ant-table-thead > tr:hover > td,
.standardTable___KvnCa .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___KvnCa .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___KvnCa .tableAlert___2_PKb {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3dtOz .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___19usP {
  height: auto!important;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-card-hoverable {
  cursor: pointer;
}
.ant-card-hoverable:hover {
  border-color: rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}
.ant-card-bordered {
  border: 1px solid #e8e8e8;
}
.ant-card-head {
  min-height: 48px;
  margin-bottom: -1px;
  padding: 0 24px;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  background: transparent;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 2px 2px 0 0;
  zoom: 1;
}
.ant-card-head::before,
.ant-card-head::after {
  display: table;
  content: '';
}
.ant-card-head::after {
  clear: both;
}
.ant-card-head-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.ant-card-head-title {
  display: inline-block;
  -ms-flex: 1 1;
      flex: 1 1;
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-card-head .ant-tabs {
  clear: both;
  margin-bottom: -17px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
}
.ant-card-head .ant-tabs-bar {
  border-bottom: 1px solid #e8e8e8;
}
.ant-card-extra {
  float: right;
  margin-left: auto;
  padding: 16px 0;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
}
.ant-card-body {
  padding: 24px;
  zoom: 1;
}
.ant-card-body::before,
.ant-card-body::after {
  display: table;
  content: '';
}
.ant-card-body::after {
  clear: both;
}
.ant-card-contain-grid:not(.ant-card-loading) .ant-card-body {
  margin: -1px 0 0 -1px;
  padding: 0;
}
.ant-card-grid {
  float: left;
  width: 33.33%;
  padding: 24px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset;
          box-shadow: 1px 0 0 0 #e8e8e8, 0 1px 0 0 #e8e8e8, 1px 1px 0 0 #e8e8e8, 1px 0 0 0 #e8e8e8 inset, 0 1px 0 0 #e8e8e8 inset;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-card-grid-hoverable:hover {
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.ant-card-contain-tabs > .ant-card-head .ant-card-head-title {
  min-height: 32px;
  padding-bottom: 0;
}
.ant-card-contain-tabs > .ant-card-head .ant-card-extra {
  padding-bottom: 0;
}
.ant-card-cover > * {
  display: block;
  width: 100%;
}
.ant-card-cover img {
  border-radius: 2px 2px 0 0;
}
.ant-card-actions {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #f5f8fa;
  border-top: 1px solid #e8e8e8;
  zoom: 1;
}
.ant-card-actions::before,
.ant-card-actions::after {
  display: table;
  content: '';
}
.ant-card-actions::after {
  clear: both;
}
.ant-card-actions > li {
  float: left;
  margin: 12px 0;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
}
.ant-card-actions > li > span {
  position: relative;
  display: block;
  min-width: 32px;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}
.ant-card-actions > li > span:hover {
  color: #1890ff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-card-actions > li > span a:not(.ant-btn),
.ant-card-actions > li > span > .anticon {
  display: inline-block;
  width: 100%;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-card-actions > li > span a:not(.ant-btn):hover,
.ant-card-actions > li > span > .anticon:hover {
  color: #1890ff;
}
.ant-card-actions > li > span > .anticon {
  font-size: 16px;
  line-height: 22px;
}
.ant-card-actions > li:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}
.ant-card-type-inner .ant-card-head {
  padding: 0 24px;
  background: #fafafa;
}
.ant-card-type-inner .ant-card-head-title {
  padding: 12px 0;
  font-size: 14px;
}
.ant-card-type-inner .ant-card-body {
  padding: 16px 24px;
}
.ant-card-type-inner .ant-card-extra {
  padding: 13.5px 0;
}
.ant-card-meta {
  margin: -4px 0;
  zoom: 1;
}
.ant-card-meta::before,
.ant-card-meta::after {
  display: table;
  content: '';
}
.ant-card-meta::after {
  clear: both;
}
.ant-card-meta-avatar {
  float: left;
  padding-right: 16px;
}
.ant-card-meta-detail {
  overflow: hidden;
}
.ant-card-meta-detail > div:not(:last-child) {
  margin-bottom: 8px;
}
.ant-card-meta-title {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-card-meta-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-card-loading {
  overflow: hidden;
}
.ant-card-loading .ant-card-body {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-card-loading-content p {
  margin: 0;
}
.ant-card-loading-block {
  height: 14px;
  margin: 4px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(207, 216, 220, 0.2)), color-stop(rgba(207, 216, 220, 0.4)), to(rgba(207, 216, 220, 0.2)));
  background: linear-gradient(90deg, rgba(207, 216, 220, 0.2), rgba(207, 216, 220, 0.4), rgba(207, 216, 220, 0.2));
  background-size: 600% 600%;
  border-radius: 2px;
  -webkit-animation: card-loading 1.4s ease infinite;
          animation: card-loading 1.4s ease infinite;
}
@-webkit-keyframes card-loading {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes card-loading {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.ant-card-small > .ant-card-head {
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
}
.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-head-title {
  padding: 8px 0;
}
.ant-card-small > .ant-card-head > .ant-card-head-wrapper > .ant-card-extra {
  padding: 8px 0;
  font-size: 14px;
}
.ant-card-small > .ant-card-body {
  padding: 12px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuMain___3urKA {
  width: 900px;
  margin: 0 auto;
}
.menuMain___3urKA .title___1A9yn {
  text-align: center;
}
.menuMain___3urKA .menuList___1NA8s {
  margin-top: 60px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___sga1E {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___sga1E {
  /**兼容Firefox、IE表头**/
}
.standardTable___sga1E .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___sga1E .ant-table {
  height: 100%;
  bottom: 40px;
}
.standardTable___sga1E .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___sga1E .ant-table-body {
  position: absolute!important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___sga1E .ant-table-pagination {
  position: absolute;
  bottom: 4px;
  right: 0;
  margin: 0!important;
  text-align: right;
}
.standardTable___sga1E .ant-table-wrapper {
  height: 100%;
}
.standardTable___sga1E .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___sga1E .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___sga1E table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___sga1E table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___sga1E table tr.red td {
  background: #ec03035c;
}
.standardTable___sga1E .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___sga1E .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___sga1E .ant-table-thead > tr:hover > td,
.standardTable___sga1E .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___sga1E .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___sga1E .ant-pagination.mini .ant-pagination-options {
  margin-top: 5px;
}
.standardTable___sga1E .tableAlert___-FjS_ {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3PeiM {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___3PeiM {
  /**兼容Firefox、IE表头**/
}
.standardTable___3PeiM .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___3PeiM .ant-table {
  height: 100%;
  bottom: 40px;
}
.standardTable___3PeiM .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___3PeiM .ant-table-body {
  position: absolute!important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___3PeiM .ant-table-pagination {
  position: absolute;
  bottom: 15px;
  right: 0;
  margin: 0!important;
  text-align: right;
}
.standardTable___3PeiM .ant-table-wrapper {
  height: 100%;
}
.standardTable___3PeiM .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___3PeiM .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___3PeiM table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___3PeiM table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___3PeiM table tr.red td {
  background: #ec03035c;
}
.standardTable___3PeiM .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___3PeiM .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___3PeiM .ant-table-thead > tr:hover > td,
.standardTable___3PeiM .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___3PeiM .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___3PeiM .ant-pagination.mini .ant-pagination-options {
  margin-top: 5px;
}
.standardTable___3PeiM .tableAlert___2wvMA {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.controlBtn___3_ykt {
  margin-bottom: 10px;
  margin-left: -14px;
}
.dictManageParentTable___1anPh {
  position: absolute;
  top: 132px;
  right: 0;
  left: 0;
  bottom: 10px;
}
.dictManageChildTable___zKUuF {
  position: absolute;
  top: 132px;
  right: 0;
  bottom: 0;
  left: 0;
}
.orangeColor___30TUH {
  color: #007acc;
}
.globalTableLink___kvTry {
  color: #76b1cb;
}
.previewContent___34jWZ .ant-carousel {
  width: 100%;
}
.previewContent___34jWZ .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___34jWZ .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___34jWZ .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___34jWZ .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___34jWZ .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___7OfE4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 20px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___7OfE4 .formItem___20HUg {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  :global {
        .ant-form-item-control-wrapper {
          width: 100%;
          .ant-form-item-control {
            width: 100%;
            .ant-form-item-children {
              width: 100%;
            }
          }
        }
      }*/
}
.main___7OfE4 .searchButton___1owqg {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___7OfE4 .searchButton___1owqg .button___8kjEF {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___7OfE4 .searchButton___1owqg .button___8kjEF:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___3aZfw {
  color: #007acc;
}
.globalTableLink___1w2aJ {
  color: #76b1cb;
}
.previewContent___2bVuA .ant-carousel {
  width: 100%;
}
.previewContent___2bVuA .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2bVuA .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2bVuA .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2bVuA .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2bVuA .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___3Dqg8 .globalTable___9Xs93 table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___3Dqg8 .globalTable___9Xs93 table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___3Dqg8 .globalTable___9Xs93 table td span .anticon {
  color: #8ccad9;
}
.prepTable___3Dqg8 .globalTable___9Xs93 table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-column-sorter .anticon-caret-up,
.prepTable___3Dqg8 .globalTable___9Xs93 .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___3Dqg8 .globalTable___9Xs93 i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___3Dqg8 .childTable___3pjX4 .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___3Dqg8 .grayItem___384g0 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___3Dqg8 .operationWrap___2XG6b {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___3Dqg8 .operationWrap___2XG6b a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___3Dqg8 .operationWrap___2XG6b .localText___1yOBC {
  color: #40c8a5;
}
.prepTable___3Dqg8 .lineWrap___2wCaL {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___3Dqg8 .lineWrap___2wCaL span {
  color: #333;
  padding-right: 20px;
}
.prepTable___3Dqg8 .disabledText___3KOHS {
  color: #666;
  cursor: not-allowed;
}
.prepTable___3Dqg8 .titleWrap___3c_kN {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___3Dqg8 .titleWrap___3c_kN .iconWrap___3eYQM {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___3Dqg8 .titleWrap___3c_kN .iconWrap___3eYQM .sorterActive___3rF9K {
  color: #1890ff;
}
.prepTable___3Dqg8 .titleWrap___3c_kN .iconWrap___3eYQM i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___3Dqg8 .titleWrap___3c_kN .iconWrap___3eYQM i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___3Dqg8 .btns___2bckw {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___3Dqg8 .btnsLeft___2DmLr button {
  margin-right: 20px;
}
.prepTable___3Dqg8 .btnsRight___U3rEF button {
  margin-left: 20px;
}
.prepTable___3Dqg8 .baseBtn___3sBru {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___3Dqg8 .baseBtn___3sBru:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___3Dqg8 .globalBtn___13dFQ {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___3Dqg8 .globalBtn___13dFQ:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.dateRange___2_TGW {
  display: -ms-flexbox;
  display: flex;
  min-width: 280px;
  height: 32px;
}
.dateRange___2_TGW .ant-calendar-picker-input {
  width: 160px !important;
}
.dateRange___2_TGW .line___2iDfc {
  height: 32px;
  line-height: 32px;
  margin: 0 5px;
}
.orangeColor___1R1U0 {
  color: #007acc;
}
.globalTableLink___1nIUF {
  color: #76b1cb;
}
.previewContent___l8J2S .ant-carousel {
  width: 100%;
}
.previewContent___l8J2S .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___l8J2S .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___l8J2S .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___l8J2S .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___l8J2S .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.normalContentNew___1pynq {
  width: 100%;
  padding: 10px 40px;
}
.buttonRow___4hcrW {
  text-align: center;
  margin-top: 10px;
}
.buttonRow___4hcrW .submitBtn___2ND8Q {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.buttonRow___4hcrW .submitBtn___2ND8Q:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.titleWrap___2Ln7N {
  width: 100%;
}
.titleWrap___2Ln7N .mainTitle___f46fr {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2Ln7N .mainTitle___f46fr li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2Ln7N .mainTitle___f46fr .titleItem___2edBs {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2HBN5 {
  width: 100%;
}
.contentWrap___2HBN5 .mainContent___1sQwd {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2HBN5 .mainContent___1sQwd li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.globalModal___1Zhcw .ant-upload-list-item {
  display: inline-block;
  width: 30%;
}
.orangeColor___dZSsl {
  color: #007acc;
}
.globalTableLink___1fZlz {
  color: #76b1cb;
}
.previewContent___3hZ5A .ant-carousel {
  width: 100%;
}
.previewContent___3hZ5A .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3hZ5A .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3hZ5A .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3hZ5A .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3hZ5A .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___2DZN7 {
  width: 100%;
}
.titleWrap___2DZN7 .mainTitle___I6hBJ {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2DZN7 .mainTitle___I6hBJ li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2DZN7 .mainTitle___I6hBJ .titleItem___21_hN {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___3EQ7m {
  width: 100%;
}
.contentWrap___3EQ7m .mainContent___mjwCr {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___3EQ7m .mainContent___mjwCr li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___1c0rL {
  width: 100%;
}
.formWrap___1c0rL .buttonRow___31RtX {
  text-align: center;
  margin-top: 10px;
}
.formWrap___1c0rL .buttonRow___31RtX .submitBtn___M8aj5 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___1c0rL .buttonRow___31RtX .submitBtn___M8aj5:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___1c0rL .ant-form-item {
  min-height: 56px !important;
}
.dateRange___x4-M_ {
  display: -ms-flexbox;
  display: flex;
  min-width: 280px;
  height: 32px;
}
.dateRange___x4-M_ .ant-calendar-picker-input {
  width: 160px !important;
}
.dateRange___x4-M_ .line___33kVP {
  height: 32px;
  line-height: 32px;
  margin: 0 5px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-input-number {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-variant: tabular-nums;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  width: 100%;
  height: 32px;
  padding: 4px 11px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  width: 90px;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.ant-input-number::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input-number:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-input-number:focus {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-input-number[disabled] {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number[disabled]:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
textarea.ant-input-number {
  max-width: 100%;
  height: auto;
  min-height: 32px;
  line-height: 1.5;
  vertical-align: bottom;
  -webkit-transition: all 0.3s, height 0s;
  transition: all 0.3s, height 0s;
}
.ant-input-number-lg {
  height: 40px;
  padding: 6px 11px;
  font-size: 16px;
}
.ant-input-number-sm {
  height: 24px;
  padding: 1px 7px;
}
.ant-input-number-handler {
  position: relative;
  display: block;
  width: 100%;
  height: 50%;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
  line-height: 0;
  text-align: center;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.ant-input-number-handler:active {
  background: #f4f4f4;
}
.ant-input-number-handler:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler:hover .ant-input-number-handler-down-inner {
  color: #40a9ff;
}
.ant-input-number-handler-up-inner,
.ant-input-number-handler-down-inner {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 12px;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-input-number-handler-up-inner > *,
.ant-input-number-handler-down-inner > * {
  line-height: 1;
}
.ant-input-number-handler-up-inner svg,
.ant-input-number-handler-down-inner svg {
  display: inline-block;
}
.ant-input-number-handler-up-inner::before,
.ant-input-number-handler-down-inner::before {
  display: none;
}
.ant-input-number-handler-up-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-up-inner .ant-input-number-handler-down-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-up-inner-icon,
.ant-input-number-handler-down-inner .ant-input-number-handler-down-inner-icon {
  display: block;
}
.ant-input-number:hover {
  border-color: #40a9ff;
  border-right-width: 1px !important;
}
.ant-input-number-focused {
  border-color: #40a9ff;
  border-right-width: 1px !important;
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-input-number-disabled {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 1;
}
.ant-input-number-disabled:hover {
  border-color: #d9d9d9;
  border-right-width: 1px !important;
}
.ant-input-number-disabled .ant-input-number-input {
  cursor: not-allowed;
}
.ant-input-number-disabled .ant-input-number-handler-wrap {
  display: none;
}
.ant-input-number-input {
  width: 100%;
  height: 30px;
  padding: 0 11px;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  outline: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -moz-appearance: textfield !important;
}
.ant-input-number-input::-moz-placeholder {
  color: #bfbfbf;
  opacity: 1;
}
.ant-input-number-input:-ms-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number-input::-webkit-input-placeholder {
  color: #bfbfbf;
}
.ant-input-number-input:placeholder-shown {
  text-overflow: ellipsis;
}
.ant-input-number-input[type='number']::-webkit-inner-spin-button,
.ant-input-number-input[type='number']::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.ant-input-number-lg {
  padding: 0;
  font-size: 16px;
}
.ant-input-number-lg input {
  height: 38px;
}
.ant-input-number-sm {
  padding: 0;
}
.ant-input-number-sm input {
  height: 22px;
  padding: 0 7px;
}
.ant-input-number-handler-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 100%;
  background: #fff;
  border-left: 1px solid #d9d9d9;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  -webkit-transition: opacity 0.24s linear 0.1s;
  transition: opacity 0.24s linear 0.1s;
}
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
.ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  display: inline-block;
  font-size: 12px;
  font-size: 7px \9;
  -webkit-transform: scale(0.58333333) rotate(0deg);
          transform: scale(0.58333333) rotate(0deg);
  min-width: auto;
  margin-right: 0;
}
:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-up-inner,
:root .ant-input-number-handler-wrap .ant-input-number-handler .ant-input-number-handler-down-inner {
  font-size: 12px;
}
.ant-input-number-handler-wrap:hover .ant-input-number-handler {
  height: 40%;
}
.ant-input-number:hover .ant-input-number-handler-wrap {
  opacity: 1;
}
.ant-input-number-handler-up {
  border-top-right-radius: 4px;
  cursor: pointer;
}
.ant-input-number-handler-up-inner {
  top: 50%;
  margin-top: -5px;
  text-align: center;
}
.ant-input-number-handler-up:hover {
  height: 60% !important;
}
.ant-input-number-handler-down {
  top: 0;
  border-top: 1px solid #d9d9d9;
  border-bottom-right-radius: 4px;
  cursor: pointer;
}
.ant-input-number-handler-down-inner {
  top: 50%;
  margin-top: -6px;
  text-align: center;
}
.ant-input-number-handler-down:hover {
  height: 60% !important;
}
.ant-input-number-handler-up-disabled,
.ant-input-number-handler-down-disabled {
  cursor: not-allowed;
}
.ant-input-number-handler-up-disabled:hover .ant-input-number-handler-up-inner,
.ant-input-number-handler-down-disabled:hover .ant-input-number-handler-down-inner {
  color: rgba(0, 0, 0, 0.25);
}
.orangeColor___3XOjq {
  color: #007acc;
}
.globalTableLink___2p2ak {
  color: #76b1cb;
}
.previewContent___2zgEO .ant-carousel {
  width: 100%;
}
.previewContent___2zgEO .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2zgEO .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2zgEO .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2zgEO .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2zgEO .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.normalContentNew___1WKIm {
  width: 100%;
  padding: 10px 40px;
}
.buttonRow___2MbwE {
  text-align: center;
  margin-top: 10px;
}
.buttonRow___2MbwE .submitBtn___2mVvx {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.buttonRow___2MbwE .submitBtn___2mVvx:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.titleWrap___2sWxr {
  width: 100%;
}
.titleWrap___2sWxr .mainTitle___T2yZb {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2sWxr .mainTitle___T2yZb li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2sWxr .mainTitle___T2yZb .titleItem___SlhHA {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2XFw5 {
  width: 100%;
}
.contentWrap___2XFw5 .mainContent___21Lr_ {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2XFw5 .mainContent___21Lr_ li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.scrollTable___3xK3k table::-webkit-scrollbar {
  width: 18px !important;
}
.scrollTable___3xK3k table th {
  color: white;
  text-align: center;
  background: #44A8E8;
}
.scrollTable___3xK3k table th > div {
  text-align: center !important;
}
.scrollTable___3xK3k table td {
  color: #333333;
  border-right: 1px solid #DDE3E8;
}
.scrollTable___3xK3k table tr.tableCss td {
  background: #f9f9f9;
}
.scrollTable___3xK3k tbody tr:nth-of-type(odd) {
  background: #f9f9f9;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___1ZK_u .ant-form-item {
  min-height: auto;
}
.menuForm___1ZK_u .formItemHack___KFLGA {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___1ZK_u .buttonBlock___imOWQ {
  position: absolute;
  right: 0;
  top: 47px;
}
.uploadButton___1_Dgy {
  margin-top: 16px;
  margin-right: 8px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___2ZqXJ .ant-modal-body {
  padding: 12px 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___1zh0T .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___Dn0zP {
  position: relative;
  padding: 4px;
}
.ReturnLandTable___1sxsT,
.ReturnLandNewTable___3OyTJ {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.ReturnLandTable___1sxsT {
  top: 83px;
}
.ReturnLandNewTable___3OyTJ {
  top: 195px;
}
.formItemHack___rwVI4 {
  /**兼容IE下ant-form-item-control控件行高**/
}
.buttonBlock___2cufO {
  position: absolute;
  right: 0;
  top: 47px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1_VG3 .ant-modal-body {
  padding: 12px 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___1kp_2 .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___FzQec {
  position: relative;
  padding: 4px;
}
.ReturnLandTargetTable___3QjJI,
.ReturnLandTargetNewTable___1ZfCW {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.ReturnLandTargetTable___3QjJI {
  top: 84px;
}
.ReturnLandTargetNewTable___1ZfCW {
  top: 285px;
}
.box___z2bS- {
  -ms-flex: 0 1 23%;
      flex: 0 1 23%;
  min-width: 215px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___z2bS-:not(.active___2bj8z):hover {
  border: 1px solid #20A4FC;
}
.box___z2bS- .title___1JQuj {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___z2bS- .title___1JQuj > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.box___z2bS- .title___1JQuj > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  max-width: 60%;
  font-weight: 600;
}
.box___z2bS- .title___1JQuj > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___z2bS- .title___1JQuj > div > button:hover {
  background-color: #D5EEFF;
}
.box___z2bS- .title___1JQuj > div > button.success___385kJ {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___z2bS- .title___1JQuj > div > button.disabled___2MSbb {
  background-color: #EBECED;
  color: #999999;
}
.box___z2bS- .more___1Zzvi {
  position: relative;
}
.box___z2bS- .more___1Zzvi .main___1QFHk {
  display: none;
  width: 100%;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .ant-form-item {
  min-height: auto;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .has-error .ant-form-explain,
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI {
  margin-top: 18px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .item_title___2wPXc {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .item_content___2n0oo {
  display: -ms-flexbox;
  display: flex;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .item_content___2n0oo input {
  text-align: center;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .input_minus___30K8v {
  height: 24px;
  min-width: 65px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .input_minus___30K8v .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .input_minus___30K8v .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .model___3SNjh .item___4mFDI .item_btns___3kHp7 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 {
  width: 100%;
  background: #FAFDFF;
  padding-bottom: 21px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col {
  padding: 21px 0px 0px 13px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col .ant-btn {
  width: 50px;
  height: 25px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 25px;
  padding: 0px;
  background: #20a4fc;
  border-radius: 3px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col .ant-btn span {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff !important;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col div .titleStyle {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col div .valueStyle {
  font-weight: 500;
  font-size: 14px;
  font-family: PingFang SC;
  color: #333333 !important;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col-12 {
  padding: 21px 0px 0px 13px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col-12 .ant-btn {
  width: 50px;
  height: 25px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 25px;
  padding: 0px;
  background: #20a4fc;
  border-radius: 3px;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col-12 .ant-btn span {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff !important;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col-12 div .titleStyle {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.box___z2bS- .more___1Zzvi .main___1QFHk .info___3OUu3 .ant-col-12 div .valueStyle {
  font-weight: 500;
  font-size: 14px;
  font-family: PingFang SC;
  color: #333333 !important;
}
.box___z2bS- .more___1Zzvi .pull___YvepW {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___z2bS- .more___1Zzvi .pull___YvepW > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___z2bS- .more___1Zzvi .pull___YvepW > span i {
  margin-left: 4px;
}
.box___z2bS-.active___2bj8z {
  border-radius: 3px 3px 0 0;
  z-index: 999;
}
.box___z2bS-.active___2bj8z .more___1Zzvi > div,
.box___z2bS-.active___2bj8z .title___1JQuj {
  border: 1px solid #20A4FC;
}
.box___z2bS-.active___2bj8z .more___1Zzvi > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  max-height: 300px!important;
  overflow-y: scroll!important;
}
.box___z2bS-.active___2bj8z .title___1JQuj {
  border-bottom: 0;
}
.box___z2bS-.active___2bj8z .more___1Zzvi > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 3px 6px rgba(93, 100, 103, 0.16);
}
.box___z2bS-.active___2bj8z .more___1Zzvi > div .main___1QFHk {
  display: inline-block;
}
.box___z2bS-.active___2bj8z .more___1Zzvi > div .pull___YvepW {
  border-top: 1px solid #eee;
}
.box___z2bS-.active___2bj8z .more___1Zzvi > div .pull___YvepW i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___z2bS-.children___R6Snu .title___1JQuj > div {
  border: 0 !important;
}
.box___z2bS-.children___R6Snu .more___1Zzvi .pull___YvepW {
  visibility: hidden;
}
.box___z2bS- .commonInputNumber___2vXDi {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___z2bS-.temp___2mF6S.active___2bj8z {
  min-width: 500px!important;
}
.box___z2bS-.temp___2mF6S.active___2bj8z .ant-form-item___14eA7 {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___z2bS-.temp___2mF6S.active___2bj8z .titleCommon___2aAdA {
  display: inline-block;
  margin: 10px;
}
.box___z2bS-.temp___2mF6S.active___2bj8z .col1___2mukd {
  text-align: center;
  line-height: 40px;
}
.box___z2bS-.temp___2mF6S.active___2bj8z .title___1JQuj {
  width: 100%!important;
  margin: 0px !important;
}
.wrapper___1aA7p {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___1aA7p .header___2QFxw {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px;
}
.wrapper___1aA7p .header___2QFxw .cascader___2IvqV {
  width: 400px;
  margin-right: 25px;
}
.wrapper___1aA7p .header___2QFxw .cascader___2IvqV .ant-cascader-input {
  height: 29px;
}
.wrapper___1aA7p .header___2QFxw .headerButton___3baKR {
  width: 80px;
  height: 29px;
  margin-left: 20px;
  margin-right: 20px;
}
.wrapper___1aA7p .top___13f9v {
  width: 100%;
  height: 59px;
  background: #f3f4f5;
  padding: 15px 15px 0px;
}
.wrapper___1aA7p .top___13f9v .content___1c4Px {
  width: 100%;
  height: 44px;
  border: 1px solid #97c7ff;
  opacity: 1;
  line-height: 44px;
  padding: 0px;
  background: #e5f4ff;
}
.wrapper___1aA7p .top___13f9v .content___1c4Px img {
  margin-right: 15px;
  margin-left: 9px;
}
.wrapper___1aA7p .top___13f9v .content___1c4Px span {
  margin-right: 15px;
}
.wrapper___1aA7p .top___13f9v .content___1c4Px span .icon___34A00 {
  padding-right: 8px;
}
.wrapper___1aA7p .content___1c4Px {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___1aA7p .content___1c4Px .splitLine___2MbAD {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___1aA7p .content___1c4Px .splitLine___2MbAD .ant-checkbox-wrapper {
  float: right;
  color: #f5222d;
  margin-right: 13px;
}
.wrapper___1aA7p .content___1c4Px .splitLine___2MbAD .ant-checkbox-wrapper .ant-checkbox .ant-checkbox-inner {
  border: 1px solid #f5222d;
}
.wrapper___1aA7p .content___1c4Px .splitLine___2MbAD .ant-checkbox-wrapper .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #f5222d;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .col___3-Qi- {
  margin-left: 2%;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR {
  border-radius: 3px;
  color: #222;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 23px 0;
  height: 220px;
  font-size: 15px;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  font-size: 13px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #6d7983;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR span {
  margin-bottom: 22px;
  display: inline-block;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .title___1i8Ip {
  position: absolute!important;
  bottom: 0px!important;
  width: 100%!important;
  left: 0%!important;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .icon___34A00 {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .total___iNgAG {
  position: absolute;
  width: 50%;
  height: 72%;
  left: 25%;
  bottom: 48px;
  margin: 0 auto;
  z-index: 90;
  border-radius: 3px;
  background: #e8f7ff;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .num___2b1wh {
  position: absolute;
  width: 50%;
  bottom: 48px;
  left: 25%;
  margin: 0 auto;
  border-radius: 0px 0px 3px 3px;
  background: -webkit-gradient(linear, right top, left top, from(#45b8ff), color-stop(51%, #6ec7fc), to(#45b8ff));
  background: linear-gradient(270deg, #45b8ff 0%, #6ec7fc 51%, #45b8ff 100%);
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .numLow___3cwvL {
  height: 24%!important;
  z-index: 103;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .numLowInactive___10nlF {
  height: 24%!important;
  background: #e8f7ff;
  z-index: 103;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .numMiddle___2TZu3 {
  height: 48%!important;
  z-index: 102;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .numMiddleInactive___zsdQL {
  height: 48%!important;
  background: #e8f7ff;
  z-index: 102;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .numHigh___F6jx_ {
  height: 72%!important;
  z-index: 101;
}
.wrapper___1aA7p .content___1c4Px .middle___7pUU0 .eTitle___1-9UR .numHighInactive___99VX9 {
  height: 72%!important;
  background: #e8f7ff;
  z-index: 101;
}
.wrapper___1aA7p .content___1c4Px .center___1X3fX {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  padding-left: 15px;
  padding-top: 15px;
}
.wrapper___1aA7p .modile___P9wyl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-switch {
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 44px;
  height: 22px;
  line-height: 20px;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.36s;
  transition: all 0.36s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.ant-switch-inner {
  display: block;
  margin-right: 6px;
  margin-left: 24px;
  color: #fff;
  font-size: 12px;
}
.ant-switch-loading-icon,
.ant-switch::after {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 18px;
  cursor: pointer;
  -webkit-transition: all 0.36s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  transition: all 0.36s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  content: ' ';
}
.ant-switch::after {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 35, 11, 0.2);
}
.ant-switch:not(.ant-switch-disabled):active::before,
.ant-switch:not(.ant-switch-disabled):active::after {
  width: 24px;
}
.ant-switch-loading-icon {
  z-index: 1;
  display: none;
  font-size: 12px;
  background: transparent;
}
.ant-switch-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-switch-loading .ant-switch-loading-icon {
  display: inline-block;
  color: rgba(0, 0, 0, 0.65);
}
.ant-switch-checked.ant-switch-loading .ant-switch-loading-icon {
  color: #1890ff;
}
.ant-switch:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-switch:focus:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ant-switch-small {
  min-width: 28px;
  height: 16px;
  line-height: 14px;
}
.ant-switch-small .ant-switch-inner {
  margin-right: 3px;
  margin-left: 18px;
  font-size: 12px;
}
.ant-switch-small::after {
  width: 12px;
  height: 12px;
}
.ant-switch-small:active::before,
.ant-switch-small:active::after {
  width: 16px;
}
.ant-switch-small .ant-switch-loading-icon {
  width: 12px;
  height: 12px;
}
.ant-switch-small.ant-switch-checked .ant-switch-inner {
  margin-right: 18px;
  margin-left: 3px;
}
.ant-switch-small.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -13px;
}
.ant-switch-small.ant-switch-loading .ant-switch-loading-icon {
  font-weight: bold;
  -webkit-transform: scale(0.66667);
          transform: scale(0.66667);
}
.ant-switch-checked {
  background-color: #1890ff;
}
.ant-switch-checked .ant-switch-inner {
  margin-right: 24px;
  margin-left: 6px;
}
.ant-switch-checked::after {
  left: 100%;
  margin-left: -1px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.ant-switch-checked .ant-switch-loading-icon {
  left: 100%;
  margin-left: -19px;
}
.ant-switch-loading,
.ant-switch-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.ant-switch-loading *,
.ant-switch-disabled * {
  cursor: not-allowed;
}
.ant-switch-loading::before,
.ant-switch-disabled::before,
.ant-switch-loading::after,
.ant-switch-disabled::after {
  cursor: not-allowed;
}
@-webkit-keyframes AntSwitchSmallLoadingCircle {
  0% {
    -webkit-transform: rotate(0deg) scale(0.66667);
            transform: rotate(0deg) scale(0.66667);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(0.66667);
            transform: rotate(360deg) scale(0.66667);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
}
@keyframes AntSwitchSmallLoadingCircle {
  0% {
    -webkit-transform: rotate(0deg) scale(0.66667);
            transform: rotate(0deg) scale(0.66667);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  100% {
    -webkit-transform: rotate(360deg) scale(0.66667);
            transform: rotate(360deg) scale(0.66667);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
}
.MyInput_item___1g6pi {
  width: 94%;
  text-align: center;
  margin-left: 13px;
}
.MyInput_item___1g6pi .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.MyInput_item___1g6pi .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___1g6pi .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px!important;
}
.MyInput_item___1g6pi .item_title___3gyyN {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.MyInput_item___1g6pi .item_content___3SSw8 {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___1g6pi .item_content___3SSw8 input {
  text-align: center;
}
.MyInput_item___1g6pi .item_btns___2_eY1 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___1g6pi .item_btns___2_eY1 .smallBtn___39Ssr {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___1g6pi .item_btns___2_eY1 .smallBtn___39Ssr span i {
  padding: 0 9px;
}
.MyInput_item___1g6pi .item_btns___2_eY1 .largeBtn___1aFPc {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___1g6pi .ant-radio-group___2B7kf {
  width: 100%;
}
.MyInput_item___1g6pi .font_style___2jnYT {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #666666;
}
.MyInput_item___1g6pi .input_number___3rBFR {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___1g6pi .input_number___3rBFR.minwidth___39LBe {
  width: 80px !important;
  float: right;
}
.MyInput_item___1g6pi .font_radio___dV99v {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.input_minus___2jmnn {
  height: 24px!important;
  min-width: 65px!important;
}
.input_minus___2jmnn .ant-input-number {
  height: 24px!important;
  line-height: 24px!important;
}
.input_minus___2jmnn .ant-input-number .ant-input-number-input {
  height: 24px!important;
}
.model_inactive___3UcHH {
  display: none!important;
}
.btn_del___1knSx {
  cursor: pointer;
}
.titleStyle___3oGFn {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.valueStyle___3CJv- {
  font-weight: 500;
  font-size: 14px;
  font-family: PingFang SC;
  color: #333333 !important;
}
.box___1LEyd {
  -ms-flex: 0 1 23%;
      flex: 0 1 23%;
  min-width: 273px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___1LEyd:not(.active___1Lf78):hover {
  border: 1px solid #20A4FC;
}
.box___1LEyd .title___1SCoQ {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___1LEyd .title___1SCoQ > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.box___1LEyd .title___1SCoQ > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  max-width: 60%;
  font-weight: 600;
}
.box___1LEyd .title___1SCoQ > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___1LEyd .title___1SCoQ > div > button:hover {
  background-color: #D5EEFF;
}
.box___1LEyd .title___1SCoQ > div > button.success___3QpBV {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___1LEyd .title___1SCoQ > div > button.disabled___s4pfX {
  background-color: #EBECED;
  color: #999999;
}
.box___1LEyd .more___HATKl {
  position: relative;
}
.box___1LEyd .more___HATKl .main___1A2BD {
  display: none;
  width: 100%;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .ant-form-item {
  min-height: auto;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .has-error .ant-form-explain,
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ {
  margin-top: 18px;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .item_title___1TnHd {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .item_content___i9AZ7 {
  display: -ms-flexbox;
  display: flex;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .item_content___i9AZ7 input {
  text-align: center;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .input_minus___1R32p {
  height: 24px;
  min-width: 65px;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .input_minus___1R32p .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .input_minus___1R32p .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___1LEyd .more___HATKl .main___1A2BD .model___3wNzR .item___1jDOZ .item_btns___1lwH4 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV {
  width: 100%;
  background: #FAFDFF;
  padding-bottom: 21px;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col {
  padding: 21px 0px 0px 13px;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col .ant-btn {
  width: 50px;
  height: 25px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 25px;
  padding: 0px;
  background: #20a4fc;
  border-radius: 3px;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col .ant-btn span {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff !important;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col div .titleStyle {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col div .valueStyle {
  font-weight: 500;
  font-size: 14px;
  font-family: PingFang SC;
  color: #333333 !important;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col-12 {
  padding: 21px 0px 0px 13px;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col-12 .ant-btn {
  width: 50px;
  height: 25px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 25px;
  padding: 0px;
  background: #20a4fc;
  border-radius: 3px;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col-12 .ant-btn span {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff !important;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col-12 div .titleStyle {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.box___1LEyd .more___HATKl .main___1A2BD .info___PGFcV .ant-col-12 div .valueStyle {
  font-weight: 500;
  font-size: 14px;
  font-family: PingFang SC;
  color: #333333 !important;
}
.box___1LEyd .more___HATKl .pull___vSZq8 {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___1LEyd .more___HATKl .pull___vSZq8 > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___1LEyd .more___HATKl .pull___vSZq8 > span i {
  margin-left: 4px;
}
.box___1LEyd.active___1Lf78 {
  border-radius: 3px 3px 0 0;
  z-index: 999;
}
.box___1LEyd.active___1Lf78 .more___HATKl > div,
.box___1LEyd.active___1Lf78 .title___1SCoQ {
  border: 1px solid #20A4FC;
}
.box___1LEyd.active___1Lf78 .more___HATKl > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  max-height: 300px!important;
  overflow-y: scroll!important;
}
.box___1LEyd.active___1Lf78 .title___1SCoQ {
  border-bottom: 0;
}
.box___1LEyd.active___1Lf78 .more___HATKl > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 3px 6px rgba(93, 100, 103, 0.16);
}
.box___1LEyd.active___1Lf78 .more___HATKl > div .main___1A2BD {
  display: inline-block;
}
.box___1LEyd.active___1Lf78 .more___HATKl > div .pull___vSZq8 {
  border-top: 1px solid #eee;
}
.box___1LEyd.active___1Lf78 .more___HATKl > div .pull___vSZq8 i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___1LEyd.children___1bF2n .title___1SCoQ > div {
  border: 0 !important;
}
.box___1LEyd.children___1bF2n .more___HATKl .pull___vSZq8 {
  visibility: hidden;
}
.box___1LEyd .commonInputNumber___2kj94 {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___1LEyd.temp___2-GWA.active___1Lf78 {
  min-width: 273px!important;
}
.box___1LEyd.temp___2-GWA.active___1Lf78 .ant-form-item___2vv8d {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___1LEyd.temp___2-GWA.active___1Lf78 .titleCommon___I89bv {
  display: inline-block;
  margin: 10px;
}
.box___1LEyd.temp___2-GWA.active___1Lf78 .col1___5mIfm {
  text-align: center;
  line-height: 40px;
}
.box___1LEyd.temp___2-GWA.active___1Lf78 .title___1SCoQ {
  width: 100%!important;
  margin: 0px !important;
}
.wrapper___DflI_ {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___DflI_ .header___1p4P0 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px;
}
.wrapper___DflI_ .header___1p4P0 .cascader___2ryzh {
  width: 400px;
  margin-right: 25px;
}
.wrapper___DflI_ .header___1p4P0 .cascader___2ryzh .ant-cascader-input {
  height: 29px;
}
.wrapper___DflI_ .header___1p4P0 .headerButton___3sqLb {
  width: 80px;
  height: 29px;
  margin-left: 20px;
  margin-right: 20px;
}
.wrapper___DflI_ .top___1SLe5 {
  width: 100%;
  background: #f3f4f5;
  padding: 15px 15px 0px;
}
.wrapper___DflI_ .top___1SLe5 .content___1BVXx {
  width: 100%;
  border: 1px solid #97c7ff;
  opacity: 1;
  line-height: 44px;
  padding: 0px;
  background: #e5f4ff;
}
.wrapper___DflI_ .top___1SLe5 .content___1BVXx img {
  margin-right: 15px;
  margin-left: 9px;
}
.wrapper___DflI_ .top___1SLe5 .content___1BVXx span {
  margin-right: 15px;
}
.wrapper___DflI_ .top___1SLe5 .content___1BVXx span .icon___1tlhP {
  padding-right: 8px;
}
.wrapper___DflI_ .zhycContent___dhSlu {
  background: #f3f4f5 !important;
  padding: 15px 15px 15px 15px;
  height: 100%;
}
.wrapper___DflI_ .zhycContent___dhSlu .tabs___2yS9a {
  background: #fff!important;
  height: 100%;
  overflow-y: scroll;
}
.wrapper___DflI_ .zhycContent___dhSlu .tabs___2yS9a .ant-tabs-bar {
  margin: 0;
}
.wrapper___DflI_ .zhycContent___dhSlu .tabs___2yS9a .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 3px solid #1890ff;
}
.wrapper___DflI_ .zhycContent___dhSlu .tabs___2yS9a .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___DflI_ .zhycContent___dhSlu .tabs___2yS9a .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab {
  margin: 0px!important;
}
.wrapper___DflI_ .zhycContent___dhSlu .tabs___2yS9a .tabContent___2OqiZ {
  padding: 0px;
}
.wrapper___DflI_ .zhycContent___dhSlu .splitLine___1hLSa {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___DflI_ .zhycContent___dhSlu .splitLine___1hLSa .ant-checkbox-wrapper {
  float: right;
  color: #f5222d;
  margin-right: 13px;
}
.wrapper___DflI_ .zhycContent___dhSlu .splitLine___1hLSa .ant-checkbox-wrapper .ant-checkbox .ant-checkbox-inner {
  border: 1px solid #f5222d;
}
.wrapper___DflI_ .zhycContent___dhSlu .splitLine___1hLSa .ant-checkbox-wrapper .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #f5222d;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 25px 15px 0px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- {
  width: 25%;
  position: relative;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .statusBoxTop___305IW {
  width: 113px;
  height: 52px;
  position: absolute;
  left: 30%;
  top: -12px;
  line-height: 41px;
  text-align: center;
  color: #20A4FC;
  border-radius: 0px 0px 3px 3px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .data___2fEbx {
  height: 17px;
  font-size: 14px;
  padding-left: 13px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 17px;
  color: #666666;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .data___2fEbx .ant-row {
  height: 31px;
  line-height: 31px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .data2___2Xd1x {
  height: 17px;
  font-size: 14px;
  padding-left: 13px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 17px;
  color: #666666;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .data2___2Xd1x .ant-row {
  height: 31px;
  line-height: 31px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt {
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  width: 90%;
  padding: 5%;
  margin: 0 auto;
  margin-bottom: 25px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .firstRow___14mPM {
  padding-top: 44px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .infoBlock___1BJKO {
  padding: 23px 15px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .infoBlock___1BJKO .infoRow___3JBKJ {
  height: 45px;
  line-height: 45px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .titleBlock___1bAnp {
  margin: 0px 8%;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .titleBlock___1bAnp .titleFont___3TnyM {
  height: 32px;
  padding-left: 15px;
  background: #f8f9fa;
  line-height: 32px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .titleBlock___1bAnp .titleFont___3TnyM span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .titleBlock___1bAnp .titleFont___3TnyM :nth-child(1) {
  color: #666666;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .titleBlock___1bAnp .titleFont___3TnyM :nth-child(2) {
  color: #333333;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .boxShadow___3YXXt .titleBlock___1bAnp .titleMarginBottom___Xw7to {
  margin-bottom: 30px;
  margin-top: 15px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .content___1BVXx {
  width: 90%;
  margin: 5%;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .content___1BVXx .infoBlock___1BJKO {
  padding: 23px 15px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .statusBox___3DRx- .content___1BVXx .infoBlock___1BJKO .infoRow___3JBKJ {
  height: 45px;
  line-height: 45px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ {
  border-radius: 3px;
  color: #222;
  font-size: 15px;
  text-align: center;
  position: relative;
  font-size: 13px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #6d7983;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ span {
  margin-bottom: 22px;
  display: inline-block;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .title___dpyUR {
  position: absolute!important;
  bottom: 0px!important;
  width: 100%!important;
  left: 0%!important;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .icon___1tlhP {
  display: block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .total___3iqO8 {
  position: absolute;
  width: 50%;
  height: 72%;
  left: 25%;
  bottom: 48px;
  margin: 0 auto;
  z-index: 90;
  border-radius: 3px;
  background: #e8f7ff;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .num___3wKxM {
  position: absolute;
  width: 50%;
  bottom: 48px;
  left: 25%;
  margin: 0 auto;
  border-radius: 0px 0px 3px 3px;
  background: -webkit-gradient(linear, right top, left top, from(#45b8ff), color-stop(51%, #6ec7fc), to(#45b8ff));
  background: linear-gradient(270deg, #45b8ff 0%, #6ec7fc 51%, #45b8ff 100%);
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .numLow___2winl {
  height: 24%!important;
  z-index: 103;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .numLowInactive___2-LaW {
  height: 24%!important;
  background: #e8f7ff;
  z-index: 103;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .numMiddle___1Y7lY {
  height: 48%!important;
  z-index: 102;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .numMiddleInactive___3K2hF {
  height: 48%!important;
  background: #e8f7ff;
  z-index: 102;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .numHigh___2x40h {
  height: 72%!important;
  z-index: 101;
}
.wrapper___DflI_ .zhycContent___dhSlu .middle___3c_PG .eTitle___kUHxQ .numHighInactive___15TsO {
  height: 72%!important;
  background: #e8f7ff;
  z-index: 101;
}
.wrapper___DflI_ .zhycContent___dhSlu .center___1p0rD {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  padding-left: 15px;
  padding-top: 15px;
}
.wrapper___DflI_ .modile___nCMU1 {
  position: absolute;
  top: -100px;
  width: 100%;
  height: 400%;
  background-color: rgba(255, 255, 255, 0.55);
}
.MyInput_item___2bDim {
  width: 94%;
  text-align: center;
  margin-left: 4px;
}
.MyInput_item___2bDim .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.MyInput_item___2bDim .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___2bDim .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px!important;
}
.MyInput_item___2bDim .item_title___ogod5 {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.MyInput_item___2bDim .item_content___2gIGR {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___2bDim .item_content___2gIGR input {
  text-align: center;
}
.MyInput_item___2bDim .item_btns___2u3e4 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___2bDim .item_btns___2u3e4 .smallBtn___1IoSB {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___2bDim .item_btns___2u3e4 .smallBtn___1IoSB span i {
  padding: 0 9px;
}
.MyInput_item___2bDim .item_btns___2u3e4 .largeBtn___17le6 {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___2bDim .ant-radio-group___1E9-2 {
  width: 100%;
}
.MyInput_item___2bDim .font_style___2r0pC {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #666666;
}
.MyInput_item___2bDim .input_number___2T3Ik {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___2bDim .input_number___2T3Ik.minwidth___2fEYJ {
  width: 80px !important;
  float: right;
}
.MyInput_item___2bDim .font_radio___3-Qga {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.input_minus___3z6nD {
  height: 24px!important;
  min-width: 65px!important;
}
.input_minus___3z6nD .ant-input-number {
  height: 24px!important;
  line-height: 24px!important;
}
.input_minus___3z6nD .ant-input-number .ant-input-number-input {
  height: 24px!important;
}
.model_inactive___JHT4t {
  display: none!important;
}
.btn_del___1V-rT {
  cursor: pointer;
}
.titleStyle___1_DwU {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.valueStyle___21_Ot {
  font-weight: 500;
  font-size: 14px;
  font-family: PingFang SC;
  color: #333333 !important;
}
.orangeColor___14hC0 {
  color: #007acc;
}
.globalTableLink___1IKhi {
  color: #76b1cb;
}
.previewContent___DXrcV .ant-carousel {
  width: 100%;
}
.previewContent___DXrcV .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___DXrcV .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___DXrcV .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___DXrcV .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___DXrcV .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-content {
  border: 0;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___jtzhM .globalTable___3_-al table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___jtzhM .globalTable___3_-al .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___jtzhM .globalTable___3_-al table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___jtzhM .globalTable___3_-al table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___jtzhM .globalTable___3_-al table td span .anticon {
  color: #8ccad9;
}
.prepTable___jtzhM .globalTable___3_-al table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___jtzhM .globalTable___3_-al .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___jtzhM .globalTable___3_-al .ant-table-column-sorter .anticon-caret-up,
.prepTable___jtzhM .globalTable___3_-al .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___jtzhM .globalTable___3_-al i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___jtzhM .childTable___1JYgD .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___jtzhM .grayItem___3ELx2 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___jtzhM .operationWrap___1sDdd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___jtzhM .operationWrap___1sDdd a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___jtzhM .operationWrap___1sDdd .localText___3gvAM {
  color: #40c8a5;
}
.prepTable___jtzhM .lineWrap___3kIY9 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___jtzhM .lineWrap___3kIY9 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___jtzhM .disabledText____ohqt {
  color: #666;
  cursor: not-allowed;
}
.prepTable___jtzhM .titleWrap___2htq9 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___jtzhM .titleWrap___2htq9 .iconWrap___24myf {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___jtzhM .titleWrap___2htq9 .iconWrap___24myf .sorterActive___2pCjN {
  color: #1890ff;
}
.prepTable___jtzhM .titleWrap___2htq9 .iconWrap___24myf i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___jtzhM .titleWrap___2htq9 .iconWrap___24myf i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___jtzhM .btns___1BmAH {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___jtzhM .btnsLeft___-Rh5H button {
  margin-right: 20px;
}
.prepTable___jtzhM .btnsRight___1UPF6 button {
  margin-left: 20px;
}
.prepTable___jtzhM .baseBtn___2aNSp {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___jtzhM .baseBtn___2aNSp:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___jtzhM .globalBtn___322jM {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___jtzhM .globalBtn___322jM:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.operation___31NSs > a:first-of-type {
  border-right: 1px solid #d3d4d5;
}
.page___32eQu .btn___2HADw {
  margin-right: 20px;
}
.page___32eQu .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.orangeColor___tuxdF {
  color: #007acc;
}
.globalTableLink___1mFF_ {
  color: #76b1cb;
}
.previewContent___3vpVJ .ant-carousel {
  width: 100%;
}
.previewContent___3vpVJ .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3vpVJ .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3vpVJ .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3vpVJ .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3vpVJ .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___1Ncu7 {
  width: 100%;
}
.titleWrap___1Ncu7 .mainTitle___adbMr {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1Ncu7 .mainTitle___adbMr li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1Ncu7 .mainTitle___adbMr .titleItem___2CZ-H {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___3He3g {
  width: 100%;
}
.contentWrap___3He3g .mainContent___3xFfU {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___3He3g .mainContent___3xFfU li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___3-NzK {
  width: 100%;
}
.formWrap___3-NzK .buttonRow___kddzJ {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3-NzK .buttonRow___kddzJ .submitBtn___1aAAn {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___3-NzK .buttonRow___kddzJ .submitBtn___1aAAn:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___3-NzK .ant-form-item {
  min-height: 56px !important;
}
.page___30mUq .btn___3MGQZ {
  margin-right: 20px;
}
.page___30mUq .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.content___1FOK8 .ant-modal-body {
  display: block;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.orangeColor___LHYmi {
  color: #007acc;
}
.globalTableLink___1ziaR {
  color: #76b1cb;
}
.previewContent___2sxrI .ant-carousel {
  width: 100%;
}
.previewContent___2sxrI .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2sxrI .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2sxrI .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2sxrI .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2sxrI .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___2hk__ .globalTable___315Sa .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___2hk__ .globalTable___315Sa table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___2hk__ .globalTable___315Sa table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___2hk__ .globalTable___315Sa table td span .anticon {
  color: #8ccad9;
}
.prepTable___2hk__ .globalTable___315Sa table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___2hk__ .globalTable___315Sa .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___2hk__ .globalTable___315Sa .ant-table-column-sorter .anticon-caret-up,
.prepTable___2hk__ .globalTable___315Sa .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___2hk__ .globalTable___315Sa i.anticon.anticon-close-square {
  color: #f795a4;
}
.prepTable___2hk__ .childTable___rfitC .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___2hk__ .grayItem___3QGVV {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___2hk__ .operationWrap___JrL48 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___2hk__ .operationWrap___JrL48 a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___2hk__ .operationWrap___JrL48 .localText___2ywOy {
  color: #40c8a5;
}
.prepTable___2hk__ .lineWrap___2Lzc_ {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___2hk__ .lineWrap___2Lzc_ span {
  color: #333;
  padding-right: 20px;
}
.prepTable___2hk__ .disabledText___rF3gZ {
  color: #666;
  cursor: not-allowed;
}
.prepTable___2hk__ .titleWrap___1JeD7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___2hk__ .titleWrap___1JeD7 .iconWrap___8Kxij {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___2hk__ .titleWrap___1JeD7 .iconWrap___8Kxij .sorterActive___yr4_V {
  color: #1890ff;
}
.prepTable___2hk__ .titleWrap___1JeD7 .iconWrap___8Kxij i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___2hk__ .titleWrap___1JeD7 .iconWrap___8Kxij i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___2hk__ .btns___1D6_c {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___2hk__ .btnsLeft___3eN7j button {
  margin-right: 20px;
}
.prepTable___2hk__ .btnsRight___760cV button {
  margin-left: 20px;
}
.prepTable___2hk__ .baseBtn___2SvU1 {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___2hk__ .baseBtn___2SvU1:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___2hk__ .globalBtn___pdFbW {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___2hk__ .globalBtn___pdFbW:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___1oQHd {
  color: #007acc;
}
.globalTableLink___3Rkjl {
  color: #76b1cb;
}
.previewContent___k_-gB .ant-carousel {
  width: 100%;
}
.previewContent___k_-gB .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___k_-gB .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___k_-gB .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___k_-gB .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___k_-gB .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___3JNeT .globalTable___IQHgf table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___3JNeT .globalTable___IQHgf table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___3JNeT .globalTable___IQHgf table td span .anticon {
  color: #8ccad9;
}
.prepTable___3JNeT .globalTable___IQHgf table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___3JNeT .globalTable___IQHgf .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___3JNeT .globalTable___IQHgf .ant-table-column-sorter .anticon-caret-up,
.prepTable___3JNeT .globalTable___IQHgf .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___3JNeT .globalTable___IQHgf i.anticon.anticon-close-square {
  color: #f795a4;
}
.prepTable___3JNeT .childTable___1bA7v .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___3JNeT .grayItem___4R_z7 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___3JNeT .operationWrap___17x_B {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___3JNeT .operationWrap___17x_B a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___3JNeT .operationWrap___17x_B .localText___zzcgz {
  color: #40c8a5;
}
.prepTable___3JNeT .lineWrap___319H1 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___3JNeT .lineWrap___319H1 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___3JNeT .disabledText___25M5x {
  color: #666;
  cursor: not-allowed;
}
.prepTable___3JNeT .titleWrap___1OkRq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___3JNeT .titleWrap___1OkRq .iconWrap___2mORS {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___3JNeT .titleWrap___1OkRq .iconWrap___2mORS .sorterActive___3jpOy {
  color: #1890ff;
}
.prepTable___3JNeT .titleWrap___1OkRq .iconWrap___2mORS i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___3JNeT .titleWrap___1OkRq .iconWrap___2mORS i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___3JNeT .btns___ImsaT {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___3JNeT .btnsLeft___2E_II button {
  margin-right: 20px;
}
.prepTable___3JNeT .btnsRight___3IfB1 button {
  margin-left: 20px;
}
.prepTable___3JNeT .baseBtn___JL9G0 {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___3JNeT .baseBtn___JL9G0:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___3JNeT .globalBtn___1TcI- {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___3JNeT .globalBtn___1TcI-:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.editable___3hTh8 td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___2MDws .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___2MDws .tableAlert___4-AkD {
  margin-bottom: 16px;
}
.buttonBlock___15-b3 {
  position: absolute;
  right: 0;
  top: 45px;
  text-align: right;
  margin-bottom: 5px;
}
.pollTable___1tBVx {
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
}
.pollTable___1tBVx .ant-table-body {
  top: 69px!important;
}
.biogasStoragePoolSonTable___2EtGk {
  position: absolute;
  top: 244px;
  right: 0;
  bottom: 0;
  left: 0;
}
.biogasStoragePoolSonTable___2EtGk .ant-table-body {
  bottom: 32px !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___11tQh .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___11tQh .tableAlert___1bMZX {
  margin-bottom: 16px;
}
.buttonBlock___1E_XD {
  position: absolute;
  right: 0;
  top: 45px;
  text-align: right;
  margin-bottom: 5px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___2bjuJ .ant-modal-body {
  padding: 12px 0;
}
.ReturnLandProgressManager___1NgwZ .ant-table-body {
  top: 36px !important;
}
.ReturnLandStatusTable___3pc9n {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.ReturnLandStatusTable___3pc9n {
  top: 87px;
}
.ReturnLandStatusNewTable___2so9A {
  position: relative;
  min-height: 300px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___e6vd7 .ant-form-item {
  min-height: auto;
}
.menuForm___e6vd7 .formItemHack___2adUq {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___e6vd7 .buttonBlock___PMIRR {
  position: absolute;
  top: 49px;
  right: 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___1Q4Q0 .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___26Qdq {
  position: relative;
  z-index: 1;
}
.tableList___391KZ {
  position: relative;
  padding: 4px;
  z-index: 10;
}
.inspectTable___3rihZ {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.InspectTable___g4_hX {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 87px;
}
.inspectSonTable___yzt8T {
  position: absolute;
  top: 195px;
  right: 0;
  bottom: 0;
  left: 0;
}
.inspectSonTable___yzt8T .ant-table-body {
  bottom: 32px !important;
}
.formItemHack___DPdhH {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___1T4jR .ant-form-item {
  min-height: auto;
}
.buttonBlock___1XyS2 {
  position: absolute;
  right: 0;
  top: 45px;
}
.modals___Zcl-o .ant-modal-body {
  padding: 12px 0;
}
.waterRecordForm___FlQme {
  padding: 0 20px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___104on .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___wixTL {
  position: relative;
  padding: 4px;
  z-index: 10;
}
.eletronRecordTable___283n1 {
  position: relative;
  top: -50px;
  min-height: 300px;
  z-index: 1;
}
.WaterRecordTable___3T7xg,
.WaterRecordNewTable___SnU9N {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.WaterRecordTable___3T7xg {
  top: 79px;
}
.WaterRecordNewTable___SnU9N {
  top: 300px;
}
.formWrapper___2mfGq {
  margin-top: 10px;
}
.formWrapper___2mfGq .buttonWrapper___eZ4EK {
  margin-bottom: 10px;
  text-align: center;
}
.buttonBlock___1G1UI {
  position: absolute;
  right: 0;
  top: 11px;
}
.modals___3rCCa .ant-modal-body {
  padding: 12px 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___2cGCT .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___1FI3H {
  position: relative;
  padding: 4px;
  z-index: 1;
}
.WaterStandardTable___jSRir,
.WaterStandardNewTable___3By4r {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.WaterStandardTable___jSRir .ant-table-body,
.WaterStandardNewTable___3By4r .ant-table-body {
  bottom: 37px !important;
}
.WaterStandardTable___jSRir {
  top: 47px;
}
.WaterStandardNewTable___3By4r {
  top: 152px;
}
.formWrapper___GwcTG {
  margin-top: 10px;
}
.formWrapper___GwcTG .buttonWrapper___wkn1C {
  margin-bottom: 10px;
  text-align: center;
}
.standardTable___36OcY .ant-table-pagination {
  margin-top: 24px;
}
.tableList___-u2i4 .ant-table-body {
  top: 66px!important;
  bottom: 27px!important;
}
.formItemHack___35M_U {
  /**兼容IE下ant-form-item-control控件行高**/
}
.buttonBlock___2ijS4 {
  position: absolute;
  right: 0;
  top: 47px;
}
.modals___1WrQs {
  top: 30px;
}
.modals___1WrQs .ant-modal-body {
  padding: 12px 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___qLJ0e .ant-table-pagination {
  margin-top: 24px;
}
.tableList___1UqqP .ant-table-body {
  top: 66px!important;
  bottom: 27px!important;
}
.tableListForm___1N684 {
  position: relative;
  padding: 4px;
  z-index: 1;
}
.WaterOverTable___23XGG,
.WaterOverNewTable___2lX5u {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.WaterOverTable___23XGG {
  top: 84px;
}
.WaterOverNewTable___2lX5u {
  top: 521px;
  min-height: 300px;
}
.tableList___29cLP .ant-table-body {
  top: 36px !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___3meU- .formItemHack___2EL8J {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___3meU- .buttonBlock___24efI {
  position: absolute;
  right: 0;
  top: 45px;
  z-index: 10;
}
.PigManureTable___3Q3dU {
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
}
.PigManureNewTable___3c7lm {
  position: absolute;
  top: 314px;
  right: 0;
  bottom: 0;
  left: 0;
}
.tableListForm___dRLXt {
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.ReturnLandProgressManager___YMEVd .ant-table-body {
  top: 64px !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___184mq .ant-form-item {
  min-height: auto;
}
.menuForm___184mq .formItemHack___1jzIv {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___184mq .buttonBlock___hcVUo {
  position: absolute;
  right: 0;
  top: 47px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1Le4_ .ant-modal-body {
  padding: 12px 0;
}
.modals___1Le4_ .ant-divider-horizontal.ant-divider-with-text:before {
  width: 50%;
}
.modals___1Le4_ .ant-divider-horizontal.ant-divider-with-text:after {
  width: 50%;
}
.modals___1Le4_ .ant-divider-inner-text {
  padding: 0 10px;
}
.modals___1Le4_ .ant-upload.ant-upload-select {
  float: left;
}
.modals___1Le4_ .ant-upload-list {
  float: left;
}
.modals___1Le4_ .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.modals___1Le4_ .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.modals___1Le4_ i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
.ReturnLandProgressManager___1tAYJ .ant-table-body {
  top: 69px !important;
}
.ReturnLandStatusTable___2Mfdq {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.ReturnLandStatusTable___2Mfdq {
  top: 87px;
}
.ReturnLandStatusNewTable___1HxIj {
  position: relative;
  min-height: 300px;
}
.returnLandStatusNewForm___2kFJn .ant-table-body {
  top: 64px !important;
}
.returnLandStatusNewForm___2kFJn .ant-upload.ant-upload-select {
  float: left;
}
.returnLandStatusNewForm___2kFJn .ant-upload-list {
  float: left;
}
.returnLandStatusNewForm___2kFJn .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.returnLandStatusNewForm___2kFJn .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.returnLandStatusNewForm___2kFJn i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___3GvQ4 .formItemHack___TYF7n {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___3GvQ4 .buttonBlock___2eJeD {
  position: absolute;
  right: 0;
  top: 48px;
  z-index: 10;
}
.electronTable___15gED .ant-table-body {
  bottom: 35px;
}
.ElectronRecordTable___2b-f7,
.ElectronRecordNewTable___FYUiY {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.ElectronRecordTable___2b-f7 {
  top: 86px;
}
.ElectronRecordNewTable___FYUiY {
  top: 230px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___2nclN .formItemHack___1H_Ii {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___2nclN .buttonBlock___2BQ0W {
  position: absolute;
  right: 0;
  top: 48px;
  z-index: 10;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___1PHaY .formItemHack___17S3Y {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___1PHaY .buttonBlock___1UmaB {
  position: absolute;
  right: 0;
  top: 47px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___uqpul .ant-modal-body {
  padding: 12px 0;
}
.modals___uqpul .ant-upload.ant-upload-select {
  float: left;
}
.modals___uqpul .ant-upload-list {
  float: left;
}
.modals___uqpul .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.modals___uqpul .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.modals___uqpul i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___eDssn .ant-table-pagination {
  margin-top: 24px;
}
.tableList___21VvV {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  left: 0;
}
.tableListForm___3SNbP {
  position: relative;
  padding: 4px;
  z-index: 1;
}
.PipeLinesTable___2uthq {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.PipeLinesNewTable___1zacz {
  position: relative;
  min-height: 300px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___2BE6s .formItemHack___A6JPn {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___2BE6s .buttonBlock___3_hNw {
  position: absolute;
  right: 0;
  top: 48px;
  z-index: 10;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1l1qe .ant-modal-body {
  padding: 12px 0;
}
.tableListForm___3O7x6 {
  padding: 4px;
}
.PipeRoadTable___1uBUD,
.PipeRoadNewTable___H4Pi5 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.PipeRoadTable___1uBUD {
  top: 85px;
}
.PipeRoadNewTable___H4Pi5 {
  top: 245px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___1Ww9t .formItemHack___2M5Xo {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___1Ww9t .menuFormSearch___3Kj4b {
  height: 40px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___2in1j .ant-modal-body {
  padding: 12px 0;
}
.PipeDoTable___3X6h7,
.PipeDoNewTable___250yk {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.PipeDoTable___3X6h7 {
  top: 82px;
}
.PipeDoNewTable___250yk {
  top: 399px;
}
.tableListForm___DhTzP {
  position: relative;
  padding: 4px;
  z-index: 1;
}
.tableList___sL4JB {
  height: 100%;
}
.tableList___sL4JB .ant-row {
  height: 100%;
}
.tableList___sL4JB .ant-table-body {
  top: 32px!important;
  bottom: 34px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___3GCO- .ant-form-item {
  min-height: auto;
}
.menuForm___3GCO- .formItemHack___3rH-e {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___3GCO- .buttonBlock___2i1vt {
  position: absolute;
  right: 0;
  top: 45px;
  z-index: 10;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___6F4s4 .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___1ng3q {
  padding: 4px;
  position: relative;
}
.tableList___2krDU {
  height: 100%;
}
.tableList___2krDU .ant-row {
  height: 100%;
}
.tableList___2krDU .ant-table-body {
  top: 54px!important;
  bottom: 34px;
}
.MarshElectronTable___2zYvM,
.MarshElectronNewTable___qmkZk {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.MarshElectronTable___2zYvM {
  top: 79px;
}
.MarshElectronNewTable___qmkZk {
  top: 325px;
}
.tableList___1FiJs {
  height: 100%;
}
.tableList___1FiJs .ant-row {
  height: 100%;
}
.tableList___1FiJs .ant-table-body {
  top: 32px!important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___2aUpi .formItemHack___dVT4Q {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___2aUpi .buttonBlock___22kz8 {
  position: absolute;
  right: 0;
  top: 46px;
  z-index: 10;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___15GMN .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___2CRSk {
  padding: 4px;
  position: relative;
}
.tableList___3PcRl {
  height: 100%;
}
.tableList___3PcRl .ant-row {
  height: 100%;
}
.tableList___3PcRl .ant-table-body {
  top: 50px!important;
}
.MarshBoilerTable___3RyQ0,
.MarshBoilerNewTable___35_DD {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.MarshBoilerTable___3RyQ0 {
  top: 82px;
}
.MarshBoilerNewTable___35_DD {
  top: 355px;
}
.input___3k5S9 {
  min-width: 150px;
}
.operation___3HkgU a {
  padding: 0 10px;
}
.operation___3HkgU a:first-child {
  border-right: 1px solid #ccc;
}
.input___1SlJP {
  min-width: 150px;
}
.operation___C-Zof a {
  padding: 0 10px;
}
.operation___C-Zof a:first-child {
  border-right: 1px solid #ccc;
}
.input___1TVQ1 {
  min-width: 150px;
}
.operation___33HX7 a {
  padding: 0 10px;
}
.operation___33HX7 a:first-child {
  border-right: 1px solid #ccc;
}
.input___6SvHj {
  min-width: 150px;
}
.operation___wtSZj a {
  padding: 0 10px;
}
.operation___wtSZj a:first-child {
  border-right: 1px solid #ccc;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___1-2N0 .ant-form-item {
  min-height: auto;
}
.menuForm___1-2N0 .formItemHack___1LOgn {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___1-2N0 .buttonBlock___16taw {
  position: absolute;
  right: 0;
  top: 47px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___248MF .ant-modal-body {
  padding: 12px 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___2m6iD .ant-table-pagination {
  margin-top: 24px;
}
.tableListForm___3ePMM {
  position: relative;
  padding: 4px;
  z-index: 1;
}
.SampleInfoTable___1TaCH {
  position: absolute;
  top: 83px;
  right: 0;
  bottom: 0;
  left: 0;
}
.SampleInfoNewTable___24Aas {
  position: relative;
  min-height: 300px;
}
.searchForm___3dWPx {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___3dWPx .formItemHack___1Lk-C {
  /**兼容IE下ant-form-item-control控件行高**/
}
.searchForm___3dWPx .buttonBlock___2va7O {
  position: absolute;
  right: 0;
  top: 44px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___3FWiC .ant-modal-body {
  padding: 12px 0;
}
.WaterMeterTable___3rDOt,
.WaterMeterNewTable___1AxI3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___3rDOt {
  top: 84px;
}
.WaterMeterNewTable___1AxI3 {
  top: 146px;
}
.formWrapper___1bOXu {
  margin-top: 10px;
}
.formWrapper___1bOXu .buttonWrapper___2hTA8 {
  margin-bottom: 10px;
  margin-top: -4px;
  text-align: center;
}
.formWrapper___1bOXu .buttonWrapper___2hTA8 button {
  margin-right: 4px;
}
.formWrapper___1bOXu .buttonWrapper___2hTA8 button:last-child {
  margin-right: 0;
}
.fulljustify___1H-71 {
  text-align: justify;
}
.fulljustify___1H-71:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.standardTable___1eX9F {
  top: 76px;
}
.menuForm___1zWnI .ant-form-item {
  min-height: auto;
}
.menuForm___1zWnI .formItemHack___2BgYm {
  /**兼容IE下ant-form-item-control控件行高**/
}
.buttonBlock___3b6aO {
  position: absolute;
  top: 46px;
  right: 0;
}
.standardTable___1R0qX .ant-table-pagination {
  margin-top: 24px;
}
.standardTable___1R0qX .ant-divider-horizontal.ant-divider-with-text:before {
  width: 10%;
}
.standardTable___1R0qX .ant-divider-horizontal.ant-divider-with-text:after {
  width: 90%;
}
.standardTable___1R0qX table th,
.standardTable___1R0qX table td {
  text-align: center;
  white-space: nowrap;
}
.standardTable___1R0qX .tableAlert___1kVAH {
  margin-bottom: 16px;
}
.tableTitle___3cDvl {
  position: absolute;
  top: 47px;
  right: 0;
  bottom: 0;
  left: 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1FsJ8 .ant-modal-body {
  padding: 12px 0;
}
.outPutSonTable___2CPgX {
  position: absolute;
  top: 254px;
  bottom: 0;
  left: 0;
  right: 0;
}
.outPutSonTable___2CPgX .ant-table-body {
  bottom: 32px !important;
}
.outForm___1u7UA .ant-upload.ant-upload-select {
  float: left;
}
.outForm___1u7UA .ant-upload-list {
  float: left;
}
.outForm___1u7UA .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.outForm___1u7UA .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.outForm___1u7UA i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
.tableList___4YDFc {
  position: absolute;
  padding: 4px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.outTable___31PzQ {
  position: absolute;
  top: 40px;
  left: -4px;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.OutPutTable___19QXo {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.formWrapper___36hLo {
  margin-top: 10px;
}
.formWrapper___36hLo .buttonWrapper___25AYk {
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: center;
}
.formWrapper___3NeSu {
  margin-top: 10px;
}
.formWrapper___3NeSu .buttonWrapper___1xnkJ {
  margin-bottom: 10px;
  text-align: center;
}
.formWrapper___3vYEm {
  margin-top: 10px;
}
.formWrapper___3vYEm .buttonWrapper___nOIGM {
  margin-bottom: 10px;
  text-align: center;
  margin-top: -4px;
}
.formWrapper___3vYEm .roadInput___3pmek {
  padding: 0;
  width: 30px;
  text-align: center;
}
.formWrapper___2M3ew {
  margin-top: 10px;
}
.formWrapper___2M3ew .buttonWrapper___3hqhm {
  margin-bottom: 10px;
  text-align: center;
}
.formWrapper___2M3ew .ant-upload.ant-upload-select {
  float: left;
}
.formWrapper___2M3ew .ant-upload-list {
  float: left;
}
.formWrapper___2M3ew .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.formWrapper___2M3ew .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.formWrapper___2M3ew i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
table {
  padding: 0!important;
}
.buttonBlock___1emCF {
  position: absolute;
  right: 32px;
  top: 8px;
}
.modal___3FL8v .ant-modal {
  height: 600px;
  overflow: hidden;
}
.modal___3FL8v .ant-modal-body {
  padding: 10px;
}
.tableListForm___2C9AO {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.dataTable___Xc2bg {
  position: absolute;
  top: 47px;
  bottom: 10px;
  left: -12px;
  right: 0;
}
.dataTable___Xc2bg .ant-table-body {
  bottom: 34px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___3aYas .formItemHack___1x5_R {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___3aYas .buttonBlock___3bJ_W {
  position: absolute;
  right: 0;
  top: 47px;
}
.envirDeviceTable___3NH89 {
  position: absolute;
  top: 83px;
  right: 0;
  bottom: 0;
  left: 0;
}
.envirDeviceTable___3NH89 .ant-table-body {
  bottom: 35px !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___2IBL- .formItemHack___qr-Hd {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___2IBL- .buttonBlock___lD1FT {
  position: absolute;
  right: 0;
  top: 11px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1db53 .ant-modal-body {
  padding: 12px 0;
}
.modals___1db53 .ant-upload.ant-upload-select {
  float: left;
}
.modals___1db53 .ant-upload-list {
  float: left;
}
.modals___1db53 .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.modals___1db53 .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.modals___1db53 i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
.tableListForm___3CwMR {
  padding: 4px;
}
.OutFallTable___1JeQm,
.OutFallNewTable___1Zv2M {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.OutFallTable___1JeQm {
  top: 47px;
}
.OutFallNewTable___1Zv2M {
  top: 199px;
}
.formWrapper___pu_UM {
  margin-top: 10px;
}
.formWrapper___pu_UM .buttonWrapper___3gCO- {
  margin-bottom: 10px;
  text-align: center;
}
.formWrapper___pu_UM .ant-upload.ant-upload-select {
  float: left;
}
.formWrapper___pu_UM .ant-upload-list {
  float: left;
}
.formWrapper___pu_UM .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.formWrapper___pu_UM .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.formWrapper___pu_UM i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___XJVd4 .formItemHack___3u7lJ {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___XJVd4 .buttonBlock___bOzK2 {
  position: absolute;
  right: 0;
  top: 50px;
}
.menuForm___XJVd4 .ant-form-item {
  min-height: auto;
}
.landInfoTable___2yfY0 {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.modals___1BTXF .ant-modal-body {
  padding: 12px 0;
}
.fileUpload___2y6UV .ant-upload-select {
  float: left;
}
.fileUpload___2y6UV .ant-upload-list {
  display: -ms-flexbox;
  display: flex;
}
.input___1lP7j {
  min-width: 150px;
}
.operation___3T30u a {
  padding: 0 10px;
}
.operation___3T30u a:first-child {
  border-right: 1px solid #ccc;
}
.editable___1SOD4 td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.input___LQ2LY {
  min-width: 150px;
}
.operation___2OkMJ a {
  padding: 0 10px;
}
.operation___2OkMJ a:first-child {
  border-right: 1px solid #ccc;
}
.editable___3TndC td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.input___1rc2V {
  min-width: 150px;
}
.operation___3FVjE a {
  padding: 0 10px;
}
.operation___3FVjE a:first-child {
  border-right: 1px solid #ccc;
}
.input___24LiI {
  min-width: 150px;
}
.operation___2qIwv a {
  padding: 0 10px;
}
.operation___2qIwv a:first-child {
  border-right: 1px solid #ccc;
}
.input___1IQDU {
  min-width: 150px;
}
.operation___jwQhM a {
  padding: 0 10px;
}
.operation___jwQhM a:first-child {
  border-right: 1px solid #ccc;
}
.input___1epCj {
  min-width: 150px;
}
.operation___2h7sb a {
  padding: 0 10px;
}
.operation___2h7sb a:first-child {
  border-right: 1px solid #ccc;
}
.editable___184hQ td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.input___1wGvK {
  min-width: 150px;
}
.operation___1iRyK a {
  padding: 0 10px;
}
.operation___1iRyK a:first-child {
  border-right: 1px solid #ccc;
}
.editable___LnX7n td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.input___2BV6s {
  min-width: 150px;
}
.operation___qBgne a {
  padding: 0 10px;
}
.operation___qBgne a:first-child {
  border-right: 1px solid #ccc;
}
.input___JbUfd {
  min-width: 150px;
}
.operation___1-zlw a {
  padding: 0 10px;
}
.operation___1-zlw a:first-child {
  border-right: 1px solid #ccc;
}
.input___10vn1 {
  min-width: 150px;
}
.operation___3YACK a {
  padding: 0 10px;
}
.operation___3YACK a:first-child {
  border-right: 1px solid #ccc;
}
.input___cKU2O {
  min-width: 150px;
}
.operation___1h_m_ a {
  padding: 0 10px;
}
.operation___1h_m_ a:first-child {
  border-right: 1px solid #ccc;
}
.input___303MK {
  min-width: 150px;
}
.operation___1ggXD a {
  padding: 0 10px;
}
.operation___1ggXD a:first-child {
  border-right: 1px solid #ccc;
}
.input___1CFC3 {
  min-width: 150px;
}
.operation___30ccH a {
  padding: 0 10px;
}
.operation___30ccH a:first-child {
  border-right: 1px solid #ccc;
}
.input___3CMnN {
  min-width: 150px;
}
.operation___2ncHn a {
  padding: 0 10px;
}
.operation___2ncHn a:first-child {
  border-right: 1px solid #ccc;
}
.input____CF9D {
  min-width: 150px;
}
.operation___3aUpb a {
  padding: 0 10px;
}
.operation___3aUpb a:first-child {
  border-right: 1px solid #ccc;
}
.input___NpYhu {
  min-width: 150px;
}
.operation___3FZUT a {
  padding: 0 10px;
}
.operation___3FZUT a:first-child {
  border-right: 1px solid #ccc;
}
.input___13i46 {
  min-width: 150px;
}
.operation___1tL67 a {
  padding: 0 10px;
}
.operation___1tL67 a:first-child {
  border-right: 1px solid #ccc;
}
.input___3FWEh {
  min-width: 150px;
}
.operation___2n1Gu a {
  padding: 0 10px;
}
.operation___2n1Gu a:first-child {
  border-right: 1px solid #ccc;
}
.input___NnXgx {
  min-width: 150px;
}
.operation___SzO_i a {
  padding: 0 10px;
}
.operation___SzO_i a:first-child {
  border-right: 1px solid #ccc;
}
.editable___2R-oR td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___2Ng49 td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___1TyyX td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___5XPhu td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___1kf0s td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___z28Yo td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___rMOue td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___15SJG td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___dadu7 td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___3wRZc td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___M2sTy td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___rL4jD td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.content___2Ukud .ant-modal-body {
  display: block;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.editable___3WlHG td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___Yqwkb td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___nXDLD td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.editable___wqeuK td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
.input___G432V {
  min-width: 150px;
}
.operation___3RnYm a {
  padding: 0 10px;
}
.operation___3RnYm a:first-child {
  border-right: 1px solid #ccc;
}
.editable___cMm6_ td {
  padding-top: 13px !important;
  padding-bottom: 12.5px !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___1xOLf {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___1xOLf {
  /**兼容Firefox、IE表头**/
}
.standardTable___1xOLf .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___1xOLf .ant-table {
  height: 100%;
  top: 28px;
  overflow-x: scroll;
}
.standardTable___1xOLf .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___1xOLf .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___1xOLf .ant-table-pagination {
  position: absolute;
  top: 0;
  right: 44px;
  margin: 0 !important;
}
.standardTable___1xOLf .ant-table-wrapper {
  height: 100%;
}
.standardTable___1xOLf .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___1xOLf .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___1xOLf table tr.tableCss td {
  background: #eff3f7;
}
.standardTable___1xOLf table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___1xOLf table tr.red td {
  background: #ec03035c;
}
.standardTable___1xOLf .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___1xOLf .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___1xOLf .ant-table-thead > tr:hover > td,
.standardTable___1xOLf .ant-table-tbody > tr:hover > td {
  background: #c9e0ea;
}
.standardTable___1xOLf .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___1xOLf .tableAlert___3dXVE {
  margin-bottom: 16px;
}
.standardTable___1xOLf table th {
  background: #77b1cb !important;
  text-align: center !important;
  color: #ffffff !important;
  font-family: 'Microsoft YaHei';
  font-weight: bold;
}
.standardTable___1xOLf table tr .ant-table-selection-column {
  width: 30px;
}
.standardTable___1xOLf .ant-table-bordered .ant-table-tbody > tr > td {
  border-right: 1px solid #ccb5ce;
}
.standardTable___1xOLf .ant-table-bordered .ant-table-thead > tr > th {
  border-right: 1px solid #77b1cb !important;
}
.standardTable___1xOLf .addBtn {
  position: absolute;
  left: 44px;
  border-radius: 3px;
  background-color: #40C8A5 !important;
  border-color: #40C8A5 !important;
  z-index: 10;
}
.standardTable___1xOLf .grayItem___7hQWY {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 6px;
}
.ablaLogTable___38HJj {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.ablaLogNewTable___3hImG {
  position: relative;
  min-height: 300px;
}
.formWrapper___3KvNQ {
  margin-top: 10px;
}
.formWrapper___3KvNQ .buttonWrapper___3nny5 {
  text-align: right;
  margin-top: 30px;
}
.searchForm___U7hQR {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___U7hQR .ant-form-item {
  min-height: auto;
}
.searchForm___U7hQR .buttonBlock___1jfQK {
  position: absolute;
  right: 0;
  top: 40px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1Jnya .ant-modal-body {
  padding: 12px 0;
}
.WaterMeterTable___3OsyA,
.WaterMeterNewTable___32H7q {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___3OsyA {
  top: 87px;
}
.WaterMeterNewTable___32H7q {
  top: 142px;
}
.searchForm___2EMeV {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___2EMeV .ant-form-item {
  min-height: auto;
}
.searchForm___2EMeV .right {
  right: 0;
}
.searchForm___2EMeV .buttonBlock___1hRqm {
  position: absolute;
  right: 0;
  top: 40px;
}
.WaterMeterTable___32Npj,
.WaterMeterNewTable___2YSQW {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___32Npj {
  top: 87px;
}
.WaterMeterNewTable___2YSQW {
  top: 150px;
}
.searchForm___3-nbC {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___3-nbC .ant-form-item {
  min-height: auto;
}
.searchForm___3-nbC .buttonBlock___1Yi5G {
  position: absolute;
  right: 0;
  top: 40px;
}
.WaterMeterTable___2pZMS,
.WaterMeterNewTable___LD5qv {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___2pZMS {
  top: 87px;
}
.WaterMeterNewTable___LD5qv {
  top: 100px;
}
.formWrapper___2mgM5 {
  margin-top: 10px;
}
.formWrapper___2mgM5 .buttonWrapper___1nMKl {
  margin-bottom: 10px;
  margin-top: -4px;
  text-align: center;
}
.formWrapper___2mgM5 .buttonWrapper___1nMKl button {
  margin-right: 4px;
}
.formWrapper___2mgM5 .buttonWrapper___1nMKl button:last-child {
  margin-right: 0;
}
.fulljustify___2DDzL {
  text-align: justify;
}
.fulljustify___2DDzL:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.searchForm___-4Qx2 {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___-4Qx2 .ant-form-item {
  min-height: auto;
}
.searchForm___-4Qx2 .buttonBlock___D9eqD {
  position: absolute;
  right: 0;
  top: 40px;
}
.formWrapper___yXEO5 {
  margin-top: 10px;
}
.formWrapper___yXEO5 .buttonWrapper___34vI1 {
  margin-bottom: 10px;
  margin-top: -4px;
  text-align: center;
}
.formWrapper___yXEO5 .buttonWrapper___34vI1 button {
  margin-right: 4px;
}
.formWrapper___yXEO5 .buttonWrapper___34vI1 button:last-child {
  margin-right: 0;
}
.fulljustify___1odYW {
  text-align: justify;
}
.fulljustify___1odYW:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.searchForm___11f9A {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___11f9A .ant-form-item {
  min-height: auto;
}
.searchForm___11f9A .buttonBlock___RPU3H {
  position: absolute;
  right: 0;
  bottom: 10px;
}
.pigSupplierTable___j3sv0,
.pigSupplierNewTable___EEbYT {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.pigSupplierTable___j3sv0 {
  top: 87px;
}
.pigSupplierNewTable___EEbYT {
  top: 220px;
}
.formWrapper___3IEk8 {
  margin-top: 10px;
}
.formWrapper___3IEk8 .buttonWrapper___1rWqp {
  margin-bottom: 10px;
  margin-top: -4px;
  text-align: center;
}
.formWrapper___3IEk8 .buttonWrapper___1rWqp button {
  margin-right: 4px;
}
.formWrapper___3IEk8 .buttonWrapper___1rWqp button:last-child {
  margin-right: 0;
}
.fulljustify___J591j {
  text-align: justify;
}
.fulljustify___J591j:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.searchForm___1tDfO {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___1tDfO .ant-form-item {
  min-height: auto;
}
.searchForm___1tDfO .buttonBlock___1wEfM {
  position: absolute;
  right: 0;
  top: 47px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___1d5bK .ant-modal-body {
  padding: 12px 0;
}
.WaterMeterTable___1MrBy,
.BaseFeederNewTable___1R8vF {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___1MrBy {
  top: 90px;
}
.BaseFeederNewTable___1R8vF {
  top: 150px;
}
.formWrapper___1x1y0 {
  margin-top: 10px;
}
.formWrapper___1x1y0 .buttonWrapper___1lEtY {
  margin-bottom: 10px;
  margin-top: -4px;
  text-align: center;
}
.formWrapper___1x1y0 .buttonWrapper___1lEtY button {
  margin-right: 4px;
}
.formWrapper___1x1y0 .buttonWrapper___1lEtY button:last-child {
  margin-right: 0;
}
.formWrapper___1x1y0 .ant-select-selection--multiple {
  height: 52px;
  overflow-y: scroll;
}
.fulljustify___29Ob- {
  text-align: justify;
}
.fulljustify___29Ob-:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.searchForm___3uZ67 {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___3uZ67 .formItemHack___1yeFG {
  /**兼容IE下ant-form-item-control控件行高**/
}
.searchForm___3uZ67 .buttonBlock___1sSVk {
  position: absolute;
  right: 0;
  top: 47px;
}
.SeqTable___bzl6o,
.SeqNewTable___1-Ry7 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.SeqTable___bzl6o {
  top: 90px;
}
.SeqNewTable___1-Ry7 {
  top: 150px;
}
.formWrapper___1Jc6T {
  margin-top: 10px;
}
.formWrapper___1Jc6T .buttonWrapper___2TqYP {
  text-align: center;
}
.formWrapper___1Jc6T .buttonWrapper___2TqYP button {
  margin-right: 4px;
}
.formWrapper___1Jc6T .buttonWrapper___2TqYP button:last-child {
  margin-right: 0;
}
.ant-form-item-children {
  display: block;
}
.fulljustify___17ZJ0 {
  text-align: justify;
}
.fulljustify___17ZJ0:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.searchForm___1btbU {
  margin-bottom: 0 !important;
  position: relative;
}
.searchForm___1btbU .formItemHack___1dplf {
  /**兼容IE下ant-form-item-control控件行高**/
}
.searchForm___1btbU .buttonBlock___33wy7 {
  position: absolute;
  right: 0;
  top: 44px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.modals___2WR1W .ant-modal-body {
  padding: 12px 0;
}
.corpTable___1ce81,
.corpNewTable___18CpE {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.corpTable___1ce81 {
  top: 84px;
}
.corpNewTable___18CpE {
  top: 146px;
}
.changeIntoTable___33Jri {
  position: absolute;
  top: 87px;
  right: 0;
  bottom: 0;
  left: 0;
}
.changeIntoNewTable___2D8ps {
  position: relative;
  min-height: 300px;
}
.formWrapper___2OK2g {
  margin-top: 10px;
}
.formWrapper___2OK2g .buttonWrapper___3bgY_ {
  text-align: center;
}
.epidemicTable___3dcI5,
.epidemicNewTable___2lrIl {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.epidemicTable___3dcI5 {
  top: 124px;
}
.epidemicNewTable___2lrIl {
  top: 243px;
}
.buttonBlock___nbs_Q {
  position: absolute;
  right: 0;
  top: 47px;
}
.ant-form-item {
  min-height: auto;
}
.deadOutTable___qwq2d,
.deadOutNewTable___tFvQo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.deadOutTable___qwq2d {
  top: 114px;
}
.deadOutNewTable___tFvQo {
  top: 199px;
}
.formWrapper___2-Hzo {
  margin-top: 10px;
}
.formWrapper___2-Hzo .buttonWrapper___2ABbw {
  text-align: center;
}
.buttonBlock___8X0l- {
  position: absolute;
  right: 0;
  top: 47px;
}
.ant-form-item {
  min-height: auto;
}
.checkBoarTable___1Dcem,
.checkBoarNewTable___1Pp62 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.checkBoarTable___1Dcem {
  top: 87px;
}
.checkBoarNewTable___1Pp62 {
  top: 197px;
}
.formWrapper___25Tc0 {
  margin-top: 10px;
}
.formWrapper___25Tc0 .buttonWrapper___1tQZm {
  text-align: center;
}
.buttonBlock___3Xdp0 {
  position: absolute;
  right: 0;
  top: 47px;
}
.feedBoarTable___3E36m,
.feedBoarNewTable___24NFG {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.feedBoarTable___3E36m {
  top: 87px;
}
.feedBoarNewTable___24NFG {
  top: 227px;
}
.formWrapper___8XcXa {
  margin-top: 10px;
}
.formWrapper___8XcXa .buttonWrapper___1YD76 {
  text-align: center;
}
.buttonBlock___dk63S {
  position: absolute;
  right: 0;
  top: 47px;
}
.ant-form-item {
  min-height: auto;
}
.buyInfoTable___3AbCW,
.buyInfoNewTable___2kb8T {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.buyInfoTable___3AbCW {
  top: 120px;
}
.buyInfoNewTable___2kb8T {
  top: 248px;
}
.formWrapper___2eHQM {
  margin-top: 10px;
}
.formWrapper___2eHQM .buttonWrapper___1SOvw {
  text-align: center;
}
.buttonBlock___MG8kG {
  position: absolute;
  right: 0;
  top: 47px;
}
.ant-form-item {
  min-height: auto;
}
.backupTable___25IoF,
.backupNewTable___26G-C {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.backupTable___25IoF {
  top: 118px;
}
.backupNewTable___26G-C {
  top: 245px;
}
.formWrapper___1lxS_ {
  margin-top: 10px;
}
.formWrapper___1lxS_ .buttonWrapper___1Gpvf {
  text-align: center;
}
.transferHouseTable___24fLO,
.transferHouseNewTable___1IJDF {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.transferHouseTable___24fLO {
  top: 87px;
}
.transferHouseNewTable___1IJDF {
  top: 250px;
}
.formWrapper___3pCDl {
  margin-top: 10px;
}
.formWrapper___3pCDl .buttonWrapper___3IFZG {
  text-align: center;
}
.buttonBlock___26iIo {
  position: absolute;
  top: 127px;
  left: 44px;
  z-index: 10;
}
.ant-form-item {
  min-height: auto;
}
.buttonBlock___3hAcd {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___3f-Qq .ant-form-item {
  min-height: auto;
}
.saleInfoTable___1Ruzq,
.saleInfoNewTable___3WHL8 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.saleInfoTable___1Ruzq {
  top: 122px;
}
.saleInfoNewTable___3WHL8 {
  top: 245px;
}
.formWrapper___3dq_x {
  margin-top: 10px;
}
.formWrapper___3dq_x .buttonWrapper___Br8YJ {
  text-align: center;
}
.buttonBlock___2m0Yu {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___108k7 .ant-form-item {
  min-height: auto;
}
.WaterMeterTable___11gyZ,
.WaterMeterNewTable___39Tjd {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___11gyZ .ant-table-body,
.WaterMeterNewTable___39Tjd .ant-table-body {
  top: 32px !important;
}
.WaterMeterTable___11gyZ {
  top: 84px;
}
.WaterMeterNewTable___39Tjd {
  top: 197px;
}
.formWrapper___2q_4c {
  margin-top: 10px;
}
.formWrapper___2q_4c .buttonWrapper___gN2rY {
  text-align: right;
  margin-top: 30px;
}
.buttonBlock___3f484 {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___l3tQx .ant-form-item {
  min-height: auto;
}
.formWrapper___1sw1W {
  margin-top: 10px;
}
.formWrapper___1sw1W .buttonWrapper___1zXGK {
  text-align: right;
  margin-top: 30px;
}
.buttonBlock___DT3Hc {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___2O-QH .ant-form-item {
  min-height: auto;
}
.WaterMeterTable___l8T9v,
.WaterMeterNewTable___2cALC {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___l8T9v {
  top: 87px;
}
.WaterMeterNewTable___2cALC {
  top: 150px;
}
.formWrapper___1M7pu {
  margin-top: 10px;
}
.formWrapper___1M7pu .buttonWrapper___3KUlD {
  text-align: right;
  margin-top: 30px;
}
.multiPleSelect___2zUyn {
  overflow: scroll;
  overflow-x: hidden;
}
.multiPleSelect___2zUyn .ant-select-selection--multiple {
  height: 64px;
}
.buttonBlock___31FRc {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___1CGNQ .ant-form-item {
  min-height: auto;
}
.formWrapper___1kfmW {
  margin-top: 10px;
}
.formWrapper___1kfmW .buttonWrapper___1HCh2 {
  text-align: right;
  margin-top: 30px;
}
.formWrapper___1kfmW .buttonWrapper___1HCh2 button {
  width: 160px;
  height: 50px !important;
  text-align: center;
}
.formWrapper___1kfmW .buttonWrapper___1HCh2 button span {
  line-height: 50px;
  font-size: 18px;
}
.formItemHack___9wlpb {
  /**兼容IE下ant-form-item-control控件行高**/
}
.buttonBlock___3hpbF {
  position: absolute;
  right: 0;
  top: 32px;
}
.WaterMeterTable___3A_uh,
.mateLogNewTable___1Qrf7 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.WaterMeterTable___3A_uh {
  top: 84px;
}
.mateLogNewTable___1Qrf7 {
  top: 194px;
  min-height: 300px;
}
.formWrapper___1TKCn {
  text-align: right;
  margin-top: 30px;
}
.formWrapper___1TKCn .buttonWrapper___BkWRW {
  margin-bottom: 10px;
  margin-top: -4px;
  text-align: center;
}
.formWrapper___1TKCn .buttonWrapper___BkWRW button {
  margin-right: 4px;
}
.formWrapper___1TKCn .buttonWrapper___BkWRW button:last-child {
  margin-right: 0;
}
.fulljustify___19XZs {
  text-align: justify;
}
.fulljustify___19XZs:after {
  content: "";
  display: inline-block;
  width: 100%;
}
.buttonWrapper___BkWRW {
  text-align: right;
  margin-top: 30px;
}
.formItemHack___19rIy {
  /**兼容IE下ant-form-item-control控件行高**/
}
.buttonBlock___g3KqO {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___2eFm4 .ant-form-item {
  min-height: auto;
}
.PrengLogTable___3Kcvu,
.PrengLogNewTable___3NUmp {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.PrengLogTable___3Kcvu .ant-table-body,
.PrengLogNewTable___3NUmp .ant-table-body {
  top: 32px!important;
}
.PrengLogTable___3Kcvu {
  top: 84px;
}
.PrengLogNewTable___3NUmp {
  top: 197px;
}
.formWrapper___2kv9A {
  margin-top: 10px;
}
.formWrapper___2kv9A .buttonWrapper___3FuQ6 {
  text-align: right;
  margin-top: 30px;
}
.boarInfoTable___2Xfg8,
.boarInfoNewTable___2w3ol {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___2Xfg8 {
  top: 87px;
}
.boarInfoNewTable___2w3ol {
  top: 452px;
  min-height: 300px;
}
.formWrapper___38Hxy {
  margin-top: 10px;
}
.formWrapper___38Hxy .buttonWrapper___17CGy {
  text-align: right;
  margin-top: 30px;
}
.batchImportForm___55xKJ {
  padding: 20px;
  border: 1px solid #ccc;
}
.batchImportForm___55xKJ > h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}
.batchImportForm___55xKJ label {
  font-size: 14px;
  color: #333;
}
.batchImportForm___55xKJ > form {
  padding-left: 10px;
}
.batchImportForm___55xKJ .right_button {
  float: right;
}
.historicalData___Zne_r {
  margin-bottom: 20px;
}
.historicalData___Zne_r > h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}
.historicalData___Zne_r > span {
  font-size: 14px;
  margin-left: 18px;
  color: #333;
}
.historicalData___Zne_r > p {
  display: inline-block;
}
.historicalData___Zne_r > p > button {
  margin-left: 10px;
}
.navigation___2teN9 {
  height: 700px;
  border: 1px solid #ccc;
  margin-right: -1px;
}
.navigation___2teN9 button {
  float: right;
  margin-top: 8px;
}
.navigation___2teN9 .cur {
  background: #f0f2f7;
}
.navigation___2teN9 .err {
  color: #c71010;
}
.navigation___2teN9 input {
  width: 45px;
  margin: 0;
}
.navigation___2teN9 ul:last-of-type {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.ul___XduPs {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  height: 665px;
}
.ul___XduPs li {
  line-height: 36px;
  padding: 0 8px;
}
.ul___XduPs li > span {
  height: 100%;
  display: inline-block;
  cursor: pointer;
}
.ul___XduPs li > i {
  float: right;
  line-height: 36px;
  cursor: pointer;
}
.wrap___VlRaV {
  width: 80%;
  margin: 0 auto;
}
.step___3N-kq {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 30px 0;
}
.step___3N-kq > div {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.step___3N-kq > div:last-child {
  -ms-flex: 0 1;
      flex: 0 1;
}
.step___3N-kq .circle___1UpIk {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  border: 3px solid #f0f1f1;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.step___3N-kq .circle___1UpIk b {
  position: absolute;
  font-size: 12px;
  display: block;
  width: 84px;
  left: 14px;
  font-weight: normal;
  top: 50px;
  line-height: 1;
  text-align: center;
  color: #333333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___3N-kq .circle___1UpIk span {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___3N-kq .step1___2AbCh .circle___1UpIk {
  color: #017ACB;
  border-left-color: #017ACB;
}
.step___3N-kq .step1___2AbCh i {
  background: #7FC1EC ;
}
.step___3N-kq .step2___1W9Vx .circle___1UpIk {
  border-left-color: #B3C7DB;
  border-bottom-color: #B3C7DB;
}
.step___3N-kq .step3___2V_og .circle___1UpIk {
  border-left-color: #B3C7DB;
  border-bottom-color: #B3C7DB;
  border-right-color: #B3C7DB;
}
.step___3N-kq .step4___3m0Mk .circle___1UpIk {
  border-color: #B3C7DB;
}
.step___3N-kq i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #D9E1E9 ;
  border-radius: 50%;
}
.pot___1Hg-K {
  -ms-flex: 1 1;
      flex: 1 1;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn___2Aq4k {
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.btn___2Aq4k div {
  width: 50%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  cursor: pointer;
}
.btn___2Aq4k .load___1XDFC {
  background: #017ACB;
  color: white;
  margin-right: 20%;
}
.btn___2Aq4k .skip___3mDqL {
  background: white;
  border: 1px solid #017ACB;
  color: #333333;
}
.tip___1c2xN {
  width: 100%;
  margin: 0 auto;
}
.tip___1c2xN h4 {
  margin: 0;
  text-align: center;
  color: #017ACB;
  font-size: 14px;
}
.tip___1c2xN img {
  width: 100%;
  display: block;
  margin: 10px auto 20px;
}
.tipText___1OEgp {
  margin-bottom: 20px;
}
.tipText___1OEgp span {
  color: #017ACB;
  font-size: 12px;
}
.tipText___1OEgp p {
  margin: 0;
  line-height: 20px;
  font-size: 12px;
}
.ant-form .ant-upload-drag {
  width: 100%;
  margin: 0 auto;
  border: none;
  background: #F1F6F9;
  padding: 80px 0;
}
.ant-form .ant-upload-drag .anticon-plus {
  color: white;
  font-size: 20px;
}
.ant-form .ant-upload-drag .anticon-plus:hover {
  color: white;
}
.ant-form .ant-upload-drag .ant-upload p:first-child {
  margin: 0 auto 20px;
}
.wrap___20U0Z {
  width: 80%;
  margin: 0 auto;
}
.plusBtn___1ynKX {
  width: 70px;
  height: 70px;
  background: #017ACB;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
}
.text___1mkck {
  line-height: 20px;
  font-size: 14px;
  color: #333333;
  text-align: center;
}
.step___1MsUg {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 30px 0;
  margin-bottom: 60px;
}
.step___1MsUg > div {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.step___1MsUg > div:last-child {
  -ms-flex: 0 1;
      flex: 0 1;
}
.step___1MsUg .circle___2fQQm {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  border: 3px solid #f0f1f1;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.step___1MsUg .circle___2fQQm b {
  position: absolute;
  font-size: 12px;
  display: block;
  width: 84px;
  left: 14px;
  font-weight: normal;
  top: 50px;
  line-height: 1;
  text-align: center;
  color: #333333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___1MsUg .circle___2fQQm span {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___1MsUg .step1___2qK-8 .circle___2fQQm {
  color: #017ACB;
  border-left-color: #017ACB;
}
.step___1MsUg .step1___2qK-8 i {
  background: #7FC1EC ;
}
.step___1MsUg .step2___1KLNY .circle___2fQQm {
  color: #017ACB;
  border-left-color: #017ACB;
  border-bottom-color: #017ACB;
}
.step___1MsUg .step2___1KLNY i {
  background: #7FC1EC ;
}
.step___1MsUg .step3___3rcSF .circle___2fQQm {
  border-left-color: #B3C7DB;
  border-bottom-color: #B3C7DB;
  border-right-color: #B3C7DB;
}
.step___1MsUg .step4___3pw1k .circle___2fQQm {
  border-color: #B3C7DB;
}
.step___1MsUg i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 20px;
  background: #D9E1E9 ;
  border-radius: 50%;
}
.pot___23gEz {
  -ms-flex: 1 1;
      flex: 1 1;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.modalWrap___vupTA i {
  font-size: 80px;
  display: block;
  margin: 0 auto;
  color: #ff4d4f;
}
.modalWrap___vupTA p {
  text-align: center;
  margin-bottom: 0;
  line-height: 30px;
}
.modalWrap___vupTA .btns___1iZfm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 20px;
}
.modalWrap___vupTA .btns___1iZfm button:first-child {
  margin-right: 15%;
}
.ant-form .ant-upload-drag {
  width: 100%;
  margin: 0 auto;
  border: none;
  background: #F1F6F9;
  padding: 80px 0;
}
.ant-form .ant-upload-drag .anticon-plus {
  color: white;
  font-size: 20px;
}
.ant-form .ant-upload-drag .anticon-plus:hover {
  color: white;
}
.ant-form .ant-upload-drag .ant-upload p:first-child {
  margin: 0 auto 20px;
}
.wrap___1zPH7 {
  width: 80%;
  margin: 0 auto;
}
.plusBtn___3LwdT {
  width: 70px;
  height: 70px;
  background: #017ACB;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
}
.text___3w-fY {
  line-height: 20px;
  font-size: 14px;
  color: #333333;
  text-align: center;
}
.step___1ht1L {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 30px 0;
  margin-bottom: 60px;
}
.step___1ht1L > div {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.step___1ht1L > div:last-child {
  -ms-flex: 0 1;
      flex: 0 1;
}
.step___1ht1L .circle___2a2hr {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  border: 3px solid #f0f1f1;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.step___1ht1L .circle___2a2hr b {
  position: absolute;
  font-size: 12px;
  display: block;
  width: 84px;
  left: 14px;
  font-weight: normal;
  top: 50px;
  line-height: 1;
  text-align: center;
  color: #333333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___1ht1L .circle___2a2hr span {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___1ht1L .step1___33681 .circle___2a2hr {
  color: #017ACB;
  border-left-color: #017ACB;
}
.step___1ht1L .step1___33681 i {
  background: #7FC1EC ;
}
.step___1ht1L .step2___3ciO5 .circle___2a2hr {
  color: #017ACB;
  border-left-color: #017ACB;
  border-bottom-color: #017ACB;
}
.step___1ht1L .step2___3ciO5 i {
  background: #7FC1EC ;
}
.step___1ht1L .step3___2EQe- .circle___2a2hr {
  color: #017ACB;
  border-left-color: #017ACB;
  border-bottom-color: #017ACB;
  border-right-color: #017ACB;
}
.step___1ht1L .step3___2EQe- i {
  background: #7FC1EC ;
}
.step___1ht1L .step4___1DkZ8 .circle___2a2hr {
  color: #017ACB;
  border-color: #017ACB;
}
.step___1ht1L .step4___1DkZ8 i {
  background: #7FC1EC ;
}
.step___1ht1L i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 20px;
  background: #D9E1E9 ;
  border-radius: 50%;
}
.pot___220r2 {
  -ms-flex: 1 1;
      flex: 1 1;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.complete___1sTNA {
  text-align: center;
  margin-top: 100px;
}
.complete___1sTNA i {
  font-size: 60px;
  color: #017ACB;
  margin-left: -30px;
}
.complete___1sTNA p {
  color: #333333;
  font-size: 28px;
  line-height: 60px;
}
.complete___1sTNA div {
  width: 200px;
  margin: 0 auto;
  background: #017ACB;
  color: white;
  line-height: 40px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
.complete___1sTNA div:hover {
  opacity: .9;
}
.batchImport___Df65o {
  padding: 10px;
}
.batchImport___Df65o .con___3i3sy {
  margin: 10px 0;
}
.batchImport___Df65o .con___3i3sy h3 {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin: 0;
  line-height: 40px;
  color: #333;
}
.batchImport___Df65o .con___3i3sy > span {
  float: right;
}
.batchImport___Df65o .con___3i3sy > span button {
  width: 150px;
  margin-right: 20px;
  height: 40px;
}
.batchImport___Df65o > i {
  font-size: 12px;
  color: #c71010;
  font-style: normal;
}
.wrap___217LI {
  width: 80%;
  margin: 0 auto;
}
.step___2V4kS {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 30px 0;
  margin-bottom: 60px;
}
.step___2V4kS > div {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.step___2V4kS > div:last-child {
  -ms-flex: 0 1;
      flex: 0 1;
}
.step___2V4kS .circle___3ySr- {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 54px;
  border: 3px solid #f0f1f1;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.step___2V4kS .circle___3ySr- b {
  position: absolute;
  font-size: 12px;
  display: block;
  width: 84px;
  left: 14px;
  font-weight: normal;
  top: 50px;
  line-height: 1;
  text-align: center;
  color: #333333;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___2V4kS .circle___3ySr- span {
  display: inline-block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.step___2V4kS .step1___2Rpyi .circle___3ySr- {
  color: #017ACB;
  border-left-color: #017ACB;
}
.step___2V4kS .step1___2Rpyi i {
  background: #7FC1EC ;
}
.step___2V4kS .step2___1Sw1v .circle___3ySr- {
  color: #017ACB;
  border-left-color: #017ACB;
  border-bottom-color: #017ACB;
}
.step___2V4kS .step2___1Sw1v i {
  background: #7FC1EC ;
}
.step___2V4kS .step3___12vOP .circle___3ySr- {
  color: #017ACB;
  border-left-color: #017ACB;
  border-bottom-color: #017ACB;
  border-right-color: #017ACB;
}
.step___2V4kS .step3___12vOP i {
  background: #7FC1EC ;
}
.step___2V4kS .step4___1hKnn .circle___3ySr- {
  border-color: #B3C7DB;
}
.step___2V4kS i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 20px;
  background: #D9E1E9 ;
  border-radius: 50%;
}
.pot___3SXfG {
  -ms-flex: 1 1;
      flex: 1 1;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.modalWrap___3QYYx i {
  font-size: 80px;
  margin: 0 auto;
  color: #ff4d4f;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.modalWrap___3QYYx p {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
}
.btns___3UpSD {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 40px;
}
.btns___3UpSD button:nth-child(2) {
  margin-left: 50px;
}
.warningModal___1NYmA i {
  font-size: 20px;
}
.warningModal___1NYmA span {
  color: 20px;
}
.primary___336we {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.primary___336we > button {
  width: 100px;
}
.orangeColor___25bqA {
  color: #007acc;
}
.globalTableLink___1WMMh {
  color: #76b1cb;
}
.previewContent____H4px .ant-carousel {
  width: 100%;
}
.previewContent____H4px .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent____H4px .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent____H4px .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent____H4px .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent____H4px .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.userTable___2VNgL {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0 14px;
}
.userTable___2VNgL .grayItem____riKV {
  height: 10px;
  background-color: #f0f3fa;
}
.userTable___2VNgL .btnWrap___2-X9c {
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  padding: 8px 0;
  height: 40px;
}
.userTable___2VNgL .btnWrap___2-X9c .ant-btn {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-right: 12px;
}
.userTable___2VNgL .btnWrap___2-X9c .ant-btn:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.userTable___2VNgL {
  /**兼容Firefox、IE表头**/
}
.userTable___2VNgL .normalSearchForm {
  padding: 10px 0 15px;
}
.userTable___2VNgL .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.userTable___2VNgL .ant-table {
  height: 100%;
}
.userTable___2VNgL .ant-table-header {
  margin-bottom: 0 !important;
}
.userTable___2VNgL .ant-table-body {
  position: absolute !important;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 56px;
}
.userTable___2VNgL .ant-table-pagination {
  position: absolute;
  top: -33px;
  right: 0;
  margin: 0 !important;
}
.userTable___2VNgL .ant-table-wrapper {
  height: 100%;
}
.userTable___2VNgL .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.userTable___2VNgL .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.userTable___2VNgL table tr.tableCss td {
  background: #f9f9f9;
}
.userTable___2VNgL table tr.tableOrangeRed td {
  background: orange;
}
.userTable___2VNgL table tr.red td {
  background: #ec03035c;
}
.userTable___2VNgL .ant-table-thead > tr.ant-table-row-hover > td,
.userTable___2VNgL .ant-table-tbody > tr.ant-table-row-hover > td,
.userTable___2VNgL .ant-table-thead > tr:hover > td,
.userTable___2VNgL .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.userTable___2VNgL .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.userTable___2VNgL table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed !important;
  font-size: 14px !important;
  height: 40px !important;
}
.userTable___2VNgL table td {
  color: #333333 !important;
  border-right-color: #e1e7ed !important;
}
.userTable___2VNgL table tr .ant-table-selection-column {
  width: 30px !important;
}
.userTable___2VNgL .normalOperateBtn .editBtn {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin: 0 10px;
}
.userTable___2VNgL .normalOperateBtn .editBtn:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.userTable___2VNgL .normalOperateBtn .viewBtn {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
  margin: 0 10px;
}
.userTable___2VNgL .normalOperateBtn .viewBtn:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.userTable___2VNgL .normalOperateBtn___2maxU {
  display: -ms-flexbox;
  display: flex;
}
.userTable___2VNgL .normalOperateBtn___2maxU a {
  border: none;
  background: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  color: #40a9ff;
  -ms-flex: 1 1;
      flex: 1 1;
  display: inline-block;
  text-align: center;
  border-left: 1px solid #ccc ;
}
.userTable___2VNgL .normalOperateBtn___2maxU a:first-child {
  border-left: none;
}
.padding___1BpPP {
  margin-right: 10px;
}
.tableList___2YlP7 {
  height: 100%;
}
.tableList___2YlP7 .ant-row {
  height: 100%;
}
.tableList___2YlP7 .ant-table-body {
  top: 32px!important;
}
.tableList___2YlP7 {
  height: 100%;
}
.tableList___2YlP7 .ant-row {
  height: 100%;
}
.tableList___2YlP7 .ant-table-body {
  top: 32px!important;
}
.buttonBlock___1McKO {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___35TsB .ant-form-item {
  min-height: auto;
}
.boarInfoTable___2BB9s,
.boarInfoNewTable___3zhzM {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___2BB9s {
  top: 85px;
}
.boarInfoTable___2BB9s .addBtn {
  display: none;
}
.boarInfoNewTable___3zhzM {
  top: 452px;
  min-height: 300px;
}
.formWrapper___1rSyl {
  padding: 20px;
}
.formWrapper___1rSyl .buttonWrapper___2BjW9 {
  text-align: right;
  margin-top: 30px;
}
.buttonBlock___zgo4- {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___2vqR7 .ant-form-item {
  min-height: auto;
}
.boarInfoTable___1vGjF,
.boarInfoNewTable___2S4dj {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___1vGjF {
  top: 72px;
}
.boarInfoNewTable___2S4dj {
  top: 452px;
  min-height: 300px;
}
.boarInfoTable___3J-uH,
.boarInfoNewTable___2c7yI {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___3J-uH {
  top: 0;
}
.boarInfoNewTable___2c7yI {
  top: 452px;
  min-height: 300px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3p05O {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___3p05O .associatedBtn___YJugI {
  position: absolute;
  right: 44px;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___3p05O {
  /**兼容Firefox、IE表头**/
}
.standardTable___3p05O .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.standardTable___3p05O .ant-table {
  height: 100%;
  top: 28px;
  overflow-x: scroll;
}
.standardTable___3p05O .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___3p05O .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___3p05O .ant-table-pagination {
  position: absolute;
  top: 0;
  right: 44px;
  margin: 0 !important;
}
.standardTable___3p05O .ant-table-wrapper {
  height: 100%;
}
.standardTable___3p05O .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___3p05O .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___3p05O table tr.tableCss td {
  background: #eff3f7;
}
.standardTable___3p05O table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___3p05O table tr.red td {
  background: #ec03035c;
}
.standardTable___3p05O .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___3p05O .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___3p05O .ant-table-thead > tr:hover > td,
.standardTable___3p05O .ant-table-tbody > tr:hover > td {
  background: #c9e0ea;
}
.standardTable___3p05O .ant-table-tbody > tr > td {
  text-align: center;
}
.standardTable___3p05O .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___3p05O table th {
  background: #dce1ed !important;
  text-align: center !important;
  color: #666666 !important;
  border-right: #dce1ed !important;
}
.standardTable___3p05O table tr .ant-table-selection-column {
  width: 30px;
}
.standardTable___3p05O .addBtn,
.standardTable___3p05O .checkBtn,
.standardTable___3p05O .uncheckBtn,
.standardTable___3p05O .publishBtn,
.standardTable___3p05O .unpublishBtn {
  position: absolute;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___3p05O .addBtn {
  left: 44px;
}
.standardTable___3p05O .checkBtn {
  left: 124px;
}
.standardTable___3p05O .uncheckBtn {
  left: 184px;
}
.standardTable___3p05O .publishBtn {
  left: 268px;
}
.standardTable___3p05O .unpublishBtn {
  left: 328px;
}
.standardTable___3p05O .tableAlert___13-TP {
  margin-bottom: 16px;
}
.standardTable___3p05O .grayItem___37Bdr {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 6px;
}
.boarInfoTable___3OP5N,
.boarInfoNewTable___1vo0J,
.piggeryInfoTable___J8l1W {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___3OP5N {
  top: 80px;
}
.boarInfoNewTable___1vo0J {
  top: 452px;
  min-height: 300px;
}
.piggeryInfoTable___J8l1W {
  top: 0;
}
.boarInfoTable___1s_Dd,
.boarInfoNewTable___3hdaQ {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___1s_Dd {
  top: 85px;
}
.boarInfoNewTable___3hdaQ {
  top: 452px;
  min-height: 300px;
}
.formWrapper___AiAyL {
  margin-top: 10px;
}
.formWrapper___AiAyL .buttonWrapper___1usMu {
  text-align: center;
}
.ant-input-group-addon {
  background: #1890ff;
}
.btn_select___2tGS4 {
  fontSize: 20;
  cursor: pointer;
}
.formWrapper___AiAyL {
  margin-top: 10px;
}
.formWrapper___AiAyL .buttonWrapper___1usMu {
  text-align: center;
}
.fileUpload___31W-F .ant-upload-list {
  display: -ms-flexbox;
  display: flex;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3v_ak {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___3v_ak .associatedBtn___1t0D7 {
  position: absolute;
  right: 44px;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___3v_ak {
  /**兼容Firefox、IE表头**/
}
.standardTable___3v_ak .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.standardTable___3v_ak .ant-table {
  height: 100%;
  top: 28px;
}
.standardTable___3v_ak .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___3v_ak .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___3v_ak .ant-table-pagination {
  position: absolute;
  top: 0;
  right: 44px;
  margin: 0 !important;
}
.standardTable___3v_ak .ant-table-wrapper {
  height: 100%;
}
.standardTable___3v_ak .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___3v_ak .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___3v_ak table tr.tableCss td {
  background: #eff3f7;
}
.standardTable___3v_ak table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___3v_ak table tr.red td {
  background: #ec03035c;
}
.standardTable___3v_ak .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___3v_ak .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___3v_ak .ant-table-thead > tr:hover > td,
.standardTable___3v_ak .ant-table-tbody > tr:hover > td {
  background: #c9e0ea;
}
.standardTable___3v_ak .ant-table-tbody > tr > td {
  text-align: center;
}
.standardTable___3v_ak .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___3v_ak table th {
  background: #dce1ed !important;
  text-align: center !important;
  color: #666666 !important;
  border-right: #dce1ed !important;
}
.standardTable___3v_ak table tr .ant-table-selection-column {
  width: 30px;
}
.standardTable___3v_ak .addBtn,
.standardTable___3v_ak .checkBtn,
.standardTable___3v_ak .uncheckBtn,
.standardTable___3v_ak .publishBtn,
.standardTable___3v_ak .unpublishBtn {
  position: absolute;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___3v_ak .addBtn {
  left: 44px;
}
.standardTable___3v_ak .checkBtn {
  left: 124px;
}
.standardTable___3v_ak .uncheckBtn {
  left: 184px;
}
.standardTable___3v_ak .publishBtn {
  left: 268px;
}
.standardTable___3v_ak .unpublishBtn {
  left: 328px;
}
.standardTable___3v_ak .tableAlert___2r801 {
  margin-bottom: 16px;
}
.standardTable___3v_ak .grayItem___2f8Hs {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 6px;
}
.modal___1r6QC {
  /*   .searchButton{
         right: 70%;
       }*/
}
.modal___1r6QC .ant-modal-body {
  padding: 10px 20px 30px;
}
.modal___3QDVF {
  /*   .searchButton{
      right: 70%;
    }*/
}
.modal___3QDVF .ant-modal-body {
  padding: 10px 20px 30px;
}
.boarInfoTable____evvw,
.boarInfoNewTable___3Oljh {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable____evvw {
  top: 85px;
}
.boarInfoNewTable___3Oljh {
  top: 452px;
  min-height: 300px;
}
.formWrapper___28NDK {
  margin-top: 10px;
}
.formWrapper___28NDK .buttonWrapper___FtNQF {
  text-align: center;
}
.modal___NeyQs {
  /*   .searchButton{
         right: 70%;
       }*/
}
.modal___NeyQs .ant-modal-body {
  padding: 10px 20px 30px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.menuForm___YNmZe .formItemHack___2KMyZ {
  /**兼容IE下ant-form-item-control控件行高**/
}
.menuForm___YNmZe .buttonBlock___I0ae5 {
  position: absolute;
  right: 0;
  top: 46px;
  z-index: 10;
}
.boarInfoTable___21pAV,
.boarInfoNewTable___2c60W {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}
.boarInfoTable___21pAV {
  top: 85px;
}
.boarInfoTable___21pAV .addBtn {
  display: none;
}
.boarInfoNewTable___2c60W {
  top: 452px;
  min-height: 300px;
}
.formWrapper___fG8ig {
  padding: 20px;
}
.formWrapper___fG8ig .buttonWrapper___3Oq0Y {
  text-align: right;
  margin-top: 30px;
}
.formWrapper___fG8ig .normalContent {
  overflow: scroll;
}
.boarInfoTable___18nil {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
}
.orangeColor___1z2U4 {
  color: #007acc;
}
.globalTableLink___gE0Mt {
  color: #76b1cb;
}
.previewContent___JFYfU .ant-carousel {
  width: 100%;
}
.previewContent___JFYfU .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___JFYfU .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___JFYfU .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___JFYfU .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___JFYfU .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.standardTable___PUUQa {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___PUUQa .associatedBtn___STRKT {
  position: absolute;
  right: 44px;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___PUUQa {
  /**兼容Firefox、IE表头**/
}
.standardTable___PUUQa .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.standardTable___PUUQa .ant-table {
  height: 100%;
  top: 28px;
  overflow-x: scroll;
}
.standardTable___PUUQa .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___PUUQa .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___PUUQa .ant-table-pagination {
  position: absolute;
  top: 0;
  right: 44px;
  margin: 0 !important;
}
.standardTable___PUUQa .ant-table-wrapper {
  height: 100%;
}
.standardTable___PUUQa .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___PUUQa .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___PUUQa table tr.tableCss td {
  background: #eff3f7;
}
.standardTable___PUUQa table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___PUUQa table tr.red td {
  background: #ec03035c;
}
.standardTable___PUUQa .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___PUUQa .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___PUUQa .ant-table-thead > tr:hover > td,
.standardTable___PUUQa .ant-table-tbody > tr:hover > td {
  background: #c9e0ea;
}
.standardTable___PUUQa .ant-table-tbody > tr > td {
  text-align: center;
}
.standardTable___PUUQa .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___PUUQa table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed !important;
}
.standardTable___PUUQa table tr .ant-table-selection-column {
  width: 30px;
}
.standardTable___PUUQa .addBtn,
.standardTable___PUUQa .checkBtn,
.standardTable___PUUQa .uncheckBtn,
.standardTable___PUUQa .publishBtn,
.standardTable___PUUQa .unpublishBtn {
  position: absolute;
  border-radius: 3px;
  background-color: #1890ff !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___PUUQa .addBtn {
  left: 44px;
  display: inline-block !important;
}
.standardTable___PUUQa .checkBtn {
  left: 124px;
}
.standardTable___PUUQa .uncheckBtn {
  left: 184px;
}
.standardTable___PUUQa .publishBtn {
  left: 268px;
}
.standardTable___PUUQa .unpublishBtn {
  left: 328px;
}
.standardTable___PUUQa .tableAlert___18vxG {
  margin-bottom: 16px;
}
.standardTable___PUUQa .grayItem___1dAO4 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 6px;
}
.standardTable___PUUQa .normalOperateBtn___Qkvgs {
  display: -ms-flexbox;
  display: flex;
}
.standardTable___PUUQa .normalOperateBtn___Qkvgs a {
  border: none;
  background: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  color: #40a9ff;
  -ms-flex: 1 1;
      flex: 1 1;
  display: inline-block;
  text-align: center;
  border-left: 1px solid #ccc ;
}
.standardTable___PUUQa .normalOperateBtn___Qkvgs a:first-child {
  border-left: none;
}
.form___1QYZ0 {
  padding: 40px 20px;
}
.form___1QYZ0 .col___2_JZA {
  margin-bottom: 20px;
}
.form___1QYZ0 .col___2_JZA .formItem___3cxse {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.form___1QYZ0 .col___2_JZA .formItem___3cxse .ant-form-item-children {
  display: -ms-flexbox;
  display: flex;
}
.form___1QYZ0 .col___2_JZA .formItem___3cxse .ant-form-item-children .ant-btn {
  margin-left: 20px;
}
.form___1QYZ0 .col___2_JZA .formItem___3cxse .ant-form-explain {
  margin-top: 5px;
}
.form___1QYZ0 .col___2_JZA .formItemButton___PJEj2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  border-top: 1px solid #eee;
}
.form___1QYZ0 .col___2_JZA .formItemButton___PJEj2 .button___1ObRm {
  margin-left: 60px;
  width: 120px;
}
.searchForm___2-NG3 .ant-form-item {
  min-height: auto;
}
.form___3l8Sh {
  padding: 20px 44px 0;
}
.form___3l8Sh .searchButton {
  position: absolute;
  right: 40px;
  top: 12px;
  text-align: right;
}
.form___3l8Sh .searchButton .ant-btn-primary {
  margin-right: 10px;
}
.form___3l8Sh .ant-table-thead > tr:first-of-type th {
  background: #44a8eb !important;
  color: white !important;
}
.form___3l8Sh .ant-table-tbody > tr:nth-of-type(2n) td {
  background: #eff3f7 !important;
}
.form___3l8Sh .letter-overflow {
  margin: 0 auto;
}
.form___3l8Sh .ant-form-item-label label {
  color: #8896a1;
  font-family: 'Microsoft YaHei';
  font-weight: bold;
}
.form___3l8Sh .ant-form-item-label label::after {
  content: '';
}
.form___3l8Sh .ant-table-thead th {
  text-align: center;
}
.form___3l8Sh .ant-table-tbody td {
  text-align: center;
}
.form___3l8Sh .buttonWrapper {
  text-align: right;
  margin-top: 40px;
}
.form___3l8Sh .buttonWrapper .backBtn {
  margin-right: 10px;
}
.form___3l8Sh .buttonWrapper .ant-btn-primary {
  background-color: #017acb !important;
  border-color: #017acb !important;
}
.form___3l8Sh .buttonWrapper .ant-btn {
  width: 160px;
}
.tableList___2-njy {
  height: 100%;
}
.tableList___2-njy .ant-row {
  height: 100%;
}
.buttonBlock___bT-9r {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___3Z1zh .ant-form-item {
  min-height: auto;
}
.piggeryOpInfoTable___eW1ol,
.piggeryOpDetailTable___20-Vy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.piggeryOpInfoTable___eW1ol {
  top: 74px;
}
.piggeryOpDetailTable___20-Vy {
  top: 0;
}
.columnCount___31lUp {
  text-align: right;
}
.box___3EpL1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
table th {
  background-color: white;
}
.ant-table-bordered .ant-table-thead > tr > th,
.ant-table-tbody > tr td:last-of-type,
.ant-table-thead > tr th:last-of-type {
  border-right: 1px solid #e8e8e8;
}
.mychart___3r5Tv canvas {
  margin: 0 auto;
}
.selectBox___38YvS {
  border: 1px solid #e8e8e8;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.selectBox___38YvS:last-child {
  margin-bottom: 0;
}
.selectBox___38YvS p {
  color: #333;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 30px;
}
.expandSelect___YVo4w,
.collapseSelect___3AgPG {
  float: right;
  line-height: 30px;
  cursor: pointer;
}
.expandSelect___YVo4w:hover,
.collapseSelect___3AgPG:hover {
  color: #1890ff;
}
.expandSelect___YVo4w::after,
.collapseSelect___3AgPG::after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid;
  border-right: 1px solid;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  padding-bottom: 3px;
}
.expandSelect___YVo4w::after {
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  margin-bottom: 2px;
}
.collapseSelect___3AgPG::after {
  -webkit-transform: rotateZ(225deg);
          transform: rotateZ(225deg);
  margin-bottom: -2px;
}
.expandCol___2nHxr {
  display: none;
}
.gutterRowExpand___1zoqz .expandCol___2nHxr {
  display: block;
}
.gutter___2IqkA {
  -ms-flex: 1 1;
      flex: 1 1;
}
.gutterRow___1kjQp {
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.gutterCol___3oYIa div {
  text-align: center;
}
.gutterCol___3oYIa div:hover {
  color: #1890ff;
}
.selected___2EtB7 {
  color: #1890ff;
}
.homeIcon___2Rfnz {
  font-size: 32px;
  color: #09c;
  float: right;
  padding-top: 10px;
  margin-right: 10px;
}
.homeIcon___2Rfnz:hover {
  cursor: pointer;
}
.price___3KrHw {
  font-size: 30px;
  color: #f5222d;
  padding-right: 10px;
}
.info___Rk3T1 p {
  line-height: 20px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.45);
}
.info___Rk3T1 .overflowTwo___3dCjP {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.img___2cHjH {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.listType___2i4yv {
  font-style: normal;
  float: right;
  line-height: inherit;
  margin-left: 5px;
}
.listType___2i4yv:hover {
  color: #1890ff;
}
.selectBox___1T9fA {
  border: 1px solid #e8e8e8;
  padding: 4px 10px;
  line-height: 30px;
  margin: 10px 0 10px 10px;
}
.selectBoxRight___2i9h2 {
  float: right;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
}
.curr___3o0jb {
  line-height: 30px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px;
  border: 1px solid #ececec;
  border-radius: 4px;
}
.curr___3o0jb:hover {
  border: 1px solid #1890ff;
}
.curr___3o0jb:hover span {
  color: #1890ff;
}
.curr___3o0jb em {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.curr___3o0jb em .arrowTop___3qArI {
  margin-bottom: 4px;
}
.itemList___mBpYu {
  display: block;
  border: 1px solid #e8e8e8;
  border-bottom: none;
  cursor: pointer;
}
.itemList___mBpYu p {
  width: 100%;
}
.itemList___mBpYu:first-child p:hover {
  color: #1890ff;
}
.itemList___mBpYu:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.itemList___mBpYu:link {
  text-decoration: none;
  /* 指正常的未被访问过的链接*/
}
.itemList___mBpYu:visited {
  text-decoration: none;
  /*指已经访问过的链接*/
}
.itemList___mBpYu:hover {
  text-decoration: none;
  /*指鼠标在链接*/
}
.itemList___mBpYu:active {
  text-decoration: none;
  /* 指正在点的链接*/
}
.itemList___mBpYu .ant-list-item-meta {
  -ms-flex: unset !important;
      flex: unset !important;
  width: 80% !important;
}
.itemList___mBpYu .ant-list-item-meta-content {
  width: 90%;
}
.toUp___3WF4j {
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
  cursor: pointer;
}
.toUp___3WF4j .arrowUp___izZN6 {
  border-bottom-color: #1890ff;
}
.toDown___3ANV- {
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
  cursor: pointer;
}
.toDown___3ANV- .arrowDown___q39TJ {
  border-top-color: #1890ff;
}
.toUp___3WF4j,
.toDown___3ANV- {
  display: inline-block;
  margin-left: 5px;
  vertical-align: top;
  cursor: pointer;
}
.arrowUp___izZN6 {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #666;
  margin-bottom: 3px;
}
.arrowDown___q39TJ {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
}
.fsTit___1L7tj {
  display: inline-block;
  vertical-align: top;
}
.infoRight___3MW8h {
  position: absolute;
  color: #f5222d;
  font-size: 20px;
  line-height: 30px;
}
.title___3KemP {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.title___3KemP p {
  color: #f5222d;
  line-height: 25px;
  font-size: 20px;
  margin: 0;
}
.title___3KemP h4 {
  width: 80%;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ant-list-item-content {
  width: 100%;
}
.ant-card {
  padding: 6px;
}
.ant-list-item {
  padding: 10px;
}
.ant-card-cover {
  text-align: center;
  height: 100px;
}
.rowCard___8jqmo .ant-spin-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
}
.rowCard___8jqmo .ant-spin-container .ant-list-item {
  width: 20%;
  padding: 5px;
  border: none;
}
.rowCard___8jqmo .ant-spin-container .ant-list-item-content {
  padding: 10px;
  border: 1px solid #e8e8e8;
  margin-bottom: 0;
}
.rowCard___8jqmo .ant-spin-container .ant-list-item-content:hover {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.09);
}
.rowCard___8jqmo a:link {
  text-decoration: none;
  /* 指正常的未被访问过的链接*/
}
.rowCard___8jqmo a:visited {
  text-decoration: none;
  /*指已经访问过的链接*/
}
.rowCard___8jqmo a:hover {
  text-decoration: none;
  /*指鼠标在链接*/
}
.rowCard___8jqmo a:active {
  text-decoration: none;
  /* 指正在点的链接*/
}
.DesignInfoTable___ZEgWf {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.boxWrap___2Ex4Q > div {
  overflow: hidden;
  overflow-y: scroll;
  padding-left: 10px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___37DcC {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___37DcC .associatedBtn___AiNnQ {
  position: absolute;
  right: 44px;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___37DcC {
  /**兼容Firefox、IE表头**/
}
.standardTable___37DcC .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.standardTable___37DcC .ant-table {
  height: 100%;
  top: 28px;
  overflow-x: scroll;
}
.standardTable___37DcC .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___37DcC .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___37DcC .ant-table-pagination {
  position: absolute;
  top: 0;
  right: 44px;
  margin: 0 !important;
}
.standardTable___37DcC .ant-table-wrapper {
  height: 100%;
}
.standardTable___37DcC .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___37DcC .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___37DcC table tr.tableCss td {
  background: #eff3f7;
}
.standardTable___37DcC table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___37DcC table tr.red td {
  background: #ec03035c;
}
.standardTable___37DcC .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___37DcC .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___37DcC .ant-table-thead > tr:hover > td,
.standardTable___37DcC .ant-table-tbody > tr:hover > td {
  background: #c9e0ea;
}
.standardTable___37DcC .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___37DcC table th {
  background: #dce1ed !important;
  text-align: center !important;
  color: #666666 !important;
  border-right: #dce1ed !important;
}
.standardTable___37DcC table tr .ant-table-selection-column {
  width: 30px;
}
.standardTable___37DcC .addBtn,
.standardTable___37DcC .checkBtn,
.standardTable___37DcC .uncheckBtn,
.standardTable___37DcC .publishBtn,
.standardTable___37DcC .unpublishBtn {
  position: absolute;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___37DcC .addBtn {
  left: 44px;
}
.standardTable___37DcC .checkBtn {
  left: 124px;
}
.standardTable___37DcC .uncheckBtn {
  left: 184px;
}
.standardTable___37DcC .publishBtn {
  left: 268px;
}
.standardTable___37DcC .unpublishBtn {
  left: 328px;
}
.standardTable___37DcC .tableAlert___3RrPN {
  margin-bottom: 16px;
}
.standardTable___37DcC .grayItem___2_3jf {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 6px;
}
.baseProjectTable___1LTkD {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.formWrapper___1w-1X {
  margin-top: 10px;
}
.formWrapper___1w-1X .buttonWrapper___1l77h {
  text-align: right;
  margin-top: 30px;
}
.diseaseArticleTable___20S8n {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-option-wrapper:hover {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD;
          box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-option-wrapper:active {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD inset;
          box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-active {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD inset;
          box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}
.rdw-dropdown-wrapper:focus {
  outline: none;
}
.rdw-dropdown-wrapper:hover {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD;
          box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdown-wrapper:active {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD inset;
          box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-selectedtext {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
}
.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}
.rdw-dropdown-optionwrapper:hover {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD;
          box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}

.rdw-dropdownoption-default {
  min-height: 25px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 5px;
}
.rdw-dropdownoption-highlighted {
  background: #F1F1F1;
}
.rdw-dropdownoption-active {
  background: #f5f5f5;
}
.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-inline-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-inline-dropdown {
  width: 50px;
}
.rdw-inline-dropdownoption {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.rdw-block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-block-dropdown {
  width: 110px;
}

.rdw-fontsize-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-fontsize-dropdown {
  min-width: 40px;
}
.rdw-fontsize-option {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.rdw-fontfamily-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-fontfamily-dropdown {
  width: 115px;
}
.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdw-fontfamily-optionwrapper {
  width: 140px;
}

.rdw-list-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-list-dropdownOption {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.rdw-text-align-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-text-align-dropdownOption {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.rdw-right-aligned-block {
  text-align: right;
}
.rdw-left-aligned-block {
  text-align: left !important;
}
.rdw-center-aligned-block {
  text-align: center !important;
}
.rdw-justify-aligned-block {
  text-align: justify !important;
}
.rdw-right-aligned-block > div {
  display: inline-block;
}
.rdw-left-aligned-block > div {
  display: inline-block;
}
.rdw-center-aligned-block > div {
  display: inline-block;
}
.rdw-justify-aligned-block > div {
  display: inline-block;
}

.rdw-colorpicker-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  -webkit-box-shadow: 3px 3px 5px #BFBDBD;
          box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-colorpicker-modal-header {
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
}
.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}
.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}
.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: scroll;
}
.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1;
}
.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  -webkit-box-shadow: 1px 2px 1px #BFBDBD inset;
          box-shadow: 1px 2px 1px #BFBDBD inset;
}
.rdw-colorpicker-option:hover {
  -webkit-box-shadow: 1px 2px 1px #BFBDBD;
          box-shadow: 1px 2px 1px #BFBDBD;
}
.rdw-colorpicker-option:active {
  -webkit-box-shadow: -1px -2px 1px #BFBDBD;
          box-shadow: -1px -2px 1px #BFBDBD;
}
.rdw-colorpicker-option-active {
  -webkit-box-shadow: 0px 0px 2px 2px #BFBDBD;
          box-shadow: 0px 0px 2px 2px #BFBDBD;
}

.rdw-link-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-link-dropdown {
  width: 50px;
}
.rdw-link-dropdownOption {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}
.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  -webkit-box-shadow: 3px 3px 5px #BFBDBD;
          box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-link-modal-label {
  font-size: 15px;
}
.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}
.rdw-link-modal-input:focus {
  outline: none;
}
.rdw-link-modal-buttonsection {
  margin: 0 auto;
}
.rdw-link-modal-target-option {
  margin-bottom: 20px;
}
.rdw-link-modal-target-option > span {
  margin-left: 5px;
}
.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-link-modal-btn:hover {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD;
          box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-link-modal-btn:active {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD inset;
          box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-link-modal-btn:focus {
  outline: none !important;
}
.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-link-dropdownoption {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-embedded-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-shadow: 3px 3px 5px #BFBDBD;
          box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-embedded-modal-header {
  font-size: 15px;
  display: -ms-flexbox;
  display: flex;
}
.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-embedded-modal-link-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-embedded-modal-link-input-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.rdw-embedded-modal-link-input:focus {
  outline: none;
}
.rdw-embedded-modal-btn-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-embedded-modal-btn:hover {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD;
          box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-embedded-modal-btn:active {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD inset;
          box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-embedded-modal-btn:focus {
  outline: none !important;
}
.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-embedded-modal-size {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin: 8px 0;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-embedded-modal-size-input:focus {
  outline: none;
}

.rdw-emoji-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  -webkit-box-shadow: 3px 3px 5px #BFBDBD;
          box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.rdw-spinner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  width: 100%;
}
.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.rdw-spinner .rdw-bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.rdw-spinner .rdw-bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.rdw-image-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 235px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  -webkit-box-shadow: 3px 3px 5px #BFBDBD;
          box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
}
.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}
.rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  border: none;
  font-size: 15px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}
.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}
.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px;
}
.rdw-image-modal-upload-option-label span{
  padding: 0 20px;
}
.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}
.rdw-image-modal-upload-option-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.rdw-image-modal-url-section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}
.rdw-image-modal-url-input:focus {
  outline: none;
}
.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-image-modal-btn:hover {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD;
          box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-image-modal-btn:active {
  -webkit-box-shadow: 1px 1px 0px #BFBDBD inset;
          box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-image-modal-btn:focus {
  outline: none !important;
}
.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}
.rdw-image-modal-alt-input:focus {
  outline: none;
}
.rdw-image-modal-alt-lbl {
  font-size: 12px;
}
.rdw-image-modal-size {
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  margin: 8px 0;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.rdw-image-modal-size-input {
  width: 40%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-image-modal-size-input:focus {
  outline: none;
}
.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}

.rdw-remove-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}

.rdw-history-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap
}
.rdw-history-dropdownoption {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-link-decorator-wrapper {
  position: relative;
}
.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}

.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-suggestion-wrapper {
  position: relative;
}
.rdw-suggestion-dropdown {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}
.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}
.rdw-suggestion-option-active {
  background-color: #F1F1F1;
}

.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}
.rdw-alignment-option-left {
  -ms-flex-pack: start;
      justify-content: flex-start;
}
.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}
.rdw-image-alignment {
  position: relative;
}
.rdw-image-imagewrapper {
  position: relative;
}
.rdw-image-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.rdw-image-left {
  display: -ms-flexbox;
  display: flex;
}
.rdw-image-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.rdw-image-alignment-options-popup-right {
  right: 0;
}

.rdw-editor-main {
  height: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  background: white;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.public-DraftStyleDefault-block {
  margin: 1em 0;
}
.rdw-editor-wrapper:focus {
  outline: none;
}
.rdw-editor-wrapper {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}
.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
}
/**
 * Draft v0.9.1
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}.formWrapper___3KecO {
  margin-top: 10px;
}
.formWrapper___3KecO .buttonWrapper___1_m-p {
  text-align: right;
  margin-top: 30px;
}
.formWrapper___3KecO .articleContent___1ppDK {
  height: 220px !important;
}
.formWrapper___3KecO .ant-form-item {
  margin-top: 12px;
}
.formWrapper___3KecO .ant-table-body {
  top: 64px !important;
}
.formWrapper___3KecO .ant-upload.ant-upload-select {
  float: left;
}
.formWrapper___3KecO .ant-upload-list {
  float: left;
}
.formWrapper___3KecO .ant-upload-list-item {
  margin: 0;
  float: left;
  width: 180px;
  height: 32px;
  line-height: 32px;
}
.formWrapper___3KecO .ant-upload-list-item-error .anticon-cross {
  margin-top: 6px;
}
.formWrapper___3KecO i.anticon.anticon-paper-clip {
  margin-top: 5px;
}
.searchForm___25dlw .ant-form-item {
  min-height: auto;
}
.userInfoTable___1rL4I .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -13px;
}
.diseaseListTable___3fh2Q {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.diseaseListTable___3fh2Q .publishBtn {
  left: 124px;
}
.diseaseListTable___3fh2Q .unpublishBtn {
  left: 186px;
}
.formWrapper___3kTLJ {
  margin-top: 10px;
}
.formWrapper___3kTLJ .buttonWrapper___NNq8n {
  text-align: right;
  margin-top: 30px;
}
.formWrapper___3kTLJ .articleContent___29sWT {
  height: 220px !important;
}
.formWrapper___3kTLJ .editorWrap___2SRXy .ant-form-item-control {
  line-height: 24px;
}
.formWrapper___3kTLJ .avatar-uploader .ant-upload img {
  width: 100%;
  max-height: 100%;
}
.formWrapper___3kTLJ .ant-upload-list {
  width: 30%;
}
.padding___4lZdp {
  margin-right: 10px;
}
.tableList___2MByL {
  height: 100%;
}
.tableList___2MByL .ant-row {
  height: 100%;
}
.tableList___2MByL .ant-table-body {
  top: 32px!important;
}
.tableList___2MByL {
  height: 100%;
}
.tableList___2MByL .ant-row {
  height: 100%;
}
.tableList___2MByL .ant-table-body {
  top: 32px!important;
}
.buttonBlock___2iIQr {
  position: absolute;
  right: 0;
  top: 32px;
}
.searchForm___1HqBk .ant-form-item {
  min-height: auto;
}
.searchForm___1HqBk .ant-form-explain {
  margin-top: 5px;
}
.boarInfoTable___13NXE,
.boarInfoNewTable___3ytHI {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___13NXE {
  top: 85px;
}
.boarInfoNewTable___3ytHI {
  top: 452px;
  min-height: 300px;
}
.formWrapper___3TZot {
  margin-top: 10px;
}
.formWrapper___3TZot .buttonWrapper___31JUe {
  text-align: right;
  margin-top: 30px;
}
.ExternalUserTable___2ulNg {
  position: absolute;
  top: 90px;
  right: 0;
  bottom: 0;
  left: 0;
}
.formWrapper___30vQh {
  margin-top: 10px;
}
.formWrapper___30vQh .buttonWrapper___1KozF {
  text-align: right;
  margin-top: 30px;
}
.padding___3Pp1d {
  margin-right: 10px;
}
.tableList___3t_vq {
  height: 100%;
}
.tableList___3t_vq .ant-row {
  height: 100%;
}
.tableList___3t_vq .ant-table-body {
  top: 32px!important;
}
.tableList___3t_vq {
  height: 100%;
}
.tableList___3t_vq .ant-row {
  height: 100%;
}
.tableList___3t_vq .ant-table-body {
  top: 32px!important;
}
.searchForm___21rru .ant-form-explain {
  margin-top: 5px;
}
.boarInfoTable___Vm1Rm,
.boarInfoNewTable___1F5CI {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
.boarInfoTable___Vm1Rm {
  top: 85px;
}
.boarInfoNewTable___1F5CI {
  top: 452px;
  min-height: 300px;
}
.main___2iBLM {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 13px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  border-bottom: 10px solid #f0f3fa;
}
.main___2iBLM .formItem___1_4Mq {
  padding: 0 7px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-height: 46px;
}
.main___2iBLM .formItem___1_4Mq .ant-form-item-control-wrapper {
  width: 100%;
}
.main___2iBLM .formItem___1_4Mq .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___2iBLM .formItem___1_4Mq .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___2iBLM .searchButton___Y_oPJ {
  -ms-flex: 0 0 148px;
      flex: 0 0 148px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 7px;
  margin-left: auto;
}
.main___2iBLM .searchButton___Y_oPJ .button___a-1gD {
  width: 60px;
  padding: 0;
}
.dateRange___1Anwn {
  height: 39px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.dateRange___1Anwn .datePicker___1Va0N {
  -ms-flex: 1 1;
      flex: 1 1;
}
.dateRange___1Anwn .devideLine___2NaBT {
  font-size: 25px;
  vertical-align: middle;
  color: #999;
  font-weight: 200;
  margin: 0 5px;
}
.orangeColor___1EHpk {
  color: #007acc;
}
.globalTableLink___355ed {
  color: #76b1cb;
}
.previewContent___3h8O9 .ant-carousel {
  width: 100%;
}
.previewContent___3h8O9 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3h8O9 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3h8O9 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3h8O9 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3h8O9 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.standardTable___1W7DS {
  padding: 15px 20px;
}
.standardTable___1W7DS .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
  max-height: calc(100vh - 450px) !important;
}
.standardTable___1W7DS table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed !important;
  font-size: 14px !important;
  height: 40px !important;
}
.standardTable___1W7DS table td {
  text-align: left;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.standardTable___1W7DS table td span {
  display: inline-block;
}
.standardTable___1W7DS table td span .anticon {
  color: #8ccad9;
}
.standardTable___1W7DS table td span .anticon svg {
  border-radius: 6px;
}
.standardTable___1W7DS table td .ant-form-item {
  min-height: 0;
}
.standardTable___1W7DS table td .ant-form-item .ant-form-item-children {
  width: 100%;
}
.standardTable___1W7DS table td .ant-form-item .ant-form-item-children .ant-input {
  text-align: center;
}
.standardTable___1W7DS .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.standardTable___1W7DS .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.standardTable___1W7DS .textCenter {
  text-align: center !important;
}
.standardTable___1W7DS .textRight {
  text-align: right !important;
}
.standardTable___1W7DS .textLeft {
  text-align: left !important;
}
.standardTable___1W7DS .ant-table-column-sorter .anticon-caret-up,
.standardTable___1W7DS .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.standardTable___1W7DS i.anticon.anticon-close-square {
  color: #F795A4;
}
.standardTable___1W7DS i.anticon-caret-up,
.standardTable___1W7DS i.anticon-caret-down {
  font-size: 12px !important;
}
.standardTable___1W7DS .operationWrap___1JrKx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.standardTable___1W7DS .operationWrap___1JrKx a {
  width: 50px;
  text-align: center;
}
.standardTable___1W7DS .operationWrap___1JrKx a:first-child {
  width: 70px;
}
.standardTable___1W7DS .operationWrap___1JrKx .localText___-MbmY {
  color: #40c8a5;
  cursor: not-allowed;
}
.standardTable___1W7DS .lineWrap___-hbf5 {
  padding: 0 2px 10px;
  color: #666;
}
.standardTable___1W7DS .lineWrap___-hbf5 span {
  color: #333;
  padding-right: 20px;
}
.standardTable___1W7DS .btnsLeft___2oe9c {
  height: 32px;
  margin-bottom: 10px;
}
.standardTable___1W7DS .btnsLeft___2oe9c button {
  margin-right: 10px;
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.standardTable___1W7DS .btnsLeft___2oe9c button:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.standardTable___1W7DS .disabledText___ghJjx {
  color: #666;
  cursor: not-allowed;
}
.standardTable___1W7DS .titleWrap___XX6nL {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.standardTable___1W7DS .titleWrap___XX6nL .iconWrap___TFEW1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.standardTable___1W7DS .titleWrap___XX6nL .iconWrap___TFEW1 .sorterActive___3llYO {
  color: #1890ff;
}
.standardTable___1W7DS .titleWrap___XX6nL .iconWrap___TFEW1 i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.standardTable___1W7DS .titleWrap___XX6nL .iconWrap___TFEW1 i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.standardTable___1W7DS .operationBtn___1gDvr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.modalWrap___2_rgJ .ant-modal {
  height: 90%;
}
.modalWrap___2_rgJ .ant-modal .ant-modal-content {
  height: 100%;
}
.modalWrap___2_rgJ .ant-modal .ant-modal-content .ant-modal-close-icon {
  background-color: #fff;
  color: #000;
}
.page___1KqJQ {
  width: 100%;
  height: 800px;
}
.page___1KqJQ .amap-marker-label {
  padding: 2px 5px;
  border-radius: 5px;
}
.page___2G1nK .checkbox___21XeI {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
}
.modalWrap___3VfX- .ant-modal {
  height: 90%;
}
.modalWrap___3VfX- .ant-modal .ant-modal-content {
  height: 100%;
}
.modalWrap___3VfX- .ant-modal .ant-modal-content .ant-modal-close-icon {
  background-color: #fff;
  color: #000;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-breadcrumb {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-breadcrumb .anticon {
  font-size: 14px;
}
.ant-breadcrumb a {
  color: rgba(0, 0, 0, 0.45);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-breadcrumb a:hover {
  color: #40a9ff;
}
.ant-breadcrumb > span:last-child {
  color: rgba(0, 0, 0, 0.65);
}
.ant-breadcrumb > span:last-child a {
  color: rgba(0, 0, 0, 0.65);
}
.ant-breadcrumb > span:last-child .ant-breadcrumb-separator {
  display: none;
}
.ant-breadcrumb-separator {
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.45);
}
.ant-breadcrumb-link > .anticon + span {
  margin-left: 4px;
}
.ant-breadcrumb-overlay-link > .anticon {
  margin-left: 4px;
}
.page___1fVTq .breadcrumb___1NbYb {
  padding: 15px 20px 0;
}
.page___1fVTq .breadcrumb___1NbYb .link___rOcPQ {
  cursor: pointer;
}
.page___1fVTq .breadcrumb___1NbYb .link___rOcPQ:hover {
  color: #1890ff;
}
.page___1fVTq .info___28pol {
  font-size: 14px;
  padding: 20px;
  border-bottom: 6px solid #f0f3fa;
}
.page___1fVTq .info___28pol span {
  margin-right: 40px;
}
.page___1fVTq .chart___3buAc {
  padding: 20px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f3fa;
}
.page___1AR-V {
  padding: 0 20px;
}
.page___1AR-V .selectBaseInfo___IY84z {
  margin: 15px 0 30px;
}
.page___1AR-V .selectBaseInfo___IY84z .selectItem___3X61L {
  min-width: 150px;
  width: 200px;
  margin-right: 20px;
}
.page___1AR-V .content___1M2Hn {
  margin-bottom: 22px;
}
.page___1AR-V .content___1M2Hn .title___2Q9_f {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 12px;
  color: #333;
  line-height: 32px;
}
.page___1AR-V .content___1M2Hn .title___2Q9_f .mapButton___aN7Mj {
  background-color: #12d8b0;
  color: #fff;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l .ant-form-item {
  min-height: 32px;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l .inputBox___Aa_LC {
  margin-right: 15px;
  width: 238px;
  height: 110px;
  border: 1px solid #98c0f8;
  border-radius: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l .inputBox___Aa_LC .input___3dc4F {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px dotted #f2f2f2;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l .inputBox___Aa_LC .input___3dc4F:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l .inputButton___3fzI9 {
  width: 25px;
  height: 25px;
  color: #fff;
  padding: 0;
  margin-right: 15px;
}
.page___1AR-V .content___1M2Hn .inputCoordinate___Orc5l .showBox___28h1T {
  -ms-flex: 1 1;
      flex: 1 1;
  height: 110px;
  border: 1px solid #98c0f8;
  border-radius: 8px;
  padding: 12px 16px;
}
.page___1AR-V .buttonGroup___1tDvx Button {
  margin-right: 14px;
}
.modalWrap___3f4_2 .ant-modal {
  height: 80%;
}
.modalWrap___3f4_2 .ant-modal .ant-modal-content {
  height: 100%;
}
.page___3WUK4 {
  padding: 20px;
}
.page___3WUK4 .selectBaseInfo___12P4J {
  margin-bottom: 50px;
}
.page___3WUK4 .selectBaseInfo___12P4J .selectItem___1wdXw {
  min-width: 150px;
  width: 200px;
  margin-right: 20px;
}
.page___3WUK4 .selectOperation___1mlG6 {
  margin-bottom: 40px;
}
.page___3WUK4 .selectOperation___1mlG6 .checkBox___AJ3Fc {
  margin-right: 88px;
}
.page___3WUK4 .inputAddress___16JAS .input___T8SWi {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px 0;
  margin-right: 40px;
}
.page___3WUK4 .inputAddress___16JAS .input___T8SWi .inputItem___2UErM {
  width: 140px;
  border: 0;
  padding: 0 4px;
  text-align: center;
}
.page___3WUK4 .inputAddress___16JAS .input___T8SWi .inputItem___2UErM:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page___3WUK4 .inputAddress___16JAS #rightInput___32Ria {
  border-left: 0px;
}
.modalForm___1R7Az {
  margin-bottom: 24px;
}
.modalForm___1R7Az .modalFormItem___1AJSE {
  min-height: auto;
  margin-right: 14px !important;
}
.modalForm___1R7Az .modalFormItem___1AJSE .modalInput___1nMfD {
  width: 200px;
}
.modalForm___1R7Az .ant-form-item-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.showAreaBox___lj6oM {
  padding: 18px 10px;
  background-color: #f5f5f5;
  color: #999;
  margin-bottom: 26px;
}
.selectArea___8ZOT4 p {
  color: #999;
  margin-bottom: 10px;
}
.selectArea___8ZOT4 .selectAreaBox___1HRja {
  padding: 10px 14px;
  border: 1px solid #f3f3f3;
  overflow-y: auto;
}
.selectArea___8ZOT4 .selectAreaBox___1HRja .checkboxgroup___1yBQ2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.selectArea___8ZOT4 .selectAreaBox___1HRja .checkboxgroup___1yBQ2 .checkbox___1vfEP {
  -ms-flex: 0 0 11%;
      flex: 0 0 11%;
  margin-left: 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-result {
  padding: 48px 32px;
}
.ant-result-success .ant-result-icon > .anticon {
  color: #52c41a;
}
.ant-result-error .ant-result-icon > .anticon {
  color: #f5222d;
}
.ant-result-info .ant-result-icon > .anticon {
  color: #1890ff;
}
.ant-result-warning .ant-result-icon > .anticon {
  color: #faad14;
}
.ant-result-image {
  width: 250px;
  height: 295px;
  margin: auto;
}
.ant-result-icon {
  margin-bottom: 24px;
  text-align: center;
}
.ant-result-icon > .anticon {
  font-size: 72px;
}
.ant-result-title {
  color: rgba(0, 0, 0, 0.85);
  font-size: 24px;
  line-height: 1.8;
  text-align: center;
}
.ant-result-subtitle {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}
.ant-result-extra {
  margin-top: 32px;
  text-align: center;
}
.ant-result-extra > * {
  margin-right: 8px;
}
.ant-result-extra > *:last-child {
  margin-right: 0;
}
.ant-result-content {
  margin-top: 24px;
  padding: 24px 40px;
  background-color: #fafafa;
}
.orangeColor___3ma1S {
  color: #007acc;
}
.globalTableLink___3mN_8 {
  color: #76b1cb;
}
.previewContent___1VShY .ant-carousel {
  width: 100%;
}
.previewContent___1VShY .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1VShY .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1VShY .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1VShY .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1VShY .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___CimFU {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 32px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___CimFU .formItem___1kwAV {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.main___CimFU .formItem___1kwAV .ant-form-item-control-wrapper {
  width: 100%;
}
.main___CimFU .formItem___1kwAV .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___CimFU .formItem___1kwAV .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___CimFU .searchButton___2BOaY {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___CimFU .searchButton___2BOaY .button___38Is1 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___CimFU .searchButton___2BOaY .button___38Is1:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.input___1MJlH {
  min-width: 150px;
}
.orangeColor___3bGxW {
  color: #007acc;
}
.globalTableLink___HVTGe {
  color: #76b1cb;
}
.previewContent___E2Yng .ant-carousel {
  width: 100%;
}
.previewContent___E2Yng .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___E2Yng .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___E2Yng .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___E2Yng .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___E2Yng .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-body-inner {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___1GJte .globalTable___1OpTZ table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___1GJte .globalTable___1OpTZ table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___1GJte .globalTable___1OpTZ table td span .anticon {
  color: #8ccad9;
}
.prepTable___1GJte .globalTable___1OpTZ table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___1GJte .globalTable___1OpTZ .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___1GJte .globalTable___1OpTZ .ant-table-column-sorter .anticon-caret-up,
.prepTable___1GJte .globalTable___1OpTZ .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___1GJte .globalTable___1OpTZ i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___1GJte .childTable___16Ft4 .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___1GJte .grayItem___MB99X {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___1GJte .operationWrap___3-90t {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.prepTable___1GJte .operationWrap___3-90t a {
  width: 50px;
}
.prepTable___1GJte .operationWrap___3-90t a:first-child {
  border-right: 1px solid #ccc;
}
.prepTable___1GJte .operationWrap___3-90t .localText___9tNRF {
  color: #40c8a5;
}
.prepTable___1GJte .lineWrap___1rda2 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___1GJte .lineWrap___1rda2 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___1GJte .disabledText___14EPS {
  color: #666;
  cursor: not-allowed;
}
.prepTable___1GJte .titleWrap___6uUIx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___1GJte .titleWrap___6uUIx .iconWrap___14sJY {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___1GJte .titleWrap___6uUIx .iconWrap___14sJY .sorterActive___34GGf {
  color: #1890ff;
}
.prepTable___1GJte .titleWrap___6uUIx .iconWrap___14sJY i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___1GJte .titleWrap___6uUIx .iconWrap___14sJY i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___1GJte .btns___7hMx8 {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___1GJte .btnsLeft___YsnKd button {
  margin-right: 20px;
}
.prepTable___1GJte .btnsRight___3WsoQ button {
  margin-left: 20px;
}
.prepTable___1GJte .baseBtn___1YjXN {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___1GJte .baseBtn___1YjXN:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___1GJte .globalBtn___2QV77 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___1GJte .globalBtn___2QV77:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___2o7qk {
  color: #007acc;
}
.globalTableLink___1CanI {
  color: #76b1cb;
}
.previewContent___2aumP .ant-carousel {
  width: 100%;
}
.previewContent___2aumP .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2aumP .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2aumP .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2aumP .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2aumP .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___1hW9i {
  width: 100%;
}
.titleWrap___1hW9i .mainTitle___1YyfH {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1hW9i .mainTitle___1YyfH li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1hW9i .mainTitle___1YyfH .titleItem___2iCiz {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___1PoQe {
  width: 100%;
}
.contentWrap___1PoQe .mainContent___1hLpS {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___1PoQe .mainContent___1hLpS li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___x8a2K {
  width: 100%;
}
.formWrap___x8a2K .buttonRow___HVxgY {
  text-align: center;
  margin-top: 10px;
}
.formWrap___x8a2K .buttonRow___HVxgY .submitBtn___1DnJG {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___x8a2K .buttonRow___HVxgY .submitBtn___1DnJG:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___x8a2K .ant-form-item {
  height: 56px !important;
}
.input___2AElF {
  min-width: 150px;
}
.page___2Qm36 .btn___Iky9R {
  margin-right: 20px;
}
.page___2Qm36 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2H3TO .btn___3c9k7 {
  margin-right: 20px;
}
.page___2H3TO .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2gv1d {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  width: 100%;
}
.page___2gv1d .content___o0RLv {
  -ms-flex: 1 1;
      flex: 1 1;
  border-top: 10px solid #f0f3fa;
  padding: 20px;
  height: 100%;
  width: 100%;
  overflow: auto;
}
.page___2gv1d .content___o0RLv .noData___3_U1E {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.page___2gv1d .content___o0RLv .noData___3_U1E img {
  width: 300px;
  height: 270px;
}
.page___2gv1d .content___o0RLv .time___1UHbx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.page___2gv1d .content___o0RLv .time___1UHbx span:last-of-type {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 5px;
}
.page___2gv1d .content___o0RLv .time___1UHbx span:last-of-type input {
  margin-right: 4px;
}
.page___2gv1d .content___o0RLv .monitor___3vShh {
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}
.page___2gv1d .content___o0RLv .monitor___3vShh > div {
  margin-right: 20px;
  -ms-flex: 1 1;
      flex: 1 1;
}
.page___2gv1d .content___o0RLv .monitor___3vShh > div:last-of-type {
  margin: 0;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-right: 15px;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT > div {
  -ms-flex: 1 1;
      flex: 1 1;
  width: 100%;
  border-color: #e8e8e8 !important;
  border: 1px solid;
  border-radius: 6px;
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT > div:last-of-type {
  margin: 0;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT > div .chart___1kCVJ {
  width: 160px;
  height: 160px;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT > div .text___3UE_X {
  margin-left: 15px;
  height: 64px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT > div .text___3UE_X .label___3EZPo {
  color: #595864;
  font-size: 14px;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .flex___2ovvT > div .text___3UE_X .value___HZnnI {
  color: #0090e7;
  font-size: 24px;
  margin-bottom: 0;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .right___2lpuP {
  border: 1px solid #e8e8e8 !important;
  border-radius: 6px;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  font-size: 14px;
  color: #5a5966;
}
.page___2gv1d .content___o0RLv .monitor___3vShh .right___2lpuP img {
  width: 125px;
  height: 125px;
}
.page___2gv1d .content___o0RLv .line___ZN624 {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
}
.page___2gv1d .content___o0RLv .line___ZN624 .title___2g7c8 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #e8e8e8;
  height: 54px;
  padding: 0 20px;
  font-size: 16px;
  color: #383840;
}
.page___2gv1d .content___o0RLv .line___ZN624 .chart___1kCVJ {
  padding-top: 50px;
  width: 100%;
  height: 400px;
}
.page___2rQ3_ .btn___2lOaZ {
  margin-right: 20px;
}
.page___2rQ3_ .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___28rM1 .btn___1TBAk {
  margin-right: 20px;
}
.page___28rM1 .operationWrap___2A7fz {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.page___28rM1 .operationWrap___2A7fz a {
  padding: 0 10px;
  min-width: 50px;
}
.page___28rM1 .operationWrap___2A7fz .localText___1kUF9 {
  color: #40c8a5;
}
.page___28rM1 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___3QpUn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___3QpUn .associatedBtn___xCmjy {
  position: absolute;
  right: 44px;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___3QpUn {
  /**兼容Firefox、IE表头**/
}
.standardTable___3QpUn .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.standardTable___3QpUn .ant-table {
  height: 100%;
  top: 28px;
  overflow-x: scroll;
}
.standardTable___3QpUn .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___3QpUn .ant-table-body {
  position: absolute !important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___3QpUn .ant-table-pagination {
  position: absolute;
  top: 0;
  right: 44px;
  margin: 0 !important;
}
.standardTable___3QpUn .ant-table-wrapper {
  height: 100%;
}
.standardTable___3QpUn .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___3QpUn .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___3QpUn table tr.tableCss td {
  background: #eff3f7;
}
.standardTable___3QpUn table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___3QpUn table tr.red td {
  background: #ec03035c;
}
.standardTable___3QpUn .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___3QpUn .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___3QpUn .ant-table-thead > tr:hover > td,
.standardTable___3QpUn .ant-table-tbody > tr:hover > td {
  background: #c9e0ea;
}
.standardTable___3QpUn .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___3QpUn table th {
  background: #dce1ed !important;
  text-align: center !important;
  color: #666666 !important;
  border-right: #dce1ed !important;
}
.standardTable___3QpUn table tr .ant-table-selection-column {
  width: 30px;
}
.standardTable___3QpUn .addBtn,
.standardTable___3QpUn .checkBtn,
.standardTable___3QpUn .uncheckBtn,
.standardTable___3QpUn .publishBtn,
.standardTable___3QpUn .unpublishBtn {
  position: absolute;
  border-radius: 3px;
  background-color: #40c8a5 !important;
  border-color: #40c8a5 !important;
  z-index: 10;
}
.standardTable___3QpUn .addBtn {
  left: 40px;
}
.standardTable___3QpUn .tableAlert___2gIge {
  margin-bottom: 16px;
}
.standardTable___3QpUn .grayItem___1bsib {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 6px;
}
.titleWrap___1ej3x {
  width: 100%;
}
.titleWrap___1ej3x .mainTitle___29xsI {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1ej3x .mainTitle___29xsI li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1ej3x .mainTitle___29xsI .titleItem___2aILn {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.formWrap___3yJDp {
  width: 100%;
}
.formWrap___3yJDp .buttonRow___2yhuU {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3yJDp .buttonRow___2yhuU .submitBtn___i7zMu {
  margin-left: 12px;
}
.formWrap___3yJDp .ant-form-item-label label {
  font-weight: 600;
}
.formWrap___3yJDp .ant-form-item {
  min-height: 56px !important;
}
.formWrap___3yJDp .rdw-image-modal-btn,
.formWrap___3yJDp .rdw-link-modal-btn,
.formWrap___3yJDp .rdw-embedded-modal-btn {
  line-height: 0 !important;
}
.formWrap___3yJDp .rdw-link-modal {
  width: unset !important;
  height: unset !important;
}
.diseaseArticleTable___1ZWvv {
  position: absolute;
  top: 84px;
  right: 0;
  bottom: 0;
  left: 0;
}
.titleWrap___3EZf4 {
  width: 100%;
}
.titleWrap___3EZf4 .mainTitle___2KBoe {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___3EZf4 .mainTitle___2KBoe li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___3EZf4 .mainTitle___2KBoe .titleItem___3W1Dy {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.formWrap___1pCi_ {
  width: 100%;
}
.formWrap___1pCi_ .buttonRow___1H4W5 {
  text-align: center;
  margin-top: 10px;
}
.formWrap___1pCi_ .buttonRow___1H4W5 .submitBtn___dxPBW {
  margin-left: 12px;
}
.formWrap___1pCi_ .ant-form-item {
  min-height: 56px !important;
}
.formWrap___1pCi_ .rdw-image-modal-btn,
.formWrap___1pCi_ .rdw-link-modal-btn,
.formWrap___1pCi_ .rdw-embedded-modal-btn {
  line-height: 0 !important;
}
.formWrap___1pCi_ .rdw-link-modal {
  width: unset !important;
  height: unset !important;
}
.ant-tabs-content___14eFg {
  background: #f2f2f2 !important;
}
.testPatrol___1UCYt {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background: #f2f2f2;
}
.testPatrol___1UCYt .header___2mr6N {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 22px;
  height: 70px;
  background: #ffffff;
}
.testPatrol___1UCYt .header___2mr6N .cascader___YEypV {
  width: 400px;
  margin-right: 20px;
}
.testPatrol___1UCYt .header___2mr6N .cascader___YEypV .ant-cascader-input {
  height: 29px;
}
.testPatrol___1UCYt .header___2mr6N .headerButton___3OF6e {
  width: 100px;
  height: 29px;
  margin-right: 20px;
}
.testPatrol___1UCYt .middle___1QWOz {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 18px;
  margin-top: 22px;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl {
  width: 65%;
  height: 513px;
  position: relative;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .letfTop {
  position: fixed;
  left: 0;
  top: 0;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .caozuo___SuMjo {
  position: absolute;
  top: 10px;
  right: 30px;
  z-index: 999;
  width: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .caozuo___SuMjo img {
  cursor: pointer;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .caozuo2___1v8mk {
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: 999;
  width: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .caozuo2___1v8mk img {
  cursor: pointer;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .caozuo3___o6JhZ {
  position: absolute;
  top: 7px;
  right: -10px;
  z-index: 999;
  width: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl .caozuo3___o6JhZ img {
  cursor: pointer;
  width: 24px;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl div object {
  width: 100%;
}
.testPatrol___1UCYt .middle___1QWOz .videoBox___3NSbl div object embed {
  width: 100%;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN {
  width: 34.2%;
  height: 513px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .hotBox___-K-G2 {
  height: 213px;
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #318dd9;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .hotBox___-K-G2 embed {
  height: 214px !important;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi {
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
          box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
  width: 100%;
  height: 290px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlTitle___x4Ru4 {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #e2e3e5;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  font-size: 16px;
  padding-left: 18px;
  font-family: Microsoft New Tai Lue;
  font-weight: bold;
  line-height: 45px;
  color: #333333;
  letter-spacing: 1.6699999570846558px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlTitle___x4Ru4 .carStatus___1mRxv {
  margin-right: 15px;
  -ms-flex: 1 1;
      flex: 1 1;
  font-size: 14px;
  font-family: Arial;
  text-align: right;
  color: #666666;
  font-weight: 400;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlTitle___x4Ru4 .carStatus___1mRxv span {
  color: #1ea54b;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlTitle___x4Ru4 .electric___8D_MO {
  -ms-flex: 1 1;
      flex: 1 1;
  font-size: 14px;
  font-family: Arial;
  font-weight: bold;
  color: #333333;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 20px;
  margin-right: 15px;
  text-align: right;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlTitle___x4Ru4 .electric___8D_MO span {
  display: inline-block;
  width: 24px;
  height: 13px;
  padding: 2px 4px 2px 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAaCAYAAADxNd/XAAAB/UlEQVRYR+2YP2hTURjFz3l9EQwqtaMksQri4NBVwaEOIvomxYo0Dzu0oENxEvHPYBRcxE0RHdQlQYjVrX22/hnFURwcdBCT14J/l1Kb9uXeI4m0TcXiFt+T3OlyefCd3zt8l+9cAkD3/f7uDan0eYc4KrCXgNM4j80SZkW9MjDXZvKTz1p1MVM+0OMsdr0EuTM2gtcQIsBY2ePTfjC29AmzJe8GgVFBc7I6xxSCaF4mTjBuytlI4gzBExBmjaltmx56/q2hkdnSoSrBDKhTlcGJO3ESvkpLod/N7Ui/B9gr2eGqH9xbArAEaWn6wsEnb2ILACBb9B6TOGyFS6E/fqUJkCt5aoqW3VXxg7dxBsiVvDKAAUCFSn7icgeg3W79Nw5IeqCaGQ1HJr8ntAeaTft5UdqXYABA0q1EAwB42AFo5020cgstV+040E4D8LsDgm4ntgcEzNdtfW8yAYixBTc6++nY1IdkAnSGuba27kqxPw5z2aJnSDi2bvrCoZgHmpL3iMCRVYEmW/Q+kshZYCTMj9/9Rz/372XLA+ty0dw7gFtbtTZC/VUCFwR9kezJyNrXNM6vlBaT5bh2S5fjFgjuB7TwoxZt/zr8dKaZyDLlPesZbX5BcHdM9K4pQ435Ezod5oOby88qjU1P8eCmNHgx7g9bkK5X/WCqlfAnfnVisd+XS+AAAAAASUVORK5CYII=);
  background-size: 100% 100%;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlTitle___x4Ru4 .electric___8D_MO em {
  display: block;
  height: 100%;
  background: #1ea54b;
  width: 0;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 {
  display: -ms-flexbox;
  display: flex;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .directionBox___2GZts {
  width: 30%;
  margin-left: 10px;
  margin-top: 30px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .directionBox___2GZts > div > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .directionBox___2GZts img {
  cursor: pointer;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO {
  -ms-flex: 1 1;
      flex: 1 1;
  margin: 22px 15px 22px 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  margin-right: 10px;
  padding-bottom: 5px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm:first-child {
  width: 25%;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm:last-child {
  margin-right: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm lable {
  margin-bottom: 6px;
  color: #999999;
  font-size: 14px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .levelBox___3I4Ot {
  position: relative;
  width: 60px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .levelBox___3I4Ot ul {
  width: inherit;
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  padding: 0;
  border: 1px solid #c4cdd5;
  border-top: none;
  display: none;
  z-index: 30;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .levelBox___3I4Ot:hover ul {
  display: block;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .selectLevel___2cH8L {
  border: 1px solid #c4cdd5;
  line-height: 26px;
  font-size: 14px;
  color: #637381;
  padding: 0 7px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .selectLevel___2cH8L i {
  font-size: 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB i {
  font-size: 14px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB p {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  margin-right: 4px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB p:last-child {
  margin-right: 0;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB p img {
  width: 30%;
  max-width: 14px;
  cursor: pointer;
  margin-right: 4px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB .ant-switch {
  min-width: 32px;
  max-width: 44px;
  -ms-flex: 1 1;
      flex: 1 1;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM- {
  text-align: center;
  line-height: 18px;
  width: 26px;
  height: 26px;
  border: 1px solid #dedede;
  border-radius: 50%;
  font-size: 25px;
  color: #1e8be2;
  cursor: pointer;
  margin-right: 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM-.inactive___1ltpQ {
  color: #a7b1b2 !important;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM-:last-child {
  margin-right: 0;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM-:hover {
  color: #fff;
  background-color: #1e8be2;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .radioBox___3PAUm {
  display: -ms-flexbox;
  display: flex;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlBox___1tFQ9 .cameraController___2-OLO .radioBox___3PAUm .radioGroup___2o1rZ {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 img {
  cursor: pointer;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .top___1UzXC {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 20px;
  color: #333333;
  margin: 9px 0px 9px 18px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .content___20XLq .container___39Je2 {
  height: 106px;
  padding-left: 2%;
  padding-right: 2%;
  background: #fafafa;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .content___20XLq .container___39Je2 .label___2HkLC {
  height: 20px;
  line-height: 20px;
  margin-top: 22px;
  margin-bottom: 5px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .content___20XLq .container___39Je2 .button___3ksM- {
  margin-top: 47px;
  width: 48px;
  padding: 0px;
  background: #e3f3ff;
  border-radius: 3px;
  font-family: PingFangSC-Regular;
  color: #1e8be2;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu {
  padding-top: 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .left___3G1i7 .title___2zNtO {
  height: 20px;
  font-size: 14px;
  font-family: Arial;
  font-weight: 400;
  line-height: 20px;
  color: #999999;
  margin-left: 18px;
  margin-bottom: 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .left___3G1i7 .button___3ksM- {
  height: 34px;
  font-size: 14px;
  font-family: PingFangSC-Regular;
  color: #637381;
  border: 1px solid #c4cdd5;
  border-radius: 2px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .right___3wvzJ {
  text-align: right;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .right___3wvzJ .title___2zNtO {
  height: 18px;
  font-size: 13px;
  font-family: PingFangSC-Regular;
  line-height: 18px;
  color: #666666;
  cursor: pointer;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ img {
  cursor: pointer;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .top___1UzXC {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 20px;
  color: #333333;
  margin: 9px 0px 9px 18px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .label___2HkLC {
  width: 70px;
  height: 20px;
  font-size: 14px;
  font-family: Arial;
  font-weight: 400;
  color: #999999;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .radio___2tQ_1 {
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .radio___2tQ_1 label {
  margin-right: 0px !important;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .radio___2tQ_1 label span:nth-of-type(2) {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .direction___j7jgS {
  padding-left: 10px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .controlNewCarBox___3Unyo .right___3wvzJ .direction___j7jgS img {
  width: 26px;
  margin-right: 5px;
}
.testPatrol___1UCYt .middle___1QWOz .cloudBox___1nZxN .carControlBox___DaMmi .hidden___3ZR95 {
  display: none;
}
.testPatrol___1UCYt .attrsBox___tZspA {
  width: 100%;
  margin-bottom: 18px;
  padding: 0px 22px;
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU {
  background: #ffffff;
  height: 240px;
  -webkit-box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
          box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU :last-child {
  text-align: center;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(1),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(2),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(3),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(4),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(5) {
  margin-bottom: 2%;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(1),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(6) {
  margin-right: 2%;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(2),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(3),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(4),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(7),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(8),
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(9) {
  margin-left: 2%;
  margin-right: 2%;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row :nth-child(5) {
  margin-left: 2%;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .ant-row .eAttrs {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .title___2zNtO {
  height: 45px;
  line-height: 45px;
  width: 100%;
  border-bottom: 1px solid #e2e3e5;
  margin-bottom: 10px;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .eTitle___3r9EE {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  padding-right: 0px !important;
  padding-left: 0px !important;
  margin-right: 0px !important;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .eTime___3Sx6c {
  padding-left: 0px !important;
  padding-right: 0px !important;
  font-size: 14px;
  margin-left: 0px !important;
  margin-right: 0px !important;
  font-family: Arial;
  text-align: right;
  color: #666666;
  font-weight: 400;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .eTime___3Sx6c img {
  cursor: pointer;
  width: 17px;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .eAttrs___2aJ61 {
  font-size: 14px;
  color: #000;
  height: 75px;
  margin-top: 5px;
  background: #f5f5f5;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .eAttrs___2aJ61 .fontNormal___1oReE {
  display: block;
  margin-top: 15px;
  height: 20px;
  font-size: 14px;
  font-family: PingFangSC-Regular;
  color: #666666;
}
.testPatrol___1UCYt .attrsBox___tZspA .environmentBox___3gdFU .eAttrs___2aJ61 .fontBigger___3wlb7 {
  display: block;
  height: 25px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD {
  padding-left: 18px !important;
  padding-right: 0px !important;
  max-height: 240px;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD .ant-row {
  height: 240px;
  -webkit-box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
          box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
  background: #ffffff;
  overflow-y: hidden;
  overflow-x: hidden;
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD .ant-row .rowOne {
  margin-top: 20px;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD .ant-row .rowTwo {
  margin-bottom: 20px;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD::-webkit-scrollbar-track-piece {
  background-color: #dedede;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD::-webkit-scrollbar-thumb {
  background-color: #dddddd;
  background-clip: padding-box;
  min-height: 28px;
  border-radius: 2em;
  border: 5px solid #000 !important;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD .lanBox___24Za4 {
  padding: 5px 0;
  margin: 5px 0;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid #efeff0;
  color: #333333;
}
.testPatrol___1UCYt .attrsBox___tZspA .fenceBox___2u9OD .active___15y8N {
  background: #00a0e9 !important;
  color: #fff !important;
}
.testPatrol___1UCYt .bottom___14djw {
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
          box-shadow: 0px 2px 5px rgba(178, 180, 185, 0.25);
  margin-left: 22px;
  margin-right: 22px;
  margin-bottom: 22px;
  margin-top: 18px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .ant-tabs-bar {
  margin: 0;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 3px solid #318dd9;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .ant-tabs-bar .ant-tabs-nav .ant-tabs-tab {
  margin: 0px !important;
  font-size: 16px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp {
  padding: 10px;
  min-height: 250px;
  overflow-y: auto;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .tsbRow___395Z8 {
  display: -ms-flexbox;
  display: flex;
  height: 227px;
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .historyList___5VQAD {
  overflow: hidden;
  overflow-y: auto;
  height: 352px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .Manager__bgColor___gTbE0___3Cw3z {
  height: 352px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM div {
  background: transparent;
  border: 0;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 {
  margin: 5px 0;
  text-align: center;
  cursor: pointer;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 img {
  width: 100%;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 .markBox___2qliS {
  text-align: left;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 .markBox___2qliS a {
  vertical-align: middle;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 .markBox___2qliS a img {
  width: 16px !important;
  position: relative;
  top: -3px;
  margin-right: 5px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 .markBox___2qliS .markyes___6E-iI {
  color: #ffca3a !important;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 .markBox___2qliS .markno___31Hdv {
  color: #999 !important;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .lanBox___24Za4 .markBox___2qliS .count___3YVaD {
  color: #ffca3a !important;
  float: right;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  background: #fafbfc;
  border: 1px solid #efeff0;
  margin-top: 10px;
  height: 207px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .symptom___2hKRK {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4094F8;
  min-width: 86px;
  color: #fff;
  text-align: center;
  height: 26px;
  line-height: 26px;
  border-radius: 3px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .description___3caQN {
  position: absolute;
  bottom: 15px;
  width: 100%;
  padding: 0 10px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiImg___SWyfl {
  width: 65%;
  position: relative;
  overflow: hidden;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiImg___SWyfl img {
  height: 100%;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiImg___SWyfl .imgBottom___1osF2 {
  position: absolute;
  bottom: 0px;
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(111, 111, 111, 0.15)));
  background: linear-gradient(360deg, #000000 0%, rgba(111, 111, 111, 0.15) 100%);
  height: 30px;
  line-height: 30px;
  width: 100%;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiImg___SWyfl .imgBottom___1osF2 span {
  position: absolute;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiImg___SWyfl .imgBottom___1osF2 :nth-child(1) {
  left: 12px;
  font-size: 14px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiImg___SWyfl .imgBottom___1osF2 :nth-child(2) {
  right: 12px;
  font-size: 12px;
  opacity: 0.9;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f {
  width: 40%;
  list-style-type: square;
  padding: 0px !important;
  margin-bottom: 0px !important;
  list-style: none;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f div {
  width: 100%;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f .pigNum___2B8sz {
  font-size: 40px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  height: 56px;
  line-height: 56px;
  margin-left: 30px;
  margin-top: 11px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f .pigNum___2B8sz:hover {
  color: #1e8be2;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f .pigTitle___GC9yC {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  margin-left: 30px;
  margin-bottom: 21px;
  margin-top: -5px;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f .time___OHvKJ {
  font-size: 14px;
  font-family: PingFangSC-Regular;
  line-height: 20px;
  color: #838c96;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu .aiInfo___1uz_f .title___2zNtO {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #62cbd7;
}
.testPatrol___1UCYt .bottom___14djw .tabs___20NMv .tabContent___3ErBp .gutterRow___32eXM .aiBox___3xtfu:hover {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(152, 170, 181, 0.24);
          box-shadow: 0px 0px 30px rgba(152, 170, 181, 0.24);
}
.speedLevel___3YhWu {
  display: inline-block;
  width: 100%;
  height: 24px;
  line-height: 24px;
  border-bottom: 1px solid #c4cdd5;
  color: #333;
  font-size: 12px;
  text-align: center;
  margin-right: 5px;
  cursor: pointer;
}
.speedLevel___3YhWu:last-child {
  border-bottom: none;
}
.speedLevel___3YhWu:hover {
  color: #1890ff;
}
.speedLevelActive___2YQsl {
  background: #00a0e9 !important;
  color: #fff !important;
}
.hiddenImg___2tMXZ {
  display: none;
}
.outputDiv___2kgja {
  width: 100%;
  height: 100%;
}
.modal___30vfJ {
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding: 0px 15px;
}
.modal___30vfJ .cameraController___2-OLO {
  -ms-flex: 1 1;
      flex: 1 1;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  margin-right: 12px;
  padding-bottom: 5px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm:first-child {
  width: 30%;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm:last-child {
  margin-right: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm lable {
  margin-bottom: 6px;
  color: #999999;
  font-size: 14px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .levelBox___3I4Ot {
  position: relative;
  width: 60px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .levelBox___3I4Ot ul {
  width: inherit;
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  padding: 0;
  border: 1px solid #c4cdd5;
  border-top: none;
  display: none;
  z-index: 30;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .levelBox___3I4Ot:hover ul {
  display: block;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .selectLevel___2cH8L {
  border: 1px solid #c4cdd5;
  line-height: 26px;
  font-size: 14px;
  color: #637381;
  padding: 0 7px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .selectLevel___2cH8L i {
  font-size: 10px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB i {
  font-size: 14px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB p {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  margin-right: 4px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB p:last-child {
  margin-right: 0;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB p img {
  width: 30%;
  max-width: 14px;
  cursor: pointer;
  margin-right: 4px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .funcBox___1kNVB .ant-switch {
  min-width: 32px;
  max-width: 44px;
  -ms-flex: 1 1;
      flex: 1 1;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM- {
  text-align: center;
  line-height: 18px;
  width: 26px;
  height: 26px;
  border: 1px solid #dedede;
  border-radius: 50%;
  font-size: 25px;
  color: #1e8be2;
  cursor: pointer;
  margin-right: 10px;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM-.inactive___1ltpQ {
  color: #a7b1b2 !important;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM-:last-child {
  margin-right: 0;
}
.modal___30vfJ .cameraController___2-OLO .buttonBox___3ZWTg .buttonItem___2HZuu .item___d5yZm .button___3ksM-:hover {
  color: #fff;
  background-color: #1e8be2;
}
.modal___30vfJ .cameraController___2-OLO .radioBox___3PAUm {
  display: -ms-flexbox;
  display: flex;
}
.modal___30vfJ .cameraController___2-OLO .radioBox___3PAUm .radioGroup___2o1rZ {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo {
  padding: 0px 20px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 img {
  cursor: pointer;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .top___1UzXC {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 20px;
  color: #333333;
  margin: 9px 0px 9px 18px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .content___20XLq .container___39Je2 {
  height: 106px;
  padding-left: 2%;
  padding-right: 2%;
  background: #fafafa;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .content___20XLq .container___39Je2 .label___2HkLC {
  height: 20px;
  line-height: 20px;
  margin-top: 22px;
  margin-bottom: 5px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .content___20XLq .container___39Je2 .button___3ksM- {
  margin-top: 47px;
  width: 48px;
  padding: 0px;
  background: #e3f3ff;
  border-radius: 3px;
  font-family: PingFangSC-Regular;
  color: #1e8be2;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu {
  padding-top: 10px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .left___3G1i7 .title___2zNtO {
  height: 20px;
  font-size: 14px;
  font-family: Arial;
  font-weight: 400;
  line-height: 20px;
  color: #999999;
  margin-bottom: 10px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .left___3G1i7 .button___3ksM- {
  height: 34px;
  font-size: 14px;
  font-family: PingFangSC-Regular;
  color: #637381;
  border: 1px solid #c4cdd5;
  border-radius: 2px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .right___3wvzJ {
  text-align: right;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .left___3G1i7 .drump___nDObu .right___3wvzJ .title___2zNtO {
  height: 18px;
  font-size: 13px;
  font-family: PingFangSC-Regular;
  line-height: 18px;
  color: #666666;
  cursor: pointer;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ img {
  cursor: pointer;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .top___1UzXC {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 20px;
  color: #333333;
  margin: 9px 0px 9px 18px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .label___2HkLC {
  width: 70px;
  height: 20px;
  font-size: 14px;
  font-family: Arial;
  font-weight: 400;
  color: #999999;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 6px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .radio___2tQ_1 {
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .radio___2tQ_1 label {
  margin-right: 0px !important;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .radio___2tQ_1 label span:nth-of-type(2) {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .direction___j7jgS {
  padding-left: 10px;
}
.cameralModal___2k_3S .controlNewCarBox___3Unyo .right___3wvzJ .direction___j7jgS img {
  width: 26px;
  margin-right: 5px;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .ant-radio-wrapper {
  margin-right: 0px!important;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .container___39Je2 {
  height: 73px !important;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .container___39Je2 .lable___3itEb {
  text-align: center;
  margin-top: 0px !important;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .container___39Je2 .direction___j7jgS {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .container___39Je2 .button___3ksM- {
  margin-top: 20px !important;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .presets___1wRrP {
  margin: 0px 0px 10px 0px !important;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .presets___1wRrP .ant-radio-group {
  margin: 0px 0px 10px 0px !important;
}
.cameralModal___2k_3S .infraredCamera___2Y0No .presets___1wRrP .ant-radio-group .ant-radio-wrapper {
  margin: 10px 10px 0px 0px !important;
}
.cameralModal___2k_3S .infrared___2cB8O {
  padding: 0px 20px;
}
.cameralModal___2k_3S .ant-modal-body {
  padding: 0px!important;
}
.bgColor___25GD9 {
  background: #f8f8f8 !important;
}
.orangeColor___1-zUf {
  color: #007acc;
}
.globalTableLink___xx42e {
  color: #76b1cb;
}
.previewContent___1qhVu .ant-carousel {
  width: 100%;
}
.previewContent___1qhVu .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1qhVu .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1qhVu .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1qhVu .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1qhVu .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___1Xegr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 32px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___1Xegr .formItem___2gCx2 {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.main___1Xegr .formItem___2gCx2 .ant-form-item-control-wrapper {
  width: 100%;
}
.main___1Xegr .formItem___2gCx2 .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___1Xegr .formItem___2gCx2 .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___1Xegr .searchButton___2VyLd {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___1Xegr .searchButton___2VyLd .button___Tbt61 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___1Xegr .searchButton___2VyLd .button___Tbt61:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___34vtT {
  color: #007acc;
}
.globalTableLink___24I0l {
  color: #76b1cb;
}
.previewContent___23ydD .ant-carousel {
  width: 100%;
}
.previewContent___23ydD .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___23ydD .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___23ydD .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___23ydD .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___23ydD .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-content {
  border: 0;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -13px;
}
.prepTable___Kw47u .globalTable___30rkW table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___Kw47u .globalTable___30rkW .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___Kw47u .globalTable___30rkW table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___Kw47u .globalTable___30rkW table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___Kw47u .globalTable___30rkW table td span .anticon {
  color: #8ccad9;
}
.prepTable___Kw47u .globalTable___30rkW table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___Kw47u .globalTable___30rkW .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___Kw47u .globalTable___30rkW .ant-table-column-sorter .anticon-caret-up,
.prepTable___Kw47u .globalTable___30rkW .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___Kw47u .globalTable___30rkW i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___Kw47u .childTable___2KOZ2 .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___Kw47u .grayItem___oZYD5 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___Kw47u .operationWrap___3Bbc9 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___Kw47u .operationWrap___3Bbc9 > div {
  display: -ms-flexbox;
  display: flex;
}
.prepTable___Kw47u .operationWrap___3Bbc9 a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___Kw47u .operationWrap___3Bbc9 .localText___-QNYQ {
  color: #40c8a5;
}
.prepTable___Kw47u .lineWrap___3L6iu {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___Kw47u .lineWrap___3L6iu span {
  color: #333;
  padding-right: 20px;
}
.prepTable___Kw47u .disabledText___Zrx_r {
  color: #666;
  cursor: not-allowed;
}
.prepTable___Kw47u .titleWrap___1VLqD {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___Kw47u .titleWrap___1VLqD .iconWrap___3FdY3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___Kw47u .titleWrap___1VLqD .iconWrap___3FdY3 .sorterActive___1J8I2 {
  color: #1890ff;
}
.prepTable___Kw47u .titleWrap___1VLqD .iconWrap___3FdY3 i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___Kw47u .titleWrap___1VLqD .iconWrap___3FdY3 i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___Kw47u .btns___k9pnc {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___Kw47u .btnsLeft___2JyUQ button {
  margin-right: 20px;
}
.prepTable___Kw47u .btnsRight___2ec_f button {
  margin-left: 20px;
}
.prepTable___Kw47u .baseBtn___1m8Ek {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___Kw47u .baseBtn___1m8Ek:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___Kw47u .globalBtn___yixGf {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___Kw47u .globalBtn___yixGf:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___3cNfS {
  color: #007acc;
}
.globalTableLink___3KD1f {
  color: #76b1cb;
}
.previewContent___EYTl- .ant-carousel {
  width: 100%;
}
.previewContent___EYTl- .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___EYTl- .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___EYTl- .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___EYTl- .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___EYTl- .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.spin___1AFWt {
  width: 100%;
}
.titleWrap___2MJbA {
  width: 100%;
}
.titleWrap___2MJbA .mainTitle___3W5g6 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2MJbA .mainTitle___3W5g6 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2MJbA .mainTitle___3W5g6 .titleItem___3SXeZ {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2t66S {
  width: 100%;
}
.contentWrap___2t66S .mainContent___2WfVw {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2t66S .mainContent___2WfVw li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___33c9D {
  width: 100%;
}
.formWrap___33c9D .buttonRow___28mmq {
  text-align: center;
  margin-top: 10px;
}
.formWrap___33c9D .buttonRow___28mmq .submitBtn___2pSbl {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___33c9D .buttonRow___28mmq .submitBtn___2pSbl:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___33c9D .ant-form-item {
  min-height: 56px !important;
}
.formWrap___33c9D .ant-cascader-picker-disabled,
.formWrap___33c9D .ant-input-number-disabled,
.formWrap___33c9D .ant-input-disabled {
  background-color: #fff;
}
.formWrap___33c9D .ant-cascader-picker-disabled i,
.formWrap___33c9D .ant-input-number-disabled i,
.formWrap___33c9D .ant-input-disabled i {
  visibility: hidden;
}
.formWrap___33c9D .ant-select-disabled .ant-select-selection {
  background-color: inherit;
}
.formWrap___33c9D .ant-select-disabled .ant-select-selection .ant-select-arrow-icon {
  visibility: hidden;
}
.page___1gGtD .btn___2Dj3Y {
  margin-right: 20px;
}
.page___1gGtD .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.orangeColor___3hfYx {
  color: #007acc;
}
.globalTableLink___27hur {
  color: #76b1cb;
}
.previewContent___2VONt .ant-carousel {
  width: 100%;
}
.previewContent___2VONt .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2VONt .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2VONt .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2VONt .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2VONt .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___1gd49 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 32px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___1gd49 .formItem___225AW {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.main___1gd49 .formItem___225AW .ant-form-item-control-wrapper {
  width: 100%;
}
.main___1gd49 .formItem___225AW .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___1gd49 .formItem___225AW .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___1gd49 .searchButton___3AAzj {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___1gd49 .searchButton___3AAzj .button___1acbl {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___1gd49 .searchButton___3AAzj .button___1acbl:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___1Sn8g {
  color: #007acc;
}
.globalTableLink___2yhFC {
  color: #76b1cb;
}
.previewContent___1TXd_ .ant-carousel {
  width: 100%;
}
.previewContent___1TXd_ .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1TXd_ .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1TXd_ .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1TXd_ .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1TXd_ .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-content {
  border: 0;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___1vU3_ .globalTable___3JKLH table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___1vU3_ .globalTable___3JKLH table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___1vU3_ .globalTable___3JKLH table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___1vU3_ .globalTable___3JKLH table td span .anticon {
  color: #8ccad9;
}
.prepTable___1vU3_ .globalTable___3JKLH table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___1vU3_ .globalTable___3JKLH .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-column-sorter .anticon-caret-up,
.prepTable___1vU3_ .globalTable___3JKLH .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___1vU3_ .globalTable___3JKLH i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___1vU3_ .childTable___WbW_Z .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___1vU3_ .grayItem___1-9T8 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___1vU3_ .operationWrap___3GoNY {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___1vU3_ .operationWrap___3GoNY a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___1vU3_ .operationWrap___3GoNY .localText___1Z0xj {
  color: #40c8a5;
}
.prepTable___1vU3_ .lineWrap___32bxq {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___1vU3_ .lineWrap___32bxq span {
  color: #333;
  padding-right: 20px;
}
.prepTable___1vU3_ .disabledText___3Sd5L {
  color: #666;
  cursor: not-allowed;
}
.prepTable___1vU3_ .titleWrap___UzADW {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___1vU3_ .titleWrap___UzADW .iconWrap___29Ouv {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___1vU3_ .titleWrap___UzADW .iconWrap___29Ouv .sorterActive___q06WS {
  color: #1890ff;
}
.prepTable___1vU3_ .titleWrap___UzADW .iconWrap___29Ouv i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___1vU3_ .titleWrap___UzADW .iconWrap___29Ouv i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___1vU3_ .btns___KfDWu {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___1vU3_ .btnsLeft___3ypS1 button {
  margin-right: 20px;
}
.prepTable___1vU3_ .btnsRight___1zWvD button {
  margin-left: 20px;
}
.prepTable___1vU3_ .baseBtn___3hKSc {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___1vU3_ .baseBtn___3hKSc:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___1vU3_ .globalBtn___PSroO {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___1vU3_ .globalBtn___PSroO:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.operation___18jSZ > a:last-of-type {
  border-left: 1px solid #d3d4d5;
}
.page___34BZe .btn___27DxZ {
  margin-right: 20px;
}
.page___34BZe .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___kJ9ta {
  display: none;
}
.outputDiv___pg5SN {
  width: 960;
  height: 540;
}
.page___2lajb .btn___3Hpav {
  margin-right: 20px;
}
.page___2lajb .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___3e4U5 {
  display: none;
}
.outputDiv___1VVar {
  width: 960;
  height: 540;
}
.style___TQrCK {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.style___TQrCK .input___4T9lC {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  padding: 1% 5%;
}
.style___TQrCK .input___4T9lC .label___2q7gA {
  width: 200px;
  text-align: right;
  line-height: 32px;
  padding-right: 10px;
}
.page___2VGr3 .btn___3lQnX {
  margin-right: 20px;
}
.page___2VGr3 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___2jnz4 {
  display: none;
}
.outputDiv___3L-bG {
  width: 960;
  height: 540;
}
.page___2XKxK .btn___kvwnx {
  margin-right: 20px;
}
.page___2XKxK .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___TTCpH {
  display: none;
}
.outputDiv___3B8K0 {
  width: 960;
  height: 540;
}
.bgImg___3T7_Z {
  background-size: contain;
  background-repeat: no-repeat;
}
.itemForm___18gCT::before {
  content: ' ';
  display: block;
  height: 4px;
  background-color: #f3f4f5;
}
.itemForm___18gCT > div:first-of-type {
  margin-top: 20px;
  color: #29aae8;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 14px;
}
.itemForm___18gCT > div:first-of-type span {
  padding-left: 10px;
  height: 20px;
  border-left: 4px solid #29aae8;
}
.itemForm___18gCT .ant-table-thead > tr > th {
  text-align: center;
  color: #fff;
  background: #44a8eb;
  font-size: 14px;
  height: 40px;
  border-right: #dce1ed;
}
.itemForm___18gCT .ant-form-item {
  min-height: 40px !important;
}
.itemForm___18gCT .ant-table-row .editable-cell-value-wrap {
  border: 1px solid #fff;
  width: 100%;
  height: 40px;
  line-height: 36px;
  padding-left: 11px;
}
.itemForm___18gCT .ant-table-row:hover .editable-cell-value-wrap {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.add___2TbVC {
  display: inline-block;
  text-align: center;
  background: #1890ff;
  padding: 0 15px;
  border-radius: 4px;
  line-height: 30px;
  cursor: pointer;
  color: #fff;
}
.add___2TbVC:hover {
  color: #fff;
}
.my_select___2GA_8 {
  background-color: #f5f5f5 !important;
}
.test___yePr4 input[type='text']::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.65);
}
.page___2Qecv .btn___E5Fx9 {
  margin-right: 20px;
}
.container___34JfM {
  margin: 20px 30px;
}
.container___34JfM .top___3sqmE {
  width: 100%;
  height: 32px;
  font-size: 14px;
}
.container___34JfM .top___3sqmE .ant-cascader-picker {
  width: 350px;
  height: 32px !important;
}
.container___34JfM .top___3sqmE .ant-cascader-picker .ant-input {
  height: 32px !important;
}
.container___34JfM .top___3sqmE button {
  margin-left: 10px;
  width: 88px;
  margin-right: 10px;
  font-family: PingFang SC;
  font-weight: 500;
}
.container___34JfM .top___3sqmE .deviceNum___CfxhV {
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.container___34JfM .sty___EW_6e {
  width: 100%;
  height: 110px;
  margin-top: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 6px rgba(119, 123, 132, 0.16);
          box-shadow: 0px 0px 6px rgba(119, 123, 132, 0.16);
  border-radius: 3px;
}
.container___34JfM .sty___EW_6e .title___1E6sU {
  margin-left: 25px;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
}
.container___34JfM .sty___EW_6e .title___1E6sU .highLight___3NWmG {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #0097fc;
}
.container___34JfM .sty___EW_6e .line___1brLk {
  float: left;
}
.container___34JfM .sty___EW_6e .line___1brLk .title___1E6sU {
  margin-left: 25px;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
}
.container___34JfM .sty___EW_6e .line___1brLk .title___1E6sU .highLight___3NWmG {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #0097fc;
}
.container___34JfM .center___3EWEC {
  width: 100%;
  height: 142px;
  margin-top: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 6px rgba(119, 123, 132, 0.16);
          box-shadow: 0px 0px 6px rgba(119, 123, 132, 0.16);
  border-radius: 3px;
}
.container___34JfM .center___3EWEC .title___1E6sU {
  margin-left: 25px;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
}
.container___34JfM .center___3EWEC .title___1E6sU .highLight___3NWmG {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #0097fc;
}
.container___34JfM .center___3EWEC .content___3g5Za {
  height: 60px;
}
.container___34JfM .center___3EWEC .content___3g5Za .ant-col {
  height: 64px;
}
.container___34JfM .center___3EWEC .content___3g5Za .firstPadding {
  padding-left: 25px!important;
  padding-right: 0px!important;
}
.container___34JfM .center___3EWEC .content___3g5Za .secondPadding {
  padding-left: 17px!important;
  padding-right: 8px!important;
}
.container___34JfM .center___3EWEC .content___3g5Za .thirdPadding {
  padding-left: 8px!important;
  padding-right: 17px!important;
}
.container___34JfM .center___3EWEC .content___3g5Za .lastPadding {
  padding-left: 0px!important;
  padding-right: 25px!important;
}
.container___34JfM .center___3EWEC .content___3g5Za .fivePadding {
  padding-left: 17px!important;
  padding-right: 17px!important;
}
.container___34JfM .main___2nsSY {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 6px rgba(119, 123, 132, 0.16);
          box-shadow: 0px 0px 6px rgba(119, 123, 132, 0.16);
  border-radius: 3px;
  margin-top: 20px;
}
.container___34JfM .main___2nsSY .title___1E6sU {
  margin-left: 25px;
  margin-right: 25px;
  line-height: 52px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
}
.container___34JfM .main___2nsSY .title___1E6sU .highLight___3NWmG {
  font-size: 20px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #0097fc;
}
.container___34JfM .main___2nsSY .item___2YO-L {
  margin: 5px 0px;
}
.orangeColor___SqZ5_ {
  color: #007acc;
}
.globalTableLink___gz5jE {
  color: #76b1cb;
}
.previewContent___2TUbT .ant-carousel {
  width: 100%;
}
.previewContent___2TUbT .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2TUbT .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2TUbT .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2TUbT .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2TUbT .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-content {
  border: 0;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -13px;
}
.prepTable___1qX7j .globalTable___1448m table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___1qX7j .globalTable___1448m .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___1qX7j .globalTable___1448m table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___1qX7j .globalTable___1448m table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___1qX7j .globalTable___1448m table td span .anticon {
  color: #8ccad9;
}
.prepTable___1qX7j .globalTable___1448m table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___1qX7j .globalTable___1448m .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___1qX7j .globalTable___1448m .ant-table-column-sorter .anticon-caret-up,
.prepTable___1qX7j .globalTable___1448m .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___1qX7j .globalTable___1448m i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___1qX7j .childTable___3hu6O .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___1qX7j .grayItem___eH_ua {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___1qX7j .operationWrap___b9g_9 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___1qX7j .operationWrap___b9g_9 > div {
  display: -ms-flexbox;
  display: flex;
}
.prepTable___1qX7j .operationWrap___b9g_9 a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___1qX7j .operationWrap___b9g_9 .localText___28ARR {
  color: #40c8a5;
}
.prepTable___1qX7j .lineWrap___3m_fW {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___1qX7j .lineWrap___3m_fW span {
  color: #333;
  padding-right: 20px;
}
.prepTable___1qX7j .disabledText___1TrXa {
  color: #666;
  cursor: not-allowed;
}
.prepTable___1qX7j .titleWrap___3ZzHS {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___1qX7j .titleWrap___3ZzHS .iconWrap___1NZZY {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___1qX7j .titleWrap___3ZzHS .iconWrap___1NZZY .sorterActive___2rSku {
  color: #1890ff;
}
.prepTable___1qX7j .titleWrap___3ZzHS .iconWrap___1NZZY i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___1qX7j .titleWrap___3ZzHS .iconWrap___1NZZY i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___1qX7j .btns___zoZ3- {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___1qX7j .btnsLeft___fNCFw button {
  margin-right: 20px;
}
.prepTable___1qX7j .btnsRight___26LRl button {
  margin-left: 20px;
}
.prepTable___1qX7j .baseBtn___1gfBV {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___1qX7j .baseBtn___1gfBV:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___1qX7j .globalBtn___2HQ21 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___1qX7j .globalBtn___2HQ21:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.time___6Pv8T {
  width: 100% !important;
}
.page___3dORz .btn___3Pf8t {
  margin-right: 20px;
}
.page___3dORz .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___129bn .btn___3ztwX {
  margin-right: 20px;
}
.page___3CiuC .btn___33dPt {
  margin-right: 20px;
}
.titleWrap___1EKa_ {
  width: 100%;
}
.titleWrap___1EKa_ .mainTitle___3DXx1 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1EKa_ .mainTitle___3DXx1 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1EKa_ .mainTitle___3DXx1 .titleItem___1v2kP {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___1qrsH {
  width: 100%;
}
.contentWrap___1qrsH .mainContent___tFET7 {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___1qrsH .mainContent___tFET7 li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___1KL5V {
  width: 100%;
}
.formWrap___1KL5V .buttonRow___3I6HM {
  text-align: center;
  margin-top: 10px;
}
.formWrap___1KL5V .buttonRow___3I6HM .submitBtn___3_4Wz {
  margin-left: 12px;
}
.formWrap___1KL5V .ant-form-item {
  min-height: 56px !important;
}
.spin___2u0z- {
  width: 100%;
}
.container___3nyhu {
  padding: 20px 20px 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.container___3nyhu .header___2IQSQ {
  padding-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
}
.container___3nyhu .header___2IQSQ .headerButton___Vt0Dg {
  width: 80px;
  height: 29px;
}
.container___3nyhu .header___2IQSQ .cascader___2ZURl {
  width: 20%;
  margin-right: 25px;
  margin-left: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.container___3nyhu .header___2IQSQ .cascader___2ZURl .ant-cascader-input {
  height: 45px;
}
.container___3nyhu .header___2IQSQ .info___usbxm {
  min-width: 516px;
  height: 45px;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 400;
  color: #686c6c;
  line-height: 45px;
}
.container___3nyhu .header___2IQSQ .info___usbxm img {
  width: 14px;
  margin-right: 3px;
}
.container___3nyhu .header___2IQSQ .info___usbxm .number___3zEDe {
  padding-left: 20px;
}
.container___3nyhu .header___2IQSQ .info___usbxm .line___3jZMK {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 20px;
  border-right: 1px dotted #E0E0E0;
}
.container___3nyhu .header___2IQSQ .area___AYXfJ {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: right;
  height: 45px;
  font-size: 24px;
  font-family: PingFangSC-Medium, PingFangSC;
  font-weight: 500;
  color: #0091ff;
  line-height: 45px;
}
.container___3nyhu .header___2IQSQ .area___AYXfJ img {
  width: 19px;
  line-height: 19px;
  margin-top: -2px;
  margin-right: 7px;
}
.container___3nyhu .center___FT4a5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.container___3nyhu .center___FT4a5 .statistic___1BJjQ {
  width: 300px;
  height: 260px;
  z-index: 1;
  overflow-y: hidden;
  position: absolute;
  right: 20px;
  padding: 0px 10px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.wrapper___7sWzq {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  background-color: #F4F4F4;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.wrapper___7sWzq .header___155JX {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 76px;
      flex: 0 0 76px;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
}
.wrapper___7sWzq .header___155JX > form {
  width: 100%!important;
}
.wrapper___7sWzq .header___155JX .cascader___32Vr1 {
  width: 400px;
  margin-right: 25px;
}
.wrapper___7sWzq .header___155JX .cascader___32Vr1 .ant-cascader-input {
  height: 29px;
}
.wrapper___7sWzq .header___155JX .headerButton___11tan {
  width: 80px;
  height: 29px;
  margin-left: 20px;
  margin-right: 20px;
}
.wrapper___7sWzq .center___1iN1D {
  margin: 15px 21px;
  background-color: #ffffff;
  padding: 30px;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 30px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  line-height: 30px;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ .total___2N4-_ {
  padding: 0px 13px;
  display: inline-block;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #777777;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ .total___2N4-_.active___3g98r {
  background: #f4faff;
  border-radius: 15px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #23a0f9;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ .block___1vcsY .name___19De8 {
  padding-right: 15px;
  padding-left: 20px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  color: #333333;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ .block___1vcsY .status___pydSt {
  display: inline-block;
  padding: 0px 15px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #777777;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ .block___1vcsY .status___pydSt.active___3g98r {
  background: #f4faff;
  border-radius: 15px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #23a0f9;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ .block___1vcsY .status___pydSt img {
  width: 13px;
  height: 13px;
}
.wrapper___7sWzq .center___1iN1D .tip___3YmKQ img {
  width: 14px;
  height: 14px;
}
.wrapper___7sWzq .center___1iN1D .info___2jBTe {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wrapper___7sWzq .center___1iN1D .info___2jBTe .emptyBox___20Xtf {
  width: 172px;
  height: 0px;
  margin: 10px;
  background: transparent;
}
.wrapper___7sWzq .center___1iN1D .info___2jBTe .noData___3OkF1 {
  width: 100%;
  height: 300px;
  line-height: 300px;
  text-align: center;
}
.box___nggd9 {
  width: 172px;
  height: 139px;
  position: relative;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTcycHgiIGhlaWdodD0iMTM5cHgiIHZpZXdCb3g9IjAgMCAxNzIgMTM5IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPue8lue7hCAzPC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxyZWN0IGlkPSJwYXRoLTEiIHg9IjIxIiB5PSI1NSIgd2lkdGg9IjEyOCIgaGVpZ2h0PSIyOSIgcng9IjE0LjUiPjwvcmVjdD4KICAgICAgICA8ZmlsdGVyIHg9Ii0zLjklIiB5PSItMTMuOCUiIHdpZHRoPSIxMDcuOCUiIGhlaWdodD0iMTM0LjUlIiBmaWx0ZXJVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIGlkPSJmaWx0ZXItMiI+CiAgICAgICAgICAgIDxmZU9mZnNldCBkeD0iMCIgZHk9IjEiIGluPSJTb3VyY2VBbHBoYSIgcmVzdWx0PSJzaGFkb3dPZmZzZXRPdXRlcjEiPjwvZmVPZmZzZXQ+CiAgICAgICAgICAgIDxmZUdhdXNzaWFuQmx1ciBzdGREZXZpYXRpb249IjEuNSIgaW49InNoYWRvd09mZnNldE91dGVyMSIgcmVzdWx0PSJzaGFkb3dCbHVyT3V0ZXIxIj48L2ZlR2F1c3NpYW5CbHVyPgogICAgICAgICAgICA8ZmVDb21wb3NpdGUgaW49InNoYWRvd0JsdXJPdXRlcjEiIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJvdXQiIHJlc3VsdD0ic2hhZG93Qmx1ck91dGVyMSI+PC9mZUNvbXBvc2l0ZT4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggdmFsdWVzPSIwIDAgMCAwIDAuNzgzMTE3Mzc4ICAgMCAwIDAgMCAwLjg5Mzk5NTU3MiAgIDAgMCAwIDAgMSAgMCAwIDAgMSAwIiB0eXBlPSJtYXRyaXgiIGluPSJzaGFkb3dCbHVyT3V0ZXIxIj48L2ZlQ29sb3JNYXRyaXg+CiAgICAgICAgPC9maWx0ZXI+CiAgICAgICAgPG1hc2sgaWQ9Im1hc2stMyIgbWFza0NvbnRlbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIG1hc2tVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHg9IjAiIHk9IjAiIHdpZHRoPSIxMjgiIGhlaWdodD0iMjkiIGZpbGw9IndoaXRlIj4KICAgICAgICAgICAgPHVzZSB4bGluazpocmVmPSIjcGF0aC0xIj48L3VzZT4KICAgICAgICA8L21hc2s+CiAgICAgICAgPGNpcmNsZSBpZD0icGF0aC00IiBjeD0iODMiIGN5PSIyNSIgcj0iNCI+PC9jaXJjbGU+CiAgICAgICAgPGZpbHRlciB4PSItODcuNSUiIHk9Ii02Mi41JSIgd2lkdGg9IjI3NS4wJSIgaGVpZ2h0PSIyNzUuMCUiIGZpbHRlclVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgaWQ9ImZpbHRlci01Ij4KICAgICAgICAgICAgPGZlT2Zmc2V0IGR4PSIwIiBkeT0iMiIgaW49IlNvdXJjZUFscGhhIiByZXN1bHQ9InNoYWRvd09mZnNldE91dGVyMSI+PC9mZU9mZnNldD4KICAgICAgICAgICAgPGZlR2F1c3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMiIgaW49InNoYWRvd09mZnNldE91dGVyMSIgcmVzdWx0PSJzaGFkb3dCbHVyT3V0ZXIxIj48L2ZlR2F1c3NpYW5CbHVyPgogICAgICAgICAgICA8ZmVDb2xvck1hdHJpeCB2YWx1ZXM9IjAgMCAwIDAgMC43MTA0Mjc5ODkgICAwIDAgMCAwIDAuNzEwNDI3OTg5ICAgMCAwIDAgMCAwLjcxMDQyNzk4OSAgMCAwIDAgMC41IDAiIHR5cGU9Im1hdHJpeCIgaW49InNoYWRvd0JsdXJPdXRlcjEiPjwvZmVDb2xvck1hdHJpeD4KICAgICAgICA8L2ZpbHRlcj4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSLpobXpnaItMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IueUu+advyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE2Ny4wMDAwMDAsIC04OC4wMDAwMDApIj4KICAgICAgICAgICAgPGcgaWQ9Iue8lue7hC0zIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjguMDAwMDAwLCA4OS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSLnirbmgIEiPgogICAgICAgICAgICAgICAgICAgIDx0ZXh0IGlkPSLovpPlhaXmlofmnKwiIGZvbnQtZmFtaWx5PSJQaW5nRmFuZ1NDLU1lZGl1bSwgUGluZ0ZhbmcgU0MiIGZvbnQtc2l6ZT0iMjIiIGZvbnQtd2VpZ2h0PSI0MDAiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICAgICAgICAgICAgICA8dHNwYW4geD0iNDQiIHk9IjExNyI+6L6T5YWl5paH5pysPC90c3Bhbj4KICAgICAgICAgICAgICAgICAgICA8L3RleHQ+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTgyLjkwOTI4ODYsMC41ODAxNDU2MDcgTDUuMDkzMTYzMzksNDcuNTE4ODMyNSBDMi4yNDI1NjYxNCw0OS4yMzgzMTI4IDAuNSw1Mi4zMjQ0NjcxIDAuNSw1NS42NTM1MDg2IEwwLjUsMTI5LjAwNzEwOSBDMC41LDEzMC44MDIwMzQgMS4yMjc1MzcyOCwxMzIuNDI3MDM0IDIuNDAzODA1OTIsMTMzLjYwMzMwMyBDMy41ODAwNzQ1NiwxMzQuNzc5NTcxIDUuMjA1MDc0NTYsMTM1LjUwNzEwOSA3LDEzNS41MDcxMDkgTDE2MywxMzUuNTA3MTA5IEMxNjQuNzk0OTI1LDEzNS41MDcxMDkgMTY2LjQxOTkyNSwxMzQuNzc5NTcxIDE2Ny41OTYxOTQsMTMzLjYwMzMwMyBDMTY4Ljc3MjQ2MywxMzIuNDI3MDM0IDE2OS41LDEzMC44MDIwMzQgMTY5LjUsMTI5LjAwNzEwOSBMMTY5LjUsNTQuMDU5NzY5NCBDMTY5LjUsNTIuODk1ODY4OCAxNjkuMTg4ODAxLDUxLjc3NjM5NjEgMTY4LjYyNTI2MSw1MC44MDMwMTYxIEMxNjguMDYxNzIxLDQ5LjgyOTYzNjIgMTY3LjI0NTg0MSw0OS4wMDIzNDkgMTY2LjIzNjQ3OSw0OC40MjI4MTk4IEw4Mi45MDkyODg2LDAuNTgwMTQ1NjA3IFoiIGlkPSLnn6nlvaIiIHN0cm9rZT0iI0Y4RkFGRiIgZmlsbD0iI0Y4RkFGRiI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDxnIGlkPSLnn6nlvaIiIHN0cm9rZS1kYXNoYXJyYXk9IjIiPgogICAgICAgICAgICAgICAgICAgICAgICA8dXNlIGZpbGw9ImJsYWNrIiBmaWxsLW9wYWNpdHk9IjEiIGZpbHRlcj0idXJsKCNmaWx0ZXItMikiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPgogICAgICAgICAgICAgICAgICAgICAgICA8dXNlIHN0cm9rZT0iI0NCRENGRiIgbWFzaz0idXJsKCNtYXNrLTMpIiBzdHJva2Utd2lkdGg9IjQiIGZpbGw9IiNGOEZBRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgeGxpbms6aHJlZj0iI3BhdGgtMSI+PC91c2U+CiAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgPHBvbHlsaW5lIGlkPSLot6/lvoQiIHN0cm9rZT0iI0RCRTNFRCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4My4wMDAwMDAsIDU1LjAwMDAwMCkgcm90YXRlKC00NS4wMDAwMDApIHRyYW5zbGF0ZSgtODMuMDAwMDAwLCAtNTUuMDAwMDAwKSAiIHBvaW50cz0iNjIgMzQgMTA0IDM0IDEwNCA3NiI+PC9wb2x5bGluZT4KICAgICAgICAgICAgICAgIDxnIGlkPSLmpK3lnIblvaIiPgogICAgICAgICAgICAgICAgICAgIDx1c2UgZmlsbD0iYmxhY2siIGZpbGwtb3BhY2l0eT0iMSIgZmlsdGVyPSJ1cmwoI2ZpbHRlci01KSIgeGxpbms6aHJlZj0iI3BhdGgtNCI+PC91c2U+CiAgICAgICAgICAgICAgICAgICAgPHVzZSBmaWxsPSIjRkZGRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHhsaW5rOmhyZWY9IiNwYXRoLTQiPjwvdXNlPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) no-repeat;
  background-size: 100%;
  margin: 10px;
  cursor: pointer;
}
.box___nggd9 .imgs___gYldl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: 56px;
  left: 22px;
  height: 29px;
  width: 128px;
}
.box___nggd9 .imgs___gYldl img {
  width: 13px;
  height: 13px;
}
.box___nggd9 .title___5tzue {
  position: absolute;
  bottom: 19px;
  width: 170px;
  text-align: center;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #666666;
}
.orangeColor___3lQGE {
  color: #007acc;
}
.globalTableLink___PhY24 {
  color: #76b1cb;
}
.previewContent___B_5cE .ant-carousel {
  width: 100%;
}
.previewContent___B_5cE .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___B_5cE .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___B_5cE .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___B_5cE .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___B_5cE .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___1w4Bp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 32px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___1w4Bp .formItem___2iecu {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.main___1w4Bp .formItem___2iecu .ant-form-item-control-wrapper {
  width: 100%;
}
.main___1w4Bp .formItem___2iecu .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___1w4Bp .formItem___2iecu .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___1w4Bp .searchButton___tfWGw {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___1w4Bp .searchButton___tfWGw .button___39w3a {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___1w4Bp .searchButton___tfWGw .button___39w3a:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___1fUUM {
  color: #007acc;
}
.globalTableLink___2f1u3 {
  color: #76b1cb;
}
.previewContent___1sCXi .ant-carousel {
  width: 100%;
}
.previewContent___1sCXi .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1sCXi .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1sCXi .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1sCXi .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1sCXi .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-content {
  border: 0;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___2QB_t .globalTable___3Kv3j table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___2QB_t .globalTable___3Kv3j table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___2QB_t .globalTable___3Kv3j table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___2QB_t .globalTable___3Kv3j table td span .anticon {
  color: #8ccad9;
}
.prepTable___2QB_t .globalTable___3Kv3j table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___2QB_t .globalTable___3Kv3j .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-column-sorter .anticon-caret-up,
.prepTable___2QB_t .globalTable___3Kv3j .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___2QB_t .globalTable___3Kv3j i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___2QB_t .childTable___2JPI6 .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___2QB_t .grayItem___GzRot {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___2QB_t .operationWrap___1jWDd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___2QB_t .operationWrap___1jWDd a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___2QB_t .operationWrap___1jWDd .localText___1yJ9q {
  color: #40c8a5;
}
.prepTable___2QB_t .lineWrap___4zLi5 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___2QB_t .lineWrap___4zLi5 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___2QB_t .disabledText___38HNA {
  color: #666;
  cursor: not-allowed;
}
.prepTable___2QB_t .titleWrap___3YCZs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___2QB_t .titleWrap___3YCZs .iconWrap___3bfZ5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___2QB_t .titleWrap___3YCZs .iconWrap___3bfZ5 .sorterActive___3QAtN {
  color: #1890ff;
}
.prepTable___2QB_t .titleWrap___3YCZs .iconWrap___3bfZ5 i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___2QB_t .titleWrap___3YCZs .iconWrap___3bfZ5 i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___2QB_t .btns___1hdH6 {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___2QB_t .btnsLeft___2HdbJ button {
  margin-right: 20px;
}
.prepTable___2QB_t .btnsRight___2OjYk button {
  margin-left: 20px;
}
.prepTable___2QB_t .baseBtn___1vzx1 {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___2QB_t .baseBtn___1vzx1:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___2QB_t .globalBtn___1QyhS {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___2QB_t .globalBtn___1QyhS:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.operation___1d65X > a:last-of-type {
  border-left: 1px solid #d3d4d5;
}
.chart___1batV {
  display: -ms-flexbox;
  display: flex;
}
.page___3lbnI {
  overflow-y: scroll;
}
.orangeColor___20EB9 {
  color: #007acc;
}
.globalTableLink___2P5BE {
  color: #76b1cb;
}
.previewContent___3aOiQ .ant-carousel {
  width: 100%;
}
.previewContent___3aOiQ .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3aOiQ .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3aOiQ .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3aOiQ .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3aOiQ .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___1OjDO {
  width: 100%;
}
.titleWrap___1OjDO .mainTitle___186r1 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1OjDO .mainTitle___186r1 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1OjDO .mainTitle___186r1 .titleItem___2fpTd {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2LXow {
  width: 100%;
}
.contentWrap___2LXow .mainContent___1-dZg {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2LXow .mainContent___1-dZg li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___3ms1v {
  width: 100%;
}
.formWrap___3ms1v .buttonRow___3Tgf4 {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3ms1v .buttonRow___3Tgf4 .submitBtn___Lupjo {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___3ms1v .buttonRow___3Tgf4 .submitBtn___Lupjo:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___3ms1v .ant-form-item {
  min-height: 56px !important;
}
.spin___37o56 {
  width: 100%;
}
.orangeColor___AuJWu {
  color: #007acc;
}
.globalTableLink___2sKyh {
  color: #76b1cb;
}
.previewContent___FzZ3g .ant-carousel {
  width: 100%;
}
.previewContent___FzZ3g .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___FzZ3g .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___FzZ3g .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___FzZ3g .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___FzZ3g .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___3WTAH {
  width: 100%;
}
.titleWrap___3WTAH .mainTitle___2LB0R {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___3WTAH .mainTitle___2LB0R li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___3WTAH .mainTitle___2LB0R .titleItem___3oWeB {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___A9go8 {
  width: 100%;
}
.contentWrap___A9go8 .mainContent___2qfUy {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___A9go8 .mainContent___2qfUy li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___AulSu {
  width: 100%;
}
.formWrap___AulSu .buttonRow___3R8jG {
  text-align: center;
  margin-top: 10px;
}
.formWrap___AulSu .buttonRow___3R8jG .submitBtn___LPB_m {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___AulSu .buttonRow___3R8jG .submitBtn___LPB_m:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___AulSu .ant-form-item {
  min-height: 59px !important;
}
.spin___NosO2 {
  width: 100%;
}
.page_zqjkfx_index___2Zklu {
  background-color: #f0f3fa;
  padding: 20px;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 {
  margin-right: 15px;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 .chartDiv___jouma {
  height: 260px;
  margin-top: 15px;
  background-color: white;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 .sortDiv___1TgC8 {
  margin-top: 15px;
  padding: 10px;
  background-color: #ffffff;
  height: 317px;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 .sortDiv___1TgC8 .title___1Tk6C {
  font-family: 'Arial Negreta Arial Normal Arial sans-serif';
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #000000;
  height: 40px;
  line-height: 40px;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 .sortDiv___1TgC8 .content___3yiiC {
  font-family: 'Arial Negreta Arial Normal Arial sans-serif';
  font-style: normal;
  font-size: 14px;
  color: #000000;
  height: 40px;
  line-height: 40px;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 .sortDiv___1TgC8 .content___3yiiC span:nth-child(1) {
  font-weight: 600;
  padding-right: 15px;
}
.page_zqjkfx_index___2Zklu .left___2PHU8 .sortDiv___1TgC8 .content___3yiiC span:nth-child(2) {
  display: inline-block;
  width: 86px;
}
.page_zqjkfx_index___2Zklu .center___2qc4i {
  background-color: #f0f3fa;
  margin-right: 15px;
}
.page_zqjkfx_index___2Zklu .center___2qc4i .bigChartDiv___2b5Lg {
  height: 450px;
  margin-bottom: 15px;
  background-color: white;
}
.page_zqjkfx_index___2Zklu .center___2qc4i .bigChartDiv___2b5Lg .top___CPxA5 {
  height: 60px;
  line-height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0px 20px;
}
.page_zqjkfx_index___2Zklu .center___2qc4i .bigChartDiv___2b5Lg .top___CPxA5 .title___1Tk6C {
  width: 130px;
  font-family: 'Arial Negreta Arial Normal Arial sans-serif';
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #000000;
}
.page_zqjkfx_index___2Zklu .center___2qc4i .bigChartDiv___2b5Lg .top___CPxA5 .ant-select {
  width: 180px!important;
  margin-right: 10px!important;
}
.page_zqjkfx_index___2Zklu .center___2qc4i .bigChartDiv___2b5Lg .top___CPxA5 .ant-calendar-picker {
  width: 260px !important;
}
.page_zqjkfx_index___2Zklu .center___2qc4i .bigChartDiv___2b5Lg .bottom___1f2BW {
  height: 390px;
  width: 100%;
}
.page_zqjkfx_index___2Zklu .right___RBbFj .block___XbAQz {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #ffffff;
}
.page_zqjkfx_index___2Zklu .right___RBbFj .block___XbAQz .title___1Tk6C {
  font-family: 'Arial Negreta Arial Normal Arial sans-serif';
  font-weight: 700;
  font-style: normal;
  color: #F59A23;
  height: 30px;
  line-height: 30px;
}
.page_zqjkfx_index___2Zklu .right___RBbFj .block___XbAQz .content___3yiiC {
  font-family: 'Arial Negreta Arial Normal Arial sans-serif';
  font-style: normal;
  font-size: 14px;
  color: #000000;
  height: 30px;
  line-height: 30px;
}
.page_zqjkfx_index___2Zklu .right___RBbFj .block___XbAQz .content___3yiiC span:nth-child(1) {
  font-weight: 600;
  padding-right: 20px;
}
.orangeColor___3ZgJA {
  color: #007acc;
}
.globalTableLink___2DZbm {
  color: #76b1cb;
}
.previewContent___2RdRE .ant-carousel {
  width: 100%;
}
.previewContent___2RdRE .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2RdRE .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2RdRE .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2RdRE .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2RdRE .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.spin___z-VxW {
  width: 100%;
}
.titleWrap___2Qayf {
  width: 100%;
}
.titleWrap___2Qayf .mainTitle___1lGe2 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2Qayf .mainTitle___1lGe2 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2Qayf .mainTitle___1lGe2 .titleItem___12n3U {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___1b4CY {
  width: 100%;
}
.contentWrap___1b4CY .mainContent___V4z61 {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___1b4CY .mainContent___V4z61 li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contentDouble___18_if {
  width: 100%;
}
.contentDouble___18_if .mainContent___V4z61 {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentDouble___18_if .mainContent___V4z61 li {
  width: 50%;
  text-align: left;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.formWrap___3vj_3 {
  width: 100%;
}
.formWrap___3vj_3 .buttonRow___3RMBi {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3vj_3 .buttonRow___3RMBi .submitBtn___1rEtz {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___3vj_3 .buttonRow___3RMBi .submitBtn___1rEtz:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___3vj_3 .ant-form-item {
  min-height: 56px !important;
}
.formWrap___3vj_3 .ant-cascader-picker-disabled,
.formWrap___3vj_3 .ant-input-number-disabled,
.formWrap___3vj_3 .ant-input-disabled {
  background-color: #fff;
}
.formWrap___3vj_3 .ant-select-disabled .ant-select-selection {
  background-color: inherit;
}
.formWrap___3vj_3 .ant-select-disabled .ant-select-selection .ant-select-arrow-icon {
  visibility: hidden;
}
.page___iwEGV .btn___-NZGt {
  margin-right: 20px;
}
.page___iwEGV .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2lMWD .btn___1BmXG {
  margin-right: 20px;
}
.page___2lMWD .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___3qrND .btn___fxycF {
  margin-right: 20px;
}
.page___3qrND .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.previewBtn___2s2Sa {
  cursor: pointer;
  color: #1890ff;
}
.previewTitle___2OivU {
  text-align: center;
}
.qrCodeWrap___3tcfX {
  height: 120px;
  margin: 0 auto;
}
.qrCodeWrap___3tcfX canvas {
  margin: 0 auto;
}
.page___TzqHh .btn___2d3Or {
  margin-right: 20px;
}
.page___TzqHh .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___3oiz0 .btn___1-PyE {
  margin-right: 20px;
}
.page___3oiz0 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2Vd0E .btn___1ONsn {
  margin-right: 20px;
}
.page___2Vd0E .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___25Eks .btn___RpfNG {
  margin-right: 20px;
}
.page___25Eks .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___253JU .btn___hrp9K {
  margin-right: 20px;
}
.page___253JU .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.operationWrap___3w_DL {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.operationWrap___3w_DL a {
  padding: 0 10px;
  min-width: 50px;
  border-right: 1px solid #ddd;
}
.operationWrap___3w_DL a:last-of-type {
  border: 0;
}
.dis___2l1OO {
  color: #666;
  cursor: default;
}
.dis___2l1OO:hover {
  color: #666;
}
.content___2UPZF {
  width: 100%;
}
.content___2UPZF > div:nth-child(3) > div:nth-child(1) {
  background-color: #fff!important;
}
.content___2UPZF > div:nth-child(3) > div:nth-child(2) {
  padding: 0px!important;
}
.content___2UPZF .header___2ZBZo .btn___1ufT3 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.content___2UPZF .header___2ZBZo .leftBtn___3HUB5 {
  border-radius: 4px 0px 0px 4px;
}
.content___2UPZF .header___2ZBZo .leftBtn___3HUB5.active___bz_Z8 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.content___2UPZF .header___2ZBZo .rightBtn___3cJ_J {
  border-radius: 0px 4px 4px 0px;
}
.content___2UPZF .header___2ZBZo .rightBtn___3cJ_J.active___bz_Z8 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
:grobal .ant-modal___cRgWN {
  margin-left: 40%!important;
}
.page___1jsUb .btn___1h44n {
  margin-right: 20px;
}
.page___1jsUb .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.container___k81k_ {
  width: 100%;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa {
  width: 100%;
  padding: 20px 0px;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 {
  width: 100%;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .top___2ryjl .buttons___3sFGI {
  width: 75px;
  height: 32px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 400;
  color: #262828;
  line-height: 32px;
  margin-right: 8px;
  display: inline-block;
  text-align: center;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .top___2ryjl .buttons___3sFGI:hover {
  cursor: pointer;
  color: #0091ff;
  background: #e7f5ff;
  border-radius: 14px;
  font-weight: 500;
  font-family: PingFangSC-Medium, PingFangSC;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .top___2ryjl .active___2s2ez {
  height: 32px;
  width: 75px;
  background: #e7f5ff;
  border-radius: 14px;
  display: inline-block;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFangSC;
  font-weight: 500;
  color: #0091ff;
  line-height: 32px;
  margin-right: 8px;
  text-align: center;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .top___2ryjl .active___2s2ez:hover {
  cursor: pointer;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .top___2ryjl .search___3UQul {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .title___30jbI {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .button___2-DqP {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .row___2Zce3 {
  display: -ms-flexbox;
  display: flex;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .row___2Zce3 .cell___38-dt {
  border: 1px solid #ecedee;
  color: #73777a;
  padding: 14px 12px;
  position: relative;
  line-height: 20px;
  word-break: break-word;
  -ms-flex-align: center;
      align-items: center;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .row___2Zce3 .titleCell___1kZgF {
  background-color: #fbfbfc;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .table___3IkZa > div > div:nth-of-type(1) {
  height: 0px!important;
  margin-bottom: 0px!important;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .center___18WT2 .table___3IkZa > div > div:nth-of-type(2) {
  padding: 0px!important;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .list___2EjJ5 {
  width: 100%;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .list___2EjJ5 > div > div:nth-of-type(1) {
  width: 100%;
  height: 0px!important;
  margin-bottom: 0px!important;
}
.container___k81k_ .tabs___3sHVP .tabContent___VSEHa .list___2EjJ5 > div > div:nth-of-type(2) {
  padding: 0px!important;
}
.wrapper___3Zh81 .header___1tWyC .top___38-GR {
  padding-top: 20px;
}
.wrapper___3Zh81 .header___1tWyC .top___38-GR .box___2md2f {
  padding: 0px 20px;
  border-right: 1px solid #eeeff0;
}
.wrapper___3Zh81 .header___1tWyC .top___38-GR .boxLast___3odw4 {
  padding: 0px 20px;
}
.wrapper___3Zh81 .header___1tWyC .top___38-GR .title___1-YD- {
  display: block;
}
.wrapper___3Zh81 .header___1tWyC .top___38-GR .num___xEEDR {
  line-height: 50px;
  font-size: 24px;
  font-weight: 500;
  padding-left: 23px;
}
.wrapper___3Zh81 .content___2BZIF {
  width: 100%;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL {
  width: 100%;
  height: calc(100vh - 298px);
  overflow-y: scroll;
  background-color: #eeeff0;
  padding: 20px;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q {
  width: 100%;
  background-color: white;
  padding: 20px;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q .title___1-YD- {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q .button___2_0ol {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q .row___25ZHL {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q .row___25ZHL .cell___21ZyO {
  border: 1px solid #ecedee;
  color: #73777a;
  padding: 14px 12px;
  position: relative;
  line-height: 20px;
  word-break: break-word;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q .row___25ZHL .titleCell___Kqui4 {
  background-color: #fbfbfc;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .center___P-k8q .top___38-GR {
  margin-bottom: 20px;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .list___hHjPp {
  width: 100%;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .list___hHjPp > div > div:nth-of-type(1) {
  width: 100%;
  height: 0px!important;
  margin-bottom: 0px!important;
}
.wrapper___3Zh81 .content___2BZIF .tabs___1W8le .tabContent___n2ZAL .list___hHjPp > div > div:nth-of-type(2) {
  padding: 0px!important;
}
.page___3PU54 .btn___100jE {
  margin-right: 20px;
}
.page___3PU54 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.orangeColor___1tbJi {
  color: #007acc;
}
.globalTableLink___1ETrw {
  color: #76b1cb;
}
.previewContent___gU6hZ .ant-carousel {
  width: 100%;
}
.previewContent___gU6hZ .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___gU6hZ .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___gU6hZ .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___gU6hZ .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___gU6hZ .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.normalContentNew___2u30G {
  width: 100%;
  padding: 10px 40px;
}
.normalContentNew___2u30G .ant-form-item {
  min-height: 50px !important;
}
.normalContentNew___2u30G .ant-form-item-label label {
  font-size: 14px!important;
  font-weight: normal!important;
}
.buttonRow___1cg_9 {
  text-align: center;
  margin-top: 10px;
}
.buttonRow___1cg_9 .submitBtn___2VhQa {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.buttonRow___1cg_9 .submitBtn___2VhQa:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.titleWrap___18z2W {
  width: 100%;
}
.titleWrap___18z2W .mainTitle___k1iLO {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___18z2W .mainTitle___k1iLO li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___18z2W .mainTitle___k1iLO .titleItem___1yrz1 {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___24QAw {
  width: 100%;
}
.contentWrap___24QAw .mainContent___2xtnQ {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___24QAw .mainContent___2xtnQ li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.radioDiv___2TkVV > div.ant-checkbox-group___2gU1g {
  height: 190px;
  overflow-y: scroll;
}
.radioDiv___2TkVV .col___1nUAi .active___2s7aR {
  margin: 5px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  background: #1890ff;
  border: 1px solid #1890ff;
  color: #fff;
}
.radioDiv___2TkVV .col___1nUAi .inActive___2VTnh {
  margin: 5px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dedede;
  color: #000;
}
.radioDiv___2TkVV :nth-child(2) label {
  width: 100px;
}
.radioDiv___2TkVV :grobal .ant-checkbox-group___2gU1g .ant-checkbox-group-item___17QRs {
  width: 100px!important;
}
.page___bDxyg .btn___3y49f {
  margin-right: 20px;
}
.page___bDxyg .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.orangeColor___2m6CU {
  color: #007acc;
}
.globalTableLink___2HNH- {
  color: #76b1cb;
}
.previewContent___1h3ya .ant-carousel {
  width: 100%;
}
.previewContent___1h3ya .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1h3ya .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1h3ya .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1h3ya .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1h3ya .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.spin___3i0BL {
  width: 100%;
}
.titleWrap___1Yqj6 {
  width: 100%;
}
.titleWrap___1Yqj6 .mainTitle___8fJPa {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1Yqj6 .mainTitle___8fJPa li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1Yqj6 .mainTitle___8fJPa .titleItem___1FSoH {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2UXca {
  width: 100%;
}
.contentWrap___2UXca .mainContent___1orNJ {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2UXca .mainContent___1orNJ li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contentDouble___3TkJR {
  width: 100%;
}
.contentDouble___3TkJR .mainContent___1orNJ {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #f5f6fa;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentDouble___3TkJR .mainContent___1orNJ li {
  width: 50%;
  text-align: left;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.formWrap___1msIn {
  width: 100%;
}
.formWrap___1msIn .buttonRow___1sx8d {
  text-align: center;
  margin-top: 10px;
}
.formWrap___1msIn .buttonRow___1sx8d .submitBtn___3XTlr {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___1msIn .buttonRow___1sx8d .submitBtn___3XTlr:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___1msIn .ant-form-item {
  min-height: 56px !important;
}
.formWrap___1msIn .ant-cascader-picker-disabled,
.formWrap___1msIn .ant-input-number-disabled,
.formWrap___1msIn .ant-input-disabled {
  background-color: #fff;
}
.formWrap___1msIn .ant-select-disabled .ant-select-selection {
  background-color: inherit;
}
.formWrap___1msIn .ant-select-disabled .ant-select-selection .ant-select-arrow-icon {
  visibility: hidden;
}
.formWrap___1msIn .submitBtn___3XTlr {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.page___HHPgu .btn___1hrqI {
  margin-right: 20px;
}
.page___HHPgu .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.operation___2XkCm > a:first-of-type {
  border-right: 1px solid #d3d4d5;
}
.model_tit___1vepg {
  margin-bottom: 20px;
}
.model_tit___1vepg p {
  margin: 0;
  text-indent: 6px;
  border-left: 8px solid #29aae8;
  color: #29aae8;
}
.modelFoot___34UJx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  height: 60px;
  margin: 20px 0;
}
.seeItem___1vXwA {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  color: #666;
}
.seeItem___1vXwA .minWidth___NFVdh {
  display: block;
  text-align: right;
  width: 100px;
  margin-right: 10px;
  color: #999;
}
.second_tab2___1zrXh {
  margin-top: 20px;
}
.second_tab2___1zrXh .second_tab2_items___2hqup {
  height: 300px;
  overflow: auto;
  padding: 0 10px;
}
.second_tab2___1zrXh .second_tab2_item___Lqjym {
  display: block;
  line-height: 46px;
  margin-bottom: 10px;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  padding: 0 10px;
  border-radius: 3px;
}
.model_second_tab3___3Hquq .model_second_tab3_icon___3gxW2 {
  font-size: 80px;
  display: block;
  margin: 20px 0 40px;
}
.model_second_tab3___3Hquq .model_second_tab3_btn___1P4G4 {
  margin: 20px auto;
  display: block;
}
.computerTit___1J_il {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 20px;
}
.second_cont___2LyPc {
  width: 80%;
  height: auto;
  margin: 30px auto 0;
}
.second_contTab___3QFpy {
  border: 1px solid #F1F1F1;
}
.ant-form-item___3GpZd {
  margin-bottom: 0 !important;
  min-height: 64px !important;
}
.ant-form-item___3GpZd .ant-form-explain___1DWcp {
  font-size: 12px !important;
  line-height: 12px !important;
  float: left;
}
.second_cont___2LyPc .ant-tabs-bar {
  position: relative;
  z-index: 10;
  margin: 0;
}
.orangeColor___JtJRg {
  color: #007acc;
}
.globalTableLink___lIjyC {
  color: #76b1cb;
}
.previewContent___WFcSg .ant-carousel {
  width: 100%;
}
.previewContent___WFcSg .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___WFcSg .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___WFcSg .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___WFcSg .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___WFcSg .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-content {
  border: 0;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___7dNr8 .globalTable___1jGw5 table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___7dNr8 .globalTable___1jGw5 table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___7dNr8 .globalTable___1jGw5 table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___7dNr8 .globalTable___1jGw5 table td span .anticon {
  color: #8ccad9;
}
.prepTable___7dNr8 .globalTable___1jGw5 table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___7dNr8 .globalTable___1jGw5 .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-column-sorter .anticon-caret-up,
.prepTable___7dNr8 .globalTable___1jGw5 .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___7dNr8 .globalTable___1jGw5 i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___7dNr8 .childTable___gOkBM .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___7dNr8 .grayItem___2ahcI {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___7dNr8 .operationWrap___QDMMC {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___7dNr8 .operationWrap___QDMMC a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___7dNr8 .operationWrap___QDMMC .localText___3g9rV {
  color: #40c8a5;
}
.prepTable___7dNr8 .lineWrap___3hlkE {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___7dNr8 .lineWrap___3hlkE span {
  color: #333;
  padding-right: 20px;
}
.prepTable___7dNr8 .disabledText___3DNvH {
  color: #666;
  cursor: not-allowed;
}
.prepTable___7dNr8 .titleWrap___34AWG {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___7dNr8 .titleWrap___34AWG .iconWrap___30oL2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___7dNr8 .titleWrap___34AWG .iconWrap___30oL2 .sorterActive___2r8ju {
  color: #1890ff;
}
.prepTable___7dNr8 .titleWrap___34AWG .iconWrap___30oL2 i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___7dNr8 .titleWrap___34AWG .iconWrap___30oL2 i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___7dNr8 .btns___3MIUn {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___7dNr8 .btnsLeft___1rAIa button {
  margin-right: 20px;
}
.prepTable___7dNr8 .btnsRight___3OXWf button {
  margin-left: 20px;
}
.prepTable___7dNr8 .baseBtn___3y0n3 {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___7dNr8 .baseBtn___3y0n3:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___7dNr8 .globalBtn___2-5gI {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___7dNr8 .globalBtn___2-5gI:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.operation___27Pc9 > a:last-of-type {
  border-left: 1px solid #d3d4d5;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-steps {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 0;
}
.ant-steps-item {
  position: relative;
  display: inline-block;
  -ms-flex: 1 1;
      flex: 1 1;
  overflow: hidden;
  vertical-align: top;
}
.ant-steps-item-container {
  outline: none;
}
.ant-steps-item:last-child {
  -ms-flex: none;
      flex: none;
}
.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-tail,
.ant-steps-item:last-child > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  display: none;
}
.ant-steps-item-icon,
.ant-steps-item-content {
  display: inline-block;
  vertical-align: top;
}
.ant-steps-item-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  line-height: 32px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.ant-steps-item-icon > .ant-steps-icon {
  position: relative;
  top: -1px;
  color: #1890ff;
  line-height: 1;
}
.ant-steps-item-tail {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  padding: 0 10px;
}
.ant-steps-item-tail::after {
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  border-radius: 1px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  content: '';
}
.ant-steps-item-title {
  position: relative;
  display: inline-block;
  padding-right: 16px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  line-height: 32px;
}
.ant-steps-item-title::after {
  position: absolute;
  top: 16px;
  left: 100%;
  display: block;
  width: 9999px;
  height: 1px;
  background: #e8e8e8;
  content: '';
}
.ant-steps-item-subtitle {
  display: inline;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: normal;
  font-size: 14px;
}
.ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-steps-item-wait .ant-steps-item-icon {
  background-color: #fff;
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon {
  color: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: rgba(0, 0, 0, 0.25);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #e8e8e8;
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-wait > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #e8e8e8;
}
.ant-steps-item-process .ant-steps-item-icon {
  background-color: #fff;
  border-color: #1890ff;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #1890ff;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #1890ff;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.85);
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #e8e8e8;
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.65);
}
.ant-steps-item-process > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #e8e8e8;
}
.ant-steps-item-process .ant-steps-item-icon {
  background: #1890ff;
}
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #fff;
}
.ant-steps-item-process .ant-steps-item-title {
  font-weight: 500;
}
.ant-steps-item-finish .ant-steps-item-icon {
  background-color: #fff;
  border-color: #1890ff;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon {
  color: #1890ff;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #1890ff;
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: rgba(0, 0, 0, 0.65);
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #1890ff;
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
}
.ant-steps-item-finish > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #1890ff;
}
.ant-steps-item-error .ant-steps-item-icon {
  background-color: #fff;
  border-color: #f5222d;
}
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon {
  color: #f5222d;
}
.ant-steps-item-error .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #f5222d;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
  color: #f5222d;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  background-color: #e8e8e8;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-description {
  color: #f5222d;
}
.ant-steps-item-error > .ant-steps-item-container > .ant-steps-item-tail::after {
  background-color: #e8e8e8;
}
.ant-steps-item.ant-steps-next-error .ant-steps-item-title::after {
  background: #f5222d;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] {
  cursor: pointer;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-title,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-description,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button'] .ant-steps-item-icon .ant-steps-icon {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-title,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-subtitle,
.ant-steps .ant-steps-item:not(.ant-steps-item-active) > .ant-steps-item-container[role='button']:hover .ant-steps-item-description {
  color: #1890ff;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon {
  border-color: #1890ff;
}
.ant-steps .ant-steps-item:not(.ant-steps-item-active):not(.ant-steps-item-process) > .ant-steps-item-container[role='button']:hover .ant-steps-item-icon .ant-steps-icon {
  color: #1890ff;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  margin-right: 16px;
  white-space: nowrap;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child {
  margin-right: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child .ant-steps-item-title {
  padding-right: 0;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-tail {
  display: none;
}
.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item-description {
  max-width: 140px;
  white-space: normal;
}
.ant-steps-item-custom .ant-steps-item-icon {
  height: auto;
  background: none;
  border: 0;
}
.ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
  top: 0;
  left: 0.5px;
  width: 32px;
  height: 32px;
  font-size: 24px;
  line-height: 32px;
}
.ant-steps-item-custom.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon {
  color: #1890ff;
}
.ant-steps:not(.ant-steps-vertical) .ant-steps-item-custom .ant-steps-item-icon {
  width: auto;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item {
  margin-right: 12px;
}
.ant-steps-small.ant-steps-horizontal:not(.ant-steps-label-vertical) .ant-steps-item:last-child {
  margin-right: 0;
}
.ant-steps-small .ant-steps-item-icon {
  width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  border-radius: 24px;
}
.ant-steps-small .ant-steps-item-title {
  padding-right: 12px;
  font-size: 14px;
  line-height: 24px;
}
.ant-steps-small .ant-steps-item-title::after {
  top: 12px;
}
.ant-steps-small .ant-steps-item-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.ant-steps-small .ant-steps-item-tail {
  top: 8px;
}
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon {
  width: inherit;
  height: inherit;
  line-height: inherit;
  background: none;
  border: 0;
  border-radius: 0;
}
.ant-steps-small .ant-steps-item-custom .ant-steps-item-icon > .ant-steps-icon {
  font-size: 24px;
  line-height: 24px;
  -webkit-transform: none;
          transform: none;
}
.ant-steps-vertical {
  display: block;
}
.ant-steps-vertical .ant-steps-item {
  display: block;
  overflow: visible;
}
.ant-steps-vertical .ant-steps-item-icon {
  float: left;
  margin-right: 16px;
}
.ant-steps-vertical .ant-steps-item-content {
  display: block;
  min-height: 48px;
  overflow: hidden;
}
.ant-steps-vertical .ant-steps-item-title {
  line-height: 32px;
}
.ant-steps-vertical .ant-steps-item-description {
  padding-bottom: 12px;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  position: absolute;
  top: 0;
  left: 16px;
  width: 1px;
  height: 100%;
  padding: 38px 0 6px;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after {
  width: 1px;
  height: 100%;
}
.ant-steps-vertical > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail {
  display: block;
}
.ant-steps-vertical > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
  display: none;
}
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
  position: absolute;
  top: 0;
  left: 12px;
  padding: 30px 0 6px;
}
.ant-steps-vertical.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
  line-height: 24px;
}
@media (max-width: 480px) {
  .ant-steps-horizontal.ant-steps-label-horizontal {
    display: block;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
    display: block;
    overflow: visible;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-icon {
    float: left;
    margin-right: 16px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-content {
    display: block;
    min-height: 48px;
    overflow: hidden;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-title {
    line-height: 32px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item-description {
    padding-bottom: 12px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
    position: absolute;
    top: 0;
    left: 16px;
    width: 1px;
    height: 100%;
    padding: 38px 0 6px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail::after {
    width: 1px;
    height: 100%;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item:not(:last-child) > .ant-steps-item-container > .ant-steps-item-tail {
    display: block;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title::after {
    display: none;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-tail {
    position: absolute;
    top: 0;
    left: 12px;
    padding: 30px 0 6px;
  }
  .ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item-container .ant-steps-item-title {
    line-height: 24px;
  }
}
.ant-steps-label-vertical .ant-steps-item {
  overflow: visible;
}
.ant-steps-label-vertical .ant-steps-item-tail {
  margin-left: 58px;
  padding: 3.5px 24px;
}
.ant-steps-label-vertical .ant-steps-item-content {
  display: block;
  width: 116px;
  margin-top: 8px;
  text-align: center;
}
.ant-steps-label-vertical .ant-steps-item-icon {
  display: inline-block;
  margin-left: 42px;
}
.ant-steps-label-vertical .ant-steps-item-title {
  padding-right: 0;
}
.ant-steps-label-vertical .ant-steps-item-title::after {
  display: none;
}
.ant-steps-label-vertical .ant-steps-item-subtitle {
  display: block;
  margin-bottom: 4px;
  margin-left: 0;
  line-height: 1.5;
}
.ant-steps-label-vertical.ant-steps-small:not(.ant-steps-dot) .ant-steps-item-icon {
  margin-left: 46px;
}
.ant-steps-dot .ant-steps-item-title,
.ant-steps-dot.ant-steps-small .ant-steps-item-title {
  line-height: 1.5;
}
.ant-steps-dot .ant-steps-item-tail,
.ant-steps-dot.ant-steps-small .ant-steps-item-tail {
  top: 2px;
  width: 100%;
  margin: 0 0 0 70px;
  padding: 0;
}
.ant-steps-dot .ant-steps-item-tail::after,
.ant-steps-dot.ant-steps-small .ant-steps-item-tail::after {
  width: calc(100% - 20px);
  height: 3px;
  margin-left: 12px;
}
.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item:first-child .ant-steps-icon-dot {
  left: 2px;
}
.ant-steps-dot .ant-steps-item-icon,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon {
  width: 8px;
  height: 8px;
  margin-left: 67px;
  padding-right: 0;
  line-height: 8px;
  background: transparent;
  border: 0;
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* expand hover area */
}
.ant-steps-dot .ant-steps-item-icon .ant-steps-icon-dot::after,
.ant-steps-dot.ant-steps-small .ant-steps-item-icon .ant-steps-icon-dot::after {
  position: absolute;
  top: -12px;
  left: -26px;
  width: 60px;
  height: 32px;
  background: rgba(0, 0, 0, 0.001);
  content: '';
}
.ant-steps-dot .ant-steps-item-content,
.ant-steps-dot.ant-steps-small .ant-steps-item-content {
  width: 140px;
}
.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon,
.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon {
  width: 10px;
  height: 10px;
  line-height: 10px;
}
.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot,
.ant-steps-dot.ant-steps-small .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon-dot {
  top: -1px;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-icon {
  margin-top: 8px;
  margin-left: 0;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
  top: 2px;
  left: -9px;
  margin: 0;
  padding: 22px 0 4px;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item:first-child .ant-steps-icon-dot {
  left: 0;
}
.ant-steps-vertical.ant-steps-dot .ant-steps-item-process .ant-steps-icon-dot {
  left: -2px;
}
.ant-steps-navigation {
  padding-top: 12px;
}
.ant-steps-navigation.ant-steps-small .ant-steps-item-container {
  margin-left: -12px;
}
.ant-steps-navigation .ant-steps-item {
  overflow: visible;
  text-align: center;
}
.ant-steps-navigation .ant-steps-item-container {
  display: inline-block;
  height: 100%;
  margin-left: -16px;
  padding-bottom: 12px;
  text-align: left;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-content {
  max-width: auto;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title {
  max-width: 100%;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ant-steps-navigation .ant-steps-item-container .ant-steps-item-title::after {
  display: none;
}
.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button'] {
  cursor: pointer;
}
.ant-steps-navigation .ant-steps-item:not(.ant-steps-item-active) .ant-steps-item-container[role='button']:hover {
  opacity: 0.85;
}
.ant-steps-navigation .ant-steps-item:last-child {
  -ms-flex: 1 1;
      flex: 1 1;
}
.ant-steps-navigation .ant-steps-item:last-child::after {
  display: none;
}
.ant-steps-navigation .ant-steps-item::after {
  position: absolute;
  top: 50%;
  left: 100%;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -14px;
  margin-left: -2px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  content: '';
}
.ant-steps-navigation .ant-steps-item::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 0;
  height: 3px;
  background-color: #1890ff;
  -webkit-transition: width 0.3s, left 0.3s;
  transition: width 0.3s, left 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  content: '';
}
.ant-steps-navigation .ant-steps-item.ant-steps-item-active::before {
  left: 0;
  width: 100%;
}
@media (max-width: 480px) {
  .ant-steps-navigation > .ant-steps-item {
    margin-right: 0 !important;
  }
  .ant-steps-navigation > .ant-steps-item::before {
    display: none;
  }
  .ant-steps-navigation > .ant-steps-item.ant-steps-item-active::before {
    top: 0;
    right: 0;
    left: unset;
    display: block;
    width: 3px;
    height: calc(76%);
  }
  .ant-steps-navigation > .ant-steps-item::after {
    position: relative;
    top: -2px;
    left: 50%;
    display: block;
    width: 8px;
    height: 8px;
    margin-bottom: 8px;
    text-align: center;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .ant-steps-navigation > .ant-steps-item > .ant-steps-item-container > .ant-steps-item-tail {
    visibility: hidden;
  }
}
.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal .ant-steps-item {
  margin-left: -16px;
  padding-left: 16px;
  background: #fff;
}
.ant-steps-flex-not-supported.ant-steps-horizontal.ant-steps-label-horizontal.ant-steps-small .ant-steps-item {
  margin-left: -12px;
  padding-left: 12px;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child {
  overflow: hidden;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item:last-child .ant-steps-icon-dot::after {
  right: -200px;
  width: 200px;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::before,
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::after {
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 8px;
  background: #fff;
  content: '';
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item .ant-steps-icon-dot::after {
  right: -10px;
  left: auto;
}
.ant-steps-flex-not-supported.ant-steps-dot .ant-steps-item-wait .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background: #ccc;
}
.page___1vLHn .btn___rCvtT {
  margin-right: 20px;
}
.page___1vLHn .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1vLHn .letter-overflow___2FuIt {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.operationWrap___1tR0B {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.operationWrap___1tR0B a {
  padding: 0 10px;
  min-width: 50px;
  border-right: 1px solid #ddd;
}
.operationWrap___1tR0B a:last-of-type {
  border: 0;
}
.body___3lmaa {
  width: 100%;
  background-color: #f2f3f5;
  padding: 16px;
}
.device___2cMBY {
  background-color: #fff;
  margin-bottom: 10px;
}
.device___2cMBY > div .clickNum___3IwCM {
  cursor: pointer;
}
.device___2cMBY > div:nth-of-type(1) {
  padding: 10px 20px 10px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #eee;
}
.device___2cMBY > div:nth-of-type(1) > span:last-of-type {
  color: #aaa;
  font-size: 12px;
}
.device___2cMBY > div:nth-of-type(2) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 16px 0;
}
.device___2cMBY > div:nth-of-type(2) p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1;
      flex: 1 1;
  margin: 0;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.device___2cMBY > div:nth-of-type(2) p:hover span {
  color: #396FFF;
}
.device___2cMBY > div:nth-of-type(2) p span {
  text-align: center;
  font-size: 13px;
}
.device___2cMBY > div:nth-of-type(2) p span:last-of-type {
  font-size: 24px;
  font-weight: 600;
}
.chart___2gjVC {
  background-color: #fff;
  margin-bottom: 10px;
}
.chart___2gjVC > div:nth-of-type(1) {
  padding: 10px 20px 10px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border-bottom: 1px solid #eee;
}
.chart___2gjVC > div:nth-of-type(1) > span:last-of-type {
  color: #aaa;
  font-size: 12px;
}
.chart___2gjVC > div:nth-of-type(2) > div:first-of-type {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 40px;
}
.chart___2gjVC > div:nth-of-type(2) > div:first-of-type .ant-select {
  margin-left: 45px;
  margin-right: 40px;
}
.chart___2gjVC > div:nth-of-type(2) > div:first-of-type .ant-select .ant-select-selection--single {
  border: 0 !important;
  font-size: 14px;
}
.legend___3ZLWc {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 12px;
  color: #666;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
.legend___3ZLWc span {
  cursor: pointer;
}
.legend___3ZLWc span::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #eee;
  margin-left: 10px;
  vertical-align: middle;
  margin-right: 5px;
}
.legend___3ZLWc .active::before {
  background-color: #396FFF !important;
}
.itemForm___2DvAF::before {
  content: ' ';
  display: block;
  height: 4px;
  background-color: #f3f4f5;
}
.itemForm___2DvAF > p {
  border-left: 4px solid #29aae8;
  margin-top: 20px;
  padding-left: 10px;
  color: #29aae8;
}
.itemForm___2DvAF .ant-table-thead > tr > th {
  text-align: center;
  color: #fff;
  background: #44a8eb;
  font-size: 14px;
  height: 40px;
  border-right: #dce1ed;
}
.itemForm___2DvAF .ant-form-item {
  min-height: 40px !important;
}
.itemForm___2DvAF .ant-table-row .editable-cell-value-wrap {
  border: 1px solid #fff;
  width: 100%;
  height: 40px;
  line-height: 36px;
  padding-left: 11px;
}
.itemForm___2DvAF .ant-table-row .editable-cell-value-wrap:hover {
  border: 1px solid #44a8eb !important;
  border-radius: 4px;
}
.itemForm___2DvAF .ant-table-row:hover {
  background-color: #fff;
}
.itemForm___2DvAF .ant-table-row:hover td {
  background-color: #fff !important;
}
.itemForm___2DvAF .ant-table-row:hover .editable-cell-value-wrap {
  border: 1px solid transparent;
}
.add___ONBPT {
  text-align: center;
  color: #29aae8;
}
.add___ONBPT a {
  color: #29aae8;
}
.my_select___2d0nT {
  background-color: #f5f5f5 !important;
}
.page___2r83m .btn___1PXnD {
  margin-right: 20px;
}
.page___2r83m .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.operationWrap___1fiOb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.operationWrap___1fiOb a {
  padding: 0 10px;
  min-width: 50px;
  border-right: 1px solid #ddd;
}
.operationWrap___1fiOb a:last-of-type {
  border: 0;
}
.standardization_content___vFwQ0 {
  padding: 20px;
}
.standardization_content___vFwQ0 .card_tabs___19Efp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 16px;
}
.standardization_content___vFwQ0 .card_tabs___19Efp > div {
  padding: 6px 12px;
  border-radius: 16px;
  background-color: #fff;
  margin-right: 13px;
  color: #929AA3;
  cursor: pointer;
}
.standardization_content___vFwQ0 .card_tabs___19Efp > div.active___xSiUb {
  background-color: #65B5FF;
  color: #fff;
}
.standardization_content___vFwQ0 .card_add___R8Rl6 {
  width: calc(33.33% - 13px);
  background-color: #fff;
  border: 1px solid #eaeaea;
  margin: 0 16px 16px 0;
  height: 240px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #1890FF;
}
.standardization_content___vFwQ0 .card_add___R8Rl6 i {
  cursor: pointer;
  margin-bottom: 10px;
}
.standardization_content___vFwQ0 .card_add___R8Rl6 i:hover {
  opacity: 0.8;
}
.standardization_content___vFwQ0 .card_item___2FcAM {
  position: relative;
  width: calc(33.33% - 13px);
  height: 240px;
  background-color: #fff;
  border: 1px solid #eaeaea;
  margin: 0 16px 16px 0;
  float: left;
  overflow: hidden;
}
.standardization_content___vFwQ0 .card_item___2FcAM:nth-of-type(3n) {
  margin: 0 0 16px 0;
}
.standardization_content___vFwQ0 .card_item___2FcAM .card_title___20ZLX {
  line-height: 39px;
  padding: 0 16px;
  font-size: 12px;
  color: #333;
  border: 1px solid #f8f8f8;
}
.standardization_content___vFwQ0 .card_item___2FcAM .card_content___3OG8R {
  padding: 11px 16px 48px;
  overflow: auto;
  height: calc(100% - 38px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.standardization_content___vFwQ0 .card_item___2FcAM .card_content___3OG8R ul {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
}
.standardization_content___vFwQ0 .card_item___2FcAM .card_operation___3mtCx {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38px;
  width: 100%;
  -webkit-box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
}
.standardization_content___vFwQ0 .card_item___2FcAM .card_operation___3mtCx p {
  margin: 0;
  width: 30%;
  text-align: center;
  color: #1890FF;
  cursor: pointer;
}
.standardization_content___vFwQ0 .card_item___2FcAM .card_operation___3mtCx p:hover {
  opacity: 0.8;
}
.standardization_content___vFwQ0 .modal_input___2ZThc {
  height: 38px;
  border: 0;
  margin: 8px 0;
  outline: none;
}
.standardization_content___vFwQ0 .modal_input___2ZThc:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.standardization_content___vFwQ0 .ant-tabs-bar {
  margin: 10px 0 0 0;
}
.standardization_content___vFwQ0 .card-container > .ant-tabs-card > .ant-tabs-content {
  min-height: calc(100vh - 335px);
  overflow: auto;
  background: #f4f4f4;
}
.standardization_content___vFwQ0 .card-container > .ant-tabs-card > .ant-tabs-bar {
  margin: 16px 0 0 !important;
}
.standardization_content___vFwQ0 .card-container > .ant-tabs-card > .ant-tabs-content > .ant-tabs-tabpane {
  background: #f4f4f4;
  padding: 16px;
  min-height: 100%;
  overflow: hidden;
}
.standardization_content___vFwQ0 .card-container > .ant-tabs-card > .ant-tabs-bar {
  border-color: #f4f4f4;
}
.standardization_content___vFwQ0 .card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab {
  border-color: transparent;
  background: transparent;
}
.standardization_content___vFwQ0 .card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active {
  border-color: #f4f4f4;
  background: #f4f4f4;
}
.standardization_content___vFwQ0 .ant-modal-header {
  padding-left: 16px;
}
.standardization_content___vFwQ0 .ant-modal-header .ant-modal-title {
  color: #1890FF;
}
.specification_content___-CzZ1 .search___136t_ {
  padding: 20px 32px;
}
.specification_modal___2KgAF {
  padding: 20px 50px 0;
}
.specification_modal___2KgAF > div {
  margin-bottom: 30px;
}
.specification_modal___2KgAF .images_btn___8rI8W {
  position: relative;
  cursor: pointer;
  width: 80px;
  line-height: 30px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}
.specification_modal___2KgAF .images_btn___8rI8W > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.imges_add___m-IHQ {
  color: #1890ff;
  cursor: pointer;
  margin-bottom: 10px;
}
.imges_list___2Zljx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.imges_list___2Zljx > span {
  -ms-flex: 1 1;
      flex: 1 1;
  text-align: left;
}
.imges_list___2Zljx > span:first-of-type {
  -ms-flex: 0 0 50px;
      flex: 0 0 50px;
}
.imges_list___2Zljx > span:last-of-type {
  -ms-flex: 0 0 100px;
      flex: 0 0 100px;
  color: #1890ff;
  cursor: pointer;
}
.orangeColor___12bg3 {
  color: #007acc;
}
.globalTableLink___t_jwH {
  color: #76b1cb;
}
.previewContent___Kbklp .ant-carousel {
  width: 100%;
}
.previewContent___Kbklp .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___Kbklp .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___Kbklp .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___Kbklp .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___Kbklp .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-content {
  border: 0;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___17RJx .globalTable___2a4H1 table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-body {
  max-height: calc(100vh - 360px) !important;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___17RJx .globalTable___2a4H1 table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___17RJx .globalTable___2a4H1 table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___17RJx .globalTable___2a4H1 table td span .anticon {
  color: #8ccad9;
}
.prepTable___17RJx .globalTable___2a4H1 table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___17RJx .globalTable___2a4H1 .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___17RJx .globalTable___2a4H1 .ant-table-column-sorter .anticon-caret-up,
.prepTable___17RJx .globalTable___2a4H1 .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___17RJx .globalTable___2a4H1 i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___17RJx .childTable___3Suvy .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___17RJx .grayItem___3ekRI {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___17RJx .operationWrap___2Qiri {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___17RJx .operationWrap___2Qiri a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___17RJx .operationWrap___2Qiri .localText___XvbGV {
  color: #40c8a5;
}
.prepTable___17RJx .lineWrap___3lKoa {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___17RJx .lineWrap___3lKoa span {
  color: #333;
  padding-right: 20px;
}
.prepTable___17RJx .disabledText___3R6ug {
  color: #666;
  cursor: not-allowed;
}
.prepTable___17RJx .titleWrap___2T6Ob {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___17RJx .titleWrap___2T6Ob .iconWrap___1pkq8 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___17RJx .titleWrap___2T6Ob .iconWrap___1pkq8 .sorterActive___1vcJ4 {
  color: #1890ff;
}
.prepTable___17RJx .titleWrap___2T6Ob .iconWrap___1pkq8 i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___17RJx .titleWrap___2T6Ob .iconWrap___1pkq8 i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___17RJx .btns___umqSa {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___17RJx .btnsLeft___rUcFX button {
  margin-right: 20px;
}
.prepTable___17RJx .btnsRight___1eN-R button {
  margin-left: 20px;
}
.prepTable___17RJx .baseBtn___3_jey {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___17RJx .baseBtn___3_jey:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___17RJx .globalBtn___18m_u {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___17RJx .globalBtn___18m_u:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.operation___3jcuv > a:first-of-type {
  border-right: 1px solid #d3d4d5;
}
.page___3mjk- {
  background-color: #f4f4f4;
  height: 100%;
  overflow: hidden;
}
.page___3mjk- .header___3dDA- {
  padding: 15px 25px!important;
  background-color: white!important;
}
.page___3mjk- .content___3AsQn {
  margin: 20px 25px;
  background-color: white;
  height: calc(100vh - 268px);
}
.page___3mjk- .content___3AsQn .left___2aqYI {
  height: 100%;
}
.page___3mjk- .content___3AsQn .right___3T8VZ {
  height: 100%;
}
.page___3mjk- .content___3AsQn .right___3T8VZ .title___3ZbIX {
  margin: 20px 0px 10px 20px;
  font-size: 17px;
  font-weight: 600;
  color: black;
}
.page___3mjk- .content___3AsQn .right___3T8VZ .list___2Qro1 {
  padding: 0px 20px;
}
.page___3mjk- .content___3AsQn .right___3T8VZ :grobal .ant-table-placeholder___20xOB {
  border-left: 1px solid #e8e8e8!important;
  border-right: 1px solid #e8e8e8!important;
}
.container___AdUzT .header___vti1C {
  margin: 20px 32px;
}
.container___AdUzT .header___vti1C .title___1lJNu {
  text-align: left;
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #313233;
}
.container___AdUzT .header___vti1C .tree___3O19Y {
  text-align: right;
}
.container___AdUzT .header___vti1C .info___2_mVs {
  height: 32px;
  display: inline-block;
  padding-right: 10px;
  float: right;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  color: #686c6c;
  line-height: 32px;
}
.container___AdUzT .header___vti1C .info___2_mVs .number___3fnE2 {
  padding-left: 10px;
}
.container___AdUzT .header___vti1C .info___2_mVs .line___2cm3g {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 10px;
  border-right: 1px dotted #E0E0E0;
}
.container___AdUzT .center___1MVs7 {
  margin: 0px 32px 0px 0px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM {
  margin: 0px 0px 20px 32px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .more___gdTBW {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .more___gdTBW:hover {
  cursor: pointer;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .more___gdTBW i {
  padding-left: 5px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .nodata___10QVY {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM img {
  width: 16px;
  margin-right: 5px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .ant-col {
  padding: 10px 0px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .ant-collapse-content > .ant-collapse-content-box {
  padding: 16px 0px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .offlineFields___14ub3 {
  text-align: center;
  padding: 0px 15px;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .offlineFields___14ub3 .title___1lJNu {
  background-color: #fafafa;
  font-size: 14px;
  color: #686c6c;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  padding: 5px 0px;
  width: 90%;
  margin: 0 auto;
}
.container___AdUzT .center___1MVs7 .collapse___1xtJM .offlineFields___14ub3 .time___2I37P {
  background-color: #fafafa;
  font-family: PingFangSC-Regular, PingFangSC;
  font-size: 12px;
  padding-bottom: 5px;
  width: 90%;
  margin: 0 auto;
}
.orangeColor___AYUYR {
  color: #007acc;
}
.globalTableLink___AiCnM {
  color: #76b1cb;
}
.previewContent___mBbL3 .ant-carousel {
  width: 100%;
}
.previewContent___mBbL3 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___mBbL3 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___mBbL3 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___mBbL3 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___mBbL3 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___269Xz {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 32px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___269Xz .formItem___6bp1r {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.main___269Xz .formItem___6bp1r .ant-form-item-control-wrapper {
  width: 100%;
}
.main___269Xz .formItem___6bp1r .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___269Xz .formItem___6bp1r .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___269Xz .searchButton___8b8ZT {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___269Xz .searchButton___8b8ZT .button___3ma4z {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___269Xz .searchButton___8b8ZT .button___3ma4z:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___1hGQb {
  color: #007acc;
}
.globalTableLink___15xyb {
  color: #76b1cb;
}
.previewContent___1Juxx .ant-carousel {
  width: 100%;
}
.previewContent___1Juxx .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1Juxx .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1Juxx .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1Juxx .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1Juxx .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___d5tMK .globalTable___25F0_ table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___d5tMK .globalTable___25F0_ table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___d5tMK .globalTable___25F0_ table td span .anticon {
  color: #8ccad9;
}
.prepTable___d5tMK .globalTable___25F0_ table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___d5tMK .globalTable___25F0_ .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___d5tMK .globalTable___25F0_ .ant-table-column-sorter .anticon-caret-up,
.prepTable___d5tMK .globalTable___25F0_ .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___d5tMK .globalTable___25F0_ i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___d5tMK .childTable___28kOS .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___d5tMK .grayItem___3mEXv {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___d5tMK .operationWrap___1RBFf {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___d5tMK .operationWrap___1RBFf a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___d5tMK .operationWrap___1RBFf .localText___1aiDl {
  color: #40c8a5;
}
.prepTable___d5tMK .lineWrap___2-NcF {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___d5tMK .lineWrap___2-NcF span {
  color: #333;
  padding-right: 20px;
}
.prepTable___d5tMK .disabledText___Ecdx4 {
  color: #666;
  cursor: not-allowed;
}
.prepTable___d5tMK .titleWrap___3eTEd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___d5tMK .titleWrap___3eTEd .iconWrap___11OQi {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___d5tMK .titleWrap___3eTEd .iconWrap___11OQi .sorterActive___3nnzu {
  color: #1890ff;
}
.prepTable___d5tMK .titleWrap___3eTEd .iconWrap___11OQi i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___d5tMK .titleWrap___3eTEd .iconWrap___11OQi i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___d5tMK .btns___3h10Y {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___d5tMK .btnsLeft___2DZbd button {
  margin-right: 20px;
}
.prepTable___d5tMK .btnsRight___qgAXA button {
  margin-left: 20px;
}
.prepTable___d5tMK .baseBtn___1fJ1t {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___d5tMK .baseBtn___1fJ1t:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___d5tMK .globalBtn___BIC2U {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___d5tMK .globalBtn___BIC2U:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.input___kArcd {
  min-width: 150px;
}
.operation___1iDkk a {
  padding: 0 10px;
}
.operation___1iDkk a:first-child {
  border-right: 1px solid #ccc;
}
.modal___26Ghr .tip___213dy {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.modal___26Ghr .ant-modal {
  height: 600px;
  overflow: hidden;
}
.modal___26Ghr .ant-modal-body {
  padding: 10px;
}
.textRight___1PKSG {
  text-align: right;
}
.pusherDiv___3KgSB {
  border: 1px solid grey;
}
.orangeColor___1gOcA {
  color: #007acc;
}
.globalTableLink___1p7Ps {
  color: #76b1cb;
}
.previewContent____aWgi .ant-carousel {
  width: 100%;
}
.previewContent____aWgi .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent____aWgi .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent____aWgi .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent____aWgi .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent____aWgi .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___2yYVY {
  width: 100%;
}
.titleWrap___2yYVY .mainTitle___2gFF4 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2yYVY .mainTitle___2gFF4 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2yYVY .mainTitle___2gFF4 .titleItem___3AQvB {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2gRGi {
  width: 100%;
}
.contentWrap___2gRGi .mainContent___AR-PE {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2gRGi .mainContent___AR-PE li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___355LH {
  width: 100%;
}
.formWrap___355LH .buttonRow___2pfWv {
  text-align: center;
  margin-top: 10px;
}
.formWrap___355LH .buttonRow___2pfWv .submitBtn___2qTQT {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___355LH .buttonRow___2pfWv .submitBtn___2qTQT:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___355LH .ant-form-item {
  min-height: 56px !important;
}
.spin___2Zg-7 {
  width: 100%;
}
.wrapper___1bQn0 {
  background-color: #F6F6F6;
  padding: 20px;
}
.wrapper___1bQn0 .header___3YFNa {
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  padding: 20px;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .cascader___17SR4 {
  width: 200px;
  margin-right: 16px;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .cascader___17SR4 .ant-cascader-input {
  height: 29px;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .headerButton___sHOLP {
  width: 80px;
  height: 29px;
  margin-right: 10px;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .title___1IaZK {
  display: inline-block;
  -ms-flex: 0 0 52px;
      flex: 0 0 52px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #333333;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .my_concerns___390q_ {
  overflow: hidden;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0px 10px;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .my_concerns___390q_ .concern___Y10HD {
  height: 24px;
  display: inline-block;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  margin-left: 10px;
  padding: 0px 10px;
  line-height: 24px;
  background: #eaf7ff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #20a4fc;
  cursor: pointer;
}
.wrapper___1bQn0 .header___3YFNa .line1___17b7J .my_concerns___390q_ .concern___Y10HD.active___109j4 {
  background: #20a4fc;
  color: #ffffff;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 {
  margin-top: 22px;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .buttons___1SeIX {
  text-align: right;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .buttons___1SeIX .empty___1IGRg {
  margin-right: 16px;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .label___1Uf9f {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .value___2V-ht {
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #223143;
  padding-right: 17px;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 img {
  width: 16px;
  margin: 0px 3px;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .user___3HAi1 > span {
  padding-right: 8px;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .user___3HAi1 input {
  height: 20px;
  margin: 0px 5px;
  border: none;
  padding: 0px;
  border-radius: 0;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #223143 !important;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .user___3HAi1 input:nth-of-type(1) {
  width: 65px !important;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .user___3HAi1 input:nth-of-type(2) {
  width: 110px !important;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .user___3HAi1 input:disabled {
  background-color: #ffffff !important;
}
.wrapper___1bQn0 .header___3YFNa .line2___2Zuc7 .user___3HAi1 input.edit___JudUN {
  border-bottom: 1px solid #ececec;
}
.wrapper___1bQn0 .center___y-SkK {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  height: calc(100vh - 186px);
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  overflow: hidden;
  background-color: #ffffff;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu {
  padding: 20px;
  position: relative;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .top___1Dv73 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .top___1Dv73 .itemButton___3OyQb {
  height: 30px;
  line-height: 30px;
  padding: 0px 5px;
  margin-right: 10px;
  border: 1px solid #ececec;
  border-radius: 3px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
  cursor: pointer;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .top___1Dv73 .itemButton___3OyQb img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-left: 0px;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .top___1Dv73 .itemButton___3OyQb.active___109j4 {
  background: #20a4fc !important;
  color: #ffffff;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .top___1Dv73 img {
  width: 20px;
  margin-left: 10px;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view1___2fzgD {
  max-height: calc(100vh - 330px);
  overflow-y: scroll;
  margin-top: 20px;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view1___2fzgD .empty___1IGRg {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view1_full___1WVIK {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view2___19R04 {
  max-height: calc(100vh - 270px);
  overflow-y: scroll;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0px;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view2___19R04 .empty___1IGRg {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view2___19R04 .emptyBox___2ALEG {
  -ms-flex: 0 0 180px;
      flex: 0 0 180px;
  height: 1px;
  margin-bottom: 20px;
}
.wrapper___1bQn0 .center___y-SkK .left___2V2P- .tabs___13M9H .tabContent___2muuu .view2_full___3p1LD {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___1bQn0 .center___y-SkK .right___PIMRW {
  background-color: #ffffff;
  -ms-flex: 0 0 300px;
      flex: 0 0 300px;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 4px;
  margin-left: 20px;
  overflow-y: scroll;
}
.wrapper___1bQn0 .center___y-SkK .right___PIMRW .empty___1IGRg {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___1bQn0 .center___y-SkK .right___PIMRW .title___1IaZK {
  font-size: 20px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}
.wrapper___1bQn0 .fullScreen___2m2fH {
  padding: 20px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 40;
  margin-top: 0px !important;
  width: 100%;
  height: 100vh !important;
  background-color: #f6f6f6;
}
.wrapper___1bQn0 .btn_course___3cZHf {
  position: fixed;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-flexbox;
  display: flex;
  bottom: 70px;
  right: 30px;
  z-index: 41;
  width: 60px;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 11px 0px rgba(144, 144, 144, 0.34);
          box-shadow: 0px 2px 11px 0px rgba(144, 144, 144, 0.34);
}
.wrapper___1bQn0 .btn_course___3cZHf span {
  display: inline-block;
  border-right: 2px solid #D8D8D8;
  width: 1px;
  height: 23px;
}
.wrapper___1bQn0 .btn_course___3cZHf img {
  width: 30px;
  cursor: pointer;
}
.wrapper___1bQn0 .link_course___2dK77 {
  position: fixed;
  z-index: 999;
  bottom: 83px;
  right: 124px;
  width: 296px;
  height: 310px;
  padding: 20px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
}
.wrapper___1bQn0 .link_course___2dK77 span {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___1bQn0 .link_course___2dK77 .course___6MyG0 {
  height: 66px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___1bQn0 .link_course___2dK77 .course___6MyG0 .course_title___uI9cZ {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
}
.wrapper___1bQn0 .link_course___2dK77 .course___6MyG0 .course_work___wfv0a {
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #999999;
}
.wrapper___1bQn0 .link_course___2dK77 .course___6MyG0 img {
  width: 26px;
  height: 18px;
  margin-right: 14px;
  cursor: pointer;
}
.wrapper___1bQn0 .link_alarm___2bsO- {
  position: fixed;
  z-index: 1000;
  bottom: 70px;
  left: 510px;
  width: 500px;
  max-height: 600px;
  padding: 20px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
}
.wrapper___1bQn0 .link_alarm___2bsO- .title___1IaZK {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
  display: inline-block;
  margin-bottom: 10px;
}
.wrapper___1bQn0 .link_alarm___2bsO- .alarm_content___3uSiO {
  max-height: 530px;
  overflow-y: scroll;
}
.wrapper___1bQn0 .hide___25OTa {
  display: none !important;
}
.concern_row___3tKkO {
  max-height: 500px;
  overflow-y: scroll;
}
.concern_row___3tKkO .field_item___-PyD8 {
  height: 32px;
  width: 90%;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0px 10px;
  line-height: 32px;
  background: #eaf7ff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #20a4fc;
  cursor: pointer;
}
.concern_row___3tKkO .field_item___-PyD8.active___109j4 {
  background: #20a4fc;
  color: #ffffff;
}
.popup___2alck .content___1o924 .header_p_left___Ce5vg {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.popup___2alck .content___1o924 .header_p_right___Cx0YV {
  font-size: 14px;
  color: #666;
}
.popup___2alck .content___1o924 .border_div___1Drft {
  position: relative;
  width: 500px;
  height: 399px;
  border: 1px solid #EDEDED;
  text-align: center;
}
.popup___2alck .content___1o924 .search_input___2-Zlq {
  position: relative;
  z-index: 999;
  width: 313px;
  margin: 12px auto;
}
.popup___2alck .content___1o924 .scroll_ul___33O_G {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: scroll;
  z-index: 999;
}
.popup___2alck .content___1o924 .scroll_ul___33O_G li {
  height: 35px;
  line-height: 35px;
  text-align: left;
  font-size: 14px;
  color: #666;
  background: #f3f3f3;
  padding-left: 14px;
  cursor: pointer;
}
.popup___2alck .content___1o924 .scroll_ul___33O_G li:hover {
  color: #333;
}
.popup___2alck .content___1o924 .scroll_ul___33O_G li.active___109j4 {
  background: #fff;
}
.popup___2alck .content___1o924 .all_button___4RFs4 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 43px;
  background: #fff;
  z-index: 2000;
}
.popup___2alck .content___1o924 .all_button___4RFs4 span {
  display: block;
  width: 44px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
  color: #20A4FC;
  margin-left: 18px;
  margin-top: 10px;
  background: #F1F9FF;
  border-radius: 17px;
}
.popup___2alck .content___1o924 .all_button___4RFs4 span:hover {
  cursor: pointer;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  z-index: 999;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 43px;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  padding-left: 18px;
  margin: 10px 0;
  cursor: pointer;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz li span {
  font-size: 14px;
  color: #333;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz li.sb___ZfF_3 {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz li.sb___ZfF_3 .close___sjaFy {
  font-size: 20px;
  color: #B2B3B4;
  padding: 0 10px;
}
.popup___2alck .content___1o924 .chooseable_units___1Jphj .choseunit_ul___1DlOz li.sb___ZfF_3 .close___sjaFy:hover {
  color: #333;
}
.item___JNs9A {
  padding: 0px 20px;
}
.item___JNs9A .title___1q0hg {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  text-align: left;
  color: #8da4e8;
  border-left: 2px solid #8da4e8;
  padding-left: 10px;
  margin: 0px 10px;
  margin-left: -15px;
  list-style: none;
}
.item___JNs9A .alarm___b4Gzy {
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #768bac;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.wrapper___3TRBC .font1___3EyTm {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
}
.wrapper___3TRBC .font2___2I2uw {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #20a4fc;
}
.wrapper___3TRBC .font_green___3Yex9 {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #10B721;
}
.wrapper___3TRBC .font_red___j_QEJ {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #FF2727;
}
.wrapper___3TRBC .font_yellow___313ne {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #CCBB00;
}
.wrapper___3TRBC .font4___KSefD {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  background: #20a4fc;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #ffffff;
}
.wrapper___3TRBC .font5___330a4 {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___3TRBC .imgs___1x14t {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wrapper___3TRBC .imgs___1x14t img {
  width: 12px;
  height: 12px;
  margin: 0px 3px;
}
.wrapper___3TRBC .zoom___3q3n9 {
  display: inline-block;
  width: 65px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
}
.wrapper___3TRBC .alarm___32qqu {
  position: relative;
}
.wrapper___3TRBC .alarm___32qqu::before {
  content: '';
  width: 3px;
  height: 34px;
  position: absolute;
  left: -4px;
  top: -8px;
  background: red;
  border-radius: 0px 4px 4px 0px;
}
.wrapper___3TRBC .ant-table-header {
  margin-bottom: 0px !important;
}
.wrapper___3TRBC .ant-table-thead > tr {
  height: 45px;
}
.wrapper___3TRBC .ant-table-tbody > tr {
  cursor: pointer !important;
  height: 45px;
}
.wrapper___3TRBC .ant-table-tbody > tr:nth-of-type(even) {
  background: #f8f9fc;
  border: 0px solid #979797;
}
.wrapper___3TRBC .ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  display: none;
}
.wrapper___3TRBC .ant-table-body-inner::-webkit-scrollbar {
  display: none;
}
.boxWrapper___2t8Sa {
  -ms-flex: 0 0 180px;
      flex: 0 0 180px;
  height: 283px;
  margin-bottom: 20px;
  background: #fdfeff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  cursor: pointer;
}
.boxWrapper___2t8Sa:hover {
  -webkit-box-shadow: 0px 4px 14px 0px rgba(77, 77, 77, 0.3);
          box-shadow: 0px 4px 14px 0px rgba(77, 77, 77, 0.3);
}
.boxWrapper___2t8Sa.wran___2VomM {
  border: 3px solid #FF2727 !important;
}
.boxWrapper___2t8Sa .title___2U0sD {
  padding: 0px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 34px;
  line-height: 34px;
  background: #f7faff;
  border-radius: 4px 4px 0px 0px;
}
.boxWrapper___2t8Sa .title___2U0sD span {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #768bac;
}
.boxWrapper___2t8Sa .title___2U0sD img {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
.boxWrapper___2t8Sa .imgs___1q1VS {
  padding: 0px 10px;
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: center;
}
.boxWrapper___2t8Sa .imgs___1q1VS .wind___nU8H- {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.boxWrapper___2t8Sa .imgs___1q1VS .wind___nU8H- span {
  background: #d0e9fd;
  font-size: 11px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #7894e3;
  position: absolute;
  display: inline-block;
  top: -9px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
}
.boxWrapper___2t8Sa .imgs___1q1VS .wind___nU8H- img {
  width: 32px;
  height: 32px;
}
.boxWrapper___2t8Sa .imgs___1q1VS .wind_title___1dMZE {
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #768bac;
}
.boxWrapper___2t8Sa .row___2RL1W {
  display: -ms-flexbox;
  display: flex;
  margin: 0px 10px;
}
.boxWrapper___2t8Sa .row___2RL1W:nth-child(1) {
  border-bottom: 1px solid #E8ECF4;
}
.boxWrapper___2t8Sa .row___2RL1W:nth-child(2) {
  border-bottom: 1px solid #E8ECF4;
}
.boxWrapper___2t8Sa .row___2RL1W span {
  display: inline-block;
  height: 39px;
  line-height: 39px;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #768bac;
}
.boxWrapper___2t8Sa .row___2RL1W span:nth-child(1) {
  text-align: left;
}
.boxWrapper___2t8Sa .row___2RL1W span:nth-child(2) {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center;
}
.boxWrapper___2t8Sa .row___2RL1W span:nth-child(1) {
  text-align: right;
}
.wrapper___EQ0WR .input_wrapper___Qtksh {
  position: relative;
  margin-right: 10px;
  width: 330px;
}
.wrapper___EQ0WR .input_wrapper___Qtksh .input_label___1Ko8G {
  position: absolute;
  display: inline-block;
  left: 10px !important;
  top: 0px !important;
  width: 100%;
  height: 32px;
  padding-right: 40px;
  overflow: hidden;
  line-height: 32px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wrapper___EQ0WR .input_wrapper___Qtksh .input_label___1Ko8G.hide___2qIAB {
  display: none;
}
.wrapper___EQ0WR .input_wrapper___Qtksh input {
  cursor: pointer;
  background: transparent!important;
}
.wrapper___EQ0WR .input_wrapper___Qtksh .icon_clear___3zIKp {
  display: none;
}
.wrapper___EQ0WR .input_wrapper___Qtksh.clear___3feuA:hover .anticon-down,
.wrapper___EQ0WR .input_wrapper___Qtksh.clear___3feuA:hover .anticon-up {
  display: none !important;
}
.wrapper___EQ0WR .input_wrapper___Qtksh.clear___3feuA:hover .icon_clear___3zIKp {
  display: inline-block !important;
  position: absolute !important;
  font-size: 12px !important;
  right: 10px !important;
  top: 10px !important;
}
.wrapper___EQ0WR .input_wrapper___Qtksh .anticon {
  position: absolute !important;
  font-size: 12px !important;
  right: 10px !important;
  top: 10px !important;
}
.wrapper___EQ0WR .my_cascader_menus___11IVC {
  position: absolute;
  left: 20px;
  top: 55px;
  z-index: 1050;
  font-size: 14px;
  white-space: nowrap;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.wrapper___EQ0WR .my_cascader_menus_empty___2zXBj,
.wrapper___EQ0WR .my_cascader_menus_hidden___bYq4y {
  display: none;
}
.wrapper___EQ0WR .my_cascader_menu___1rKkV:only_child {
  border-radius: 4px;
}
.wrapper___EQ0WR .my_cascader_menu___1rKkV:first-child {
  border-radius: 4px 0 0 4px;
}
.wrapper___EQ0WR .my_cascader_menu___1rKkV:last-child {
  margin-right: -1px;
  border-right-color: transparent;
  border-radius: 0 4px 4px 0;
}
.wrapper___EQ0WR .my_cascader_menus___11IVC ul {
  margin: 0;
  list-style: none;
}
.wrapper___EQ0WR .my_cascader_menu___1rKkV {
  display: inline-block;
  min-width: 111px;
  height: 180px;
  margin: 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #e8e8e8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.wrapper___EQ0WR .my_cascader_menu_item_expand___3FE9w {
  position: relative;
  padding-right: 24px;
}
.wrapper___EQ0WR .my_cascader_menu_item___3Egky {
  padding: 0px 12px;
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper___EQ0WR .my_cascader_menu_item_expand___3FE9w .my_cascader_menu_item_expand_icon___2elrC,
.wrapper___EQ0WR .my_cascader_menu_item_loading_icon___2Prws {
  font-size: 12px;
}
.wrapper___EQ0WR .my_cascader_menu_item_expand___3FE9w .my_cascader_menu_item_expand_icon___2elrC .anticon,
.wrapper___EQ0WR .my_cascader_menu_item_loading_icon___2Prws .anticon {
  font-size: 12px !important;
  line-height: 32px;
  float: right;
  cursor: pointer;
}
.wrapper___EQ0WR .my_cascader_menu_item_active___1g_E-:not(.my_cascader_menu_item_disabled___zykGg),
.wrapper___EQ0WR .my_cascader_menu_item_active___1g_E-:not(.my_cascader_menu_item_disabled___zykGg):hover {
  font-weight: 600;
  background-color: #fafafa;
}
.wrapper___3uDYv {
  background-color: #F6F6F6;
  padding: 20px;
}
.wrapper___3uDYv .header___3YV8C {
  position: relative;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .cascader___2wNIu {
  width: 200px;
  margin-right: 16px;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .cascader___2wNIu .ant-cascader-input {
  height: 29px;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .headerButton___2QMnB {
  width: 80px;
  height: 29px;
  margin-right: 10px;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .title___3faW6 {
  display: inline-block;
  -ms-flex: 0 0 52px;
      flex: 0 0 52px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #333333;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .my_concerns___y2q8N {
  overflow: hidden;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0px 10px;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .my_concerns___y2q8N .concern___23j1q {
  height: 24px;
  display: inline-block;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  margin-left: 10px;
  padding: 0px 10px;
  line-height: 24px;
  background: #ffffff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #959AA5;
  cursor: pointer;
}
.wrapper___3uDYv .header___3YV8C .line1___mRQ6E .my_concerns___y2q8N .concern___23j1q.active___3G1SR {
  border: 1px solid #20a4fc;
  color: #20A4FC;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- {
  margin-top: 22px;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .buttons___3CJ9f {
  text-align: right;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .buttons___3CJ9f .empty___sNrPe {
  margin-right: 16px;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .label___1tbqW {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .value___2FK4d {
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #223143;
  padding-right: 17px;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- img {
  width: 16px;
  margin: 0px 3px;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .user___1zJBY > span {
  padding-right: 8px;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .user___1zJBY input {
  height: 20px;
  margin: 0px 5px;
  border: none;
  padding: 0px;
  border-radius: 0;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #223143 !important;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .user___1zJBY input:nth-of-type(1) {
  width: 65px !important;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .user___1zJBY input:nth-of-type(2) {
  width: 110px !important;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .user___1zJBY input:disabled {
  background-color: #ffffff !important;
}
.wrapper___3uDYv .header___3YV8C .line2___2vXg- .user___1zJBY input.edit____kDTT {
  border-bottom: 1px solid #ececec;
}
.wrapper___3uDYv .center___2nyrL {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  height: calc(100vh - 186px);
}
.wrapper___3uDYv .center___2nyrL .left___15WoO {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  overflow: hidden;
  background-color: #ffffff;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz {
  padding: 20px;
  position: relative;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .top___eiG2S {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .top___eiG2S .itemButton___pxFmQ {
  height: 30px;
  line-height: 30px;
  padding: 0px 5px;
  margin-right: 10px;
  border: 1px solid #ececec;
  border-radius: 3px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
  cursor: pointer;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .top___eiG2S .itemButton___pxFmQ img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-left: 0px;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .top___eiG2S .itemButton___pxFmQ.active___3G1SR {
  background: #20a4fc !important;
  color: #ffffff;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .top___eiG2S img {
  width: 20px;
  margin-left: 10px;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .top___eiG2S .ant-input-number {
  width: 80px!important;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view1___2XLCV {
  max-height: calc(100vh - 330px);
  overflow-y: scroll;
  margin-top: 20px;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view1___2XLCV .empty___sNrPe {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view1_full___2xkuB {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view2___1uM8A {
  max-height: calc(100vh - 270px);
  overflow-y: scroll;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0px;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view2___1uM8A .empty___sNrPe {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view2___1uM8A .emptyBox___3xGNF {
  -ms-flex: 0 0 180px;
      flex: 0 0 180px;
  height: 1px;
  margin-bottom: 20px;
}
.wrapper___3uDYv .center___2nyrL .left___15WoO .tabs___3ITha .tabContent___73tfz .view2_full___2-CFq {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___3uDYv .fullScreen___8T9k8 {
  padding: 20px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 40;
  margin-top: 0px !important;
  width: 100%;
  height: 100vh !important;
  background-color: #f6f6f6;
}
.wrapper___3uDYv .btn_course___fdmLg {
  position: fixed;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-flexbox;
  display: flex;
  bottom: 70px;
  right: 30px;
  z-index: 41;
  width: 60px;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 11px 0px rgba(144, 144, 144, 0.34);
          box-shadow: 0px 2px 11px 0px rgba(144, 144, 144, 0.34);
}
.wrapper___3uDYv .btn_course___fdmLg span {
  display: inline-block;
  border-right: 2px solid #D8D8D8;
  width: 1px;
  height: 23px;
}
.wrapper___3uDYv .btn_course___fdmLg img {
  width: 30px;
  cursor: pointer;
}
.wrapper___3uDYv .link_course___2FeJw {
  position: fixed;
  z-index: 999;
  bottom: 83px;
  right: 124px;
  width: 296px;
  height: 310px;
  padding: 20px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
}
.wrapper___3uDYv .link_course___2FeJw span {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___3uDYv .link_course___2FeJw .course___3NDZW {
  height: 66px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___3uDYv .link_course___2FeJw .course___3NDZW .course_title___2-20C {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
}
.wrapper___3uDYv .link_course___2FeJw .course___3NDZW .course_work___21fbV {
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #999999;
}
.wrapper___3uDYv .link_course___2FeJw .course___3NDZW img {
  width: 26px;
  height: 18px;
  margin-right: 14px;
  cursor: pointer;
}
.wrapper___3uDYv .link_alarm___1i19e {
  position: fixed;
  z-index: 1000;
  bottom: 70px;
  left: 510px;
  width: 500px;
  max-height: 600px;
  padding: 20px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
}
.wrapper___3uDYv .link_alarm___1i19e .title___3faW6 {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
  display: inline-block;
  margin-bottom: 10px;
}
.wrapper___3uDYv .link_alarm___1i19e .alarm_content___lxlLi {
  max-height: 530px;
  overflow-y: scroll;
}
.wrapper___3uDYv .hide___2zlPf {
  display: none !important;
}
.concern_row___2GANd {
  max-height: 500px;
  overflow-y: scroll;
}
.concern_row___2GANd .field_item___Hdz6l {
  height: 32px;
  width: 90%;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0px 10px;
  line-height: 32px;
  background: #eaf7ff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #20a4fc;
  cursor: pointer;
}
.concern_row___2GANd .field_item___Hdz6l.active___3G1SR {
  background: #20a4fc;
  color: #ffffff;
}
.popup___1_7nc .content___38AgS .header_p_left___3yKUM {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.popup___1_7nc .content___38AgS .header_p_right___1xwsM {
  font-size: 14px;
  color: #666;
}
.popup___1_7nc .content___38AgS .border_div___VI7fS {
  position: relative;
  width: 500px;
  height: 399px;
  border: 1px solid #EDEDED;
  text-align: center;
}
.popup___1_7nc .content___38AgS .search_input___3p8-L {
  position: relative;
  z-index: 999;
  width: 313px;
  margin: 12px auto;
}
.popup___1_7nc .content___38AgS .scroll_ul___2-YYf {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: scroll;
  z-index: 999;
}
.popup___1_7nc .content___38AgS .scroll_ul___2-YYf li {
  height: 35px;
  line-height: 35px;
  text-align: left;
  font-size: 14px;
  color: #666;
  background: #f3f3f3;
  padding-left: 14px;
  cursor: pointer;
}
.popup___1_7nc .content___38AgS .scroll_ul___2-YYf li:hover {
  color: #333;
}
.popup___1_7nc .content___38AgS .scroll_ul___2-YYf li.active___3G1SR {
  background: #fff;
}
.popup___1_7nc .content___38AgS .all_button___2io5K {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 43px;
  background: #fff;
  z-index: 2000;
}
.popup___1_7nc .content___38AgS .all_button___2io5K span {
  display: block;
  width: 44px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
  color: #20A4FC;
  margin-left: 18px;
  margin-top: 10px;
  background: #F1F9FF;
  border-radius: 17px;
}
.popup___1_7nc .content___38AgS .all_button___2io5K span:hover {
  cursor: pointer;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  z-index: 999;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 43px;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  padding-left: 18px;
  margin: 10px 0;
  cursor: pointer;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm li span {
  font-size: 14px;
  color: #333;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm li.sb___3CfGj {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm li.sb___3CfGj .close___13Qhb {
  font-size: 20px;
  color: #B2B3B4;
  padding: 0 10px;
}
.popup___1_7nc .content___38AgS .chooseable_units___14CMW .choseunit_ul___2Qecm li.sb___3CfGj .close___13Qhb:hover {
  color: #333;
}
.wrapper___3005u .font1___3Kogt {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
}
.wrapper___3005u .font2___1_Od5 {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #20a4fc;
}
.wrapper___3005u .font_green___2l8Gs {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #10B721;
}
.wrapper___3005u .font_red___3vXxE {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #FF2727;
}
.wrapper___3005u .font_yellow___1aINc {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #CCBB00;
}
.wrapper___3005u .font4___2XTcm {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  background: #20a4fc;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #ffffff;
}
.wrapper___3005u .font5___2jlnh {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___3005u .imgs___k_jYO {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wrapper___3005u .imgs___k_jYO img {
  width: 12px;
  height: 12px;
  margin: 0px 3px;
}
.wrapper___3005u .zoom___3YFmo {
  display: inline-block;
  width: 65px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
}
.wrapper___3005u .alarm___fsR5T {
  position: relative;
}
.wrapper___3005u .alarm___fsR5T::before {
  content: '';
  width: 3px;
  height: 34px;
  position: absolute;
  left: -4px;
  top: -8px;
  background: red;
  border-radius: 0px 4px 4px 0px;
}
.wrapper___3005u .ant-table-header {
  margin-bottom: 0px!important;
}
.wrapper___3005u .ant-table-thead > tr {
  height: 45px;
}
.wrapper___3005u .ant-table-tbody > tr {
  cursor: pointer!important;
  height: 45px;
}
.wrapper___3005u .ant-table-tbody > tr:nth-of-type(even) {
  background: #f8f9fc;
  border: 0px solid #979797;
}
.wrapper___3005u .ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  display: none;
}
.wrapper___3005u .ant-table-body-inner::-webkit-scrollbar {
  display: none;
}
.wrapper___rJU8g .input_wrapper___3r_y7 {
  position: relative;
  margin-right: 10px;
  width: 330px;
  background-color: white;
}
.wrapper___rJU8g .input_wrapper___3r_y7 .input_label___30ZE- {
  position: absolute;
  display: inline-block;
  left: 10px !important;
  top: 0px !important;
  width: 100%;
  height: 32px;
  padding-right: 40px;
  overflow: hidden;
  line-height: 32px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wrapper___rJU8g .input_wrapper___3r_y7 .input_label___30ZE-.hide___3-ZBb {
  display: none;
}
.wrapper___rJU8g .input_wrapper___3r_y7 input {
  cursor: pointer;
  background: transparent!important;
}
.wrapper___rJU8g .input_wrapper___3r_y7 .icon_clear___LRAZv {
  display: none;
}
.wrapper___rJU8g .input_wrapper___3r_y7.clear___19qcH:hover .anticon-down,
.wrapper___rJU8g .input_wrapper___3r_y7.clear___19qcH:hover .anticon-up {
  display: none !important;
}
.wrapper___rJU8g .input_wrapper___3r_y7.clear___19qcH:hover .icon_clear___LRAZv {
  display: inline-block !important;
  position: absolute !important;
  font-size: 12px !important;
  right: 10px !important;
  top: 10px !important;
}
.wrapper___rJU8g .input_wrapper___3r_y7 .anticon {
  position: absolute !important;
  font-size: 12px !important;
  right: 10px !important;
  top: 10px !important;
}
.wrapper___rJU8g .my_cascader_menus___Fq53v {
  position: absolute;
  left: 20px;
  top: 55px;
  z-index: 1050;
  font-size: 14px;
  white-space: nowrap;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.wrapper___rJU8g .my_cascader_menus_empty___ILiQ2,
.wrapper___rJU8g .my_cascader_menus_hidden___2ubAZ {
  display: none;
}
.wrapper___rJU8g .my_cascader_menu___3Kogb:only_child {
  border-radius: 4px;
}
.wrapper___rJU8g .my_cascader_menu___3Kogb:first-child {
  border-radius: 4px 0 0 4px;
}
.wrapper___rJU8g .my_cascader_menu___3Kogb:last-child {
  margin-right: -1px;
  border-right-color: transparent;
  border-radius: 0 4px 4px 0;
}
.wrapper___rJU8g .my_cascader_menus___Fq53v ul {
  margin: 0;
  list-style: none;
}
.wrapper___rJU8g .my_cascader_menu___3Kogb {
  display: inline-block;
  min-width: 111px;
  height: 180px;
  margin: 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #e8e8e8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.wrapper___rJU8g .my_cascader_menu_item_expand___1Ua9f {
  position: relative;
  padding-right: 24px;
}
.wrapper___rJU8g .my_cascader_menu_item___21zTl {
  padding: 0px 12px;
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper___rJU8g .my_cascader_menu_item_expand___1Ua9f .my_cascader_menu_item_expand_icon___1BHI0,
.wrapper___rJU8g .my_cascader_menu_item_loading_icon___2VIxA {
  font-size: 12px;
}
.wrapper___rJU8g .my_cascader_menu_item_expand___1Ua9f .my_cascader_menu_item_expand_icon___1BHI0 .anticon,
.wrapper___rJU8g .my_cascader_menu_item_loading_icon___2VIxA .anticon {
  font-size: 12px !important;
  line-height: 32px;
  float: right;
  cursor: pointer;
}
.wrapper___rJU8g .my_cascader_menu_item_active___2qFgy:not(.my_cascader_menu_item_disabled___1pJiq),
.wrapper___rJU8g .my_cascader_menu_item_active___2qFgy:not(.my_cascader_menu_item_disabled___1pJiq):hover {
  font-weight: 600;
  background-color: #fafafa;
}
.boxWrapper___3n615 {
  -ms-flex: 0 0 195px;
      flex: 0 0 195px;
  height: 357px;
  margin-bottom: 20px;
  background: #fdfeff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  cursor: pointer;
}
.boxWrapper___3n615:hover {
  -webkit-box-shadow: 0px 4px 14px 0px rgba(77, 77, 77, 0.3);
          box-shadow: 0px 4px 14px 0px rgba(77, 77, 77, 0.3);
}
.boxWrapper___3n615 .title___JvB_m {
  padding: 0px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 34px;
  line-height: 34px;
  background: #f7faff;
  border-radius: 4px 4px 0px 0px;
}
.boxWrapper___3n615 .title___JvB_m span {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #768bac;
}
.boxWrapper___3n615 .title___JvB_m img {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
.boxWrapper___3n615 .imgs___361HY {
  margin-top: 10px;
  text-align: center;
}
.boxWrapper___3n615 .imgs___361HY .wind___2zMFd {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.boxWrapper___3n615 .imgs___361HY .wind___2zMFd img {
  width: 32px;
  height: 32px;
}
.boxWrapper___3n615 .imgs___361HY .wind_title___2Mg1X {
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #768bac;
}
.boxWrapper___3n615 .labels___2pKVq {
  margin: 0px 10px;
  text-align: center;
  border-top: 1px solid #768bac2e;
}
.boxWrapper___3n615 .labels___2pKVq .value___aUaxz {
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 500;
  color: #768bac;
}
.boxWrapper___3n615 .labels___2pKVq .label___3sRIp {
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #768bac;
}
.boxWrapper___3n615 .row___1kdSl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin: 0px 15px;
  border-bottom: 1px solid #E8ECF4;
}
.boxWrapper___3n615 .row___1kdSl:last-child {
  background-color: brown;
  border-bottom: none !important;
}
.boxWrapper___3n615 .row___1kdSl img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.boxWrapper___3n615 .row___1kdSl span {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #768bac;
}
.boxWrapper___3n615 .row___1kdSl span:nth-of-type(1) {
  text-align: left;
}
.boxWrapper___3n615 .row___1kdSl span:nth-of-type(2) {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: right;
}
.boxWrapper___3n615 .bottom___3QZQr {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0px 15px;
  height: 50px;
  background: #f7faff;
  border-radius: 0px 0px 3px 3px;
}
.boxWrapper___3n615 .bottom___3QZQr img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.boxWrapper___3n615 .bottom___3QZQr div {
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #768bac;
}
.wrapper___35v2e .font1___3jgmr {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
}
.wrapper___35v2e .font2___1jvaP {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #20a4fc;
}
.wrapper___35v2e .font_green___1oALt {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #10B721;
}
.wrapper___35v2e .font_red___2ksDh {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #FF2727;
}
.wrapper___35v2e .font_yellow___1kcB9 {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #CCBB00;
}
.wrapper___35v2e .font4___mIWW3 {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  background: #20a4fc;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #ffffff;
}
.wrapper___35v2e .font5___DCtDJ {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___35v2e .imgs___17E50 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wrapper___35v2e .imgs___17E50 img {
  width: 12px;
  height: 12px;
  margin: 0px 3px;
}
.wrapper___35v2e .zoom___1lpxN {
  display: inline-block;
  width: 65px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
}
.wrapper___35v2e .alarm___2H2I2 {
  position: relative;
}
.wrapper___35v2e .alarm___2H2I2::before {
  content: '';
  width: 3px;
  height: 34px;
  position: absolute;
  left: -4px;
  top: -8px;
  background: red;
  border-radius: 0px 4px 4px 0px;
}
.wrapper___35v2e .ant-table-header {
  margin-bottom: 0px !important;
}
.wrapper___35v2e .ant-table-thead > tr {
  height: 45px;
}
.wrapper___35v2e .ant-table-tbody > tr {
  cursor: pointer !important;
  height: 45px;
}
.wrapper___35v2e .ant-table-tbody > tr:nth-of-type(even) {
  background: #f8f9fc;
  border: 0px solid #979797;
}
.wrapper___35v2e ::-webkit-scrollbar {
  display: none;
}
.wrapper___3z0yr {
  background-color: #F6F6F6;
  padding: 20px;
  min-height: calc(100vh - 150px);
}
.wrapper___3z0yr .header___b8tIv {
  position: relative;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___3z0yr .header___b8tIv .cascader___2qzY3 {
  width: 200px;
  margin-right: 16px;
}
.wrapper___3z0yr .header___b8tIv .cascader___2qzY3 .ant-cascader-input {
  height: 29px;
}
.wrapper___3z0yr .header___b8tIv .headerButton___1xRkd {
  width: 80px;
  height: 29px;
  margin-right: 10px;
}
.wrapper___3z0yr .header___b8tIv .humi___3Mk2J {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #333333;
}
.wrapper___3z0yr .header___b8tIv .humi___3Mk2J img {
  width: 16px;
}
.wrapper___3z0yr .header___b8tIv .humi___3Mk2J span:nth-child(1) {
  padding-left: 30px;
}
.wrapper___3z0yr .header___b8tIv .humi___3Mk2J span:nth-child(2) {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #10B721;
}
.wrapper___3z0yr .header___b8tIv .temp___mDzoh {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #333333;
}
.wrapper___3z0yr .header___b8tIv .temp___mDzoh img {
  width: 16px;
}
.wrapper___3z0yr .header___b8tIv .temp___mDzoh span:nth-child(1) {
  padding-left: 30px;
}
.wrapper___3z0yr .header___b8tIv .temp___mDzoh span:nth-child(2) {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #20a4fc;
}
.wrapper___3z0yr .center___2tWMI {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  min-height: calc(100vh - 250px);
}
.wrapper___3z0yr .center___2tWMI .left___KB49D {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  overflow: hidden;
  background-color: #ffffff;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M {
  padding: 20px;
  position: relative;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .top___7LJpJ {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .top___7LJpJ .itemButton___38alA {
  height: 30px;
  line-height: 30px;
  padding: 0px 10px;
  margin-right: 10px;
  border: 1px solid #ececec;
  border-radius: 3px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
  cursor: pointer;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .top___7LJpJ .itemButton___38alA img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-left: 0px;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .top___7LJpJ .itemButton___38alA.active___Aqv1O {
  background: #20a4fc !important;
  color: #ffffff;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .top___7LJpJ img {
  width: 20px;
  margin-left: 10px;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view1___1jkpD {
  max-height: calc(100vh - 330px);
  overflow-y: scroll;
  margin-top: 20px;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view1___1jkpD .empty___zWqro {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view1_full___3XEcf {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view2___2eEse {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0px;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view2___2eEse .empty___zWqro {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view2___2eEse .emptyBox___2gvpT {
  -ms-flex: 0 0 200px;
      flex: 0 0 200px;
  height: 1px;
  margin-bottom: 20px;
}
.wrapper___3z0yr .center___2tWMI .left___KB49D .tabs___-ZvgF .tabContent___1nw-M .view2_full___W0OsB {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___3z0yr .center___2tWMI .right___3hC6n {
  background-color: #ffffff;
  -ms-flex: 0 0 300px;
      flex: 0 0 300px;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 4px;
  margin-left: 20px;
  overflow-y: scroll;
}
.wrapper___3z0yr .center___2tWMI .right___3hC6n .empty___zWqro {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___3z0yr .center___2tWMI .right___3hC6n .title___1ELdy {
  font-size: 20px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}
.wrapper___3z0yr .fullScreen___3WMzT {
  padding: 20px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 40;
  margin-top: 0px !important;
  width: 100%;
  height: 100vh !important;
  background-color: #f6f6f6;
}
.wrapper___3z0yr .hide___1wb-q {
  display: none !important;
}
.popup___ti0yJ .content___1f2l_ .header_p_left___1xFt3 {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.popup___ti0yJ .content___1f2l_ .header_p_right___1mnnb {
  font-size: 14px;
  color: #666;
}
.popup___ti0yJ .content___1f2l_ .border_div___154e_ {
  position: relative;
  width: 500px;
  height: 399px;
  border: 1px solid #EDEDED;
  text-align: center;
}
.popup___ti0yJ .content___1f2l_ .search_input___3t6Hn {
  position: relative;
  z-index: 999;
  width: 313px;
  margin: 12px auto;
}
.popup___ti0yJ .content___1f2l_ .scroll_ul___1fX4r {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: scroll;
  z-index: 999;
}
.popup___ti0yJ .content___1f2l_ .scroll_ul___1fX4r li {
  height: 35px;
  line-height: 35px;
  text-align: left;
  font-size: 14px;
  color: #666;
  background: #f3f3f3;
  padding-left: 14px;
  cursor: pointer;
}
.popup___ti0yJ .content___1f2l_ .scroll_ul___1fX4r li:hover {
  color: #333;
}
.popup___ti0yJ .content___1f2l_ .scroll_ul___1fX4r li.active___Aqv1O {
  background: #fff;
}
.popup___ti0yJ .content___1f2l_ .all_button___1pUbD {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 43px;
  background: #fff;
  z-index: 2000;
}
.popup___ti0yJ .content___1f2l_ .all_button___1pUbD span {
  display: block;
  width: 44px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
  color: #20A4FC;
  margin-left: 18px;
  margin-top: 10px;
  background: #F1F9FF;
  border-radius: 17px;
}
.popup___ti0yJ .content___1f2l_ .all_button___1pUbD span:hover {
  cursor: pointer;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  z-index: 999;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 43px;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  padding-left: 18px;
  margin: 10px 0;
  cursor: pointer;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e li span {
  font-size: 14px;
  color: #333;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e li.sb___3eeRF {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e li.sb___3eeRF .close___1n2U3 {
  font-size: 20px;
  color: #B2B3B4;
  padding: 0 10px;
}
.popup___ti0yJ .content___1f2l_ .chooseable_units___3O0NK .choseunit_ul___2gO0e li.sb___3eeRF .close___1n2U3:hover {
  color: #333;
}
.MyInput_item___2XHGv {
  width: 94%;
  text-align: center;
  margin: 5px auto;
}
.MyInput_item___2XHGv .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
  margin-right: 0px!important;
  min-width: 92px;
}
.MyInput_item___2XHGv .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___2XHGv .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px!important;
}
.MyInput_item___2XHGv .item_title___bSKii {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
  margin-top: 10px;
}
.MyInput_item___2XHGv .item_content___2S1HQ {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___2XHGv .item_content___2S1HQ input {
  text-align: center;
}
.MyInput_item___2XHGv .item_btns___3vk-g {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___2XHGv .item_btns___3vk-g .smallBtn___38s76 {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___2XHGv .item_btns___3vk-g .smallBtn___38s76 span i {
  padding: 0 9px;
}
.MyInput_item___2XHGv .item_btns___3vk-g .largeBtn___2Nl_t {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___2XHGv .ant-radio-group___o4cyV {
  width: 100%;
}
.MyInput_item___2XHGv .font_style___2VGd1 {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
  text-align: left;
}
.MyInput_item___2XHGv .input_number___2X3AV {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___2XHGv .input_number___2X3AV.minwidth___g1AOr {
  width: 65px !important;
}
.MyInput_item___2XHGv .font_radio___18mro {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -ms-flexbox!important;
  display: flex!important;
  -ms-flex-wrap: wrap!important;
      flex-wrap: wrap!important;
  -ms-flex-pack: justify !important;
      justify-content: space-between !important;
}
.input_minus___3XUut {
  height: 24px!important;
  min-width: 65px!important;
}
.input_minus___3XUut .ant-input-number {
  height: 24px!important;
  line-height: 24px!important;
}
.input_minus___3XUut .ant-input-number .ant-input-number-input {
  height: 24px!important;
}
.model_inactive___3bSn7 {
  display: none!important;
}
.btn_del___2irkM {
  cursor: pointer;
}
.red___13t7U {
  color: red!important;
}
.red___13t7U input {
  color: red !important;
}
.box___3MkqU {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  min-width: 212px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___3MkqU .ant-checkbox-inner {
  border: 1px solid #999999 !important;
}
.box___3MkqU .title___4wlrB {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___3MkqU .title___4wlrB > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.box___3MkqU .title___4wlrB > div > label {
  margin-right: 10px;
}
.box___3MkqU .title___4wlrB > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.box___3MkqU .title___4wlrB > div > span.disabled___suOtC button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___3MkqU .title___4wlrB > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___3MkqU .title___4wlrB > div > button:hover {
  background-color: #D5EEFF;
}
.box___3MkqU .title___4wlrB > div > button.success___y4Mzr {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___3MkqU .title___4wlrB > div > button.disabled___suOtC {
  background-color: #EBECED;
  color: #999999;
}
.box___3MkqU .more___2QCvm {
  position: relative;
}
.box___3MkqU .more___2QCvm .template___1dHux {
  padding-top: 10px;
  padding-left: 10px;
}
.box___3MkqU .more___2QCvm .main___2ElcJ {
  display: none;
  width: 100%;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .ant-form-item {
  min-height: auto;
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .has-error .ant-form-explain,
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK {
  margin-top: 18px;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px !important;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .item_title___3NxHz {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .item_content___1_Sz8 {
  display: -ms-flexbox;
  display: flex;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .item_content___1_Sz8 input {
  text-align: center;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .input_minus___1BeqN {
  height: 24px;
  min-width: 65px;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .input_minus___1BeqN .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .input_minus___1BeqN .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___3MkqU .more___2QCvm .main___2ElcJ .model___1rwHv .item___2rRnK .item_btns___kRu0y {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___3MkqU .more___2QCvm .pull___2BzAo {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___3MkqU .more___2QCvm .pull___2BzAo > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___3MkqU .more___2QCvm .pull___2BzAo > span i {
  margin-left: 4px;
}
.box___3MkqU.active___2d-AU {
  border-radius: 3px 3px 0 0;
}
.box___3MkqU.active___2d-AU .more___2QCvm > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: scroll !important;
  overflow-x: hidden;
}
.box___3MkqU.active___2d-AU .title___4wlrB {
  border-bottom: 0;
}
.box___3MkqU.active___2d-AU .more___2QCvm > div {
  width: 100%;
  background-color: #fff;
}
.box___3MkqU.active___2d-AU .more___2QCvm > div .main___2ElcJ {
  display: inline-block;
}
.box___3MkqU.active___2d-AU .more___2QCvm > div .pull___2BzAo {
  border-top: 1px solid #eee;
}
.box___3MkqU.active___2d-AU .more___2QCvm > div .pull___2BzAo i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___3MkqU.active___2d-AU .bottom___3WknM {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
}
.box___3MkqU.active___2d-AU .bottom___3WknM .buttons___2n5ep {
  text-align: center;
  padding: 10px 0px;
}
.box___3MkqU.active___2d-AU .bottom___3WknM .buttons___2n5ep button {
  margin: 0px 5px;
}
.box___3MkqU.active___2d-AU .bottom___3WknM .buttons___2n5ep .button___246_y {
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___3MkqU.children___2p3it {
  height: 55px;
}
.box___3MkqU.children___2p3it .title___4wlrB > div {
  border: 0 !important;
}
.box___3MkqU.children___2p3it .more___2QCvm .pull___2BzAo {
  visibility: hidden;
}
.box___3MkqU .commonInputNumber___1mhFF {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___3MkqU.temp___2PMLz .more___2QCvm > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3MkqU.temp___2PMLz.active___2d-AU .ant-form-item {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3MkqU.temp___2PMLz.active___2d-AU .titleCommon___3O4y- {
  display: inline-block;
  margin: 10px;
}
.box___3MkqU.temp___2PMLz.active___2d-AU .col1___1M6ZP {
  text-align: center;
  line-height: 40px;
}
.box___3MkqU.temp___2PMLz.active___2d-AU .title___4wlrB {
  width: 100% !important;
  margin: 0px !important;
}
.box___3MkqU.edit_temp___1Qquf .more___2QCvm > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  height: 510px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3MkqU.edit_temp___1Qquf.active___2d-AU .ant-form-item {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3MkqU.edit_temp___1Qquf.active___2d-AU .titleCommon___3O4y- {
  display: inline-block;
  margin: 10px;
}
.box___3MkqU.edit_temp___1Qquf.active___2d-AU .col1___1M6ZP {
  text-align: center;
  line-height: 40px;
}
.box___3MkqU.edit_temp___1Qquf.active___2d-AU .title___4wlrB {
  width: 100% !important;
  margin: 0px !important;
}
.box___3MkqU.sensor___onnir span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___3MkqU.sensor___onnir .more___2QCvm > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3MkqU.sensor___onnir.active___2d-AU .ant-form-item {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3MkqU.sensor___onnir.active___2d-AU .titleCommon___3O4y- {
  display: inline-block;
  margin: 10px;
}
.box___3MkqU.sensor___onnir.active___2d-AU .col1___1M6ZP {
  text-align: center;
  line-height: 40px;
}
.box___3MkqU.sensor___onnir.active___2d-AU .title___4wlrB {
  width: 100% !important;
  margin: 0px !important;
}
.box___3MkqU.edit_sensor___1aHIH span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___3MkqU.edit_sensor___1aHIH .more___2QCvm > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3MkqU.edit_sensor___1aHIH.active___2d-AU .ant-form-item {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3MkqU.edit_sensor___1aHIH.active___2d-AU .titleCommon___3O4y- {
  display: inline-block;
  margin: 10px;
}
.box___3MkqU.edit_sensor___1aHIH.active___2d-AU .col1___1M6ZP {
  text-align: center;
  line-height: 40px;
}
.box___3MkqU.edit_sensor___1aHIH.active___2d-AU .title___4wlrB {
  width: 100% !important;
  margin: 0px !important;
}
.box___3MkqU .hide___2kQB_ {
  display: none !important;
}
.box___3MkqU .show___QLtcG {
  display: block !important;
}
.box___3MkqU .red___3YECM {
  color: red !important;
}
.box___3MkqU .red___3YECM input {
  color: red !important;
}
.box___3MkqU .red___3YECM .ant-input-number-input[disabled] {
  color: red !important;
}
.edit_box___1ujpH .more___2QCvm {
  margin-bottom: 50px;
}
.labelFont___3E0E- {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.box___3cvfU {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  min-width: 212px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___3cvfU .ant-checkbox-inner {
  border: 1px solid #999999 !important;
}
.box___3cvfU .title___2R5KI {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___3cvfU .title___2R5KI > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.box___3cvfU .title___2R5KI > div > label {
  margin-right: 10px;
}
.box___3cvfU .title___2R5KI > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.box___3cvfU .title___2R5KI > div > span.disabled___jJRM2 button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___3cvfU .title___2R5KI > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___3cvfU .title___2R5KI > div > button:hover {
  background-color: #D5EEFF;
}
.box___3cvfU .title___2R5KI > div > button.success___28Phl {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___3cvfU .title___2R5KI > div > button.disabled___jJRM2 {
  background-color: #EBECED;
  color: #999999;
}
.box___3cvfU .more___2vTSD {
  position: relative;
}
.box___3cvfU .more___2vTSD .template___1b_fi {
  padding-top: 10px;
  padding-left: 10px;
}
.box___3cvfU .more___2vTSD .main___1h7h- {
  display: none;
  width: 100%;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .ant-form-item {
  min-height: auto;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .has-error .ant-form-explain,
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio {
  margin-top: 18px;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px !important;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .item_title___3iZyW {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .item_content___3bABW {
  display: -ms-flexbox;
  display: flex;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .item_content___3bABW input {
  text-align: center;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .input_minus___3yeJe {
  height: 24px;
  min-width: 65px;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .input_minus___3yeJe .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .input_minus___3yeJe .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___3cvfU .more___2vTSD .main___1h7h- .model___33Ksd .item___2qXio .item_btns___ejFET {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___3cvfU .more___2vTSD .pull___1_jAY {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___3cvfU .more___2vTSD .pull___1_jAY > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___3cvfU .more___2vTSD .pull___1_jAY > span i {
  margin-left: 4px;
}
.box___3cvfU.active___1m52E {
  border-radius: 3px 3px 0 0;
}
.box___3cvfU.active___1m52E .more___2vTSD > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: scroll !important;
  overflow-x: hidden;
}
.box___3cvfU.active___1m52E .title___2R5KI {
  border-bottom: 0;
}
.box___3cvfU.active___1m52E .more___2vTSD > div {
  width: 100%;
  background-color: #fff;
}
.box___3cvfU.active___1m52E .more___2vTSD > div .main___1h7h- {
  display: inline-block;
}
.box___3cvfU.active___1m52E .more___2vTSD > div .pull___1_jAY {
  border-top: 1px solid #eee;
}
.box___3cvfU.active___1m52E .more___2vTSD > div .pull___1_jAY i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___3cvfU.active___1m52E .bottom___cm3sh {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
}
.box___3cvfU.active___1m52E .bottom___cm3sh .buttons___1AyCH {
  text-align: center;
  padding: 10px 0px;
}
.box___3cvfU.active___1m52E .bottom___cm3sh .buttons___1AyCH button {
  margin: 0px 5px;
}
.box___3cvfU.active___1m52E .bottom___cm3sh .buttons___1AyCH .button___2ebZo {
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___3cvfU.children___31aVE {
  height: 55px;
}
.box___3cvfU.children___31aVE .title___2R5KI > div {
  border: 0 !important;
}
.box___3cvfU.children___31aVE .more___2vTSD .pull___1_jAY {
  visibility: hidden;
}
.box___3cvfU .commonInputNumber___2Lxes {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___3cvfU.temp___26xuT .more___2vTSD > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3cvfU.temp___26xuT.active___1m52E .ant-form-item___VI6Qg {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3cvfU.temp___26xuT.active___1m52E .titleCommon___bswOF {
  display: inline-block;
  margin: 10px;
}
.box___3cvfU.temp___26xuT.active___1m52E .col1___1r1zx {
  text-align: center;
  line-height: 40px;
}
.box___3cvfU.temp___26xuT.active___1m52E .title___2R5KI {
  width: 100% !important;
  margin: 0px !important;
}
.box___3cvfU.edit_temp___27d0v .more___2vTSD > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  height: 510px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3cvfU.edit_temp___27d0v.active___1m52E .ant-form-item___VI6Qg {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3cvfU.edit_temp___27d0v.active___1m52E .titleCommon___bswOF {
  display: inline-block;
  margin: 10px;
}
.box___3cvfU.edit_temp___27d0v.active___1m52E .col1___1r1zx {
  text-align: center;
  line-height: 40px;
}
.box___3cvfU.edit_temp___27d0v.active___1m52E .title___2R5KI {
  width: 100% !important;
  margin: 0px !important;
}
.box___3cvfU.sensor___3R_oh span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___3cvfU.sensor___3R_oh .more___2vTSD > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3cvfU.sensor___3R_oh.active___1m52E .ant-form-item___VI6Qg {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3cvfU.sensor___3R_oh.active___1m52E .titleCommon___bswOF {
  display: inline-block;
  margin: 10px;
}
.box___3cvfU.sensor___3R_oh.active___1m52E .col1___1r1zx {
  text-align: center;
  line-height: 40px;
}
.box___3cvfU.sensor___3R_oh.active___1m52E .title___2R5KI {
  width: 100% !important;
  margin: 0px !important;
}
.box___3cvfU.edit_sensor___3fgq3 span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___3cvfU.edit_sensor___3fgq3 .more___2vTSD > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3cvfU.edit_sensor___3fgq3.active___1m52E .ant-form-item___VI6Qg {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3cvfU.edit_sensor___3fgq3.active___1m52E .titleCommon___bswOF {
  display: inline-block;
  margin: 10px;
}
.box___3cvfU.edit_sensor___3fgq3.active___1m52E .col1___1r1zx {
  text-align: center;
  line-height: 40px;
}
.box___3cvfU.edit_sensor___3fgq3.active___1m52E .title___2R5KI {
  width: 100% !important;
  margin: 0px !important;
}
.box___3cvfU .hide___3rLcm {
  display: none !important;
}
.box___3cvfU .show___1xB5U {
  display: block !important;
}
.box___3cvfU .red___1GMR0 {
  color: red !important;
}
.box___3cvfU .red___1GMR0 input {
  color: red !important;
}
.box___3cvfU .red___1GMR0 .ant-input-number-input[disabled] {
  color: red !important;
}
.edit_box___19MGn .more___2vTSD {
  margin-bottom: 50px;
}
.labelFont___2LT_b {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___dGM_7 {
  width: 100%;
  height: 100%;
}
.wrapper___dGM_7 .header___3GqPS {
  width: 100%;
  height: 100%;
  padding: 20px;
}
.wrapper___dGM_7 .center___2OFCZ {
  background-color: #f3f4f5;
  padding: 20px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU {
  background-color: #ffffff;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W {
  background: #f3f4f5;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc {
  background: #fff;
  border-radius: 3px 3px 0 0;
  padding: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 {
  width: 222px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 ul {
  list-style: none;
  padding: 0;
  margin: 5px 12px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 ul li {
  padding: 0;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .eTitle___2Rxql {
  color: #666;
  padding: 4px 0px;
  font-size: 14px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .eTitle___2Rxql .num___2tanB {
  color: #222;
  font-weight: 500;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .title___110H1 {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 28px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .title___110H1 img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .content___3QcMK {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .contentBox___2UbMd {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  text-align: center;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .contentBox___2UbMd .box___32Cki {
  height: 125px;
  padding-top: 38px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .contentBox___2UbMd .box___32Cki .value___3-Xu5 {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
  margin: 0 auto;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_left___17Gh2 .contentBox___2UbMd .box___32Cki .name___1vZyW {
  width: 48px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  margin: 0 auto;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf {
  margin-left: 18px;
  /* margin-right: 12px; */
  width: 100%;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .title___110H1 {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 28px;
  color: #333333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .title___110H1 img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK {
  display: -ms-flexbox;
  display: flex;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  padding: 7px 0px 15px 0px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .label___2VnFZ {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .label___2VnFZ li {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .label___2VnFZ li img {
  width: 24px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .value___3-Xu5 {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .value___3-Xu5 .li___1Xy6Z {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .value___3-Xu5 .date___3sPsY {
  font-family: PingFang SC;
  font-size: 13px;
  font-weight: 500;
  color: #9ea5aa;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .baseBox___2f8Xc .baseBox_right___3X-Nf .content___3QcMK .value___3-Xu5 .date_today___2rCD3 {
  font-family: PingFang SC;
  color: #20a4fc;
  font-size: 13px;
  font-weight: 500;
  width: 90px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  background: #f2faff;
  border-radius: 14px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .splitLine___2Y4I- {
  height: 47px;
  line-height: 47px;
  padding: 0px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .splitLine___2Y4I- .splitLineContainer___2LwLG {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .splitLine___2Y4I- img {
  width: 28px;
  margin-top: -5px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .splitLine___2Y4I- .rightT___1isDW {
  position: absolute;
  right: 20px;
  top: -1px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .splitLine___2Y4I- .rightT___1isDW .btn___2wKlj {
  margin-left: 20px;
  width: 88px;
  height: 32px;
  background: #20a4fc;
  border-radius: 16px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D {
  padding: 12px;
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 {
  height: 129px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  margin-right: 20px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5:nth-child(5) {
  margin-right: 0px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .title___110H1 {
  height: 43px;
  line-height: 43px;
  padding: 0px 12px;
  display: -ms-flexbox;
  display: flex;
  background: #F8F8F8;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0px;
  margin-top: 0px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .title___110H1 .name___1vZyW {
  display: inline-block;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  border-left: 3px solid #20A4FC;
  height: 10px;
  line-height: 10px;
  margin-top: 16px;
  padding-left: 5px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .title___110H1 .imgBox___1GFFf {
  width: 25px;
  height: 25px;
  position: relative;
  margin-top: 9px;
  margin-left: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .title___110H1 .imgBox___1GFFf.inactive___2OLoe {
  background: #959B9F;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .title___110H1 .imgBox___1GFFf:hover {
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .title___110H1 .imgBox___1GFFf img {
  width: 25px;
  height: 25px;
  position: absolute;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .content___3QcMK {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .content___3QcMK .value___3-Xu5 {
  width: 25%;
  height: 92px;
  text-align: center;
  padding-top: 16px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .devlopmentBox___xvJw5 .content___3QcMK .value___3-Xu5 .name___1vZyW {
  font-size: 12px;
  margin: 0 auto;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .title___110H1 {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .eTitle___2Rxql {
  border-radius: 3px;
  color: #666;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 19px 0;
  margin-left: 10px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .envirmentBox___3ui6D .eTitle___2Rxql .num___2tanB {
  color: #333;
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .deviceBox____V34F {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .deviceBox____V34F .title___110H1 {
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  padding-left: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .deviceBox____V34F .eTitle___2Rxql {
  border-radius: 3px;
  color: #222;
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 8.5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .deviceBox____V34F .eTitle___2Rxql .icon___3nQtG {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .deviceBox____V34F .eTitle___2Rxql .num___2tanB {
  position: absolute;
  right: 3px;
  top: 0px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .middle___3gdIZ .deviceBox____V34F .eTitle___2Rxql .leftNum___PYqyH {
  position: absolute;
  left: 3px;
  top: 0px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .dateTime___2lc9Y {
  position: absolute;
  right: 20px;
  top: 70px;
  z-index: 999;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .export___2uG_T {
  margin-left: 10px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .tabs___2DxgU .ant-tabs-nav {
  padding-left: 22px !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .tabs___2DxgU .ant-tabs-nav .ant-tabs-tab {
  margin: 0px !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .tabs___2DxgU .ant-tabs-bar {
  margin: 0;
  border-bottom: 0px solid #e8e8e8 !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .tabs___2DxgU .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 0px solid #318DD9;
  background: #53baff;
  color: #ffffff;
  border-radius: 19px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  height: 37px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .bgWrapper___1x7_W .bottom___MU0XD .tabs___2DxgU .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .multiControl___39JbB {
  padding-right: 20px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk .special___12ArX {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(20% - 1px);
      flex-basis: calc(20% - 1px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk .special___12ArX > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk .all___3CAPp {
  -ms-flex: 0 1 100%;
      flex: 0 1 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk .all___3CAPp > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk .half___ICS4q {
  -ms-flex: 0 1 40%;
      flex: 0 1 40%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .main___21Ljk .half___ICS4q > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .content___3QcMK {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .content___3QcMK .splitLine___2Y4I- {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .modile___HkxuZ {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .top___34d_I {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .top___34d_I .cascader___1NSfx {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .top___34d_I .cascader___1NSfx .ant-cascader-input {
  height: 29px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .top___34d_I .headerButton___2I3Pm {
  width: 80px;
  height: 29px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .top___34d_I label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .top___34d_I .deviceNum___3LQ-y {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .title___110H1 {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .title___110H1 span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .title___110H1 .btn_inactive___IyAqY {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .title___110H1 .btn_inactive___IyAqY span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .title___110H1 .btn_active___1PWqf {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .title___110H1 .btn_active___1PWqf span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I {
  margin-top: 10px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_title___3GF1y {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_content___-iqFR {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_content___-iqFR input {
  text-align: center;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .input_minus___1dLiw {
  height: 24px;
  min-width: 65px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .input_minus___1dLiw .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .input_minus___1dLiw .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_btns___6MIYl {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_btns___6MIYl .smallBtn___R1T8O {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_btns___6MIYl .smallBtn___R1T8O span i {
  padding: 0 9px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 .item___2oH0I .item_btns___6MIYl .largeBtn___35woB {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 li .ant-radio-group___1WF7f {
  width: 100%;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 li .font_style___2_ve7 {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 li .input_number___3wCKe {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 li .input_number___3wCKe.minwidth___31ZGM {
  width: 60px !important;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .control___2pIHc .model___15mm0 li .font_radio___1Leb- {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.wrapper___dGM_7 .center___2OFCZ .tabs___2DxgU .tabContent___n5mM_ .paramsetSpin___2DUGt .ant-spin {
  position: fixed !important;
  top: 200px !important;
}
.wrapper___dGM_7 .red___aLAIN {
  color: red !important;
}
.wrapper___dGM_7 .red___aLAIN input {
  color: red !important;
}
.model_inactive___5eEFi {
  display: none !important;
}
.hide___1sfY7 {
  display: none;
}
.show___mrQo2 {
  display: block;
}
.wrapper___2g7-N {
  background-color: #F6F6F6;
  padding: 20px;
}
.wrapper___2g7-N .header___2XsaL {
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  padding: 20px;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .cascader___1Vh29 {
  width: 200px;
  margin-right: 16px;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .cascader___1Vh29 .ant-cascader-input {
  height: 29px;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .headerButton___1fleP {
  width: 80px;
  height: 29px;
  margin-right: 10px;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .title___2-vzo {
  display: inline-block;
  -ms-flex: 0 0 52px;
      flex: 0 0 52px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #333333;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .my_concerns___xVj5A {
  overflow: hidden;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0px 10px;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .my_concerns___xVj5A .concern___1b2E2 {
  height: 24px;
  display: inline-block;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  margin-left: 10px;
  padding: 0px 10px;
  line-height: 24px;
  background: #eaf7ff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #20a4fc;
  cursor: pointer;
}
.wrapper___2g7-N .header___2XsaL .line1___3Aa1V .my_concerns___xVj5A .concern___1b2E2.active___13W0n {
  background: #20a4fc;
  color: #ffffff;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 {
  margin-top: 22px;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .buttons___1iv-0 {
  text-align: right;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .buttons___1iv-0 .empty___3ysY0 {
  margin-right: 16px;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .label___3ndVE {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .value___2bsbl {
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #223143;
  padding-right: 17px;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 img {
  width: 16px;
  margin: 0px 3px;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .user___3xIfJ > span {
  padding-right: 8px;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .user___3xIfJ input {
  height: 20px;
  margin: 0px 5px;
  border: none;
  padding: 0px;
  border-radius: 0;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #223143 !important;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .user___3xIfJ input:nth-of-type(1) {
  width: 65px !important;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .user___3xIfJ input:nth-of-type(2) {
  width: 110px !important;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .user___3xIfJ input:disabled {
  background-color: #ffffff !important;
}
.wrapper___2g7-N .header___2XsaL .line2___1yQI3 .user___3xIfJ input.edit___1oBs3 {
  border-bottom: 1px solid #ececec;
}
.wrapper___2g7-N .center___108xk {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  height: calc(200vh - 186px);
}
.wrapper___2g7-N .center___108xk .left___1NSY3 {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  overflow: hidden;
  background-color: #ffffff;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc {
  padding: 20px;
  position: relative;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .top___Gui0O {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .top___Gui0O .itemButton___35WkD {
  height: 30px;
  line-height: 30px;
  padding: 0px 10px;
  margin-right: 10px;
  border: 1px solid #ececec;
  border-radius: 3px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
  cursor: pointer;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .top___Gui0O .itemButton___35WkD img {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  margin-left: 0px;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .top___Gui0O .itemButton___35WkD.active___13W0n {
  background: #20a4fc !important;
  color: #ffffff;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .top___Gui0O img {
  width: 20px;
  margin-left: 20px;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view1___Qk6IC {
  max-height: calc(200vh - 330px);
  overflow-y: scroll;
  margin-top: 20px;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view1___Qk6IC .empty___3ysY0 {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view1_full___11EVH {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view2___1vZrr {
  max-height: calc(200vh - 270px);
  overflow-y: scroll;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0px;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view2___1vZrr .empty___3ysY0 {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view2___1vZrr .emptyBox___2Nav2 {
  -ms-flex: 0 0 240px;
      flex: 0 0 240px;
  height: 1px;
  margin-bottom: 20px;
}
.wrapper___2g7-N .center___108xk .left___1NSY3 .tabs___24ei6 .tabContent___1lCEc .view2_full___anhDj {
  max-height: calc(100vh - 190px) !important;
}
.wrapper___2g7-N .center___108xk .right___3tpKG {
  background-color: #ffffff;
  -ms-flex: 0 0 300px;
      flex: 0 0 300px;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 4px;
  margin-left: 20px;
  overflow-y: scroll;
}
.wrapper___2g7-N .center___108xk .right___3tpKG .empty___3ysY0 {
  height: 300px;
  width: 100%;
  line-height: 300px;
  text-align: center;
}
.wrapper___2g7-N .center___108xk .right___3tpKG .title___2-vzo {
  font-size: 20px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
  margin-bottom: 20px;
}
.wrapper___2g7-N .fullScreen___5px7Q {
  padding: 20px;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 40;
  margin-top: 0px !important;
  width: 100%;
  height: 100vh !important;
  background-color: #f6f6f6;
}
.wrapper___2g7-N .btn_course___2iAUJ {
  position: fixed;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  display: -ms-flexbox;
  display: flex;
  bottom: 70px;
  right: 30px;
  z-index: 41;
  width: 90px;
  height: 40px;
  background: #ffffff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 11px 0px rgba(144, 144, 144, 0.34);
          box-shadow: 0px 2px 11px 0px rgba(144, 144, 144, 0.34);
}
.wrapper___2g7-N .btn_course___2iAUJ span {
  display: inline-block;
  border-right: 2px solid #D8D8D8;
  width: 1px;
  height: 23px;
}
.wrapper___2g7-N .btn_course___2iAUJ img {
  width: 30px;
  cursor: pointer;
}
.wrapper___2g7-N .link_course___3RP6n {
  position: fixed;
  z-index: 999;
  bottom: 83px;
  right: 124px;
  width: 296px;
  height: 310px;
  padding: 20px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
}
.wrapper___2g7-N .link_course___3RP6n span {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___2g7-N .link_course___3RP6n .course___23Ll1 {
  height: 66px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___2g7-N .link_course___3RP6n .course___23Ll1 .course_title___teMlj {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
}
.wrapper___2g7-N .link_course___3RP6n .course___23Ll1 .course_work___2YIXb {
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #999999;
}
.wrapper___2g7-N .link_course___3RP6n .course___23Ll1 img {
  width: 26px;
  height: 18px;
  margin-right: 14px;
  cursor: pointer;
}
.wrapper___2g7-N .link_alarm___P6P8o {
  position: fixed;
  z-index: 1000;
  bottom: 70px;
  left: 510px;
  width: 500px;
  max-height: 600px;
  padding: 20px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.2);
}
.wrapper___2g7-N .link_alarm___P6P8o .title___2-vzo {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
  display: inline-block;
  margin-bottom: 10px;
}
.wrapper___2g7-N .link_alarm___P6P8o .alarm_content___13Ptr {
  max-height: 530px;
  overflow-y: scroll;
}
.wrapper___2g7-N .hide___2C5DG {
  display: none !important;
}
.concern_row___apuEJ {
  max-height: 500px;
  overflow-y: scroll;
}
.concern_row___apuEJ .field_item___3WS8N {
  height: 32px;
  width: 90%;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0px 10px;
  line-height: 32px;
  background: #eaf7ff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #20a4fc;
  cursor: pointer;
}
.concern_row___apuEJ .field_item___3WS8N.active___13W0n {
  background: #20a4fc;
  color: #ffffff;
}
.popup___1Zm_I .content___2TFxG .header_p_left___2oQ5W {
  text-align: center;
  font-size: 14px;
  color: #333;
}
.popup___1Zm_I .content___2TFxG .header_p_right___2DXeH {
  font-size: 14px;
  color: #666;
}
.popup___1Zm_I .content___2TFxG .border_div___dj-jI {
  position: relative;
  width: 500px;
  height: 399px;
  border: 1px solid #EDEDED;
  text-align: center;
}
.popup___1Zm_I .content___2TFxG .search_input___2YngL {
  position: relative;
  z-index: 999;
  width: 313px;
  margin: 12px auto;
}
.popup___1Zm_I .content___2TFxG .scroll_ul___2cLX0 {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: scroll;
  z-index: 999;
}
.popup___1Zm_I .content___2TFxG .scroll_ul___2cLX0 li {
  height: 35px;
  line-height: 35px;
  text-align: left;
  font-size: 14px;
  color: #666;
  background: #f3f3f3;
  padding-left: 14px;
  cursor: pointer;
}
.popup___1Zm_I .content___2TFxG .scroll_ul___2cLX0 li:hover {
  color: #333;
}
.popup___1Zm_I .content___2TFxG .scroll_ul___2cLX0 li.active___13W0n {
  background: #fff;
}
.popup___1Zm_I .content___2TFxG .all_button___SwkE8 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 43px;
  background: #fff;
  z-index: 2000;
}
.popup___1Zm_I .content___2TFxG .all_button___SwkE8 span {
  display: block;
  width: 44px;
  height: 23px;
  text-align: center;
  line-height: 23px;
  font-size: 14px;
  color: #20A4FC;
  margin-left: 18px;
  margin-top: 10px;
  background: #F1F9FF;
  border-radius: 17px;
}
.popup___1Zm_I .content___2TFxG .all_button___SwkE8 span:hover {
  cursor: pointer;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA {
  position: relative;
  height: 100%;
  overflow-y: scroll;
  z-index: 999;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 43px;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  text-align: left;
  padding-left: 18px;
  margin: 10px 0;
  cursor: pointer;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK li span {
  font-size: 14px;
  color: #333;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK li.sb___2_tAl {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK li.sb___2_tAl .close___33ZGy {
  font-size: 20px;
  color: #B2B3B4;
  padding: 0 10px;
}
.popup___1Zm_I .content___2TFxG .chooseable_units___c0otA .choseunit_ul____QqbK li.sb___2_tAl .close___33ZGy:hover {
  color: #333;
}
.wrapper___3o0ON .font1___1YHqU {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #333333;
}
.wrapper___3o0ON .font2___17QA6 {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #20a4fc;
}
.wrapper___3o0ON .font_green___IaN6z {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #10B721;
}
.wrapper___3o0ON .font_red___332zu {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #FF2727;
}
.wrapper___3o0ON .font_yellow___3pT8S {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #CCBB00;
}
.wrapper___3o0ON .font4___2N5tm {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  background: #20a4fc;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #ffffff;
}
.wrapper___3o0ON .font5___Xk4Ym {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #333333;
}
.wrapper___3o0ON .imgs___2ypIv {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.wrapper___3o0ON .imgs___2ypIv img {
  width: 12px;
  height: 12px;
  margin: 0px 3px;
}
.wrapper___3o0ON .alarm___tmrMp {
  position: relative;
}
.wrapper___3o0ON .alarm___tmrMp::before {
  content: '';
  width: 3px;
  height: 34px;
  position: absolute;
  left: -4px;
  top: -8px;
  background: red;
  border-radius: 0px 4px 4px 0px;
}
.wrapper___3o0ON .ant-table-header {
  margin-bottom: 0px!important;
}
.wrapper___3o0ON .ant-table-thead > tr {
  height: 45px;
}
.wrapper___3o0ON .ant-table-tbody > tr {
  cursor: pointer!important;
  height: 45px;
}
.wrapper___3o0ON .ant-table-tbody > tr:nth-of-type(even) {
  background: #f8f9fc;
  border: 0px solid #979797;
}
.wrapper___3o0ON ::-webkit-scrollbar {
  display: none;
}
.boxWrapper___11OxC {
  -ms-flex: 0 0 240px;
      flex: 0 0 240px;
  height: 283px;
  margin-bottom: 20px;
  background: #fdfeff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  cursor: pointer;
}
.boxWrapper___11OxC:hover {
  -webkit-box-shadow: 0px 4px 14px 0px rgba(77, 77, 77, 0.3);
          box-shadow: 0px 4px 14px 0px rgba(77, 77, 77, 0.3);
}
.boxWrapper___11OxC.wran___3wynk {
  border: 3px solid #FF2727 !important;
}
.boxWrapper___11OxC .title___3VD6k {
  padding: 0px 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 36px;
  line-height: 36px;
  background: #f7faff;
  border-radius: 4px 4px 0px 0px;
}
.boxWrapper___11OxC .title___3VD6k span {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #768bac;
}
.boxWrapper___11OxC .title___3VD6k .title_left___1uflL {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.boxWrapper___11OxC .title___3VD6k .title_left___1uflL > div:nth-child(1) {
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #666666;
  height: 18px;
  line-height: 18px;
}
.boxWrapper___11OxC .title___3VD6k .title_left___1uflL > div:nth-child(2) {
  opacity: 0.7;
  font-size: 10px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #666666;
  height: 12px;
  line-height: 12px;
}
.boxWrapper___11OxC .title___3VD6k img {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
.boxWrapper___11OxC .imgs___HnBdl {
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: center;
}
.boxWrapper___11OxC .imgs___HnBdl .wind____2ruD {
  position: relative;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.boxWrapper___11OxC .imgs___HnBdl .wind____2ruD span {
  background: #d0e9fd;
  font-size: 11px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #7894e3;
  position: absolute;
  display: inline-block;
  top: -9px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 9px;
}
.boxWrapper___11OxC .imgs___HnBdl .wind____2ruD img {
  width: 32px;
  height: 32px;
}
.boxWrapper___11OxC .imgs___HnBdl .wind_title___zJA0w {
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #768bac;
}
.boxWrapper___11OxC .rates___23Go7 {
  margin: 0px 10px;
}
.boxWrapper___11OxC .rates___23Go7 .ant-col:nth-child(1) {
  text-align: left;
}
.boxWrapper___11OxC .rates___23Go7 .ant-col:nth-child(2) {
  text-align: center;
}
.boxWrapper___11OxC .rates___23Go7 .ant-col:nth-child(3) {
  text-align: right;
}
.boxWrapper___11OxC .rates___23Go7 .wind_title___zJA0w {
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #768bac;
}
.boxWrapper___11OxC .row___1Ffv_ {
  display: -ms-flexbox;
  display: flex;
  margin: 0px 10px;
}
.boxWrapper___11OxC .row___1Ffv_:nth-child(1) {
  border-bottom: 1px solid #E8ECF4;
}
.boxWrapper___11OxC .row___1Ffv_ span {
  display: inline-block;
  height: 39px;
  line-height: 39px;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  color: #768bac;
}
.boxWrapper___11OxC .row___1Ffv_ span:nth-child(1) {
  text-align: left;
}
.boxWrapper___11OxC .row___1Ffv_ span:nth-child(2) {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center;
}
.boxWrapper___11OxC .row___1Ffv_ span:nth-child(1) {
  text-align: right;
}
.boxWrapper___11OxC .font_green___1qMxf {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #10B721;
}
.boxWrapper___11OxC .font_red___authQ {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #FF2727;
}
.boxWrapper___11OxC .font_yellow___PLbeo {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Bold;
  font-weight: 700;
  color: #CCBB00;
}
.boxWrapper___11OxC .font1___27ZTl {
  font-size: 10px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #768bac;
}
.wrapper___U0iW7 .input_wrapper___393Ff {
  position: relative;
  margin-right: 10px;
  width: 330px;
}
.wrapper___U0iW7 .input_wrapper___393Ff .input_label___2Zm__ {
  position: absolute;
  display: inline-block;
  left: 10px !important;
  top: 0px !important;
  width: 100%;
  height: 32px;
  padding-right: 40px;
  overflow: hidden;
  line-height: 32px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wrapper___U0iW7 .input_wrapper___393Ff .input_label___2Zm__.hide___3gnHP {
  display: none;
}
.wrapper___U0iW7 .input_wrapper___393Ff input {
  cursor: pointer;
  background: transparent!important;
}
.wrapper___U0iW7 .input_wrapper___393Ff .icon_clear___2pcT1 {
  display: none;
}
.wrapper___U0iW7 .input_wrapper___393Ff.clear___17NDo:hover .anticon-down,
.wrapper___U0iW7 .input_wrapper___393Ff.clear___17NDo:hover .anticon-up {
  display: none !important;
}
.wrapper___U0iW7 .input_wrapper___393Ff.clear___17NDo:hover .icon_clear___2pcT1 {
  display: inline-block !important;
  position: absolute !important;
  font-size: 12px !important;
  right: 10px !important;
  top: 10px !important;
}
.wrapper___U0iW7 .input_wrapper___393Ff .anticon {
  position: absolute !important;
  font-size: 12px !important;
  right: 10px !important;
  top: 10px !important;
}
.wrapper___U0iW7 .my_cascader_menus___3Cojo {
  position: absolute;
  left: 20px;
  top: 55px;
  z-index: 1050;
  font-size: 14px;
  white-space: nowrap;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.wrapper___U0iW7 .my_cascader_menus_empty___1GrxX,
.wrapper___U0iW7 .my_cascader_menus_hidden___33TuY {
  display: none;
}
.wrapper___U0iW7 .my_cascader_menu___3rGgo:only_child {
  border-radius: 4px;
}
.wrapper___U0iW7 .my_cascader_menu___3rGgo:first-child {
  border-radius: 4px 0 0 4px;
}
.wrapper___U0iW7 .my_cascader_menu___3rGgo:last-child {
  margin-right: -1px;
  border-right-color: transparent;
  border-radius: 0 4px 4px 0;
}
.wrapper___U0iW7 .my_cascader_menus___3Cojo ul {
  margin: 0;
  list-style: none;
}
.wrapper___U0iW7 .my_cascader_menu___3rGgo {
  display: inline-block;
  min-width: 111px;
  height: 180px;
  margin: 0;
  padding: 4px 0;
  overflow: auto;
  vertical-align: top;
  list-style: none;
  border-right: 1px solid #e8e8e8;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.wrapper___U0iW7 .my_cascader_menu_item_expand___2daKG {
  position: relative;
  padding-right: 24px;
}
.wrapper___U0iW7 .my_cascader_menu_item___2c8NE {
  padding: 0px 12px;
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper___U0iW7 .my_cascader_menu_item_expand___2daKG .my_cascader_menu_item_expand_icon___3mCf9,
.wrapper___U0iW7 .my_cascader_menu_item_loading_icon___gIaIt {
  font-size: 12px;
}
.wrapper___U0iW7 .my_cascader_menu_item_expand___2daKG .my_cascader_menu_item_expand_icon___3mCf9 .anticon,
.wrapper___U0iW7 .my_cascader_menu_item_loading_icon___gIaIt .anticon {
  font-size: 12px !important;
  line-height: 32px;
  float: right;
  cursor: pointer;
}
.wrapper___U0iW7 .my_cascader_menu_item_active___sMG10:not(.my_cascader_menu_item_disabled___80djr),
.wrapper___U0iW7 .my_cascader_menu_item_active___sMG10:not(.my_cascader_menu_item_disabled___80djr):hover {
  font-weight: 600;
  background-color: #fafafa;
}
.page___2DV2z {
  padding: 20px;
  background-color: #F6F6F6;
}
.page___2DV2z .header___2_iSd {
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  margin-bottom: 20px;
  -ms-flex-align: center;
      align-items: center;
}
.page___2DV2z .header___2_iSd > div:nth-child(1) > div:nth-child(1) {
  background-color: #ffffff;
}
.page___2DV2z .header___2_iSd .headerButton___2Cv22 {
  margin-right: 10px;
}
.page___2DV2z .header___2_iSd .title___3tDYn {
  display: inline-block;
  -ms-flex: 0 0 52px;
      flex: 0 0 52px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  color: #333333;
}
.page___2DV2z .header___2_iSd .my_concerns___1zw4q {
  overflow: hidden;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0px 10px;
}
.page___2DV2z .header___2_iSd .my_concerns___1zw4q .concern___Eg0eC {
  height: 24px;
  display: inline-block;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  margin-left: 10px;
  padding: 0px 10px;
  line-height: 24px;
  background: #FFFFFF;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #959AA5;
  cursor: pointer;
}
.page___2DV2z .header___2_iSd .my_concerns___1zw4q .concern___Eg0eC.active___3kfU8 {
  border: 1px solid #20a4fc;
  color: #20A4FC;
}
.page___2DV2z .chartTitle___2y_qY {
  display: inline-block;
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
}
.concern_row___26RnE {
  max-height: 500px;
  overflow-y: scroll;
}
.concern_row___26RnE .field_item___PVWqG {
  height: 32px;
  width: 90%;
  margin-bottom: 10px;
  display: inline-block;
  padding: 0px 10px;
  line-height: 32px;
  background: #eaf7ff;
  border-radius: 2px;
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  text-align: center;
  color: #20a4fc;
  cursor: pointer;
}
.concern_row___26RnE .field_item___PVWqG.active___3kfU8 {
  background: #20a4fc;
  color: #ffffff;
}
@media (min-width: 1440px) {
  .box_wrapper___3HTn- {
    width: 165px!important;
  }
}
.box_wrapper___3HTn- {
  width: 12.5%;
  padding: 10px;
  background: #667286;
  cursor: pointer;
}
.box_wrapper___3HTn- .box___1S8eM {
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border: 1px solid #eeeeee;
}
.box_wrapper___3HTn- .box___1S8eM .title___3Vi8k {
  height: 29px;
  line-height: 29px;
  text-align: center;
  background: #ededed;
  border-radius: 4px 4px 0px 0px;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
}
.box_wrapper___3HTn- .box___1S8eM .title___3Vi8k > label {
  margin-right: 2px;
}
.box_wrapper___3HTn- .box___1S8eM .title___3Vi8k .ant-checkbox-inner {
  width: 14px;
  height: 14px;
  border-radius: 7px!important;
}
.box_wrapper___3HTn- .box___1S8eM .center___nsHdC {
  padding-top: 6px;
}
.box_wrapper___3HTn- .box___1S8eM .info___2xwsP {
  padding: 0px 13px;
  display: -ms-flexbox;
  display: flex;
  height: 21px;
  line-height: 21px;
}
.box_wrapper___3HTn- .box___1S8eM .info___2xwsP .label___1fta4 {
  position: relative;
  display: inline-block;
  -ms-flex: 0 0 40px;
      flex: 0 0 40px;
  margin-right: 9px;
  text-align: center;
  font-size: 10px;
  font-family: BenmoYonghei;
  color: #737d87;
}
.box_wrapper___3HTn- .box___1S8eM .info___2xwsP .label___1fta4::before {
  content: '';
  height: 32px;
  width: 80px;
  position: absolute;
  left: -20px;
  top: -5.5px;
  border-radius: 8px;
  border: 1px solid #c2c7cc;
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
}
.box_wrapper___3HTn- .box___1S8eM .info___2xwsP .value___1QP_K {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: inline-block;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}
.box_wrapper___3HTn- .box___1S8eM .bottom___afVRz {
  margin-top: 6px;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  line-height: 24px;
  border-top: 1px solid #EEEEEE;
}
.box_wrapper___3HTn- .box___1S8eM .bottom___afVRz div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  border-right: 1px solid #EEEEEE;
  text-align: center;
}
.box_wrapper___3HTn- .box___1S8eM .bottom___afVRz div:last-child {
  border: none;
}
.box_wrapper___3HTn- .box___1S8eM .bottom___afVRz div img {
  width: 14px;
}
.hide___1XfYb {
  display: none!important;
}
.box_top___2wXp5 {
  margin-right: 12px;
  margin-bottom: 12px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(8%, rgba(76, 94, 124, 0.6)), to(rgba(59, 71, 92, 0.6)));
  background: linear-gradient(180deg, rgba(76, 94, 124, 0.6) 8%, rgba(59, 71, 92, 0.6));
}
.box_top___2wXp5.small___tsE_c {
  width: 176px;
}
.box_top___2wXp5.large___1mWdM {
  width: 176px;
}
.box_top___2wXp5 .title___Xv68z {
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #171E29;
  opacity: 1;
  background: linear-gradient(214deg, #8795aa 28%, #4f5c71);
}
.box_top___2wXp5 .content___3unAV {
  padding-bottom: 4.5px;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw {
  height: 43px;
  line-height: 43px;
  border-bottom: 1px solid #2b3a54;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 13px 12px;
  padding: 0px 13px;
  height: 28px;
  line-height: 28px;
  background: #37445a;
  border-radius: 14px;
  -webkit-box-shadow: 0px 2px 7px 0px #5d7399 inset;
          box-shadow: 0px 2px 7px 0px #5d7399 inset;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .power___1WyE_ {
  height: 28px;
  line-height: 25px;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .power___1WyE_ img {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .date___1apk- {
  height: 28px;
  line-height: 25px;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .date___1apk- img {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0 {
  border-radius: 4px;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  display: inline-block;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0.online___T-a_X {
  background: #27dab0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0.offline___Ov49g {
  background: #d1d4d4;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
}
.box_top___2wXp5 .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0.alarm___10DTK {
  background: #ee6c6c;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
}
.box_top___2wXp5 .content___3unAV .group___laEFi {
  height: 78px;
  padding: 0px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.box_top___2wXp5 .content___3unAV .group___laEFi span {
  height: 24px;
  width: 24px;
  line-height: 24px;
  position: relative;
  border-radius: 12px;
  cursor: pointer;
}
.box_top___2wXp5 .content___3unAV .group___laEFi .water___179rV {
  display: -ms-flexbox;
  display: flex;
  margin: 0px 12px;
}
.box_top___2wXp5 .content___3unAV .group___laEFi.large___1mWdM {
  padding: 0px 42px !important;
}
.box_top___2wXp5 .content___3unAV .group___laEFi.small___tsE_c {
  padding: 0px 12px;
}
.box_top___2wXp5 .content___3unAV .group2___jxJV0 {
  height: 39px;
  padding: 0px 28px;
  border-top: 1px solid #2b3a54;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.box_top___2wXp5 .content___3unAV .group2___jxJV0 span {
  height: 24px;
  width: 24px;
  position: relative;
  border-radius: 12px;
  line-height: 24px;
  cursor: pointer;
}
.box_top___2wXp5 .content___3unAV .group3___3fOOs {
  height: 68px;
  border-top: 1px solid #2b3a54;
  padding: 4.5px 0px;
}
.box_top___2wXp5 .content___3unAV .group3___3fOOs .info___216IE {
  height: 18px;
  line-height: 18px;
  margin-bottom: 2px;
}
.box_top___2wXp5 .content___3unAV .group3___3fOOs .info___216IE img {
  margin-right: 10px;
  width: 13px;
  height: 13px;
  margin-top: 2px;
}
.box_top___2wXp5 .content___3unAV .group3___3fOOs .info___216IE span {
  padding-right: 10px;
  width: 125px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #dbe8ff;
}
.box_top___2wXp5 .content___3unAV .bar___2gkJP {
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #37445a;
  -webkit-box-shadow: 0px -2px 10px 0px #506281;
          box-shadow: 0px -2px 10px 0px #506281;
  border-radius: 14px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #dbe8ff;
}
.box_top___2wXp5 .content___3unAV .bar___2gkJP:not(:last-child) {
  margin-bottom: 6px;
}
.box_top___2wXp5 .center___27ibB {
  padding-top: 6px;
}
.box_top___2wXp5 .info___216IE {
  padding: 0px 13px;
  display: -ms-flexbox;
  display: flex;
  height: 21px;
  line-height: 21px;
}
.box_top___2wXp5 .info___216IE .label___3Ypfb {
  position: relative;
  display: inline-block;
  -ms-flex: 0 0 40px;
      flex: 0 0 40px;
  margin-right: 9px;
  text-align: center;
  font-size: 10px;
  font-family: BenmoYonghei;
  color: #737d87;
}
.box_top___2wXp5 .info___216IE .label___3Ypfb::before {
  content: '';
  height: 32px;
  width: 80px;
  position: absolute;
  left: -20px;
  top: -5.5px;
  border-radius: 8px;
  border: 1px solid #c2c7cc;
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
}
.box_top___2wXp5 .info___216IE .value___2XXFK {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: inline-block;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}
.box_top___2wXp5 .bottom___3qjrg {
  margin-top: 6px;
  display: -ms-flexbox;
  display: flex;
  height: 25px;
  line-height: 24px;
  border-top: 1px solid #EEEEEE;
}
.box_top___2wXp5 .bottom___3qjrg div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  border-right: 1px solid #EEEEEE;
  text-align: center;
}
.box_top___2wXp5 .bottom___3qjrg div:last-child {
  border: none;
}
.box_top___2wXp5 .bottom___3qjrg div img {
  width: 14px;
}
.box_bottom___2Tu6c {
  margin-right: 12px;
  margin-bottom: 12px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(8%, rgba(76, 94, 124, 0.6)), to(rgba(59, 71, 92, 0.6)));
  background: linear-gradient(180deg, rgba(76, 94, 124, 0.6) 8%, rgba(59, 71, 92, 0.6));
}
.box_bottom___2Tu6c.small___tsE_c {
  width: 176px;
}
.box_bottom___2Tu6c.large___1mWdM {
  width: 176px;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw {
  height: 43px;
  line-height: 43px;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin: 13px 12px;
  padding: 0px 13px;
  height: 28px;
  line-height: 28px;
  background: #37445a;
  border-radius: 14px;
  -webkit-box-shadow: 0px 2px 7px 0px #5d7399 inset;
          box-shadow: 0px 2px 7px 0px #5d7399 inset;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .power___1WyE_ {
  height: 28px;
  line-height: 25px;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .power___1WyE_ img {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .date___1apk- {
  height: 28px;
  line-height: 25px;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .date___1apk- img {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0 {
  border-radius: 4px;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  display: inline-block;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0.online___T-a_X {
  background: #27dab0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0.offline___Ov49g {
  background: #d1d4d4;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
}
.box_bottom___2Tu6c .content___3unAV .group0___1NSnw .water___179rV .littleCircle___2pAG0.alarm___10DTK {
  background: #ee6c6c;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
}
.box_bottom___2Tu6c .content___3unAV .group___laEFi {
  height: 78px;
  padding: 0px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: 1px solid #2b3a54;
}
.box_bottom___2Tu6c .content___3unAV .group___laEFi span {
  height: 24px;
  width: 24px;
  position: relative;
  line-height: 24px;
  border-radius: 12px;
  cursor: pointer;
}
.box_bottom___2Tu6c .content___3unAV .group___laEFi.large___1mWdM {
  padding: 0px 42px !important;
}
.box_bottom___2Tu6c .content___3unAV .group___laEFi.small___tsE_c {
  padding: 0px 12px;
}
.box_bottom___2Tu6c .content___3unAV .group2___jxJV0 {
  height: 39px;
  padding: 0px 28px;
  border-bottom: 1px solid #2b3a54;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.box_bottom___2Tu6c .content___3unAV .group2___jxJV0 span {
  height: 24px;
  width: 24px;
  position: relative;
  line-height: 24px;
  border-radius: 12px;
  cursor: pointer;
}
.box_bottom___2Tu6c .content___3unAV .bar___2gkJP {
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #37445a;
  -webkit-box-shadow: 0px -2px 10px 0px #506281;
          box-shadow: 0px -2px 10px 0px #506281;
  border-radius: 14px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #dbe8ff;
}
.box_bottom___2Tu6c .content___3unAV .bar___2gkJP:not(:first-child) {
  margin-top: 6px;
}
.box_bottom___2Tu6c .title___Xv68z {
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #171E29;
  background: linear-gradient(214deg, #8795aa 28%, #4f5c71);
}
.on___3tK4p {
  background: #27dab0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
  cursor: pointer;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.on_multi___2BBSz {
  border: 1px solid #27dab0;
  cursor: pointer;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #27DAB0;
}
.off___1R6f3 {
  background: #d1d4d4;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
  cursor: pointer;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.off_multi___2PnfE {
  cursor: pointer;
  border: 1px solid #d1d4d4;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #d1d4d4;
}
.error_online___26HYc {
  background: #ee6c6c;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
  cursor: pointer;
  border: 2px solid #5ce1c2;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
  line-height: 20px !important;
}
.error_offline___GSsx7 {
  background: #ee6c6c;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
  border: 2px solid #cecaca;
  cursor: pointer;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #c04444;
  line-height: 20px !important;
}
.right_icon___2UNDH {
  position: absolute;
  top: -6px;
  left: 6px;
  font-size: 12px;
  width: 12px !important;
  height: 12px !important;
  color: #1890FF;
  border-radius: 6px;
  background-color: #FFFFFF;
  border: none !important;
}
.hide___1c8FQ {
  display: none !important;
}
.noStatus___23fKi {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #dbe8ff;
}
.popoverTitle___1_Bon {
  margin-top: 15px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #262828;
}
.popoverTitle___1_Bon span:nth-child(2) {
  color: #018CFF;
}
.popoverBtns___f_WQ2 {
  height: 24px;
  line-height: 24px;
  margin: 10px 0px;
  padding-left: 120px;
}
.popoverBtns___f_WQ2 span:nth-child(1) {
  display: inline-block;
  text-align: center;
  width: 43px;
  height: 24px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #262828;
  cursor: pointer;
}
.popoverBtns___f_WQ2 span:nth-child(2) {
  width: 43px;
  height: 24px;
  text-align: center;
  display: inline-block;
  background: #018cff;
  border-radius: 4px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.okBtn___EckMv {
  height: 40px;
  line-height: 40px;
  text-align: right;
}
.okBtn___EckMv span {
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 28px;
  line-height: 28px;
  background: -webkit-gradient(linear, left top, left bottom, from(#60b5fa), to(#006fcb));
  background: linear-gradient(180deg, #60b5fa, #006fcb);
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.wrapper___1kuyt .header___1CAPb {
  height: 49px;
  line-height: 49px;
  display: -ms-flexbox;
  display: flex;
  margin: 19px 22px 12px 22px;
}
.wrapper___1kuyt .header___1CAPb .cascader___WRKUH {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  height: 49px;
}
.wrapper___1kuyt .header___1CAPb .rightTabs___2O840 {
  width: 253px;
  padding-left: 21px;
  border: 1px solid #cccccc;
  border-radius: 0px 25px 25px 0px;
}
.wrapper___1kuyt .header___1CAPb .rightTabs___2O840 span {
  padding: 5px 15px;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
}
.wrapper___1kuyt .header___1CAPb .rightTabs___2O840 span.active___1Pc5V {
  background-color: #333333;
  border-radius: 15px;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___1kuyt .page1___25haT {
  background-image: url(static/bac.34ad5d17.png);
  background-repeat: repeat-x;
  overflow-x: scroll;
}
.wrapper___1kuyt .page1___25haT .center___3M89u {
  display: -ms-flexbox;
  display: flex;
  width: 1467px;
  padding: 12px 20px;
  margin: 0 auto;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw {
  width: 119px;
  padding-top: 168px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA {
  margin-bottom: 12px;
  text-align: right;
  padding-bottom: 4.5px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #4F6489;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div span {
  display: inline-block;
  height: 1px;
  width: 30px;
  padding-top: 5px;
  border-top: 1px solid #3B475C;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div:nth-child(1) {
  height: 28px;
  line-height: 28px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div:nth-child(2) {
  height: 55px;
  line-height: 55px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div:nth-child(3) {
  height: 78px;
  line-height: 78px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div:nth-child(4) {
  height: 39px;
  line-height: 40px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div:nth-child(5) {
  height: 68px;
  line-height: 69px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .top___25hJA div:nth-child(6) {
  height: 68px;
  line-height: 69px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .center___3M89u {
  display: block;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #4F6489;
  text-align: right;
  padding: 0px;
  width: 100%;
  margin-bottom: 12px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .center___3M89u div {
  width: 100%;
  height: 30px;
  line-height: 30px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .center___3M89u span {
  display: inline-block;
  height: 1px;
  width: 30px;
  padding-top: 5px;
  border-top: 1px solid #3B475C;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .bottom___3awI9 {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #4F6489;
  text-align: right;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .bottom___3awI9 span {
  display: inline-block;
  height: 1px;
  width: 30px;
  padding-top: 5px;
  border-top: 1px solid #3B475C;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .bottom___3awI9 > div:nth-child(1) {
  height: 39px;
  line-height: 40px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .bottom___3awI9 > div:nth-child(2) {
  height: 78px;
  line-height: 78px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .bottom___3awI9 > div:nth-child(3) {
  height: 57px;
  line-height: 57px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .left___3vXyw .bottom___3awI9 > div:nth-child(4) {
  height: 28px;
  line-height: 28px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA {
  height: 56px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .labels___1zSGI {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  line-height: 56px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .labels___1zSGI span {
  padding-right: 14px;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #dbe8ff;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .water_wrapper___1XCVG {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #dbe8ff;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .water_wrapper___1XCVG > img {
  width: 7px;
  height: 14px;
  margin-right: 2px;
  margin-left: 5px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .water_wrapper___1XCVG .main_water___125h1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 28px;
  width: 132px;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0px 10px 0px 1px;
  margin-left: 10px;
  background: #37445a;
  border-radius: 2px;
  -webkit-box-shadow: 0px 2px 7px 0px #5d7399 inset;
          box-shadow: 0px 2px 7px 0px #5d7399 inset;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .water_wrapper___1XCVG .main_water___125h1 .water_block___2_kj5 {
  display: inline-block;
  text-align: center;
  width: 33px;
  height: 26px;
  line-height: 26px;
  background: #2e3b51;
  border-radius: 2px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #728fc2;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .water_wrapper___1XCVG .main_water___125h1 .power___3__mp {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .water_wrapper___1XCVG .main_water___125h1 .time___3xH0l {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .btn_open___29MpY {
  width: 65px;
  height: 30px;
  line-height: 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e1edff), to(#b4cfff));
  background: linear-gradient(180deg, #e1edff 0%, #b4cfff);
  border-radius: 2px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #018cff;
  text-align: center;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .btn_open___29MpY:hover {
  cursor: pointer;
  opacity: 0.7;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .btn_close___wABA8 {
  width: 65px;
  height: 30px;
  line-height: 30px;
  margin-left: 10px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#60b5fa), to(#006fcb));
  background: linear-gradient(180deg, #60b5fa, #006fcb);
  border-radius: 2px;
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .top___25hJA .btn_close___wABA8:hover {
  cursor: pointer;
  opacity: 0.7;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .box_container___3jPgD {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .box_container___3jPgD > div:last-child {
  margin-right: 0px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .box_single___1IOub {
  width: 1304px;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  line-height: 60px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #dbe8ff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(8%, rgba(76, 94, 124, 0.6)), to(rgba(59, 71, 92, 0.6)));
  background: linear-gradient(180deg, rgba(76, 94, 124, 0.6) 8%, rgba(59, 71, 92, 0.6));
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .box_single___1IOub .block___2E67r {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  -ms-flex-direction: column;
      flex-direction: column;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .box_single___1IOub .block___2E67r > div {
  height: 30px;
  line-height: 30px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .box_single___1IOub .block___2E67r > div > span {
  display: inline-block;
  width: 85px;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .bottom___3awI9 {
  height: 40px;
  line-height: 40px;
  width: 240px;
  margin: 0 auto;
}
.wrapper___1kuyt .page1___25haT .center___3M89u .right___3mBmh .bottom___3awI9 .label___3AAAj {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #4F6489;
  padding-right: 32px;
}
.wrapper___1kuyt .page1___25haT .littleCircle___3JAJu {
  border-radius: 4px;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  margin-bottom: 2px;
  display: inline-block;
}
.wrapper___1kuyt .page1___25haT .littleCircle___3JAJu.online___2njfo {
  background: #27dab0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f inset;
}
.wrapper___1kuyt .page1___25haT .littleCircle___3JAJu.offline___3sjYB {
  background: #d1d4d4;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90 inset;
}
.wrapper___1kuyt .page1___25haT .littleCircle___3JAJu.alarm___3WfUu {
  background: #ee6c6c;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f inset;
}
.wrapper___1kuyt .page1___25haT .btn_pressure___3dIfm {
  display: inline-block;
  padding: 0px 16px;
  height: 32px;
  line-height: 32px;
  background: #37445a;
  -webkit-box-shadow: 0px 0px 10px 0px #506281 inset;
          box-shadow: 0px 0px 10px 0px #506281 inset;
  border-radius: 14px;
}
.wrapper___1kuyt .page1___25haT .btn_pressure___3dIfm:hover {
  cursor: pointer;
  opacity: 0.7;
}
.wrapper___1kuyt .page1___25haT .btn_sub_pressure___2pIJy {
  display: inline-block;
  padding: 0px 10px;
  height: 22px;
  line-height: 22px;
  background: #37445a;
  -webkit-box-shadow: 0px 0px 10px 0px #506281 inset;
          box-shadow: 0px 0px 10px 0px #506281 inset;
  border-radius: 14px;
}
.wrapper___1kuyt .page1___25haT .btn_sub_pressure___2pIJy:hover {
  cursor: pointer;
  opacity: 0.7;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA {
  height: 32px;
  line-height: 32px;
  margin: 14px 22px;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .select___2vLCl {
  position: relative;
  width: 120px;
  height: 32px;
  margin-right: 25px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  padding-right: 21px;
  cursor: pointer;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .select___2vLCl span {
  width: 0;
  height: 0;
  position: absolute;
  top: 14px;
  right: 9px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #515151;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .btns___1zsee {
  height: 32px;
  line-height: 32px;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .btns___1zsee > span {
  padding: 3px 10px;
  margin-right: 7px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #262828;
  cursor: pointer;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .btns___1zsee > span .number___n24Pz {
  color: #686C6C;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .btns___1zsee > span.active___1Pc5V {
  background: #e7f5ff;
  border-radius: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #0091ff;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA .btns___1zsee > span.active___1Pc5V .number___n24Pz {
  background: #e7f5ff;
  border-radius: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #0091ff;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .top___25hJA button {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .list___1kheo {
  background: #667286;
  padding: 0px 22px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: calc(100vh - 282px);
}
.wrapper___1kuyt .page2___27H5j .center___3M89u .btn_self___q7Ia7 {
  position: fixed;
  top: 480px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: #333333;
  border-radius: 4px 0px 0px 4px;
  color: #FFFFFF;
}
.wrapper___1kuyt .icon___2YoPY {
  display: inline-block;
  margin-right: 6px;
  width: 12px;
  height: 12px;
  border-radius: 6px;
}
.wrapper___1kuyt .on___OEaao {
  background: #27dab0;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #1b9d7f;
}
.wrapper___1kuyt .off___3sl1z {
  background: #d1d4d4;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #878b90;
}
.wrapper___1kuyt .error___11UKQ {
  background: #ee6c6c;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f;
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1), 0px -1px 3px 0px #bd2f2f;
}
.wrapper___1kuyt .custom_modal___27NlG {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100vh;
  width: 293px;
}
.wrapper___1kuyt .hide___21mge {
  display: none !important;
}
.wrapper___1kuyt .ant-input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-variant: tabular-nums;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
  font-feature-settings: 'tnum';
  position: relative;
  display: inline-block;
  width: 100%;
  height: 49px;
  padding: 0px 18px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border: 0px solid #EEEEEE;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  border-radius: 25px 0px 0px 25px;
  border-bottom: 1px solid #cccccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper___1kuyt .ant-popover-inner-content {
  padding: 0px !important;
}
.customModal___3bbNP .modal_check___2vKbS {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}
.customModal___3bbNP .ant-modal {
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
  height: 100vh !important;
  border-radius: 0px !important;
  padding-bottom: 0px !important;
}
.customModal___3bbNP .ant-modal-content {
  height: 100% !important;
}
.SFModal___jqBAH .modal_check___2vKbS {
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}
.SFModal___jqBAH .modal_check___2vKbS .checkbox___2wnRA {
  margin-right: 18px;
}
.SFModal___jqBAH .modal_check___2vKbS .span_btn___38lP5 {
  display: inline-block;
  padding: 0px 25px;
  height: 28px;
  line-height: 28px;
  margin-left: 12px;
  background: #eeeeee;
  border-radius: 4px;
}
.SFModal___jqBAH .modal_check___2vKbS .span_btn___38lP5.active___1Pc5V {
  border-radius: 4px;
  background: #FFFFFF;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #018cff;
  border: 1px solid #018cff;
}
.instructModal___6v-UE .box___1M2yk {
  width: 493px;
  height: 104px;
  padding: 10px;
  margin-bottom: 15px;
  background: #f9f9f9;
  overflow-y: scroll;
}
.instructModal___6v-UE .box___1M2yk .title___SZHdZ {
  height: 17px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #666666;
  line-height: 17px;
}
.instructModal___6v-UE .box___1M2yk .wrapper___1kuyt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.instructModal___6v-UE .box___1M2yk .wrapper___1kuyt .block___2E67r {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-right: 10px;
  max-width: 100px;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 4px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #dedede;
}
.instructModal___6v-UE .box___1M2yk .wrapper___1kuyt span {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  width: 100%;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #262828;
}
.instructModal___6v-UE .box___1M2yk .wrapper___1kuyt .anticon {
  font-size: 12px !important;
  height: 24px;
  line-height: 24px;
}
.instructModal___6v-UE .ant-row {
  padding: 0px 20px !important;
}
.instructModal___6v-UE .ant-col {
  height: 32px;
  line-height: 32px;
  margin-bottom: 10px;
}
.instructModal___6v-UE .ant-input-number {
  width: 80% !important;
}
.destPressureModal___2VsEb .label___3AAAj {
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
}
.destPressureModal___2VsEb .ant-modal-header {
  padding: 10px 13px !important;
  background: #f2f7ff !important;
  border-radius: 4px 4px 0px 0px !important;
  border-bottom: none !important;
}
.destPressureModal___2VsEb .ant-modal-title {
  font-size: 14px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #333333;
}
.destPressureModal___2VsEb .ant-modal-footer {
  border-top: none !important;
}
.destPressureModal___2VsEb .ant-modal-footer > div {
  width: 180px;
  margin: 0 auto;
}
.destPressureModal___2VsEb .ant-modal-footer > div button {
  width: 79px;
  height: 32px;
  line-height: 32px;
}
.destPressureModal___2VsEb .ant-modal-footer > div button:nth-child(2) {
  margin-left: 21px;
}
.destPressureModal___2VsEb .ant-modal-close-x {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
}
.destPressureModal___2VsEb .ant-input-number {
  width: 168px !important;
}
.popoverTitle___3J9BD {
  padding: 10px;
  border-bottom: 1px solid #EEEEEE;
}
.popoverBtns___3lT1x {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  height: 30px;
  line-height: 30px;
}
.popoverBtns___3lT1x span {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center;
  cursor: pointer;
}
.popoverBtns___3lT1x span:nth-child(1) {
  border-right: 1px solid #eeeeee;
}
.okBtn___3n4EJ {
  height: 40px;
  line-height: 40px;
  text-align: right;
}
.okBtn___3n4EJ span {
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 28px;
  line-height: 28px;
  background: -webkit-gradient(linear, left top, left bottom, from(#60b5fa), to(#006fcb));
  background: linear-gradient(180deg, #60b5fa, #006fcb);
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.MyInput_item___2Qw5D {
  width: 94%;
  text-align: center;
  margin: 0px auto;
}
.MyInput_item___2Qw5D .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
  margin-right: 0px!important;
  min-width: 92px;
}
.MyInput_item___2Qw5D .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___2Qw5D .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px!important;
}
.MyInput_item___2Qw5D .item_title___1xl8t {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
  margin-top: 10px;
}
.MyInput_item___2Qw5D .item_content___3u0Ad {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___2Qw5D .item_content___3u0Ad input {
  text-align: center;
}
.MyInput_item___2Qw5D .item_btns___2irx6 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___2Qw5D .item_btns___2irx6 .smallBtn___3S63K {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___2Qw5D .item_btns___2irx6 .smallBtn___3S63K span i {
  padding: 0 9px;
}
.MyInput_item___2Qw5D .item_btns___2irx6 .largeBtn___3dFQo {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___2Qw5D .ant-radio-group___3ZHfJ {
  width: 100%;
}
.MyInput_item___2Qw5D .font_style___1MkgF {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.MyInput_item___2Qw5D .input_number___36aQ6 {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___2Qw5D .input_number___36aQ6.minwidth___JClBO {
  width: 65px !important;
}
.MyInput_item___2Qw5D .font_radio___2iMbF {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -ms-flexbox!important;
  display: flex!important;
  -ms-flex-wrap: wrap!important;
      flex-wrap: wrap!important;
  -ms-flex-pack: justify !important;
      justify-content: space-between !important;
}
.input_minus___17NWX {
  height: 24px!important;
  min-width: 65px!important;
}
.input_minus___17NWX .ant-input-number {
  height: 24px!important;
  line-height: 24px!important;
}
.input_minus___17NWX .ant-input-number .ant-input-number-input {
  height: 24px!important;
}
.model_inactive___1M8zc {
  display: none!important;
}
.btn_del___2YwQA {
  cursor: pointer;
}
.box___2aO2F {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___2aO2F .ant-checkbox-inner {
  border: 1px solid #999999!important;
}
.box___2aO2F .title___6nKeU {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___2aO2F .title___6nKeU > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.box___2aO2F .title___6nKeU > div > label {
  margin-right: 10px;
}
.box___2aO2F .title___6nKeU > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.box___2aO2F .title___6nKeU > div > span.disabled___1MOx- button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___2aO2F .title___6nKeU > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___2aO2F .title___6nKeU > div > button:hover {
  background-color: #D5EEFF;
}
.box___2aO2F .title___6nKeU > div > button.success___jNBFb {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___2aO2F .title___6nKeU > div > button.disabled___1MOx- {
  background-color: #EBECED;
  color: #999999;
}
.box___2aO2F .more___2xvYa {
  position: relative;
}
.box___2aO2F .more___2xvYa .template___3DIS_ {
  padding-top: 10px;
  padding-left: 10px;
}
.box___2aO2F .more___2xvYa .main___1Y61P {
  display: none;
  width: 100%;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .ant-form-item {
  min-height: auto;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .has-error .ant-form-explain,
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V {
  margin-top: 18px;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .item_title___3ODoq {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .item_content___1-KWj {
  display: -ms-flexbox;
  display: flex;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .item_content___1-KWj input {
  text-align: center;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .input_minus___xGjnb {
  height: 24px;
  min-width: 65px;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .input_minus___xGjnb .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .input_minus___xGjnb .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___2aO2F .more___2xvYa .main___1Y61P .model___1NHw3 .item___3W03V .item_btns___38Qn7 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___2aO2F .more___2xvYa .pull___33hwq {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___2aO2F .more___2xvYa .pull___33hwq > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___2aO2F .more___2xvYa .pull___33hwq > span i {
  margin-left: 4px;
}
.box___2aO2F.active___3V0yq {
  border-radius: 3px 3px 0 0;
}
.box___2aO2F.active___3V0yq .more___2xvYa > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: scroll!important;
  overflow-x: hidden;
}
.box___2aO2F.active___3V0yq .title___6nKeU {
  border-bottom: 0;
}
.box___2aO2F.active___3V0yq .more___2xvYa > div {
  width: 100%;
  background-color: #fff;
}
.box___2aO2F.active___3V0yq .more___2xvYa > div .main___1Y61P {
  display: inline-block;
}
.box___2aO2F.active___3V0yq .more___2xvYa > div .pull___33hwq {
  border-top: 1px solid #eee;
}
.box___2aO2F.active___3V0yq .more___2xvYa > div .pull___33hwq i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___2aO2F.active___3V0yq .bottom___2xmUb {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
}
.box___2aO2F.active___3V0yq .bottom___2xmUb .buttons___2SAeR {
  text-align: center;
  padding: 10px 0px;
}
.box___2aO2F.active___3V0yq .bottom___2xmUb .buttons___2SAeR button {
  margin: 0px 5px;
}
.box___2aO2F.active___3V0yq .bottom___2xmUb .buttons___2SAeR .button___rhJOB {
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___2aO2F.children___-KYy7 {
  height: 55px;
}
.box___2aO2F.children___-KYy7 .title___6nKeU > div {
  border: 0 !important;
}
.box___2aO2F.children___-KYy7 .more___2xvYa .pull___33hwq {
  visibility: hidden;
}
.box___2aO2F .commonInputNumber___1oGtM {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___2aO2F.temp___KjjA6 .more___2xvYa > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___2aO2F.temp___KjjA6.active___3V0yq .ant-form-item___6z9HG {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___2aO2F.temp___KjjA6.active___3V0yq .titleCommon___1el_3 {
  display: inline-block;
  margin: 10px;
}
.box___2aO2F.temp___KjjA6.active___3V0yq .col1___RHo_d {
  text-align: center;
  line-height: 40px;
}
.box___2aO2F.temp___KjjA6.active___3V0yq .title___6nKeU {
  width: 100%!important;
  margin: 0px !important;
}
.box___2aO2F.edit_temp___oiIi4 .more___2xvYa > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  height: 510px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___2aO2F.edit_temp___oiIi4.active___3V0yq .ant-form-item___6z9HG {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___2aO2F.edit_temp___oiIi4.active___3V0yq .titleCommon___1el_3 {
  display: inline-block;
  margin: 10px;
}
.box___2aO2F.edit_temp___oiIi4.active___3V0yq .col1___RHo_d {
  text-align: center;
  line-height: 40px;
}
.box___2aO2F.edit_temp___oiIi4.active___3V0yq .title___6nKeU {
  width: 100%!important;
  margin: 0px !important;
}
.box___2aO2F.sensor___3Vq8k span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___2aO2F.sensor___3Vq8k .more___2xvYa > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___2aO2F.sensor___3Vq8k.active___3V0yq .ant-form-item___6z9HG {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___2aO2F.sensor___3Vq8k.active___3V0yq .titleCommon___1el_3 {
  display: inline-block;
  margin: 10px;
}
.box___2aO2F.sensor___3Vq8k.active___3V0yq .col1___RHo_d {
  text-align: center;
  line-height: 40px;
}
.box___2aO2F.sensor___3Vq8k.active___3V0yq .title___6nKeU {
  width: 100%!important;
  margin: 0px !important;
}
.box___2aO2F.edit_sensor___wlQw7 span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___2aO2F.edit_sensor___wlQw7 .more___2xvYa > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___2aO2F.edit_sensor___wlQw7.active___3V0yq .ant-form-item___6z9HG {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___2aO2F.edit_sensor___wlQw7.active___3V0yq .titleCommon___1el_3 {
  display: inline-block;
  margin: 10px;
}
.box___2aO2F.edit_sensor___wlQw7.active___3V0yq .col1___RHo_d {
  text-align: center;
  line-height: 40px;
}
.box___2aO2F.edit_sensor___wlQw7.active___3V0yq .title___6nKeU {
  width: 100%!important;
  margin: 0px !important;
}
.box___2aO2F .hide___3mdCD {
  display: none!important;
}
.box___2aO2F .show___1JE5H {
  display: block!important;
}
.edit_box___1QO6y .more___2xvYa {
  margin-bottom: 50px;
}
.labelFont___2z7BF {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___18qY3 {
  background: #f3f4f5;
}
.wrapper___18qY3 .header___3-VAv {
  height: 61px;
  line-height: 61px;
  background: #ffffff;
  padding: 0px 20px;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___18qY3 .header___3-VAv .header_title___2ReLu {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
}
.wrapper___18qY3 .header___3-VAv .header_info___3FIXw {
  font-size: 14px;
  font-family: PingFang SC;
}
.wrapper___18qY3 .header___3-VAv .header_info___3FIXw span {
  padding-left: 15px;
}
.wrapper___18qY3 .center___2bFz8 {
  background: #ffffff;
  margin: 22px 20px;
  padding: 11px 18px 22px 18px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO {
  background-color: #ffffff;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS {
  background: #f3f4f5;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT {
  background: #fff;
  border-radius: 3px 3px 0 0;
  padding: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 {
  width: 222px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 ul {
  list-style: none;
  padding: 0;
  margin: 5px 12px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 ul li {
  padding: 0;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .eTitle___3dkf4 {
  color: #666;
  padding: 4px 0px;
  font-size: 14px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .eTitle___3dkf4 .num___1iygl {
  color: #222;
  font-weight: 500;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .title___3Mzgu {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 28px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .title___3Mzgu img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .content___iHG4a {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .contentBox___uVpZR {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  text-align: center;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .contentBox___uVpZR .box___319GP {
  height: 125px;
  padding-top: 38px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .contentBox___uVpZR .box___319GP .value___2Q1zz {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
  margin: 0 auto;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_left___ZVlL2 .contentBox___uVpZR .box___319GP .name___1W79s {
  width: 48px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  margin: 0 auto;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n {
  margin-left: 18px;
  /* margin-right: 12px; */
  width: 100%;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .title___3Mzgu {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 28px;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .title___3Mzgu img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a {
  display: -ms-flexbox;
  display: flex;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  padding: 7px 0px 15px 0px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .label___2zTeC {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .label___2zTeC li {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .label___2zTeC li img {
  width: 24px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .value___2Q1zz {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .value___2Q1zz .li___2UElZ {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .value___2Q1zz .date___1ZHtr {
  font-family: PingFang SC;
  font-size: 13px;
  font-weight: 500;
  color: #9ea5aa;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .baseBox___3ISuT .baseBox_right___3PT4n .content___iHG4a .value___2Q1zz .date_today___2Ix16 {
  font-family: PingFang SC;
  color: #20a4fc;
  font-size: 13px;
  font-weight: 500;
  width: 90px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  background: #f2faff;
  border-radius: 14px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .splitLine___2lipU {
  height: 47px;
  line-height: 47px;
  padding: 0px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .splitLine___2lipU .splitLineContainer___3Sx7N {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .splitLine___2lipU img {
  width: 28px;
  margin-top: -5px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .splitLine___2lipU .rightT___1ba8p {
  position: absolute;
  right: 20px;
  top: -1px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .splitLine___2lipU .rightT___1ba8p .btn___7JDeF {
  margin-left: 20px;
  width: 88px;
  height: 32px;
  background: #20a4fc;
  border-radius: 16px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU {
  padding: 12px;
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU {
  height: 129px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  margin-right: 20px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU:nth-child(5) {
  margin-right: 0px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu {
  height: 43px;
  line-height: 43px;
  padding: 0px 12px;
  display: -ms-flexbox;
  display: flex;
  background: #F8F8F8;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0px;
  margin-top: 0px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu .name___1W79s {
  display: inline-block;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  border-left: 3px solid #20A4FC;
  height: 10px;
  line-height: 10px;
  margin-top: 16px;
  padding-left: 5px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu .imgBox___JM63g {
  width: 25px;
  height: 25px;
  position: relative;
  margin-top: 9px;
  margin-left: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu .imgBox___JM63g.inactive___2_0k4 {
  background: #959B9F;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu .imgBox___JM63g:hover {
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu .imgBox___JM63g img {
  width: 25px;
  height: 25px;
  position: absolute;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .content___iHG4a {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .content___iHG4a .value___2Q1zz {
  width: 25%;
  height: 92px;
  text-align: center;
  padding-top: 16px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .content___iHG4a .value___2Q1zz .name___1W79s {
  font-size: 12px;
  margin: 0 auto;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .title___3Mzgu {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .eTitle___3dkf4 {
  border-radius: 3px;
  color: #666;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 19px 0;
  margin-left: 10px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .envirmentBox___1W0MU .eTitle___3dkf4 .num___1iygl {
  color: #333;
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .deviceBox___3Aiyd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .deviceBox___3Aiyd .title___3Mzgu {
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  padding-left: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 {
  border-radius: 3px;
  color: #222;
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 8.5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 .icon___1BXBL {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 .num___1iygl {
  position: absolute;
  right: 3px;
  top: 0px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 .leftNum___2nlCK {
  position: absolute;
  left: 3px;
  top: 0px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .dateTime___HjyPs {
  position: absolute;
  right: 20px;
  top: 70px;
  z-index: 999;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .export___3-rtR {
  margin-left: 10px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .tabs___3V7mO .ant-tabs-nav {
  padding-left: 22px !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .tabs___3V7mO .ant-tabs-nav .ant-tabs-tab {
  margin: 0px !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .tabs___3V7mO .ant-tabs-bar {
  margin: 0;
  border-bottom: 0px solid #e8e8e8 !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .tabs___3V7mO .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 0px solid #318DD9;
  background: #53baff;
  color: #ffffff;
  border-radius: 19px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  height: 37px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .bgWrapper___1rxJS .bottom___2hxzS .tabs___3V7mO .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .multiControl___1Tswr {
  padding-right: 20px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .special___Ya3Na {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(25% - 1px);
      flex-basis: calc(25% - 1px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .special___Ya3Na > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .special2___2sjGA {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(20% - 1px);
      flex-basis: calc(20% - 1px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .special2___2sjGA > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .all___2ZoBc {
  -ms-flex: 0 1 100%;
      flex: 0 1 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .all___2ZoBc > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .half___3L-Iq {
  -ms-flex: 0 1 75%;
      flex: 0 1 75%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .main___38Etq .half___3L-Iq > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .content___iHG4a {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .content___iHG4a .splitLine___2lipU {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .modile___3rqaV {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .top___zomFt {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .top___zomFt .cascader___3b31a {
  width: 370px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .top___zomFt .cascader___3b31a .ant-cascader-input {
  height: 29px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .top___zomFt .headerButton___1lxkC {
  width: 80px;
  height: 29px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .top___zomFt label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .top___zomFt .deviceNum___3lich {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .title___3Mzgu {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .title___3Mzgu span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .title___3Mzgu .btn_inactive___2XMhg {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .title___3Mzgu .btn_inactive___2XMhg span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .title___3Mzgu .btn_active___NqlRJ {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .title___3Mzgu .btn_active___NqlRJ span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo {
  margin-top: 10px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_title___2ISwQ {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_content___1Qr_1 {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_content___1Qr_1 input {
  text-align: center;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .input_minus___1aOPc {
  height: 24px;
  min-width: 65px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .input_minus___1aOPc .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .input_minus___1aOPc .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_btns___1RJdd {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_btns___1RJdd .smallBtn___23wLA {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_btns___1RJdd .smallBtn___23wLA span i {
  padding: 0 9px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP .item___1Omlo .item_btns___1RJdd .largeBtn___3V_GB {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP li .ant-radio-group___2nmb- {
  width: 100%;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP li .font_style___2smQ7 {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP li .input_number___HOLLz {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP li .input_number___HOLLz.minwidth___vAw-f {
  width: 60px !important;
}
.wrapper___18qY3 .center___2bFz8 .tabs___3V7mO .tabContent___1mVAv .control___qmnUa .model___3ZPBP li .font_radio___2vkVM {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .com_title___U8si5 {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
}
.wrapper___18qY3 .center___2bFz8 .com_title___U8si5 .title_img____jftR {
  width: 28px;
  height: 28px;
  margin-top: 14px;
}
.wrapper___18qY3 .center___2bFz8 .com_title___U8si5 .title_font___3AaFc {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .com_title___U8si5 .title_btn___37M87 {
  width: 80px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #20a4fc;
  border-radius: 16px;
  margin-top: 12px;
  margin-left: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___18qY3 .center___2bFz8 .baseBox___3ISuT {
  height: 50px;
  line-height: 50px;
  padding: 0px 28px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.wrapper___18qY3 .center___2bFz8 .baseBox___3ISuT .label___2zTeC {
  font-size: 14px;
  font-family: PingFang SC;
  color: #666666;
}
.wrapper___18qY3 .center___2bFz8 .baseBox___3ISuT .val___3tpQy {
  padding-right: 60px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .splitLine___2lipU {
  height: 47px;
  line-height: 47px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .splitLine___2lipU .splitLineContainer___3Sx7N {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.wrapper___18qY3 .center___2bFz8 .splitLine___2lipU img {
  width: 28px;
  margin-top: -5px;
}
.wrapper___18qY3 .center___2bFz8 .splitLine___2lipU .rightT___1ba8p {
  position: absolute;
  right: 20px;
  top: -1px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .splitLine___2lipU .rightT___1ba8p .btn___7JDeF {
  margin-left: 20px;
  width: 88px;
  height: 32px;
  background: #20a4fc;
  border-radius: 16px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU {
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU {
  width: 96%;
  height: 118px;
  background: #f8f8f8;
  border-radius: 3px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .title___3Mzgu {
  width: 66px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  background: #bdc3c7;
  border-radius: 3px 0px 4px 0px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 0px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .content___iHG4a {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .content___iHG4a .value___2Q1zz {
  width: 25%;
  height: 92px;
  text-align: center;
  padding-top: 24px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .devlopmentBox___3VbpU .content___iHG4a .value___2Q1zz .name___1W79s {
  font-size: 12px;
  margin: 0 auto;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .title___3Mzgu {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .eTitle___3dkf4 {
  border-radius: 3px;
  color: #666;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 19px 0;
  margin-left: 10px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .envirmentBox___1W0MU .eTitle___3dkf4 .num___1iygl {
  color: #333;
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .deviceBox___3Aiyd {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .deviceBox___3Aiyd .title___3Mzgu {
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  padding-left: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 {
  border-radius: 3px;
  color: #222;
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 8.5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 .icon___1BXBL {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___18qY3 .center___2bFz8 .middle___1bjDj .deviceBox___3Aiyd .eTitle___3dkf4 .num___1iygl {
  position: absolute;
  right: 3px;
  top: 0px;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .dateTime___HjyPs {
  position: absolute;
  right: 20px;
  top: 70px;
  z-index: 999;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .export___3-rtR {
  margin-left: 10px;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .tabs___3V7mO .ant-tabs-nav {
  padding-left: 22px !important;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .tabs___3V7mO .ant-tabs-nav .ant-tabs-tab {
  margin: 0px !important;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .tabs___3V7mO .ant-tabs-bar {
  margin: 0;
  border-bottom: 0px solid #e8e8e8 !important;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .tabs___3V7mO .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 0px solid #318DD9;
  background: #53baff;
  color: #ffffff;
  border-radius: 19px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  height: 37px;
}
.wrapper___18qY3 .center___2bFz8 .bottom___2hxzS .tabs___3V7mO .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___18qY3 .hide___1YonL {
  display: none;
}
.wrapper___18qY3 .show___GkHjM {
  display: block;
}
.wrapper___18qY3 .ant-popover-inner-content {
  padding: 15px!important;
}
.wrapper___18qY3 .noContent___1iGVw form > div:nth-child(2) {
  height: 0px!important;
}
.wrapper___1RklZ {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.wrapper___1RklZ .page1___1JfG4 {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-y: scroll;
  padding: 0;
  background: #f3f4f5;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh {
  height: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  margin: 20px;
  position: relative;
  padding: 40px;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .title___13G-9 {
  display: block;
  width: 126px;
  height: 25px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 25px;
  color: #333333;
  margin-bottom: 66px;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T {
  margin-bottom: 10px;
  border-bottom: 1px solid #f3f4f5;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .cascader___j0qDl {
  display: block;
  margin-bottom: 23px !important;
  margin-right: 20px;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .cascader___j0qDl input {
  height: 44px;
  line-height: 44px !important;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .select___2llwT {
  display: block;
  margin-bottom: 23px;
  margin-right: 20px;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .select___2llwT div {
  height: 44px !important;
  line-height: 44px;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .select___2llwT .ant-select-selection--single___2MuyC {
  height: 44px !important;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .radio___3dkWN {
  display: block;
  margin-bottom: 25px;
  line-height: 44px;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .button___1m0IO {
  width: 85px;
  height: 44px;
  background: #ccd1d5;
  border-radius: 4px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .center___Lc_9T .button___1m0IO.active___3MTpb {
  background: -webkit-gradient(linear, left top, right top, from(#60c0ff), to(#1ba2fc));
  background: linear-gradient(90deg, #60c0ff 0%, #1ba2fc 100%);
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .bottom___3HbnM {
  width: 200px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #333333;
  position: absolute;
  bottom: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .button___1m0IO {
  width: 85px;
  height: 44px;
  position: absolute;
  bottom: 34px;
  left: 40px;
  background: #ccd1d5;
  border-radius: 4px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh .button___1m0IO.active___3MTpb {
  background: -webkit-gradient(linear, left top, right top, from(#60c0ff), to(#1ba2fc));
  background: linear-gradient(90deg, #60c0ff 0%, #1ba2fc 100%);
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh :grobal .ant-select-selection___2mdZW {
  height: 44px !important;
}
.wrapper___1RklZ .page1___1JfG4 .form___1mzCh :grobal .ant-select-selection__rendered___3TWKq {
  line-height: 42px !important;
}
.wrapper___1RklZ .page1___1JfG4 .units___3wwUr {
  max-height: 250px;
  overflow-y: scroll;
}
.wrapper___1RklZ .page2___3O04q .header___e2b4s {
  height: 61px;
  line-height: 61px;
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___1RklZ .page2___3O04q .header___e2b4s .left___1jWtZ {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding-left: 22px;
}
.wrapper___1RklZ .page2___3O04q .header___e2b4s .left___1jWtZ .name___X3Kcl {
  height: 26px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 26px;
  color: #222222;
  margin-right: 30px;
}
.wrapper___1RklZ .page2___3O04q .header___e2b4s .left___1jWtZ .unitLabel___wC5-7 {
  height: 26px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 26px;
  color: #666666;
  padding-right: 5px;
}
.wrapper___1RklZ .page2___3O04q .header___e2b4s .left___1jWtZ .unit___1EklM {
  display: inline-block;
  padding: 0px 5px;
  height: 26px;
  line-height: 26px;
  background: #f0f2f4;
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-right: 5px;
  text-align: center;
}
.wrapper___1RklZ .page2___3O04q .header___e2b4s .right___2TCYU {
  width: 100px;
  padding-right: 22px;
}
.wrapper___1RklZ .page2___3O04q .center___Lc_9T {
  padding: 22px;
  background: #f3f4f5;
  width: 100%;
  height: 100%;
  margin: 0px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
  background-color: white;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .multiControl___3kr9e {
  padding-right: 20px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .deviceType___1GtHL {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #222222;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs .special___193vn {
  -ms-flex: 0 1 25%;
      flex: 0 1 25%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs .special___193vn > div {
  -ms-flex: 1 1 auto!important;
      flex: 1 1 auto!important;
  min-width: 212px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs .percent_75___2VZPH {
  -ms-flex: 0 1 75%;
      flex: 0 1 75%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs .percent_75___2VZPH > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs .special2___3B3G3 {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(20% - 1px);
      flex-basis: calc(20% - 1px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .main___3SYCs .special2___3B3G3 > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .content___13qEE {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .content___13qEE .splitLine___39rpw {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .modile___3TTPp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .top___102mk {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .top___102mk .cascader___j0qDl {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .top___102mk .cascader___j0qDl .ant-cascader-input {
  height: 29px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .top___102mk .headerButton___2_u40 {
  width: 80px;
  height: 29px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .top___102mk label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .top___102mk .deviceNum___3Ik1Z {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .title___13G-9 {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .title___13G-9 span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .title___13G-9 .btn_inactive___1vwi6 {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .title___13G-9 .btn_inactive___1vwi6 span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .title___13G-9 .btn_active___1MJcc {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .title___13G-9 .btn_active___1MJcc span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj {
  margin-top: 18px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px !important;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_title___3ov8a {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_content___3vlHb {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_content___3vlHb input {
  text-align: center;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .input_minus___3WRfy {
  height: 24px;
  min-width: 65px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .input_minus___3WRfy .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .input_minus___3WRfy .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_btns___2e-4h {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_btns___2e-4h .smallBtn___27tR3 {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_btns___2e-4h .smallBtn___27tR3 span i {
  padding: 0 9px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 .item___2S8sj .item_btns___2e-4h .largeBtn___1wizv {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 li .ant-radio-group___1qgcn {
  width: 100%;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 li .font_style___vedaf {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 li .input_number___cCjvk {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 li .input_number___cCjvk.minwidth___3AU9n {
  width: 60px !important;
}
.wrapper___1RklZ .page2___3O04q .control___2xCXp .model___2uQY7 li .font_radio___3ef0t {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.wrapper___1RklZ .hide___cOzyE {
  display: none;
}
.wrapper___1RklZ .show___2mgXv {
  display: block;
}
.wrapper___1RklZ .img___7SEFW {
  width: 64px;
  margin: 0 auto;
  display: block;
}
.wrapper___1RklZ .mbtitle___dt2Fg {
  display: block;
  margin: 29px 0px 7px 0px;
  text-align: center;
  width: 312px;
  height: 33px;
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 33px;
  color: #333333;
}
.wrapper___1RklZ .mtitle___1Es1h {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 197px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  opacity: 1;
}
.model_inactive___fP4Rl {
  display: none !important;
}
.line___1nHEG {
  margin-right: 20px;
  margin-bottom: 20px;
  height: 1px;
  background-color: #eee;
}
.container___1S86m {
  width: 100%;
}
.container___1S86m .center___bmGEE {
  width: 100%;
}
.container___1S86m .center___bmGEE .top___1xrxf {
  display: -ms-flexbox;
  display: flex;
}
.container___1S86m .center___bmGEE .top___1xrxf .left___2Imip {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.container___1S86m .center___bmGEE .top___1xrxf .right___3ML1m {
  -ms-flex: 0 0 448px;
      flex: 0 0 448px;
  text-align: right;
}
.container___1S86m .center___bmGEE .top___1xrxf .buttons___2FOIT {
  padding: 0px 10px;
  height: 32px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 400;
  color: #262828;
  line-height: 32px;
  margin-right: 8px;
  display: inline-block;
  text-align: center;
}
.container___1S86m .center___bmGEE .top___1xrxf .buttons___2FOIT:hover {
  cursor: pointer;
  color: #0091ff;
  background: #e7f5ff;
  border-radius: 14px;
  font-weight: 500;
  font-family: PingFangSC-Medium, PingFangSC;
}
.container___1S86m .center___bmGEE .top___1xrxf .active___aKOGS {
  height: 32px;
  padding: 0px 10px;
  background: #e7f5ff;
  border-radius: 14px;
  display: inline-block;
  font-size: 12px;
  font-family: PingFangSC-Medium, PingFangSC;
  font-weight: 500;
  color: #0091ff;
  line-height: 32px;
  margin-right: 8px;
  text-align: center;
}
.container___1S86m .center___bmGEE .top___1xrxf .active___aKOGS:hover {
  cursor: pointer;
}
.container___1S86m .center___bmGEE .top___1xrxf .search___1CEK3 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.container___1S86m .center___bmGEE .title___26kUq {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.container___1S86m .center___bmGEE .button___3k0az {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.container___1S86m .center___bmGEE .row___1qAOU {
  display: -ms-flexbox;
  display: flex;
}
.container___1S86m .center___bmGEE .row___1qAOU .cell___3xau7 {
  border: 1px solid #ecedee;
  color: #73777a;
  padding: 14px 12px;
  position: relative;
  line-height: 20px;
  word-break: break-word;
  -ms-flex-align: center;
      align-items: center;
}
.container___1S86m .center___bmGEE .row___1qAOU .titleCell___3Tn_8 {
  background-color: #fbfbfc;
}
.container___1S86m .center___bmGEE .table___uSpKz > div > div:nth-of-type(1) {
  height: 0px !important;
  margin-bottom: 0px !important;
}
.container___1S86m .center___bmGEE .table___uSpKz > div > div:nth-of-type(2) {
  padding: 0px !important;
}
.tempSensor_wrap___1kjts {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100px;
}
.formItem___1-FK_ {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.formItem___1-FK_ .ant-form-item-control-wrapper {
  width: 100%;
}
.formItem___1-FK_ .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.formItem___1-FK_ .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.rowWrap___2TnTn {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100px;
}
.tempSensor_wrap___2WiOl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 100px;
}
.formItem___1TdyO {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.formItem___1TdyO .ant-form-item-control-wrapper {
  width: 100%;
}
.formItem___1TdyO .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.formItem___1TdyO .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.rowWrap___2Wsv1 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  height: 100px;
}
.wrapper___2ZzgH {
  width: 100%;
  height: 100%;
}
.wrapper___2ZzgH .header___3YlHs {
  padding: 0px 20px;
  width: 100%;
  position: sticky;
  top: 0;
  height: 60px;
  line-height: 60px;
  z-index: 63;
  background: #ffffff;
}
.wrapper___2ZzgH .center___258qj {
  background-color: #f3f4f5;
  padding: 20px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ {
  background-color: #ffffff;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L {
  background: #f3f4f5;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW {
  background: #fff;
  border-radius: 3px 3px 0 0;
  padding: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 {
  width: 222px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 ul {
  list-style: none;
  padding: 0;
  margin: 5px 12px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 ul li {
  padding: 0;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .eTitle___vFRSf {
  color: #666;
  padding: 4px 0px;
  font-size: 14px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .eTitle___vFRSf .num___SeC_6 {
  color: #222;
  font-weight: 500;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .title___2hd1N {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 28px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .title___2hd1N img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .content___2RAtM {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .contentBox___1nBSI {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  text-align: center;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .contentBox___1nBSI .box___sluHo {
  height: 125px;
  padding-top: 38px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .contentBox___1nBSI .box___sluHo .value___EG9M2 {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
  margin: 0 auto;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_left___EnbP2 .contentBox___1nBSI .box___sluHo .name___33OjA {
  width: 48px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  margin: 0 auto;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy {
  margin-left: 18px;
  /* margin-right: 12px; */
  width: 100%;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .title___2hd1N {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 28px;
  color: #333333;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .title___2hd1N img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM {
  display: -ms-flexbox;
  display: flex;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  padding: 7px 0px 15px 0px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .label___3ldMs {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .label___3ldMs li {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .label___3ldMs li img {
  width: 24px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .value___EG9M2 {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .value___EG9M2 .li___1gijn {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .value___EG9M2 .date___3flT2 {
  font-family: PingFang SC;
  font-size: 13px;
  font-weight: 500;
  color: #9ea5aa;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .baseBox___2rBkW .baseBox_right___xWMvy .content___2RAtM .value___EG9M2 .date_today___BzWuN {
  font-family: PingFang SC;
  color: #20a4fc;
  font-size: 13px;
  font-weight: 500;
  width: 90px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  background: #f2faff;
  border-radius: 14px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .splitLine___r9le3 {
  height: 47px;
  line-height: 47px;
  padding: 0px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .splitLine___r9le3 .splitLineContainer___3GMmk {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .splitLine___r9le3 img {
  width: 28px;
  margin-top: -5px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .splitLine___r9le3 .rightT___1ik29 {
  position: absolute;
  right: 20px;
  top: -1px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .splitLine___r9le3 .rightT___1ik29 .btn___2YeBj {
  margin-left: 20px;
  width: 88px;
  height: 32px;
  background: #20a4fc;
  border-radius: 16px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV {
  padding: 12px;
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .devlopmentBox___3NSYc {
  width: 98%;
  height: 118px;
  background: #f8f8f8;
  border-radius: 3px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .devlopmentBox___3NSYc .title___2hd1N {
  width: 66px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  background: #bdc3c7;
  border-radius: 3px 0px 4px 0px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 0px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .devlopmentBox___3NSYc .content___2RAtM {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .devlopmentBox___3NSYc .content___2RAtM .value___EG9M2 {
  width: 25%;
  height: 92px;
  text-align: center;
  padding-top: 24px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .devlopmentBox___3NSYc .content___2RAtM .value___EG9M2 .name___33OjA {
  font-size: 12px;
  margin: 0 auto;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .title___2hd1N {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .eTitle___vFRSf {
  border-radius: 3px;
  color: #666;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 19px 0;
  margin-left: 10px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .envirmentBox___VdKBV .eTitle___vFRSf .num___SeC_6 {
  color: #333;
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .deviceBox___wG3T6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .deviceBox___wG3T6 .title___2hd1N {
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  padding-left: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .deviceBox___wG3T6 .eTitle___vFRSf {
  border-radius: 3px;
  color: #222;
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 8.5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .deviceBox___wG3T6 .eTitle___vFRSf .icon___frBAM {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .middle___14maL .deviceBox___wG3T6 .eTitle___vFRSf .num___SeC_6 {
  position: absolute;
  right: 3px;
  top: 0px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .dateTime___1gIQs {
  position: absolute;
  right: 20px;
  top: 70px;
  z-index: 999;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .export___YrjBM {
  margin-left: 10px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .tabs___V15t_ .ant-tabs-nav {
  padding-left: 22px!important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .tabs___V15t_ .ant-tabs-nav .ant-tabs-tab {
  margin: 0px!important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .tabs___V15t_ .ant-tabs-bar {
  margin: 0;
  border-bottom: 0px solid #e8e8e8!important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .tabs___V15t_ .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 0px solid #318DD9;
  background: #53baff;
  color: #ffffff;
  border-radius: 19px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  height: 37px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .bgWrapper___3c05L .bottom___2kfzu .tabs___V15t_ .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .multiControl___X6oea {
  padding-right: 20px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .main___3ggMl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .main___3ggMl .special___1JYpc {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .main___3ggMl .special___1JYpc > div {
  width: 100%;
  max-width: 212px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .content___2RAtM {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .content___2RAtM .splitLine___r9le3 {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .modile___2hBgQ {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .top___3-UZ5 {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .top___3-UZ5 .cascader___2Y8Sl {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .top___3-UZ5 .cascader___2Y8Sl .ant-cascader-input {
  height: 29px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .top___3-UZ5 .headerButton___7SWAq {
  width: 80px;
  height: 29px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .top___3-UZ5 label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .top___3-UZ5 .deviceNum___2WkeM {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .title___2hd1N {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .title___2hd1N span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .title___2hd1N .btn_inactive___3GKOD {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .title___2hd1N .btn_inactive___3GKOD span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .title___2hd1N .btn_active___1yg0I {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .title___2hd1N .btn_active___1yg0I span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W {
  margin-top: 10px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_title___34i4l {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_content___rtNRI {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_content___rtNRI input {
  text-align: center;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .input_minus___2rH_d {
  height: 24px;
  min-width: 65px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .input_minus___2rH_d .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .input_minus___2rH_d .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_btns___QKdT0 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_btns___QKdT0 .smallBtn___2XTL3 {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_btns___QKdT0 .smallBtn___2XTL3 span i {
  padding: 0 9px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U .item___2I87W .item_btns___QKdT0 .largeBtn___Dp0mx {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U li .ant-radio-group___NJzGY {
  width: 100%;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U li .font_style___30FzQ {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U li .input_number___3INmY {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U li .input_number___3INmY.minwidth___3tH9- {
  width: 60px !important;
}
.wrapper___2ZzgH .center___258qj .tabs___V15t_ .tabContent___1FtJG .control___2il2x .model___3sH4U li .font_radio___2A5Et {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.model_inactive___1fhnt {
  display: none!important;
}
.hide___33XiR {
  display: none;
}
.show___1UtiO {
  display: block;
}
.MyInput_item___6uOCh {
  width: 94%;
  text-align: center;
  margin: 0px auto;
}
.MyInput_item___6uOCh .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
  margin-right: 0px!important;
  min-width: 92px;
}
.MyInput_item___6uOCh .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___6uOCh .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px!important;
}
.MyInput_item___6uOCh .item_title___1lKVL {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
  margin-top: 10px;
}
.MyInput_item___6uOCh .item_content___14R7y {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___6uOCh .item_content___14R7y input {
  text-align: center;
}
.MyInput_item___6uOCh .item_btns___BCG8o {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___6uOCh .item_btns___BCG8o .smallBtn___3IfUA {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___6uOCh .item_btns___BCG8o .smallBtn___3IfUA span i {
  padding: 0 9px;
}
.MyInput_item___6uOCh .item_btns___BCG8o .largeBtn___kad43 {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___6uOCh .ant-radio-group___1REos {
  width: 100%;
}
.MyInput_item___6uOCh .font_style___1c7DN {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.MyInput_item___6uOCh .input_number___1ZIMl {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___6uOCh .input_number___1ZIMl.minwidth___3Ikvf {
  width: 65px !important;
}
.MyInput_item___6uOCh .font_radio___KKPen {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -ms-flexbox!important;
  display: flex!important;
  -ms-flex-wrap: wrap!important;
      flex-wrap: wrap!important;
  -ms-flex-pack: justify !important;
      justify-content: space-between !important;
}
.input_minus___3aTMh {
  height: 24px!important;
  min-width: 65px!important;
}
.input_minus___3aTMh .ant-input-number {
  height: 24px!important;
  line-height: 24px!important;
}
.input_minus___3aTMh .ant-input-number .ant-input-number-input {
  height: 24px!important;
}
.model_inactive___3PyPa {
  display: none!important;
}
.btn_del___1EsQS {
  cursor: pointer;
}
.box___2Kz8e {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  min-width: 212px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___2Kz8e .ant-checkbox-inner {
  border: 1px solid #999999!important;
}
.box___2Kz8e .title___1-O9E {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___2Kz8e .title___1-O9E > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.box___2Kz8e .title___1-O9E > div > label {
  margin-right: 10px;
}
.box___2Kz8e .title___1-O9E > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.box___2Kz8e .title___1-O9E > div > span.disabled___2DMqF button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___2Kz8e .title___1-O9E > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___2Kz8e .title___1-O9E > div > button:hover {
  background-color: #D5EEFF;
}
.box___2Kz8e .title___1-O9E > div > button.success___1PE_d {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___2Kz8e .title___1-O9E > div > button.disabled___2DMqF {
  background-color: #EBECED;
  color: #999999;
}
.box___2Kz8e .more___9KqBG {
  position: relative;
}
.box___2Kz8e .more___9KqBG .template___3X9QU {
  padding-top: 10px;
  padding-left: 10px;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 {
  display: none;
  width: 100%;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .ant-form-item {
  min-height: auto;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .has-error .ant-form-explain,
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa {
  margin-top: 18px;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .item_title___gLNIc {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .item_content___1PnVS {
  display: -ms-flexbox;
  display: flex;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .item_content___1PnVS input {
  text-align: center;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .input_minus___3LXWd {
  height: 24px;
  min-width: 65px;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .input_minus___3LXWd .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .input_minus___3LXWd .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___2Kz8e .more___9KqBG .main___3iRd5 .model___iXpap .item___2XKSa .item_btns___1c-kY {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___2Kz8e .more___9KqBG .pull___1dOnA {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___2Kz8e .more___9KqBG .pull___1dOnA > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___2Kz8e .more___9KqBG .pull___1dOnA > span i {
  margin-left: 4px;
}
.box___2Kz8e.active___2jRu9 {
  border-radius: 3px 3px 0 0;
}
.box___2Kz8e.active___2jRu9 .more___9KqBG > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: scroll!important;
  overflow-x: hidden;
}
.box___2Kz8e.active___2jRu9 .title___1-O9E {
  border-bottom: 0;
}
.box___2Kz8e.active___2jRu9 .more___9KqBG > div {
  width: 100%;
  background-color: #fff;
}
.box___2Kz8e.active___2jRu9 .more___9KqBG > div .main___3iRd5 {
  display: inline-block;
}
.box___2Kz8e.active___2jRu9 .more___9KqBG > div .pull___1dOnA {
  border-top: 1px solid #eee;
}
.box___2Kz8e.active___2jRu9 .more___9KqBG > div .pull___1dOnA i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___2Kz8e.active___2jRu9 .bottom___17vGz {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
}
.box___2Kz8e.active___2jRu9 .bottom___17vGz .buttons___2SsPJ {
  text-align: center;
  padding: 10px 0px;
}
.box___2Kz8e.active___2jRu9 .bottom___17vGz .buttons___2SsPJ button {
  margin: 0px 5px;
}
.box___2Kz8e.active___2jRu9 .bottom___17vGz .buttons___2SsPJ .button___A00gr {
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___2Kz8e.children___3J-L1 {
  height: 55px;
}
.box___2Kz8e.children___3J-L1 .title___1-O9E > div {
  border: 0 !important;
}
.box___2Kz8e.children___3J-L1 .more___9KqBG .pull___1dOnA {
  visibility: hidden;
}
.box___2Kz8e .commonInputNumber___UZIQo {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___2Kz8e.temp___yXW3I .more___9KqBG > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___2Kz8e.temp___yXW3I.active___2jRu9 {
  -ms-flex: 0 1 98%!important;
      flex: 0 1 98%!important;
}
.box___2Kz8e.temp___yXW3I.active___2jRu9 .ant-form-item___3ioT3 {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___2Kz8e.temp___yXW3I.active___2jRu9 .titleCommon___1mgg3 {
  display: inline-block;
  margin: 10px;
}
.box___2Kz8e.temp___yXW3I.active___2jRu9 .col1___3cLVT {
  text-align: center;
  line-height: 40px;
}
.box___2Kz8e.temp___yXW3I.active___2jRu9 .title___1-O9E {
  width: 100%!important;
  margin: 0px !important;
}
.box___2Kz8e.edit_temp___2gIeT .more___9KqBG > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  height: 510px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___2Kz8e.edit_temp___2gIeT.active___2jRu9 {
  -ms-flex: 0 1 98%!important;
      flex: 0 1 98%!important;
}
.box___2Kz8e.edit_temp___2gIeT.active___2jRu9 .ant-form-item___3ioT3 {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___2Kz8e.edit_temp___2gIeT.active___2jRu9 .titleCommon___1mgg3 {
  display: inline-block;
  margin: 10px;
}
.box___2Kz8e.edit_temp___2gIeT.active___2jRu9 .col1___3cLVT {
  text-align: center;
  line-height: 40px;
}
.box___2Kz8e.edit_temp___2gIeT.active___2jRu9 .title___1-O9E {
  width: 100%!important;
  margin: 0px !important;
}
.box___2Kz8e .hide___3kKey {
  display: none!important;
}
.box___2Kz8e .show___1sTdn {
  display: block!important;
}
.edit_box___GJqBa .more___9KqBG {
  margin-bottom: 50px;
}
.MyInput_item___2yoSw {
  width: 94%;
  text-align: center;
  position: relative;
  margin: 0px auto;
}
.MyInput_item___2yoSw .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
  margin-right: 0px !important;
  min-width: 92px;
}
.MyInput_item___2yoSw .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___2yoSw .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px !important;
}
.MyInput_item___2yoSw .item_title___1jQ0E {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
  margin-top: 10px;
}
.MyInput_item___2yoSw .item_content___1-mq- {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___2yoSw .item_content___1-mq- input {
  text-align: center;
}
.MyInput_item___2yoSw .item_btns___EE1zb {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___2yoSw .item_btns___EE1zb .smallBtn___3vCpU {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___2yoSw .item_btns___EE1zb .smallBtn___3vCpU span i {
  padding: 0 9px;
}
.MyInput_item___2yoSw .item_btns___EE1zb .largeBtn___3YnJg {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___2yoSw .ant-radio-group___2AGuo {
  width: 100%;
}
.MyInput_item___2yoSw .font_style___2I4C9 {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.MyInput_item___2yoSw .input_number___791th {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___2yoSw .input_number___791th.minwidth___3lJg8 {
  width: 65px !important;
}
.MyInput_item___2yoSw .font_radio___3kdf0 {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -ms-flex-pack: justify !important;
      justify-content: space-between !important;
}
.MyInput_item___2yoSw .initMac_show___3ANdq {
  display: none !important;
}
.MyInput_item___2yoSw:hover .initMac_show___3ANdq {
  display: inline-block !important;
  position: absolute !important;
  bottom: 12px !important;
  right: 5px !important;
}
.myDatePicker___6NB7b .ant-calendar-time .ant-calendar-header {
  display: none!important;
}
.myDatePicker___6NB7b .ant-calendar-time .ant-calendar-time-picker {
  position: relative!important;
  top: 0px!important;
}
.myDatePicker___6NB7b .ant-calendar-time .ant-calendar-time-picker .ant-calendar-time-picker-panel {
  position: relative !important;
}
.myDatePicker___6NB7b .ant-calendar-time .ant-calendar-body {
  display: none !important;
}
.myDatePicker___6NB7b .ant-calendar-time .ant-calendar-time-picker-btn {
  display: none !important;
}
.input_minus___OAeTg {
  height: 24px !important;
  min-width: 65px !important;
}
.input_minus___OAeTg .ant-input-number {
  height: 24px !important;
  line-height: 24px !important;
}
.input_minus___OAeTg .ant-input-number .ant-input-number-input {
  height: 24px !important;
}
.model_inactive___cH4T4 {
  display: none !important;
}
.btn_del___3WzsD {
  cursor: pointer;
}
.red___2XbFW {
  color: red !important;
}
.red___2XbFW input {
  color: red !important;
}
.hide___NsQ_p {
  display: none;
}
.titleWrap___14vVe {
  width: 100%;
}
.titleWrap___14vVe .mainTitle___3-La5 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin-bottom: 0px;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___14vVe .mainTitle___3-La5 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___14vVe .mainTitle___3-La5 .titleItem___3-UH6 {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.taskManageModal___1pX__ .title___j9HSn {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
.taskManageModal___1pX__ .btns___93OP2 {
  text-align: center;
}
.taskManageModal___1pX__ .formWrap___2GUtp {
  width: 100%;
}
.taskManageModal___1pX__ .formWrap___2GUtp .buttonRow___1FSFg {
  text-align: center;
  margin-top: 10px;
}
.taskManageModal___1pX__ .formWrap___2GUtp .ant-form-item {
  min-height: 60px !important;
}
.taskManageModal___1pX__ .ant-radio-group {
  width: 70% !important;
  margin: 0 auto !important;
  display: block !important;
  margin-bottom: 20px !important;
}
.taskManageModal___1pX__ .ant-radio-wrapper {
  width: 33.3%;
  margin-right: 0px!important;
  height: 40px;
  line-height: 40px;
}
.box___1XhvG {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  min-width: 212px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___1XhvG .ant-checkbox-inner {
  border: 1px solid #999999!important;
}
.box___1XhvG .title___2Z2E7 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___1XhvG .title___2Z2E7 > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.box___1XhvG .title___2Z2E7 > div > label {
  margin-right: 10px;
}
.box___1XhvG .title___2Z2E7 > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.box___1XhvG .title___2Z2E7 > div > span.disabled___kzXaS button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___1XhvG .title___2Z2E7 > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___1XhvG .title___2Z2E7 > div > button:hover {
  background-color: #D5EEFF;
}
.box___1XhvG .title___2Z2E7 > div > button.success___1OUuz {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___1XhvG .title___2Z2E7 > div > button.disabled___kzXaS {
  background-color: #EBECED;
  color: #999999;
}
.box___1XhvG .more___1hxko {
  position: relative;
}
.box___1XhvG .more___1hxko .template___XJ_Tj {
  padding-top: 10px;
  padding-left: 10px;
}
.box___1XhvG .more___1hxko .main___30Wx5 {
  display: none;
  width: 100%;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .ant-form-item {
  min-height: auto;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .has-error .ant-form-explain,
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH {
  margin-top: 18px;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .item_title___33erm {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .item_content___1bADp {
  display: -ms-flexbox;
  display: flex;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .item_content___1bADp input {
  text-align: center;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .input_minus___33wZt {
  height: 24px;
  min-width: 65px;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .input_minus___33wZt .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .input_minus___33wZt .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___1XhvG .more___1hxko .main___30Wx5 .model___32Z4w .item___16YlH .item_btns___wjUVE {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___1XhvG .more___1hxko .pull___2uYoM {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___1XhvG .more___1hxko .pull___2uYoM > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___1XhvG .more___1hxko .pull___2uYoM > span i {
  margin-left: 4px;
}
.box___1XhvG.active___3N-94 {
  border-radius: 3px 3px 0 0;
}
.box___1XhvG.active___3N-94 .more___1hxko > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: scroll!important;
  overflow-x: hidden;
}
.box___1XhvG.active___3N-94 .title___2Z2E7 {
  border-bottom: 0;
}
.box___1XhvG.active___3N-94 .more___1hxko > div {
  width: 100%;
  background-color: #fff;
}
.box___1XhvG.active___3N-94 .more___1hxko > div .main___30Wx5 {
  display: inline-block;
}
.box___1XhvG.active___3N-94 .more___1hxko > div .pull___2uYoM {
  border-top: 1px solid #eee;
}
.box___1XhvG.active___3N-94 .more___1hxko > div .pull___2uYoM i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___1XhvG.active___3N-94 .bottom___3irq3 {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
}
.box___1XhvG.active___3N-94 .bottom___3irq3 .buttons___v8bxg {
  text-align: center;
  padding: 10px 0px;
}
.box___1XhvG.active___3N-94 .bottom___3irq3 .buttons___v8bxg button {
  margin: 0px 5px;
}
.box___1XhvG.active___3N-94 .bottom___3irq3 .buttons___v8bxg .button___3FAux {
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___1XhvG.children___dpBTr {
  height: 55px;
}
.box___1XhvG.children___dpBTr .title___2Z2E7 > div {
  border: 0 !important;
}
.box___1XhvG.children___dpBTr .more___1hxko .pull___2uYoM {
  visibility: hidden;
}
.box___1XhvG .commonInputNumber___2a-MA {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___1XhvG.temp___3KX_8 .more___1hxko > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___1XhvG.temp___3KX_8.active___3N-94 .ant-form-item___2OphA {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___1XhvG.temp___3KX_8.active___3N-94 .titleCommon___2a5UZ {
  display: inline-block;
  margin: 10px;
}
.box___1XhvG.temp___3KX_8.active___3N-94 .col1___3jM4o {
  text-align: center;
  line-height: 40px;
}
.box___1XhvG.temp___3KX_8.active___3N-94 .title___2Z2E7 {
  width: 100%!important;
  margin: 0px !important;
}
.box___1XhvG.edit_temp___4k-Up .more___1hxko > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  height: 510px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___1XhvG.edit_temp___4k-Up.active___3N-94 .ant-form-item___2OphA {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___1XhvG.edit_temp___4k-Up.active___3N-94 .titleCommon___2a5UZ {
  display: inline-block;
  margin: 10px;
}
.box___1XhvG.edit_temp___4k-Up.active___3N-94 .col1___3jM4o {
  text-align: center;
  line-height: 40px;
}
.box___1XhvG.edit_temp___4k-Up.active___3N-94 .title___2Z2E7 {
  width: 100%!important;
  margin: 0px !important;
}
.box___1XhvG.sensor___3lWgo span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___1XhvG.sensor___3lWgo .more___1hxko > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___1XhvG.sensor___3lWgo.active___3N-94 .ant-form-item___2OphA {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___1XhvG.sensor___3lWgo.active___3N-94 .titleCommon___2a5UZ {
  display: inline-block;
  margin: 10px;
}
.box___1XhvG.sensor___3lWgo.active___3N-94 .col1___3jM4o {
  text-align: center;
  line-height: 40px;
}
.box___1XhvG.sensor___3lWgo.active___3N-94 .title___2Z2E7 {
  width: 100%!important;
  margin: 0px !important;
}
.box___1XhvG.edit_sensor___25keZ span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___1XhvG.edit_sensor___25keZ .more___1hxko > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___1XhvG.edit_sensor___25keZ.active___3N-94 .ant-form-item___2OphA {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___1XhvG.edit_sensor___25keZ.active___3N-94 .titleCommon___2a5UZ {
  display: inline-block;
  margin: 10px;
}
.box___1XhvG.edit_sensor___25keZ.active___3N-94 .col1___3jM4o {
  text-align: center;
  line-height: 40px;
}
.box___1XhvG.edit_sensor___25keZ.active___3N-94 .title___2Z2E7 {
  width: 100%!important;
  margin: 0px !important;
}
.box___1XhvG .hide___10EcK {
  display: none!important;
}
.box___1XhvG .show___sEV39 {
  display: block!important;
}
.box___1XhvG .red___1aFvo {
  color: red !important;
}
.box___1XhvG .red___1aFvo input {
  color: red !important;
}
.box___1XhvG .red___1aFvo .ant-input-number-input[disabled] {
  color: red !important;
}
.edit_box___2FN2z .more___1hxko {
  margin-bottom: 50px;
}
.labelFont___2hpp1 {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___2MKcv {
  width: 100%;
  height: 100%;
}
.wrapper___2MKcv .header___3o_Oo {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0px 20px;
  position: fixed;
  top: 110px;
  z-index: 2;
  background-color: white;
}
.wrapper___2MKcv .header___3o_Oo .pos___24PQo {
  font-size: 18px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  text-align: left;
  color: #333333;
  height: 30px;
  line-height: 40px;
}
.wrapper___2MKcv .header___3o_Oo .dev___3qXIa {
  font-size: 12px;
  font-family: SourceHanSansCN, SourceHanSansCN-Normal;
  font-weight: Normal;
  text-align: left;
  color: #959aa5;
  height: 30px;
  line-height: 30px;
}
.wrapper___2MKcv .center___1Kl67 {
  background-color: #f3f4f5;
  padding: 20px;
  margin-top: 60px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI {
  background-color: #ffffff;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz {
  background: #f3f4f5;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 {
  background: #fff;
  border-radius: 3px 3px 0 0;
  padding: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM {
  width: 222px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM ul {
  list-style: none;
  padding: 0;
  margin: 5px 12px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM ul li {
  padding: 0;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .eTitle___NcX8J {
  color: #666;
  padding: 4px 0px;
  font-size: 14px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .eTitle___NcX8J .num___1CLUS {
  color: #222;
  font-weight: 500;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .title___3UyqA {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 28px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .title___3UyqA img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .content___1kS1L {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox1___3p7US {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox1___3p7US .row___3PuD- {
  margin: 0px 15px;
  border-bottom: 1px solid #e8e8e8;
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox1___3p7US .row___3PuD-:last-of-type {
  border-bottom: none !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox1___3p7US .row___3PuD- .name___1VCq5 {
  font-size: 14px;
  font-family: SourceHanSansCN, SourceHanSansCN-Regular;
  font-weight: 400;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox1___3p7US .row___3PuD- .value___26Dna {
  font-size: 16px;
  font-family: SourceHanSansCN, SourceHanSansCN-Medium;
  font-weight: 500;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox___2QjR6 {
  width: 222px;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  text-align: center;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox___2QjR6 .box___3C6U9 {
  height: 125px;
  padding-top: 38px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox___2QjR6 .box___3C6U9 .value___26Dna {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
  margin: 0 auto;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_left___2ItnM .contentBox___2QjR6 .box___3C6U9 .name___1VCq5 {
  width: 48px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  margin: 0 auto;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx {
  margin-left: 18px;
  /* margin-right: 12px; */
  width: 100%;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .title___3UyqA {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 28px;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .title___3UyqA img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L {
  display: -ms-flexbox;
  display: flex;
  height: 254px;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
  border-radius: 3px;
  padding: 7px 0px 15px 0px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .label___2neg1 {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .label___2neg1 li {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .label___2neg1 li img {
  width: 24px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .value___26Dna {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .value___26Dna .li___33azr {
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .value___26Dna .date___3nRdy {
  font-family: PingFang SC;
  font-size: 13px;
  font-weight: 500;
  color: #9ea5aa;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .baseBox___2gL06 .baseBox_right___1jmyx .content___1kS1L .value___26Dna .date_today___2tF7F {
  font-family: PingFang SC;
  color: #20a4fc;
  font-size: 13px;
  font-weight: 500;
  width: 90px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  background: #f2faff;
  border-radius: 14px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .splitLine___3YsK6 {
  height: 47px;
  line-height: 47px;
  padding: 0px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .splitLine___3YsK6 .splitLineContainer___2yU0F {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .splitLine___3YsK6 img {
  width: 28px;
  margin-top: -5px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .splitLine___3YsK6 .rightT___18IY4 {
  position: absolute;
  right: 20px;
  top: -1px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .splitLine___3YsK6 .rightT___18IY4 .btn___30hqQ {
  margin-left: 20px;
  width: 88px;
  height: 32px;
  background: #20a4fc;
  border-radius: 16px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI {
  padding: 12px;
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct {
  height: 129px;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  margin-right: 20px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct:nth-child(5) {
  margin-right: 0px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .title___3UyqA {
  height: 43px;
  line-height: 43px;
  padding: 0px 12px;
  display: -ms-flexbox;
  display: flex;
  background: #F8F8F8;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-bottom: 0px;
  margin-top: 0px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .title___3UyqA .name___1VCq5 {
  display: inline-block;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  border-left: 3px solid #20A4FC;
  height: 10px;
  line-height: 10px;
  margin-top: 16px;
  padding-left: 5px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .title___3UyqA .imgBox___13BwB {
  width: 25px;
  height: 25px;
  position: relative;
  margin-top: 9px;
  margin-left: 5px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .title___3UyqA .imgBox___13BwB.inactive___JxbiI {
  background: #959B9F;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .title___3UyqA .imgBox___13BwB:hover {
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .title___3UyqA .imgBox___13BwB img {
  width: 25px;
  height: 25px;
  position: absolute;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .content___1kS1L {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .content___1kS1L .value___26Dna {
  width: 25%;
  height: 92px;
  text-align: center;
  padding-top: 16px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .devlopmentBox___1t5ct .content___1kS1L .value___26Dna .name___1VCq5 {
  font-size: 12px;
  margin: 0 auto;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .title___3UyqA {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .eTitle___NcX8J {
  border-radius: 3px;
  color: #666;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 19px 0;
  margin-left: 10px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .envirmentBox___1IHdI .eTitle___NcX8J .num___1CLUS {
  color: #333;
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .deviceBox___8R4QY {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .deviceBox___8R4QY .title___3UyqA {
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  padding-left: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #999999;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .deviceBox___8R4QY .eTitle___NcX8J {
  border-radius: 3px;
  color: #222;
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 8.5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  background: #ffffff;
  border: 0.5px solid #e8e8e8;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .deviceBox___8R4QY .eTitle___NcX8J .icon___kwwCd {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .deviceBox___8R4QY .eTitle___NcX8J .num___1CLUS {
  position: absolute;
  right: 3px;
  top: 0px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .middle___uUjJM .deviceBox___8R4QY .eTitle___NcX8J .leftNum___1E8dR {
  position: absolute;
  left: 3px;
  top: 0px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .dateTime___1Pqze {
  position: absolute;
  right: 20px;
  top: 70px;
  z-index: 999;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .export___4DsC0 {
  margin-left: 10px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .tabs___1rziI .ant-tabs-nav {
  padding-left: 22px !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .tabs___1rziI .ant-tabs-nav .ant-tabs-tab {
  margin: 0px !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .tabs___1rziI .ant-tabs-bar {
  margin: 0;
  border-bottom: 0px solid #e8e8e8 !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .tabs___1rziI .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 0px solid #318DD9;
  background: #53baff;
  color: #ffffff;
  border-radius: 19px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  height: 37px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .bgWrapper___2JVtz .bottom___25e8d .tabs___1rziI .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .multiControl___DrGem {
  padding-right: 20px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .special___7zwIe {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(20% - 1px);
      flex-basis: calc(20% - 1px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .special___7zwIe > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .all___3OcJP {
  -ms-flex: 0 1 100%;
      flex: 0 1 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .all___3OcJP > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .half___2ml41 {
  -ms-flex: 0 1 40%;
      flex: 0 1 40%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .half___2ml41 > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_20___22JIY {
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(20% - 1px);
      flex-basis: calc(20% - 1px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_20___22JIY > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_40___ZVnB8 {
  -ms-flex: 0 1 40%;
      flex: 0 1 40%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_40___ZVnB8 > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_60___3cglx {
  -ms-flex: 0 1 60%;
      flex: 0 1 60%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_60___3cglx > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_80___GpWVg {
  -ms-flex: 0 1 80%;
      flex: 0 1 80%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_80___GpWVg > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_100___yMlAE {
  -ms-flex: 0 1 100%;
      flex: 0 1 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .main___A0ex3 .percent_100___yMlAE > div {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-width: 212px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .content___1kS1L {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .content___1kS1L .splitLine___3YsK6 {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .modile___39N2u {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .top___64jOO {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .top___64jOO .cascader___3Ynq3 {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .top___64jOO .cascader___3Ynq3 .ant-cascader-input {
  height: 29px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .top___64jOO .headerButton___3zs4B {
  width: 80px;
  height: 29px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .top___64jOO label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .top___64jOO .deviceNum___CK9zs {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .title___3UyqA {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .title___3UyqA span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .title___3UyqA .btn_inactive___2_KiT {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .title___3UyqA .btn_inactive___2_KiT span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .title___3UyqA .btn_active___3il_r {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .title___3UyqA .btn_active___3il_r span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e {
  margin-top: 10px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_title___OpSoX {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_content___3e3pU {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_content___3e3pU input {
  text-align: center;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .input_minus___1x7Tg {
  height: 24px;
  min-width: 65px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .input_minus___1x7Tg .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .input_minus___1x7Tg .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_btns___MsFAP {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_btns___MsFAP .smallBtn___1X2t7 {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_btns___MsFAP .smallBtn___1X2t7 span i {
  padding: 0 9px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy .item___1dQ5e .item_btns___MsFAP .largeBtn___e45C9 {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy li .ant-radio-group___Hldrm {
  width: 100%;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy li .font_style___1ZW63 {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy li .input_number___BXB59 {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy li .input_number___BXB59.minwidth___1wmkJ {
  width: 60px !important;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .control___1P1Bn .model___3PTyy li .font_radio___3DG4L {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.wrapper___2MKcv .center___1Kl67 .tabs___1rziI .tabContent___3KPw0 .paramsetSpin___13jLe .ant-spin {
  position: fixed !important;
  top: 200px !important;
}
.wrapper___2MKcv .red___3Y4e3 {
  color: red !important;
}
.wrapper___2MKcv .red___3Y4e3 input {
  color: red !important;
}
.model_inactive___2pgnt {
  display: none !important;
}
.hide___3OVQ4 {
  display: none;
}
.show___2f8z_ {
  display: block;
}
.box___3DZrW {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  min-width: 212px;
  margin-right: 15px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___3DZrW .ant-checkbox-inner {
  border: 1px solid #999999!important;
}
.box___3DZrW .ant-form-item {
  min-height: 40px!important;
}
.box___3DZrW .title___3APqD {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___3DZrW .title___3APqD > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.box___3DZrW .title___3APqD > div > label {
  margin-right: 10px;
}
.box___3DZrW .title___3APqD > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.box___3DZrW .title___3APqD > div > span.disabled___2ON31 button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___3DZrW .title___3APqD > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___3DZrW .title___3APqD > div > button:hover {
  background-color: #D5EEFF;
}
.box___3DZrW .title___3APqD > div > button.success___83hN- {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___3DZrW .title___3APqD > div > button.disabled___2ON31 {
  background-color: #EBECED;
  color: #999999;
}
.box___3DZrW .more___2F5gE {
  position: relative;
}
.box___3DZrW .more___2F5gE .template___3Cg22 {
  padding-top: 10px;
  padding-left: 10px;
}
.box___3DZrW .more___2F5gE .main___JLW5R {
  display: none;
  width: 100%;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .ant-form-item {
  min-height: auto;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .has-error .ant-form-explain,
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC {
  margin-top: 18px;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .item_title___TdCxR {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .item_content___2OZzE {
  display: -ms-flexbox;
  display: flex;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .item_content___2OZzE input {
  text-align: center;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .input_minus___2CGSZ {
  height: 24px;
  min-width: 65px;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .input_minus___2CGSZ .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .input_minus___2CGSZ .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___3DZrW .more___2F5gE .main___JLW5R .model___3Zbwu .item___3S6KC .item_btns___PVQ0P {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___3DZrW .more___2F5gE .pull___2QAgy {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___3DZrW .more___2F5gE .pull___2QAgy > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___3DZrW .more___2F5gE .pull___2QAgy > span i {
  margin-left: 4px;
}
.box___3DZrW.active___1jKtf {
  border-radius: 3px 3px 0 0;
}
.box___3DZrW.active___1jKtf .more___2F5gE > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: scroll!important;
  overflow-x: hidden;
}
.box___3DZrW.active___1jKtf .title___3APqD {
  border-bottom: 0;
}
.box___3DZrW.active___1jKtf .more___2F5gE > div {
  width: 100%;
  background-color: #fff;
}
.box___3DZrW.active___1jKtf .more___2F5gE > div .main___JLW5R {
  display: inline-block;
}
.box___3DZrW.active___1jKtf .more___2F5gE > div .pull___2QAgy {
  border-top: 1px solid #eee;
}
.box___3DZrW.active___1jKtf .more___2F5gE > div .pull___2QAgy i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___3DZrW.active___1jKtf .bottom___1ieRl {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
}
.box___3DZrW.active___1jKtf .bottom___1ieRl .buttons___1mktA {
  text-align: center;
  padding: 10px 0px;
}
.box___3DZrW.active___1jKtf .bottom___1ieRl .buttons___1mktA button {
  margin: 0px 5px;
}
.box___3DZrW.active___1jKtf .bottom___1ieRl .buttons___1mktA .button___1a_1- {
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  font-weight: 500;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___3DZrW.children___2Dr2u {
  height: 55px;
}
.box___3DZrW.children___2Dr2u .title___3APqD > div {
  border: 0 !important;
}
.box___3DZrW.children___2Dr2u .more___2F5gE .pull___2QAgy {
  visibility: hidden;
}
.box___3DZrW .commonInputNumber___2Fzb6 {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___3DZrW.temp___3rXYN .more___2F5gE > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3DZrW.temp___3rXYN.active___1jKtf .ant-form-item___2sGZQ {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3DZrW.temp___3rXYN.active___1jKtf .titleCommon___18cOA {
  display: inline-block;
  margin: 10px;
}
.box___3DZrW.temp___3rXYN.active___1jKtf .col1___Ovldr {
  text-align: center;
  line-height: 40px;
}
.box___3DZrW.temp___3rXYN.active___1jKtf .title___3APqD {
  width: 100%!important;
  margin: 0px !important;
}
.box___3DZrW.edit_temp___1xxf4 .more___2F5gE > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  height: 510px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3DZrW.edit_temp___1xxf4.active___1jKtf .ant-form-item___2sGZQ {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3DZrW.edit_temp___1xxf4.active___1jKtf .titleCommon___18cOA {
  display: inline-block;
  margin: 10px;
}
.box___3DZrW.edit_temp___1xxf4.active___1jKtf .col1___Ovldr {
  text-align: center;
  line-height: 40px;
}
.box___3DZrW.edit_temp___1xxf4.active___1jKtf .title___3APqD {
  width: 100%!important;
  margin: 0px !important;
}
.box___3DZrW.sensor___DC4Re span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___3DZrW.sensor___DC4Re .more___2F5gE > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3DZrW.sensor___DC4Re.active___1jKtf .ant-form-item___2sGZQ {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3DZrW.sensor___DC4Re.active___1jKtf .titleCommon___18cOA {
  display: inline-block;
  margin: 10px;
}
.box___3DZrW.sensor___DC4Re.active___1jKtf .col1___Ovldr {
  text-align: center;
  line-height: 40px;
}
.box___3DZrW.sensor___DC4Re.active___1jKtf .title___3APqD {
  width: 100%!important;
  margin: 0px !important;
}
.box___3DZrW.edit_sensor___1Cqiz span.ant-radio + * {
  padding-right: 2px;
  padding-left: 2px;
}
.box___3DZrW.edit_sensor___1Cqiz .more___2F5gE > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___3DZrW.edit_sensor___1Cqiz.active___1jKtf .ant-form-item___2sGZQ {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___3DZrW.edit_sensor___1Cqiz.active___1jKtf .titleCommon___18cOA {
  display: inline-block;
  margin: 10px;
}
.box___3DZrW.edit_sensor___1Cqiz.active___1jKtf .col1___Ovldr {
  text-align: center;
  line-height: 40px;
}
.box___3DZrW.edit_sensor___1Cqiz.active___1jKtf .title___3APqD {
  width: 100%!important;
  margin: 0px !important;
}
.box___3DZrW .hide___2VJyq {
  display: none!important;
}
.box___3DZrW .show___3DWOY {
  display: block!important;
}
.box___3DZrW .red___rwLs2 {
  color: red !important;
}
.box___3DZrW .red___rwLs2 input {
  color: red !important;
}
.box___3DZrW .red___rwLs2 .ant-input-number-input[disabled] {
  color: red !important;
}
.edit_box___XEjbF .more___2F5gE {
  margin-bottom: 50px;
}
.labelFont___fcj2o {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}
.container___pBdG9 {
  padding: 20px 20px 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.container___pBdG9 .header___16Iz3 {
  padding-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
}
.container___pBdG9 .header___16Iz3 .headerButton___2cYxZ {
  width: 80px;
  height: 29px;
}
.container___pBdG9 .header___16Iz3 .cascader___1Xz3s {
  width: 20%;
  margin-right: 25px;
  margin-left: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.container___pBdG9 .header___16Iz3 .cascader___1Xz3s .ant-cascader-input {
  height: 45px;
}
.container___pBdG9 .header___16Iz3 .info___1jUuX {
  height: 45px;
  padding-right: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 400;
  color: #686c6c;
  line-height: 45px;
}
.container___pBdG9 .header___16Iz3 .info___1jUuX img {
  width: 14px;
  margin-right: 3px;
}
.container___pBdG9 .header___16Iz3 .info___1jUuX .number___yYBWh {
  padding-left: 20px;
}
.container___pBdG9 .header___16Iz3 .info___1jUuX .line___2yHp9 {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 20px;
  border-right: 1px dotted #E0E0E0;
}
.container___pBdG9 .header___16Iz3 .area___2E-VN {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: right;
  height: 45px;
  font-size: 24px;
  font-family: PingFangSC-Medium, PingFangSC;
  font-weight: 500;
  color: #0091ff;
  line-height: 45px;
}
.container___pBdG9 .header___16Iz3 .area___2E-VN img {
  width: 19px;
  line-height: 19px;
  margin-top: -2px;
  margin-right: 7px;
}
.container___pBdG9 .center___1ad-w {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz {
  width: 270px;
  height: 260px;
  z-index: 1;
  overflow-y: hidden;
  position: absolute;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 0px 10px;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .head___23sbe {
  height: 32px;
  line-height: 32px;
  border-bottom: 1px solid #33333324;
  font-size: 14px;
  font-weight: bold;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .head___23sbe .custom___3TDUu {
  cursor: pointer;
  color: #60BEFD;
  font-weight: 400;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .head___23sbe .custom___3TDUu > i {
  -webkit-transform: translate(-3px, 1px);
          transform: translate(-3px, 1px);
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .listwrapper___R_0OV {
  height: 210px;
  overflow: hidden;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .weatherList___330wT {
  overflow-y: scroll;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .weatherList___330wT .weatherRow___1XlnG {
  height: 60px;
  margin-top: 10px;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz .row___2pDr1 {
  color: #686c6c99;
}
.container___pBdG9 .center___1ad-w .weather___dG4Lz img {
  width: 22px;
}
.container___pBdG9 .center___1ad-w .statistic___3Gl4f {
  width: 300px;
  height: 260px;
  z-index: 1;
  overflow-y: hidden;
  position: absolute;
  right: 20px;
  padding: 0px 10px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.container___pBdG9 .center___1ad-w .statistic___3Gl4f .title___2NUpX {
  height: 32px;
  line-height: 32px;
  border-bottom: 1px solid #33333324;
  font-size: 14px;
  font-weight: bold;
}
.container___pBdG9 .center___1ad-w .statistic___3Gl4f .listwrapper___R_0OV {
  height: 190px;
  overflow: hidden;
}
.container___pBdG9 .center___1ad-w .statistic___3Gl4f .statisticList___1RxOe {
  overflow-y: scroll;
}
.container___pBdG9 .center___1ad-w .statistic___3Gl4f .statisticList___1RxOe .statisticRow___2Lcef {
  height: 80px;
  margin-top: 10px;
}
.container___pBdG9 .center___1ad-w .statistic___3Gl4f .row___2pDr1 {
  color: #686c6c99;
}
.customModal___1YNTQ {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.customModal___1YNTQ > div {
  margin-bottom: 20px;
}
.customModal___1YNTQ > div > button {
  margin-right: 20px;
}
.customModal___1YNTQ > div > button:last-of-type {
  margin: 0;
}
.orangeColor___DoNvg {
  color: #007acc;
}
.globalTableLink___3YBiC {
  color: #76b1cb;
}
.previewContent___3NNA4 .ant-carousel {
  width: 100%;
}
.previewContent___3NNA4 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3NNA4 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3NNA4 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3NNA4 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3NNA4 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-content {
  border: 0;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -13px;
}
.prepTable___3GDzB .globalTable___2H1Uu table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___3GDzB .globalTable___2H1Uu table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___3GDzB .globalTable___2H1Uu table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___3GDzB .globalTable___2H1Uu table td span .anticon {
  color: #8ccad9;
}
.prepTable___3GDzB .globalTable___2H1Uu table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___3GDzB .globalTable___2H1Uu .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-column-sorter .anticon-caret-up,
.prepTable___3GDzB .globalTable___2H1Uu .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___3GDzB .globalTable___2H1Uu i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___3GDzB .childTable___X54L1 .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___3GDzB .grayItem___2ZPLJ {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___3GDzB .operationWrap___3lbAG {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___3GDzB .operationWrap___3lbAG > div {
  display: -ms-flexbox;
  display: flex;
}
.prepTable___3GDzB .operationWrap___3lbAG a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___3GDzB .operationWrap___3lbAG .localText___1KW13 {
  color: #40c8a5;
}
.prepTable___3GDzB .lineWrap___1ylU2 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___3GDzB .lineWrap___1ylU2 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___3GDzB .disabledText___1bSgn {
  color: #666;
  cursor: not-allowed;
}
.prepTable___3GDzB .titleWrap___VE6V4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___3GDzB .titleWrap___VE6V4 .iconWrap___34Gnm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___3GDzB .titleWrap___VE6V4 .iconWrap___34Gnm .sorterActive___me_YK {
  color: #1890ff;
}
.prepTable___3GDzB .titleWrap___VE6V4 .iconWrap___34Gnm i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___3GDzB .titleWrap___VE6V4 .iconWrap___34Gnm i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___3GDzB .btns___2vLd4 {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___3GDzB .btnsLeft___1cOXt button {
  margin-right: 20px;
}
.prepTable___3GDzB .btnsRight___1hqFi button {
  margin-left: 20px;
}
.prepTable___3GDzB .baseBtn___19gwq {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___3GDzB .baseBtn___19gwq:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___3GDzB .globalBtn___2f8wm {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___3GDzB .globalBtn___2f8wm:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.page___1ZJyN .btn___1MlIy {
  margin-right: 20px;
}
.page___1ZJyN .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1JKWs .btn___2jWkS {
  margin-right: 20px;
}
.page___1JKWs .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.formBox___3TtjI {
  width: 100%;
}
.formBox___3TtjI > form {
  margin-top: 24px;
  margin-bottom: 20px;
  padding: 20px 20px;
}
.formBox___3TtjI .levelForm___jJqY6 .ant-form-item-label___Khbgx {
  text-align: right!important;
}
.buttonRow___3G-yi {
  text-align: center;
  margin-top: 10px;
}
.buttonRow___3G-yi .submitBtn___2mjL6 {
  margin-left: 12px;
  width: 200px;
}
.buttonRow___3G-yi .disabledBtn___wBgwV {
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
}
.buttonRow___3G-yi .enabledBtn___1tiRo {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.page___3rCVJ .btn___2Io9a {
  margin-right: 20px;
}
.page___3rCVJ .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1GbUc .btn___2kvPR {
  margin-right: 20px;
}
.page___1GbUc .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___3-sdZ .btn___3_DtS {
  margin-right: 20px;
}
.page___3-sdZ .search___1zXWx :nth-of-type(5) {
  margin-right: 0px!important;
}
.page___3-sdZ .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2vQq5 .btn___354Ni {
  margin-right: 20px;
}
.page___2vQq5 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.popover___33DA3:after,
.popover___33DA3:before {
  content: "";
  display: block;
}
.popover___33DA3:after {
  clear: both;
}
.popover___33DA3 {
  *zoom: 1;
}
.wrapper___3UlvG {
  width: 100%;
  height: 100%;
}
.wrapper___3UlvG .header___28TYt {
  width: 100%;
  height: 120px;
  padding: 20px;
  margin-bottom: 10px;
}
.wrapper___3UlvG .header___28TYt button {
  float: right;
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.wrapper___3UlvG .header___28TYt .ovh_div___1gkuM {
  margin-top: 30px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD {
  background: #f3f4f5;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m {
  background: #fff;
  border-radius: 3px 3px 0 0;
  padding: 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY {
  width: 222px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY ul {
  list-style: none;
  padding: 0;
  margin: 5px 12px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY ul li {
  padding: 0;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .eTitle___3SLM5 {
  color: #666;
  padding: 4px 0px;
  font-size: 14px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .eTitle___3SLM5 .num___1-Grb {
  color: #222;
  font-weight: 500;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .title___3I78f {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 28px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .title___3I78f img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .content___1PmMd {
  width: 222px;
  height: 184px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .contentBox___1SvSh {
  width: 222px;
  height: 184px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  text-align: center;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .contentBox___1SvSh .box___17mxO {
  height: 90px;
  padding-top: 20px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .contentBox___1SvSh .box___17mxO .value___3Z-8m {
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #222222;
  margin: 0 auto;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_left___3x7TY .contentBox___1SvSh .box___17mxO .name___2GLRR {
  width: 48px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
  margin: 0 auto;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH {
  margin-left: 18px;
  /* margin-right: 12px; */
  width: 100%;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .title___3I78f {
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 28px;
  color: #333333;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .title___3I78f img {
  width: 28px;
  margin-right: 8px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .content___1PmMd {
  display: -ms-flexbox;
  display: flex;
  height: 184px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  border-radius: 3px;
  padding: 7px 0px 15px 24px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .content___1PmMd ul {
  list-style: none;
  padding: 0;
  -ms-flex: 1 1;
      flex: 1 1;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .content___1PmMd ul li {
  height: 40px;
  line-height: 40px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .content___1PmMd ul li img {
  width: 24px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .content___1PmMd ul .date___1mAJh {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #333333;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .baseBox___2nX3m .baseBox_right___3NYtH .content___1PmMd ul .date_today___30-Zs {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #20a4fc;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .splitLine___FNUml {
  height: 47px;
  line-height: 47px;
  padding: 0px 22px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  position: relative;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .splitLine___FNUml .splitLineContainer___21C8m {
  width: 100%;
  border-bottom: 1px solid #eee;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .splitLine___FNUml img {
  width: 28px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .splitLine___FNUml .rightT___3Iqqk {
  position: absolute;
  right: 20px;
  top: -1px;
  color: #666;
  font-size: 14px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .splitLine___FNUml .rightT___3Iqqk .btn___12-1S {
  margin-left: 20px;
  width: 88px;
  height: 32px;
  background: #20a4fc;
  border-radius: 16px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 {
  -ms-flex-pack: justify;
      justify-content: space-between;
  background: #fff;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0 0 3px 3px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA {
  padding: 12px;
  padding-top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .devlopmentBox___xCAMj {
  width: 98%;
  height: 118px;
  background: #f8f8f8;
  border-radius: 3px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .devlopmentBox___xCAMj .title___3I78f {
  width: 66px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  background: #bdc3c7;
  border-radius: 3px 0px 4px 0px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0px;
  margin-top: 0px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .devlopmentBox___xCAMj .content___1PmMd {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .devlopmentBox___xCAMj .content___1PmMd .value___3Z-8m {
  width: 25%;
  height: 92px;
  text-align: center;
  padding-top: 24px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .devlopmentBox___xCAMj .content___1PmMd .value___3Z-8m .name___2GLRR {
  font-size: 12px;
  margin: 0 auto;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .title___3I78f {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-weight: 500;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .eTitle___3SLM5 {
  border-radius: 3px;
  color: #666;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 19px 0;
  margin-left: 10px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .envirmentBox___1--wA .eTitle___3SLM5 .num___1-Grb {
  color: #333;
  font-size: 18px;
  display: block;
  font-weight: 500;
  margin-top: 5px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .deviceBox___24Jm7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .deviceBox___24Jm7 .title___3I78f {
  color: #666;
  font-size: 14px;
  margin-bottom: 13px;
  margin-top: 15px;
  font-weight: 500;
  padding-left: 12px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .deviceBox___24Jm7 .eTitle___3SLM5 {
  border-radius: 3px;
  color: #222;
  -webkit-box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
          box-shadow: 0px 0px 3px rgba(150, 165, 190, 0.25);
  padding: 15px 0;
  margin-left: 10px;
  margin-right: 8.5px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .deviceBox___24Jm7 .eTitle___3SLM5 .icon___1D8Uv {
  display: block;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  margin-bottom: 5px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .middle___3_Xe3 .deviceBox___24Jm7 .eTitle___3SLM5 .num___1-Grb {
  position: absolute;
  right: 3px;
  top: 0px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk {
  width: 100%;
  background: #fff;
  border-radius: 3px;
  position: relative;
  border-bottom: 1px solid #eee;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk .dateTime___36XNk {
  position: absolute;
  right: 20px;
  top: 7px;
  z-index: 999;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk .export___13nR4 {
  margin-left: 10px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk .tabs___3IeY1 .ant-tabs-nav {
  padding-left: 22px!important;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk .tabs___3IeY1 .ant-tabs-bar {
  margin: 0;
  border-bottom: 0px solid #e8e8e8!important;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk .tabs___3IeY1 .ant-tabs-bar .ant-tabs-tab-active {
  border-bottom: 0px solid #318DD9;
  background: #53baff;
  color: #ffffff;
  border-radius: 19px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  height: 37px;
}
.wrapper___3UlvG .center___3UL02 .bgWrapper___2I2MD .bottom___3xhqk .tabs___3IeY1 .ant-tabs-bar .ant-tabs-ink-bar {
  display: none !important;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP {
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .main___2Kq0h {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .content___1PmMd {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .content___1PmMd .splitLine___FNUml {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .modile___nF_by {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .top___1FdVs {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .top___1FdVs .cascader___2LkKD {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .top___1FdVs .cascader___2LkKD .ant-cascader-input {
  height: 29px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .top___1FdVs .headerButton___3l_45 {
  width: 80px;
  height: 29px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .top___1FdVs label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .top___1FdVs .deviceNum___2ug_9 {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .title___3I78f {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .title___3I78f span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .title___3I78f .btn_inactive___3OeBc {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .title___3I78f .btn_inactive___3OeBc span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .title___3I78f .btn_active___26tPx {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .title___3I78f .btn_active___26tPx span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI {
  margin-top: 18px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_title___4E-VY {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_content___OnBbF {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_content___OnBbF input {
  text-align: center;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .input_minus___3ZlmJ {
  height: 24px;
  min-width: 65px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .input_minus___3ZlmJ .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .input_minus___3ZlmJ .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_btns___34QPf {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_btns___34QPf .smallBtn___3p4CJ {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_btns___34QPf .smallBtn___3p4CJ span i {
  padding: 0 9px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 .item___3vTVI .item_btns___34QPf .largeBtn___1Hl1u {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 li .ant-radio-group___d8Wxx {
  width: 100%;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 li .font_style___3NWkp {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 li .input_number___2wKyx {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 li .input_number___2wKyx.minwidth___2Xe6Q {
  width: 60px !important;
}
.wrapper___3UlvG .center___3UL02 .control___1xFnP .model___38UR8 li .font_radio___3D6Ip {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.model_inactive___P5BNL {
  display: none!important;
}
.hide___3-e3J {
  display: none;
}
.show___32Hri {
  display: block;
}
.MyInput_item___2gnUE {
  width: 94%;
  text-align: center;
  margin: 18px auto 0;
}
.MyInput_item___2gnUE .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.MyInput_item___2gnUE .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.MyInput_item___2gnUE .ant-calendar-picker {
  width: 100% !important;
  min-width: 76px!important;
}
.MyInput_item___2gnUE .item_title___2hCiO {
  line-height: 1.5 !important;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.MyInput_item___2gnUE .item_content___1PwFE {
  display: -ms-flexbox;
  display: flex;
}
.MyInput_item___2gnUE .item_content___1PwFE input {
  text-align: center;
}
.MyInput_item___2gnUE .item_btns___1vVia {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.MyInput_item___2gnUE .item_btns___1vVia .smallBtn___2dPL_ {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.MyInput_item___2gnUE .item_btns___1vVia .smallBtn___2dPL_ span i {
  padding: 0 9px;
}
.MyInput_item___2gnUE .item_btns___1vVia .largeBtn___1N-PW {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.MyInput_item___2gnUE .ant-radio-group___3RrSn {
  width: 100%;
}
.MyInput_item___2gnUE .font_style___1AJcq {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.MyInput_item___2gnUE .input_number___1zgUi {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.MyInput_item___2gnUE .input_number___1zgUi.minwidth___2HrKn {
  width: 65px !important;
}
.MyInput_item___2gnUE .font_radio___k5wtY {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.input_minus___12TIn {
  height: 24px!important;
  min-width: 65px!important;
}
.input_minus___12TIn .ant-input-number {
  height: 24px!important;
  line-height: 24px!important;
}
.input_minus___12TIn .ant-input-number .ant-input-number-input {
  height: 24px!important;
}
.model_inactive___1AhcW {
  display: none!important;
}
.btn_del___x6cSe {
  cursor: pointer;
}
.box___14ZRs {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  min-width: 212px;
  margin-right: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
          box-shadow: 0px 0px 6px rgba(93, 100, 103, 0.16);
  border-radius: 3px;
  border: 1px solid transparent;
  position: relative;
}
.box___14ZRs .title___3DVjM {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px 3px 0 0;
  padding: 0 10px;
  height: 55px;
}
.box___14ZRs .title___3DVjM > div {
  height: 100%;
  padding: 0px 6px;
  border-bottom: 1px solid #eee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.box___14ZRs .title___3DVjM > div > span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-weight: 600;
}
.box___14ZRs .title___3DVjM > div > span.disabled___3rL4K button {
  background-color: #EBECED;
  color: #999999;
  padding: 7px 11px;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
}
.box___14ZRs .title___3DVjM > div > button {
  padding: 7px 11px;
  background-color: #EBF7FF;
  color: #20A4FC;
  font-size: 12px;
  border-radius: 3px;
  border: 0;
  font-weight: 500;
  outline: none;
  font-family: PingFang SC;
  cursor: pointer;
}
.box___14ZRs .title___3DVjM > div > button:hover {
  background-color: #D5EEFF;
}
.box___14ZRs .title___3DVjM > div > button.success___2NN3c {
  background-color: #EBFFFA;
  color: #12D8A3;
}
.box___14ZRs .title___3DVjM > div > button.disabled___3rL4K {
  background-color: #EBECED;
  color: #999999;
}
.box___14ZRs .more___3Maca {
  position: relative;
}
.box___14ZRs .more___3Maca .template___2s5jO {
  padding-top: 10px;
  padding-left: 10px;
}
.box___14ZRs .more___3Maca .main___-fhDX {
  display: none;
  width: 100%;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .ant-form-item {
  min-height: auto;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .has-error .ant-form-explain,
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .has-error .ant-form-split {
  padding: 6px 0px 0px 8px !important;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u {
  margin-top: 18px;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .item_title___a_g31 {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .item_content___1LYk4 {
  display: -ms-flexbox;
  display: flex;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .item_content___1LYk4 input {
  text-align: center;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .input_minus___1H7OP {
  height: 24px;
  min-width: 65px;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .input_minus___1H7OP .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .input_minus___1H7OP .ant-input-number .ant-input-number-input {
  height: 24px;
}
.box___14ZRs .more___3Maca .main___-fhDX .model___k8jX4 .item___15y6u .item_btns___3PHUy {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.box___14ZRs .more___3Maca .pull___14BQD {
  text-align: center;
  padding: 10px;
  margin: 0 10px;
  border-radius: 3px 3px 0 0;
  border-radius: 0 0 3px 3px;
}
.box___14ZRs .more___3Maca .pull___14BQD > span {
  font-size: 12px;
  cursor: pointer;
  color: #999;
}
.box___14ZRs .more___3Maca .pull___14BQD > span i {
  margin-left: 4px;
}
.box___14ZRs.active___2l3Nw {
  border-radius: 3px 3px 0 0;
}
.box___14ZRs.active___2l3Nw .more___3Maca > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  max-height: 300px!important;
  overflow-y: scroll!important;
  overflow-x: hidden;
}
.box___14ZRs.active___2l3Nw .title___3DVjM {
  border-bottom: 0;
}
.box___14ZRs.active___2l3Nw .more___3Maca > div {
  width: 100%;
  background-color: #fff;
}
.box___14ZRs.active___2l3Nw .more___3Maca > div .main___-fhDX {
  display: inline-block;
}
.box___14ZRs.active___2l3Nw .more___3Maca > div .pull___14BQD {
  border-top: 1px solid #eee;
}
.box___14ZRs.active___2l3Nw .more___3Maca > div .pull___14BQD i {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.box___14ZRs.children___PIvzu {
  height: 55px;
}
.box___14ZRs.children___PIvzu .title___3DVjM > div {
  border: 0 !important;
}
.box___14ZRs.children___PIvzu .more___3Maca .pull___14BQD {
  visibility: hidden;
}
.box___14ZRs .commonInputNumber___3radM {
  width: 80%;
  min-height: 40px !important;
  float: left;
}
.box___14ZRs.temp___2vun7 .more___3Maca > div {
  border-top: 0;
  border-radius: 0 0 3px 3px;
  max-height: 470px!important;
  overflow-y: hidden;
  overflow-x: hidden;
}
.box___14ZRs.temp___2vun7.active___2l3Nw {
  -ms-flex: 0 1 98%!important;
      flex: 0 1 98%!important;
}
.box___14ZRs.temp___2vun7.active___2l3Nw .ant-form-item___3cvoC {
  margin-bottom: 0 !important;
  min-height: 40px !important;
}
.box___14ZRs.temp___2vun7.active___2l3Nw .titleCommon___3QQJ8 {
  display: inline-block;
  margin: 10px;
}
.box___14ZRs.temp___2vun7.active___2l3Nw .col1___3LcPj {
  text-align: center;
  line-height: 40px;
}
.box___14ZRs.temp___2vun7.active___2l3Nw .title___3DVjM {
  width: 100%!important;
  margin: 0px !important;
}
.box___14ZRs .hide___wh9XH {
  display: none;
}
.box___14ZRs .show___1Fsr2 {
  display: block;
}
.wrapper___HW5Ac {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.wrapper___HW5Ac .page1___3hFfz {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-y: scroll;
  padding: 0;
  background: #f3f4f5;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE {
  height: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  margin: 20px;
  position: relative;
  padding: 40px;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .title___1_zOG {
  display: block;
  width: 126px;
  height: 25px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 25px;
  color: #333333;
  margin-bottom: 66px;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf {
  margin-bottom: 10px;
  border-bottom: 1px solid #f3f4f5;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .cascader___1nuGn {
  display: block;
  margin-bottom: 23px!important;
  margin-right: 20px;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .cascader___1nuGn input {
  height: 44px;
  line-height: 44px!important;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .select___1-IOZ {
  display: block;
  margin-bottom: 23px;
  margin-right: 20px;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .select___1-IOZ div {
  height: 44px!important;
  line-height: 44px;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .select___1-IOZ .ant-select-selection--single___Ci1fS {
  height: 44px!important;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .radio___2eQzt {
  display: block;
  margin-bottom: 25px;
  line-height: 44px;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .button___2SHTK {
  width: 85px;
  height: 44px;
  background: #ccd1d5;
  border-radius: 4px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .center___1S4Bf .button___2SHTK.active___3Hfac {
  background: -webkit-gradient(linear, left top, right top, from(#60c0ff), to(#1ba2fc));
  background: linear-gradient(90deg, #60c0ff 0%, #1ba2fc 100%);
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE .bottom___1q0Xl {
  width: 200px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #333333;
  position: absolute;
  bottom: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE :grobal .ant-select-selection___1UdLb {
  height: 44px!important;
}
.wrapper___HW5Ac .page1___3hFfz .form___3AtOE :grobal .ant-select-selection__rendered___22Y1N {
  line-height: 42px!important;
}
.wrapper___HW5Ac .page2___1bk5S .header___1SVr4 {
  height: 61px;
  line-height: 61px;
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___HW5Ac .page2___1bk5S .header___1SVr4 .left___1gZnI {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding-left: 22px;
}
.wrapper___HW5Ac .page2___1bk5S .header___1SVr4 .left___1gZnI .name___CvtU7 {
  height: 26px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 26px;
  color: #222222;
  margin-right: 30px;
}
.wrapper___HW5Ac .page2___1bk5S .header___1SVr4 .left___1gZnI .unitLabel___2RUoX {
  height: 26px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 26px;
  color: #666666;
  padding-right: 5px;
}
.wrapper___HW5Ac .page2___1bk5S .header___1SVr4 .left___1gZnI .unit___2YuyA {
  display: inline-block;
  width: 64px;
  height: 26px;
  line-height: 26px;
  background: #f0f2f4;
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-right: 5px;
  text-align: center;
}
.wrapper___HW5Ac .page2___1bk5S .header___1SVr4 .right___b7uCi {
  width: 100px;
  padding-right: 22px;
}
.wrapper___HW5Ac .page2___1bk5S .center___1S4Bf {
  padding: 22px;
  background: #f3f4f5;
  width: 100%;
  height: 100%;
  margin: 0px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
  background-color: white;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .multiControl___1odyH {
  padding-right: 20px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .deviceType___1N_GH {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #222222;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .main___1lvHn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .content___3DPOk {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .content___3DPOk .splitLine___2_brQ {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .modile___2HBYG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .top___qSWje {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .top___qSWje .cascader___1nuGn {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .top___qSWje .cascader___1nuGn .ant-cascader-input {
  height: 29px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .top___qSWje .headerButton___35esx {
  width: 80px;
  height: 29px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .top___qSWje label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .top___qSWje .deviceNum___2wpYq {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .title___1_zOG {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .title___1_zOG span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .title___1_zOG .btn_inactive___228VK {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .title___1_zOG .btn_inactive___228VK span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .title___1_zOG .btn_active___435-8 {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .title___1_zOG .btn_active___435-8 span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px {
  margin-top: 18px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_title___3gimr {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_content___1C3GO {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_content___1C3GO input {
  text-align: center;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .input_minus___TB2h_ {
  height: 24px;
  min-width: 65px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .input_minus___TB2h_ .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .input_minus___TB2h_ .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_btns___3SYjn {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_btns___3SYjn .smallBtn___2DFsJ {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_btns___3SYjn .smallBtn___2DFsJ span i {
  padding: 0 9px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk .item___2e-Px .item_btns___3SYjn .largeBtn___32Pki {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk li .ant-radio-group___32CBn {
  width: 100%;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk li .font_style___L-Lk2 {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk li .input_number___2G5iG {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk li .input_number___2G5iG.minwidth___2corg {
  width: 60px !important;
}
.wrapper___HW5Ac .page2___1bk5S .control___3vtUm .model___2GHQk li .font_radio___1Nlwt {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.wrapper___HW5Ac .hide___1NG2u {
  display: none;
}
.wrapper___HW5Ac .show___2ChsN {
  display: block;
}
.wrapper___HW5Ac .img___2gFa_ {
  width: 64px;
  margin: 0 auto;
  display: block;
}
.wrapper___HW5Ac .mbtitle___QMtb0 {
  display: block;
  margin: 29px 0px 7px 0px;
  text-align: center;
  width: 312px;
  height: 33px;
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 33px;
  color: #333333;
}
.wrapper___HW5Ac .mtitle___38bVY {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 197px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  opacity: 1;
}
.model_inactive___19r-M {
  display: none!important;
}
.editWrap___34rf9 {
  display: -ms-flexbox;
  display: flex ;
}
.editBtn___1Gd1K {
  margin-left: 10px;
}
.tableTitle___11sXt {
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  font-size: 16px;
}
.secCompileWrap___nlkPU {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #f6f6f6;
}
.editWrap___93_IU {
  display: -ms-flexbox;
  display: flex ;
}
.editBtn___21SWd {
  margin-left: 10px;
}
.tableTitle___1zV89 {
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  font-size: 16px;
}
.secCompileWrap___1Jn_W {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #f6f6f6;
  padding: 5px;
}
.rowsStyle___2fYV- {
  background-color: '#ffffff';
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.columnStyle___3gTHm {
  -ms-flex-direction: column;
      flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 10px;
}
.imgsStyle___2BE7R {
  width: '30px';
  margin-top: '20px';
  cursor: 'pointer';
}
.contentWrap___239Eu {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.videoWrap___Lp5LD {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  padding: 10px;
  -ms-flex-direction: column;
      flex-direction: column;
}
.errMsgWrap___1R-id {
  display: -ms-flexbox;
  display: flex ;
  -ms-flex: 3 1;
      flex: 3 1;
  padding: 10px;
  margin-top: 8px;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
}
.video___CKAfK {
  width: 100%;
  height: 420px;
  border: .5px solid #409eff;
}
.overviewTableWrap___1tv7h {
  -ms-flex: 1 1;
      flex: 1 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  overflow: hidden;
}
.titleWrap___36oxC {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.gradualLine_1___bBsdt {
  -ms-flex: 1 1;
      flex: 1 1;
  height: 1px;
  background-image: -webkit-gradient(linear, right top, left top, from(#fff), to(#163869));
  background-image: linear-gradient(to left, #fff, #163869);
}
.gradualLine_2___2CbTN {
  -ms-flex: 1 1;
      flex: 1 1;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#163869));
  background-image: linear-gradient(to right, #fff, #163869);
}
.gradualLine_full___3reZs {
  height: 1px;
  -ms-flex: 1 1;
      flex: 1 1;
  background: #024A97;
  margin: 5px 0;
}
.circleDiv___L2bP7 {
  width: 2px;
  height: 2px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 3px 0px #85c1ff, 0px -1px 0px 0px #85c1ff;
          box-shadow: 0px 0px 3px 0px #85c1ff, 0px -1px 0px 0px #85c1ff;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}
.title___3MmZr {
  padding: 5px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.flex_wrap___Mms84 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex_wrap___Mms84 .green_text___1A0o6 {
  color: #52c41a;
}
.flex_wrap___Mms84 .yellow_text___3sg8v {
  color: #ffbb00;
}
.flex_wrap___Mms84 .red_text___1c6K7 {
  color: #FF482B;
}
.green_text___1A0o6 {
  cursor: pointer;
  color: #52c41a;
}
.yellow_text___3sg8v {
  cursor: pointer;
  color: #ffbb00;
}
.red_text___1c6K7 {
  cursor: pointer;
  color: #FF482B;
}
.flex_wrap___Mms84 div {
  width: 40px;
  height: 40px;
  margin-top: 10px;
  text-align: center;
  line-height: 40px;
  color: #BFD4FF;
  background: #0e336d;
  -webkit-box-shadow: 0px 0px 5px 0px #25549f;
          box-shadow: 0px 0px 5px 0px #25549f;
}
.gray_text___2mXlF {
  color: #fff;
  font-size: 13px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 50%;
}
.title_text___3wG5y {
  height: 40px;
  line-height: 40px;
  color: #409EFF;
}
.primaryBtn___1cAxK {
  color: #fff;
  font-size: 13px;
  background: rgba(0, 118, 241, 0.31);
  -webkit-box-shadow: 0px 0px 5px 0px #5eadff;
          box-shadow: 0px 0px 5px 0px #5eadff;
  border-radius: 4px;
  border: 1px solid #409eff;
}
.primaryBtn___1cAxK span:hover {
  color: #000;
}
.com_table___3EV-t {
  margin-top: 5px;
}
.com_table___3EV-t table {
  font-size: 12px!important;
}
.tableWrap___2lQ5N {
  background: #022a61;
  opacity: 0.8;
  border: 1px solid #80aaff;
  overflow: hidden;
}
.drawerWrap___1ps6R .drawer_text___5OQ0t {
  height: 40px;
  line-height: 40px;
  color: #fff;
}
.drawerWrap___1ps6R .flex_wrap___Mms84 div {
  width: 10%;
}
.telescopic___3Frao,
.backTelescopic___1F7hq {
  position: absolute;
  top: 25%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 18px;
  height: 68px;
  background-color: #4870F3;
  z-index: 99;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
}
.telescopic___3Frao {
  right: 0;
}
.backTelescopic___1F7hq {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  right: -20px;
}
.wrapper___3slLq {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.wrapper___3slLq .page1___sBcA0 {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-y: scroll;
  padding: 0;
  background: #f3f4f5;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 {
  height: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  margin: 20px;
  position: relative;
  padding: 40px;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .title___2Vl-7 {
  display: block;
  width: 126px;
  height: 25px;
  font-size: 18px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 25px;
  color: #333333;
  margin-bottom: 66px;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw {
  margin-bottom: 10px;
  border-bottom: 1px solid #f3f4f5;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .cascader___3fqtB {
  display: block;
  margin-bottom: 23px!important;
  margin-right: 20px;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .cascader___3fqtB input {
  height: 44px;
  line-height: 44px!important;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .select___PhY37 {
  display: block;
  margin-bottom: 23px;
  margin-right: 20px;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .select___PhY37 div {
  height: 44px!important;
  line-height: 44px;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .select___PhY37 .ant-select-selection--single___1bcPf {
  height: 44px!important;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .radio___wD7nF {
  display: block;
  margin-bottom: 25px;
  line-height: 44px;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .button___29qpj {
  width: 85px;
  height: 44px;
  background: #ccd1d5;
  border-radius: 4px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .center___14zQw .button___29qpj.active___3n6Sa {
  background: -webkit-gradient(linear, left top, right top, from(#60c0ff), to(#1ba2fc));
  background: linear-gradient(90deg, #60c0ff 0%, #1ba2fc 100%);
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .bottom___1p8V- {
  width: 200px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #333333;
  position: absolute;
  bottom: 34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .button___29qpj {
  width: 85px;
  height: 44px;
  position: absolute;
  bottom: 34px;
  left: 40px;
  background: #ccd1d5;
  border-radius: 4px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #ffffff;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 .button___29qpj.active___3n6Sa {
  background: -webkit-gradient(linear, left top, right top, from(#60c0ff), to(#1ba2fc));
  background: linear-gradient(90deg, #60c0ff 0%, #1ba2fc 100%);
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 :grobal .ant-select-selection___1k6fR {
  height: 44px!important;
}
.wrapper___3slLq .page1___sBcA0 .form___2Lhq3 :grobal .ant-select-selection__rendered___77KfQ {
  line-height: 42px!important;
}
.wrapper___3slLq .page1___sBcA0 .units___2_RYi {
  max-height: 250px;
  overflow-y: scroll;
}
.wrapper___3slLq .page2___36Xfx .header___180w- {
  height: 61px;
  line-height: 61px;
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3slLq .page2___36Xfx .header___180w- .left___6NTE6 {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding-left: 22px;
}
.wrapper___3slLq .page2___36Xfx .header___180w- .left___6NTE6 .name___2gl3g {
  height: 26px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 26px;
  color: #222222;
  margin-right: 30px;
}
.wrapper___3slLq .page2___36Xfx .header___180w- .left___6NTE6 .unitLabel___2476f {
  height: 26px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 26px;
  color: #666666;
  padding-right: 5px;
}
.wrapper___3slLq .page2___36Xfx .header___180w- .left___6NTE6 .unit___1NM1J {
  display: inline-block;
  padding: 0px 5px;
  height: 26px;
  line-height: 26px;
  background: #f0f2f4;
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
  margin-right: 5px;
  text-align: center;
}
.wrapper___3slLq .page2___36Xfx .header___180w- .right___2bYTt {
  width: 100px;
  padding-right: 22px;
}
.wrapper___3slLq .page2___36Xfx .center___14zQw {
  padding: 22px;
  background: #f3f4f5;
  width: 100%;
  height: 100%;
  margin: 0px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- {
  padding: 20px 0 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
  background-color: white;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- h2 {
  font-size: 18px;
  color: #20A4FC;
  margin-bottom: 15px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .multiControl___2xqo0 {
  padding-right: 20px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .deviceType___1Cssi {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #222222;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .main___1iNyK {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .main___1iNyK .special___2Pkmn {
  -ms-flex: 0 1 17.6%;
      flex: 0 1 17.6%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .main___1iNyK .special___2Pkmn > div {
  width: 100%;
  max-width: 212px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .content___U9JYh {
  background: #f3f4f5;
  padding: 15px 15px 0px 15px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .content___U9JYh .splitLine___19wUQ {
  height: 50px;
  line-height: 50px;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eee;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .modile___3Gq1P {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.55);
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .top___Ttw6V {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .top___Ttw6V .cascader___3fqtB {
  width: 350px;
  margin-right: 25px;
  margin-left: 0;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .top___Ttw6V .cascader___3fqtB .ant-cascader-input {
  height: 29px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .top___Ttw6V .headerButton___PMpJg {
  width: 80px;
  height: 29px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .top___Ttw6V label {
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 20px;
  color: #333333;
  opacity: 1;
  margin-left: 20px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .top___Ttw6V .deviceNum___jisEI {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO {
  width: 100%;
  padding-bottom: 20px;
  padding: 0 7px;
  background: #ffffff;
  opacity: 1;
  float: left;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .title___2Vl-7 {
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  line-height: 56px;
  border-bottom: 1px solid #eeeeee;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .title___2Vl-7 span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 4 1;
      flex: 4 1;
  color: #333333;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .title___2Vl-7 .btn_inactive___iLk1h {
  width: 70px;
  height: 30px;
  margin-top: 13px;
  float: right;
  background: #c6c6c6;
  border-radius: 3px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .title___2Vl-7 .btn_inactive___iLk1h span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #ffffff;
  opacity: 1;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .title___2Vl-7 .btn_active___vCN-D {
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #ebf7ff;
  border-radius: 3px;
  margin-top: 13px;
  padding: 0 -1px !important;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .title___2Vl-7 .btn_active___vCN-D span {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 17px;
  color: #20a4fc;
  opacity: 1;
  margin: 0;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux {
  margin-top: 18px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .ant-radio-wrapper {
  font-size: 12px;
  margin-bottom: 5px;
  color: #333;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .ant-radio-wrapper .ant-radio {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .ant-calendar-picker {
  width: 100% !important;
  min-width: 65px!important;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_title___8ZS_f {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
  padding-bottom: 4px;
  text-align: left;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_content___2hroP {
  display: -ms-flexbox;
  display: flex;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_content___2hroP input {
  text-align: center;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .input_minus___1YR1t {
  height: 24px;
  min-width: 65px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .input_minus___1YR1t .ant-input-number {
  height: 24px;
  line-height: 24px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .input_minus___1YR1t .ant-input-number .ant-input-number-input {
  height: 24px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_btns___Xx4aM {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  border-radius: 2px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_btns___Xx4aM .smallBtn___2Ualn {
  width: 35px;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  background: #f9f9f9;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 0px !important;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_btns___Xx4aM .smallBtn___2Ualn span i {
  padding: 0 9px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO .item___3H2ux .item_btns___Xx4aM .largeBtn___32vh1 {
  height: 30px;
  -ms-flex: 1 1;
      flex: 1 1;
  border: right 0;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO li {
  width: 94%;
  text-align: center;
  margin: 0 auto;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO li .ant-radio-group___2gJS_ {
  width: 100%;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO li .font_style___2OInd {
  font-size: 12px;
  display: inline-block;
  font-family: 'PingFang SC';
  font-weight: 400;
  line-height: 17px;
  color: #999999;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO li .input_number___I01yy {
  margin: 0 6px;
  display: inline-block;
  width: 90px !important;
  font-size: 12px !important;
  height: 30px !important;
  border: 1px solid #dddddd;
  opacity: 1;
  border-radius: 2px;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO li .input_number___I01yy.minwidth___i17i5 {
  width: 60px !important;
}
.wrapper___3slLq .page2___36Xfx .control___P7w5- .model___1FkZO li .font_radio___11KGL {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.wrapper___3slLq .hide___3xa2B {
  display: none;
}
.wrapper___3slLq .show___yEb6L {
  display: block;
}
.wrapper___3slLq .img___XpCPN {
  width: 64px;
  margin: 0 auto;
  display: block;
}
.wrapper___3slLq .mbtitle___KBNpz {
  display: block;
  margin: 29px 0px 7px 0px;
  text-align: center;
  width: 312px;
  height: 33px;
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 500;
  line-height: 33px;
  color: #333333;
}
.wrapper___3slLq .mtitle___1uVZ0 {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 197px;
  height: 20px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #666666;
  opacity: 1;
}
.model_inactive___Olu_R {
  display: none!important;
}
.nav___3D75P {
  height: 60px;
  padding-top: 14px;
  padding-left: 20px;
}
.page___1dMdZ .btn___3cLek {
  margin-right: 20px;
}
.page___1dMdZ .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.blockCor___2f0KV {
  height: 10px;
  width: 100%;
  background-color: #f6f6f6 ;
}
.itemsCont___csUuA {
  padding: 20px;
}
.boxItem___24L3Q {
  width: 100%;
  height: 315px;
  background: #fdfeff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.boxItem___24L3Q:hover {
  background: #fdfeff;
  border: 1px solid #e8ecf4;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 20px 0px;
          box-shadow: 0px 4px 20px 0px;
}
.boxItem___24L3Q .img1___2S108 {
  width: 100%;
  height: 165px;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.boxItem___24L3Q .img2___1o3fv {
  max-width: 400px;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
.boxItem___24L3Q p {
  font-size: 12px;
  color: #768BAC;
  margin: 0;
  margin-bottom: 6px;
  padding: 0 15px;
}
.boxItem___24L3Q .boxItem_title___3Mbnk {
  font-weight: 600;
  margin-top: 8px;
}
.boxItem___24L3Q .boxItem_title___3Mbnk i {
  font-size: 12px;
}
.boxItem___24L3Q .boxItem_btn___1jyWI {
  margin-top: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.boxItem___24L3Q .examine___2mrfY {
  display: block;
  width: 68px;
  height: 58px;
  position: absolute;
  bottom: 50px;
  right: 12px;
}
.boxItem___24L3Q .remarks___2vElz {
  width: 100%;
  line-height: 40px;
  font-size: 14px;
  color: #1890FF;
  background: #f7faff;
  border-radius: 0px 0px 4px 4px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.offline___1DOV0 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
.offline___1DOV0 p {
  margin-top: 10px;
}
.itemCont___1rTTG {
  padding: 0 15px;
}
.modelImgcont___1Dd71 {
  width: 100%;
}
.modelImg___2G0mV {
  width: 600px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 20px auto 0;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-collapse {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  background-color: #fafafa;
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px;
}
.ant-collapse > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse > .ant-collapse-item:last-child,
.ant-collapse > .ant-collapse-item:last-child > .ant-collapse-header {
  border-radius: 0 0 4px 4px;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header {
  position: relative;
  padding: 12px 16px;
  padding-left: 40px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 22px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 16px;
  display: inline-block;
  font-size: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow > * {
  line-height: 1;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  display: inline-block;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow::before {
  display: none;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow-icon {
  display: block;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow svg {
  -webkit-transition: -webkit-transform 0.24s;
  transition: -webkit-transform 0.24s;
  transition: transform 0.24s;
  transition: transform 0.24s, -webkit-transform 0.24s;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-extra {
  float: right;
}
.ant-collapse > .ant-collapse-item > .ant-collapse-header:focus {
  outline: none;
}
.ant-collapse > .ant-collapse-item.ant-collapse-no-arrow > .ant-collapse-header {
  padding-left: 12px;
}
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header {
  padding: 12px 16px;
  padding-right: 40px;
}
.ant-collapse-icon-position-right > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  right: 16px;
  left: auto;
}
.ant-collapse-anim-active {
  -webkit-transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.ant-collapse-content {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.65);
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
}
.ant-collapse-content > .ant-collapse-content-box {
  padding: 16px;
}
.ant-collapse-content-inactive {
  display: none;
}
.ant-collapse-item:last-child > .ant-collapse-content {
  border-radius: 0 0 4px 4px;
}
.ant-collapse-borderless {
  background-color: #fafafa;
  border: 0;
}
.ant-collapse-borderless > .ant-collapse-item {
  border-bottom: 1px solid #d9d9d9;
}
.ant-collapse-borderless > .ant-collapse-item:last-child,
.ant-collapse-borderless > .ant-collapse-item:last-child .ant-collapse-header {
  border-radius: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content {
  background-color: transparent;
  border-top: 0;
}
.ant-collapse-borderless > .ant-collapse-item > .ant-collapse-content > .ant-collapse-content-box {
  padding-top: 4px;
}
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header,
.ant-collapse .ant-collapse-item-disabled > .ant-collapse-header > .arrow {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.container___3lk2v .header___3WjCu {
  margin: 20px 32px;
}
.container___3lk2v .header___3WjCu .title___qhw8g {
  text-align: left;
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #313233;
}
.container___3lk2v .header___3WjCu .tree___3-nqY {
  text-align: right;
}
.container___3lk2v .header___3WjCu .info___QZmTg {
  height: 32px;
  display: inline-block;
  padding-right: 10px;
  float: right;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  color: #686c6c;
  line-height: 32px;
}
.container___3lk2v .header___3WjCu .info___QZmTg .number___2OD4x {
  padding-left: 10px;
}
.container___3lk2v .header___3WjCu .info___QZmTg .line___2gkB0 {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 10px;
  border-right: 1px dotted #E0E0E0;
}
.container___3lk2v .center___376dW {
  margin: 0px 32px 0px 0px;
}
.container___3lk2v .center___376dW .collapse___3EyWP {
  margin: 0px 0px 20px 32px;
}
.container___3lk2v .center___376dW .collapse___3EyWP .more___33Yok {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.container___3lk2v .center___376dW .collapse___3EyWP .more___33Yok:hover {
  cursor: pointer;
}
.container___3lk2v .center___376dW .collapse___3EyWP .more___33Yok i {
  padding-left: 5px;
}
.container___3lk2v .center___376dW .collapse___3EyWP .nodata___2eP__ {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.container___3lk2v .center___376dW .collapse___3EyWP img {
  width: 16px;
  margin-right: 5px;
}
.container___3lk2v .center___376dW .collapse___3EyWP .ant-col {
  padding: 10px 0px;
}
.container___3lk2v .center___376dW .collapse___3EyWP .ant-collapse-content > .ant-collapse-content-box {
  padding: 16px 0px;
}
.container___3lk2v .center___376dW .collapse___3EyWP .offlineFields___1X7fJ {
  text-align: center;
  padding: 0px 15px;
}
.container___3lk2v .center___376dW .collapse___3EyWP .offlineFields___1X7fJ .title___qhw8g {
  background-color: #fafafa;
  font-size: 14px;
  color: #686c6c;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  padding: 5px 0px;
  width: 90%;
  margin: 0 auto;
}
.container___3lk2v .center___376dW .collapse___3EyWP .offlineFields___1X7fJ .time___3R_SY {
  background-color: #fafafa;
  font-family: PingFangSC-Regular, PingFangSC;
  font-size: 12px;
  padding-bottom: 5px;
  width: 90%;
  margin: 0 auto;
}
.container___3qvyL .header___1lDX0 {
  margin: 20px 32px;
}
.container___3qvyL .header___1lDX0 .title___1YhLR {
  text-align: left;
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #313233;
}
.container___3qvyL .header___1lDX0 .tree___15FFn {
  text-align: right;
}
.container___3qvyL .header___1lDX0 .info___1yuQ6 {
  height: 32px;
  display: inline-block;
  padding-right: 10px;
  float: right;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  color: #686c6c;
  line-height: 32px;
}
.container___3qvyL .header___1lDX0 .info___1yuQ6 .number___esArz {
  padding-left: 10px;
}
.container___3qvyL .header___1lDX0 .info___1yuQ6 .line___2gNFC {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 10px;
  border-right: 1px dotted #E0E0E0;
}
.container___3qvyL .center___3rNJx {
  margin: 0px 32px 0px 0px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx {
  margin: 0px 0px 20px 32px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .more___1y3dY {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .more___1y3dY:hover {
  cursor: pointer;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .more___1y3dY i {
  padding-left: 5px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .nodata___BhoYI {
  text-align: center;
  color: rgba(0, 0, 0, 0.85);
}
.container___3qvyL .center___3rNJx .collapse___Lefqx img {
  width: 16px;
  margin-right: 5px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .ant-col {
  padding: 10px 0px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .ant-collapse-content > .ant-collapse-content-box {
  padding: 16px 0px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .offlineFields___3gS71 {
  text-align: center;
  padding: 0px 15px;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .offlineFields___3gS71 .title___1YhLR {
  background-color: #fafafa;
  font-size: 14px;
  color: #686c6c;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  padding: 5px 0px;
  width: 90%;
  margin: 0 auto;
}
.container___3qvyL .center___3rNJx .collapse___Lefqx .offlineFields___3gS71 .time___2g2X2 {
  background-color: #fafafa;
  font-family: PingFangSC-Regular, PingFangSC;
  font-size: 12px;
  padding-bottom: 5px;
  width: 90%;
  margin: 0 auto;
}
.container___Maa0f .header___VWd_d {
  margin: 20px 32px;
}
.container___Maa0f .header___VWd_d .title___2cvxt {
  text-align: left;
  font-size: 16px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #313233;
}
.container___Maa0f .header___VWd_d .tree___WjPFx {
  text-align: right;
}
.container___Maa0f .header___VWd_d .info___2bN1c {
  height: 32px;
  display: inline-block;
  padding-right: 10px;
  float: right;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 600;
  color: #686c6c;
  line-height: 32px;
}
.container___Maa0f .header___VWd_d .info___2bN1c .number___1GukD {
  padding-left: 10px;
}
.container___Maa0f .header___VWd_d .info___2bN1c .line___2LDQq {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 10px;
  border-right: 1px dotted #E0E0E0;
}
body .container___3zR9V .header___17fmJ {
  margin: 20px;
  display: -ms-flexbox;
  display: flex;
}
body .container___3zR9V .header___17fmJ .button___3hSqj {
  width: 80px;
  height: 29px;
  margin-left: 15px;
}
body .container___3zR9V .center___11j8u .items___24zMy {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
body .container___3zR9V .center___11j8u .items___24zMy .item___3VAkI {
  width: 60px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  background-color: #1890ff;
  color: white;
  font-size: 16px;
  border-radius: 2px 0px 0px 2px;
}
body .container___3zR9V .center___11j8u .chart___tDOBo {
  margin: 0 auto;
}
body .container___3zR9V .center___11j8u .chartButton___3ZTif {
  width: 120px;
  margin: 0 auto;
}
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-prev-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-next-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: '';
}
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  content: '';
}
body .ant-btn :hover {
  background-color: #1890ff!important;
  z-index: 999;
}
body .btn_blue___1Fkx9 {
  z-index: 999;
  position: absolute;
  right: 32px;
  background-color: #1890ff;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
body .btn_blue___1Fkx9:hover {
  z-index: 999;
  color: #ffffff!important;
  background-color: #1890ff!important;
}
.container___1zlJL .header___2k3At {
  margin: 20px 32px;
  display: -ms-flexbox;
  display: flex;
}
.container___1zlJL .header___2k3At .item___1w7FA {
  display: inline-block;
  margin-top: 10px;
}
.container___1zlJL .header___2k3At .item___1w7FA .label___1j3yd {
  display: inline-block;
  width: 60px;
}
.container___1zlJL .header___2k3At .item___1w7FA .button___CDXRQ {
  width: 80px;
  height: 29px;
  margin-left: 15px;
  color: #fff;
  background-color: #1890ff;
  border-color: #1890ff;
}
.container___1zlJL .center___4nHOM {
  padding: 0px 32px;
  height: calc(100vh - 340px);
}
.page___EqJ4O .btn___3hjhx {
  margin-right: 20px;
}
.page___EqJ4O .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___k1HCx {
  display: none;
}
.outputDiv___30Vig {
  width: 960;
  height: 540;
}
.mapWrap___ZZ3sg {
  width: 1000px;
  height: 400px;
  border: 1px solid #ccc;
}
.absoluteCenter___1WIOX {
  display: -ms-flexbox;
  display: flex ;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.returnBtn___7vp2B {
  position: absolute;
  border: none ;
  z-index: 10 ;
  top: 100px;
  opacity: .8;
  left: 150px;
}
.fullScreenBtn___2L7xW {
  position: absolute;
  border: none ;
  z-index: 10 ;
  top: 100px;
  opacity: .8;
  left: 30px;
}
.formBorder_none___vKrEk {
  border: none ;
}
.blue_circle___1vCqs {
  width: 12px ;
  height: 12px ;
  border-radius: 100%;
  background: lightskyblue;
}
.area_rec___2qAmb {
  height: 10px;
  width: 15px;
  background: #7fffff;
}
.triangle___11wR4 {
  width: 0px;
  /*设置宽高为0，所以div的内容为空，从才能形成三角形尖角*/
  height: 0px;
  border-bottom: 12px solid #CACBCC;
  border-left: 6px solid transparent;
  /*transparent 表示透明*/
  border-right: 6px solid transparent;
}
.mapOverView___1M-x7 {
  position: relative;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  cursor: auto;
  color: #999;
  height: 600px;
  text-align: center;
  width: 90%;
  margin-bottom: 10px;
  -ms-flex: 1 1;
      flex: 1 1;
  line-height: 600px;
}
.horizon_layout___3ChUv {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.editWrap___2TJL1 {
  display: -ms-flexbox;
  display: flex ;
}
.editBtn___1tkGv {
  margin-left: 10px;
}
.tableTitle___1vyTv {
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  font-size: 16px;
}
.secCompileWrap___2OGLf {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #f6f6f6;
}
.editWrap___1Vtuw {
  display: -ms-flexbox;
  display: flex ;
}
.editBtn___25XAd {
  margin-left: 10px;
}
.secCompileWrap___3zBQW {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #f6f6f6;
}
.tableTitle___2jWyA {
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  font-size: 16px;
}
.editWrap___2B3bG {
  display: -ms-flexbox;
  display: flex ;
}
.editBtn___dulAw {
  margin-left: 10px;
}
.secCompileWrap___Gmqdh {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #f6f6f6;
}
.tableTitle___2peCK {
  height: 60px;
  line-height: 60px;
  font-weight: 600;
  font-size: 16px;
}
.ctxmenu___XgMo1 {
  display: none;
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 8px 0;
  z-index: 999;
  -webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
  list-style: none;
  background-color: #ffffff;
  border-radius: 4px;
}
.menu_item___1VKmq {
  display: block;
  position: relative;
  min-width: 60px;
  margin: 0;
  padding: 6px 16px;
  font: bold 12px sans-serif;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
}
.menu_item___1VKmq::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.menu_item___1VKmq:hover::before {
  opacity: .04;
}
.menu___1OU19 .menu___1OU19 {
  top: -8px;
  left: 100%;
}
.contentWrap___17IXi {
  position: relative;
}
.myLinkDiagramDiv___1ZVGY {
  height: 580px;
}
.myLinkPaletteDiv___25s6n {
  height: 60px;
  width: 100px;
  z-index: 100;
  margin-top: 10px;
}
.buttonMap___1NYJX {
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -ms-flex-align: center;
      align-items: center;
  width: 100px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.horizon_layout___OXpsY {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.selectShopList___2m87f {
  width: 100px;
}
.selectShopList___2m87f .layui-select-title___2pBFk input {
  height: 30px;
}
.chosenAreaWrap___2f8Sv {
  position: fixed;
  height: 70px;
  background: rgba(29, 129, 59, 0.3);
  width: 200px;
  border-radius: 10px;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.handleCircuitWrap___x0KWs {
  position: fixed;
  height: 150px;
  background: rgba(29, 129, 59, 0.3);
  width: 130px;
  border-radius: 10px;
  z-index: 100;
  display: -ms-flexbox;
  display: flex;
  right: 10px;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
}
.layui-layer-content___3DAJY {
  overflow: unset!important;
  overflow-y: unset!important ;
}
.page___3ELpD .btn___3JH8B {
  margin-right: 20px;
}
.page___3ELpD .progress___2LKNc {
  display: -ms-flexbox;
  display: flex;
  height: 66px;
  line-height: 66px;
  margin: 0px 32px;
  border-bottom: 1px solid #e8e8e8;
}
.page___3ELpD .progress___2LKNc .left___31fSe {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
}
.page___3ELpD .progress___2LKNc .left___31fSe .span1___3Alj8 {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-right: 10px;
}
.page___3ELpD .progress___2LKNc .left___31fSe > div {
  width: 60%!important;
  line-height: 66px!important;
}
.page___3ELpD .progress___2LKNc .left___31fSe :grobal .ant-progress-line___35tXZ {
  width: 60%!important;
  line-height: 66px!important;
}
.page___3ELpD .progress___2LKNc .right___2lBY4 {
  width: 183px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #666666;
}
.page___3ELpD .record___1emtw {
  height: 44px;
  line-height: 66px;
  padding: 0px 32px;
}
.page___3ELpD .table___2evB0 > div > div:nth-of-type(1) {
  background-color: white;
  height: 0px;
}
.page___3ELpD .table___2evB0 table thead tr {
  background-color: #FAFAFA!important;
  height: 44px!important;
}
.page___3ELpD .modelTable___2u8TR {
  margin-top: 50px;
  width: 750px;
}
.page___3ELpD .modelTable___2u8TR tr {
  height: 44px!important;
}
.page___3ELpD .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.orangeColor___2M2vA {
  color: #007acc;
}
.globalTableLink___1k5CO {
  color: #76b1cb;
}
.previewContent___2kBnX .ant-carousel {
  width: 100%;
}
.previewContent___2kBnX .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2kBnX .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2kBnX .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2kBnX .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2kBnX .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.main___2P04M {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 15px 32px;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
}
.main___2P04M .formItem___wiF8J {
  margin-right: 14px;
  min-height: 46px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.main___2P04M .formItem___wiF8J .ant-form-item-control-wrapper {
  width: 100%;
}
.main___2P04M .formItem___wiF8J .ant-form-item-control-wrapper .ant-form-item-control {
  width: 100%;
}
.main___2P04M .formItem___wiF8J .ant-form-item-control-wrapper .ant-form-item-control .ant-form-item-children {
  width: 100%;
}
.main___2P04M .searchButton___3sEcJ {
  -ms-flex: 0 0 140px;
      flex: 0 0 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-left: auto;
}
.main___2P04M .searchButton___3sEcJ .button___38x_U {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.main___2P04M .searchButton___3sEcJ .button___38x_U:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.task_serch___AfHzl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.task_serch_items___C8Ezx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.task_serch_item___1uD_m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  margin-right: 15px;
}
.task_serch_item___1uD_m p {
  margin: 0 0;
  color: #fff;
  padding-right: 5px;
}
.modal_cont___2yfAJ {
  height: 60%;
  overflow: auto;
}
.text_auto___2TH6p {
  height: 250px;
  overflow: auto;
}
.task_btn___3_vZP {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.task_btn___3_vZP a {
  display: block;
  margin: 0 3px;
}
.mr___1eozV {
  margin-right: 10px;
}
.detail___1MNy7 {
  line-height: 35px;
}
.line___33qYX {
  border-top: 2px solid #aaa;
}
.editNav___3i5Uv {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.cont___2nlYi {
  padding-top: 10px;
  background: #f1f3fa;
}
.cont___2nlYi .content___33R2x {
  background: #fff;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cont___2nlYi .navtit___1dmE_ {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.cont___2nlYi .mr___1eozV {
  margin: 0 5px;
}
.modelTit___22cvr {
  background: #ddd;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
}
.heightModel___2sddo {
  max-height: 700px;
  overflow: auto;
}
.seeForm___-MAtW {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.seeForm___-MAtW .label___2bdJY {
  width: 120px;
}
.bindCont___6ffeG {
  min-height: 450px;
  margin-bottom: 20px;
  overflow: auto;
}
.bindCont___6ffeG .flex___2qlA5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 5px;
}
.bindCont___6ffeG .flex___2qlA5 p {
  margin: 0;
}
.bindCont___6ffeG > div:nth-child(2) > div:nth-child(1) {
  height: 0px !important;
}
.bindCont___6ffeG > div:nth-child(2) > div:nth-child(2) {
  padding: 0px !important;
}
.bindCont___6ffeG .ant-cascader-input.ant-input {
  height: 32px!important;
}
.addEq___1pUXv {
  margin-top: 20px;
  border-top: 6px solid #ddd;
}
.addEq___1pUXv .addEq_tit___3PuBT {
  font-size: 18px;
  font-weight: bold;
  line-height: 45px;
}
.orangeColor___KESi5 {
  color: #007acc;
}
.globalTableLink___3DNxq {
  color: #76b1cb;
}
.previewContent___Mpy8b .ant-carousel {
  width: 100%;
}
.previewContent___Mpy8b .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___Mpy8b .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___Mpy8b .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___Mpy8b .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___Mpy8b .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___2XbSB {
  width: 100%;
}
.titleWrap___2XbSB .mainTitle___2WZmf {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2XbSB .mainTitle___2WZmf li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2XbSB .mainTitle___2WZmf .titleItem___1LoKX {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.titleWrap___2XbSB .mainTitle___2WZmf .titleItem1___tmksb {
  text-indent: 6px;
  border-left: 4px solid #29aae8;
}
.contentWrap___MrELs {
  width: 100%;
}
.contentWrap___MrELs .mainContent___DQHbD {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___MrELs .mainContent___DQHbD li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___3JGQB {
  width: 100%;
}
.formWrap___3JGQB .buttonRow___HCZeK {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3JGQB .buttonRow___HCZeK .submitBtn___hAIRT {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___3JGQB .buttonRow___HCZeK .submitBtn___hAIRT:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___3JGQB .ant-form-item {
  min-height: 60px !important;
}
.formWrap___3JGQB .add___2GOoM {
  position: relative;
}
.formWrap___3JGQB .addBtn___1FkDx {
  position: absolute;
  right: 25px;
  top: 4px;
}
.formWrap___3JGQB .addShow___37t8G {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0 20%;
  font-size: 12px;
  color: #666;
  height: 26px;
  -ms-flex-align: center;
      align-items: center;
}
.page___3z9yS .btn___wKZr7 {
  margin-right: 20px;
}
.page___3z9yS .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.ant-table-thead___2E0cV > tr:first-of-type th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.orangeColor___z3ZHw {
  color: #007acc;
}
.globalTableLink___3q6lS {
  color: #76b1cb;
}
.previewContent___3RQ0K .ant-carousel {
  width: 100%;
}
.previewContent___3RQ0K .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3RQ0K .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3RQ0K .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3RQ0K .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3RQ0K .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-content {
  border: 0;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -13px;
}
.prepTable___3qCWx .globalTable___ggfES table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___3qCWx .globalTable___ggfES .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___3qCWx .globalTable___ggfES table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___3qCWx .globalTable___ggfES table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___3qCWx .globalTable___ggfES table td span .anticon {
  color: #8ccad9;
}
.prepTable___3qCWx .globalTable___ggfES table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___3qCWx .globalTable___ggfES .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___3qCWx .globalTable___ggfES .ant-table-column-sorter .anticon-caret-up,
.prepTable___3qCWx .globalTable___ggfES .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___3qCWx .globalTable___ggfES i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___3qCWx .childTable___2IWtH .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___3qCWx .grayItem___11LTW {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___3qCWx .operationWrap___267k4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.prepTable___3qCWx .operationWrap___267k4 > div {
  display: -ms-flexbox;
  display: flex;
}
.prepTable___3qCWx .operationWrap___267k4 a {
  padding: 0 10px;
  min-width: 50px;
  border-right: 1px solid #ccc;
}
.prepTable___3qCWx .operationWrap___267k4 a:last-child {
  border-right: 0;
}
.prepTable___3qCWx .operationWrap___267k4 .localText___3ah0x {
  color: #40c8a5;
}
.prepTable___3qCWx .lineWrap___3Wibg {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___3qCWx .lineWrap___3Wibg span {
  color: #333;
  padding-right: 20px;
}
.prepTable___3qCWx .disabledText___b_sKv {
  color: #666;
  cursor: not-allowed;
}
.prepTable___3qCWx .titleWrap___XJGjm {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___3qCWx .titleWrap___XJGjm .iconWrap___2FB6x {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___3qCWx .titleWrap___XJGjm .iconWrap___2FB6x .sorterActive___LykeX {
  color: #1890ff;
}
.prepTable___3qCWx .titleWrap___XJGjm .iconWrap___2FB6x i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___3qCWx .titleWrap___XJGjm .iconWrap___2FB6x i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___3qCWx .btns___1HVb7 {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___3qCWx .btnsLeft___2Fbrq button {
  margin-right: 20px;
}
.prepTable___3qCWx .btnsRight___1V_vI button {
  margin-left: 20px;
}
.prepTable___3qCWx .baseBtn___4HtIh {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___3qCWx .baseBtn___4HtIh:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___3qCWx .globalBtn___3DZEo {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___3qCWx .globalBtn___3DZEo:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.gray___36gmn {
  color: gray;
  cursor: auto;
}
.steps_content___2rvui {
  margin-top: 16px;
  border: 1px dashed #e9e9e9;
  border-radius: 6px;
  background-color: #fafafa;
  min-height: 200px;
  padding: 20px;
}
.steps_content___2rvui .firstPage___1cjYs .search___35t6N {
  margin: 20px 0px;
}
.steps_content___2rvui .firstPage___1cjYs .search___35t6N .item___cRoEf {
  margin-bottom: 10px;
}
.steps_content___2rvui .firstPage___1cjYs .search___35t6N .item___cRoEf .label___2aLpG {
  display: inline-block;
  width: 70px;
}
.steps_content___2rvui .firstPage___1cjYs .baseInfo___2E0ju {
  border: 1px solid #33333314;
  padding: 20px;
  border-radius: 6px;
}
.steps_content___2rvui .firstPage___1cjYs .baseInfo___2E0ju .title___Fqexi {
  color: rgba(0, 0, 0, 0.85);
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  border-bottom: 1px solid #33333324;
  margin-bottom: 10px;
}
.steps_content___2rvui .firstPage___1cjYs .baseInfo___2E0ju .ant-row .ant-col {
  height: 32px;
  line-height: 32px;
}
.steps_content___2rvui .firstPage___1cjYs .baseInfo___2E0ju .ant-row .ant-col span:nth-child(2) {
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.85);
}
.steps_action___3mWu2 {
  text-align: center;
}
.steps_action___3mWu2 button {
  margin: 20px;
}
.hide___1rkT1 {
  display: none;
}
.readModal___268RJ .ant-modal-body {
  padding-top: 0;
}
.readTabs___2KAFm .ant-table-wrapper {
  margin: 0 !important;
}
.readTabs___2KAFm .ant-tabs-nav-container {
  margin-bottom: 10px;
}
.readTabs___2KAFm .ant-tabs-bar {
  border: 0;
}
.readTabs___2KAFm .ant-tabs-nav-scroll {
  display: -ms-flexbox !important;
  display: flex !important;
}
.readTabs___2KAFm .ant-tabs-nav,
.readTabs___2KAFm .ant-tabs-nav-animated {
  margin: 0 auto;
}
.readTabs___2KAFm .ant-table-thead > tr th:nth-of-type(1),
.readTabs___2KAFm .ant-table-tbody > tr td:nth-of-type(1) {
  border-left: 0 !important;
}
.readTabs___2KAFm .ant-table-thead > tr th:nth-last-of-type(1),
.readTabs___2KAFm .ant-table-tbody > tr td:nth-last-of-type(1) {
  border-right: 0 !important;
}
.readTabs___2KAFm .ant-table-thead > tr:first-child > th:first-child {
  border-top-left-radius: 0;
}
.readTabs___2KAFm .ant-table-thead > tr:first-child > th:last-child {
  border-top-right-radius: 0;
}
.titleWrap___3tfSm {
  width: 100%;
}
.titleWrap___3tfSm .mainTitle___Veb8X {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin-bottom: 0px;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___3tfSm .mainTitle___Veb8X li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___3tfSm .mainTitle___Veb8X .titleItem___3IdJk {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.taskManageModal___1eFgv .title___1Xh28 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}
.taskManageModal___1eFgv .btns___34Bca {
  text-align: center;
}
.taskManageModal___1eFgv .formWrap___1wZ66 {
  width: 100%;
}
.taskManageModal___1eFgv .formWrap___1wZ66 .buttonRow___1RgRg {
  text-align: center;
  margin-top: 10px;
}
.taskManageModal___1eFgv .formWrap___1wZ66 .ant-form-item {
  min-height: 60px !important;
}
.taskManageModal___1eFgv .ant-radio-group {
  width: 70% !important;
  margin: 0 auto !important;
  display: block !important;
  margin-bottom: 20px !important;
}
.taskManageModal___1eFgv .ant-radio-wrapper {
  width: 33.3%;
  margin-right: 0px!important;
  height: 40px;
  line-height: 40px;
}
.reset___1RhQR .ant-radio-group {
  margin: 0 !important;
  width: 60% !important;
}
.orangeColor___22b23 {
  color: #007acc;
}
.globalTableLink___FC7tZ {
  color: #76b1cb;
}
.previewContent___3LMvJ .ant-carousel {
  width: 100%;
}
.previewContent___3LMvJ .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3LMvJ .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3LMvJ .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3LMvJ .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3LMvJ .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___1L6tP {
  width: 100%;
}
.titleWrap___1L6tP .mainTitle___2CLm2 {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1L6tP .mainTitle___2CLm2 li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1L6tP .mainTitle___2CLm2 .titleItem___YQZC7 {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___32JFy {
  width: 100%;
}
.contentWrap___32JFy .mainContent___ONTcM {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___32JFy .mainContent___ONTcM li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___1WVxE {
  width: 100%;
}
.formWrap___1WVxE .buttonRow___2BvyJ {
  text-align: center;
  margin-top: 10px;
}
.formWrap___1WVxE .buttonRow___2BvyJ .submitBtn___LgQ3D {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___1WVxE .buttonRow___2BvyJ .submitBtn___LgQ3D:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___1WVxE .ant-form-item {
  min-height: 60px !important;
}
.page___2X5Rd .btn___3SCE0 {
  margin-right: 20px;
}
.page___2X5Rd .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.tit___2qGVJ {
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: #29aae8;
}
.tit___2qGVJ .titname___1QsmV {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
  margin-right: 40px;
}
.page___246kl .btn___1IWto {
  margin-right: 20px;
}
.page___246kl .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___1FotB {
  display: none;
}
.outputDiv___1zDgC {
  width: 960;
  height: 540;
}
.wareBtnWrap___3SoTL {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}
.page___IRHYe .btn___13zmv {
  margin-right: 20px;
}
.page___IRHYe .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___1pKJX {
  display: none;
}
.outputDiv___1iFwX {
  width: 960;
  height: 540;
}
.page___1KrGT .btn___14jyC {
  margin-right: 20px;
}
.page___1KrGT .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___3QBDN {
  display: none;
}
.outputDiv___1g295 {
  width: 960;
  height: 540;
}
.wareBtnWrap___buDPv {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
}
.page___OeYY- .btn___1oXLE {
  margin-right: 20px;
}
.page___OeYY- .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___BcjDM {
  display: none;
}
.outputDiv___PSFP8 {
  width: 960;
  height: 540;
}
.page___zgDRh .btn___3OBQW {
  margin-right: 20px;
}
.page___zgDRh .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___1-TjA {
  display: none;
}
.outputDiv___3U3Xp {
  width: 960;
  height: 540;
}
.page___2vVM7 .btn___THMIp {
  margin-right: 20px;
}
.page___2vVM7 .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.hiddenImg___PvkNI {
  display: none;
}
.outputDiv___1nHwa {
  width: 960;
  height: 540;
}
.horizon_layout___1wEXi {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}
.mapWrap___-Atdp {
  width: 42%;
  height: 100%;
}
.pageTitle___1T4pO {
  height: 100px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.gasList___1Julw {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  width: 30%;
  height: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.device_wrap___1cyWY {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 25%;
  height: 100%;
}
.leftWrap___2LyDd {
  width: 25%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column ;
      flex-direction: column ;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.videoWrap___r8QGZ {
  width: 42%;
  height: 100%;
}
.direction_layout___1hDAo {
  display: -ms-flexbox;
  display: flex;
  height: 50%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.device_wrap___1cyWY .direction_layout___1hDAo {
  width: 20%;
  height: 50px;
  margin: 5px 0;
}
.comLabel___20xRu {
  text-align: center;
}
.deviceImg___3hpLX {
  width: 30px;
}
.full___FawSm {
  width: 100%;
  height: 100%;
  color: #ffffff;
}
.full___FawSm #dv-full-screen-container {
  position: relative;
}
.bigBtn___11MfB {
  position: absolute;
  right: 0px;
  z-index: 100;
}
.bg___2jSC- {
  height: 100%;
  background-size: 100% 100%;
  -webkit-box-shadow: 0 0 3px blue;
          box-shadow: 0 0 3px blue;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.title___2wyWq {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  height: 60px;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
.mainContainer___2Blit {
  height: calc(100% - 60px);
  padding: 0 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.left___FXJw8 {
  width: 30%;
  height: 100%;
}
.middle___1pU2b {
  width: 37%;
  height: 100%;
}
.right___1cl6N {
  width: 30%;
  height: 100%;
}
.box___1yMaE {
  width: 100%;
  height: 100%;
}
.box___1yMaE .border-box-content {
  padding: 15px;
}
.boxTitle___xJ-Ji {
  color: #6278F4;
}
.flexColumn___1cXrM {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flexRow___2GncF {
  display: -ms-flexbox;
  display: flex;
}
.charts___2uquJ {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 5px;
  top: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.wh100___cKgG0 {
  width: 100%;
  height: 100%;
}
.dv-active-ring-chart {
  width: 100%;
  height: 100%;
}
.dv-charts-container {
  width: 100%;
  height: 100%;
}
.ant-progress-inner {
  border-radius: 0 !important;
  background-color: #3A3C52;
}
.dv-scroll-ranking-board {
  width: 100%;
  height: 100%;
}
#mainMap {
  width: 100% !important;
  height: 100% !important;
}
.flexBetween___2WMOx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.typeTitle___63JX5 {
  color: #8FAAFF;
}
.typeSum___WmfUn {
  color: #6278F4;
}
.typePer___y1H1K {
  color: #3D65D1;
}
.container___3Lsh4 {
  padding: 15px 0;
  overflow: auto;
}
.date___2luNZ {
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -ms-flex-pack: center;
      justify-content: center;
  color: #1856DA;
}
.tag___3kyBM {
  background-color: rgba(79, 110, 190, 0.2);
  padding-bottom: 5px;
}
.tagNum___1SIll {
  font-size: 24px;
  font-weight: bold;
  color: #66EDFF;
}
.tagName___3uUsu {
  color: #F2EDFF;
}
.center___ZpVT4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.rise___1cSov {
  color: '#FF5D38';
}
.drop___1aKji {
  color: #1856DA;
}
.orangeColor___2nv-t {
  color: #007acc;
}
.globalTableLink___1Y1nr {
  color: #76b1cb;
}
.previewContent___1Js3l .ant-carousel {
  width: 100%;
}
.previewContent___1Js3l .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1Js3l .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1Js3l .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1Js3l .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1Js3l .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___MoCej .globalTable___2XsOS .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___MoCej .globalTable___2XsOS table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___MoCej .globalTable___2XsOS table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___MoCej .globalTable___2XsOS table td span .anticon {
  color: #8ccad9;
}
.prepTable___MoCej .globalTable___2XsOS table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___MoCej .globalTable___2XsOS .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___MoCej .globalTable___2XsOS .ant-table-column-sorter .anticon-caret-up,
.prepTable___MoCej .globalTable___2XsOS .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___MoCej .globalTable___2XsOS i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___MoCej .childTable___QqBj6 .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___MoCej .grayItem___2in0p {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___MoCej .operationWrap___1YZBq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___MoCej .operationWrap___1YZBq a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___MoCej .operationWrap___1YZBq .localText___3rTGM {
  color: #40c8a5;
}
.prepTable___MoCej .lineWrap___2zGyL {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___MoCej .lineWrap___2zGyL span {
  color: #333;
  padding-right: 20px;
}
.prepTable___MoCej .disabledText___2NNOc {
  color: #666;
  cursor: not-allowed;
}
.prepTable___MoCej .titleWrap___SmvVQ {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___MoCej .titleWrap___SmvVQ .iconWrap___14X8j {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___MoCej .titleWrap___SmvVQ .iconWrap___14X8j .sorterActive___1j8ei {
  color: #1890ff;
}
.prepTable___MoCej .titleWrap___SmvVQ .iconWrap___14X8j i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___MoCej .titleWrap___SmvVQ .iconWrap___14X8j i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___MoCej .btns___1Mk4U {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___MoCej .btnsLeft___ZB5Pf button {
  margin-right: 20px;
}
.prepTable___MoCej .btnsRight___vYfvn button {
  margin-left: 20px;
}
.prepTable___MoCej .baseBtn___3bnFY {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___MoCej .baseBtn___3bnFY:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___MoCej .globalBtn___3JdnZ {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___MoCej .globalBtn___3JdnZ:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.orangeColor___2hZnI {
  color: #007acc;
}
.globalTableLink___3Q4TG {
  color: #76b1cb;
}
.previewContent___tsYQ9 .ant-carousel {
  width: 100%;
}
.previewContent___tsYQ9 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___tsYQ9 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___tsYQ9 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___tsYQ9 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___tsYQ9 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___2TBZo {
  width: 100%;
}
.titleWrap___2TBZo .mainTitle___1f6bH {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___2TBZo .mainTitle___1f6bH li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___2TBZo .mainTitle___1f6bH .titleItem___132Mz {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___3u75o {
  width: 100%;
}
.contentWrap___3u75o .mainContent___2QZiY {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___3u75o .mainContent___2QZiY li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___12lBC {
  width: 100%;
}
.formWrap___12lBC .buttonRow___3BM72 {
  text-align: center;
  margin-top: 10px;
}
.formWrap___12lBC .buttonRow___3BM72 .submitBtn___1l_HF {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___12lBC .buttonRow___3BM72 .submitBtn___1l_HF:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___12lBC .ant-form-item {
  min-height: 59px !important;
}
.spin___qy4jR {
  width: 100%;
}
.orangeColor___3_Wch {
  color: #007acc;
}
.globalTableLink___m737h {
  color: #76b1cb;
}
.previewContent___3WJOg .ant-carousel {
  width: 100%;
}
.previewContent___3WJOg .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3WJOg .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3WJOg .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3WJOg .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3WJOg .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___9QWQ9 .globalTable___1vf0H table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___9QWQ9 .globalTable___1vf0H table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___9QWQ9 .globalTable___1vf0H table td span .anticon {
  color: #8ccad9;
}
.prepTable___9QWQ9 .globalTable___1vf0H table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___9QWQ9 .globalTable___1vf0H .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-column-sorter .anticon-caret-up,
.prepTable___9QWQ9 .globalTable___1vf0H .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___9QWQ9 .globalTable___1vf0H i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___9QWQ9 .childTable___2F8mK .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___9QWQ9 .grayItem___2jWbY {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___9QWQ9 .operationWrap___1sRgB {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___9QWQ9 .operationWrap___1sRgB a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___9QWQ9 .operationWrap___1sRgB .localText___3lGjQ {
  color: #40c8a5;
}
.prepTable___9QWQ9 .lineWrap___3dY5Q {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___9QWQ9 .lineWrap___3dY5Q span {
  color: #333;
  padding-right: 20px;
}
.prepTable___9QWQ9 .disabledText___2usib {
  color: #666;
  cursor: not-allowed;
}
.prepTable___9QWQ9 .titleWrap___3SynH {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___9QWQ9 .titleWrap___3SynH .iconWrap___2e40W {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___9QWQ9 .titleWrap___3SynH .iconWrap___2e40W .sorterActive___3gK9f {
  color: #1890ff;
}
.prepTable___9QWQ9 .titleWrap___3SynH .iconWrap___2e40W i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___9QWQ9 .titleWrap___3SynH .iconWrap___2e40W i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___9QWQ9 .btns___yJ3Bz {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___9QWQ9 .btnsLeft___1ohrQ button {
  margin-right: 20px;
}
.prepTable___9QWQ9 .btnsRight___FZaRr button {
  margin-left: 20px;
}
.prepTable___9QWQ9 .baseBtn___3VF4m {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___9QWQ9 .baseBtn___3VF4m:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___9QWQ9 .globalBtn___1vBSS {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___9QWQ9 .globalBtn___1vBSS:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.page___1jhOJ .btn___1AaC4 {
  margin-right: 20px;
}
.page___1jhOJ .search___4FnME :nth-of-type(5) {
  margin-right: 0px!important;
}
.page___1jhOJ .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.search___tcfxh {
  width: 100%;
  padding: 15px 20px;
}
.content___3jnaA {
  padding: 20px;
}
.content___3jnaA .link___1I_cA {
  width: 256px;
  height: 80px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, right top, left top, from(#4bd1d3), to(#5fcdce));
  background: linear-gradient(270deg, #4bd1d3, #5fcdce);
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 9px 0px rgba(95, 126, 244, 0.4);
          box-shadow: 0px 1px 9px 0px rgba(95, 126, 244, 0.4);
  float: left;
  margin-right: 20px;
  padding-left: 10px;
  position: relative;
  color: #ffffff;
}
.content___3jnaA .link___1I_cA p {
  font-size: 18px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  opacity: 0.7;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 80px;
}
.content___3jnaA .link___1I_cA span {
  line-height: 80px;
  font-size: 16px;
}
.content___3jnaA .link___1I_cA img {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0.3;
  width: 60px;
  height: 60px;
}
.content___3jnaA .run___oTW7L {
  width: 256px;
  height: 80px;
  border-radius: 2px;
  opacity: 0.7;
  color: #ffffff;
  line-height: 80px;
  float: left;
  padding-left: 10px;
  position: relative;
}
.content___3jnaA .run___oTW7L p {
  font-size: 18px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  opacity: 0.7;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 80px;
}
.content___3jnaA .run___oTW7L span {
  line-height: 80px;
  font-size: 16px;
}
.content___3jnaA .run___oTW7L img {
  position: absolute;
  right: 10px;
  top: 10px;
}
.content___3jnaA .box___3LAiY .card___dh-Vr {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, right top, left top, from(#f5b442), to(#fbad25));
  background: linear-gradient(270deg, #f5b442 0%, #fbad25 100%);
  width: 200px;
  height: 80px;
  border-radius: 5px;
  position: relative;
  color: #ffffff;
}
.content___3jnaA .box___3LAiY .card___dh-Vr .label___iYUzv {
  margin: 0;
  margin-left: 65px;
  font-size: 16px;
  padding: 10px 0 5px 0;
}
.content___3jnaA .box___3LAiY .card___dh-Vr .value___2yRiw {
  margin: 0;
  margin-left: 65px;
}
.search___32JDi {
  width: 100%;
  padding: 15px 20px;
}
.content___3aPxu {
  padding: 20px;
}
.content___3aPxu .link___2oZjZ {
  width: 256px;
  height: 80px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, right top, left top, from(#7dc67d), to(#8ad58a));
  background: linear-gradient(270deg, #7dc67d, #8ad58a);
  border-radius: 2px;
  -webkit-box-shadow: 0px 1px 9px 0px rgba(95, 126, 244, 0.4);
          box-shadow: 0px 1px 9px 0px rgba(95, 126, 244, 0.4);
  float: left;
  margin-right: 20px;
  padding-left: 10px;
  position: relative;
}
.content___3aPxu .link___2oZjZ p {
  font-size: 18px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.7;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 80px;
}
.content___3aPxu .link___2oZjZ span {
  color: #ffffff;
  line-height: 80px;
  font-size: 16px;
}
.content___3aPxu .link___2oZjZ img {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0.3;
  width: 60px;
  height: 60px;
}
.content___3aPxu .run___6Urm3 {
  width: 256px;
  height: 80px;
  border-radius: 2px;
  opacity: 0.7;
  color: #ffffff;
  line-height: 80px;
  float: left;
  padding-left: 10px;
  position: relative;
}
.content___3aPxu .run___6Urm3 p {
  font-size: 18px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: 500;
  opacity: 0.7;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 80px;
}
.content___3aPxu .run___6Urm3 span {
  line-height: 80px;
  font-size: 16px;
}
.content___3aPxu .run___6Urm3 img {
  position: absolute;
  right: 10px;
  top: 10px;
}
.content___3aPxu .box___1uXCf .card___2IsDv {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, right top, left top, from(#f5b442), to(#fbad25));
  background: linear-gradient(270deg, #f5b442 0%, #fbad25 100%);
  width: 200px;
  height: 80px;
  border-radius: 5px;
  position: relative;
  color: #ffffff;
}
.content___3aPxu .box___1uXCf .card___2IsDv .label___19L5N {
  margin: 0;
  margin-left: 65px;
  font-size: 16px;
  padding: 10px 0 5px 0;
}
.content___3aPxu .box___1uXCf .card___2IsDv .value___3r04I {
  margin: 0;
  margin-left: 65px;
}
.page___3Vh3B .search___2qNX7 {
  display: -ms-flexbox;
  display: flex;
  padding: 15px 20px;
}
.page___3Vh3B .search___2qNX7 input {
  width: 200px;
}
.page___3Vh3B .search___2qNX7 button {
  margin-left: 20px;
}
.page___3Vh3B .search___2qNX7 .ant-calendar-picker-input {
  display: -ms-flexbox!important;
  display: flex!important;
}
.page___3Vh3B .center___3ijgi {
  position: relative;
}
.page___3Vh3B .center___3ijgi .check___xHkT9 {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.page___3Vh3B .center___3ijgi .content___2l6GX {
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 {
  -ms-flex: 0 0 35%;
      flex: 0 0 35%;
  border-right: 1px solid #DFDFDF;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .title___1oibZ {
  margin-top: 20px;
  height: 26px;
  line-height: 26px;
  position: relative;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .title___1oibZ img {
  width: 20px;
  height: 26px;
  top: -6px;
  position: absolute;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .title___1oibZ span {
  padding-left: 20px;
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #5d6475;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .tempWrapper___1xrkl {
  text-align: center;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .tempWrapper___1xrkl .topLabel___1B9dl {
  height: 19px;
  line-height: 19px;
  font-size: 24px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #fea05b;
  margin: 10px 0px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .tempWrapper___1xrkl .imgWrapper___3gmVa {
  position: relative;
  width: 100%;
  height: 290px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .tempWrapper___1xrkl .imgWrapper___3gmVa .img___4wAWV {
  height: 290px;
  z-index: 999;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .tempWrapper___1xrkl .imgWrapper___3gmVa .bar___2_4N3 {
  position: absolute;
  width: 12px;
  left: 50%;
  right: 50%;
  border-radius: 6px;
  -webkit-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
  height: 0px;
  background: #99C2E9;
  bottom: 28px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .left___kN5t0 .tempWrapper___1xrkl .bottomLabel___3gTlI {
  height: 30px;
  line-height: 15px;
  font-size: 16px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #5d6475;
  margin: 10px 0px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding-left: 50px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .title___1oibZ {
  height: 50px;
  line-height: 50px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .title___1oibZ .name___dzZ6J {
  padding-left: 10px;
  padding-right: 10px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .boxWrapper___1T8au {
  padding-right: 30px;
  margin-bottom: 20px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .boxWrapper___1T8au .box___1LwYD {
  background: #f7f7f7;
  border: 2px solid #efefef;
  border-radius: 4px;
  height: 102px;
  line-height: 102px;
  padding-left: 20px;
  padding-right: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .boxWrapper___1T8au .box___1LwYD img {
  width: 53px;
  height: 53px;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .boxWrapper___1T8au .box___1LwYD span {
  font-size: 18px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #5d6475;
}
.page___3Vh3B .center___3ijgi .content___2l6GX .right___3sBkm .boxWrapper___1T8au .draw___1L3jU {
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-animation: rotate___SdXiC 2s linear infinite;
          animation: rotate___SdXiC 2s linear infinite;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- {
  margin: 20px;
  height: 325px;
  background: #fafafa;
  border: 1px solid #f5f5f5;
  border-radius: 10px;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .title___1oibZ {
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #5d6475;
  border-bottom: 1px solid #E6E6E6;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .ant-form {
  width: 1000px!important;
  margin: 0 auto!important;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .ant-form-item {
  min-height: 40px!important;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .btn___3rufZ {
  width: 391px;
  height: 54px;
  line-height: 54px;
  margin-top: 30px;
  background: #1890ff;
  font-size: 20px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #ffffff;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .component___p2YE_ {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 60px;
  line-height: 60px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .component___p2YE_ .ant-input-number {
  width: 122px!important;
}
.page___3Vh3B .center___3ijgi .formWrapper___Jg7h- .component___p2YE_ input {
  width: 122px;
}
.page___3Vh3B .center___3ijgi .ant-tabs-nav .ant-tabs-tab-active {
  font-size: 20px!important;
  font-family: Source Han Sans CN!important;
  font-weight: bold!important;
  color: #5d6475 !important;
}
.page___3Vh3B .g2_line___istF7 {
  height: 600px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #ddd;
}
.page___3Vh3B .g2_line___istF7 .serch___3DMzE {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.page___3Vh3B .nodata___1_TfR {
  background: '#fff';
  padding: '10px';
  -webkit-box-sizing: 'border-box';
          box-sizing: 'border-box';
  border-radius: '0 0 3px 3px';
  height: '490px';
  margin-right: '32px';
  margin-left: '32px';
  margin-top: '20px';
  -webkit-box-shadow: '0px 0px 6px rgba(93, 100, 103, 0.1)';
          box-shadow: '0px 0px 6px rgba(93, 100, 103, 0.1)';
}
.hide___1ah9O {
  display: none!important;
}
@-webkit-keyframes rotate___SdXiC {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes rotate___SdXiC {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
.orangeColor___1Dem7 {
  color: #007acc;
}
.globalTableLink___7Yz3A {
  color: #76b1cb;
}
.previewContent___1wxH- .ant-carousel {
  width: 100%;
}
.previewContent___1wxH- .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1wxH- .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1wxH- .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1wxH- .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1wxH- .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___3K42d {
  width: 100%;
}
.titleWrap___3K42d .mainTitle___UfYzp {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___3K42d .mainTitle___UfYzp li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___3K42d .mainTitle___UfYzp .titleItem___2aESH {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___2l1-2 {
  width: 100%;
}
.contentWrap___2l1-2 .mainContent___1ti_t {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___2l1-2 .mainContent___1ti_t li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___34VnW {
  width: 100%;
}
.formWrap___34VnW .buttonRow___2em4I {
  text-align: center;
  margin-top: 10px;
}
.formWrap___34VnW .buttonRow___2em4I .submitBtn___1TVKy {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___34VnW .buttonRow___2em4I .submitBtn___1TVKy:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___34VnW .ant-form-item {
  min-height: 59px !important;
}
.spin___4WCJu {
  width: 100%;
}
.areaCont___3EibO {
  width: 100%;
  background-color: #f1f3fa;
  padding-top: 10px;
}
.areaCont___3EibO .noneData___3wmi1 {
  display: none;
}
.areaCont_serch___3rcd8 {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 20px;
  background: #fff;
}
.areaCont_serch___3rcd8 p {
  margin: 0 20px 0 0;
}
.areaCont_serch___3rcd8 .item___2UdAh {
  height: 24px;
  border-radius: 14px;
  color: #262828;
  cursor: pointer;
  text-align: center;
  line-height: 24px;
  font-size: 12px;
  padding: 0 10px;
}
.areaCont_serch___3rcd8 .active___2Rqo9 {
  color: #0091FF;
  font-weight: bold;
  background: #e7f5ff;
}
.areaCont_serch___3rcd8 .fl___oYy4W {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.areaCont_items___s2zmT {
  min-height: 100%;
  padding: 20px;
  background-color: #fff;
  text-align: center;
}
.areaCont_items___s2zmT .areaCont_item___37Fa7 {
  padding: 0 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  cursor: pointer;
}
.areaCont_items___s2zmT p {
  margin: 0 0;
  line-height: 30px;
}
.areaCont_items___s2zmT .flex___gmqAO {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.areaCont_items___s2zmT .areaCont_item_img___2R7t4 {
  height: 160px;
  padding: 36px 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 10px;
}
.areaCont_items___s2zmT span {
  display: inline-block;
  width: 55px;
  vertical-align: middle;
}
.carStatis___3r3xP {
  width: 100%;
}
.carStatis___3r3xP .noneData___2oVMv {
  display: none;
}
.operation___37YZL a {
  padding: 0 10px;
  border-right: 1px solid #ccc;
}
.operation___37YZL a:last-child {
  border-right: none!important;
}
.modal___2QXo5 .tip___1tyIF {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.modal___2QXo5 .ant-modal {
  height: 600px;
  overflow: hidden;
}
.modal___2QXo5 .ant-modal-body {
  padding: 10px;
}
.textRight___1acn5 {
  text-align: right;
}
.pusherDiv___1xU12 {
  border: 1px solid grey;
}
.orangeColor___6WEW9 {
  color: #007acc;
}
.globalTableLink___3JgrI {
  color: #76b1cb;
}
.previewContent___1GfNX .ant-carousel {
  width: 100%;
}
.previewContent___1GfNX .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___1GfNX .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___1GfNX .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___1GfNX .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___1GfNX .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___1GD3Q {
  width: 100%;
}
.titleWrap___1GD3Q .mainTitle___DgGg_ {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___1GD3Q .mainTitle___DgGg_ li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___1GD3Q .mainTitle___DgGg_ .titleItem___30KSR {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___1tgQ_ {
  width: 100%;
}
.contentWrap___1tgQ_ .mainContent___1vaLX {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___1tgQ_ .mainContent___1vaLX li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___3XQeP {
  width: 100%;
}
.formWrap___3XQeP .buttonRow___2Ipsx {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3XQeP .buttonRow___2Ipsx .submitBtn___2aLv8 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___3XQeP .buttonRow___2Ipsx .submitBtn___2aLv8:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___3XQeP .ant-form-item {
  min-height: 56px !important;
}
.pusher_card___VYdEa {
  height: 300px;
  overflow-y: scroll;
}
.pusher_card___VYdEa .grid_style___rabHX {
  width: 25%!important;
  height: 109px!important;
  padding: 15px!important;
}
.pusher_card___VYdEa .grid_style___rabHX > div {
  height: 32px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___24io_ {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___24io_ {
  /**兼容Firefox、IE表头**/
}
.standardTable___24io_ .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___24io_ .ant-table {
  height: 100%;
  bottom: 40px;
}
.standardTable___24io_ .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___24io_ .ant-table-body {
  position: absolute!important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___24io_ .ant-table-pagination {
  position: absolute;
  bottom: 4px;
  right: 0;
  margin: 0!important;
  text-align: right;
}
.standardTable___24io_ .ant-table-wrapper {
  height: 100%;
}
.standardTable___24io_ .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___24io_ .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___24io_ table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___24io_ table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___24io_ table tr.red td {
  background: #ec03035c;
}
.standardTable___24io_ .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___24io_ .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___24io_ .ant-table-thead > tr:hover > td,
.standardTable___24io_ .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___24io_ .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___24io_ .ant-pagination.mini .ant-pagination-options {
  margin-top: 5px;
}
.standardTable___24io_ .tableAlert___3FyP5 {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.standardTable___KoQB9 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /** overflow: hidden;**/
  z-index: 1;
  /**overflow-y: scroll;**/
}
.standardTable___KoQB9 {
  /**兼容Firefox、IE表头**/
}
.standardTable___KoQB9 .letter-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.standardTable___KoQB9 .ant-table {
  height: 100%;
  bottom: 40px;
}
.standardTable___KoQB9 .ant-table-header {
  margin-bottom: 0 !important;
}
.standardTable___KoQB9 .ant-table-body {
  position: absolute!important;
  top: 32px;
  left: 0;
  right: 0;
  bottom: 27px;
}
.standardTable___KoQB9 .ant-table-pagination {
  position: absolute;
  bottom: 15px;
  right: 0;
  margin: 0!important;
  text-align: right;
}
.standardTable___KoQB9 .ant-table-wrapper {
  height: 100%;
}
.standardTable___KoQB9 .ant-table-wrapper .ant-spin-nested-loading {
  height: 100%;
}
.standardTable___KoQB9 .ant-table-wrapper .ant-spin-nested-loading .ant-spin-container {
  height: 100%;
}
.standardTable___KoQB9 table tr.tableCss td {
  background: #f9f9f9;
}
.standardTable___KoQB9 table tr.tableOrangeRed td {
  background: orange;
}
.standardTable___KoQB9 table tr.red td {
  background: #ec03035c;
}
.standardTable___KoQB9 .ant-table-thead > tr.ant-table-row-hover > td,
.standardTable___KoQB9 .ant-table-tbody > tr.ant-table-row-hover > td,
.standardTable___KoQB9 .ant-table-thead > tr:hover > td,
.standardTable___KoQB9 .ant-table-tbody > tr:hover > td {
  background: #e2effa;
}
.standardTable___KoQB9 .ant-table-column-sorter {
  margin-left: 0;
  margin-top: -4px;
  width: 14px;
  height: 14px;
}
.standardTable___KoQB9 .ant-pagination.mini .ant-pagination-options {
  margin-top: 5px;
}
.standardTable___KoQB9 .tableAlert___WDDHx {
  margin-bottom: 16px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.controlBtn___3Vpw6 {
  margin-bottom: 10px;
  margin-left: -14px;
}
.dictManageParentTable___1ibT9 {
  position: absolute;
  top: 132px;
  right: 0;
  left: 0;
  bottom: 10px;
}
.dictManageChildTable___eZ2HX {
  position: absolute;
  top: 132px;
  right: 0;
  bottom: 0;
  left: 0;
}
.modal___FqG0k .ant-modal {
  height: 600px;
  overflow: hidden;
}
.modal___FqG0k .ant-modal-body {
  padding: 10px;
}
.tableListForm___2WIA2 {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.dataTable___2zlTc {
  position: absolute;
  top: 47px;
  bottom: 10px;
  left: -12px;
  right: 0;
}
.dataTable___2zlTc .ant-table-body {
  bottom: 34px;
}
.container___YyaZt {
  padding: 20px 20px 20px 20px;
  font-family: PingFang SC;
  height: 100%;
  position: relative;
  overflow: auto;
}
.container___YyaZt .header___2vSys {
  padding-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
}
.container___YyaZt .header___2vSys .headerButton___3b63K {
  width: 80px;
  height: 29px;
}
.container___YyaZt .header___2vSys .cascader___3ifCh {
  width: 20%;
  margin-right: 25px;
  margin-left: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.container___YyaZt .header___2vSys .cascader___3ifCh .ant-cascader-input {
  height: 45px;
}
.container___YyaZt .header___2vSys .info___1hNp2 {
  min-width: 516px;
  height: 45px;
  background: #ffffff;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFangSC;
  font-weight: 400;
  color: #686c6c;
  line-height: 45px;
}
.container___YyaZt .header___2vSys .info___1hNp2 img {
  width: 14px;
  margin-right: 3px;
}
.container___YyaZt .header___2vSys .info___1hNp2 .number___1lgW8 {
  padding-left: 20px;
}
.container___YyaZt .header___2vSys .info___1hNp2 .line___1Sk7D {
  width: 0px;
  height: 28px;
  padding: 0px 0px 0px 20px;
  border-right: 1px dotted #E0E0E0;
}
.container___YyaZt .header___2vSys .area___xceLi {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: right;
  height: 45px;
  font-size: 24px;
  font-family: PingFangSC-Medium, PingFangSC;
  font-weight: 500;
  color: #0091ff;
  line-height: 45px;
}
.container___YyaZt .header___2vSys .area___xceLi img {
  width: 19px;
  line-height: 19px;
  margin-top: -2px;
  margin-right: 7px;
}
.container___YyaZt .center___3Ii_w {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.container___YyaZt .center___3Ii_w .statistic___UzWKo {
  width: 300px;
  height: 260px;
  z-index: 1;
  overflow-y: hidden;
  position: absolute;
  right: 20px;
  padding: 0px 10px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.uitra___2C8jH {
  width: auto;
  height: auto;
  overflow: auto;
  color: #5D6375;
}
.uitra___2C8jH p {
  margin: 0;
  padding: 0;
}
.nav___15guM {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 20px;
}
.tabsCont___1btuM {
  position: relative;
}
.tabsCont___1btuM .check___1CpsF {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.tabsCont_left___3ZyVy {
  padding-left: 20px;
  padding-top: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_left___3ZyVy .line___3tABx {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.tabsCont_left___3ZyVy .waterList8___3y4h4 {
  padding: 35px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bothcenter___2JnM0 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.padd16___1zbvQ {
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cont1___2Treh {
  width: 100%;
  height: 76px;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  background: #f9f9f9;
  border-radius: 4px;
}
.cont1___2Treh p {
  font-size: 14px;
  width: 150px;
  padding-left: 15px;
  line-height: 36px;
}
.cont1___2Treh .dot___18EUC {
  font-size: 16px;
  line-height: 76px;
  position: relative;
}
.cont1___2Treh .dot___18EUC::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 35px;
  left: 0;
}
.cont2___GKKlY {
  width: 100%;
  height: 180px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont2___GKKlY .tit___blE5N {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  font-weight: bold;
}
.cont2___GKKlY .tit___blE5N img {
  display: block;
  margin-right: 10px;
}
.cont2___GKKlY .img___3WG49 {
  width: 134px;
  height: 134px;
  line-height: 134px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFBB46;
  background: url(data:image/png;base64,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) no-repeat center center;
  background-size: 100% 100%;
}
.cont2___GKKlY .img___3WG49 span {
  font-size: 12px;
  font-weight: normal;
}
.cont3___2lVZz {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont3___2lVZz p {
  line-height: 45px;
}
.cont3___2lVZz .color___2gT2y {
  color: #188FFF;
}
.tabsCont_right___3HTbu .padd45___33N_J {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_right___3HTbu .line___3tABx {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.tabsCont_right___3HTbu .tabsCont_right_tit___1jf1k .flex_tit___152td {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tabsCont_right___3HTbu .tabsCont_right_tit___1jf1k .dot___18EUC {
  max-width: 100%;
  height: 50px;
  padding-left: 15px;
  overflow: hidden;
  font-size: 14px;
  line-height: 50px;
  position: relative;
}
.tabsCont_right___3HTbu .tabsCont_right_tit___1jf1k .dot___18EUC::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ddd;
  position: absolute;
  top: 22px;
  left: 0;
}
.tabsCont_right___3HTbu .flex1___35UMl {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___3HTbu .flex1___35UMl img {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.tabsCont_right___3HTbu .flex2_item___3EaWY {
  width: 100%;
  height: 90px;
  background: rgba(247, 247, 247, 0.61);
  border: 2px solid rgba(239, 239, 239, 0.61);
  border-radius: 4px;
  margin-bottom: 33px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___3HTbu .flex2_item___3EaWY img {
  display: block;
  margin-left: 15px;
  margin-right: 20px;
}
.tabsCont_right___3HTbu .flex3_item___3dhSr {
  width: 100%;
  height: 35px;
  margin-bottom: 0;
  padding-left: 20px;
  line-height: 35px;
  overflow: hidden;
  background: rgba(247, 247, 247, 0.61);
}
.tabsCont_right___3HTbu .flex3_item___3dhSr .dot___18EUC {
  font-size: 14px;
  position: relative;
  background: rgba(247, 247, 247, 0.61);
  border: none;
  padding-left: 25px;
}
.tabsCont_right___3HTbu .flex3_item___3dhSr .dot___18EUC::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 15px;
  left: 0;
}
.tabsCont_right___3HTbu .flex3_item___3dhSr span {
  color: #188FFF;
}
.setting___29XXa {
  height: auto;
  padding: 0 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___29XXa .title___3lt-2 {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___29XXa .flex___20_SU {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___29XXa .flex_input___2joLK {
  padding-right: 30px;
  position: relative;
}
.setting___29XXa .flex_input___2joLK .unit___Uuds7 {
  display: block;
  width: 30px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___29XXa .btn___2bf_g {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___29XXa .antnumber___3H8oY {
  width: 170px!important;
}
.waterList9___3vOmq {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.uitra___30DmX {
  width: auto;
  height: auto;
  overflow: auto;
  color: #5D6375;
}
.uitra___30DmX p {
  margin: 0;
  padding: 0;
}
.nav___v8kJ1 {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 20px;
}
.tabsCont___1x3l3 {
  position: relative;
}
.tabsCont___1x3l3 .check___2eUeF {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.tabsCont_left___9O0Za {
  padding-left: 20px;
  padding-top: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_left___9O0Za .line___2HxeH {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.bothcenter___117s7 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.padd16___1JPzw {
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cont1___3gloV {
  width: 100%;
  height: 76px;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  background: #f9f9f9;
  border-radius: 4px;
}
.cont1___3gloV p {
  font-size: 14px;
  width: 150px;
  padding-left: 15px;
  line-height: 36px;
}
.cont1___3gloV .dot___2MoW5 {
  font-size: 16px;
  line-height: 76px;
  position: relative;
}
.cont1___3gloV .dot___2MoW5::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 35px;
  left: 0;
}
.cont2___BKMJm {
  width: 100%;
  height: 180px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont2___BKMJm .tit___2D0e6 {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  font-weight: bold;
}
.cont2___BKMJm .tit___2D0e6 img {
  display: block;
  margin-right: 10px;
}
.cont2___BKMJm .img___1N2X2 {
  width: 134px;
  height: 134px;
  line-height: 134px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFBB46;
  background: url(data:image/png;base64,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) no-repeat center center;
  background-size: 100% 100%;
}
.cont2___BKMJm .img___1N2X2 span {
  font-size: 12px;
  font-weight: normal;
}
.cont3___3Pywu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont3___3Pywu p {
  line-height: 45px;
}
.cont3___3Pywu .color___e-6Dv {
  color: #188FFF;
}
.tabsCont_right___3P2n1 .padd45___14HGy {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_right___3P2n1 .line___2HxeH {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.tabsCont_right___3P2n1 .tabsCont_right_tit___QfABr .flex_tit___3uFIU {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tabsCont_right___3P2n1 .tabsCont_right_tit___QfABr .dot___2MoW5 {
  max-width: 100%;
  height: 50px;
  padding-left: 15px;
  overflow: hidden;
  font-size: 14px;
  line-height: 50px;
  position: relative;
}
.tabsCont_right___3P2n1 .tabsCont_right_tit___QfABr .dot___2MoW5::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ddd;
  position: absolute;
  top: 22px;
  left: 0;
}
.tabsCont_right___3P2n1 .flex1___Q4QEo {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___3P2n1 .flex1___Q4QEo img {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.tabsCont_right___3P2n1 .flex2_item___2OG8D {
  width: 100%;
  height: 90px;
  background: rgba(247, 247, 247, 0.61);
  border: 2px solid rgba(239, 239, 239, 0.61);
  border-radius: 4px;
  margin-bottom: 33px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___3P2n1 .flex2_item___2OG8D img {
  display: block;
  margin-left: 15px;
  margin-right: 20px;
}
.flex3_item___il6hN {
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding-left: 20px;
  line-height: 45px;
  overflow: hidden;
  background: rgba(247, 247, 247, 0.61);
}
.flex3_item___il6hN .dot___2MoW5 {
  font-size: 14px;
  position: relative;
  background: rgba(247, 247, 247, 0.61);
  border: none;
  padding-left: 25px;
}
.flex3_item___il6hN .dot___2MoW5::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 20px;
  left: 0;
}
.flex3_item___il6hN span {
  color: #188FFF;
}
.setting___U9IfS {
  height: auto;
  padding: 0 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___U9IfS .title___3lIwm {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___U9IfS .flex___2oiXh {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___U9IfS .flex_input___1Wgcs {
  padding-right: 30px;
  position: relative;
}
.setting___U9IfS .flex_input___1Wgcs .unit___bmyOX {
  display: block;
  width: 30px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___U9IfS .btn___Cii9G {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___U9IfS .antnumber___cCb_z {
  width: 170px!important;
}
.uitra___2LUSc {
  width: auto;
  height: auto;
  overflow: auto;
  color: #5D6375;
}
.uitra___2LUSc p {
  margin: 0;
  padding: 0;
}
.nav___1lI1H {
  height: 60px;
  padding-top: 14px;
  padding-left: 20px;
}
.tabsCont___yowwr {
  position: relative;
}
.tabsCont___yowwr .check___-jI_8 {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.tabsCont_left___2pQlI {
  padding-left: 20px;
  padding-top: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_left___2pQlI .line___35sRp {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.tabsCont_left___2pQlI .waterList8___2188l {
  padding: 35px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bothcenter___1zWV1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.padd16___2pH1F {
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cont1___2OngU {
  width: 100%;
  height: 76px;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  background: #f9f9f9;
  border-radius: 4px;
}
.cont1___2OngU p {
  font-size: 14px;
  width: 150px;
  padding-left: 15px;
  line-height: 36px;
}
.cont1___2OngU .dot___19Ruu {
  font-size: 16px;
  line-height: 76px;
  position: relative;
}
.cont1___2OngU .dot___19Ruu::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 35px;
  left: 0;
}
.cont2___8NUbX {
  width: 100%;
  height: 180px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont2___8NUbX .tit___2bPPA {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  font-weight: bold;
}
.cont2___8NUbX .tit___2bPPA img {
  display: block;
  margin-right: 10px;
}
.cont2___8NUbX .img___1FT7H {
  width: 134px;
  height: 134px;
  line-height: 134px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFBB46;
  background: url(data:image/png;base64,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) no-repeat center center;
  background-size: 100% 100%;
}
.cont2___8NUbX .img___1FT7H span {
  font-size: 12px;
  font-weight: normal;
}
.cont3___38Ad3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont3___38Ad3 p {
  line-height: 45px;
}
.cont3___38Ad3 .color___34GTk {
  color: #188FFF;
}
.tabsCont_right___1L9pR .padd45___Yft6- {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_right___1L9pR .line___35sRp {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.tabsCont_right___1L9pR .tabsCont_right_tit___dE9t2 .flex_tit___xpw98 {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tabsCont_right___1L9pR .tabsCont_right_tit___dE9t2 .dot___19Ruu {
  max-width: 100%;
  height: 50px;
  padding-left: 15px;
  overflow: hidden;
  font-size: 14px;
  line-height: 50px;
  position: relative;
}
.tabsCont_right___1L9pR .tabsCont_right_tit___dE9t2 .dot___19Ruu::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ddd;
  position: absolute;
  top: 22px;
  left: 0;
}
.tabsCont_right___1L9pR .flex1___3DK5T {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___1L9pR .flex1___3DK5T img {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.tabsCont_right___1L9pR .flex2_item___3d6Rt {
  width: 100%;
  height: 90px;
  background: rgba(247, 247, 247, 0.61);
  border: 2px solid rgba(239, 239, 239, 0.61);
  border-radius: 4px;
  margin-bottom: 33px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___1L9pR .flex2_item___3d6Rt img {
  display: block;
  margin-left: 15px;
  margin-right: 20px;
}
.tabsCont_right___1L9pR .flex3_item___2rgFw {
  width: 100%;
  height: 35px;
  margin-bottom: 0;
  padding-left: 20px;
  line-height: 35px;
  overflow: hidden;
  background: rgba(247, 247, 247, 0.61);
}
.tabsCont_right___1L9pR .flex3_item___2rgFw .dot___19Ruu {
  font-size: 14px;
  position: relative;
  background: rgba(247, 247, 247, 0.61);
  border: none;
  padding-left: 25px;
}
.tabsCont_right___1L9pR .flex3_item___2rgFw .dot___19Ruu::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 15px;
  left: 0;
}
.tabsCont_right___1L9pR .flex3_item___2rgFw span {
  color: #188FFF;
}
.setting___2m7E5 {
  height: auto;
  padding: 0 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___2m7E5 .title___2BWN6 {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___2m7E5 .flex___2zGbE {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___2m7E5 .flex_input___1giKq {
  padding-right: 20px;
  position: relative;
}
.setting___2m7E5 .flex_input___1giKq .unit___Nr4sd {
  display: block;
  width: 20px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___2m7E5 .btn___1hsz7 {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___2m7E5 .antnumber___1B7vt {
  width: 180px!important;
}
.waterList9___YsKAP {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.timeStr___17Pl8 {
  margin-left: 32px;
  margin-top: 10px;
  clear: both;
}
.water___ZVdl- {
  background: url(data:image/png;base64,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) no-repeat;
  width: 200px;
  float: left;
  margin-left: 20px;
  margin-top: 20px;
  position: relative;
}
.water___ZVdl- p {
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
}
.water___ZVdl- .showimg___3nwgo {
  width: 100px;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.water___ZVdl- .bgimg___ckBFc {
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.rangePicker___1CwC0 {
  position: absolute;
}
.exportbtn___3CBPL {
  margin-right: 20px;
  float: right;
}
.color___34GTk {
  color: #188FFF;
}
.header___3AA7x {
  margin: 20px;
}
.content___11qJj {
  padding: 20px;
  padding-top: 0;
}
.content___11qJj .span___2bUUO span {
  width: 80px;
  display: inline-block;
}
.orangeColor___K5qeW {
  color: #007acc;
}
.globalTableLink___1dDdl {
  color: #76b1cb;
}
.previewContent___5-sFP .ant-carousel {
  width: 100%;
}
.previewContent___5-sFP .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___5-sFP .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___5-sFP .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___5-sFP .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___5-sFP .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___33UAF .globalTable___1ak3A .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___33UAF .globalTable___1ak3A table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___33UAF .globalTable___1ak3A table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___33UAF .globalTable___1ak3A table td span .anticon {
  color: #8ccad9;
}
.prepTable___33UAF .globalTable___1ak3A table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___33UAF .globalTable___1ak3A .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___33UAF .globalTable___1ak3A .ant-table-column-sorter .anticon-caret-up,
.prepTable___33UAF .globalTable___1ak3A .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___33UAF .globalTable___1ak3A i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___33UAF .childTable___1QNev .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___33UAF .grayItem___2PBW9 {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___33UAF .operationWrap___29ujb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___33UAF .operationWrap___29ujb a {
  padding: 0 10px;
  width: 50px;
}
.prepTable___33UAF .operationWrap___29ujb .localText___1p2le {
  color: #40c8a5;
}
.prepTable___33UAF .lineWrap___Xg4T6 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___33UAF .lineWrap___Xg4T6 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___33UAF .disabledText___3oJ3M {
  color: #666;
  cursor: not-allowed;
}
.prepTable___33UAF .titleWrap___-M967 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___33UAF .titleWrap___-M967 .iconWrap___2SxfK {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___33UAF .titleWrap___-M967 .iconWrap___2SxfK .sorterActive___2xeRE {
  color: #1890ff;
}
.prepTable___33UAF .titleWrap___-M967 .iconWrap___2SxfK i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___33UAF .titleWrap___-M967 .iconWrap___2SxfK i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___33UAF .btns___11pMF {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___33UAF .btnsLeft___3oHre button {
  margin-right: 20px;
}
.prepTable___33UAF .btnsRight___2f0oK button {
  margin-left: 20px;
}
.prepTable___33UAF .baseBtn___1Co2H {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___33UAF .baseBtn___1Co2H:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___33UAF .globalBtn___1N4SA {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___33UAF .globalBtn___1N4SA:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.page___1zc3u .btn___35M-z {
  margin-right: 20px;
}
.page___1zc3u .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.orangeColor___erUiV {
  color: #007acc;
}
.globalTableLink___2sCzv {
  color: #76b1cb;
}
.previewContent___2Nv38 .ant-carousel {
  width: 100%;
}
.previewContent___2Nv38 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2Nv38 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2Nv38 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2Nv38 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2Nv38 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___G4X6P {
  width: 100%;
}
.titleWrap___G4X6P .mainTitle___234rI {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___G4X6P .mainTitle___234rI li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___G4X6P .mainTitle___234rI .titleItem___-YF81 {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___1-4lQ {
  width: 100%;
}
.contentWrap___1-4lQ .mainContent___GU3dV {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___1-4lQ .mainContent___GU3dV li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___2FklM {
  width: 100%;
}
.formWrap___2FklM .buttonRow___3cO5V {
  text-align: center;
  margin-top: 10px;
}
.formWrap___2FklM .buttonRow___3cO5V .submitBtn___2de-W {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___2FklM .buttonRow___3cO5V .submitBtn___2de-W:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___2FklM .ant-form-item {
  min-height: 56px !important;
}
.orangeColor___2DHtW {
  color: #007acc;
}
.globalTableLink___2NAcO {
  color: #76b1cb;
}
.previewContent___38dYs .ant-carousel {
  width: 100%;
}
.previewContent___38dYs .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___38dYs .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___38dYs .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___38dYs .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___38dYs .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.titleWrap___39O2H {
  width: 100%;
}
.titleWrap___39O2H .mainTitle___2DJYy {
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  font-size: 16px;
  color: #29aae8;
}
.titleWrap___39O2H .mainTitle___2DJYy li {
  margin-right: 40px;
  list-style-type: none;
}
.titleWrap___39O2H .mainTitle___2DJYy .titleItem___3VuX- {
  text-indent: 6px;
  border-left: 8px solid #29aae8;
}
.contentWrap___1Gp5N {
  width: 100%;
}
.contentWrap___1Gp5N .mainContent___25Gkx {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 60px 5px;
  width: 100%;
  background: #F5F6FA;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contentWrap___1Gp5N .mainContent___25Gkx li {
  width: 33.333%;
  text-align: left;
  margin-bottom: 5px;
}
.formWrap___3dj7u {
  width: 100%;
}
.formWrap___3dj7u .buttonRow___1qrrW {
  text-align: center;
  margin-top: 10px;
}
.formWrap___3dj7u .buttonRow___1qrrW .submitBtn___2EyPJ {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
  margin-left: 12px;
}
.formWrap___3dj7u .buttonRow___1qrrW .submitBtn___2EyPJ:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.formWrap___3dj7u .ant-form-item {
  min-height: 56px !important;
}
.spin___jrYlJ {
  width: 100%;
}
.page___3MZQD .btn___30YBs {
  margin-right: 20px;
}
.page___3MZQD .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___3MZQD .colorBlock___3GQ6T {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___3MZQD .content___slA5p {
  padding: 20px 20px;
}
.page___3MZQD .items___cbFom {
  margin-top: 20px;
  text-align: center;
}
.page___3MZQD .items___cbFom .item___1-Fx_ {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___3MZQD .items___cbFom .imgCont___2HkFi {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___3MZQD .items___cbFom img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___3MZQD .items___cbFom p {
  margin: 15px 0;
  text-align: center;
}
.page___3MZQD .items___cbFom .btns___3w9dX {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___3MZQD .items___cbFom .btn___30YBs {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.orangeColor___Jod4G {
  color: #007acc;
}
.globalTableLink___1fF6y {
  color: #76b1cb;
}
.previewContent___2sYh1 .ant-carousel {
  width: 100%;
}
.previewContent___2sYh1 .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___2sYh1 .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___2sYh1 .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___2sYh1 .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___2sYh1 .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.page___2j5Zd {
  height: 100%;
}
.page___2j5Zd .btn___2DX3S {
  margin-right: 20px;
}
.page___2j5Zd .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2j5Zd .navFlex___k-MJx {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 20px;
}
.page___2j5Zd .colorBlock___1WeBd {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___2j5Zd .content___1qjuh {
  padding: 10px 20px 0;
  height: 100%;
}
.page___2j5Zd .modalCont___3JGdG {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 666;
  background-color: white;
  padding: 60px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page___2j5Zd .modalCont___3JGdG h5 {
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 0;
  color: #29aae8;
  border-left: 6px solid #29aae8;
  margin-left: 20px;
  padding-left: 20px;
}
.page___2j5Zd .modalCont___3JGdG .close___1VHBJ {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 24px;
  position: absolute;
  top: 15px;
  right: 20px;
}
.page___BKpbo p {
  margin: 0;
}
.page___BKpbo .btn___Og9vb {
  margin-right: 20px;
}
.page___BKpbo .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___BKpbo .colorBlock___3OUls {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___BKpbo .content___QQrVU {
  padding: 20px 20px;
}
.page___BKpbo .items___38Cbv {
  margin-top: 20px;
  text-align: center;
}
.page___BKpbo .items___38Cbv .item___GCs4T {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___BKpbo .items___38Cbv .imgCont___2OrR4 {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___BKpbo .items___38Cbv img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___BKpbo .items___38Cbv p {
  margin: 15px 0;
  text-align: center;
}
.page___BKpbo .items___38Cbv .btns___Nb_qA {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___BKpbo .items___38Cbv .btn___Og9vb {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.setting___1LBCW {
  height: auto;
  padding: 15px 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___1LBCW .title___3Ch_U {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___1LBCW .flex___3leYw {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___1LBCW .flex_input___2z7bT {
  padding-right: 30px;
  position: relative;
}
.setting___1LBCW .flex_input___2z7bT .unit___6qy0j {
  display: block;
  width: 20px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___1LBCW .btn___Og9vb {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___1LBCW .antnumber___2NrR- {
  width: 180px!important;
}
.uitra___Ed28b {
  width: auto;
  height: auto;
  overflow: auto;
  color: #5D6375;
}
.uitra___Ed28b p {
  margin: 0;
  padding: 0;
}
.nav___1GPgS {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 20px;
}
.tabsCont___3JNNV {
  position: relative;
}
.tabsCont___3JNNV .check___2NI7S {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.tabsCont_left___9hIKS {
  padding-left: 20px;
  padding-top: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_left___9hIKS .line___3ZDtw {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.tabsCont_left___9hIKS .waterList8___rwpJ3 {
  padding: 35px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bothcenter___1Cm0g {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.padd16___H_i9h {
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cont1___2UZiC {
  width: 100%;
  height: 76px;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  background: #f9f9f9;
  border-radius: 4px;
}
.cont1___2UZiC p {
  font-size: 14px;
  width: 150px;
  padding-left: 15px;
  line-height: 36px;
}
.cont1___2UZiC .dot___35HKr {
  font-size: 16px;
  line-height: 76px;
  position: relative;
}
.cont1___2UZiC .dot___35HKr::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 35px;
  left: 0;
}
.cont2___ctYvC {
  width: 100%;
  height: 180px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont2___ctYvC .tit___3s3v4 {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  font-weight: bold;
}
.cont2___ctYvC .tit___3s3v4 img {
  display: block;
  margin-right: 10px;
}
.cont3___25dTc {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont3___25dTc p {
  line-height: 45px;
}
.cont3___25dTc .color___wGOPb {
  color: #188FFF;
}
.tabsCont_right___2aHYx .padd45___3Cgdl {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_right___2aHYx .line___3ZDtw {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.tabsCont_right___2aHYx .tabsCont_right_tit___3led4 .flex_tit___3KtfJ {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tabsCont_right___2aHYx .tabsCont_right_tit___3led4 .dot___35HKr {
  max-width: 100%;
  height: 50px;
  padding-left: 15px;
  overflow: hidden;
  font-size: 14px;
  line-height: 50px;
  position: relative;
}
.tabsCont_right___2aHYx .tabsCont_right_tit___3led4 .dot___35HKr::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ddd;
  position: absolute;
  top: 22px;
  left: 0;
}
.tabsCont_right___2aHYx .flex1___1XrHc {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___2aHYx .flex1___1XrHc img {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.tabsCont_right___2aHYx .flex2_item___37rqS {
  width: 100%;
  height: 90px;
  background: rgba(247, 247, 247, 0.61);
  border: 2px solid rgba(239, 239, 239, 0.61);
  border-radius: 4px;
  margin-bottom: 33px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___2aHYx .flex2_item___37rqS img {
  display: block;
  margin-left: 15px;
  margin-right: 20px;
}
.tabsCont_right___2aHYx .flex3_item___3A0vX {
  width: 100%;
  height: 35px;
  margin-bottom: 0;
  padding-left: 20px;
  line-height: 35px;
  overflow: hidden;
  background: rgba(247, 247, 247, 0.61);
}
.tabsCont_right___2aHYx .flex3_item___3A0vX .dot___35HKr {
  font-size: 14px;
  position: relative;
  background: rgba(247, 247, 247, 0.61);
  border: none;
  padding-left: 25px;
}
.tabsCont_right___2aHYx .flex3_item___3A0vX .dot___35HKr::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 15px;
  left: 0;
}
.tabsCont_right___2aHYx .flex3_item___3A0vX span {
  color: #188FFF;
}
.setting___8WoE1 {
  height: auto;
  padding: 0 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___8WoE1 .title___2sR7A {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___8WoE1 .flex___1YmFL {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___8WoE1 .flex___1YmFL > p {
  width: 140px;
  text-align: right;
  margin-right: 10px;
}
.setting___8WoE1 .flex_input___1VqYd {
  padding-right: 30px;
}
.setting___8WoE1 .flex_input___1VqYd .unit___sFUYX {
  display: block;
  width: 30px;
  height: 45px;
  line-height: 45px;
  margin-left: 10px;
}
.setting___8WoE1 .btn___ZnPBL {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___8WoE1 .antnumber___1mVX1 {
  width: 170px!important;
}
.waterList9___116GP {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.statusBox___2Qz7- {
  padding: 20px;
  line-height: 36px;
  font-size: 16px;
}
.exportBtn___3Ln6f {
  margin: 0 20px;
}
.page___1u1Yc p {
  margin: 0;
}
.page___1u1Yc .btn___1Gn46 {
  margin-right: 20px;
}
.page___1u1Yc .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1u1Yc .colorBlock___1Xxy- {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___1u1Yc .content___1ct6D {
  padding: 20px 20px;
}
.page___1u1Yc .items___3CFBi {
  margin-top: 20px;
  text-align: center;
}
.page___1u1Yc .items___3CFBi .item___3Zr51 {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___1u1Yc .items___3CFBi .imgCont___2ZJ_E {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___1u1Yc .items___3CFBi img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___1u1Yc .items___3CFBi p {
  margin: 15px 0;
  text-align: center;
}
.page___1u1Yc .items___3CFBi .btns___P8UBj {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___1u1Yc .items___3CFBi .btn___1Gn46 {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.setting___eoO2k {
  height: auto;
  padding: 15px 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___eoO2k .title___IIxxl {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___eoO2k .flex___3Mtwl {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___eoO2k .flex_input___1uzoe {
  padding-right: 30px;
  position: relative;
}
.setting___eoO2k .flex_input___1uzoe .unit___15IYx {
  display: block;
  width: 20px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___eoO2k .btn___1Gn46 {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___eoO2k .antnumber___1Z-Ug {
  width: 180px!important;
}
.page___15TYB p {
  margin: 0;
}
.page___15TYB .btn___2qs34 {
  margin-right: 20px;
}
.page___15TYB .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___15TYB .colorBlock___3qPHO {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___15TYB .content___3Wd86 {
  padding: 20px 20px;
}
.page___15TYB .items___3FWYx {
  margin-top: 20px;
  text-align: center;
}
.page___15TYB .items___3FWYx .item___3swqJ {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___15TYB .items___3FWYx .imgCont___1MBuO {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___15TYB .items___3FWYx img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___15TYB .items___3FWYx p {
  margin: 15px 0;
  text-align: center;
}
.page___15TYB .items___3FWYx .btns___3hpx8 {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___15TYB .items___3FWYx .btn___2qs34 {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.setting___37WW- {
  height: auto;
  padding: 15px 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___37WW- .title___3LzyE {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___37WW- .flex___1BB28 {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___37WW- .flex_input___3utu_ {
  padding-right: 30px;
  position: relative;
}
.setting___37WW- .flex_input___3utu_ .unit___r7YyQ {
  display: block;
  width: 20px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___37WW- .btn___2qs34 {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___37WW- .antnumber___1xMDa {
  width: 180px!important;
}
.page___2b8J_ .setting___jHGUE {
  height: auto;
  padding: 15px 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.page___2b8J_ .setting___jHGUE .flex___3pCwn {
  height: 45px;
  width: 50%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.page___2b8J_ .setting___jHGUE .flex___3pCwn .lable___2rVXT {
  width: 130px;
  text-align: right;
  margin-right: 20px;
}
.page___2b8J_ .setting___jHGUE .flex_input___ZXl7y {
  padding-right: 30px;
}
.page___2b8J_ .setting___jHGUE .flex_input___ZXl7y .unit___Szn9f {
  margin-left: 10px;
}
.page___2b8J_ .setting___jHGUE .btn___33_Ha {
  display: block;
  width: 200px;
  height: 48px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.page___2b8J_ .setting___jHGUE .antnumber___CQv9p {
  width: 280px !important;
}
.uitra___3dodo {
  width: auto;
  height: auto;
  overflow: auto;
  color: #5d6375;
}
.uitra___3dodo p {
  margin: 0;
  padding: 0;
}
.nav___10ur6 {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 20px;
}
.tabsCont___2vgdP {
  position: relative;
}
.tabsCont___2vgdP .check___1G6Nv {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.statusInfo___2J4iS {
  padding: 20px;
}
.statusInfo___2J4iS .statusTime___OCR57 {
  font-size: 16px;
  line-height: 42px;
  margin-bottom: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.statusInfo___2J4iS .statusTime___OCR57 .onlineStatus___10fZ3 {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}
.statusInfo___2J4iS .statusBox___2HSmR {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  height: 230px;
}
.statusInfo___2J4iS .statusItem___2t6NA {
  width: 48%;
  height: 98px;
  background: linear-gradient(225deg, #44a3ff, #57b9ff);
  border-radius: 8px;
  position: relative;
  color: #fff;
  font-size: 16px;
  padding: 20px;
}
.statusInfo___2J4iS .statusItem___2t6NA .statusVal___9O8eE {
  font-size: 24px;
  font-weight: bold;
}
.statusInfo___2J4iS .statusItem___2t6NA .statusIcon___1HylI {
  position: absolute;
  top: 27px;
  right: 20px;
}
.lineRight___1Tumy {
  padding: 20px;
  position: relative;
}
.lineRight___1Tumy .statusTop___2Bux2 {
  position: absolute;
  top: 38px;
  right: 40px;
  z-index: 99;
}
.lineRight___1Tumy .timeBtn___1ZB3I {
  position: absolute;
  right: 100px;
  top: -35px;
  z-index: 99;
}
.setting___143sr {
  height: auto;
  padding: 0 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f5f5f5;
  color: #5d6375;
}
.setting___143sr .title___2H7xQ {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___143sr .flex___1gTZ8 {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___143sr .flex___1gTZ8 p {
  width: 170px;
}
.setting___143sr .flex_input___1uEIO {
  padding-right: 30px;
  position: relative;
}
.setting___143sr .flex_input___1uEIO .unit___7y8WG {
  display: block;
  width: 30px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___143sr .btn___LUtuR {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___143sr .antnumber___3jW1X {
  width: 170px !important;
}
.waterList9___2bS1t {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.uitra___2Lcji {
  width: auto;
  height: auto;
  overflow: auto;
  color: #5D6375;
}
.uitra___2Lcji p {
  margin: 0;
  padding: 0;
}
.nav___3woef {
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  padding-left: 20px;
}
.tabsCont___2K8tQ {
  position: relative;
}
.tabsCont___2K8tQ .check___4rQtG {
  position: absolute;
  top: -30px;
  right: 20px;
  z-index: 66;
}
.mainContain___et1b4 {
  display: -ms-flexbox;
  display: flex;
}
.tabsContLeft___2XvRV {
  height: 100%;
  width: 500px;
  border-right: 1px solid #e8e8e8;
}
.tabsContRight___rytlB {
  height: 100%;
  width: 500px;
}
.mainContain___et1b4 span {
  width: 160px;
  display: inline-block;
}
.tabsCont_left___3bwS2 {
  padding-left: 20px;
  padding-top: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_left___3bwS2 .line___qofzZ {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.tabsCont_left___3bwS2 .waterList8___1Ft1p {
  padding: 35px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bothcenter___2y_ke {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.padd16___2qQFz {
  padding-right: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.cont1___2ZRS4 {
  width: 100%;
  height: 76px;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  background: #f9f9f9;
  border-radius: 4px;
}
.cont1___2ZRS4 p {
  font-size: 14px;
  width: 150px;
  padding-left: 15px;
  line-height: 36px;
}
.cont1___2ZRS4 .dot___1jRyI {
  font-size: 16px;
  line-height: 76px;
  position: relative;
}
.cont1___2ZRS4 .dot___1jRyI::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 35px;
  left: 0;
}
.cont2___38sdo {
  width: 100%;
  height: 180px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont2___38sdo .tit___1SolV {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  font-weight: bold;
}
.cont2___38sdo .tit___1SolV img {
  display: block;
  margin-right: 10px;
}
.cont2___38sdo .img___aSP2G {
  width: 134px;
  height: 134px;
  line-height: 134px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFBB46;
  background: url(data:image/png;base64,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) no-repeat center center;
  background-size: 100% 100%;
}
.cont2___38sdo .img___aSP2G span {
  font-size: 12px;
  font-weight: normal;
}
.cont3___1rbc6 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.cont3___1rbc6 p {
  line-height: 45px;
}
.cont3___1rbc6 .color___1o8OL {
  color: #188FFF;
}
.tabsCont_right___FaebS .padd45___3UCIG {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.tabsCont_right___FaebS .line___qofzZ {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}
.tabsCont_right___FaebS .tabsCont_right_tit___2_tW5 .flex_tit___3kMnZ {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tabsCont_right___FaebS .tabsCont_right_tit___2_tW5 .dot___1jRyI {
  max-width: 100%;
  height: 50px;
  padding-left: 15px;
  overflow: hidden;
  font-size: 14px;
  line-height: 50px;
  position: relative;
}
.tabsCont_right___FaebS .tabsCont_right_tit___2_tW5 .dot___1jRyI::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #ddd;
  position: absolute;
  top: 22px;
  left: 0;
}
.tabsCont_right___FaebS .flex1___337EU {
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___FaebS .flex1___337EU img {
  display: inline-block;
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.tabsCont_right___FaebS .flex2_item___1SGO9 {
  width: 100%;
  height: 90px;
  background: rgba(247, 247, 247, 0.61);
  border: 2px solid rgba(239, 239, 239, 0.61);
  border-radius: 4px;
  margin-bottom: 33px;
  font-size: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.tabsCont_right___FaebS .flex2_item___1SGO9 img {
  display: block;
  margin-left: 15px;
  margin-right: 20px;
}
.tabsCont_right___FaebS .flex3_item___34YJJ {
  width: 100%;
  height: 35px;
  margin-bottom: 0;
  padding-left: 20px;
  line-height: 35px;
  overflow: hidden;
  background: rgba(247, 247, 247, 0.61);
}
.tabsCont_right___FaebS .flex3_item___34YJJ .dot___1jRyI {
  font-size: 14px;
  position: relative;
  background: rgba(247, 247, 247, 0.61);
  border: none;
  padding-left: 25px;
}
.tabsCont_right___FaebS .flex3_item___34YJJ .dot___1jRyI::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #178FFF;
  position: absolute;
  top: 15px;
  left: 0;
}
.tabsCont_right___FaebS .flex3_item___34YJJ span {
  color: #188FFF;
}
.setting___2yVVQ {
  height: auto;
  padding: 0 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___2yVVQ .title___f0QXp {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___2yVVQ .flex___231nm {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___2yVVQ .flex_input___2rDQ3 {
  padding-right: 30px;
  position: relative;
}
.setting___2yVVQ .flex_input___2rDQ3 .unit___2Butl {
  display: block;
  width: 30px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___2yVVQ .btn___16gan {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___2yVVQ .antnumber___2Tji1 {
  width: 170px!important;
}
.waterList9___14okK {
  padding: 0 45px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page___204xR {
  height: 100%;
}
.page___204xR .btn___yziEj {
  margin-right: 20px;
}
.page___204xR .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___204xR .navFlex___2Nado {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 20px;
}
.page___204xR .colorBlock___1Bk7d {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___204xR .content___3oHIb {
  padding: 10px 20px 0;
  height: 100%;
}
.page___204xR .modalCont___1xIN- {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page___204xR .modalCont___1xIN- .modalClose___2mA8J {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 50px;
  color: #fff;
}
.page___204xR .modalCont___1xIN- .modalClose___2mA8J h5 {
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 0;
  color: #000;
  border-left: 6px solid #000;
  margin-left: 20px;
  padding-left: 20px;
}
.page___204xR .modalCont___1xIN- .modalClose___2mA8J .close___31x4s {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 28px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #000;
}
.orangeColor___2w-SM {
  color: #007acc;
}
.globalTableLink___V2cEK {
  color: #76b1cb;
}
.previewContent___3vBQh .ant-carousel {
  width: 100%;
}
.previewContent___3vBQh .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3vBQh .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3vBQh .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3vBQh .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3vBQh .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-content {
  border: 0;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -13px;
}
.prepTable___2ad3t .globalTable___1a_bs table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___2ad3t .globalTable___1a_bs table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___2ad3t .globalTable___1a_bs table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___2ad3t .globalTable___1a_bs table td span .anticon {
  color: #8ccad9;
}
.prepTable___2ad3t .globalTable___1a_bs table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___2ad3t .globalTable___1a_bs .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___2ad3t .globalTable___1a_bs .ant-table-column-sorter .anticon-caret-up,
.prepTable___2ad3t .globalTable___1a_bs .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___2ad3t .globalTable___1a_bs i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___2ad3t .childTable___3m8M_ .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___2ad3t .grayItem___aT-1Y {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___2ad3t .operationWrap___1jWXO {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___2ad3t .operationWrap___1jWXO > div {
  display: -ms-flexbox;
  display: flex;
}
.prepTable___2ad3t .operationWrap___1jWXO a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___2ad3t .operationWrap___1jWXO .localText___2_gNX {
  color: #40c8a5;
}
.prepTable___2ad3t .lineWrap___YEfJ7 {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___2ad3t .lineWrap___YEfJ7 span {
  color: #333;
  padding-right: 20px;
}
.prepTable___2ad3t .disabledText___-3DZm {
  color: #666;
  cursor: not-allowed;
}
.prepTable___2ad3t .titleWrap___1iNbN {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___2ad3t .titleWrap___1iNbN .iconWrap___3M-Oq {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___2ad3t .titleWrap___1iNbN .iconWrap___3M-Oq .sorterActive____EPPK {
  color: #1890ff;
}
.prepTable___2ad3t .titleWrap___1iNbN .iconWrap___3M-Oq i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___2ad3t .titleWrap___1iNbN .iconWrap___3M-Oq i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___2ad3t .btns___1tbGT {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___2ad3t .btnsLeft___2R1YM button {
  margin-right: 20px;
}
.prepTable___2ad3t .btnsRight___1QfCB button {
  margin-left: 20px;
}
.prepTable___2ad3t .baseBtn___2aLPI {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___2ad3t .baseBtn___2aLPI:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___2ad3t .globalBtn___1SQwU {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___2ad3t .globalBtn___1SQwU:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.page___2y8RG .btn___1qHDA {
  margin-right: 20px;
}
.page___2y8RG .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2I62F .btn___1SH9q {
  margin-right: 20px;
}
.page___2I62F .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1ijlT p {
  margin: 0;
}
.page___1ijlT .btn___4xiIc {
  margin-right: 20px;
}
.page___1ijlT .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1ijlT .colorBlock___3ayW- {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___1ijlT .content___38ATY {
  padding: 20px 20px;
}
.page___1ijlT .items___D7qHu {
  margin-top: 20px;
  text-align: center;
}
.page___1ijlT .items___D7qHu .item___1yZXI {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___1ijlT .items___D7qHu .imgCont___GxdP2 {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___1ijlT .items___D7qHu img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___1ijlT .items___D7qHu p {
  margin: 15px 0;
  text-align: center;
}
.page___1ijlT .items___D7qHu .btns___2WmiU {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___1ijlT .items___D7qHu .btn___4xiIc {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.setting___ZpKK1 {
  height: auto;
  padding: 15px 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___ZpKK1 .title___1DZbk {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___ZpKK1 .flex___7y2yn {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___ZpKK1 .flex_input___1uQSI {
  padding-right: 30px;
  position: relative;
}
.setting___ZpKK1 .flex_input___1uQSI .unit___3BV4M {
  display: block;
  width: 20px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___ZpKK1 .btn___4xiIc {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___ZpKK1 .antnumber___20G3e {
  width: 180px!important;
}
.page___iIDQG p {
  margin: 0;
}
.page___iIDQG .btn___zkoX2 {
  margin-right: 20px;
}
.page___iIDQG .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___iIDQG .colorBlock___1n0Vm {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___iIDQG .content___24U5d {
  padding: 20px 20px;
}
.page___iIDQG .items___Ki2Yg {
  margin-top: 20px;
  text-align: center;
}
.page___iIDQG .items___Ki2Yg .item___1T8dk {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___iIDQG .items___Ki2Yg .imgCont___3KUsp {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___iIDQG .items___Ki2Yg img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___iIDQG .items___Ki2Yg p {
  margin: 15px 0;
  text-align: center;
}
.page___iIDQG .items___Ki2Yg .btns___3gq6I {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___iIDQG .items___Ki2Yg .btn___zkoX2 {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.setting___17ORU {
  height: auto;
  padding: 15px 55px 10px;
  margin: 22px 22px 45px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F5F5F5;
  color: #5D6375;
}
.setting___17ORU .title___1uyvc {
  width: 100%;
  line-height: 64px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.setting___17ORU .flex___2moqZ {
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 15px;
}
.setting___17ORU .flex_input___1N7Uv {
  padding-right: 30px;
  position: relative;
}
.setting___17ORU .flex_input___1N7Uv .unit___ViNat {
  display: block;
  width: 20px;
  height: 45px;
  line-height: 45px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.setting___17ORU .btn___zkoX2 {
  display: block;
  width: 390px;
  height: 54px;
  background: linear-gradient(-89deg, #178fff 0%, #399fff 100%);
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 25px auto;
}
.setting___17ORU .antnumber___35Mii {
  width: 180px!important;
}
.orangeColor___110JB {
  color: #007acc;
}
.globalTableLink___26gcs {
  color: #76b1cb;
}
.previewContent___3p5YV .ant-carousel {
  width: 100%;
}
.previewContent___3p5YV .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___3p5YV .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___3p5YV .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___3p5YV .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___3p5YV .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-content {
  border: 0;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  top: -15px;
}
.prepTable___3vFOW .globalTable___1GvX8 table tr .ant-table-selection-column {
  width: 30px;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-spin-container .ant-table-pagination.ant-pagination {
  margin: 0 !important;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-body {
  max-height: calc(100vh - 420px) !important;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-body::-webkit-scrollbar {
  height: 10px;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c2c2c2;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
          box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2) inset;
  border: 5px solid transparent;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-body::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-small > .ant-table-content > .ant-table-body {
  margin: 0;
}
.prepTable___3vFOW .globalTable___1GvX8 table th {
  background: #44a8eb !important;
  text-align: center !important;
  color: white !important;
  border-right: #dce1ed;
  font-size: 14px !important;
  height: 40px !important;
}
.prepTable___3vFOW .globalTable___1GvX8 table td {
  text-align: center;
  color: #8896a1 !important;
  border-right-color: #e1e7ed !important;
}
.prepTable___3vFOW .globalTable___1GvX8 table td span .anticon {
  color: #8ccad9;
}
.prepTable___3vFOW .globalTable___1GvX8 table td span .anticon svg {
  border-radius: 6px;
}
.prepTable___3vFOW .globalTable___1GvX8 .letter-overflow {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-tbody > tr.ant-table-row-selected td {
  background: #e6f7ff !important;
}
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-column-sorter .anticon-caret-up,
.prepTable___3vFOW .globalTable___1GvX8 .ant-table-column-sorter .anticon-caret-down {
  font-size: 16px !important;
  color: #fff;
}
.prepTable___3vFOW .globalTable___1GvX8 i.anticon.anticon-close-square {
  color: #F795A4;
}
.prepTable___3vFOW .childTable___2qSzB .ant-table-thead tr th {
  background: #fff;
  color: #333;
}
.prepTable___3vFOW .grayItem___A6rwY {
  width: 100%;
  height: 10px;
  background-color: #f0f3fa;
  margin-bottom: 10px;
}
.prepTable___3vFOW .operationWrap___1VzeZ {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  /*    a:first-child {
      border-right: 1px solid #ccc;
    }*/
}
.prepTable___3vFOW .operationWrap___1VzeZ a {
  padding: 0 10px;
  min-width: 50px;
}
.prepTable___3vFOW .operationWrap___1VzeZ .localText___2UECN {
  color: #40c8a5;
}
.prepTable___3vFOW .lineWrap___m8P9R {
  padding: 0 2px 10px;
  color: #666;
}
.prepTable___3vFOW .lineWrap___m8P9R span {
  color: #333;
  padding-right: 20px;
}
.prepTable___3vFOW .disabledText___317fG {
  color: #666;
  cursor: not-allowed;
}
.prepTable___3vFOW .titleWrap___q6YCy {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.prepTable___3vFOW .titleWrap___q6YCy .iconWrap___1OQAy {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16px;
}
.prepTable___3vFOW .titleWrap___q6YCy .iconWrap___1OQAy .sorterActive___1dBhS {
  color: #1890ff;
}
.prepTable___3vFOW .titleWrap___q6YCy .iconWrap___1OQAy i.anticon.anticon-caret-up {
  margin-bottom: -2px;
}
.prepTable___3vFOW .titleWrap___q6YCy .iconWrap___1OQAy i.anticon.anticon-caret-down {
  margin-top: -2px;
}
.prepTable___3vFOW .btns___3Qvkm {
  margin: 10px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.prepTable___3vFOW .btnsLeft___2spBm button {
  margin-right: 20px;
}
.prepTable___3vFOW .btnsRight___1Iv5q button {
  margin-left: 20px;
}
.prepTable___3vFOW .baseBtn___3ZTBA {
  background: #40c8a5;
  border-color: #40c8a5;
  color: #fff;
}
.prepTable___3vFOW .baseBtn___3ZTBA:hover {
  background: #40c8a5;
  color: #fff;
  border-color: #40c8a5;
}
.prepTable___3vFOW .globalBtn___NK5u1 {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.prepTable___3vFOW .globalBtn___NK5u1:hover {
  background: #1890ff;
  color: #fff;
  border-color: #1890ff;
}
.operation___1OoA6 > a:last-of-type {
  border-left: 1px solid #d3d4d5;
}
.page___2_o5x .btn___2yUbX {
  margin-right: 20px;
}
.page___2_o5x .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___2_o5x .colorBlock___2j0Wx {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___2_o5x .content___3Kj8R {
  padding: 20px 20px;
}
.page___2_o5x .items___2t60D {
  margin-top: 20px;
  text-align: center;
}
.page___2_o5x .items___2t60D .item___28AIS {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___2_o5x .items___2t60D .imgCont___3cML7 {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___2_o5x .items___2t60D img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___2_o5x .items___2t60D p {
  margin: 15px 0;
  text-align: center;
}
.page___2_o5x .items___2t60D .btns___1FpKt {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___2_o5x .items___2t60D .btn___2yUbX {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
.orangeColor___3Ycbz {
  color: #007acc;
}
.globalTableLink___2oHUv {
  color: #76b1cb;
}
.previewContent___GaNeW .ant-carousel {
  width: 100%;
}
.previewContent___GaNeW .ant-carousel .slick-slide {
  text-align: center;
  height: 100%;
  line-height: 100%;
  background: aliceblue;
  overflow: hidden;
  max-height: 420px;
}
.previewContent___GaNeW .ant-carousel .slick-slide h3 {
  color: #237fdd;
}
.previewContent___GaNeW .ant-carousel .slick-dots .slick-active {
  color: #237fdd;
}
.previewContent___GaNeW .ant-carousel .slick-dots li button {
  width: 35px;
  color: #237fdd;
  background: #237fdd;
  padding: 2px 0;
}
.previewContent___GaNeW .ant-carousel .slick-dots li.slick-active button {
  width: 48px;
  color: #237fdd;
  background: #237fdd;
}
.page___hZoVh {
  height: 100%;
}
.page___hZoVh .btn___3zq9d {
  margin-right: 20px;
}
.page___hZoVh .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___hZoVh .navFlex___3A5wX {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 20px;
}
.page___hZoVh .colorBlock___1S7gF {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___hZoVh .content___QoN0I {
  padding: 10px 20px 0;
  height: 100%;
}
.page___hZoVh .modalCont___2UXql {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 666;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page___hZoVh .modalCont___2UXql .modalClose___1XVOV {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  color: #fff;
}
.page___hZoVh .modalCont___2UXql .modalClose___1XVOV h5 {
  height: 40px;
  line-height: 40px;
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 0;
  color: #fff;
  border-left: 6px solid #fff;
  margin-left: 20px;
  padding-left: 20px;
}
.page___hZoVh .modalCont___2UXql .modalClose___1XVOV .close___1w6Pf {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 28px;
  position: absolute;
  top: 20px;
  right: 20px;
}
.page___1YuKS .btn___3wXG4 {
  margin-right: 20px;
}
.page___1YuKS .ant-table .ant-table-content .ant-table-scroll .ant-table-body {
  max-height: calc(100vh - 380px) !important;
}
.page___1YuKS .colorBlock___wnhFe {
  height: 10px;
  width: 100%;
  background-color: #f1f3fa;
}
.page___1YuKS .content___2uONj {
  padding: 20px 20px;
}
.page___1YuKS .items___3Kivf {
  margin-top: 20px;
  text-align: center;
}
.page___1YuKS .items___3Kivf .item___3FBf5 {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px 0 20px;
  border-radius: 6px;
}
.page___1YuKS .items___3Kivf .imgCont___390Om {
  width: 70px;
  height: 70px;
  border: 1px solid #ddd;
  border-radius: 7px;
  line-height: 70px;
  text-align: center;
  margin: 0 auto;
}
.page___1YuKS .items___3Kivf img {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.page___1YuKS .items___3Kivf p {
  margin: 15px 0;
  text-align: center;
}
.page___1YuKS .items___3Kivf .btns___1vT8W {
  display: block;
  margin: 0 auto 10px;
  text-align: center;
}
.page___1YuKS .items___3Kivf .btn___3wXG4 {
  display: inline-block;
  background-color: #f4f5f7;
  border: none;
  margin-right: 10px;
  color: #4fa6fc;
}
body .container___1oNqv .header___3GGt2 {
  margin: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body .container___1oNqv .header___3GGt2 .button___247q_ {
  width: 80px;
  height: 29px;
  margin-left: 15px;
}
body .container___1oNqv .center___2sX4j .items___22waB {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
body .container___1oNqv .center___2sX4j .items___22waB .item___2SRd2 {
  width: 60px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  background-color: #1890ff;
  color: white;
  font-size: 16px;
  border-radius: 2px 0px 0px 2px;
}
body .container___1oNqv .center___2sX4j .chart___31vrD {
  margin: 0 auto;
}
body .container___1oNqv .center___2sX4j .chartButton___1dRnS {
  width: 120px;
  margin: 0 auto;
}
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-prev-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-next-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  content: "";
}
body .ant-btn :hover {
  background-color: #1890ff !important;
  z-index: 999;
}
body .btn_blue___1vDlE {
  z-index: 999;
  position: absolute;
  right: 32px;
  background-color: #1890ff;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
body .btn_blue___1vDlE:hover {
  z-index: 999;
  color: #ffffff !important;
  background-color: #1890ff !important;
}
body .container___286PM .header___2XXrM {
  margin: 20px;
  display: -ms-flexbox;
  display: flex;
}
body .container___286PM .header___2XXrM .button___TOyq6 {
  width: 80px;
  height: 29px;
  margin-left: 15px;
}
body .container___286PM .center___3aTpw .items___1KjGX {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
body .container___286PM .center___3aTpw .items___1KjGX .item___2VPew {
  width: 60px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  background-color: #1890ff;
  color: white;
  font-size: 16px;
  border-radius: 2px 0px 0px 2px;
}
body .container___286PM .center___3aTpw .chart___12Aoj {
  margin: 0 auto;
}
body .container___286PM .center___3aTpw .chartButton___39xIu {
  width: 120px;
  margin: 0 auto;
}
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-prev-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-next-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  content: "";
}
body .ant-btn :hover {
  background-color: #1890ff !important;
  z-index: 999;
}
body .btn_blue___2kXvv {
  z-index: 999;
  position: absolute;
  right: 32px;
  background-color: #1890ff;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
body .btn_blue___2kXvv:hover {
  z-index: 999;
  color: #ffffff !important;
  background-color: #1890ff !important;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
@-webkit-keyframes antCheckboxEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes antCheckboxEffect {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6);
            transform: scale(1.6);
    opacity: 0;
  }
}
.ant-select-tree-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  position: relative;
  top: -0.09em;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
}
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox:hover .ant-select-tree-checkbox-inner,
.ant-select-tree-checkbox-input:focus + .ant-select-tree-checkbox-inner {
  border-color: #1890ff;
}
.ant-select-tree-checkbox-checked::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #1890ff;
  border-radius: 2px;
  visibility: hidden;
  -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
          animation: antCheckboxEffect 0.36s ease-in-out;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  content: '';
}
.ant-select-tree-checkbox:hover::after,
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox::after {
  visibility: visible;
}
.ant-select-tree-checkbox-inner {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  border-collapse: separate;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-select-tree-checkbox-inner::after {
  position: absolute;
  top: 50%;
  left: 22%;
  display: table;
  width: 5.71428571px;
  height: 9.14285714px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
          transform: rotate(45deg) scale(0) translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  content: ' ';
}
.ant-select-tree-checkbox-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after {
  position: absolute;
  display: table;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
          transform: rotate(45deg) scale(1) translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  content: ' ';
}
.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner {
  background-color: #1890ff;
  border-color: #1890ff;
}
.ant-select-tree-checkbox-disabled {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled.ant-select-tree-checkbox-checked .ant-select-tree-checkbox-inner::after {
  border-color: rgba(0, 0, 0, 0.25);
  -webkit-animation-name: none;
          animation-name: none;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-input {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner {
  background-color: #f5f5f5;
  border-color: #d9d9d9 !important;
}
.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
  border-color: #f5f5f5;
  border-collapse: separate;
  -webkit-animation-name: none;
          animation-name: none;
}
.ant-select-tree-checkbox-disabled + span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ant-select-tree-checkbox-disabled:hover::after,
.ant-select-tree-checkbox-wrapper:hover .ant-select-tree-checkbox-disabled::after {
  visibility: hidden;
}
.ant-select-tree-checkbox-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
  line-height: unset;
  cursor: pointer;
}
.ant-select-tree-checkbox-wrapper.ant-select-tree-checkbox-wrapper-disabled {
  cursor: not-allowed;
}
.ant-select-tree-checkbox-wrapper + .ant-select-tree-checkbox-wrapper {
  margin-left: 8px;
}
.ant-select-tree-checkbox + span {
  padding-right: 8px;
  padding-left: 8px;
}
.ant-select-tree-checkbox-group {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  display: inline-block;
}
.ant-select-tree-checkbox-group-item {
  display: inline-block;
  margin-right: 8px;
}
.ant-select-tree-checkbox-group-item:last-child {
  margin-right: 0;
}
.ant-select-tree-checkbox-group-item + .ant-select-tree-checkbox-group-item {
  margin-left: 0;
}
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner {
  background-color: #fff;
  border-color: #d9d9d9;
}
.ant-select-tree-checkbox-indeterminate .ant-select-tree-checkbox-inner::after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #1890ff;
  border: 0;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  content: ' ';
}
.ant-select-tree-checkbox-indeterminate.ant-select-tree-checkbox-disabled .ant-select-tree-checkbox-inner::after {
  background-color: rgba(0, 0, 0, 0.25);
  border-color: rgba(0, 0, 0, 0.25);
}
.ant-select-tree {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
  margin: 0;
  margin-top: -4px;
  padding: 0 4px;
}
.ant-select-tree li {
  margin: 8px 0;
  padding: 0;
  white-space: nowrap;
  list-style: none;
  outline: 0;
}
.ant-select-tree li.filter-node > span {
  font-weight: 500;
}
.ant-select-tree li ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.ant-select-tree li .ant-select-tree-node-content-wrapper {
  display: inline-block;
  width: calc(100% - 24px);
  margin: 0;
  padding: 3px 5px;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ant-select-tree li .ant-select-tree-node-content-wrapper:hover {
  background-color: #e6f7ff;
}
.ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
  background-color: #bae7ff;
}
.ant-select-tree li span.ant-select-tree-checkbox {
  margin: 0 4px 0 0;
}
.ant-select-tree li span.ant-select-tree-checkbox + .ant-select-tree-node-content-wrapper {
  width: calc(100% - 46px);
}
.ant-select-tree li span.ant-select-tree-switcher,
.ant-select-tree li span.ant-select-tree-iconEle {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  border: 0 none;
  outline: none;
  cursor: pointer;
}
.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  color: #1890ff;
  font-size: 14px;
  -webkit-transform: none;
          transform: none;
}
.ant-select-tree li span.ant-select-icon_loading .ant-select-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-select-tree li span.ant-select-tree-switcher {
  position: relative;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher-noop {
  cursor: auto;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon,
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-tree-switcher-icon svg,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  display: inline-block;
  font-weight: bold;
}
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon,
:root .ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon {
  font-size: 12px;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-tree-switcher-icon svg,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-icon svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 24px;
  height: 24px;
  color: #1890ff;
  font-size: 14px;
  -webkit-transform: none;
          transform: none;
}
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_open .ant-select-switcher-loading-icon svg,
.ant-select-tree li span.ant-select-tree-switcher.ant-select-tree-switcher_close .ant-select-switcher-loading-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ant-select-tree .ant-select-tree-treenode-loading .ant-select-tree-iconEle {
  display: none;
}
.ant-select-tree-child-tree {
  display: none;
}
.ant-select-tree-child-tree-open {
  display: block;
}
li.ant-select-tree-treenode-disabled > span:not(.ant-select-tree-switcher),
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper,
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper span {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
li.ant-select-tree-treenode-disabled > .ant-select-tree-node-content-wrapper:hover {
  background: transparent;
}
.ant-select-tree-icon__open {
  margin-right: 2px;
  vertical-align: top;
}
.ant-select-tree-icon__close {
  margin-right: 2px;
  vertical-align: top;
}
.ant-select-tree-dropdown {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  -webkit-font-feature-settings: 'tnum';
          font-feature-settings: 'tnum';
}
.ant-select-tree-dropdown .ant-select-dropdown-search {
  position: sticky;
  top: 0;
  z-index: 1;
  display: block;
  padding: 4px;
  background: #fff;
}
.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field__wrap {
  width: 100%;
}
.ant-select-tree-dropdown .ant-select-dropdown-search .ant-select-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 4px 7px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  outline: none;
}
.ant-select-tree-dropdown .ant-select-dropdown-search.ant-select-search--hide {
  display: none;
}
.ant-select-tree-dropdown .ant-select-not-found {
  display: block;
  padding: 7px 16px;
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
body .container___1vyIi .header___1kTbu {
  margin: 20px;
  display: -ms-flexbox;
  display: flex;
}
body .container___1vyIi .header___1kTbu .button___3B0c3 {
  width: 80px;
  height: 29px;
  margin-left: 15px;
}
body .container___1vyIi .center___3uxeP .items___RwVQ2 {
  width: 120px;
  margin: 0 auto;
  text-align: center;
}
body .container___1vyIi .center___3uxeP .items___RwVQ2 .item___rGcDT {
  width: 60px;
  height: 32px;
  line-height: 32px;
  display: inline-block;
  background-color: #1890ff;
  color: white;
  font-size: 16px;
  border-radius: 2px 0px 0px 2px;
}
body .container___1vyIi .center___3uxeP .chart___2DzKa {
  margin: 0 auto;
}
body .container___1vyIi .center___3uxeP .chartButton___1mBl3 {
  width: 120px;
  margin: 0 auto;
}
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-prev-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg) scale(0.8);
          transform: rotate(-45deg) scale(0.8);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-next-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-next-month-btn::before {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
}
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-prev-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::before,
body:last-child .ant-calendar-header .ant-calendar-year-panel-next-decade-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-prev-year-btn::after,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::before,
body:last-child .ant-calendar-header .ant-calendar-month-panel-next-year-btn::after {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 8px;
  height: 8px;
  vertical-align: middle;
  border: 0 solid #096dd9;
  border-width: 1.5px 0 0 1.5px;
  border-radius: 1px;
  content: "";
}
body .ant-btn :hover {
  background-color: #1890ff !important;
  z-index: 999;
}
body .ant-select-selection__choice__content {
  display: inline-block;
  max-width: 76px !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .ant-select-selection__choice {
  padding-left: 4px;
}
body .btn_blue___zztaG {
  z-index: 999;
  position: absolute;
  right: 32px;
  background-color: #1890ff;
  border: none;
  color: #ffffff;
  cursor: pointer;
}
body .btn_blue___zztaG:hover {
  z-index: 999;
  color: #ffffff !important;
  background-color: #1890ff !important;
}
.formWrap___3jeDz {
  margin: 20px;
  padding: 20px;
  border: 1px solid #e8e8e8;
}
.formWrap___3jeDz .title___pE5TQ {
  padding-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  margin: 0px -20px 20px -20px;
  border-bottom: 1px solid #e8e8e8;
}
.formWrap___3jeDz .submitBtn___j2Cn3 {
  float: right;
  margin-right: 20px;
  margin-top: -10px;
  background-color: #2b9afe;
  color: #fff;
}
.optWrapper___181hd span {
  color: #1890ff;
  padding: 0px 5px;
}
.optWrapper___181hd span:not(:first-child) {
  border-left: 1px solid #e1e7ed;
}
.table___2pMlE {
  width: 100%;
}
.table___2pMlE #inspectionReport___23HfO {
  width: 100%;
}
.table___2pMlE .title___3RuqO {
  font-size: 20px;
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
.table___2pMlE .btn___kU_Qf {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 20px;
}
.table___2pMlE .btn___kU_Qf > button {
  margin-left: 30px;
}
.table___2pMlE table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
.table___2pMlE table td {
  text-align: center;
}
.table___2pMlE table td p {
  display: inline-block;
  width: 100%;
  min-height: 21px;
}
.table___2pMlE table td.nowrap___llYkJ {
  white-space: nowrap;
}
.table___2pMlE table td.width___1EO0J {
  max-width: 150px;
}
.table___2pMlE table .center___eJUUH {
  text-align: center;
}
.table___2pMlE table .left___2CRXe {
  text-align: left;
}
.table___2pMlE table img {
  width: 160px;
  height: 80px;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.table___2pMlE table .checkbox___1qtS2 {
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.table___2pMlE table .checkbox___1qtS2 > div {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: 20px;
}
.table___2pMlE table .checkbox___1qtS2 > div span {
  display: inline-block;
  margin-left: 6px;
}
.table___2pMlE table .right___NXbAx {
  text-align: right;
}
.table___2pMlE table p {
  text-align: left;
  margin: 0;
}
.table___2pMlE table pre {
  text-align: left;
}
.boxWrapper___2D3ya {
  background: #ffffff;
  border-radius: 4px;
  padding: 10px;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.09);
  margin-bottom: 10px;
}
.boxWrapper___2D3ya .boxTitle___2imu3 {
  height: 32px;
  line-height: 32px;
}
.boxWrapper___2D3ya .boxTitle___2imu3 .icon___y8_WR {
  border-left: 3px solid #2b9afe;
  padding-right: 10px;
}
.detectForm___2pXSL .ant-checkbox-group-item {
  width: 160px!important;
}
.detectForm___3ScUJ {
  width: 100%;
}
.detectForm___3ScUJ .bottom___AQAcV {
  text-align: center;
}
.detectForm___3ScUJ .bottom___AQAcV > button {
  margin-right: 16px;
}
.detectForm___3ScUJ .ant-checkbox-group-item {
  width: 160px!important;
}
.optWrapper___3VRGL span {
  color: #1890ff;
  padding: 0px 5px;
}
.optWrapper___3VRGL span:not(:first-child) {
  border-left: 1px solid #e1e7ed;
}
.formWrap___3L-Ut {
  margin: 20px;
  padding: 20px;
  border: 1px solid #e8e8e8;
}
.formWrap___3L-Ut .title___Z-y54 {
  padding-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  margin: 0px -20px 20px -20px;
  border-bottom: 1px solid #e8e8e8;
}
.formWrap___3L-Ut .submitBtn___1JjYr {
  float: right;
  margin-right: 20px;
  margin-top: -10px;
  background-color: #2b9afe;
  color: #fff;
}
.optWrapper___28RC- span {
  color: #1890ff;
  padding: 0px 5px;
}
.optWrapper___28RC- span:not(:first-child) {
  border-left: 1px solid #e1e7ed;
}
.wrapper___3eEe7 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
}
.wrapper___3eEe7 .left___3hnug {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  min-height: 250px;
  margin: 0px 5px 0px 10px;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.09);
}
.wrapper___3eEe7 .left___3hnug > div > div:nth-child(1) {
  height: 0px!important;
  margin-bottom: 0px!important;
}
.wrapper___3eEe7 .right___3KgBN {
  -ms-flex: 0 0 500px;
      flex: 0 0 500px;
  min-height: 250px;
  margin: 0px 10px 0px 5px;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.09);
}
.wrapper___3eEe7 .right___3KgBN .chart___2P-LG {
  border-bottom: 1px solid #f0f3fa;
}
.wrapper___3eEe7 .right___3KgBN .chart___2P-LG:nth-child(odd) {
  border-right: 1px solid #f0f3fa;
}
.wrapper___3eEe7 .right___3KgBN .closeIcon___FVR9Y {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 999;
  cursor: pointer;
}
.dateRange___erG0V {
  display: -ms-flexbox;
  display: flex;
  min-width: 280px;
  height: 32px;
}
.dateRange___erG0V .ant-calendar-picker-input {
  width: 160px !important;
}
.dateRange___erG0V .line___3V5Sb {
  height: 32px;
  line-height: 32px;
  margin: 0 5px;
}
.result___LACFw {
  background-color: '#ccc';
  padding: 20px 20px;
  margin-top: 10px;
}
.result___LACFw .item___2z4W7 {
  padding: 10px;
  line-height: 20px;
}
.result___LACFw .item___2z4W7 .reviwe___35kdN {
  color: #1890ff;
}
.result___LACFw .item___2z4W7 span {
  margin-left: 10px;
}
.explain___2PLkJ > p {
  margin-bottom: 0;
  line-height: 24px;
  color: red;
}
.notes___20-QJ {
  text-align: center;
  margin-bottom: 20px;
}
.notes___20-QJ div {
  margin: 20px auto;
}
.btn___gbfxH {
  text-align: center;
}
.btn___gbfxH button {
  margin: 0 7px;
}
.colData___17TTW {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.confirmWrap___3j85L {
  text-align: center;
  width: 550px;
}
.confirmWrap___3j85L .titleInfo___3G1Sf {
  font-size: 16px;
  color: #333;
}
.confirmWrap___3j85L .checkInfo___S2Mtn {
  margin-top: 30px;
  margin-bottom: 40px;
  color: #999;
}
.confirmWrap___3j85L .btn___-pbC3 {
  background: #29aae8;
  border: 1px solid #29aae8;
  color: #fff;
}
.fieldInfoTable___1aAhq {
  position: absolute;
  top: 65px;
  right: 0;
  bottom: 0;
  left: 0;
}
.fieldInfoTable___1aAhq .ant-table-body {
  top: 0;
}
.modal___1QiAs {
  position: relative;
}
.modal___1QiAs .ant-modal-body {
  padding: 10px 20px 30px;
}
.modal___1QiAs .ant-modal-body .ant-table-body {
  top: 0;
}
.modal___3gz7p {
  position: relative;
}
.modal___3gz7p .ant-modal-body {
  padding: 10px 20px 30px;
}
.modal___3gz7p .ant-modal-body .ant-table-body {
  top: 0;
}
.modal___2lqgT .ant-modal {
  height: 600px;
  overflow: hidden;
}
.modal___2lqgT .ant-modal-body {
  padding: 10px;
}
.tableListForm___3k8WV {
  position: relative;
  z-index: 2;
  margin-top: 4px;
}
.dataTable___3hksZ {
  position: absolute;
  top: 47px;
  bottom: 10px;
  left: -12px;
  right: 0;
}
.dataTable___3hksZ .ant-table-body {
  bottom: 34px;
}
