:focus-visible {
  outline: none;
}
@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}

:focus-visible {
  outline: none;
}
.antd-ext-list-select {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5715;
  font-feature-settings: "tnum";
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.antd-ext-list-select.antd-ext-list-select-disabled {
  cursor: not-allowed;
  background-color: #f5f5f5;
}
.antd-ext-list-select.antd-ext-list-select-disabled .antd-ext-list-select-selector {
  cursor: not-allowed;
  background-color: #f5f5f5;
}
.antd-ext-list-select-selector {
  position: relative;
  padding: 0 11px;
  width: 100%;
  height: 32px;
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}
.antd-ext-list-select-selector::-moz-placeholder {
  opacity: 1;
}
.antd-ext-list-select-selector::placeholder {
  color: #bfbfbf;
}
.antd-ext-list-select:not(.antd-ext-list-select-disabled):hover .antd-ext-list-select-selector {
  border-color: rgba(24, 144, 255, 0.75);
}
.antd-ext-list-select-hidden {
  display: none;
}
.antd-ext-list-select-arrow,
.antd-ext-list-select-loading,
.antd-ext-list-select-clear {
  display: inline-block;
  font-style: normal;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 11px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  line-height: 1;
  text-align: center;
  transition: all 0.2s;
}
.antd-ext-list-select-arrow.anticon,
.antd-ext-list-select-loading.anticon,
.antd-ext-list-select-clear.anticon {
  color: rgba(0, 0, 0, 0.25);
}
.antd-ext-list-select-clear {
  opacity: 0;
}
.antd-ext-list-select-clear:hover {
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.antd-ext-list-select.antd-ext-list-select-allow-clear:not(.antd-ext-list-select-disabled):hover .antd-ext-list-select-arrow {
  opacity: 0;
}
.antd-ext-list-select.antd-ext-list-select-allow-clear:not(.antd-ext-list-select-disabled):hover .antd-ext-list-select-clear {
  opacity: 1;
}
.antd-ext-list-select.antd-ext-list-select-show-loading:not(.antd-ext-list-select-disabled):hover .antd-ext-list-select-arrow {
  opacity: 0;
}
.antd-ext-list-select.antd-ext-list-select-show-loading:not(.antd-ext-list-select-disabled):hover .antd-ext-list-select-loading {
  opacity: 1;
}
.antd-ext-list-select.antd-ext-list-select-lg .antd-ext-list-select-selector {
  height: 40px;
}
.antd-ext-list-select.antd-ext-list-select-sm .antd-ext-list-select-selector {
  height: 24px;
}
.antd-ext-list-select-dropdown {
  position: relative;
  padding-bottom: 2px;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  text-align: left;
}
.antd-ext-list-select-dropdown-hidden {
  display: none;
}
.antd-ext-list-select-dropdown.slide-up-enter.slide-up-enter-active {
  animation-name: antSlideUpIn;
  animation-duration: 0.2s;
  animation-fill-mode: both;
}
.antd-ext-list-select-dropdown.slide-up-leave.slide-up-leave-active {
  animation-name: antSlideUpOut;
  animation-duration: 0.2s;
  animation-fill-mode: both;
}
.antd-ext-list-select-dropdown .ant-spin-container {
  max-height: 250px;
  overflow-y: scroll;
}
.antd-ext-list-select-option {
  display: flex;
  padding: 8px 12px 8px 8px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}
.antd-ext-list-select-option-label {
  flex: 1;
}
.antd-ext-list-select-option-code {
  margin-top: 4px;
  color: #999999;
}
.antd-ext-list-select-option-extra {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #999999;
}
.antd-ext-list-select-option-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.antd-ext-list-select-option-selected {
  background-color: rgba(24, 144, 255, 0.1);
}
.antd-ext-list-select-option:not(.antd-ext-list-select-option-disabled):not(.antd-ext-list-select-option-selected):hover {
  background-color: #f0f0f0;
}
.antd-ext-list-select-option:last-of-type {
  border-bottom: none;
}

:focus-visible {
  outline: none;
}
@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
@keyframes roll-rotate-and-bound {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(7px) rotate(22.5deg);
  }
  50% {
    transform: translateY(14px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 24px;
  }
  75% {
    transform: translateY(7px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
    border-bottom-right-radius: 3px;
  }
}
@keyframes roll-rotate-and-bound-lg {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 32px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
    border-bottom-right-radius: 3px;
  }
}
@keyframes roll-rotate-and-bound-sm {
  17% {
    border-bottom-right-radius: 2px;
  }
  25% {
    transform: translateY(5px) rotate(22.5deg);
  }
  50% {
    transform: translateY(10px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 16px;
  }
  75% {
    transform: translateY(5px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
    border-bottom-right-radius: 2px;
  }
}
@keyframes shadow {
  0%,
  100% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.414, 1);
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cube-grid-scale {
  0%,
  60%,
  100% {
    transform: scale3D(1, 1, 1);
  }
  30% {
    transform: scale3D(0, 0, 1);
  }
}
@keyframes cube-fill-rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cube-fill-height {
  0% {
    height: 0;
  }
  25% {
    height: 0;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes dot-bound-item {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
}
.antd-ext-spin {
  position: relative;
}
.antd-ext-spin-container {
  opacity: 1;
  transition: opacity 0.3s;
}
.antd-ext-spin-spin-blur {
  clear: both;
  overflow: hidden;
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
.antd-ext-spin-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 400px;
  z-index: 4;
  animation: show 0.3s ease-in-out forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}
.antd-ext-spin-roll-box {
  margin: auto;
  position: absolute;
  width: 36px;
  height: 36px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.antd-ext-spin-roll-box:before {
  content: '';
  width: inherit;
  height: 3px;
  background: rgba(177, 177, 177, 0.7);
  position: absolute;
  top: 46px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}
.antd-ext-spin-roll-box:after {
  content: '';
  width: inherit;
  height: inherit;
  background: #1890ff;
  animation: roll-rotate-and-bound 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.antd-ext-spin-roll.antd-ext-spin-roll-small .antd-ext-spin-roll-box {
  width: 24px;
  height: 24px;
}
.antd-ext-spin-roll.antd-ext-spin-roll-small .antd-ext-spin-roll-box:before {
  top: 31px;
  height: 3px;
}
.antd-ext-spin-roll.antd-ext-spin-roll-small .antd-ext-spin-roll-box:after {
  animation: roll-rotate-and-bound-sm 0.5s linear infinite;
}
.antd-ext-spin-roll.antd-ext-spin-roll-large .antd-ext-spin-roll-box {
  width: 48px;
  height: 48px;
}
.antd-ext-spin-roll.antd-ext-spin-roll-large .antd-ext-spin-roll-box:before {
  height: 4px;
  top: 58px;
}
.antd-ext-spin-roll.antd-ext-spin-roll-large .antd-ext-spin-roll-box:after {
  animation: roll-rotate-and-bound-lg 0.5s linear infinite;
}
.antd-ext-spin-cube-gird-box {
  width: 36px;
  height: 36px;
}
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item {
  width: 33.3333%;
  height: 33.3333%;
  background-color: #1890ff;
  float: left;
  animation: cube-grid-scale 2s infinite ease-in-out;
}
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(1) {
  animation-delay: 0s;
}
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(2),
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(4) {
  animation-delay: 0.1s;
}
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(3),
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(5),
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(7) {
  animation-delay: 0.2s;
}
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(6),
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(8) {
  animation-delay: 0.3s;
}
.antd-ext-spin-cube-gird-box .antd-ext-spin-cube-gird-cube-item:nth-child(9) {
  animation-delay: 0.4s;
}
.antd-ext-spin-cube-gird.antd-ext-spin-cube-gird-large .antd-ext-spin-cube-gird-box {
  width: 48px;
  height: 48px;
}
.antd-ext-spin-cube-gird.antd-ext-spin-cube-gird-small .antd-ext-spin-cube-gird-box {
  width: 24px;
  height: 24px;
}
.antd-ext-spin-cube-fill-box {
  width: 36px;
  height: 36px;
  border: 4px solid #1890ff;
  animation: cube-fill-rotate 4s infinite ease;
}
.antd-ext-spin-cube-fill-box .antd-ext-spin-cube-fill-inner {
  background-color: #1890ff;
  animation: cube-fill-height 4s infinite ease-in;
}
.antd-ext-spin-cube-fill.antd-ext-spin-cube-fill-large .antd-ext-spin-cube-fill-box {
  width: 48px;
  height: 48px;
}
.antd-ext-spin-cube-fill.antd-ext-spin-cube-fill-small .antd-ext-spin-cube-fill-box {
  width: 24px;
  height: 24px;
}
.antd-ext-spin-dot-bound-box {
  text-align: center;
}
.antd-ext-spin-dot-bound-box .antd-ext-spin-dot-bound-dot {
  display: inline-block;
  margin: 0 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1890ff;
  animation: dot-bound-item 2s infinite ease;
}
.antd-ext-spin-dot-bound-box .antd-ext-spin-dot-bound-dot:nth-child(2) {
  animation-delay: 0.2s;
}
.antd-ext-spin-dot-bound-box .antd-ext-spin-dot-bound-dot:nth-child(3) {
  animation-delay: 0.4s;
}
.antd-ext-spin-dot-bound-box .antd-ext-spin-dot-bound-dot:nth-child(4) {
  animation-delay: 0.6s;
}
.antd-ext-spin-dot-bound.antd-ext-spin-dot-bound-small .antd-ext-spin-dot-bound-dot {
  width: 4px;
  height: 4px;
}
.antd-ext-spin-dot-bound.antd-ext-spin-dot-bound-large .antd-ext-spin-dot-bound-dot {
  width: 12px;
  height: 12px;
}

@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}

:focus-visible {
  outline: none;
}

:focus-visible {
  outline: none;
}
@keyframes antSlideUpIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes antSlideUpOut {
  0% {
    transform: scaleY(1);
    transform-origin: 0 0;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 0 0;
    opacity: 0;
  }
}
@keyframes antSlideDownIn {
  0% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
}
@keyframes antSlideDownOut {
  0% {
    transform: scaleY(1);
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    transform: scaleY(0.8);
    transform-origin: 100% 100%;
    opacity: 0;
  }
}
.antd-ext-year-picker {
  padding: 4px 11px 4px;
  display: inline-flex;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  transition: border 0.3s, box-shadow 0.3s;
}
.antd-ext-year-picker:hover,
.antd-ext-year-picker-focused {
  border-color: #1890ff;
}
.antd-ext-year-picker-focused {
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
  outline: 0;
}
.antd-ext-year-picker-dropdown {
  position: absolute;
  z-index: 1060;
}
.antd-ext-year-picker-dropdown-hidden {
  display: none;
}
.antd-ext-year-picker-dropdown.slide-up-enter.slide-up-enter-active.antd-ext-year-picker-dropdown-placement-topLeft,
.antd-ext-year-picker-dropdown.slide-up-enter.slide-up-enter-active.antd-ext-year-picker-dropdown-placement-topRight,
.antd-ext-year-picker-dropdown.slide-up-appear.slide-up-appear-active.antd-ext-year-picker-dropdown-placement-topLeft,
.antd-ext-year-picker-dropdown.slide-up-appear.slide-up-appear-active.antd-ext-year-picker-dropdown-placement-topRight {
  animation-name: antSlideDownIn;
}
.antd-ext-year-picker-dropdown.slide-up-enter.slide-up-enter-active.antd-ext-year-picker-dropdown-placement-bottomLeft,
.antd-ext-year-picker-dropdown.slide-up-enter.slide-up-enter-active.antd-ext-year-picker-dropdown-placement-bottomRight,
.antd-ext-year-picker-dropdown.slide-up-appear.slide-up-appear-active.antd-ext-year-picker-dropdown-placement-bottomLeft,
.antd-ext-year-picker-dropdown.slide-up-appear.slide-up-appear-active.antd-ext-year-picker-dropdown-placement-bottomRight {
  animation-name: antSlideUpIn;
}
.antd-ext-year-picker-dropdown.slide-up-leave.slide-up-leave-active.antd-ext-year-picker-dropdown-placement-topLeft,
.antd-ext-year-picker-dropdown.slide-up-leave.slide-up-leave-active.antd-ext-year-picker-dropdown-placement-topRight {
  animation-name: antSlideDownOut;
}
.antd-ext-year-picker-dropdown.slide-up-leave.slide-up-leave-active.antd-ext-year-picker-dropdown-placement-bottomLeft,
.antd-ext-year-picker-dropdown.slide-up-leave.slide-up-leave-active.antd-ext-year-picker-dropdown-placement-bottomRight {
  animation-name: antSlideUpOut;
}
.antd-ext-year-picker-year-panel,
.antd-ext-year-picker-decade-panel {
  background-color: white;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}
.antd-ext-year-picker-header {
  display: flex;
  padding: 8px;
}
.antd-ext-year-picker-header .antd-ext-year-picker-decade-btn {
  font-size: 16px;
}
.antd-ext-year-picker-header .antd-ext-year-picker-decade-btn:hover {
  color: #1890ff;
}
.antd-ext-year-picker-header-super-prev-btn,
.antd-ext-year-picker-header-super-next-btn {
  opacity: 0.4;
}
.antd-ext-year-picker-header-super-prev-btn:hover,
.antd-ext-year-picker-header-super-next-btn:hover {
  opacity: 0.8;
}
.antd-ext-year-picker-header button {
  border: none;
  cursor: pointer;
  background-color: white;
}
.antd-ext-year-picker-header-view {
  flex: 1;
  text-align: center;
}
.antd-ext-year-picker-content .antd-ext-year-picker-cell {
  width: 80px;
  height: 48px;
  text-align: center;
}
.antd-ext-year-picker-content .antd-ext-year-picker-cell-start,
.antd-ext-year-picker-content .antd-ext-year-picker-cell-end {
  color: rgba(0, 0, 0, 0.25);
}
.antd-ext-year-picker-content .antd-ext-year-picker-cell-selected div {
  color: white !important;
  background-color: #1890ff !important;
}
.antd-ext-year-picker-content .antd-ext-year-picker-cell:hover > div {
  background-color: #e6f7ff;
}
.antd-ext-year-picker-content .antd-ext-year-picker-cell-in-view {
  color: rgba(0, 0, 0, 0.85);
}
.antd-ext-year-picker-content .antd-ext-year-picker-cell-inner {
  display: inline-block;
  padding: 0 4px;
  line-height: 24px;
  cursor: pointer;
  border-radius: 2px;
}
.antd-ext-year-picker-input {
  position: relative;
}
.antd-ext-year-picker-input input {
  border: none;
}
.antd-ext-year-picker-input input::-moz-placeholder {
  opacity: 1;
}
.antd-ext-year-picker-input input::placeholder {
  color: #bfbfbf;
}
.antd-ext-year-picker-input input:placeholder-shown {
  text-overflow: ellipsis;
}
.antd-ext-year-picker-input input :focus-visible {
  outline: none !important;
}
.antd-ext-year-picker-input .antd-ext-year-picker-clear {
  position: absolute;
  top: 50%;
  right: 4px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 1;
  font-size: 12px;
  background: #fff;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s;
}
.antd-ext-year-picker-input:hover .antd-ext-year-picker-clear {
  opacity: 1;
}
.antd-ext-year-picker.antd-ext-year-picker-disabled {
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: #d9d9d9;
}
.antd-ext-year-picker.antd-ext-year-picker-disabled input[disabled] {
  cursor: not-allowed;
}
.antd-ext-year-picker-large {
  padding: 6.5px 11px 6.5px;
}
.antd-ext-year-picker-large .antd-ext-year-picker-input > input {
  font-size: 16px;
}
.antd-ext-year-picker-small {
  padding: 0px 7px 0px;
}
