/* windicss layer components */
* > .enter-x:nth-child(1) {
  transform: translateX(50px);
}
* > .-enter-x:nth-child(1) {
  transform: translateX(-50px);
}
* > .enter-x:nth-child(1), * > .-enter-x:nth-child(1) {
  z-index: 9;
  opacity: 0;
  animation: enter-x-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
* > .enter-x:nth-child(2) {
  transform: translateX(50px);
}
* > .-enter-x:nth-child(2) {
  transform: translateX(-50px);
}
* > .enter-x:nth-child(2), * > .-enter-x:nth-child(2) {
  z-index: 8;
  opacity: 0;
  animation: enter-x-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
* > .enter-x:nth-child(3) {
  transform: translateX(50px);
}
* > .-enter-x:nth-child(3) {
  transform: translateX(-50px);
}
* > .enter-x:nth-child(3), * > .-enter-x:nth-child(3) {
  z-index: 7;
  opacity: 0;
  animation: enter-x-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
* > .enter-x:nth-child(4) {
  transform: translateX(50px);
}
* > .-enter-x:nth-child(4) {
  transform: translateX(-50px);
}
* > .enter-x:nth-child(4), * > .-enter-x:nth-child(4) {
  z-index: 6;
  opacity: 0;
  animation: enter-x-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
* > .enter-x:nth-child(5) {
  transform: translateX(50px);
}
* > .-enter-x:nth-child(5) {
  transform: translateX(-50px);
}
* > .enter-x:nth-child(5), * > .-enter-x:nth-child(5) {
  z-index: 5;
  opacity: 0;
  animation: enter-x-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
* > .enter-y:nth-child(1) {
  transform: translateX(50px);
}
* > .-enter-y:nth-child(1) {
  transform: translateX(-50px);
}
* > .enter-y:nth-child(1), * > .-enter-y:nth-child(1) {
  z-index: 9;
  opacity: 0;
  animation: enter-y-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}
* > .enter-y:nth-child(2) {
  transform: translateX(50px);
}
* > .-enter-y:nth-child(2) {
  transform: translateX(-50px);
}
* > .enter-y:nth-child(2), * > .-enter-y:nth-child(2) {
  z-index: 8;
  opacity: 0;
  animation: enter-y-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}
* > .enter-y:nth-child(3) {
  transform: translateX(50px);
}
* > .-enter-y:nth-child(3) {
  transform: translateX(-50px);
}
* > .enter-y:nth-child(3), * > .-enter-y:nth-child(3) {
  z-index: 7;
  opacity: 0;
  animation: enter-y-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
* > .enter-y:nth-child(4) {
  transform: translateX(50px);
}
* > .-enter-y:nth-child(4) {
  transform: translateX(-50px);
}
* > .enter-y:nth-child(4), * > .-enter-y:nth-child(4) {
  z-index: 6;
  opacity: 0;
  animation: enter-y-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.4s;
}
* > .enter-y:nth-child(5) {
  transform: translateX(50px);
}
* > .-enter-y:nth-child(5) {
  transform: translateX(-50px);
}
* > .enter-y:nth-child(5), * > .-enter-y:nth-child(5) {
  z-index: 5;
  opacity: 0;
  animation: enter-y-animation 0.4s ease-in-out 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
@keyframes enter-x-animation {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes enter-y-animation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.expand-transition-enter-active, .expand-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.expand-transition-move {
  transition: transform 0.4s;
}
.expand-x-transition-enter-active, .expand-x-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.expand-x-transition-move {
  transition: transform 0.4s;
}
.fade-transition-enter-active, .fade-transition-leave-active {
  transition: opacity 0.2s ease-in-out;
}
.fade-transition-enter-from, .fade-transition-leave-to {
  opacity: 0;
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.2s ease-in-out;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}
.fade-slide-leave-active, .fade-slide-enter-active {
  transition: all 0.3s;
}
.fade-slide-enter-from {
  opacity: 0;
  transform: translateX(-30px);
}
.fade-slide-leave-to {
  opacity: 0;
  transform: translateX(30px);
}
.fade-bottom-enter-active, .fade-bottom-leave-active {
  transition: opacity 0.25s, transform 0.3s;
}
.fade-bottom-enter-from {
  opacity: 0;
  transform: translateY(-10%);
}
.fade-bottom-leave-to {
  opacity: 0;
  transform: translateY(10%);
}
.fade-scale-leave-active, .fade-scale-enter-active {
  transition: all 0.28s;
}
.fade-scale-enter-from {
  opacity: 0;
  transform: scale(1.2);
}
.fade-scale-leave-to {
  opacity: 0;
  transform: scale(0.8);
}
.fade-top-enter-active, .fade-top-leave-active {
  transition: opacity 0.2s, transform 0.25s;
}
.fade-top-enter-from {
  opacity: 0;
  transform: translateY(8%);
}
.fade-top-leave-to {
  opacity: 0;
  transform: translateY(-8%);
}
.scale-transition-enter-active, .scale-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.scale-transition-move {
  transition: transform 0.4s;
}
.scale-transition-enter-from, .scale-transition-leave, .scale-transition-leave-to {
  opacity: 0;
  transform: scale(0);
}
.scale-rotate-transition-enter-active, .scale-rotate-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.scale-rotate-transition-move {
  transition: transform 0.4s;
}
.scale-rotate-transition-enter-from, .scale-rotate-transition-leave, .scale-rotate-transition-leave-to {
  opacity: 0;
  transform: scale(0) rotate(-45deg);
}
.slide-y-transition-enter-active, .slide-y-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.slide-y-transition-move {
  transition: transform 0.4s;
}
.slide-y-transition-enter-from, .slide-y-transition-leave-to {
  opacity: 0;
  transform: translateY(-15px);
}
.slide-y-reverse-transition-enter-active, .slide-y-reverse-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.slide-y-reverse-transition-move {
  transition: transform 0.4s;
}
.slide-y-reverse-transition-enter-from, .slide-y-reverse-transition-leave-to {
  opacity: 0;
  transform: translateY(15px);
}
.slide-x-transition-enter-active, .slide-x-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.slide-x-transition-move {
  transition: transform 0.4s;
}
.slide-x-transition-enter-from, .slide-x-transition-leave-to {
  opacity: 0;
  transform: translateX(-15px);
}
.slide-x-reverse-transition-enter-active, .slide-x-reverse-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.slide-x-reverse-transition-move {
  transition: transform 0.4s;
}
.slide-x-reverse-transition-enter-from, .slide-x-reverse-transition-leave-to {
  opacity: 0;
  transform: translateX(15px);
}
.scroll-y-transition-enter-active, .scroll-y-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.scroll-y-transition-move {
  transition: transform 0.4s;
}
.scroll-y-transition-enter-from, .scroll-y-transition-leave-to {
  opacity: 0;
}
.scroll-y-transition-enter-from {
  transform: translateY(-15px);
}
.scroll-y-transition-leave-to {
  transform: translateY(15px);
}
.scroll-y-reverse-transition-enter-active, .scroll-y-reverse-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.scroll-y-reverse-transition-move {
  transition: transform 0.4s;
}
.scroll-y-reverse-transition-enter-from, .scroll-y-reverse-transition-leave-to {
  opacity: 0;
}
.scroll-y-reverse-transition-enter-from {
  transform: translateY(15px);
}
.scroll-y-reverse-transition-leave-to {
  transform: translateY(-15px);
}
.scroll-x-transition-enter-active, .scroll-x-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.scroll-x-transition-move {
  transition: transform 0.4s;
}
.scroll-x-transition-enter-from, .scroll-x-transition-leave-to {
  opacity: 0;
}
.scroll-x-transition-enter-from {
  transform: translateX(-15px);
}
.scroll-x-transition-leave-to {
  transform: translateX(15px);
}
.scroll-x-reverse-transition-enter-active, .scroll-x-reverse-transition-leave-active {
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1) !important;
}
.scroll-x-reverse-transition-move {
  transition: transform 0.4s;
}
.scroll-x-reverse-transition-enter-from, .scroll-x-reverse-transition-leave-to {
  opacity: 0;
}
.scroll-x-reverse-transition-enter-from {
  transform: translateX(15px);
}
.scroll-x-reverse-transition-leave-to {
  transform: translateX(-15px);
}
.zoom-out-enter-active, .zoom-out-leave-active {
  transition: opacity 0.1 ease-in-out, transform 0.15s ease-out;
}
.zoom-out-enter-from, .zoom-out-leave-to {
  opacity: 0;
  transform: scale(0);
}
.zoom-fade-enter-active, .zoom-fade-leave-active {
  transition: transform 0.2s, opacity 0.3s ease-out;
}
.zoom-fade-enter-from {
  opacity: 0;
  transform: scale(0.92);
}
.zoom-fade-leave-to {
  opacity: 0;
  transform: scale(1.06);
}
.collapse-transition {
  transition: 0.2s height ease-in-out, 0.2s padding-top ease-in-out, 0.2s padding-bottom ease-in-out;
}
#app {
  width: 100%;
  height: 100%;
}
.v-no-copy {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 4px;
  height: 8px;
}
html[data-theme='light'] ::-webkit-scrollbar-track {
  background-color: #f0f2f5;
}
html[data-theme='light'] ::-webkit-scrollbar-corner {
  background-color: #f0f2f5;
}
[data-theme='dark'] ::-webkit-scrollbar-track {
  background-color: #272827;
}
[data-theme='dark'] ::-webkit-scrollbar-corner {
  background-color: #272827;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(144, 147, 153, 0.3);
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background-color: #b6b7b9;
}
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 2px;
  background-color: #1677ff;
  opacity: 0.75;
}
.page-content {
  height: 100%;
  overflow: hidden;
  padding: 10px;
  min-width: 980px;
}
.page-content .page-main {
  background: var(--vxe-table-body-background-color);
  box-sizing: border-box;
  border: 1px solid var(--vxe-table-border-color);
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  overflow: hidden;
  overflow-y: auto;
  border-radius: 0 0 8px 8px;
}
.page-content .no-border {
  border: none;
}
.page-content .toolbar {
  position: relative;
  z-index: 2;
}
.divider-left-line {
  border-left: 1px solid var(--vxe-table-border-color) !important;
}
html[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev, html[data-theme='dark'] .ant-pagination.mini .ant-pagination-next, html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item {
  background-color: rgba(255, 255, 255, 0.04) !important;
}
html[data-theme='dark'] .ant-pagination.mini .ant-pagination-prev a, html[data-theme='dark'] .ant-pagination.mini .ant-pagination-next a, html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item a {
  color: #8b949e !important;
}
html[data-theme='dark'] .ant-pagination.mini .ant-select-arrow {
  color: rgba(0, 0, 0, 0.45) !important;
}
html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item-active {
  background-color: #1677ff !important;
  border: none;
  border-radius: none !important;
}
html[data-theme='dark'] .ant-pagination.mini .ant-pagination-item-active a {
  color: #fff !important;
}
.ant-pagination.mini .ant-pagination-prev, .ant-pagination.mini .ant-pagination-next {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.85);
  border: 1px solid;
}
.ant-pagination.mini .ant-pagination-prev:hover a, .ant-pagination.mini .ant-pagination-next:hover a, .ant-pagination.mini .ant-pagination-item:focus a, .ant-pagination.mini .ant-pagination-item:hover a {
  color: #1677ff;
}
.ant-pagination.mini .ant-pagination-prev, .ant-pagination.mini .ant-pagination-next, .ant-pagination.mini .ant-pagination-item {
  margin: 0 4px !important;
  background-color: #f4f4f5 !important;
  border: none;
  border-radius: none !important;
}
.ant-pagination.mini .ant-pagination-prev a, .ant-pagination.mini .ant-pagination-next a, .ant-pagination.mini .ant-pagination-item a {
  margin-top: 1px;
  color: #606266;
}
.ant-pagination.mini .ant-pagination-prev:last-child, .ant-pagination.mini .ant-pagination-next:last-child, .ant-pagination.mini .ant-pagination-item:last-child {
  margin-right: 0 !important;
}
.ant-pagination.mini .ant-pagination-item-active {
  background-color: #1677ff !important;
  border: none;
  border-radius: none !important;
}
.ant-pagination.mini .ant-pagination-item-active a {
  color: #fff !important;
}
.ant-pagination.mini .ant-pagination-options {
  margin-left: 12px;
}
.ant-pagination.mini .ant-pagination-options-quick-jumper input {
  height: 22px;
  margin: 0 6px;
  line-height: 22px;
  text-align: center;
}
.ant-pagination.mini .ant-select-arrow {
  color: #cececd;
}
.ant-pagination-disabled {
  display: none !important;
}
.ant-input-number {
  min-width: auto;
}
[data-theme='dark'] .ant-btn:not(:hover):not(:focus):not(.ant-btn-text), [data-theme='dark'] .ant-checkbox-inner:not(:hover):not(:focus), [data-theme='dark'] .ant-radio-inner:not(:hover):not(:focus), [data-theme='dark'] .ant-picker:not(.ant-picker-focused):not(:hover), [data-theme='dark'] .ant-select:not(.ant-select-customize-input) .ant-select-selector:not(:hover), [data-theme='dark'] .ant-input-affix-wrapper:not(:hover):not(.ant-input-affix-wrapper-focused), [data-theme='dark'] .ant-input:not(:hover):not(:active):not(:focus) {
  border-color: #424242;
}
[data-theme='light'] .ant-input[disabled], [data-theme='light'] .ant-input-disabled, [data-theme='light'] .ant-picker-input > input[disabled], [data-theme='light'] .ant-input-affix-wrapper-disabled {
  color: rgba(0, 0, 0, 0.65);
}
.ant-input-affix-wrapper .ant-input-suffix {
  right: 9px;
}
.ant-tree .ant-tree-node-content-wrapper {
  border-radius: 4px !important;
}
.ant-input-clear-icon {
  margin-right: 5px;
}
.ant-input-affix-wrapper-textarea-with-clear-btn {
  padding: 0 !important;
}
.ant-input-affix-wrapper-textarea-with-clear-btn textarea.ant-input {
  padding: 4px;
}
.ant-picker .ant-picker-input input, .ant-input-affix-wrapper .ant-input {
  box-shadow: none !important;
  border: none !important;
  text-align: inherit !important;
  color: inherit !important;
  background: transparent !important;
}
.ant-input-number-input-wrap .ant-input-number-input {
  padding-right: 22px;
  text-align: inherit;
}
.ant-btn-link:hover, .ant-btn-link:focus, .ant-btn-link:active {
  border-color: transparent !important;
}
.ant-btn-primary {
  color: #fff;
  background-color: #1677ff;
}
.ant-btn-primary:hover, .ant-btn-primary:focus {
  color: #fff;
  background-color: #3086ff;
}
.ant-btn-primary:not(.ant-btn-background-ghost):not([disabled]) {
  color: #fff;
}
.ant-btn-default {
  color: #606266;
  background-color: #fff;
  border-color: #cececd;
}
.ant-btn-default:hover, .ant-btn-default:focus {
  color: #1677ff;
  background-color: #fff;
  border-color: #1677ff;
}
[data-theme='light'] .ant-btn.ant-btn-link.is-disabled {
  color: rgba(0, 0, 0, 0.25);
  text-shadow: none;
  cursor: not-allowed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none;
}
[data-theme='dark'] .ant-btn.ant-btn-link.is-disabled {
  color: rgba(255, 255, 255, 0.25) !important;
  text-shadow: none;
  cursor: not-allowed !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none;
}
.ant-btn-success.ant-btn-link:not([disabled='disabled']) {
  color: #55D187;
}
.ant-btn-success.ant-btn-link:not([disabled='disabled']):hover, .ant-btn-success.ant-btn-link:not([disabled='disabled']):focus {
  color: #7ddca3;
  border-color: transparent;
}
.ant-btn-success.ant-btn-link:not([disabled='disabled']):active {
  color: #34bf6c;
}
.ant-btn-success.ant-btn-link.ant-btn-loading::before, .ant-btn-warning.ant-btn-link.ant-btn-loading::before, .ant-btn-error.ant-btn-link.ant-btn-loading::before, .ant-btn-background-ghost.ant-btn-link.ant-btn-loading::before, .ant-btn.ant-btn-link.ant-btn-loading::before {
  background: transparent;
}
.ant-btn-success:not(.ant-btn-link, .is-disabled) {
  color: #fff;
  background-color: #55D187;
  border-color: #55D187;
}
.ant-btn-success:not(.ant-btn-link, .is-disabled):hover, .ant-btn-success:not(.ant-btn-link, .is-disabled):focus {
  color: #fff;
  background-color: #7ddca3;
  border-color: #7ddca3;
}
.ant-btn-success:not(.ant-btn-link, .is-disabled):active {
  background-color: #34bf6c;
  border-color: #34bf6c;
}
.ant-btn-warning.ant-btn-link:not([disabled='disabled']) {
  color: #EFBD47;
}
.ant-btn-warning.ant-btn-link:not([disabled='disabled']):hover, .ant-btn-warning.ant-btn-link:not([disabled='disabled']):focus {
  color: #f3ce76;
  border-color: transparent;
}
.ant-btn-warning.ant-btn-link:not([disabled='disabled']):active {
  color: #ebac18;
}
.ant-btn-warning:not(.ant-btn-link, .is-disabled) {
  color: #fff;
  background-color: #EFBD47;
  border-color: #EFBD47;
}
.ant-btn-warning:not(.ant-btn-link, .is-disabled):hover, .ant-btn-warning:not(.ant-btn-link, .is-disabled):focus {
  color: #fff;
  background-color: #f3ce76;
  border-color: #f3ce76;
}
.ant-btn-warning:not(.ant-btn-link, .is-disabled):active {
  background-color: #ebac18;
  border-color: #ebac18;
}
.ant-btn-error.ant-btn-link:not([disabled='disabled']) {
  color: #ED6F6F;
}
.ant-btn-error.ant-btn-link:not([disabled='disabled']):hover, .ant-btn-error.ant-btn-link:not([disabled='disabled']):focus {
  color: #f39c9c;
  border-color: transparent;
}
.ant-btn-error.ant-btn-link:not([disabled='disabled']):active {
  color: #e74242;
}
.ant-btn-error:not(.ant-btn-link, .is-disabled) {
  color: #fff;
  background-color: #ED6F6F;
  border-color: #ED6F6F;
}
.ant-btn-error:not(.ant-btn-link, .is-disabled):hover, .ant-btn-error:not(.ant-btn-link, .is-disabled):focus {
  color: #fff;
  background-color: #f39c9c;
  border-color: #f39c9c;
}
.ant-btn-error:not(.ant-btn-link, .is-disabled):active {
  background-color: #e74242;
  border-color: #e74242;
}
.ant-btn-background-ghost {
  border-width: 1px;
  background-color: transparent !important;
}
.ant-btn-background-ghost[disabled], .ant-btn-background-ghost[disabled]:hover {
  color: rgba(255, 255, 255, 0.4) !important;
  background-color: transparent !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
.ant-btn-dashed.ant-btn-background-ghost, .ant-btn-default.ant-btn-background-ghost {
  color: #fff;
  border-color: #fff;
}
.ant-btn-dashed.ant-btn-background-ghost:hover, .ant-btn-default.ant-btn-background-ghost:hover, .ant-btn-dashed.ant-btn-background-ghost:focus, .ant-btn-default.ant-btn-background-ghost:focus {
  color: #ffffff;
  border-color: #ffffff;
}
.ant-btn-dashed.ant-btn-background-ghost:active, .ant-btn-default.ant-btn-background-ghost:active {
  color: #e6e6e6;
  border-color: #e6e6e6;
}
.ant-btn-dashed.ant-btn-background-ghost[disabled], .ant-btn-default.ant-btn-background-ghost[disabled], .ant-btn-dashed.ant-btn-background-ghost[disabled]:hover, .ant-btn-default.ant-btn-background-ghost[disabled]:hover {
  color: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
.ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link) {
  color: #55D187;
  background-color: transparent;
  border-color: #55D187;
  border-width: 1px;
}
.ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link):hover, .ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link):focus {
  color: #7ddca3 !important;
  border-color: #7ddca3;
}
.ant-btn-background-ghost.ant-btn-success:not(.ant-btn-link):active {
  color: #34bf6c;
  border-color: #34bf6c;
}
.ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link) {
  color: #EFBD47;
  background-color: transparent;
  border-color: #EFBD47;
  border-width: 1px;
}
.ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link):hover, .ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link):focus {
  color: #f3ce76 !important;
  border-color: #f3ce76;
}
.ant-btn-background-ghost.ant-btn-warning:not(.ant-btn-link):active {
  color: #ebac18;
  border-color: #ebac18;
}
.ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link) {
  color: #ED6F6F;
  background-color: transparent;
  border-color: #ED6F6F;
  border-width: 1px;
}
.ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link):hover, .ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link):focus {
  color: #f39c9c !important;
  border-color: #f39c9c;
}
.ant-btn-background-ghost.ant-btn-error:not(.ant-btn-link):active {
  color: #e74242;
  border-color: #e74242;
}
.ant-btn-ghost.ant-btn-link:not([disabled='disabled']) {
  color: #fff;
}
.ant-btn-ghost.ant-btn-link:not([disabled='disabled']):hover, .ant-btn-ghost.ant-btn-link:not([disabled='disabled']):focus {
  color: #ffffff;
  border-color: transparent;
}
.ant-checkbox-inner {
  border-radius: 3px !important;
}
[data-theme='light'] .ant-breadcrumb-link {
  color: #999 !important;
}
[data-theme='light'] .ant-breadcrumb-link a {
  color: rgba(0, 0, 0, 0.65) !important;
}
[data-theme='light'] .ant-breadcrumb-link a:hover {
  color: #1677ff !important;
}
[data-theme='light'] .ant-breadcrumb-separator {
  color: #999 !important;
}
[data-theme='dark'] .ant-breadcrumb, [data-theme='dark'] .ant-breadcrumb-link {
  color: rgba(255, 255, 255, 0.6) !important;
}
[data-theme='dark'] .ant-breadcrumb a, [data-theme='dark'] .ant-breadcrumb-link a {
  color: rgba(255, 255, 255, 0.8) !important;
}
[data-theme='dark'] .ant-breadcrumb a:hover, [data-theme='dark'] .ant-breadcrumb-link a:hover {
  color: #fff !important;
}
[data-theme='dark'] .ant-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.8) !important;
}
.ant-image-preview-root img {
  display: unset;
}
.ant-drawer {
  z-index: 999;
}
.ant-back-top {
  right: 20px;
  bottom: 20px;
}
.collapse-container__body > .ant-descriptions {
  margin-left: 6px;
}
.ant-image-preview-operations {
  background-color: rgba(0, 0, 0, 0.3);
}
.ant-popover {
  font-size: 0.875rem !important;
}
.ant-popover-content {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.ant-menu, .ant-tree, .ant-dropdown-menu-item, .ant-dropdown-menu-submenu-title, .ant-breadcrumb, .ant-tooltip, .ant-message, .ant-form-item, .ant-form-item-explain, .ant-picker, .ant-select, .ant-select-item, .ant-input-number-input, .vxe-input--inner, .ant-checkbox-wrapper, .ant-radio-wrapper, .ant-checkbox-group, .ant-picker-input > input, .ant-popover-message > .anticon, .ant-transfer, .ant-transfer-list-body, .ant-card, .ant-card-head, .ant-tabs, .ant-tabs-tab, .ant-notification-notice-description, .ant-input-affix-wrapper, .ant-input-group-addon, .ant-modal-confirm-content, .ant-picker-dropdown, .ant-radio-button-wrapper, .ant-collapse, .ant-popconfirm, .ant-popconfirm-message, .ant-popover-message-title, .ant-timeline-item, .ant-spin, .ant-modal-body, .ant-select-dropdown, .ant-drawer-body {
  font-size: 0.875rem !important;
}
.ant-divider-with-text, .ant-notification-notice-message, .ant-modal-confirm-title {
  font-size: 1rem !important;
}
.cke_reset_all, .ant-tag, .vxe-table--tooltip-wrapper, .ant-switch-inner {
  font-size: 0.75rem !important;
}
.ant-form label {
  font-size: 0.875rem !important;
}
.ant-btn {
  font-size: 0.875rem !important;
  padding: 0.1rem 15px !important;
}
.ant-input {
  font-size: 0.875rem !important;
  padding: 0.1rem 11px !important;
}
.ant-btn-sm {
  height: 1.5rem !important;
  padding: 0 7px !important;
}
.ant-input-search .ant-input-affix-wrapper {
  height: 32px !important;
}
.ant-btn-icon-only {
  padding: 2.4px 0 !important;
}
.modal-icon-warning {
  color: #EFBD47 !important;
}
.modal-icon-success {
  color: #55D187 !important;
}
.modal-icon-error {
  color: #ED6F6F !important;
}
.modal-icon-info {
  color: #1677ff !important;
}
.ant-checkbox-checked .ant-checkbox-inner::after, .ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  border-top: 0 !important;
  border-left: 0 !important;
}
.ant-tabs {
  overflow: visible !important;
}
.ant-tree-show-line .ant-tree-switcher {
  background: transparent !important;
}
html[data-theme='dark'] .ant-layout {
  background-color: #242424;
}
html {
  --vxe-border-radius: 8px !important;
  --vxe-button-round-border-radius-default: 8px !important;
  --vxe-button-round-border-radius-medium: 8px !important;
  --vxe-button-round-border-radius-small: 8px !important;
  --vxe-button-round-border-radius-mini: 8px !important;
  --vxe-table-cell-padding-left: 5px !important;
  --vxe-table-cell-padding-right: 5px !important;
  --vxe-font-size-default: 0.9375rem !important;
  --vxe-font-size: 0.875rem !important;
  --vxe-font-size-small: 0.8125rem !important;
  --vxe-font-size-medium: 0.875rem !important;
  --vxe-font-size-mini: 0.75rem !important;
  --vxe-checkbox-font-size-default: 0.9375rem !important;
  --vxe-checkbox-font-size-medium: 0.875rem !important;
  --vxe-checkbox-font-size-small: 0.7rem !important;
  --vxe-checkbox-font-size-mini: 0.75rem !important;
  --vxe-radio-font-size-default: 0.9375rem !important;
  --vxe-radio-font-size-medium: 0.875rem !important;
  --vxe-radio-font-size-small: 0.8125rem !important;
  --vxe-radio-font-size-mini: 0.75rem !important;
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html .vxe-button--dropdown-wrapper .vxe-button + .vxe-button.type--button {
  margin-left: 0 !important;
}
html .vxe-button.type--button:not(.is--circle) {
  padding: 0 1em;
}
html .vxe-table--render-default .fixed--hidden {
  visibility: visible;
}
html .vxe-table--render-default .vxe-cell--checkbox .vxe-checkbox--icon {
  color: #c4c7cf;
}
html .vxe-modal--wrapper.cx-right-abs-modal {
  position: absolute !important;
  height: 100%;
  top: 0;
  width: 100%;
}
html .vxe-modal--wrapper.cx-right-abs-modal .vxe-modal--box {
  position: absolute !important;
  left: auto !important;
  height: 100% !important;
  right: 0;
  top: 0 !important;
}
html .vxe-modal--wrapper.cx-right-abs-modal .vxe-modal--header {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}
html .vxe-modal--wrapper.cx-right-abs-modal .vxe-modal--header-title {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}
html .vxe-modal--wrapper.cx-right-abs-modal.is--maximize .vxe-modal--box {
  width: 100% !important;
}
html[data-theme='light'] {
  --vxe-table-border-radius: var(--van-cell-group-inset-radius) !important;
  --vxe-table-body-background-color: #fff !important;
  --vxe-table-footer-background-color: #fff !important;
  --vxe-table-border-color: #e8eaec !important;
  --vxe-table-header-background-color: #f8f8f8 !important;
  --vxe-pager-background-color: #f8f8f8 !important;
  --vxe-font-color: rgba(0, 0, 0, 0.87) !important;
  --vxe-table-header-font-color: rgba(0, 0, 0, 0.87) !important;
  --vxe-input-border-color: #dcdfe6 !important;
  --vxe-table-popup-border-color: #e8eaec !important;
  --vxe-input-background-color: #fff !important;
  --vxe-modal-header-background-color: #fff !important;
  --vxe-modal-border-color: #fff !important;
  --vxe-select-panel-background-color: #fff !important;
  --vxe-modal-body-background-color: #fff !important;
  --vxe-modal-customize-background-color: rgba(255, 251, 143) !important;
  --m-active-color: rgba(0, 0, 0, 0.85) !important;
  --M-chat-bg: #f5f5f5 !important;
  --M-quote-bg: #e8e8e8 !important;
  --M-helper-bg: white !important;
  --M-helper-font-color: black;
  --M-button-bg-color: white !important;
  --M-smart-input-bg: white;
  --M-smart-input-bottom: rgba(245, 245, 246);
  --M-active-bg: #cce2ff;
  --M-smart-input-hover: rgba(245, 246, 249);
  --M-Im-grey: rgba(0, 0, 0, 0.45);
  --M-IM-aquamarine: #576b95;
  --H-shadow-font-color: rgba(0, 0, 0, 0.1);
  --cx-tab-content-border-color: #f0f0f0;
  --cx-tag-back-color: #f5f5f5;
  --L-email-bg: #d1e5f4;
  --L-email-toolTip-bg: rgba(242, 243, 245, 0.5);
  --L-email-toolTip-color: rgba(126, 126, 126, 0.8);
  --L-email-color: black !important;
  --L-email-toolTip-top: black !important;
  --L-email-dropdown-link: #ccc !important;
  --L-email-focus: #4096ff !important;
  --L-email-shadow: #1677ff33 !important;
  --L-email-disabled-color: #666 !important;
  --E-border-right-color: #f0f0f0;
  --E-select-bg-color: #e6f4ff;
  --E-Upload-bg: #c4c4c4;
  --E-label-color: rgba(0, 0, 0, 0.45);
  --no-read-color: rgba(0, 0, 0, 0.85);
  --gantt-font-color: rgba(255, 255, 255, 0.9) !important;
  --logistics-label-color: #333 !important;
  --logistics-font-color: #666 !important;
  --L-email-read-bg: #c8c9cc !important;
}
html[data-theme='dark'] {
  --vxe-table-border-radius: var(--van-cell-group-inset-radius) !important;
  --vxe-table-body-background-color: #272827 !important;
  --vxe-table-footer-background-color: #272827 !important;
  --vxe-table-border-color: #3e4141 !important;
  --vxe-table-header-background-color: #242525 !important;
  --vxe-pager-background-color: #242525 !important;
  --vxe-modal-customize-background-color: rgba(255, 251, 143, 0.5) !important;
  --vxe-font-color: rgba(229, 224, 216, 0.88) !important;
  --vxe-table-header-font-color: rgba(229, 224, 216, 0.88) !important;
  --vxe-input-border-color: #454847 !important;
  --vxe-table-popup-border-color: #454847 !important;
  --vxe-input-background-color: #242525 !important;
  --vxe-select-panel-background-color: #242525 !important;
  --vxe-modal-body-background-color: #272827 !important;
  --vxe-modal-header-background-color: #272827 !important;
  --vxe-modal-border-color: #3e4141 !important;
  --vxe-font-disabled-color: rgba(255, 255, 255, 0.3);
  --vxe-loading-background-color: hsla(0, 0%, 100%, 0);
  --vxe-button-dropdown-panel-background-color: #1f1f1f !important;
  --vxe-radio-button-default-background-color: transparent !important;
  --m-active-color: #fff !important;
  --M-chat-bg: #272827 !important;
  --M-quote-bg: #272827 !important;
  --vxe-bg-c4: #c4c4c4 !important;
  --M-helper-bg: #3e4041 !important;
  --M-helper-font-color: white;
  --M-button-bg-color: #2d2d2d !important;
  --M-smart-input-bg: #272827;
  --M-smart-input-bottom: #3e413e;
  --M-active-bg: #3d7ed3;
  --M-smart-input-history: #2e2f31;
  --M-smart-input-hover: #494d57;
  --H-shadow-font-color: rgba(255, 255, 255, 0.1);
  --M-Im-grey: rgba(255, 255, 255, 0.3);
  --M-IM-aquamarine: #576b95;
  --cx-tab-content-border-color: #303030;
  --cx-tag-back-color: rgba(255, 255, 255, 0.08);
  --L-email-bg: #83c6fc !important;
  --L-email-color: #fff !important;
  --L-email-toolTip-bg: rgba(47, 48, 47);
  --L-email-toolTip-color: #c4c4c4 !important;
  --L-email-toolTip-top: #c4c4c4 !important;
  --L-email-dropdown-link: #3e4141 !important;
  --L-email-focus: #424242 !important;
  --L-email-shadow: #83c6fc !important;
  --L-email-disabled-color: rgba(255, 255, 255, 0.3);
  --vxe-input-disabled-color: rgba(255, 255, 255, 0.2) !important;
  --E-border-right-color: #303030;
  --E-select-bg-color: rgba(255, 255, 255, 0.08);
  --E-Upload-bg: #27282782;
  --E-label-color: #8b949e;
  --no-read-color: rgba(255, 255, 255, 0.65);
  --gantt-font-color: rgba(229, 224, 216, 0.88) !important;
  --logistics-label-color: rgba(229, 224, 216, 0.88) !important;
  --logistics-font-color: #888 !important;
  --L-email-read-bg: rgba(229, 224, 216, 0.88) !important;
}
[data-theme='dark'] .vxe-grid.is--loading > .vxe-table .vxe-loading {
  background-color: #000000 !important;
}
.vxe-table--filter-wrapper {
  overflow: hidden;
}
.bg-white {
  background-color: #fff !important;
}
html[data-theme='light'] .text-secondary {
  color: rgba(0, 0, 0, 0.45);
}
html[data-theme='light'] .ant-alert-success {
  background-color: #f6ffed;
  border: 1px solid #b7eb8f;
}
html[data-theme='light'] .ant-alert-error {
  background-color: #fff2f0;
  border: 1px solid #ffccc7;
}
html[data-theme='light'] .ant-alert-warning {
  background-color: #fffbe6;
  border: 1px solid #ffe58f;
}
html[data-theme='light'] :not(:root):fullscreen::backdrop {
  background-color: #f0f2f5 !important;
}
[data-theme='dark'] .text-secondary {
  color: #8b949e;
}
[data-theme='dark'] .ant-card-grid-hoverable:hover {
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.48), 0 6px 16px 0 rgba(0, 0, 0, 0.32), 0 9px 28px 8px rgba(0, 0, 0, 0.2);
}
[data-theme='dark'] .ant-card-grid {
  box-shadow: 1px 0 0 0 #434343, 0 1px 0 0 #434343, 1px 1px 0 0 #434343, 1px 0 0 0 #434343 inset, 0 1px 0 0 #434343 inset;
}
[data-theme='dark'] .ant-calendar-selected-day .ant-calendar-date {
  color: rgba(0, 0, 0, 0.8);
}
[data-theme='dark'] .ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
  color: rgba(0, 0, 0, 0.9);
}
[data-theme='dark'] .lf-mini-map {
  background-color: #272827 !important;
}
[data-theme='dark'] .lf-mini-map .lf-graph {
  background-color: #272827 !important;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  background-color: transparent;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
input:-moz-autofilled {
  box-shadow: none;
  -moz-box-shadow: none;
}
input:-ms-autofill {
  background-color: transparent;
}
input:-internal-autofill-selected {
  -webkit-text-fill-color: inherit;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent !important;
}
[data-theme='dark'] input:-webkit-autofill, [data-theme='dark'] input:-webkit-autofill:hover, [data-theme='dark'] input:-webkit-autofill:focus, [data-theme='dark'] input:-webkit-autofill:active {
  -webkit-text-fill-color: #c9d1d9 !important;
}
html, body {
  width: 100%;
  height: 100%;
  overflow: visible;
  overflow-x: hidden;
}
html.color-weak, body.color-weak {
  filter: invert(80%);
}
html.gray-mode, body.gray-mode {
  filter: grayscale(100%);
  filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
}
a:focus, a:active, button, div, svg, span {
  outline: none;
}
p {
  margin: 0 !important;
}/* windicss layer utilities */
.container {
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.border-primary {
  --tw-border-opacity: 1;
  border-color: rgba(22, 119, 255, var(--tw-border-opacity));
}
.hover\:border-primary:hover {
  --tw-border-opacity: 1;
  border-color: rgba(22, 119, 255, var(--tw-border-opacity));
}
.rounded-md {
  border-radius: 0.375rem;
}
.border-solid {
  border-style: solid;
}
.border\.value {
  border-width: 1px;
}
.border\:1px {
  border-width: 1px;
}
.border {
  border-width: 1px;
}
.border-t-0 {
  border-top-width: 0px;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-move {
  cursor: move;
}
.block {
  display: block;
}
.group:hover .group-hover\:block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
.table-row {
  display: table-row;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.list-item {
  display: list-item;
}
.hidden {
  display: none;
}
.group:hover .group-hover\:hidden {
  display: none;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.self-center {
  align-self: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-self-stretch {
  justify-self: stretch;
}
.flex-1 {
  flex: 1 1 0%;
}
.font-400 {
  font-weight: 400;
}
.font-800 {
  font-weight: 800;
}
.font-bold {
  font-weight: 700;
}
.h-full {
  height: 100%;
}
.\!h-full {
  height: 100% !important;
}
.h-screen {
  height: 100vh;
}
.h-16 {
  height: 4rem;
}
.h-2\/5 {
  height: 40%;
}
.h-22px {
  height: 22px;
}
.h-1em {
  height: 1em;
}
.h-100 {
  height: 25rem;
}
.h-24px {
  height: 24px;
}
.h-320px {
  height: 320px;
}
.h-16px {
  height: 16px;
}
.h-20px {
  height: 20px;
}
.h-77 {
  height: 19.25rem;
}
.text-color-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-0\.9rem {
  font-size: 0.9rem;
  line-height: 1;
}
.text-12px {
  font-size: 12px;
  line-height: 1;
}
.text-20px {
  font-size: 20px;
  line-height: 1;
}
.m-1\.651613 {
  margin: 0.412903rem;
}
.m-13\.212903 {
  margin: 3.303226rem;
}
.m-47\.896774 {
  margin: 11.974194rem;
}
.m-49\.548387 {
  margin: 12.387097rem;
}
.m-180\.705883 {
  margin: 45.176471rem;
}
.m-30\.117647-301\.17647h-60\.235294c-18\.070588 {
  margin: 4.517647rem;
}
.m-138\.541177 {
  margin: 34.635294rem;
}
.m-72\.282353 {
  margin: 18.070588rem;
}
.m-289\.129412 {
  margin: 72.282353rem;
}
.m-90\.352941 {
  margin: 22.588235rem;
}
.m-2 {
  margin: 0.5rem;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.mt-2px {
  margin-top: 2px;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mr-5px {
  margin-right: 5px;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mr-12px {
  margin-right: 12px;
}
.ml-4px {
  margin-left: 4px;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20px {
  margin-bottom: 20px;
}
.mt-5px {
  margin-top: 5px;
}
.ml-5px {
  margin-left: 5px;
}
.mt-3px {
  margin-top: 3px;
}
.mr-6px {
  margin-right: 6px;
}
.ml-6px {
  margin-left: 6px;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mt-20px {
  margin-top: 20px;
}
.mb-10px {
  margin-bottom: 10px;
}
.mr-20px {
  margin-right: 20px;
}
.ml-10px {
  margin-left: 10px;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-4px {
  margin-right: 4px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.ml-1px {
  margin-left: 1px;
}
.mr-8px {
  margin-right: 8px;
}
.\!mt-4 {
  margin-top: 1rem !important;
}
.ml-5 {
  margin-left: 1.25rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.ml-8px {
  margin-left: 8px;
}
.mr-10px {
  margin-right: 10px;
}
.mt-10px {
  margin-top: 10px;
}
.ml-4 {
  margin-left: 1rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mt-24px {
  margin-top: 24px;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mr-12 {
  margin-right: 3rem;
}
.max-w-80px {
  max-width: 80px;
}
.max-w-100px {
  max-width: 100px;
}
.max-w-280px {
  max-width: 280px;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-40px {
  min-height: 40px;
}
.min-w-64 {
  min-width: 16rem;
}
.opacity-100 {
  opacity: 1;
}
.opacity-50 {
  opacity: 0.5;
}
.outline {
  outline-style: solid;
}
.overflow-hidden {
  overflow: hidden;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-4px {
  padding: 4px;
}
.p-5 {
  padding: 1.25rem;
}
.p-8px {
  padding: 8px;
}
.px-10px {
  padding-left: 10px;
  padding-right: 10px;
}
.py-12px {
  padding-top: 12px;
  padding-bottom: 12px;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.px-8px {
  padding-left: 8px;
  padding-right: 8px;
}
.py-8px {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.px-6px {
  padding-left: 6px;
  padding-right: 6px;
}
.py-6px {
  padding-top: 6px;
  padding-bottom: 6px;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pl-10px {
  padding-left: 10px;
}
.pr-0 {
  padding-right: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pr-30px {
  padding-right: 30px;
}
.pt-5 {
  padding-top: 1.25rem;
}
.tab {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.expanded {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.\.tab {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.tableList\.find\(\(item\) {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.fullPath {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.path {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.groupIndex {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.data {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.rawData {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.cursor {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.query\.t {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.isActive {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.tab\.toolbarMenus\.length {
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.right-24px {
  right: 24px;
}
.top-10px {
  top: 10px;
}
.right-10px {
  right: 10px;
}
.left-2 {
  left: 0.5rem;
}
.top-1\.2 {
  top: 0.3rem;
}
.top-0 {
  top: 0px;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-5 {
  left: 1.25rem;
}
.top-5 {
  top: 1.25rem;
}
.bottom-5 {
  bottom: 1.25rem;
}
.top-3 {
  top: 0.75rem;
}
.right-7 {
  right: 1.75rem;
}
.-top-30 {
  top: -7.5rem;
}
.-top-3 {
  top: -0.75rem;
}
.right-15 {
  right: 3.75rem;
}
.top-3\.5 {
  top: 0.875rem;
}
.right-4 {
  right: 1rem;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0/0.1),0 1px 2px -1px rgb(0 0 0/0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0/0.1),0 2px 4px -2px rgb(0 0 0/0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-\[\#889399\] {
  --tw-text-opacity: 1;
  color: rgba(136, 147, 153, var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity));
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.uppercase {
  text-transform: uppercase;
}
.underline {
  text-decoration-line: underline;
}
.content-detail {
  content: "detail";
}
.content-wrap {
  content: "wrap";
}
.content-wrap-left {
  content: "wrap-left";
}
.content-wrap-right {
  content: "wrap-right";
}
.content-top {
  content: "top";
}
.content-top-img {
  content: "top-img";
}
.content-top-detail {
  content: "top-detail";
}
.content-field {
  content: "field";
}
.content-box {
  content: "box";
}
.content-left {
  content: "left";
}
.content-switch {
  content: "switch";
}
.content-right {
  content: "right";
}
.content-img {
  content: "img";
}
.content-type {
  content: "type";
}
.content-wrapper {
  content: "wrapper";
}
.content-item {
  content: "item";
}
.content-spin {
  content: "spin";
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.break-all {
  word-break: break-all;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.w-2\/5 {
  width: 40%;
}
.w-60 {
  width: 15rem;
}
.w-70px {
  width: 70px;
}
.w-50 {
  width: 12.5rem;
}
.w-1em {
  width: 1em;
}
.w-1\/8 {
  width: 12.5%;
}
.w-18px {
  width: 18px;
}
.w-24px {
  width: 24px;
}
.w-200px {
  width: 200px;
}
.w-16px {
  width: 16px;
}
.w-20px {
  width: 20px;
}
.z-2 {
  z-index: 2;
}
.z-1 {
  z-index: 1;
}
.z-100 {
  z-index: 100;
}
.gap-10px {
  grid-gap: 10px;
  gap: 10px;
}
.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-translate-z: 0;
  --tw-rotate: 0;
  --tw-rotate-x: 0;
  --tw-rotate-y: 0;
  --tw-rotate-z: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-scale-z: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotateZ(var(--tw-rotate-z)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z));
}
.rotate-180 {
  --tw-rotate: 180deg;
}
.\.rotate-180 {
  --tw-rotate: 180deg;
}
.translate-x-1\/2 {
  --tw-translate-x: 50%;
}
.\<transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.\.\/transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.duration {
  transition-duration: 150ms;
}
.filter {
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur {
  --tw-blur: blur(8px);
}
.accent {}
@media (min-width: 576px) {
  .sm\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .sm\:w-3\/4 {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  .md\:h-4\/5 {
    height: 80%;
  }
  .md\:mr-20 {
    margin-right: 5rem;
  }
}
@media (min-width: 992px) {
  .lg\:w-2\/4 {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .xl\:bg-transparent {
    background-color: transparent;
  }
  .xl\:justify-center {
    justify-content: center;
  }
  .xl\:h-auto {
    height: auto;
  }
  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .xl\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .xl\:p-4 {
    padding: 1rem;
  }
  .xl\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .xl\:shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
  }
  .xl\:w-6\/12 {
    width: 50%;
  }
  .xl\:w-100 {
    width: 25rem;
  }
}
@media (min-width: 1600px) {
  .\32 xl\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}.full-loading[data-v-19f44020] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(240, 242, 245, 0.8);
}
.full-loading.absolute[data-v-19f44020] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300;
}
html[data-theme='dark'] .full-loading[data-v-19f44020]:not(.light) {
  background-color: rgba(0, 0, 0, 0.45);
}
.full-loading.dark[data-v-19f44020] {
  background-color: rgba(0, 0, 0, 0.45);
}.inputWidth[data-v-6b4c0255] {
  margin-top: 10px;
}.ant-modal-confirm-body .ant-modal-confirm-content > * {
  color: initial !important;
}.msg[data-v-7f43f6ed] {
  font-size: 1.125rem;
  text-align: center;
}.spin[data-v-6a2a8192] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
[data-v-6a2a8192] .ant-spin-text {
  width: 50%;
}.ellipsis-multiline[data-v-302fda0d] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}.tc_tooltipBoxContainer[data-v-675d80b4] {
  width: 100%;
  padding: 6px 14px 14px;
  min-width: 300px;
  cursor: pointer;
}
.tc_tooltipBoxContainer[data-v-675d80b4] .tc-main {
  height: auto;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: pointer;
}
.tc_tooltipBoxContainer[data-v-675d80b4] .tc-main img[type='emojiImg'] {
  width: 24px;
  height: 24px;
}
.tc_tooltipBoxContainer[data-v-675d80b4] .tc-main img {
  max-width: 100px;
}
.tc_tooltipBoxContainer[data-v-675d80b4] .tc-main::-webkit-scrollbar {
  width: 0;
}
.tc_tooltipBoxContainer .btnFn[data-v-675d80b4] {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}
.tc_tooltipBoxContainer .btnFn .rightBtn Button[data-v-675d80b4]:last-child {
  margin-left: 10px;
}
.tc_tooltipBoxContainer .btnFn .rightBtn[data-v-675d80b4] {
  margin-left: 10px;
}
.text-item[data-v-675d80b4] {
  margin-top: 6px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.tc_success[data-v-675d80b4] {
  color: #67c23a !important;
}
.tc_info[data-v-675d80b4] {
  color: #fff !important;
}
.tc_warning[data-v-675d80b4] {
  color: #e6a23c !important;
}
.tc_error[data-v-675d80b4] {
  color: #f56c6c !important;
}
.tc_schedule[data-v-675d80b4] {
  background: var(--3509946e);
}.tc_tooltipTitleContainer[data-v-271cfc3e] {
  padding: 8px 14px 0;
}
.tc_success[data-v-271cfc3e] {
  color: #67c23a;
}
.tc_info[data-v-271cfc3e] {
  color: #fff;
}
.tc_schedule[data-v-271cfc3e] {
  color: #fff;
}
.tc_warning[data-v-271cfc3e] {
  color: #e6a23c;
}
.tc_error[data-v-271cfc3e] {
  color: #f56c6c;
}
.tc_titles[data-v-271cfc3e] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}.vben-image-preview .ant-image {
  margin-right: 10px;
}
.vben-image-preview .ant-image-preview-operations {
  background-color: rgba(0, 0, 0, 0.4);
}.img-preview {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.img-preview-content {
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  justify-content: center;
  align-items: center;
}
.img-preview-image {
  cursor: pointer;
  transition: transform 0.3s;
}
.img-preview__close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.2s;
}
.img-preview__close-icon {
  position: absolute;
  top: 46px;
  left: 16px;
  font-size: 1rem;
}
.img-preview__close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.img-preview__index {
  position: absolute;
  bottom: 5%;
  left: 50%;
  padding: 0 22px;
  font-size: 1rem;
  background: rgba(109, 109, 109, 0.6);
  border-radius: 15px;
  transform: translateX(-50%);
}
.img-preview__controller {
  position: absolute;
  bottom: 10%;
  left: 50%;
  display: flex;
  width: 260px;
  height: 44px;
  padding: 0 22px;
  margin-left: -139px;
  background: rgba(109, 109, 109, 0.6);
  border-radius: 22px;
  justify-content: center;
}
.img-preview__controller-item {
  display: flex;
  height: 100%;
  padding: 0 9px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}
.img-preview__controller-item:hover {
  transform: scale(1.2);
}
.img-preview__controller-item img {
  width: 1em;
}
.img-preview__arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.75rem;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.2s;
}
.img-preview__arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.img-preview__arrow.left {
  left: 50px;
}
.img-preview__arrow.right {
  right: 50px;
}.vben-svg-icon[data-v-be02a9a8] {
  display: inline-block;
  overflow: hidden;
  vertical-align: -0.15em;
  fill: currentColor;
}
.svg-icon-spin[data-v-be02a9a8] {
  animation: loadingCircle 1s infinite linear;
}@font-face {
  font-family: "iconfont";
  src: url('/assets/iconfont-3346a348.woff2?t=1728875174984') format('woff2'),
         url('/assets/iconfont-d78c13fa.woff?t=1728875174984') format('woff'),
         url('/assets/iconfont-f6c83591.ttf?t=1728875174984') format('truetype');
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-PPT:before {
  content: "\e652";
}
.icon-DOC:before {
  content: "\e653";
}
.icon-FILE:before {
  content: "\e654";
}
.icon-MP3:before {
  content: "\e655";
}
.icon-ZIP:before {
  content: "\e656";
}
.icon-ECEL:before {
  content: "\e657";
}
.icon-PIC:before {
  content: "\e658";
}
.icon-TXT:before {
  content: "\e659";
}
.icon-UNKNOWN:before {
  content: "\e65a";
}
.icon-MOV:before {
  content: "\e65b";
}
.icon-LR:before {
  content: "\e65c";
}
.icon-PS:before {
  content: "\e65d";
}
.icon-XD:before {
  content: "\e65e";
}
.icon-AI:before {
  content: "\e65f";
}
.icon-PDF:before {
  content: "\e660";
}
.icon-FL:before {
  content: "\e661";
}
.icon-DW:before {
  content: "\e662";
}
.icon-BR:before {
  content: "\e664";
}
.icon-BT:before {
  content: "\e665";
}
.icon-I-FILE:before {
  content: "\e666";
}
.icon-I-PPT:before {
  content: "\e667";
}
.icon-I-ECEL:before {
  content: "\e668";
}
.icon-I-ZIP:before {
  content: "\e669";
}
.icon-I-DOC:before {
  content: "\e66a";
}
.icon-I-MP3:before {
  content: "\e66b";
}
.icon-I-PDF:before {
  content: "\e66c";
}
.icon-I-TXT:before {
  content: "\e66d";
}
.icon-I-PIC:before {
  content: "\e66e";
}
.icon-I-BT:before {
  content: "\e66f";
}
.icon-I-MOV:before {
  content: "\e670";
}
.icon-I-UNKNOWN:before {
  content: "\e671";
}
.icon-I-PS:before {
  content: "\e672";
}
.icon-I-AI:before {
  content: "\e673";
}
.icon-I-LR:before {
  content: "\e674";
}
.icon-I-DW:before {
  content: "\e675";
}
.icon-I-FL:before {
  content: "\e676";
}
.icon-I-XD:before {
  content: "\e678";
}
.icon-I-BR:before {
  content: "\e679";
}.app-iconify {
  display: inline-block;
}
.app-iconify-spin svg {
  animation: loadingCircle 1s infinite linear;
}
span.iconify {
  display: block;
  min-width: 1em;
  min-height: 1em;
  border-radius: 100%;
}
.cx-file-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}.vben-basic-arrow[data-v-6853a285] {
  display: inline-block;
  cursor: pointer;
  transform: rotate(0deg);
  transition: all 0.3s ease 0.1s;
  transform-origin: center center;
}
.vben-basic-arrow--active[data-v-6853a285] {
  transform: rotate(90deg);
}
.vben-basic-arrow.inset[data-v-6853a285] {
  line-height: 0px;
}
.vben-basic-arrow.up[data-v-6853a285] {
  transform: rotate(-90deg);
}
.vben-basic-arrow.down[data-v-6853a285] {
  transform: rotate(90deg);
}
.vben-basic-arrow.up.vben-basic-arrow--active[data-v-6853a285] {
  transform: rotate(90deg);
}
.vben-basic-arrow.down.vben-basic-arrow--active[data-v-6853a285] {
  transform: rotate(-90deg);
}.vben-basic-help {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.875rem;
  color: #909399;
  cursor: pointer;
}
.vben-basic-help:hover {
  color: #1677ff;
}
.vben-basic-help__wrap p {
  margin-bottom: 0;
}.vben-basic-title[data-v-7d22e779] {
  position: relative;
  display: flex;
  padding-left: 7px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.vben-basic-title-normal[data-v-7d22e779] {
  font-size: 0.875rem;
  font-weight: 500;
}
.vben-basic-title-show-span[data-v-7d22e779]::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 3px;
  height: 16px;
  margin-right: 4px;
  background-color: #1677ff;
  content: '';
}
.vben-basic-title-help[data-v-7d22e779] {
  margin-left: 10px;
}.vben-collapse-container {
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.vben-collapse-container__header {
  display: flex;
  height: 32px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
}
.vben-collapse-container__footer {
  border-top: 1px solid #d9d9d9;
}
.vben-collapse-container__action {
  display: flex;
  text-align: right;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}.scrollbar {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.scrollbar__wrap {
  height: 100%;
  overflow: auto;
}
.scrollbar__wrap--hidden-default {
  scrollbar-width: none;
}
.scrollbar__wrap--hidden-default::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  opacity: 0%;
}
.scrollbar__thumb {
  position: relative;
  display: block;
  width: 0;
  height: 0;
  cursor: pointer;
  background-color: rgba(144, 147, 153, 0.3);
  border-radius: inherit;
  transition: 0.3s background-color;
}
.scrollbar__thumb:hover {
  background-color: rgba(144, 147, 153, 0.5);
}
.scrollbar__bar {
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  border-radius: 4px;
  opacity: 0%;
  transition: opacity 80ms ease;
}
.scrollbar__bar.is-vertical {
  top: 2px;
  width: 6px;
}
.scrollbar__bar.is-vertical > div {
  width: 100%;
}
.scrollbar__bar.is-horizontal {
  left: 2px;
  height: 6px;
}
.scrollbar__bar.is-horizontal > div {
  height: 100%;
}
.scrollbar:active > .scrollbar__bar, .scrollbar:focus > .scrollbar__bar, .scrollbar:hover > .scrollbar__bar {
  opacity: 100%;
  transition: opacity 340ms ease-out;
}.scroll-container {
  width: 100%;
  height: 100%;
}
.scroll-container .scrollbar__wrap {
  margin-bottom: 18px !important;
  overflow-x: hidden;
}
.scroll-container .scrollbar__view {
  box-sizing: border-box;
}.vben-icon-picker .ant-input-group-addon {
  padding: 0;
}
.vben-icon-picker-popover {
  width: 300px;
}
.vben-icon-picker-popover .ant-popover-inner-content {
  padding: 0;
}
.vben-icon-picker-popover .scrollbar {
  height: 220px;
}.messageWrap .ant-message-notice-content {
  min-width: 200px;
}
.messageWrap .ant-message-custom-content {
  display: flex;
  align-items: center;
}
.messageWrap .ant-message-custom-content > span:last-child {
  display: flex;
  align-items: center;
  flex: 1;
}
.messageWrap .cusMessage-wrap {
  display: flex;
  justify-content: space-between;
}
.messageWrap .cusMessage-wrap-msg {
  text-align: center;
}.vben-login .code-input input[data-v-49248aee] {
  min-width: unset !important;
}
.vben-login .code-input .ant-input-group-addon[data-v-49248aee] {
  padding-right: 0;
  background-color: transparent;
  border: none;
}
.imgCode[data-v-49248aee] {
  width: 115px;
  height: 100%;
}
[data-v-49248aee] .ant-form-item {
  margin-bottom: 1rem !important;
  height: 100%;
}.vben-countdown-input .ant-input-group-addon {
  padding-right: 0;
  background-color: transparent;
  border: none;
}
.vben-countdown-input .ant-input-group-addon button {
  font-size: 0.875rem;
}.vben-strength-meter-bar[data-v-3bfd49a1] {
  position: relative;
  height: 6px;
  margin: 10px auto 6px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.vben-strength-meter-bar[data-v-3bfd49a1]::before, .vben-strength-meter-bar[data-v-3bfd49a1]::after {
  position: absolute;
  z-index: 10;
  display: block;
  width: 20%;
  height: inherit;
  background-color: transparent;
  border-color: #fff;
  border-style: solid;
  border-width: 0 5px;
  content: '';
}
.vben-strength-meter-bar[data-v-3bfd49a1]::before {
  left: 20%;
}
.vben-strength-meter-bar[data-v-3bfd49a1]::after {
  right: 20%;
}
.vben-strength-meter-bar--fill[data-v-3bfd49a1] {
  position: absolute;
  width: 0;
  height: inherit;
  background-color: transparent;
  border-radius: inherit;
  transition: width 0.5s ease-in-out, background 0.25s;
}
.vben-strength-meter-bar--fill[data-score='0'][data-v-3bfd49a1] {
  width: 20%;
  background-color: #e74242;
}
.vben-strength-meter-bar--fill[data-score='1'][data-v-3bfd49a1] {
  width: 40%;
  background-color: #ED6F6F;
}
.vben-strength-meter-bar--fill[data-score='2'][data-v-3bfd49a1] {
  width: 60%;
  background-color: #EFBD47;
}
.vben-strength-meter-bar--fill[data-score='3'][data-v-3bfd49a1] {
  width: 80%;
  background-color: rgba(85, 209, 135, 0.5);
}
.vben-strength-meter-bar--fill[data-score='4'][data-v-3bfd49a1] {
  width: 100%;
  background-color: #55D187;
}.QrBj[data-v-acd0c00c] {
  background-color: #ffffff;
  border-radius: 8px;
  height: 100%;
}
[data-theme='dark'] .QrBj[data-v-acd0c00c]::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.QrBj .text-info[data-v-acd0c00c] {
  color: rgba(0, 0, 0, 0.85);
}
.QrBj .QrCloseIcon[data-v-acd0c00c] {
  color: var(--vxe-danger-darken-color);
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}.qr-loading[data-v-2a8ac7a2] {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.QrBj[data-v-2a8ac7a2] {
  background-color: #ffffff;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
[data-theme='dark'] .QrBj[data-v-2a8ac7a2]::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.QrBj .text-info[data-v-2a8ac7a2] {
  color: rgba(0, 0, 0, 0.85);
}
.QrBj .QrCloseIcon[data-v-2a8ac7a2] {
  color: var(--vxe-danger-darken-color);
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}[data-theme='dark'] .titleIcon[data-v-22e39d45] {
  filter: brightness(0.7) opacity(0.7);
}.vben-login .code-input input[data-v-512f1de3] {
  min-width: unset !important;
}
.vben-login .code-input .ant-input-group-addon[data-v-512f1de3] {
  padding-right: 0;
  background-color: transparent;
  border: none;
}
.imgCode[data-v-512f1de3] {
  width: 115px;
  height: 100%;
}
[data-v-512f1de3] .ant-col {
  margin-bottom: 1rem !important;
  height: 100%;
}
.error[data-v-512f1de3] {
  text-align: center;
  height: 30px;
  line-height: 30px;
  background: #ea7171;
  border-radius: 4px;
  color: white;
}
.mylabel[data-v-512f1de3] {
  margin-bottom: 0.2rem;
  display: block;
  font-size: 0.75rem;
  color: #fff;
  font-weight: normal;
}
.required-star[data-v-512f1de3] {
  color: red;
  margin-left: 4px;
}
.licenseForm[data-v-512f1de3] .ant-form-item.ant-row {
  flex-flow: wrap !important;
  flex-direction: column !important;
  margin-bottom: 0rem !important;
}
.licenseForm[data-v-512f1de3] .ant-col .ant-form-item-label {
  margin-bottom: 0rem !important;
}
.licenseForm[data-v-512f1de3] .ant-col {
  min-height: auto;
  margin-bottom: 10px !important;
}
.licenseForm[data-v-512f1de3] .ant-form-item-label > label::after {
  color: #fff;
}
.licenseForm .lable[data-v-512f1de3] {
  color: #fff;
  font-size: 0.75rem;
  font-weight: normal;
}.slogan {
  --cx-qxege-width: 20px;
  position: absolute;
  width: 300px;
  height: 150px;
  background: red;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  clip-path: inset(var(--cx-qxege-width) round var(--cx-qxege-width), calc(100% - var(--cx-qxege-width)) round var(--cx-qxege-width), calc(100% - var(--cx-qxege-width)) round var(--cx-qxege-width), var(--cx-qxege-width) round var(--cx-qxege-width));
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
  background-image: linear-gradient(90deg, #4a90e2, #6dd5ed);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
html[data-theme='dark'] .vben-login {
  background-color: #293146;
}
html[data-theme='dark'] .vben-login .ant-btn:not(.ant-btn-link):not(.ant-btn-primary) {
  border: 1px solid #4a5569;
}
html[data-theme='dark'] .vben-login-form {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
html[data-theme='dark'] input.fix-auto-fill, html[data-theme='dark'] .fix-auto-fill input {
  -webkit-text-fill-color: #c9d1d9 !important;
  box-shadow: inherit !important;
}
.vben-login {
  min-height: 100%;
  overflow: hidden;
}
.vben-login .vben-login-form {
  background-color: var(--vxe-table-body-background-color);
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  padding: 2rem;
  box-shadow: none;
}
[data-theme='dark'] .vben-login .mask::before {
  content: '';
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.vben-login::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--e527a1e6);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}
.vben-login .vben-app-logo {
  position: absolute;
  top: 12px;
  height: 30px;
}
.vben-login .vben-app-logo__title {
  font-size: 16px;
  color: #fff;
}
.vben-login .vben-app-logo img {
  width: 32px;
}
.vben-login .container .vben-app-logo {
  display: flex;
  width: 60%;
  height: 80px;
}
.vben-login .container .vben-app-logo__title {
  font-size: 24px;
  color: #fff;
}
.vben-login .container .vben-app-logo img {
  width: 48px;
}
.vben-login-sign-in-way .anticon {
  font-size: 22px;
  color: #888;
  cursor: pointer;
}
.vben-login-sign-in-way .anticon:hover {
  color: #1677ff;
}
.vben-login input:not([type='checkbox']) {
  width: 100%;
}
.vben-login .vben-countdown-input input {
  min-width: unset;
}
.vben-login .ant-divider-inner-text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}.vben-app-logo[data-v-6339ed4e] {
  --cx-appLogo-border-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  padding: 0px;
  transition: all 0.2s ease;
  position: relative;
  background-color: var(--sider-dark-bg-color);
}
.vben-app-logo.light[data-v-6339ed4e] {
  --cx-appLogo-border-color: #d9d9d9;
}
.vben-app-logo.light img[data-v-6339ed4e] {
  filter: invert(100%);
}
.vben-app-logo .cx-bottom-x[data-v-6339ed4e] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--cx-appLogo-border-color);
}
.vben-app-logo[data-v-6339ed4e]::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: scale(1.2, 1) translateX(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-left: 1px solid var(--cx-appLogo-border-color);
  border-bottom: 1px solid var(--cx-appLogo-border-color);
  overflow: hidden;
  background-color: var(--sider-dark-bg-color);
}
.vben-app-logo.collapsed-show-title[data-v-6339ed4e] {
  padding-left: 20px;
}
.vben-app-logo.light .vben-app-logo__title[data-v-6339ed4e] {
  color: #1677ff;
}
.vben-app-logo.dark .vben-app-logo__title[data-v-6339ed4e] {
  color: #fff;
}
.vben-app-logo__title[data-v-6339ed4e] {
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.5s;
  line-height: normal;
}.vben-app-search-footer[data-v-5aea6f23] {
  position: relative;
  display: flex;
  height: 44px;
  padding: 0 16px;
  font-size: 0.75rem;
  color: #666;
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  border-radius: 0 0 16px 16px;
  align-items: center;
  flex-shrink: 0;
}
.vben-app-search-footer-item[data-v-5aea6f23] {
  display: flex;
  width: 20px;
  height: 18px;
  padding-bottom: 2px;
  margin-right: 0.4em;
  background-color: linear-gradient(-225deg, #d5dbe4, #f8f8f8);
  border-radius: 2px;
  box-shadow: inset 0 -2px 0 0 #cdcde6, inset 0 0 1px 1px #fff, 0 1px 2px 1px rgba(30, 35, 90, 0.4);
  align-items: center;
  justify-content: center;
}
.vben-app-search-footer-item[data-v-5aea6f23]:nth-child(2), .vben-app-search-footer-item[data-v-5aea6f23]:nth-child(3), .vben-app-search-footer-item[data-v-5aea6f23]:nth-child(6) {
  margin-left: 14px;
}.vben-app-search-modal[data-v-20954804] {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  background-color: rgba(0, 0, 0, 0.25);
  justify-content: center;
}
.vben-app-search-modal--mobile[data-v-20954804] {
  padding: 0;
}
.vben-app-search-modal--mobile > div[data-v-20954804] {
  width: 100%;
}
.vben-app-search-modal--mobile .vben-app-search-modal-input[data-v-20954804] {
  width: calc(100% - 38px);
}
.vben-app-search-modal--mobile .vben-app-search-modal-cancel[data-v-20954804] {
  display: inline-block;
}
.vben-app-search-modal--mobile .vben-app-search-modal-content[data-v-20954804] {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.vben-app-search-modal--mobile .vben-app-search-footer[data-v-20954804] {
  display: none;
}
.vben-app-search-modal--mobile .vben-app-search-modal-list[data-v-20954804] {
  height: calc(100% - 80px);
  max-height: unset;
}
.vben-app-search-modal--mobile .vben-app-search-modal-list__item-enter[data-v-20954804] {
  opacity: 0% !important;
}
.vben-app-search-modal-content[data-v-20954804] {
  position: relative;
  width: 632px;
  margin: 0 auto auto;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  flex-direction: column;
}
.vben-app-search-modal-input__wrapper[data-v-20954804] {
  display: flex;
  padding: 14px 14px 0;
  justify-content: space-between;
  align-items: center;
}
.vben-app-search-modal-input[data-v-20954804] {
  width: 100%;
  height: 48px;
  font-size: 1.5em;
  color: #1c1e21;
  border-radius: 6px;
}
.vben-app-search-modal-input span[role='img'][data-v-20954804] {
  color: #999;
}
.vben-app-search-modal-cancel[data-v-20954804] {
  display: none;
  font-size: 1em;
  color: #666;
}
.vben-app-search-modal-not-data[data-v-20954804] {
  display: flex;
  width: 100%;
  height: 100px;
  font-size: 0.9;
  color: #969faf;
  align-items: center;
  justify-content: center;
}
.vben-app-search-modal-list[data-v-20954804] {
  max-height: 472px;
  padding: 0 14px;
  padding-bottom: 20px;
  margin: 0 auto;
  margin-top: 14px;
  overflow: auto;
}
.vben-app-search-modal-list__item[data-v-20954804] {
  position: relative;
  display: flex;
  width: 100%;
  height: 56px;
  padding-bottom: 4px;
  padding-left: 14px;
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 #d4d9e1;
  align-items: center;
}
.vben-app-search-modal-list__item > div[data-v-20954804]:first-child, .vben-app-search-modal-list__item > div[data-v-20954804]:last-child {
  display: flex;
  align-items: center;
}
.vben-app-search-modal-list__item--active[data-v-20954804] {
  color: #fff;
  background-color: #1677ff;
}
.vben-app-search-modal-list__item--active .vben-app-search-modal-list__item-enter[data-v-20954804] {
  opacity: 100%;
}
.vben-app-search-modal-list__item-icon[data-v-20954804] {
  width: 30px;
}
.vben-app-search-modal-list__item-text[data-v-20954804] {
  flex: 1;
}
.vben-app-search-modal-list__item-enter[data-v-20954804] {
  width: 30px;
  opacity: 0%;
}i.flag[data-v-4cc2e5c0]:not(.icon) {
  display: inline-block;
  width: 16px;
  height: 11px;
  line-height: 11px;
  vertical-align: baseline;
  margin: 0 0.5em 0 0;
  text-decoration: inherit;
  speak: none;
  font-smoothing: antialiased;
  backface-visibility: hidden;
}
i.flag[data-v-4cc2e5c0]:not(.icon):before {
  display: inline-block;
  content: '';
  background: url('/assets/flags-94d5c7f1.png') no-repeat;
  width: 16px;
  height: 11px;
}
i.flag.ad[data-v-4cc2e5c0]:before, i.flag.andorra[data-v-4cc2e5c0]:before {
  background-position: 0 0;
}
i.flag.ae[data-v-4cc2e5c0]:before, i.flag.uae[data-v-4cc2e5c0]:before, i.flag.united.arab.emirates[data-v-4cc2e5c0]:before {
  background-position: 0 -26px;
}
i.flag.af[data-v-4cc2e5c0]:before, i.flag.afghanistan[data-v-4cc2e5c0]:before {
  background-position: 0 -52px;
}
i.flag.ag[data-v-4cc2e5c0]:before, i.flag.antigua[data-v-4cc2e5c0]:before {
  background-position: 0 -78px;
}
i.flag.ai[data-v-4cc2e5c0]:before, i.flag.anguilla[data-v-4cc2e5c0]:before {
  background-position: 0 -104px;
}
i.flag.al[data-v-4cc2e5c0]:before, i.flag.albania[data-v-4cc2e5c0]:before {
  background-position: 0 -130px;
}
i.flag.am[data-v-4cc2e5c0]:before, i.flag.armenia[data-v-4cc2e5c0]:before {
  background-position: 0 -156px;
}
i.flag.an[data-v-4cc2e5c0]:before, i.flag.netherlands.antilles[data-v-4cc2e5c0]:before {
  background-position: 0 -182px;
}
i.flag.angola[data-v-4cc2e5c0]:before, i.flag.ao[data-v-4cc2e5c0]:before {
  background-position: 0 -208px;
}
i.flag.ar[data-v-4cc2e5c0]:before, i.flag.argentina[data-v-4cc2e5c0]:before {
  background-position: 0 -234px;
}
i.flag.american.samoa[data-v-4cc2e5c0]:before, i.flag.as[data-v-4cc2e5c0]:before {
  background-position: 0 -260px;
}
i.flag.at[data-v-4cc2e5c0]:before, i.flag.austria[data-v-4cc2e5c0]:before {
  background-position: 0 -286px;
}
i.flag.au[data-v-4cc2e5c0]:before, i.flag.australia[data-v-4cc2e5c0]:before {
  background-position: 0 -312px;
}
i.flag.aruba[data-v-4cc2e5c0]:before, i.flag.aw[data-v-4cc2e5c0]:before {
  background-position: 0 -338px;
}
i.flag.aland.islands[data-v-4cc2e5c0]:before, i.flag.ax[data-v-4cc2e5c0]:before {
  background-position: 0 -364px;
}
i.flag.az[data-v-4cc2e5c0]:before, i.flag.azerbaijan[data-v-4cc2e5c0]:before {
  background-position: 0 -390px;
}
i.flag.ba[data-v-4cc2e5c0]:before, i.flag.bosnia[data-v-4cc2e5c0]:before {
  background-position: 0 -416px;
}
i.flag.barbados[data-v-4cc2e5c0]:before, i.flag.bb[data-v-4cc2e5c0]:before {
  background-position: 0 -442px;
}
i.flag.bangladesh[data-v-4cc2e5c0]:before, i.flag.bd[data-v-4cc2e5c0]:before {
  background-position: 0 -468px;
}
i.flag.be[data-v-4cc2e5c0]:before, i.flag.belgium[data-v-4cc2e5c0]:before {
  background-position: 0 -494px;
}
i.flag.bf[data-v-4cc2e5c0]:before, i.flag.burkina.faso[data-v-4cc2e5c0]:before {
  background-position: 0 -520px;
}
i.flag.bg[data-v-4cc2e5c0]:before, i.flag.bulgaria[data-v-4cc2e5c0]:before {
  background-position: 0 -546px;
}
i.flag.bahrain[data-v-4cc2e5c0]:before, i.flag.bh[data-v-4cc2e5c0]:before {
  background-position: 0 -572px;
}
i.flag.bi[data-v-4cc2e5c0]:before, i.flag.burundi[data-v-4cc2e5c0]:before {
  background-position: 0 -598px;
}
i.flag.benin[data-v-4cc2e5c0]:before, i.flag.bj[data-v-4cc2e5c0]:before {
  background-position: 0 -624px;
}
i.flag.bermuda[data-v-4cc2e5c0]:before, i.flag.bm[data-v-4cc2e5c0]:before {
  background-position: 0 -650px;
}
i.flag.bn[data-v-4cc2e5c0]:before, i.flag.brunei[data-v-4cc2e5c0]:before {
  background-position: 0 -676px;
}
i.flag.bo[data-v-4cc2e5c0]:before, i.flag.bolivia[data-v-4cc2e5c0]:before {
  background-position: 0 -702px;
}
i.flag.br[data-v-4cc2e5c0]:before, i.flag.brazil[data-v-4cc2e5c0]:before {
  background-position: 0 -728px;
}
i.flag.bahamas[data-v-4cc2e5c0]:before, i.flag.bs[data-v-4cc2e5c0]:before {
  background-position: 0 -754px;
}
i.flag.bhutan[data-v-4cc2e5c0]:before, i.flag.bt[data-v-4cc2e5c0]:before {
  background-position: 0 -780px;
}
i.flag.bouvet.island[data-v-4cc2e5c0]:before, i.flag.bv[data-v-4cc2e5c0]:before {
  background-position: 0 -806px;
}
i.flag.botswana[data-v-4cc2e5c0]:before, i.flag.bw[data-v-4cc2e5c0]:before {
  background-position: 0 -832px;
}
i.flag.belarus[data-v-4cc2e5c0]:before, i.flag.by[data-v-4cc2e5c0]:before {
  background-position: 0 -858px;
}
i.flag.belize[data-v-4cc2e5c0]:before, i.flag.bz[data-v-4cc2e5c0]:before {
  background-position: 0 -884px;
}
i.flag.ca[data-v-4cc2e5c0]:before, i.flag.canada[data-v-4cc2e5c0]:before {
  background-position: 0 -910px;
}
i.flag.cc[data-v-4cc2e5c0]:before, i.flag.cocos.islands[data-v-4cc2e5c0]:before {
  background-position: 0 -962px;
}
i.flag.cd[data-v-4cc2e5c0]:before, i.flag.congo[data-v-4cc2e5c0]:before {
  background-position: 0 -988px;
}
i.flag.central.african.republic[data-v-4cc2e5c0]:before, i.flag.cf[data-v-4cc2e5c0]:before {
  background-position: 0 -1014px;
}
i.flag.cg[data-v-4cc2e5c0]:before, i.flag.congo.brazzaville[data-v-4cc2e5c0]:before {
  background-position: 0 -1040px;
}
i.flag.ch[data-v-4cc2e5c0]:before, i.flag.switzerland[data-v-4cc2e5c0]:before {
  background-position: 0 -1066px;
}
i.flag.ci[data-v-4cc2e5c0]:before, i.flag.cote.divoire[data-v-4cc2e5c0]:before {
  background-position: 0 -1092px;
}
i.flag.ck[data-v-4cc2e5c0]:before, i.flag.cook.islands[data-v-4cc2e5c0]:before {
  background-position: 0 -1118px;
}
i.flag.chile[data-v-4cc2e5c0]:before, i.flag.cl[data-v-4cc2e5c0]:before {
  background-position: 0 -1144px;
}
i.flag.cameroon[data-v-4cc2e5c0]:before, i.flag.cm[data-v-4cc2e5c0]:before {
  background-position: 0 -1170px;
}
i.flag.china[data-v-4cc2e5c0]:before, i.flag.cn[data-v-4cc2e5c0]:before {
  background-position: 0 -1196px;
}
i.flag.co[data-v-4cc2e5c0]:before, i.flag.colombia[data-v-4cc2e5c0]:before {
  background-position: 0 -1222px;
}
i.flag.costa.rica[data-v-4cc2e5c0]:before, i.flag.cr[data-v-4cc2e5c0]:before {
  background-position: 0 -1248px;
}
i.flag.cs[data-v-4cc2e5c0]:before, i.flag.serbia[data-v-4cc2e5c0]:before {
  background-position: 0 -1274px;
}
i.flag.cu[data-v-4cc2e5c0]:before, i.flag.cuba[data-v-4cc2e5c0]:before {
  background-position: 0 -1300px;
}
i.flag.cape.verde[data-v-4cc2e5c0]:before, i.flag.cv[data-v-4cc2e5c0]:before {
  background-position: 0 -1326px;
}
i.flag.christmas.island[data-v-4cc2e5c0]:before, i.flag.cx[data-v-4cc2e5c0]:before {
  background-position: 0 -1352px;
}
i.flag.cy[data-v-4cc2e5c0]:before, i.flag.cyprus[data-v-4cc2e5c0]:before {
  background-position: 0 -1378px;
}
i.flag.cz[data-v-4cc2e5c0]:before, i.flag.czech.republic[data-v-4cc2e5c0]:before {
  background-position: 0 -1404px;
}
i.flag.de[data-v-4cc2e5c0]:before, i.flag.germany[data-v-4cc2e5c0]:before {
  background-position: 0 -1430px;
}
i.flag.dj[data-v-4cc2e5c0]:before, i.flag.djibouti[data-v-4cc2e5c0]:before {
  background-position: 0 -1456px;
}
i.flag.denmark[data-v-4cc2e5c0]:before, i.flag.dk[data-v-4cc2e5c0]:before {
  background-position: 0 -1482px;
}
i.flag.dm[data-v-4cc2e5c0]:before, i.flag.dominica[data-v-4cc2e5c0]:before {
  background-position: 0 -1508px;
}
i.flag.do[data-v-4cc2e5c0]:before, i.flag.dominican.republic[data-v-4cc2e5c0]:before {
  background-position: 0 -1534px;
}
i.flag.algeria[data-v-4cc2e5c0]:before, i.flag.dz[data-v-4cc2e5c0]:before {
  background-position: 0 -1560px;
}
i.flag.ec[data-v-4cc2e5c0]:before, i.flag.ecuador[data-v-4cc2e5c0]:before {
  background-position: 0 -1586px;
}
i.flag.ee[data-v-4cc2e5c0]:before, i.flag.estonia[data-v-4cc2e5c0]:before {
  background-position: 0 -1612px;
}
i.flag.eg[data-v-4cc2e5c0]:before, i.flag.egypt[data-v-4cc2e5c0]:before {
  background-position: 0 -1638px;
}
i.flag.eh[data-v-4cc2e5c0]:before, i.flag.western.sahara[data-v-4cc2e5c0]:before {
  background-position: 0 -1664px;
}
i.flag.er[data-v-4cc2e5c0]:before, i.flag.eritrea[data-v-4cc2e5c0]:before {
  background-position: 0 -1716px;
}
i.flag.es[data-v-4cc2e5c0]:before, i.flag.spain[data-v-4cc2e5c0]:before {
  background-position: 0 -1742px;
}
i.flag.et[data-v-4cc2e5c0]:before, i.flag.ethiopia[data-v-4cc2e5c0]:before {
  background-position: 0 -1768px;
}
i.flag.eu[data-v-4cc2e5c0]:before, i.flag.european.union[data-v-4cc2e5c0]:before {
  background-position: 0 -1794px;
}
i.flag.fi[data-v-4cc2e5c0]:before, i.flag.finland[data-v-4cc2e5c0]:before {
  background-position: 0 -1846px;
}
i.flag.fiji[data-v-4cc2e5c0]:before, i.flag.fj[data-v-4cc2e5c0]:before {
  background-position: 0 -1872px;
}
i.flag.falkland.islands[data-v-4cc2e5c0]:before, i.flag.fk[data-v-4cc2e5c0]:before {
  background-position: 0 -1898px;
}
i.flag.fm[data-v-4cc2e5c0]:before, i.flag.micronesia[data-v-4cc2e5c0]:before {
  background-position: 0 -1924px;
}
i.flag.faroe.islands[data-v-4cc2e5c0]:before, i.flag.fo[data-v-4cc2e5c0]:before {
  background-position: 0 -1950px;
}
i.flag.fr[data-v-4cc2e5c0]:before, i.flag.france[data-v-4cc2e5c0]:before {
  background-position: 0 -1976px;
}
i.flag.ga[data-v-4cc2e5c0]:before, i.flag.gabon[data-v-4cc2e5c0]:before {
  background-position: -36px 0;
}
i.flag.gb[data-v-4cc2e5c0]:before, i.flag.united.kingdom[data-v-4cc2e5c0]:before {
  background-position: -36px -26px;
}
i.flag.gd[data-v-4cc2e5c0]:before, i.flag.grenada[data-v-4cc2e5c0]:before {
  background-position: -36px -52px;
}
i.flag.ge[data-v-4cc2e5c0]:before, i.flag.georgia[data-v-4cc2e5c0]:before {
  background-position: -36px -78px;
}
i.flag.french.guiana[data-v-4cc2e5c0]:before, i.flag.gf[data-v-4cc2e5c0]:before {
  background-position: -36px -104px;
}
i.flag.gh[data-v-4cc2e5c0]:before, i.flag.ghana[data-v-4cc2e5c0]:before {
  background-position: -36px -130px;
}
i.flag.gi[data-v-4cc2e5c0]:before, i.flag.gibraltar[data-v-4cc2e5c0]:before {
  background-position: -36px -156px;
}
i.flag.gl[data-v-4cc2e5c0]:before, i.flag.greenland[data-v-4cc2e5c0]:before {
  background-position: -36px -182px;
}
i.flag.gambia[data-v-4cc2e5c0]:before, i.flag.gm[data-v-4cc2e5c0]:before {
  background-position: -36px -208px;
}
i.flag.gn[data-v-4cc2e5c0]:before, i.flag.guinea[data-v-4cc2e5c0]:before {
  background-position: -36px -234px;
}
i.flag.gp[data-v-4cc2e5c0]:before, i.flag.guadeloupe[data-v-4cc2e5c0]:before {
  background-position: -36px -260px;
}
i.flag.equatorial.guinea[data-v-4cc2e5c0]:before, i.flag.gq[data-v-4cc2e5c0]:before {
  background-position: -36px -286px;
}
i.flag.gr[data-v-4cc2e5c0]:before, i.flag.greece[data-v-4cc2e5c0]:before {
  background-position: -36px -312px;
}
i.flag.gs[data-v-4cc2e5c0]:before, i.flag.sandwich.islands[data-v-4cc2e5c0]:before {
  background-position: -36px -338px;
}
i.flag.gt[data-v-4cc2e5c0]:before, i.flag.guatemala[data-v-4cc2e5c0]:before {
  background-position: -36px -364px;
}
i.flag.gu[data-v-4cc2e5c0]:before, i.flag.guam[data-v-4cc2e5c0]:before {
  background-position: -36px -390px;
}
i.flag.guinea-bissau[data-v-4cc2e5c0]:before, i.flag.gw[data-v-4cc2e5c0]:before {
  background-position: -36px -416px;
}
i.flag.guyana[data-v-4cc2e5c0]:before, i.flag.gy[data-v-4cc2e5c0]:before {
  background-position: -36px -442px;
}
i.flag.hk[data-v-4cc2e5c0]:before, i.flag.hong.kong[data-v-4cc2e5c0]:before {
  background-position: -36px -468px;
}
i.flag.heard.island[data-v-4cc2e5c0]:before, i.flag.hm[data-v-4cc2e5c0]:before {
  background-position: -36px -494px;
}
i.flag.hn[data-v-4cc2e5c0]:before, i.flag.honduras[data-v-4cc2e5c0]:before {
  background-position: -36px -520px;
}
i.flag.croatia[data-v-4cc2e5c0]:before, i.flag.hr[data-v-4cc2e5c0]:before {
  background-position: -36px -546px;
}
i.flag.haiti[data-v-4cc2e5c0]:before, i.flag.ht[data-v-4cc2e5c0]:before {
  background-position: -36px -572px;
}
i.flag.hu[data-v-4cc2e5c0]:before, i.flag.hungary[data-v-4cc2e5c0]:before {
  background-position: -36px -598px;
}
i.flag.id[data-v-4cc2e5c0]:before, i.flag.indonesia[data-v-4cc2e5c0]:before {
  background-position: -36px -624px;
}
i.flag.ie[data-v-4cc2e5c0]:before, i.flag.ireland[data-v-4cc2e5c0]:before {
  background-position: -36px -650px;
}
i.flag.il[data-v-4cc2e5c0]:before, i.flag.israel[data-v-4cc2e5c0]:before {
  background-position: -36px -676px;
}
i.flag.in[data-v-4cc2e5c0]:before, i.flag.india[data-v-4cc2e5c0]:before {
  background-position: -36px -702px;
}
i.flag.indian.ocean.territory[data-v-4cc2e5c0]:before, i.flag.io[data-v-4cc2e5c0]:before {
  background-position: -36px -728px;
}
i.flag.iq[data-v-4cc2e5c0]:before, i.flag.iraq[data-v-4cc2e5c0]:before {
  background-position: -36px -754px;
}
i.flag.ir[data-v-4cc2e5c0]:before, i.flag.iran[data-v-4cc2e5c0]:before {
  background-position: -36px -780px;
}
i.flag.iceland[data-v-4cc2e5c0]:before, i.flag.is[data-v-4cc2e5c0]:before {
  background-position: -36px -806px;
}
i.flag.it[data-v-4cc2e5c0]:before, i.flag.italy[data-v-4cc2e5c0]:before {
  background-position: -36px -832px;
}
i.flag.jamaica[data-v-4cc2e5c0]:before, i.flag.jm[data-v-4cc2e5c0]:before {
  background-position: -36px -858px;
}
i.flag.jo[data-v-4cc2e5c0]:before, i.flag.jordan[data-v-4cc2e5c0]:before {
  background-position: -36px -884px;
}
i.flag.japan[data-v-4cc2e5c0]:before, i.flag.jp[data-v-4cc2e5c0]:before {
  background-position: -36px -910px;
}
i.flag.ke[data-v-4cc2e5c0]:before, i.flag.kenya[data-v-4cc2e5c0]:before {
  background-position: -36px -936px;
}
i.flag.kg[data-v-4cc2e5c0]:before, i.flag.kyrgyzstan[data-v-4cc2e5c0]:before {
  background-position: -36px -962px;
}
i.flag.cambodia[data-v-4cc2e5c0]:before, i.flag.kh[data-v-4cc2e5c0]:before {
  background-position: -36px -988px;
}
i.flag.ki[data-v-4cc2e5c0]:before, i.flag.kiribati[data-v-4cc2e5c0]:before {
  background-position: -36px -1014px;
}
i.flag.comoros[data-v-4cc2e5c0]:before, i.flag.km[data-v-4cc2e5c0]:before {
  background-position: -36px -1040px;
}
i.flag.kn[data-v-4cc2e5c0]:before, i.flag.saint.kitts.and.nevis[data-v-4cc2e5c0]:before {
  background-position: -36px -1066px;
}
i.flag.kp[data-v-4cc2e5c0]:before, i.flag.north.korea[data-v-4cc2e5c0]:before {
  background-position: -36px -1092px;
}
i.flag.kr[data-v-4cc2e5c0]:before, i.flag.south.korea[data-v-4cc2e5c0]:before {
  background-position: -36px -1118px;
}
i.flag.kuwait[data-v-4cc2e5c0]:before, i.flag.kw[data-v-4cc2e5c0]:before {
  background-position: -36px -1144px;
}
i.flag.cayman.islands[data-v-4cc2e5c0]:before, i.flag.ky[data-v-4cc2e5c0]:before {
  background-position: -36px -1170px;
}
i.flag.kazakhstan[data-v-4cc2e5c0]:before, i.flag.kz[data-v-4cc2e5c0]:before {
  background-position: -36px -1196px;
}
i.flag.la[data-v-4cc2e5c0]:before, i.flag.laos[data-v-4cc2e5c0]:before {
  background-position: -36px -1222px;
}
i.flag.lb[data-v-4cc2e5c0]:before, i.flag.lebanon[data-v-4cc2e5c0]:before {
  background-position: -36px -1248px;
}
i.flag.lc[data-v-4cc2e5c0]:before, i.flag.saint.lucia[data-v-4cc2e5c0]:before {
  background-position: -36px -1274px;
}
i.flag.li[data-v-4cc2e5c0]:before, i.flag.liechtenstein[data-v-4cc2e5c0]:before {
  background-position: -36px -1300px;
}
i.flag.lk[data-v-4cc2e5c0]:before, i.flag.sri.lanka[data-v-4cc2e5c0]:before {
  background-position: -36px -1326px;
}
i.flag.liberia[data-v-4cc2e5c0]:before, i.flag.lr[data-v-4cc2e5c0]:before {
  background-position: -36px -1352px;
}
i.flag.lesotho[data-v-4cc2e5c0]:before, i.flag.ls[data-v-4cc2e5c0]:before {
  background-position: -36px -1378px;
}
i.flag.lithuania[data-v-4cc2e5c0]:before, i.flag.lt[data-v-4cc2e5c0]:before {
  background-position: -36px -1404px;
}
i.flag.lu[data-v-4cc2e5c0]:before, i.flag.luxembourg[data-v-4cc2e5c0]:before {
  background-position: -36px -1430px;
}
i.flag.latvia[data-v-4cc2e5c0]:before, i.flag.lv[data-v-4cc2e5c0]:before {
  background-position: -36px -1456px;
}
i.flag.libya[data-v-4cc2e5c0]:before, i.flag.ly[data-v-4cc2e5c0]:before {
  background-position: -36px -1482px;
}
i.flag.ma[data-v-4cc2e5c0]:before, i.flag.morocco[data-v-4cc2e5c0]:before {
  background-position: -36px -1508px;
}
i.flag.mc[data-v-4cc2e5c0]:before, i.flag.monaco[data-v-4cc2e5c0]:before {
  background-position: -36px -1534px;
}
i.flag.md[data-v-4cc2e5c0]:before, i.flag.moldova[data-v-4cc2e5c0]:before {
  background-position: -36px -1560px;
}
i.flag.me[data-v-4cc2e5c0]:before, i.flag.montenegro[data-v-4cc2e5c0]:before {
  background-position: -36px -1586px;
}
i.flag.madagascar[data-v-4cc2e5c0]:before, i.flag.mg[data-v-4cc2e5c0]:before {
  background-position: -36px -1613px;
}
i.flag.marshall.islands[data-v-4cc2e5c0]:before, i.flag.mh[data-v-4cc2e5c0]:before {
  background-position: -36px -1639px;
}
i.flag.macedonia[data-v-4cc2e5c0]:before, i.flag.mk[data-v-4cc2e5c0]:before {
  background-position: -36px -1665px;
}
i.flag.mali[data-v-4cc2e5c0]:before, i.flag.ml[data-v-4cc2e5c0]:before {
  background-position: -36px -1691px;
}
i.flag.burma[data-v-4cc2e5c0]:before, i.flag.mm[data-v-4cc2e5c0]:before, i.flag.myanmar[data-v-4cc2e5c0]:before {
  background-position: -36px -1717px;
}
i.flag.mn[data-v-4cc2e5c0]:before, i.flag.mongolia[data-v-4cc2e5c0]:before {
  background-position: -36px -1743px;
}
i.flag.macau[data-v-4cc2e5c0]:before, i.flag.mo[data-v-4cc2e5c0]:before {
  background-position: -36px -1769px;
}
i.flag.mp[data-v-4cc2e5c0]:before, i.flag.northern.mariana.islands[data-v-4cc2e5c0]:before {
  background-position: -36px -1795px;
}
i.flag.martinique[data-v-4cc2e5c0]:before, i.flag.mq[data-v-4cc2e5c0]:before {
  background-position: -36px -1821px;
}
i.flag.mauritania[data-v-4cc2e5c0]:before, i.flag.mr[data-v-4cc2e5c0]:before {
  background-position: -36px -1847px;
}
i.flag.montserrat[data-v-4cc2e5c0]:before, i.flag.ms[data-v-4cc2e5c0]:before {
  background-position: -36px -1873px;
}
i.flag.malta[data-v-4cc2e5c0]:before, i.flag.mt[data-v-4cc2e5c0]:before {
  background-position: -36px -1899px;
}
i.flag.mauritius[data-v-4cc2e5c0]:before, i.flag.mu[data-v-4cc2e5c0]:before {
  background-position: -36px -1925px;
}
i.flag.maldives[data-v-4cc2e5c0]:before, i.flag.mv[data-v-4cc2e5c0]:before {
  background-position: -36px -1951px;
}
i.flag.malawi[data-v-4cc2e5c0]:before, i.flag.mw[data-v-4cc2e5c0]:before {
  background-position: -36px -1977px;
}
i.flag.mexico[data-v-4cc2e5c0]:before, i.flag.mx[data-v-4cc2e5c0]:before {
  background-position: -72px 0;
}
i.flag.malaysia[data-v-4cc2e5c0]:before, i.flag.my[data-v-4cc2e5c0]:before {
  background-position: -72px -26px;
}
i.flag.mozambique[data-v-4cc2e5c0]:before, i.flag.mz[data-v-4cc2e5c0]:before {
  background-position: -72px -52px;
}
i.flag.na[data-v-4cc2e5c0]:before, i.flag.namibia[data-v-4cc2e5c0]:before {
  background-position: -72px -78px;
}
i.flag.nc[data-v-4cc2e5c0]:before, i.flag.new.caledonia[data-v-4cc2e5c0]:before {
  background-position: -72px -104px;
}
i.flag.ne[data-v-4cc2e5c0]:before, i.flag.niger[data-v-4cc2e5c0]:before {
  background-position: -72px -130px;
}
i.flag.nf[data-v-4cc2e5c0]:before, i.flag.norfolk.island[data-v-4cc2e5c0]:before {
  background-position: -72px -156px;
}
i.flag.ng[data-v-4cc2e5c0]:before, i.flag.nigeria[data-v-4cc2e5c0]:before {
  background-position: -72px -182px;
}
i.flag.ni[data-v-4cc2e5c0]:before, i.flag.nicaragua[data-v-4cc2e5c0]:before {
  background-position: -72px -208px;
}
i.flag.netherlands[data-v-4cc2e5c0]:before, i.flag.nl[data-v-4cc2e5c0]:before {
  background-position: -72px -234px;
}
i.flag.no[data-v-4cc2e5c0]:before, i.flag.norway[data-v-4cc2e5c0]:before {
  background-position: -72px -260px;
}
i.flag.nepal[data-v-4cc2e5c0]:before, i.flag.np[data-v-4cc2e5c0]:before {
  background-position: -72px -286px;
}
i.flag.nauru[data-v-4cc2e5c0]:before, i.flag.nr[data-v-4cc2e5c0]:before {
  background-position: -72px -312px;
}
i.flag.niue[data-v-4cc2e5c0]:before, i.flag.nu[data-v-4cc2e5c0]:before {
  background-position: -72px -338px;
}
i.flag.new.zealand[data-v-4cc2e5c0]:before, i.flag.nz[data-v-4cc2e5c0]:before {
  background-position: -72px -364px;
}
i.flag.om[data-v-4cc2e5c0]:before, i.flag.oman[data-v-4cc2e5c0]:before {
  background-position: -72px -390px;
}
i.flag.pa[data-v-4cc2e5c0]:before, i.flag.panama[data-v-4cc2e5c0]:before {
  background-position: -72px -416px;
}
i.flag.pe[data-v-4cc2e5c0]:before, i.flag.peru[data-v-4cc2e5c0]:before {
  background-position: -72px -442px;
}
i.flag.french.polynesia[data-v-4cc2e5c0]:before, i.flag.pf[data-v-4cc2e5c0]:before {
  background-position: -72px -468px;
}
i.flag.new.guinea[data-v-4cc2e5c0]:before, i.flag.pg[data-v-4cc2e5c0]:before {
  background-position: -72px -494px;
}
i.flag.ph[data-v-4cc2e5c0]:before, i.flag.philippines[data-v-4cc2e5c0]:before {
  background-position: -72px -520px;
}
i.flag.pakistan[data-v-4cc2e5c0]:before, i.flag.pk[data-v-4cc2e5c0]:before {
  background-position: -72px -546px;
}
i.flag.pl[data-v-4cc2e5c0]:before, i.flag.poland[data-v-4cc2e5c0]:before {
  background-position: -72px -572px;
}
i.flag.pm[data-v-4cc2e5c0]:before, i.flag.saint.pierre[data-v-4cc2e5c0]:before {
  background-position: -72px -598px;
}
i.flag.pitcairn.islands[data-v-4cc2e5c0]:before, i.flag.pn[data-v-4cc2e5c0]:before {
  background-position: -72px -624px;
}
i.flag.pr[data-v-4cc2e5c0]:before, i.flag.puerto.rico[data-v-4cc2e5c0]:before {
  background-position: -72px -650px;
}
i.flag.palestine[data-v-4cc2e5c0]:before, i.flag.ps[data-v-4cc2e5c0]:before {
  background-position: -72px -676px;
}
i.flag.portugal[data-v-4cc2e5c0]:before, i.flag.pt[data-v-4cc2e5c0]:before {
  background-position: -72px -702px;
}
i.flag.palau[data-v-4cc2e5c0]:before, i.flag.pw[data-v-4cc2e5c0]:before {
  background-position: -72px -728px;
}
i.flag.paraguay[data-v-4cc2e5c0]:before, i.flag.py[data-v-4cc2e5c0]:before {
  background-position: -72px -754px;
}
i.flag.qa[data-v-4cc2e5c0]:before, i.flag.qatar[data-v-4cc2e5c0]:before {
  background-position: -72px -780px;
}
i.flag.re[data-v-4cc2e5c0]:before, i.flag.reunion[data-v-4cc2e5c0]:before {
  background-position: -72px -806px;
}
i.flag.ro[data-v-4cc2e5c0]:before, i.flag.romania[data-v-4cc2e5c0]:before {
  background-position: -72px -832px;
}
i.flag.rs[data-v-4cc2e5c0]:before, i.flag.serbia[data-v-4cc2e5c0]:before {
  background-position: -72px -858px;
}
i.flag.ru[data-v-4cc2e5c0]:before, i.flag.russia[data-v-4cc2e5c0]:before {
  background-position: -72px -884px;
}
i.flag.rw[data-v-4cc2e5c0]:before, i.flag.rwanda[data-v-4cc2e5c0]:before {
  background-position: -72px -910px;
}
i.flag.sa[data-v-4cc2e5c0]:before, i.flag.saudi.arabia[data-v-4cc2e5c0]:before {
  background-position: -72px -936px;
}
i.flag.sb[data-v-4cc2e5c0]:before, i.flag.solomon.islands[data-v-4cc2e5c0]:before {
  background-position: -72px -962px;
}
i.flag.sc[data-v-4cc2e5c0]:before, i.flag.seychelles[data-v-4cc2e5c0]:before {
  background-position: -72px -988px;
}
i.flag.sd[data-v-4cc2e5c0]:before, i.flag.sudan[data-v-4cc2e5c0]:before {
  background-position: -72px -1040px;
}
i.flag.se[data-v-4cc2e5c0]:before, i.flag.sweden[data-v-4cc2e5c0]:before {
  background-position: -72px -1066px;
}
i.flag.sg[data-v-4cc2e5c0]:before, i.flag.singapore[data-v-4cc2e5c0]:before {
  background-position: -72px -1092px;
}
i.flag.saint.helena[data-v-4cc2e5c0]:before, i.flag.sh[data-v-4cc2e5c0]:before {
  background-position: -72px -1118px;
}
i.flag.si[data-v-4cc2e5c0]:before, i.flag.slovenia[data-v-4cc2e5c0]:before {
  background-position: -72px -1144px;
}
i.flag.jan.mayen[data-v-4cc2e5c0]:before, i.flag.sj[data-v-4cc2e5c0]:before, i.flag.svalbard[data-v-4cc2e5c0]:before {
  background-position: -72px -1170px;
}
i.flag.sk[data-v-4cc2e5c0]:before, i.flag.slovakia[data-v-4cc2e5c0]:before {
  background-position: -72px -1196px;
}
i.flag.sierra.leone[data-v-4cc2e5c0]:before, i.flag.sl[data-v-4cc2e5c0]:before {
  background-position: -72px -1222px;
}
i.flag.san.marino[data-v-4cc2e5c0]:before, i.flag.sm[data-v-4cc2e5c0]:before {
  background-position: -72px -1248px;
}
i.flag.senegal[data-v-4cc2e5c0]:before, i.flag.sn[data-v-4cc2e5c0]:before {
  background-position: -72px -1274px;
}
i.flag.so[data-v-4cc2e5c0]:before, i.flag.somalia[data-v-4cc2e5c0]:before {
  background-position: -72px -1300px;
}
i.flag.sr[data-v-4cc2e5c0]:before, i.flag.suriname[data-v-4cc2e5c0]:before {
  background-position: -72px -1326px;
}
i.flag.sao.tome[data-v-4cc2e5c0]:before, i.flag.st[data-v-4cc2e5c0]:before {
  background-position: -72px -1352px;
}
i.flag.el.salvador[data-v-4cc2e5c0]:before, i.flag.sv[data-v-4cc2e5c0]:before {
  background-position: -72px -1378px;
}
i.flag.sy[data-v-4cc2e5c0]:before, i.flag.syria[data-v-4cc2e5c0]:before {
  background-position: -72px -1404px;
}
i.flag.swaziland[data-v-4cc2e5c0]:before, i.flag.sz[data-v-4cc2e5c0]:before {
  background-position: -72px -1430px;
}
i.flag.caicos.islands[data-v-4cc2e5c0]:before, i.flag.tc[data-v-4cc2e5c0]:before {
  background-position: -72px -1456px;
}
i.flag.chad[data-v-4cc2e5c0]:before, i.flag.td[data-v-4cc2e5c0]:before {
  background-position: -72px -1482px;
}
i.flag.french.territories[data-v-4cc2e5c0]:before, i.flag.tf[data-v-4cc2e5c0]:before {
  background-position: -72px -1508px;
}
i.flag.tg[data-v-4cc2e5c0]:before, i.flag.togo[data-v-4cc2e5c0]:before {
  background-position: -72px -1534px;
}
i.flag.th[data-v-4cc2e5c0]:before, i.flag.thailand[data-v-4cc2e5c0]:before {
  background-position: -72px -1560px;
}
i.flag.tajikistan[data-v-4cc2e5c0]:before, i.flag.tj[data-v-4cc2e5c0]:before {
  background-position: -72px -1586px;
}
i.flag.tk[data-v-4cc2e5c0]:before, i.flag.tokelau[data-v-4cc2e5c0]:before {
  background-position: -72px -1612px;
}
i.flag.timorleste[data-v-4cc2e5c0]:before, i.flag.tl[data-v-4cc2e5c0]:before {
  background-position: -72px -1638px;
}
i.flag.tm[data-v-4cc2e5c0]:before, i.flag.turkmenistan[data-v-4cc2e5c0]:before {
  background-position: -72px -1664px;
}
i.flag.tn[data-v-4cc2e5c0]:before, i.flag.tunisia[data-v-4cc2e5c0]:before {
  background-position: -72px -1690px;
}
i.flag.to[data-v-4cc2e5c0]:before, i.flag.tonga[data-v-4cc2e5c0]:before {
  background-position: -72px -1716px;
}
i.flag.tr[data-v-4cc2e5c0]:before, i.flag.turkey[data-v-4cc2e5c0]:before {
  background-position: -72px -1742px;
}
i.flag.trinidad[data-v-4cc2e5c0]:before, i.flag.tt[data-v-4cc2e5c0]:before {
  background-position: -72px -1768px;
}
i.flag.tuvalu[data-v-4cc2e5c0]:before, i.flag.tv[data-v-4cc2e5c0]:before {
  background-position: -72px -1794px;
}
i.flag.taiwan[data-v-4cc2e5c0]:before, i.flag.tw[data-v-4cc2e5c0]:before {
  background-position: -72px -1820px;
}
i.flag.tanzania[data-v-4cc2e5c0]:before, i.flag.tz[data-v-4cc2e5c0]:before {
  background-position: -72px -1846px;
}
i.flag.ua[data-v-4cc2e5c0]:before, i.flag.ukraine[data-v-4cc2e5c0]:before {
  background-position: -72px -1872px;
}
i.flag.ug[data-v-4cc2e5c0]:before, i.flag.uganda[data-v-4cc2e5c0]:before {
  background-position: -72px -1898px;
}
i.flag.um[data-v-4cc2e5c0]:before, i.flag.us.minor.islands[data-v-4cc2e5c0]:before {
  background-position: -72px -1924px;
}
i.flag.america[data-v-4cc2e5c0]:before, i.flag.united.states[data-v-4cc2e5c0]:before, i.flag.us[data-v-4cc2e5c0]:before {
  background-position: -72px -1950px;
}
i.flag.uruguay[data-v-4cc2e5c0]:before, i.flag.uy[data-v-4cc2e5c0]:before {
  background-position: -72px -1976px;
}
i.flag.uz[data-v-4cc2e5c0]:before, i.flag.uzbekistan[data-v-4cc2e5c0]:before {
  background-position: -108px 0;
}
i.flag.va[data-v-4cc2e5c0]:before, i.flag.vatican.city[data-v-4cc2e5c0]:before {
  background-position: -108px -26px;
}
i.flag.saint.vincent[data-v-4cc2e5c0]:before, i.flag.vc[data-v-4cc2e5c0]:before {
  background-position: -108px -52px;
}
i.flag.ve[data-v-4cc2e5c0]:before, i.flag.venezuela[data-v-4cc2e5c0]:before {
  background-position: -108px -78px;
}
i.flag.british.virgin.islands[data-v-4cc2e5c0]:before, i.flag.vg[data-v-4cc2e5c0]:before {
  background-position: -108px -104px;
}
i.flag.us.virgin.islands[data-v-4cc2e5c0]:before, i.flag.vi[data-v-4cc2e5c0]:before {
  background-position: -108px -130px;
}
i.flag.vietnam[data-v-4cc2e5c0]:before, i.flag.vn[data-v-4cc2e5c0]:before {
  background-position: -108px -156px;
}
i.flag.vanuatu[data-v-4cc2e5c0]:before, i.flag.vu[data-v-4cc2e5c0]:before {
  background-position: -108px -182px;
}
i.flag.wallis.and.futuna[data-v-4cc2e5c0]:before, i.flag.wf[data-v-4cc2e5c0]:before {
  background-position: -108px -234px;
}
i.flag.samoa[data-v-4cc2e5c0]:before, i.flag.ws[data-v-4cc2e5c0]:before {
  background-position: -108px -260px;
}
i.flag.ye[data-v-4cc2e5c0]:before, i.flag.yemen[data-v-4cc2e5c0]:before {
  background-position: -108px -286px;
}
i.flag.mayotte[data-v-4cc2e5c0]:before, i.flag.yt[data-v-4cc2e5c0]:before {
  background-position: -108px -312px;
}
i.flag.south.africa[data-v-4cc2e5c0]:before, i.flag.za[data-v-4cc2e5c0]:before {
  background-position: -108px -338px;
}
i.flag.zambia[data-v-4cc2e5c0]:before, i.flag.zm[data-v-4cc2e5c0]:before {
  background-position: -108px -364px;
}
i.flag.zimbabwe[data-v-4cc2e5c0]:before, i.flag.zw[data-v-4cc2e5c0]:before {
  background-position: -108px -390px;
}
.app-locale-picker-overlay .ant-dropdown-menu-item[data-v-4cc2e5c0] {
  min-width: 160px;
}
[data-v-4cc2e5c0] .ant-select-selection-item {
  margin-left: 20px;
}
.qzIcon[data-v-4cc2e5c0] {
  position: absolute;
  top: 14px;
  font-size: 1rem;
  left: 10px;
}html[data-theme='dark'] .vben-dark-switch[data-v-23924f04] {
  border: 1px solid #c4bcbc;
}
.vben-dark-switch[data-v-23924f04] {
  position: relative;
  display: flex;
  width: 50px;
  height: 26px;
  padding: 0 6px;
  margin-left: auto;
  cursor: pointer;
  background-color: #151515;
  border-radius: 30px;
  justify-content: space-between;
  align-items: center;
}
.vben-dark-switch-inner[data-v-23924f04] {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.5s, background-color 0.5s;
  will-change: transform;
}
.vben-dark-switch--dark .vben-dark-switch-inner[data-v-23924f04] {
  transform: translateX(calc(100% + 2px));
}.footer {
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.cancelBtn {
  margin-right: 12px;
  font-size: 0.875rem;
  padding: 2px 15px;
}
.okBtn {
  font-size: 0.875rem;
  padding: 2px 15px;
}.vxe-modal--wrapper {
  font-size: 0.875rem;
}
.vxe-modal--wrapper.is--maximize .vxe-modal--box {
  border-radius: 0px !important;
}.main[data-v-ca67232c] {
  height: 100%;
}
[data-v-ca67232c] .vxe-modal--content {
  padding: 0 !important;
}.customForm[data-v-8be2d99c] {
  height: 100%;
  overflow: auto;
}
.customForm[data-v-8be2d99c] .cus-footer {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--vxe-modal-body-background-color);
  display: block;
  text-align: right;
}
.customForm[data-v-8be2d99c] .cus-footer .ant-btn {
  margin-left: 10px;
}
.customForm .ant-form-item-control[data-v-8be2d99c] {
  width: 200px;
  flex-grow: inherit;
}
.customForm .ant-form-item-label[data-v-8be2d99c] {
  width: 400px;
}.fullscreen-modal {
  overflow: hidden;
}
.fullscreen-modal .ant-modal {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100%;
}
.fullscreen-modal .ant-modal-content {
  height: 100%;
}
.ant-modal {
  width: 520px;
  padding-bottom: 0;
}
.ant-modal .ant-modal-body > .scrollbar {
  padding: 14px;
}
.ant-modal-title {
  font-size: 1rem;
  font-weight: bold;
}
.ant-modal-title .base-title {
  cursor: move !important;
}
.ant-modal .ant-modal-body {
  padding: 0;
}
.ant-modal .ant-modal-body > .scrollbar > .scrollbar__bar.is-horizontal {
  display: none;
}
.ant-modal-large {
  top: 60px;
}
.ant-modal-large--mini {
  top: 16px;
}
.ant-modal-header {
  padding: 16px;
}
.ant-modal-content {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.ant-modal-footer button + button {
  margin-left: 10px;
}
.ant-modal-close {
  font-weight: normal;
  outline: none;
}
.ant-modal-close-x {
  display: inline-block;
  width: 96px;
  height: 56px;
  line-height: 56px;
}
.ant-modal-confirm-body .ant-modal-confirm-content > * {
  color: #909399;
}
.ant-modal-confirm-confirm.error .ant-modal-confirm-body > .anticon {
  color: #ED6F6F;
}
.ant-modal-confirm-btns .ant-btn:last-child {
  margin-right: 0;
}
.ant-modal-confirm-info .ant-modal-confirm-body > .anticon {
  color: #EFBD47;
}
.ant-modal-confirm-confirm.success .ant-modal-confirm-body > .anticon {
  color: #55D187;
}
.ant-modal-confirm .ant-modal-body {
  padding: 24px !important;
}
@media screen and (max-height: 600px) {
  .ant-modal {
    top: 60px;
  }
}
@media screen and (max-height: 540px) {
  .ant-modal {
    top: 30px;
  }
}
@media screen and (max-height: 480px) {
  .ant-modal {
    top: 10px;
  }
}.vben-basic-modal-close {
  display: flex;
  height: 95%;
  align-items: center;
}
.vben-basic-modal-close > span {
  margin-left: 48px;
  font-size: 1rem;
}
.vben-basic-modal-close--can-full > span {
  margin-left: 12px;
}
.vben-basic-modal-close:not(.vben-basic-modal-close--can-full) > span:nth-child(1):hover {
  font-weight: 700;
}
.vben-basic-modal-close span:nth-child(1) {
  display: inline-block;
  padding: 10px;
}
.vben-basic-modal-close span:nth-child(1):hover {
  color: #1677ff;
}
.vben-basic-modal-close span:last-child:hover {
  color: #ED6F6F;
}.vben-basic-table-action {
  display: flex;
  align-items: center;
}
.vben-basic-table-action .action-divider {
  display: table;
}
.vben-basic-table-action.left {
  justify-content: flex-start;
}
.vben-basic-table-action.center {
  justify-content: center;
}
.vben-basic-table-action.right {
  justify-content: flex-end;
}
.vben-basic-table-action button {
  display: flex;
  align-items: center;
}
.vben-basic-table-action button span {
  margin-left: 0 !important;
}
.vben-basic-table-action button.ant-btn-circle span {
  margin: auto !important;
}
.vben-basic-table-action .ant-divider, .vben-basic-table-action .ant-divider-vertical {
  margin: 0 2px;
}
.vben-basic-table-action .icon-more {
  transform: rotate(90deg);
}
.vben-basic-table-action .icon-more svg {
  font-size: 1.1em;
  font-weight: 700;
}.thumb img {
  position: static;
  display: block;
  cursor: zoom-in;
  border-radius: 4px;
  -o-object-fit: cover;
  object-fit: cover;
}.file-table {
  width: 100%;
  border-collapse: collapse;
}
.file-table .center {
  text-align: center;
}
.file-table .left {
  text-align: left;
}
.file-table .right {
  text-align: right;
}
.file-table-th, .file-table-td {
  padding: 12px 8px;
}
.file-table thead {
  background-color: #fafafa;
}
.file-table table, .file-table td, .file-table th {
  border: 1px solid #d9d9d9;
}.upload-modal .ant-upload-list {
  display: none;
}
.upload-modal .ant-table-wrapper .ant-spin-nested-loading {
  padding: 0;
}
.upload-modal-toolbar {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.upload-modal-toolbar__btn {
  margin-left: 8px;
  text-align: right;
  flex: 1;
}.upload-preview-modal .ant-upload-list {
  display: none;
}
.upload-preview-modal .ant-table-wrapper .ant-spin-nested-loading {
  padding: 0;
}.ripple-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.ripple-effect {
  position: relative;
  z-index: 9999;
  width: 1px;
  height: 1px;
  margin-top: 0;
  margin-left: 0;
  pointer-events: none;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}.tag-search[data-v-ea0501e8] {
  padding: 1px 0px 1px 12px;
  display: flex;
}
.tag-li[data-v-ea0501e8] {
  display: flex;
  align-items: center;
  justify-content: space-between;
}.tag-btn-list .ant-dropdown-menu-title-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}.ant-form label[data-v-578aec6c] {
  font-size: 0.875rem;
}.radio-group[data-v-09095b43] {
  display: flex;
  align-items: center;
}
#toolbars[data-v-09095b43] {
  display: flex;
  height: 40px;
}
#toolbars .vxe-toolbar[data-v-09095b43] {
  width: 100%;
  overflow: hidden;
  padding: 0px;
  border-radius: 8px 8px 0 0;
}
#toolbars .vxe-toolbar .rightTool[data-v-09095b43] {
  padding: 6px;
}
#toolbars .vxe-toolbar .leftTool[data-v-09095b43] {
  padding: 6px;
  position: absolute;
  left: 0;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper {
  height: 100%;
  overflow: hidden;
  flex-wrap: nowrap;
  position: relative;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .ctrl {
  background-color: var(--vxe-table-header-background-color);
  position: absolute;
  right: 0px;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons.isAppTool {
  overflow-x: scroll;
  overflow-y: hidden;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons.isAppTool::-webkit-scrollbar {
  display: none;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons .btn-active {
  color: var(--vxe-primary-color) !important;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons .selected {
  border: 1px solid var(--vxe-primary-color) !important;
  color: var(--vxe-primary-color);
  background: var(--vxe-table-column-hover-background-color) !important;
  border-radius: 8px !important;
  height: 80% !important;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons .menusbuttons {
  display: flex;
  height: 100%;
  white-space: nowrap;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons .leftbuttons, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .buttons .rightbuttons {
  height: 100%;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .vxe-button {
  height: 100%;
  border: none;
  border-radius: 0px;
  margin-left: 0px !important;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .vxe-button:hover {
  background-color: var(--vxe-table-column-hover-background-color);
  color: var(--vxe-primary-color);
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .vxe-button:focus {
  box-shadow: none;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .vxe-button.is--disabled:hover {
  background-color: transparent;
  color: var(--vxe-font-disabled-color);
  cursor: no-drop;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .vxe-button--dropdown {
  height: 100%;
  border: none;
  margin-left: 0px;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box {
  display: flex;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box .color-btn {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: inline-block;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button {
  background: transparent;
  height: 100%;
  border: none;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box .color-btn, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button .color-btn {
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: inline-block;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box:not(:disabled), #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button:not(:disabled) {
  color: var(--vxe-font-color);
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box:not(:disabled):hover, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button:not(:disabled):hover {
  background-color: var(--vxe-table-column-hover-background-color);
  color: var(--vxe-primary-color);
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box:not(:disabled):hover .drop-icon, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button:not(:disabled):hover .drop-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box > .anticon + span, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button > .anticon + span, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box > span + .anticon, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button > span + .anticon {
  margin-left: 5px;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box .drop-icon, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button .drop-icon {
  transition: transform 0.3s ease;
  position: relative;
  top: 2px;
}
#toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper button.btns-box[ant-click-animating-without-extra-node]:after, #toolbars .vxe-toolbar[data-v-09095b43] .vxe-buttons--wrapper .btns-box > button[ant-click-animating-without-extra-node]:after {
  border: 0 none;
  opacity: 0;
  animation: none 0 ease 0 1 normal;
}
#toolbars .vxe-toolbar[data-v-09095b43] ::-webkit-scrollbar-track {
  background: #dcdfe6;
}
[data-v-09095b43] .vxe-input.is--suffix.is--controls.type--search .vxe-input--inner {
  padding-right: 1.8em;
}
.circle[data-v-09095b43] {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 3px;
  padding: 0;
  margin-right: 5px;
  border: none;
}
.spanStyle[data-v-09095b43] {
  color: #9fa1a5;
  font-size: 0.875rem;
}