/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.arco-breadcrumb {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-2);
  font-size: 14px;
}
.arco-breadcrumb-icon {
  color: var(--color-text-2);
}
.arco-breadcrumb-item {
  display: inline-block;
  padding: 0 4px;
  color: var(--color-text-2);
  line-height: 24px;
  vertical-align: middle;
}
.arco-breadcrumb-item > .arco-icon {
  color: var(--color-text-3);
}
.arco-breadcrumb-item a {
  display: inline-block;
  margin: 0 -4px;
  padding: 0 4px;
  color: var(--color-text-2);
  text-decoration: none;
  border-radius: var(--border-radius-small);
  background-color: transparent;
}
.arco-breadcrumb-item a:hover {
  color: rgb(var(--link-6));
  background-color: var(--color-fill-2);
}
.arco-breadcrumb-item:last-child {
  color: var(--color-text-1);
  font-weight: 500;
}
.arco-breadcrumb-item-ellipses {
  position: relative;
  top: -3px;
  display: inline-block;
  padding: 0 4px;
  color: var(--color-text-2);
}
.arco-breadcrumb-item-separator {
  display: inline-block;
  margin: 0 4px;
  color: var(--color-text-4);
  line-height: 24px;
  vertical-align: middle;
}
.arco-breadcrumb-item-with-dropdown {
  cursor: pointer;
}
.arco-breadcrumb-item-dropdown-icon {
  margin-left: 4px;
  color: var(--color-text-2);
  font-size: 12px;
}
.arco-breadcrumb-item-dropdown-icon-active svg {
  transform: rotate(180deg);
}
.container-breadcrumb[data-v-82683290] {
  margin: 16px 0;
  padding-left: 20px;
}
.container-breadcrumb .breadcrumb-link[data-v-82683290] {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.container-breadcrumb .breadcrumb-link[data-v-82683290]:hover {
  color: rgb(var(--arcoblue-6));
}
.container-breadcrumb[data-v-82683290] .arco-breadcrumb-item {
  color: rgb(var(--gray-6));
}
.container-breadcrumb[data-v-82683290] .arco-breadcrumb-item:last-child {
  color: rgb(var(--gray-8));
}
/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.arco-drawer-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
}
.arco-drawer-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-mask-bg);
}
.arco-drawer {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: auto;
  line-height: 1.5715;
  background-color: var(--color-bg-3);
}
.arco-drawer-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--color-neutral-3);
}
.arco-drawer-header .arco-drawer-title {
  margin-right: auto;
  color: var(--color-text-1);
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}
.arco-drawer-header .arco-drawer-close-btn {
  margin-left: 8px;
  color: var(--color-text-1);
  font-size: 12px;
  cursor: pointer;
}
.arco-drawer-footer {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 16px 16px;
  text-align: right;
  border-top: 1px solid var(--color-neutral-3);
}
.arco-drawer-footer > .arco-btn {
  margin-left: 12px;
}
.arco-drawer-body {
  position: relative;
  flex: 1;
  box-sizing: border-box;
  height: 100%;
  padding: 12px 16px;
  overflow: auto;
  color: var(--color-text-1);
}
.fade-drawer-enter-from,
.fade-drawer-appear-from {
  opacity: 0;
}
.fade-drawer-enter-to,
.fade-drawer-appear-to {
  opacity: 1;
}
.fade-drawer-enter-active,
.fade-drawer-appear-active {
  transition: opacity 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.fade-drawer-leave-from {
  opacity: 1;
}
.fade-drawer-leave-to {
  opacity: 0;
}
.fade-drawer-leave-active {
  transition: opacity 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-left-drawer-enter-from,
.slide-left-drawer-appear-from {
  transform: translateX(-100%);
}
.slide-left-drawer-enter-to,
.slide-left-drawer-appear-to {
  transform: translateX(0);
}
.slide-left-drawer-enter-active,
.slide-left-drawer-appear-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-left-drawer-leave-from {
  transform: translateX(0);
}
.slide-left-drawer-leave-to {
  transform: translateX(-100%);
}
.slide-left-drawer-leave-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-right-drawer-enter-from,
.slide-right-drawer-appear-from {
  transform: translateX(100%);
}
.slide-right-drawer-enter-to,
.slide-right-drawer-appear-to {
  transform: translateX(0);
}
.slide-right-drawer-enter-active,
.slide-right-drawer-appear-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-right-drawer-leave-from {
  transform: translateX(0);
}
.slide-right-drawer-leave-to {
  transform: translateX(100%);
}
.slide-right-drawer-leave-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-top-drawer-enter,
.slide-top-drawer-appear {
  transform: translateY(-100%);
}
.slide-top-drawer-enter-from,
.slide-top-drawer-appear-from {
  transform: translateY(-100%);
}
.slide-top-drawer-enter-to,
.slide-top-drawer-appear-to {
  transform: translateY(0);
}
.slide-top-drawer-enter-active,
.slide-top-drawer-appear-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-top-drawer-leave-from {
  transform: translateY(0);
}
.slide-top-drawer-leave-to {
  transform: translateY(-100%);
}
.slide-top-drawer-leave-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-bottom-drawer-enter-from,
.slide-bottom-drawer-appear-from {
  transform: translateY(100%);
}
.slide-bottom-drawer-enter-to,
.slide-bottom-drawer-appear-to {
  transform: translateY(0);
}
.slide-bottom-drawer-enter-active,
.slide-bottom-drawer-appear-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slide-bottom-drawer-leave-from {
  transform: translateY(0);
}
.slide-bottom-drawer-leave-to {
  transform: translateY(100%);
}
.slide-bottom-drawer-leave-active {
  transition: transform 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
/*****************************************************
 * type: info / warning / error /success
 *****************************************************/
.arco-alert {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 15px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5715;
  text-align: left;
  border-radius: var(--border-radius-small);
}
.arco-alert-with-title {
  align-items: flex-start;
  padding: 15px 15px;
}
.arco-alert-center {
  justify-content: center;
}
.arco-alert-center .arco-alert-body {
  flex: initial;
}
.arco-alert-normal {
  background-color: var(--color-neutral-2);
  border: 1px solid transparent;
}
.arco-alert-info {
  background-color: var(--color-primary-light-1);
  border: 1px solid transparent;
}
.arco-alert-success {
  background-color: var(--color-success-light-1);
  border: 1px solid transparent;
}
.arco-alert-warning {
  background-color: var(--color-warning-light-1);
  border: 1px solid transparent;
}
.arco-alert-error {
  background-color: var(--color-danger-light-1);
  border: 1px solid transparent;
}
.arco-alert-banner {
  border: none;
  border-radius: 0;
}
.arco-alert-body {
  position: relative;
  flex: 1;
}
.arco-alert-title {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
.arco-alert-normal .arco-alert-title {
  color: var(--color-text-1);
}
.arco-alert-normal .arco-alert-content {
  color: var(--color-text-1);
}
.arco-alert-normal.arco-alert-with-title .arco-alert-content {
  color: var(--color-text-2);
}
.arco-alert-info .arco-alert-title {
  color: var(--color-text-1);
}
.arco-alert-info .arco-alert-content {
  color: var(--color-text-1);
}
.arco-alert-info.arco-alert-with-title .arco-alert-content {
  color: var(--color-text-2);
}
.arco-alert-success .arco-alert-title {
  color: var(--color-text-1);
}
.arco-alert-success .arco-alert-content {
  color: var(--color-text-1);
}
.arco-alert-success.arco-alert-with-title .arco-alert-content {
  color: var(--color-text-2);
}
.arco-alert-warning .arco-alert-title {
  color: var(--color-text-1);
}
.arco-alert-warning .arco-alert-content {
  color: var(--color-text-1);
}
.arco-alert-warning.arco-alert-with-title .arco-alert-content {
  color: var(--color-text-2);
}
.arco-alert-error .arco-alert-title {
  color: var(--color-text-1);
}
.arco-alert-error .arco-alert-content {
  color: var(--color-text-1);
}
.arco-alert-error.arco-alert-with-title .arco-alert-content {
  color: var(--color-text-2);
}
.arco-alert-icon {
  margin-right: 8px;
}
.arco-alert-icon svg {
  font-size: 16px;
  vertical-align: -3px;
}
.arco-alert-with-title .arco-alert-icon svg {
  font-size: 18px;
  vertical-align: -5px;
}
.arco-alert-normal .arco-alert-icon svg {
  color: var(--color-neutral-4);
}
.arco-alert-info .arco-alert-icon svg {
  color: rgb(var(--primary-6));
}
.arco-alert-success .arco-alert-icon svg {
  color: rgb(var(--success-6));
}
.arco-alert-warning .arco-alert-icon svg {
  color: rgb(var(--warning-6));
}
.arco-alert-error .arco-alert-icon svg {
  color: rgb(var(--danger-6));
}
.arco-alert-close-btn {
  top: 4px;
  right: 0;
  box-sizing: border-box;
  margin-left: 8px;
  padding: 0;
  color: var(--color-text-2);
  font-size: 12px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: color 0.1s cubic-bezier(0, 0, 1, 1);
}
.arco-alert-close-btn:hover {
  color: var(--color-text-1);
}
.arco-alert-action + .arco-alert-close-btn {
  margin-left: 8px;
}
.arco-alert-action {
  margin-left: 8px;
}
.arco-alert-with-title .arco-alert-close-btn {
  margin-top: 0;
  margin-right: 0;
}
/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.arco-message-list {
  position: fixed;
  z-index: 1003;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  pointer-events: none;
  left: 0;
}
.arco-message-list-top {
  top: 40px;
}
.arco-message-list-bottom {
  bottom: 40px;
}
.arco-message {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px 16px 10px 16px;
  overflow: hidden;
  line-height: 1;
  text-align: center;
  list-style: none;
  background-color: var(--color-bg-popup);
  border: 1px solid var(--color-neutral-3);
  border-radius: var(--border-radius-small);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.1s cubic-bezier(0, 0, 1, 1);
  pointer-events: auto;
}
.arco-message-icon {
  display: inline-block;
  margin-right: 8px;
  color: var(--color-text-1);
  font-size: 20px;
  vertical-align: middle;
  animation: arco-msg-fade 0.1s cubic-bezier(0, 0, 1, 1), arco-msg-fade 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.arco-message-content {
  font-size: 14px;
  color: var(--color-text-1);
  vertical-align: middle;
}
.arco-message-info {
  background-color: var(--color-bg-popup);
  border-color: var(--color-neutral-3);
}
.arco-message-info .arco-message-icon {
  color: rgb(var(--primary-6));
}
.arco-message-info .arco-message-content {
  color: var(--color-text-1);
}
.arco-message-success {
  background-color: var(--color-bg-popup);
  border-color: var(--color-neutral-3);
}
.arco-message-success .arco-message-icon {
  color: rgb(var(--success-6));
}
.arco-message-success .arco-message-content {
  color: var(--color-text-1);
}
.arco-message-warning {
  background-color: var(--color-bg-popup);
  border-color: var(--color-neutral-3);
}
.arco-message-warning .arco-message-icon {
  color: rgb(var(--warning-6));
}
.arco-message-warning .arco-message-content {
  color: var(--color-text-1);
}
.arco-message-error {
  background-color: var(--color-bg-popup);
  border-color: var(--color-neutral-3);
}
.arco-message-error .arco-message-icon {
  color: rgb(var(--danger-6));
}
.arco-message-error .arco-message-content {
  color: var(--color-text-1);
}
.arco-message-loading {
  background-color: var(--color-bg-popup);
  border-color: var(--color-neutral-3);
}
.arco-message-loading .arco-message-icon {
  color: rgb(var(--primary-6));
}
.arco-message-loading .arco-message-content {
  color: var(--color-text-1);
}
.arco-message-close-btn {
  margin-left: 8px;
  color: var(--color-text-1);
  font-size: 12px;
}
.arco-message .arco-icon-hover.arco-message-icon-hover::before {
  width: 20px;
  height: 20px;
}
.fade-message-enter-from,
.fade-message-appear-from {
  opacity: 0;
}
.fade-message-enter-to,
.fade-message-appear-to {
  opacity: 1;
}
.fade-message-enter-active,
.fade-message-appear-active {
  transition: opacity 0.1s cubic-bezier(0, 0, 1, 1);
}
.fade-message-leave-from {
  opacity: 1;
}
.fade-message-leave-to {
  opacity: 0;
}
.fade-message-leave-active {
  position: absolute;
}
.flip-list-move {
  transition: transform 0.8s ease;
}
@keyframes arco-msg-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes arco-msg-scale {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.switch-slide-text-enter-from {
  left: -100% !important;
}
.switch-slide-text-enter-to {
  left: 8px !important;
}
.switch-slide-text-enter-active {
  transition: left 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.switch-slide-text-leave-from {
  left: 100% !important;
}
.switch-slide-text-leave-to {
  left: 26px !important;
}
.switch-slide-text-leave-active {
  transition: left 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.arco-switch {
  position: relative;
  box-sizing: border-box;
  min-width: 40px;
  height: 24px;
  padding: 0;
  overflow: hidden;
  line-height: 24px;
  vertical-align: middle;
  background-color: var(--color-fill-4);
  border: none;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.arco-switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: var(--color-neutral-3);
  font-size: 12px;
  background-color: var(--color-bg-white);
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.arco-switch-checked {
  background-color: rgb(var(--primary-6));
}
.arco-switch-checked .arco-switch-handle {
  left: calc(100% - 16px - 4px);
  color: rgb(var(--primary-6));
}
.arco-switch[disabled] .arco-switch-handle {
  color: var(--color-fill-2);
}
.arco-switch[disabled].arco-switch-checked .arco-switch-handle {
  color: var(--color-primary-light-3);
}
.arco-switch[disabled] .arco-switch-handle {
  color: var(--color-fill-2);
}
.arco-switch[disabled].arco-switch-checked .arco-switch-handle {
  color: var(--color-primary-light-3);
}
.arco-switch-text-holder {
  margin: 0 8px 0 26px;
  font-size: 12px;
  opacity: 0;
}
.arco-switch-text {
  position: absolute;
  top: 0;
  left: 26px;
  color: var(--color-white);
  font-size: 12px;
}
.arco-switch-checked .arco-switch-text-holder {
  margin: 0 26px 0 8px;
}
.arco-switch-checked .arco-switch-text {
  left: 8px;
  color: var(--color-white);
}
.arco-switch[disabled] {
  background-color: var(--color-fill-2);
  cursor: not-allowed;
}
.arco-switch[disabled] .arco-switch-text {
  color: var(--color-white);
}
.arco-switch[disabled].arco-switch-checked {
  background-color: var(--color-primary-light-3);
}
.arco-switch[disabled].arco-switch-checked .arco-switch-text {
  color: var(--color-white);
}
.arco-switch-loading {
  background-color: var(--color-fill-2);
}
.arco-switch-loading .arco-switch-handle {
  color: var(--color-neutral-3);
}
.arco-switch-loading .arco-switch-text {
  color: var(--color-white);
}
.arco-switch-loading.arco-switch-checked {
  background-color: var(--color-primary-light-3);
}
.arco-switch-loading.arco-switch-checked .arco-switch-handle {
  color: var(--color-primary-light-3);
}
.arco-switch-loading.arco-switch-checked .arco-switch-text {
  color: var(--color-primary-light-1);
}
.arco-switch-small {
  min-width: 28px;
  height: 16px;
  line-height: 16px;
}
.arco-switch-small.arco-switch-checked {
  padding-left: -2px;
}
.arco-switch-small .arco-switch-handle {
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 8px;
}
.arco-switch-small .arco-switch-handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.66667);
}
.arco-switch-small.arco-switch-checked .arco-switch-handle {
  left: calc(100% - 12px - 2px);
}
.arco-switch-type-round {
  min-width: 40px;
  border-radius: var(--border-radius-small);
}
.arco-switch-type-round .arco-switch-handle {
  border-radius: 2px;
}
.arco-switch-type-round.arco-switch-small {
  min-width: 28px;
  height: 16px;
  line-height: 16px;
  border-radius: 2px;
}
.arco-switch-type-round.arco-switch-small .arco-switch-handle {
  border-radius: 1px;
}
.arco-switch-type-line {
  min-width: 36px;
  overflow: unset;
  background-color: transparent;
}
.arco-switch-type-line::after {
  display: block;
  width: 100%;
  height: 6px;
  background-color: var(--color-fill-4);
  border-radius: 3px;
  transition: background-color 0.2s cubic-bezier(0.34, 0.69, 0.1, 1);
  content: '';
}
.arco-switch-type-line .arco-switch-handle {
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--color-bg-white);
  border-radius: 10px;
  box-shadow: 0 1px 3px var(--color-neutral-6);
}
.arco-switch-type-line.arco-switch-checked {
  background-color: transparent;
}
.arco-switch-type-line.arco-switch-checked::after {
  background-color: rgb(var(--primary-6));
}
.arco-switch-type-line.arco-switch-custom-color {
  --custom-color: var(--color-fill-4);
}
.arco-switch-type-line.arco-switch-custom-color::after {
  background-color: var(--custom-color);
}
.arco-switch-type-line.arco-switch-custom-color.arco-switch-checked {
  --custom-color: rgb(var(--primary-6));
}
.arco-switch-type-line.arco-switch-checked .arco-switch-handle {
  left: calc(100% - 20px);
}
.arco-switch-type-line[disabled] {
  background-color: transparent;
  cursor: not-allowed;
}
.arco-switch-type-line[disabled]::after {
  background-color: var(--color-fill-2);
}
.arco-switch-type-line[disabled].arco-switch-checked {
  background-color: transparent;
}
.arco-switch-type-line[disabled].arco-switch-checked::after {
  background-color: var(--color-primary-light-3);
}
.arco-switch-type-line.arco-switch-loading {
  background-color: transparent;
}
.arco-switch-type-line.arco-switch-loading::after {
  background-color: var(--color-fill-2);
}
.arco-switch-type-line.arco-switch-loading.arco-switch-checked {
  background-color: transparent;
}
.arco-switch-type-line.arco-switch-loading.arco-switch-checked::after {
  background-color: var(--color-primary-light-3);
}
.arco-switch-type-line.arco-switch-small {
  min-width: 28px;
  height: 16px;
  line-height: 16px;
}
.arco-switch-type-line.arco-switch-small.arco-switch-checked {
  padding-left: 0px;
}
.arco-switch-type-line.arco-switch-small .arco-switch-handle {
  top: 0px;
  width: 16px;
  height: 16px;
  border-radius: 8px;
}
.arco-switch-type-line.arco-switch-small .arco-switch-handle-icon {
  transform: translate(-50%, -50%) scale(1);
}
.arco-switch-type-line.arco-switch-small.arco-switch-checked .arco-switch-handle {
  left: calc(100% - 16px - 0px);
}
/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
/******** 基础配置项 end *******/
/******** 基础配置项 end *******/
/******** 高级配置项 *******/
/******** 高级配置项 end *******/
.arco-input-number {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--border-radius-small);
}
.arco-input-number-step-button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  color: var(--color-text-2);
  background-color: var(--color-fill-2);
  cursor: pointer;
  user-select: none;
  transition: all 0.1s cubic-bezier(0, 0, 1, 1);
}
.arco-input-number-step-button:hover {
  background-color: var(--color-fill-3);
  border-color: var(--color-fill-3);
}
.arco-input-number-step-button:active {
  background-color: var(--color-fill-4);
  border-color: var(--color-fill-4);
}
.arco-input-number-step-button:disabled {
  color: var(--color-text-4);
  background-color: var(--color-fill-2);
  cursor: not-allowed;
}
.arco-input-number-step-button:disabled:hover,
.arco-input-number-step-button:disabled:active {
  background-color: var(--color-fill-2);
  border-color: var(--color-neutral-3);
}
.arco-input-number .arco-input-wrapper {
  position: relative;
}
.arco-input-number-prefix,
.arco-input-number-suffix {
  transition: all 0.1s cubic-bezier(0, 0, 1, 1);
}
.arco-input-number-mode-embed .arco-input-number-step {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  width: 18px;
  overflow: hidden;
  border-radius: 1px;
  opacity: 0;
  transition: all 0.1s cubic-bezier(0, 0, 1, 1);
}
.arco-input-number-mode-embed .arco-input-number-step .arco-input-number-step-button {
  width: 100%;
  height: 50%;
  font-size: 10px;
  border: none;
  border-color: var(--color-neutral-3);
}
.arco-input-number-mode-embed .arco-input-suffix {
  justify-content: flex-end;
  min-width: 6px;
}
.arco-input-number-mode-embed .arco-input-suffix-has-feedback {
  min-width: 32px;
}
.arco-input-number-mode-embed .arco-input-suffix-has-feedback .arco-input-number-step {
  right: 30px;
}
.arco-input-number-mode-embed:not(.arco-input-disabled):not(.arco-input-outer-disabled):hover .arco-input-suffix:has(.arco-input-number-suffix),
.arco-input-number-mode-embed:not(.arco-input-disabled):not(.arco-input-outer-disabled):focus-within .arco-input-suffix:has(.arco-input-number-suffix) {
  padding-left: 4px;
}
.arco-input-number-mode-embed:not(.arco-input-disabled):not(.arco-input-outer-disabled):hover .arco-input-number-step,
.arco-input-number-mode-embed:not(.arco-input-disabled):not(.arco-input-outer-disabled):focus-within .arco-input-number-step {
  opacity: 1;
}
.arco-input-number-mode-embed:not(.arco-input-disabled):not(.arco-input-outer-disabled):hover .arco-input-number-suffix,
.arco-input-number-mode-embed:not(.arco-input-disabled):not(.arco-input-outer-disabled):focus-within .arco-input-number-suffix {
  opacity: 0;
  pointer-events: none;
}
.arco-input-number-mode-embed.arco-input-wrapper:not(.arco-input-focus) .arco-input-number-step-button:not(.arco-input-number-step-button-disabled):hover {
  background-color: var(--color-fill-4);
}
.arco-input-number-mode-button .arco-input-prepend,
.arco-input-number-mode-button .arco-input-append {
  padding: 0;
  border: none;
}
.arco-input-number-mode-button .arco-input-prepend .arco-input-number-step-button {
  border-right: 1px solid transparent;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.arco-input-number-mode-button .arco-input-prepend .arco-input-number-step-button:not(.arco-input-number-mode-button .arco-input-prepend .arco-input-number-step-button:active) {
  border-right-color: var(--color-neutral-3);
}
.arco-input-number-mode-button .arco-input-append .arco-input-number-step-button {
  border-left: 1px solid transparent;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.arco-input-number-mode-button .arco-input-append .arco-input-number-step-button:not(.arco-input-number-mode-button .arco-input-append .arco-input-number-step-button:active) {
  border-left-color: var(--color-neutral-3);
}
.arco-input-number-readonly .arco-input-number-step-button {
  color: var(--color-text-4);
  pointer-events: none;
}
.block[data-v-5ac9e7c6] {
  margin-bottom: 24px;
}
.title[data-v-5ac9e7c6] {
  margin: 10px 0;
  padding: 0;
  font-size: 14px;
}
.switch-wrapper[data-v-5ac9e7c6] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
}
.fixed-settings[data-v-dd827eee] {
  position: fixed;
  top: 280px;
  right: 0;
}
.fixed-settings svg[data-v-dd827eee] {
  font-size: 18px;
  vertical-align: -4px;
}
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/******** borderSize *******/
/******** borderStyle *******/
/******** radius *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontSize *******/
/******** fontWeight ********/
/******** Primary *******/
/******** success *******/
/******** warning *******/
/******** danger *******/
/******** link *******/
/******** radius *******/
/********* icon hover *********/
.arco-modal-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.arco-modal-mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-mask-bg);
}
.arco-modal-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  text-align: center;
}
.arco-modal-wrapper.arco-modal-wrapper-align-center {
  white-space: nowrap;
}
.arco-modal-wrapper.arco-modal-wrapper-align-center::after {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.arco-modal-wrapper.arco-modal-wrapper-align-center .arco-modal {
  top: 0;
  vertical-align: middle;
}
.arco-modal-wrapper.arco-modal-wrapper-moved {
  text-align: left;
}
.arco-modal-wrapper.arco-modal-wrapper-moved .arco-modal {
  top: 0;
  vertical-align: top;
}
.arco-modal {
  position: relative;
  top: 100px;
  display: inline-block;
  width: 520px;
  margin: 0 auto;
  line-height: 1.5715;
  white-space: initial;
  text-align: left;
  background-color: var(--color-bg-3);
  border-radius: var(--border-radius-medium);
}
.arco-modal-draggable .arco-modal-header {
  cursor: move;
}
.arco-modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid var(--color-neutral-3);
}
.arco-modal-header .arco-modal-title {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.arco-modal-header .arco-modal-title-align-start {
  justify-content: flex-start;
}
.arco-modal-header .arco-modal-title-align-center {
  justify-content: center;
}
.arco-modal-body {
  position: relative;
  padding: 24px 20px;
  overflow: auto;
  color: var(--color-text-1);
  font-size: 14px;
}
.arco-modal-footer {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 20px;
  text-align: right;
  border-top: 1px solid var(--color-neutral-3);
}
.arco-modal-footer > .arco-btn:not(:nth-child(1)) {
  margin-left: 12px;
}
.arco-modal-close-btn {
  margin-left: -12px;
  color: var(--color-text-1);
  font-size: 12px;
  cursor: pointer;
}
.arco-modal-title {
  color: var(--color-text-1);
  font-weight: 500;
  font-size: 16px;
}
.arco-modal-title-icon {
  margin-right: 10px;
  font-size: 18px;
  vertical-align: -0.15em;
}
.arco-modal-title-icon .arco-icon-info-circle-fill {
  color: rgb(var(--primary-6));
}
.arco-modal-title-icon .arco-icon-check-circle-fill {
  color: rgb(var(--success-6));
}
.arco-modal-title-icon .arco-icon-exclamation-circle-fill {
  color: rgb(var(--warning-6));
}
.arco-modal-title-icon .arco-icon-close-circle-fill {
  color: rgb(var(--danger-6));
}
.arco-modal-simple {
  width: 400px;
  padding: 24px 32px 32px;
}
.arco-modal-simple .arco-modal-header,
.arco-modal-simple .arco-modal-footer {
  height: unset;
  padding: 0;
  border: none;
}
.arco-modal-simple .arco-modal-header {
  margin-bottom: 24px;
}
.arco-modal-simple .arco-modal-title {
  justify-content: center;
}
.arco-modal-simple .arco-modal-title-align-start {
  justify-content: flex-start;
}
.arco-modal-simple .arco-modal-title-align-center {
  justify-content: center;
}
.arco-modal-simple .arco-modal-footer {
  margin-top: 32px;
  text-align: center;
}
.arco-modal-simple .arco-modal-body {
  padding: 0;
}
.arco-modal-fullscreen {
  top: 0;
  display: inline-flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.arco-modal-fullscreen .arco-modal-footer {
  margin-top: auto;
}
.zoom-modal-enter-from,
.zoom-modal-appear-from {
  transform: scale(0.5, 0.5);
  opacity: 0;
}
.zoom-modal-enter-to,
.zoom-modal-appear-to {
  transform: scale(1, 1);
  opacity: 1;
}
.zoom-modal-enter-active,
.zoom-modal-appear-active {
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1), transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.zoom-modal-leave-from {
  transform: scale(1, 1);
  opacity: 1;
}
.zoom-modal-leave-to {
  transform: scale(0.5, 0.5);
  opacity: 0;
}
.zoom-modal-leave-active {
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1), transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.fade-modal-enter-from,
.fade-modal-appear-from {
  opacity: 0;
}
.fade-modal-enter-to,
.fade-modal-appear-to {
  opacity: 1;
}
.fade-modal-enter-active,
.fade-modal-appear-active {
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.fade-modal-leave-from {
  opacity: 1;
}
.fade-modal-leave-to {
  opacity: 0;
}
.fade-modal-leave-active {
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
body {
  --color-menu-dark-bg: #000c17;
  --color-menu-dark-hover: #165dff;
}
body .arco-menu-dark .arco-menu-item,
body .arco-menu-dark .arco-menu-group-title,
body .arco-menu-dark .arco-menu-pop-header,
body .arco-menu-dark .arco-menu-inline-header {
  color: #fff;
}
body .arco-menu-dark .arco-menu-item *,
body .arco-menu-dark .arco-menu-group-title *,
body .arco-menu-dark .arco-menu-pop-header *,
body .arco-menu-dark .arco-menu-inline-header * {
  color: #fff;
}
body .arco-menu-dark .arco-menu-inline-header.arco-menu-selected {
  color: #fff;
}
body .arco-menu-dark .arco-menu-inline-header.arco-menu-selected * {
  color: #fff;
}
body .arco-menu-dark .arco-menu-inline-header:hover {
  color: #fff;
}
body .arco-menu-dark .arco-menu-inline-header:hover * {
  color: #fff;
}
body .arco-menu-dark .arco-menu-item:hover {
  color: #fff;
}
body .arco-menu-dark .arco-menu-vertical .arco-menu-inline-header {
  line-height: 46px;
}
* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  background-color: var(--color-bg-1);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.echarts-tooltip-diy {
  background: linear-gradient(304.17deg, rgba(253, 254, 255, 0.6) -6.04%, rgba(244, 247, 252, 0.6) 85.2%) !important;
  border: none !important;
  backdrop-filter: blur(10px) !important;
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 6px !important;
}
.echarts-tooltip-diy .content-panel {
  display: flex;
  justify-content: space-between;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.8);
  width: 164px;
  height: 32px;
  line-height: 32px;
  box-shadow: 6px 0px 20px rgba(34, 87, 188, 0.1);
  border-radius: 4px;
  margin-bottom: 4px;
}
.echarts-tooltip-diy .tooltip-title {
  margin: 0 0 10px 0;
}
.echarts-tooltip-diy p {
  margin: 0;
}
.echarts-tooltip-diy .tooltip-title,
.echarts-tooltip-diy .tooltip-value {
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  text-align: right;
  color: #1d2129;
  font-weight: bold;
}
.echarts-tooltip-diy .tooltip-item-icon {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.general-card {
  border-radius: 4px;
  border: none;
}
.general-card > .arco-card-header {
  height: auto;
  padding: 20px;
  border: none;
}
.general-card > .arco-card-body {
  padding: 0 20px 20px 20px;
}
.split-line {
  border-color: rgb(var(--gray-2));
}
.arco-table-cell .circle {
  display: inline-block;
  margin-right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgb(var(--blue-6));
}
.arco-table-cell .circle.pass {
  background-color: rgb(var(--green-6));
}
