/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-notification {
  font-family: "Monospaced Number", "Microsoft YaHei", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  position: fixed;
  z-index: 1010;
  width: 384px;
  max-width: calc(100vw - 32px);
  margin-right: 24px;
}
.ant-notification-topLeft,
.ant-notification-bottomLeft {
  margin-left: 24px;
  margin-right: 0;
}
.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-notice {
  padding: 16px 24px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
  line-height: 1.5;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}
.ant-notification-notice-message {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 8px;
  line-height: 24px;
  display: inline-block;
}
.ant-notification-notice-message-single-line-auto-margin {
  width: calc(384px - 24px * 2 - 24px - 48px - 100%);
  background-color: transparent;
  pointer-events: none;
  display: block;
  max-width: 4px;
}
.ant-notification-notice-message-single-line-auto-margin:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.ant-notification-notice-description {
  font-size: 12px;
}
.ant-notification-notice-closable .ant-notification-notice-message {
  padding-right: 24px;
}
.ant-notification-notice-with-icon .ant-notification-notice-message {
  font-size: 14px;
  margin-left: 48px;
  margin-bottom: 4px;
}
.ant-notification-notice-with-icon .ant-notification-notice-description {
  margin-left: 48px;
  font-size: 12px;
}
.ant-notification-notice-icon {
  position: absolute;
  font-size: 24px;
  line-height: 24px;
  margin-left: 4px;
}
.ant-notification-notice-icon-success {
  color: #52c41a;
}
.ant-notification-notice-icon-info {
  color: #1890ff;
}
.ant-notification-notice-icon-warning {
  color: #faad14;
}
.ant-notification-notice-icon-error {
  color: #f5222d;
}
.ant-notification-notice-close-x:after {
  font-size: 12px;
  content: "\E633";
  font-family: "anticon";
  cursor: pointer;
}
.ant-notification-notice-close {
  position: absolute;
  right: 22px;
  top: 16px;
  color: rgba(0, 0, 0, 0.45);
  outline: none;
}
a.ant-notification-notice-close:focus {
  text-decoration: 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-fill-mode: both;
          animation-fill-mode: both;
  -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);
}
.ant-notification-fade-enter,
.ant-notification-fade-appear {
  opacity: 0;
  -webkit-animation-duration: 0.24s;
          animation-duration: 0.24s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -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-play-state: paused;
          animation-play-state: paused;
}
.ant-notification-fade-leave {
  -webkit-animation-duration: 0.24s;
          animation-duration: 0.24s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -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-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% {
    opacity: 0;
    left: 384px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes NotificationFadeIn {
  0% {
    opacity: 0;
    left: 384px;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@-webkit-keyframes NotificationLeftFadeIn {
  0% {
    opacity: 0;
    right: 384px;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes NotificationLeftFadeIn {
  0% {
    opacity: 0;
    right: 384px;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@-webkit-keyframes NotificationFadeOut {
  0% {
    opacity: 1;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    max-height: 150px;
  }
  100% {
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
  }
}
@keyframes NotificationFadeOut {
  0% {
    opacity: 1;
    margin-bottom: 16px;
    padding-top: 16px 24px;
    padding-bottom: 16px 24px;
    max-height: 150px;
  }
  100% {
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
  }
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-dropdown {
  font-family: "Monospaced Number", "Microsoft YaHei", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1050;
  display: block;
}
.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 {
  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 {
  outline: none;
  position: relative;
  list-style-type: none;
  padding: 4px 0;
  margin: 0;
  text-align: left;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-clip: padding-box;
}
.ant-dropdown-menu-item-group-title {
  color: rgba(0, 0, 0, 0.45);
  padding: 5px 12px;
  transition: all 0.3s;
}
.ant-dropdown-menu-submenu-popup {
  position: absolute;
  z-index: 1050;
}
.ant-dropdown-menu-item,
.ant-dropdown-menu-submenu-title {
  padding: 5px 12px;
  margin: 0;
  clear: both;
  font-size: 12px;
  font-weight: normal;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 22px;
}
.ant-dropdown-menu-item > .anticon:first-child,
.ant-dropdown-menu-submenu-title > .anticon:first-child {
  min-width: 12px;
  margin-right: 8px;
}
.ant-dropdown-menu-item > a,
.ant-dropdown-menu-submenu-title > a {
  color: #333;
  display: block;
  padding: 5px 12px;
  margin: -5px -12px;
  transition: all 0.3s;
}
.ant-dropdown-menu-item > a:focus,
.ant-dropdown-menu-submenu-title > a:focus {
  text-decoration: none;
}
.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: #29BECE;
  background-color: #f0fffe;
}
.ant-dropdown-menu-item:hover,
.ant-dropdown-menu-submenu-title:hover {
  background-color: #f0fffe;
}
.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;
  overflow: hidden;
  background-color: #e8e8e8;
  line-height: 0;
  margin: 4px 0;
}
.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:after,
.ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after {
  font-family: "anticon" !important;
  font-style: normal;
  content: "\E61F";
  color: rgba(0, 0, 0, 0.45);
  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:after,
:root .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow:after {
  font-size: 12px;
}
.ant-dropdown-menu-submenu-title {
  padding-right: 26px;
}
.ant-dropdown-menu-submenu-vertical {
  position: relative;
}
.ant-dropdown-menu-submenu-vertical > .ant-dropdown-menu {
  top: 0;
  left: 100%;
  position: absolute;
  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:after {
  color: rgba(0, 0, 0, 0.25);
}
.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-down,
.ant-dropdown-link .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-down,
:root .ant-dropdown-link .anticon-down {
  font-size: 12px;
}
.ant-dropdown-trigger .anticon-ellipsis,
.ant-dropdown-link .anticon-ellipsis {
  text-shadow: 0 0 currentColor;
}
.ant-dropdown-button {
  white-space: nowrap;
}
.ant-dropdown-button.ant-btn-group > .ant-btn:last-child:not(:first-child) {
  padding-left: 8px;
  padding-right: 8px;
}
.ant-dropdown-button .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-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 {
  background: #29BECE;
  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 declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-tag {
  font-family: "Monospaced Number", "Microsoft YaHei", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  line-height: 20px;
  height: 22px;
  padding: 0 7px;
  border-radius: 2px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  font-size: 12px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
  margin-right: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.ant-tag:hover {
  opacity: 0.85;
}
.ant-tag,
.ant-tag a,
.ant-tag a:hover {
  color: #333;
}
.ant-tag > a:first-child:last-child {
  display: inline-block;
  margin: 0 -8px;
  padding: 0 8px;
}
.ant-tag .anticon-cross {
  display: inline-block;
  font-size: 12px;
  font-size: 10px \9;
  -webkit-transform: scale(0.83333333) rotate(0deg);
          transform: scale(0.83333333) rotate(0deg);
  cursor: pointer;
  margin-left: 3px;
  transition: all 0.3s;
  color: rgba(0, 0, 0, 0.45);
  font-weight: bold;
}
:root .ant-tag .anticon-cross {
  font-size: 12px;
}
.ant-tag .anticon-cross: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-cross,
.ant-tag-has-color .anticon-cross:hover {
  color: #fff;
}
.ant-tag-checkable {
  background-color: transparent;
  border-color: transparent;
}
.ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #29BECE;
}
.ant-tag-checkable:active,
.ant-tag-checkable-checked {
  color: #fff;
}
.ant-tag-checkable-checked {
  background-color: #29BECE;
}
.ant-tag-checkable:active {
  background-color: #1995a8;
}
.ant-tag-close {
  width: 0 !important;
  padding: 0;
  margin: 0;
}
.ant-tag-zoom-enter,
.ant-tag-zoom-appear {
  -webkit-animation: antFadeIn 0.2s cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation: antFadeIn 0.2s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ant-tag-zoom-leave {
  -webkit-animation: antZoomOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
          animation: antZoomOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.ant-tag-pink {
  color: #eb2f96;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-pink-inverse {
  background: #eb2f96;
  border-color: #eb2f96;
  color: #fff;
}
.ant-tag-magenta {
  color: #eb2f96;
  background: #fff0f6;
  border-color: #ffadd2;
}
.ant-tag-magenta-inverse {
  background: #eb2f96;
  border-color: #eb2f96;
  color: #fff;
}
.ant-tag-red {
  color: #f5222d;
  background: #fff1f0;
  border-color: #ffa39e;
}
.ant-tag-red-inverse {
  background: #f5222d;
  border-color: #f5222d;
  color: #fff;
}
.ant-tag-volcano {
  color: #fa541c;
  background: #fff2e8;
  border-color: #ffbb96;
}
.ant-tag-volcano-inverse {
  background: #fa541c;
  border-color: #fa541c;
  color: #fff;
}
.ant-tag-orange {
  color: #fa8c16;
  background: #fff7e6;
  border-color: #ffd591;
}
.ant-tag-orange-inverse {
  background: #fa8c16;
  border-color: #fa8c16;
  color: #fff;
}
.ant-tag-yellow {
  color: #fadb14;
  background: #feffe6;
  border-color: #fffb8f;
}
.ant-tag-yellow-inverse {
  background: #fadb14;
  border-color: #fadb14;
  color: #fff;
}
.ant-tag-gold {
  color: #faad14;
  background: #fffbe6;
  border-color: #ffe58f;
}
.ant-tag-gold-inverse {
  background: #faad14;
  border-color: #faad14;
  color: #fff;
}
.ant-tag-cyan {
  color: #13c2c2;
  background: #e6fffb;
  border-color: #87e8de;
}
.ant-tag-cyan-inverse {
  background: #13c2c2;
  border-color: #13c2c2;
  color: #fff;
}
.ant-tag-lime {
  color: #a0d911;
  background: #fcffe6;
  border-color: #eaff8f;
}
.ant-tag-lime-inverse {
  background: #a0d911;
  border-color: #a0d911;
  color: #fff;
}
.ant-tag-green {
  color: #52c41a;
  background: #f6ffed;
  border-color: #b7eb8f;
}
.ant-tag-green-inverse {
  background: #52c41a;
  border-color: #52c41a;
  color: #fff;
}
.ant-tag-blue {
  color: #1890ff;
  background: #e6f7ff;
  border-color: #91d5ff;
}
.ant-tag-blue-inverse {
  background: #1890ff;
  border-color: #1890ff;
  color: #fff;
}
.ant-tag-geekblue {
  color: #2f54eb;
  background: #f0f5ff;
  border-color: #adc6ff;
}
.ant-tag-geekblue-inverse {
  background: #2f54eb;
  border-color: #2f54eb;
  color: #fff;
}
.ant-tag-purple {
  color: #722ed1;
  background: #f9f0ff;
  border-color: #d3adf7;
}
.ant-tag-purple-inverse {
  background: #722ed1;
  border-color: #722ed1;
  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 declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-badge {
  font-family: "Monospaced Number", "Microsoft YaHei", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
.ant-badge-count {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -10px;
  height: 20px;
  border-radius: 10px;
  min-width: 20px;
  background: #f5222d;
  color: #fff;
  line-height: 20px;
  text-align: center;
  padding: 0 6px;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
  -webkit-transform-origin: -10% center;
          transform-origin: -10% center;
  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 {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: 0 center;
          transform-origin: 0 center;
  top: -3px;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background: #f5222d;
  z-index: 10;
  box-shadow: 0 0 0 1px #fff;
}
.ant-badge-status {
  line-height: inherit;
  vertical-align: baseline;
}
.ant-badge-status-dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.ant-badge-status-success {
  background-color: #52c41a;
}
.ant-badge-status-processing {
  background-color: #1890ff;
  position: relative;
}
.ant-badge-status-processing:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #1890ff;
  content: '';
  -webkit-animation: antStatusProcessing 1.2s infinite ease-in-out;
          animation: antStatusProcessing 1.2s infinite ease-in-out;
}
.ant-badge-status-default {
  background-color: #d9d9d9;
}
.ant-badge-status-error {
  background-color: #f5222d;
}
.ant-badge-status-warning {
  background-color: #faad14;
}
.ant-badge-status-text {
  color: #333;
  font-size: 12px;
  margin-left: 8px;
}
.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 .ant-scroll-number {
  top: auto;
  display: block;
  position: relative;
}
.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;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  height: 20px;
}
.ant-scroll-number-only > p {
  height: 20px;
  margin: 0;
}
@-webkit-keyframes antZoomBadgeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translateX(-50%);
            transform: scale(0) translateX(-50%);
  }
  100% {
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
}
@keyframes antZoomBadgeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) translateX(-50%);
            transform: scale(0) translateX(-50%);
  }
  100% {
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
}
@-webkit-keyframes antZoomBadgeOut {
  0% {
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translateX(-50%);
            transform: scale(0) translateX(-50%);
  }
}
@keyframes antZoomBadgeOut {
  0% {
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0) translateX(-50%);
            transform: scale(0) translateX(-50%);
  }
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/**
 * 间距
 */
/**
 * 字体
 */
/**
 * 色彩
 */
.ant-input {
  padding: 4px 8px;
  border-radius: 4px !important;
  font-size: 12px;
  line-height: 20px;
}
.ant-select-selection {
  border-radius: 4px !important;
}
.c7n-pro-form-item-required .c7n-pro-form-item-children .c7n-pro-input:not(.c7n-pro-input-disabled):not(:disabled),
.c7n-pro-form-item-required .c7n-pro-form-item-children .c7n-pro-input-number:not(.c7n-pro-input-number-disabled),
.c7n-pro-form-item-required .c7n-pro-form-item-children .c7n-pro-cascader-picker:not(.c7n-pro-cascader-picker-disabled):not(:disabled),
.c7n-pro-form-item-required .c7n-pro-form-item-children .c7n-pro-time-picker-input:not(:disabled),
.c7n-pro-form-item-required .c7n-pro-form-item-children :not(.c7n-pro-select-disabled) > .c7n-pro-select-selection:not(:disabled) {
  border-color: #ffbc00;
}
.c7n-pro-form-item-required.has-error .c7n-pro-form-item-children .c7n-pro-input:not(.c7n-pro-input-disabled):not(:disabled),
.c7n-pro-form-item-required.has-error .c7n-pro-form-item-children .c7n-pro-input-number-input:not(:disabled),
.c7n-pro-form-item-required.has-error .c7n-pro-form-item-children .c7n-pro-input-number:not(:disabled),
.c7n-pro-form-item-required.has-error .c7n-pro-form-item-children .c7n-pro-cascader-picker:not(.c7n-pro-cascader-picker-disabled):not(:disabled),
.c7n-pro-form-item-required.has-error .c7n-pro-form-item-children .c7n-pro-time-picker-input:not(:disabled),
.c7n-pro-form-item-required.has-error .c7n-pro-form-item-children :not(.c7n-pro-select-disabled) > .c7n-pro-select-selection:not(:disabled) {
  border-color: #f13131;
  background-color: #fff;
}
.c7n-pro-form-item-required .c7n-pro-form-item-children .c7n-pro-input-number:not(.c7n-pro-input-disabled):not(:disabled):focus,
.c7n-pro-form-item-required .c7n-pro-form-item-children .c7n-pro-input:not(.c7n-pro-input-disabled):not(:disabled):focus {
  box-shadow: none;
}
.c7n-pro-input {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 20px;
}
.c7n-pro-input:focus {
  box-shadow: 0 0 2px 1px #29bece;
}
.c7n-pro-input-spec {
  width: 238px;
  min-width: 138px;
  max-width: 438px;
}
.c7n-pro-input-spec-special {
  width: 180px;
}
.c7n-pro-btn:not(.c7n-pro-btn-flat) {
  line-height: 1.5;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 0 15px;
  font-size: 12px;
  border-radius: 2px;
  height: 28px;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  position: relative;
  border-color: #d9d9d9;
}
.c7n-pro-btn:not(.c7n-pro-btn-flat)-main {
  border-color: #666;
  color: #666;
}
.c7n-pro-btn:not(.c7n-pro-btn-flat)-main:active,
.c7n-pro-btn:not(.c7n-pro-btn-flat)-main:focus,
.c7n-pro-btn:not(.c7n-pro-btn-flat)-main:hover {
  border-color: #1e3255;
  color: #1e3255;
}
.c7n-pro-btn:not(.c7n-pro-btn-flat).c7n-pro-btn-primary {
  background-color: #29bece;
  border-color: #29bece;
  color: #fff;
}
.c7n-pro-field-label,
.c7n-pro-field-wrapper {
  padding: 0.1rem 0;
}
.c7n-pro-field-label:after {
  content: ':';
  width: 0;
  margin: 0 10px 0 2px;
  color: #333;
  position: relative;
  top: -0.5px;
}
.c7n-pro-field-required.c7n-pro-field-label::after {
  content: ':';
}
.c7n-pro-field-required.c7n-pro-field-label::before {
  display: inline-block;
  margin-right: 4px;
  content: '*';
  line-height: 1;
  font-size: 12px;
  color: #f5222d;
}
.c7n-pro-select-clear-button,
.c7n-pro-calendar-picker-clear-button {
  background: transparent;
}
.c7n-pro-select-suffix .icon-search:before {
  content: '\E670';
  display: block;
  font-family: anticon, sans-serif;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  top: 3px;
  right: 7px;
  position: relative;
}
.c7n-pro-select-suffix .icon-baseline-arrow_drop_down:before {
  content: '\E61D';
  display: block;
  font-family: anticon, sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.25);
}
.c7n-pro-calendar-picker-suffix .icon-date_range:before {
  content: '\E6BB';
  font-family: anticon, sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.25);
  display: inline-block;
  line-height: 1;
  position: absolute;
  top: 8px;
  right: 13px;
}
.c7n-pro-select-trigger {
  position: relative;
  top: 4px;
  right: 7px;
}
.c7n-pro-select-expand .c7n-pro-select-trigger {
  top: 2px;
}
.c7n-pro-pagination .c7n-pro-select {
  padding-right: 0.3rem !important;
}
.c7n-pro-checkbox.c7n-pro-checkbox-indeterminate .c7n-pro-checkbox-inner {
  background-color: #fff;
}
.c7n-pro-checkbox.c7n-pro-checkbox-indeterminate .c7n-pro-checkbox-inner:after {
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-width: 8px;
  border-color: #29bece;
}
.c7n-pro-notification-notice.success {
  border-left: 3px solid #4aa44e;
}
.c7n-pro-notification-notice.info {
  border-left: 3px solid #3689f7;
}
.c7n-pro-notification-notice.warn {
  border-left: 3px solid #f6bd41;
}
.c7n-pro-notification-notice.error {
  border-left: 3px solid #dd4037;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-scroll > .c7n-pro-table-body {
  border-width: 0 1px;
  border-style: solid;
  border-color: #e8e8e8;
  border-collapse: collapse;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-scroll > .c7n-pro-table-body > table,
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-scroll > .c7n-pro-table-body .c7n-pro-table-fixed {
  border-left: 0;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-thead > tr > th.c7n-pro-table-selection-column,
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-tbody > tr > td.c7n-pro-table-selection-column {
  width: 46px;
  min-width: 46px;
  text-align: left;
  text-align: initial;
}
.c7n-pro-table-wrapper .c7n-pro-table table .c7n-pro-table-tbody > tr > td {
  padding-left: 16px;
  padding-right: 16px;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-thead > tr > th {
  font-size: 12px;
  line-height: 20px;
  padding: 0 16px;
  line-height: 25px;
  min-height: 40px;
  height: 40px;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-thead > tr > th.c7n-pro-table-column-has-filters {
  position: relative;
}
.c7n-pro-tabs.c7n-pro-tabs-card.c7n-pro-tabs-editable-card > .c7n-pro-tabs-bar .c7n-pro-tabs-tab {
  padding: 9px 14px;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 22px;
}
.c7n-pro-tabs.c7n-pro-tabs-card.c7n-pro-tabs-editable-card > .c7n-pro-tabs-bar .c7n-pro-tabs-tab.c7n-pro-tabs-tab-active {
  color: #29bece;
}
.c7n-pro-tabs.c7n-pro-tabs-card.c7n-pro-tabs-editable-card > .c7n-pro-tabs-bar .c7n-pro-tabs-tab.c7n-pro-tabs-tab-disabled {
  color: #ccc;
}
.c7n-pro-tabs.c7n-pro-tabs-line > .c7n-pro-tabs-bar .c7n-pro-tabs-tab {
  padding: 13px 16px;
  margin: 0 16px 0 0;
  color: #4c4c4c;
  font-size: 14px;
  line-height: 22px;
}
.c7n-pro-tabs.c7n-pro-tabs-line > .c7n-pro-tabs-bar .c7n-pro-tabs-tab.c7n-pro-tabs-tab-active {
  color: #29bece;
}
.c7n-pro-tabs.c7n-pro-tabs-line > .c7n-pro-tabs-bar .c7n-pro-tabs-tab.c7n-pro-tabs-tab-disabled {
  color: #ccc;
}
.c7n-pro-tabs.c7n-pro-tabs-vertical.c7n-pro-tabs.c7n-pro-tabs-line > .c7n-pro-tabs-bar .c7n-pro-tabs-tab {
  margin-right: 0;
}
.c7n-pro-collapse .c7n-pro-collapse-content-box .c7n-pro-form-item > .c7n-pro-form-item-label {
  text-align: left;
}
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-prev-month-btn,
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-next-month-btn,
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-prev-year-btn,
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-next-year-btn {
  padding: 0;
}
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-prev-month-btn {
  left: 36px;
}
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-next-month-btn {
  right: 36px;
}
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-prev-year-btn {
  left: 16px;
}
.c7n-pro-calendar .c7n-pro-calendar-header .c7n-pro-calendar-next-year-btn {
  right: 16px;
}
.c7n-pro-calendar .c7n-pro-calendar-year-panel-header .c7n-pro-calendar-year-panel-prev-decade-btn,
.c7n-pro-calendar .c7n-pro-calendar-year-panel-header .c7n-pro-calendar-year-panel-next-decade-btn {
  padding: 0;
}
.c7n-pro-calendar .c7n-pro-calendar-year-panel-header .c7n-pro-calendar-year-panel-prev-decade-btn {
  left: 16px;
}
.c7n-pro-calendar .c7n-pro-calendar-year-panel-header .c7n-pro-calendar-year-panel-next-decade-btn {
  right: 16px;
}
.c7n-pro-calendar .c7n-pro-calendar-decade-panel-header .c7n-pro-calendar-decade-panel-prev-century-btn,
.c7n-pro-calendar .c7n-pro-calendar-decade-panel-header .c7n-pro-calendar-decade-panel-next-century-btn {
  padding: 0;
}
.c7n-pro-calendar .c7n-pro-calendar-decade-panel-header .c7n-pro-calendar-decade-panel-prev-century-btn {
  left: 16px;
}
.c7n-pro-calendar .c7n-pro-calendar-decade-panel-header .c7n-pro-calendar-decade-panel-next-century-btn {
  right: 16px;
}
.c7n-pro-tabs.c7n-pro-tabs-vertical > .c7n-pro-tabs-bar {
  background-color: #f4f6f8;
}
.c7n-pro-tabs.c7n-pro-tabs-vertical > .c7n-pro-tabs-bar > .c7n-pro-tabs-nav-container > .c7n-pro-tabs-nav-wrap > .c7n-pro-tabs-nav-scroll > .c7n-pro-tabs-nav .c7n-pro-tabs-tab {
  font-size: 14px;
  line-height: 22px;
  color: #4c4c4c;
  text-align: left;
  padding: 9px 9px 9px 16px;
}
.c7n-pro-tabs.c7n-pro-tabs-vertical > .c7n-pro-tabs-bar > .c7n-pro-tabs-nav-container > .c7n-pro-tabs-nav-wrap > .c7n-pro-tabs-nav-scroll > .c7n-pro-tabs-nav .c7n-pro-tabs-tab-active {
  background-color: #fff;
  color: #29bece;
}
.c7n-pro-tabs.c7n-pro-tabs-vertical > .c7n-pro-tabs-bar > .c7n-pro-tabs-nav-container > .c7n-pro-tabs-nav-wrap > .c7n-pro-tabs-nav-scroll > .c7n-pro-tabs-nav .c7n-pro-tabs-tab-disabled {
  color: #ccc;
}
.c7n-pro-tabs.c7n-pro-tabs-vertical > .c7n-pro-tabs-bar > .c7n-pro-tabs-nav-container > .c7n-pro-tabs-nav-wrap > .c7n-pro-tabs-nav-scroll > .c7n-pro-tabs-nav > .c7n-pro-tabs-ink-bar {
  display: none !important;
}
 {
  /* c7n-pro-table */
  /* c7n-pro-table end */
  /* c7n-pro-btn */
  /* c7n-pro-btn end */
  /* c7n-pro-select */
}
.c7n-pro-checkbox-inner {
  border: 1px solid #d9d9d9;
}
.c7n-pro-checkbox-inner::after {
  top: 0;
  left: 0.04rem;
}
.c7n-pro-checkbox-indeterminate .c7n-pro-checkbox-inner::after {
  top: 0.06rem;
  left: 0.02rem;
}
.c7n-pro-table-row-height-fixed td {
  padding-top: 4px;
  padding-bottom: 4px;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-thead > tr > th:first-child {
  padding: 0;
}
.c7n-pro-table-wrapper .c7n-pro-table .c7n-pro-table-thead > tr > th:not(:first-child) {
  padding: 0 8px;
}
.c7n-pro-table-wrapper .c7n-pro-table table .c7n-pro-table-tbody > tr > td.c7n-pro-table-selection-column {
  padding-left: 0.01rem;
  padding-right: 0.01rem;
}
.c7n-pro-table-row-highlight.c7n-pro-table-row:hover > td,
.c7n-pro-table-row-hover > td,
.c7n-pro-table-row-highlight.c7n-pro-table-row:hover + .c7n-pro-table-expanded-row > td,
.c7n-pro-table-row-hover + .c7n-pro-table-expanded-row > td {
  background: #f0fffe;
}
.c7n-pro-table-cell-editable .c7n-pro-table-cell-inner:not([class$='-required']):not([disabled]):not([class$='-invalid']) {
  border: 1px solid #d9d9d9;
}
.c7n-pro-table-cell-inner {
  border: none;
  border-radius: 4px;
}
.c7n-pro-table-cell-editable.c7n-pro-table-cell-required .c7n-pro-table-cell-inner {
  border-radius: 4px;
}
.c7n-pro-table-row-current.c7n-pro-table-row-highlight > td,
.c7n-pro-table-row-current:hover.c7n-pro-table-row-highlight > td,
.c7n-pro-table-row-current.c7n-pro-table-row-highlight + .c7n-pro-table-expanded-row > td,
.c7n-pro-table-row-current:hover.c7n-pro-table-row-highlight + .c7n-pro-table-expanded-row > td {
  background: #f0fffe;
}
.page-head-operator .c7n-pro-btn-primary,
.page-head-operator .c7n-pro-btn-primary:active,
.page-head-operator .c7n-pro-btn-primary:focus {
  background-color: #1e3255;
  border-color: #1e3255;
}
.page-head-operator > .c7n-pro-btn:not(:last-child),
.page-head-operator > .page-head-operation:not(:last-child) {
  margin-left: 8px;
}
.c7n-pro-btn:not(.c7n-pro-btn-flat) {
  box-shadow: none;
  box-sizing: border-box;
  border-radius: 2px;
}
.c7n-pro-btn-default:focus {
  border-color: #29bece;
}
.c7n-pro-btn-primary {
  color: #fff;
  background-color: #29bece;
  border-color: #29bece;
}
.c7n-pro-btn-primary.c7n-pro-btn-flat {
  color: #29bece;
  background-color: transparent;
  border-color: transparent;
}
.c7n-pro-btn-primary.c7n-pro-btn-raised:enabled:hover {
  color: #fff;
  background-color: #29bece;
  border-color: #29bece;
}
.c7n-pro-btn + .c7n-pro-btn {
  margin-left: 0.08rem;
}
.c7n-pro-pagination-pager {
  border-color: transparent;
  padding: 0;
  top: -2px;
}
.c7n-pro-select {
  border-radius: 4px;
}
[class$='-required']:not([disabled]):not([class$='-invalid']) .c7n-pro-input-number:not([disabled]) {
  background-color: #fffbdf;
  border-color: #ffbc00;
}
.c7n-pro-select-dropdown-menu-item:hover {
  background: #f0fffe;
}
.c7n-pro-input-number,
.c7n-pro-calendar-picker {
  border-radius: 4px;
}
.c7n-pro-table {
  border-left: 0;
  border-bottom: 0;
}
.c7n-pro-table .c7n-pro-table-placeholder {
  border-bottom: 1px solid #e8e8e8;
}
.c7n-pro-table .c7n-pro-table-row:last-child td {
  border-bottom: 1px solid #e8e8e8;
}
.c7n-pro-table .c7n-pro-table-body > table {
  padding: 0;
}
.c7n-pro-table .c7n-pro-table-body > tr > td {
  border-bottom: 1px solid #e8e8e8;
}
.c7n-pro-table .c7n-pro-table-thead > tr > th {
  background-color: rgba(0, 0, 0, 0.04) !important;
  color: #333;
  font-weight: 500;
  padding: 5px 8px;
  border-bottom: 1.1px solid rgba(0, 0, 0, 0.16);
}
.c7n-pro-table-thead.c7n-pro-table-column-resizable .c7n-pro-table-cell {
  border-left: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  border-right: 0;
}
.c7n-pro-table-bordered .c7n-pro-table-cell,
.c7n-pro-table-bordered .c7n-pro-table-cell[colspan] {
  border-bottom: 1px solid #e8e8e8;
  border-left: none;
}
.c7n-pro-table-empty-row {
  border-bottom: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
}
.c7n-pro-table-wrapper .c7n-pro-table table .c7n-pro-table-tbody > tr > td {
  padding: 3px 8px;
  border-left: 1px solid #e8e8e8;
}
.c7n-pro-table-cell-editable {
  padding: 8px 16px !important;
}
.c7n-pro-table-bordered.c7n-pro-table,
.c7n-pro-table-bordered .c7n-pro-table-filter-bar {
  border-right: none;
  border-left: none;
}
 {
  /* 详情页的表单和折叠面板样式 */
  /* 详情页面 Card, 二级标题 */
  /* Card 三级标题 */
  /* 编辑表格样式 */
}
.select-no-border.c7n-pro-select > div {
  box-shadow: none;
  background-color: transparent;
  border: 0 none;
}
.c7n-select-selection__rendered {
  display: inline-block;
  height: 28px;
  border: 0.01rem solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  line-height: 24px;
}
.ued-detail-wrapper .form-collapse,
.ued-detail-wrapper .c7n-pro-collapse {
  border: none;
  background-color: #fff;
  /* UED行样式 */
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item.c7n-pro-collapse-no-arrow .c7n-pro-collapse-header,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item.c7n-pro-collapse-no-arrow .c7n-pro-collapse-header {
  padding: 0;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item {
  border-bottom: none;
  margin-bottom: 24px;
  background-color: #fafafa;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header {
  height: 48px;
  line-height: 48px;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header > i,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header > i {
  font-weight: bold;
  margin-left: 8px;
  color: #29bece;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header > h3,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header > h3 {
  text-indent: 16px;
  display: inline-block;
  line-height: 1.17em;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header > a,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-header > a {
  margin-left: 16px;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content {
  border-top: none;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box {
  padding-bottom: 0;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box .last-form-item,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box .last-form-item {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box .last-form-item .c7n-pro-row,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box .last-form-item .c7n-pro-row {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box .last-form-item .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control .c7n-pro-form-item-children pre,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-collapse-item .c7n-pro-collapse-content .c7n-pro-collapse-content-box .last-form-item .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control .c7n-pro-form-item-children pre {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .read-row,
.ued-detail-wrapper .c7n-pro-collapse .read-row {
  line-height: 20px;
  margin-bottom: 16px;
}
.ued-detail-wrapper .form-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item,
.ued-detail-wrapper .c7n-pro-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label,
.ued-detail-wrapper .c7n-pro-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 20px;
}
.ued-detail-wrapper .form-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label,
.ued-detail-wrapper .c7n-pro-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.ued-detail-wrapper .form-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control,
.ued-detail-wrapper .c7n-pro-collapse .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 20px;
}
.ued-detail-wrapper .form-collapse .writable-row,
.ued-detail-wrapper .c7n-pro-collapse .writable-row {
  margin-bottom: 16px;
}
.ued-detail-wrapper .form-collapse .writable-row > .c7n-pro-col-8 .c7n-pro-calendar-picker,
.ued-detail-wrapper .c7n-pro-collapse .writable-row > .c7n-pro-col-8 .c7n-pro-calendar-picker,
.ued-detail-wrapper .form-collapse .writable-row > .c7n-pro-col-8 .c7n-pro-input-number,
.ued-detail-wrapper .c7n-pro-collapse .writable-row > .c7n-pro-col-8 .c7n-pro-input-number {
  width: 100%;
}
.ued-detail-wrapper .form-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item,
.ued-detail-wrapper .c7n-pro-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label,
.ued-detail-wrapper .c7n-pro-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 28px;
  color: #666;
}
.ued-detail-wrapper .form-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label,
.ued-detail-wrapper .c7n-pro-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.ued-detail-wrapper .form-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control,
.ued-detail-wrapper .c7n-pro-collapse .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 28px;
}
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 .c7n-pro-calendar-picker,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 .c7n-pro-calendar-picker,
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 .c7n-pro-input-number,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 .c7n-pro-input-number {
  width: 100%;
}
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row {
  margin-bottom: 16px;
}
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row > div,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row > div {
  line-height: 28px;
}
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 28px;
  color: #666;
}
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.ued-detail-wrapper .form-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control,
.ued-detail-wrapper .c7n-pro-collapse .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 28px;
}
.ued-detail-wrapper .form-collapse .half-row,
.ued-detail-wrapper .c7n-pro-collapse .half-row {
  display: flex;
  margin-bottom: 16px;
}
.ued-detail-wrapper .form-collapse .half-row .c7n-pro-row.c7n-pro-form-item,
.ued-detail-wrapper .c7n-pro-collapse .half-row .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label,
.ued-detail-wrapper .c7n-pro-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label {
  width: 25%;
  margin-right: -6px;
  float: left;
  line-height: 28px;
}
.ued-detail-wrapper .form-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label,
.ued-detail-wrapper .c7n-pro-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label {
  color: #666;
}
.ued-detail-wrapper .form-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper,
.ued-detail-wrapper .c7n-pro-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper {
  width: 75%;
  float: left;
  color: #333;
  line-height: 28px;
}
.ued-detail-wrapper .form-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control,
.ued-detail-wrapper .c7n-pro-collapse .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control {
  line-height: 28px;
}
.ued-detail-wrapper .form-collapse .read-half-row,
.ued-detail-wrapper .c7n-pro-collapse .read-half-row {
  display: flex;
  margin-bottom: 16px;
}
.ued-detail-wrapper .form-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item,
.ued-detail-wrapper .c7n-pro-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-detail-wrapper .form-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label,
.ued-detail-wrapper .c7n-pro-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label {
  width: 25%;
  margin-right: -6px;
  float: left;
  line-height: 20px;
}
.ued-detail-wrapper .form-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label,
.ued-detail-wrapper .c7n-pro-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label {
  color: #666;
}
.ued-detail-wrapper .form-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper,
.ued-detail-wrapper .c7n-pro-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper {
  width: 75%;
  float: left;
  color: #333;
  line-height: 20px;
}
.ued-detail-wrapper .form-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control,
.ued-detail-wrapper .c7n-pro-collapse .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control {
  line-height: 20px;
}
.ued-detail-wrapper .form-collapse .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control.has-error.c7n-pro-form-item-required .c7n-pro-form-explain,
.ued-detail-wrapper .c7n-pro-collapse .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control.has-error.c7n-pro-form-item-required .c7n-pro-form-explain {
  margin-top: 2px;
}
.ued-form-field {
  width: 100%;
}
.search-btn-more {
  padding-left: 24px !important;
}
.search-btn-more .c7n-pro-form-item-children > button:not(:last-child),
.search-btn-more .c7n-pro-form-item-children > a:not(:last-child) {
  margin-right: 8px;
}
.more-fields-form .c7n-pro-input-number,
.more-fields-form .c7n-pro-calendar-picker,
.more-fields-form .c7n-pro-form-item {
  width: 100%;
}
.more-fields-form > div.c7n-pro-form-item {
  margin-bottom: 3px;
}
.more-fields-form > div.c7n-pro-form-item:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 0;
  margin-bottom: 0;
  z-index: 1;
  border-top: 1px solid #e8e8e8;
  background: #ffffff;
}
.more-fields-form > div.c7n-pro-form-item:last-child .c7n-pro-form-item-children {
  float: right;
  margin-right: 12px;
}
.table-list-search {
  margin-bottom: 16px;
}
.table-list-search .c7n-pro-form-item {
  margin-bottom: 2px;
}
.table-list-search .c7n-pro-form-item.c7n-pro-form-item-with-help {
  margin-bottom: 14px;
}
.more-fields-search-form.c7n-pro-form {
  margin-bottom: 16px;
}
.more-fields-search-form .c7n-pro-input-number,
.more-fields-search-form .c7n-pro-calendar-picker,
.more-fields-search-form .c7n-pro-form-item {
  width: 100%;
  margin-bottom: 0;
}
.table-list-operator {
  margin-bottom: 16px;
}
.table-list-operator button {
  margin-right: 8px;
}
.table-list-form .c7n-pro-form-inline .c7n-pro-form-item {
  margin-bottom: 24px;
  margin-right: 0;
  display: flex;
}
.table-list-form .c7n-pro-form-inline .c7n-pro-form-item > .c7n-pro-form-item-label {
  width: auto;
  line-height: 32px;
  padding-right: 8px;
}
.table-list-form .c7n-pro-form-inline .c7n-pro-form-item .c7n-pro-form-item-control {
  line-height: 32px;
}
.table-list-form .c7n-pro-form-item-control-wrapper {
  flex: 1 1;
}
.table-list-form .submit-buttons {
  white-space: nowrap;
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .tableListForm .c7n-pro-form-item {
    margin-right: 24px;
  }
}
@media screen and (max-width: 768px) {
  .tableListForm .c7n-pro-form-item {
    margin-right: 8px;
  }
}
.c7n-card.ued-detail-card > .c7n-card-head,
.c7n-card.ued-detail-card-table > .c7n-card-head {
  border-bottom-color: #d5dae0;
  padding: 12px 16px;
  position: relative;
}
.c7n-card.ued-detail-card > .c7n-card-head::before,
.c7n-card.ued-detail-card-table > .c7n-card-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 3px;
  height: 14px;
  background-color: #1e3255;
  pointer-events: none;
}
.c7n-card.ued-detail-card > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title,
.c7n-card.ued-detail-card-table > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title {
  padding: 0;
}
.c7n-card.ued-detail-card > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title > h3,
.c7n-card.ued-detail-card-table > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title > h3 {
  margin: 0;
  color: #333;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}
.c7n-card.ued-detail-card > .c7n-card-body,
.c7n-card.ued-detail-card-table > .c7n-card-body {
  /* UED行样式 */
}
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item-label,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item-label {
  text-align: left;
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item-control,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item-control {
  color: #333;
}
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item-control .c7n-pro-calendar-picker,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item-control .c7n-pro-calendar-picker,
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item-control .c7n-pro-input-number,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item-control .c7n-pro-input-number {
  width: 100%;
}
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item-control .c7n-pro-form-explain,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item-control .c7n-pro-form-explain {
  margin-top: 2px;
}
.c7n-card.ued-detail-card > .c7n-card-body .c7n-pro-form-item.c7n-pro-form-item-with-help,
.c7n-card.ued-detail-card-table > .c7n-card-body .c7n-pro-form-item.c7n-pro-form-item-with-help {
  margin-bottom: 16px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-row,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-row {
  line-height: 20px;
  margin-bottom: 16px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 20px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 20px;
}
.c7n-card.ued-detail-card > .c7n-card-body .writable-row,
.c7n-card.ued-detail-card-table > .c7n-card-body .writable-row {
  margin-bottom: 16px;
}
.c7n-card.ued-detail-card > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item,
.c7n-card.ued-detail-card-table > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label,
.c7n-card.ued-detail-card-table > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 28px;
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label,
.c7n-card.ued-detail-card-table > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control,
.c7n-card.ued-detail-card-table > .c7n-card-body .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 28px;
}
.c7n-card.ued-detail-card > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row,
.c7n-card.ued-detail-card-table > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row {
  margin-bottom: 16px;
}
.c7n-card.ued-detail-card > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row > div,
.c7n-card.ued-detail-card-table > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row > div {
  line-height: 28px;
}
.c7n-card.ued-detail-card > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label,
.c7n-card.ued-detail-card-table > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 28px;
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label,
.c7n-card.ued-detail-card-table > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control,
.c7n-card.ued-detail-card-table > .c7n-card-body .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 28px;
}
.c7n-card.ued-detail-card > .c7n-card-body .half-row,
.c7n-card.ued-detail-card-table > .c7n-card-body .half-row {
  display: flex;
  margin-bottom: 16px;
}
.c7n-card.ued-detail-card > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item,
.c7n-card.ued-detail-card-table > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label,
.c7n-card.ued-detail-card-table > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label {
  width: 25%;
  margin-right: -6px;
  float: left;
  line-height: 28px;
}
.c7n-card.ued-detail-card > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label,
.c7n-card.ued-detail-card-table > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label {
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper,
.c7n-card.ued-detail-card-table > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper {
  width: 75%;
  float: left;
  color: #333;
  line-height: 28px;
}
.c7n-card.ued-detail-card > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control,
.c7n-card.ued-detail-card-table > .c7n-card-body .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control {
  line-height: 28px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-half-row,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-half-row {
  display: flex;
  margin-bottom: 16px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label {
  width: 25%;
  margin-right: -6px;
  float: left;
  line-height: 20px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label {
  color: #666;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper {
  width: 75%;
  float: left;
  color: #333;
  line-height: 20px;
}
.c7n-card.ued-detail-card > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control,
.c7n-card.ued-detail-card-table > .c7n-card-body .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control {
  line-height: 20px;
}
.c7n-card.ued-detail-card > .c7n-card-body .last-form-item,
.c7n-card.ued-detail-card-table > .c7n-card-body .last-form-item {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .last-form-item .c7n-pro-row,
.c7n-card.ued-detail-card-table > .c7n-card-body .last-form-item .c7n-pro-row {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body .last-form-item .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control .c7n-pro-form-item-children pre,
.c7n-card.ued-detail-card-table > .c7n-card-body .last-form-item .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control .c7n-pro-form-item-children pre {
  margin-bottom: 0;
}
.c7n-card.ued-detail-card > .c7n-card-body {
  padding: 16px;
  padding-bottom: 24px;
}
.c7n-card.ued-detail-card-table > .c7n-card-body {
  padding: 16px 0;
}
.c7n-card.ued-detail-card-table > .c7n-card-body .table-list-operator {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}
.c7n-card.ued-detail-card-table > .c7n-card-body .table-list-operator > .c7n-pro-btn,
.c7n-card.ued-detail-card-table > .c7n-card-body .table-list-operator > .table-list-operation {
  margin: 0;
}
.c7n-card.ued-detail-card-table > .c7n-card-body .table-list-operator > .c7n-pro-btn:not(:last-child),
.c7n-card.ued-detail-card-table > .c7n-card-body .table-list-operator > .table-list-operation:not(:last-child) {
  margin-left: 8px;
}
.c7n-card.ued-detail-card-third > .c7n-card-head,
.c7n-card.ued-detail-card-table-third > .c7n-card-head {
  border: 0;
  padding: 12px 16px;
  position: relative;
}
.c7n-card.ued-detail-card-third > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title,
.c7n-card.ued-detail-card-table-third > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title {
  padding: 0;
}
.c7n-card.ued-detail-card-third > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title > h3,
.c7n-card.ued-detail-card-table-third > .c7n-card-head > .c7n-card-head-wrapper > .c7n-card-head-title > h3 {
  margin: 0;
  color: #333;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
}
.c7n-card.ued-detail-card-third > .c7n-card-body {
  padding: 16px;
}
.c7n-card.ued-detail-card-table-third > .c7n-card-body {
  padding: 16px 0;
}
.c7n-card.ued-detail-card-table-third > .c7n-card-body .table-list-operator {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}
.c7n-card.ued-detail-card-table-third > .c7n-card-body .table-list-operator > .c7n-pro-btn,
.c7n-card.ued-detail-card-table-third > .c7n-card-body .table-list-operator > .table-list-operation {
  margin: 0;
}
.c7n-card.ued-detail-card-table-third > .c7n-card-body .table-list-operator > .c7n-pro-btn:not(:last-child),
.c7n-card.ued-detail-card-table-third > .c7n-card-body .table-list-operator > .table-list-operation:not(:last-child) {
  margin-left: 8px;
}
.table-operator {
  margin-bottom: 16px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
}
.table-operator > .c7n-pro-btn:not(:last-child),
.table-operator > .table-list-operation:not(:last-child) {
  margin: 0 0 0 8px;
}
.ued-edit-form {
  /* UED行样式 */
  /* UED行样式 */
}
.ued-edit-form .c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-edit-form .c7n-pro-form-item-label {
  text-align: left;
  color: #666;
}
.ued-edit-form .c7n-pro-form-item-control {
  color: #333;
}
.ued-edit-form .c7n-pro-form-item.c7n-pro-form-item-with-help {
  margin-bottom: 16px;
}
.ued-edit-form .read-row {
  line-height: 20px;
  margin-bottom: 16px;
}
.ued-edit-form .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-edit-form .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 20px;
}
.ued-edit-form .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.ued-edit-form .read-row .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 20px;
}
.ued-edit-form .writable-row {
  margin-bottom: 16px;
}
.ued-edit-form .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-edit-form .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 28px;
  color: #666;
}
.ued-edit-form .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.ued-edit-form .writable-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 28px;
}
.ued-edit-form .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row {
  margin-bottom: 16px;
}
.ued-edit-form .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row > div {
  line-height: 28px;
}
.ued-edit-form .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label {
  line-height: 28px;
  color: #666;
}
.ued-edit-form .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-9.c7n-pro-form-item-label label {
  color: #666;
}
.ued-edit-form .inclusion-row > .c7n-pro-col-8 > .c7n-pro-row.c7n-pro-form-item > .c7n-pro-col-15.c7n-pro-form-item-control-wrapper > .c7n-pro-form-item-control {
  line-height: 28px;
}
.ued-edit-form .half-row {
  display: flex;
  margin-bottom: 16px;
}
.ued-edit-form .half-row .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-edit-form .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label {
  width: 25%;
  margin-right: -6px;
  float: left;
  line-height: 28px;
}
.ued-edit-form .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label {
  color: #666;
}
.ued-edit-form .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper {
  width: 75%;
  float: left;
  color: #333;
  line-height: 28px;
}
.ued-edit-form .half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control {
  line-height: 28px;
}
.ued-edit-form .read-half-row {
  display: flex;
  margin-bottom: 16px;
}
.ued-edit-form .read-half-row .c7n-pro-row.c7n-pro-form-item {
  margin-bottom: 0;
}
.ued-edit-form .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label {
  width: 25%;
  margin-right: -6px;
  float: left;
  line-height: 20px;
}
.ued-edit-form .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-label label {
  color: #666;
}
.ued-edit-form .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper {
  width: 75%;
  float: left;
  color: #333;
  line-height: 20px;
}
.ued-edit-form .read-half-row .c7n-pro-row.c7n-pro-form-item > .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control {
  line-height: 20px;
}
.ued-edit-form .last-row {
  margin-bottom: 0;
}
.ued-edit-form .last-row .c7n-pro-row {
  margin-bottom: 0;
}
.ued-edit-form .last-row .c7n-pro-form-item-control-wrapper .c7n-pro-form-item-control .c7n-pro-form-item-children pre {
  margin-bottom: 0;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-modal {
  font-family: "Monospaced Number", "Microsoft YaHei", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  width: auto;
  margin: 0 auto;
  top: 100px;
  padding-bottom: 24px;
}
.ant-modal-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.ant-modal-title {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
}
.ant-modal-content {
  position: relative;
  background-color: #fff;
  border: 0;
  border-radius: 2px;
  background-clip: padding-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ant-modal-close {
  cursor: pointer;
  border: 0;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.45);
  outline: 0;
  padding: 0;
}
.ant-modal-close-x {
  display: block;
  font-style: normal;
  vertical-align: baseline;
  text-align: center;
  text-transform: none;
  text-rendering: auto;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 14px;
}
.ant-modal-close-x:before {
  content: "\E633";
  display: block;
  font-family: "anticon" !important;
}
.ant-modal-close:focus,
.ant-modal-close:hover {
  color: #444;
  text-decoration: none;
}
.ant-modal-header {
  padding: 16px 24px;
  border-radius: 2px 2px 0 0;
  background: #fff;
  color: #333;
  border-bottom: 1px solid #e8e8e8;
}
.ant-modal-body {
  padding: 24px;
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
}
.ant-modal-footer {
  border-top: 1px solid #e8e8e8;
  padding: 10px 16px;
  text-align: right;
  flex-shrink: 0;
  border-radius: 0 0 2px 2px;
}
.ant-modal-footer button + button {
  margin-left: 8px;
  margin-bottom: 0;
}
.ant-modal.zoom-enter,
.ant-modal.zoom-appear {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-transform: none;
          transform: none;
  opacity: 0;
}
.ant-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.288);
  height: 100%;
  z-index: 1000;
  filter: alpha(opacity=50);
}
.ant-modal-mask-hidden {
  display: none;
}
.ant-modal-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  .ant-modal {
    width: auto !important;
    margin: 10px;
  }
  .vertical-center-modal .ant-modal {
    flex: 1 1;
  }
}
.ant-confirm .ant-modal-header {
  display: none;
}
.ant-confirm .ant-modal-close {
  display: none;
}
.ant-confirm .ant-modal-body {
  padding: 32px 32px 24px;
}
.ant-confirm-body-wrapper {
  zoom: 1;
}
.ant-confirm-body-wrapper:before,
.ant-confirm-body-wrapper:after {
  content: "";
  display: table;
}
.ant-confirm-body-wrapper:after {
  clear: both;
}
.ant-confirm-body .ant-confirm-title {
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  display: block;
  overflow: auto;
}
.ant-confirm-body .ant-confirm-content {
  margin-left: 38px;
  font-size: 12px;
  color: #333;
  margin-top: 8px;
}
.ant-confirm-body > .anticon {
  font-size: 22px;
  margin-right: 16px;
  float: left;
}
.ant-confirm .ant-confirm-btns {
  margin-top: 24px;
  float: right;
}
.ant-confirm .ant-confirm-btns button + button {
  margin-left: 8px;
  margin-bottom: 0;
}
.ant-confirm-error .ant-confirm-body > .anticon {
  color: #f5222d;
}
.ant-confirm-warning .ant-confirm-body > .anticon,
.ant-confirm-confirm .ant-confirm-body > .anticon {
  color: #faad14;
}
.ant-confirm-info .ant-confirm-body > .anticon {
  color: #1890ff;
}
.ant-confirm-success .ant-confirm-body > .anticon {
  color: #52c41a;
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.ant-spin {
  font-family: "Monospaced Number", "Microsoft YaHei", "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #29BECE;
  vertical-align: middle;
  text-align: center;
  opacity: 0;
  position: absolute;
  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);
  display: none;
}
.ant-spin-spinning {
  opacity: 1;
  position: static;
  display: inline-block;
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
  display: block;
  position: absolute;
  height: 100%;
  max-height: 320px;
  width: 100%;
  z-index: 4;
}
.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: 6px;
  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: 3px;
}
.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: 12px;
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  margin-top: -26px;
}
.ant-spin-container {
  position: relative;
  zoom: 1;
}
.ant-spin-container:before,
.ant-spin-container:after {
  content: "";
  display: table;
}
.ant-spin-container:after {
  clear: both;
}
.ant-spin-blur {
  pointer-events: none;
  user-select: none;
  overflow: hidden;
  opacity: 0.7;
  -webkit-filter: blur(0.5px);
  filter: blur(0.5px);
  /* autoprefixer: off */
  filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
}
.ant-spin-blur:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  opacity: 0.3;
  transition: all 0.3s;
  z-index: 10;
}
.ant-spin-tip {
  color: rgba(0, 0, 0, 0.45);
}
.ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.ant-spin-dot i {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background-color: #29BECE;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
  display: block;
  position: absolute;
  opacity: 0.3;
  -webkit-animation: antSpinMove 1s infinite linear alternate;
          animation: antSpinMove 1s infinite linear alternate;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.ant-spin-dot i:nth-child(1) {
  left: 0;
  top: 0;
}
.ant-spin-dot i:nth-child(2) {
  right: 0;
  top: 0;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.ant-spin-dot i:nth-child(3) {
  right: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.ant-spin-dot i:nth-child(4) {
  left: 0;
  bottom: 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;
  width: 14px;
  height: 14px;
}
.ant-spin-sm .ant-spin-dot i {
  width: 6px;
  height: 6px;
}
.ant-spin-lg .ant-spin-dot {
  font-size: 32px;
  width: 32px;
  height: 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 declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.components-exception-index-exception {
  display: flex;
  align-items: center;
  height: 100%;
}
.components-exception-index-exception .components-exception-index-img-block {
  flex: 0 0 62.5%;
  width: 62.5%;
  padding-right: 152px;
  zoom: 1;
}
.components-exception-index-exception .components-exception-index-img-block:before,
.components-exception-index-exception .components-exception-index-img-block:after {
  content: ' ';
  display: table;
}
.components-exception-index-exception .components-exception-index-img-block:after {
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}
.components-exception-index-exception .components-exception-index-img-ele {
  height: 360px;
  width: 100%;
  max-width: 430px;
  float: right;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
.components-exception-index-exception .components-exception-index-content {
  flex: auto;
}
.components-exception-index-exception .components-exception-index-content h1 {
  color: #434e59;
  font-size: 72px;
  font-weight: 600;
  line-height: 72px;
  margin-bottom: 24px;
}
.components-exception-index-exception .components-exception-index-content .components-exception-index-desc {
  color: rgba(0, 0, 0, 0.45);
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
}
.components-exception-index-exception .components-exception-index-content .components-exception-index-actions button:not(:last-child) {
  margin-right: 8px;
}
@media screen and (max-width: 1200px) {
  .components-exception-index-exception .components-exception-index-img-block {
    padding-right: 88px;
  }
}
@media screen and (max-width: 576px) {
  .components-exception-index-exception {
    display: block;
    text-align: center;
  }
  .components-exception-index-exception .components-exception-index-img-block {
    padding-right: 0;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 480px) {
  .components-exception-index-exception .components-exception-index-img-block {
    margin-bottom: -24px;
    overflow: hidden;
  }
}

/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */

