svg[data-v-194bc726] {
  display: inline-block;
  width: 14px;
  height: 14px;
  fill: currentColor;
  vertical-align: middle;
  outline: none;
}
svg.cursor[data-v-194bc726] {
  cursor: pointer;
}

.tt-loading {
  width: 54px;
  height: 54px;
  border-radius: 54px;
  border-width: 2px;
  border-style: solid;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-left-color: var(--active-color);
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}
.tt-loading-theme-dark {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.tt-loading-theme-light {
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
}
.tt-loading-size--lg {
  width: 54px;
  height: 54px;
  border-radius: 54px;
  border-width: 4px;
  border-style: solid;
}
.tt-loading-size--md {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border-width: 4px;
  border-style: solid;
}
.tt-loading-size--sm {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border-width: 2px;
  border-style: solid;
}
@keyframes load8 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}

/*
 * Variables here for theme styling
 */
.tt-button {
  box-sizing: border-box;
  height: 30px;
  padding: 6px 12px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 2px;
  background-color: var(--btn-bg);
  color: #FFFFFF;
}
.tt-button:not(:disabled):hover,
.tt-button:not(:disabled):focus,
.tt-button:not(:disabled):active {
  color: #FFFFFF;
  background-color: var(--btn-bg);
  opacity: 0.8;
}
.tt-button-block {
  display: block;
  width: 100%;
}
.tt-button-theme--primary {
  background-color: var(--active-color);
  color: var(--btn-color);
}
.tt-button-theme--primary:not(:disabled):hover,
.tt-button-theme--primary:not(:disabled):focus,
.tt-button-theme--primary:not(:disabled):active {
  color: var(--btn-color);
  background-color: var(--active-color);
  opacity: 0.8;
}
.tt-button-theme-error {
  background-color: #D91E18;
  color: var(--btn-color);
}
.tt-button-theme-error:not(:disabled):hover,
.tt-button-theme-error:not(:disabled):focus,
.tt-button-theme-error:not(:disabled):active {
  color: var(--btn-color);
  background-color: #D91E18;
  opacity: 0.8;
}
.tt-button-theme-warning {
  background-color: #FF4500;
  color: var(--btn-color);
}
.tt-button-theme-warning:not(:disabled):hover,
.tt-button-theme-warning:not(:disabled):focus,
.tt-button-theme-warning:not(:disabled):active {
  color: var(--btn-color);
  background-color: #FF4500;
  opacity: 0.8;
}
.tt-button-theme-success {
  background-color: #3CC864;
  color: var(--btn-color);
}
.tt-button-theme-success:not(:disabled):hover,
.tt-button-theme-success:not(:disabled):focus,
.tt-button-theme-success:not(:disabled):active {
  color: var(--btn-color);
  background-color: #3CC864;
  opacity: 0.8;
}
.tt-button-theme-info {
  background-color: #1E90FF;
  color: var(--btn-color);
}
.tt-button-theme-info:not(:disabled):hover,
.tt-button-theme-info:not(:disabled):focus,
.tt-button-theme-info:not(:disabled):active {
  color: var(--btn-color);
  background-color: #1E90FF;
  opacity: 0.8;
}
.tt-button-size--lg {
  height: 40px;
}
.tt-button-size--sm {
  height: 28px;
}
.tt-button-disabled {
  cursor: default;
  opacity: 0.7;
  color: #FFFFFF;
  background-color: var(--btn-bg);
}
.tt-button .tt-loading {
  width: 15px;
  height: 15px;
  border-width: 1px;
  border-left-color: var(--btn-color);
}

/*
 * Variables here for theme styling
 */
.tt-modal {
  position: relative;
  width: 540px;
  margin: 0 auto;
  background-color: var(--bg-block);
  background-clip: padding-box;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
}
.tt-modal--body-lock {
  overflow: hidden;
}
.tt-modal--centered {
  text-align: center;
}
.tt-modal--centered:before {
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  content: '';
}
.tt-modal--centered .tt-modal {
  top: 0;
  display: inline-block;
  text-align: initial;
  vertical-align: middle;
}
.tt-modal-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  overflow: auto;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
.tt-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.tt-modal-title {
  margin: 0;
  padding: 15px 20px 0;
  font-size: 16px;
  text-align: center;
  color: var(--active-color);
}
.tt-modal-body {
  padding: 20px;
}
.tt-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 10px;
  color: var(--sub-text-color);
  cursor: pointer;
}
.tt-modal-footer {
  padding: 10px 20px 20px;
  text-align: center;
}
.tt-modal-button {
  width: 100px;
  height: 30px;
  padding: 0;
  margin: 0 15px 0 0;
  outline: none;
  border: none;
  border-radius: 2px;
  line-height: 30px;
}
.tt-modal-button:last-child {
  margin-right: 0;
}

.tt-modal--confirm {
  width: 400px;
}
.tt-modal--confirm-content {
  white-space: pre-wrap;
  max-height: 10.5em;
  padding: 0 20px;
  overflow-y: auto;
  overflow-x: hidden;
  color: var(--sub-text-color);
}
.tt-modal--confirm .tt-modal-title {
  color: var(--active-color);
}
.tt-modal--confirm .tt-modal-body {
  padding: 20px 0;
  text-align: center;
}
.tt-modal--confirm .tt-modal-footer {
  padding: 10px 20px 20px;
}

.tt-notification[data-v-1fd19812] {
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 1050;
  -webkit-user-select: none;
          user-select: none;
  right: 15px;
  top: 15px;
  width: 344px;
  height: 67px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.2), 0 0 3px 0 rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background: var(--bg-fade);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  transition: top 200ms ease-in-out;
}
.tt-notification-head[data-v-1fd19812] {
  width: 47px;
  text-align: center;
}
.tt-notification-head .icon[data-v-1fd19812] {
  display: block;
  margin: 0 auto;
  color: var(--active-color);
}
.tt-notification-close[data-v-1fd19812] {
  padding: 15px 15px 15px 30px;
  cursor: pointer;
}
.tt-notification-close .icon[data-v-1fd19812] {
  display: block;
  width: 17px;
  height: 17px;
  color: var(--light-grey);
  margin: 0 auto;
}
.tt-notification-main[data-v-1fd19812] {
  flex: 1;
}
.tt-notification-title[data-v-1fd19812] {
  color: var(--active-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.tt-notification-content[data-v-1fd19812] {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: justify;
  font-size: 12px;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.transition-drop-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: dropIn;
  animation-play-state: running;
}
.transition-drop-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: dropIn;
  animation-play-state: running;
}
.transition-drop-leave-active {
  animation-name: dropOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@keyframes dropIn {
0% {
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
}
100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
}
}
@keyframes dropOut {
0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
}
100% {
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
}
}
.transition-up-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: upIn;
  animation-play-state: running;
}
.transition-up-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-name: upIn;
  animation-play-state: running;
}
.transition-up-leave-active {
  animation-name: upOut;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@keyframes upIn {
0% {
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: bottom;
}
100% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
}
}
@keyframes upOut {
0% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: bottom;
}
100% {
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: bottom;
}
}
.transition-slide-right-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: slideRightIn;
  animation-play-state: running;
}
.transition-slide-right-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: slideRightIn;
  animation-play-state: running;
}
.transition-slide-right-leave-active {
  animation-name: slideRightOut;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
.transition-slide-left-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: slideLeftIn;
  animation-play-state: running;
}
.transition-slide-left-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: slideLeftIn;
  animation-play-state: running;
}
.transition-slide-left-leave-active {
  animation-name: slideLeftOut;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@keyframes slideLeftIn {
0% {
    opacity: 0;
    transform: translateZ(0) translateX(-50%);
}
100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
}
}
@keyframes slideLeftOut {
0% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
}
100% {
    opacity: 0;
    transform: translateZ(0) translateX(-50%);
}
}
@keyframes slideRightIn {
0% {
    opacity: 0;
    transform: translateZ(0) translateX(50%);
}
100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
}
}
@keyframes slideRightOut {
0% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
}
100% {
    opacity: 0;
    transform: translateZ(0) translateX(50%);
}
}
.transition-zoom-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-play-state: running;
}
.transition-zoom-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-play-state: running;
}
.transition-zoom-leave-active {
  animation-name: zoomOut;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@keyframes zoomIn {
0% {
    opacity: 0.5;
    transform: scale(1.1);
}
100% {
    opacity: 1;
    transform: scale(1);
}
}
@keyframes zoomOut {
0% {
    opacity: 1;
    transform: scale(1);
}
100% {
    opacity: 0
  ;
    transform: scale(1.1);
}
}
.transition-fade-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.225s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-play-state: running;
}
.transition-fade-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.225s;
  animation-fill-mode: both;
  animation-name: fadeIn;
  animation-play-state: running;
}
.transition-fade-leave-active {
  animation-name: fadeOut;
  animation-duration: 0.225s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@keyframes fadeIn {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}
@keyframes fadeOut {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}
.transition-notice-appear-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: noticeIn;
  animation-play-state: running;
}
.transition-notice-enter-active {
  animation-timing-function: ease-in-out;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-name: noticeIn;
  animation-play-state: running;
}
.transition-notice-leave-active {
  animation-name: noticeOut;
  animation-duration: 0.25s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-play-state: running;
}
@keyframes noticeIn {
0% {
    opacity: 0;
    transform: translateZ(0) translateX(50%);
}
100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
}
}
@keyframes noticeOut {
0% {
    opacity: 1;
    transform: translateZ(0) translateY(0);
}
100% {
    opacity: 0;
    transform: translateZ(0) translateY(-10px);
}
}

/*
 * Variables here for theme styling
 */
.tt-form .tt-form-item-label {
  text-align: right;
  vertical-align: middle;
  float: left;
  font-size: 12px;
  color: #232C37;
  line-height: 17px;
  padding: 10px 12px 10px 0;
  box-sizing: border-box;
}
.tt-form-label-left .tt-form-item-label {
  text-align: left;
}
.tt-form-label-top .tt-form-item-label {
  float: none;
  display: inline-block;
  padding: 0 0 5px 0;
}
.tt-form-inline .tt-form-item {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}
.tt-form-item {
  margin-bottom: 15px;
  vertical-align: top;
  zoom: 1;
}
.tt-form-item:before,
.tt-form-item:after {
  content: '';
  display: table;
}
.tt-form-item:after {
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}
.tt-form-item-content {
  position: relative;
  line-height: 32px;
  font-size: 12px;
}
.tt-form-item .tt-form-item {
  margin-bottom: 0;
}
.tt-form-item .tt-form-item .tt-form-item-content {
  margin-left: 0 !important;
}
.tt-form-item-error-tip {
  top: 100%;
  left: 0;
  line-height: 1.4;
  color: #FF4A4A;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: bold;
}
.tt-form-item-error-tip .icon {
  display: inline-block;
  margin-top: 2px;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: #FF4A4A;
  margin-right: 5px;
}
.tt-form-item-required .tt-form-item-label:before {
  content: '*';
  display: inline-block;
  margin-right: 4px;
  line-height: 1;
  font-size: 12px;
  color: red;
}
.tt-form-item-error .tt-input {
  border-color: #FF4A4A;
}
.tt-form-hide-required-mark .tt-form-item-required .tt-form-item-label:before {
  display: none;
}

.tt-input {
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 5px 10px;
  margin: 0;
  line-height: 1.5;
  border: solid 1px #E1E6F0;
  border-radius: 2px;
  color: #333;
  background-color: #FFF;
  outline: none;
  cursor: text;
  height: 35px;
}
.tt-input:-webkit-autofill {
  animation: autoFillAnimation;
}
.tt-input::placeholder {
  color: #999;
}
.tt-input:focus {
  color: #333;
  background-color: #FFF;
  border-color: var(--active-color);
}
.tt-input:focus::placeholder {
  color: #999;
}
.tt-input:hover {
  color: #333;
  border-color: var(--active-color);
  background-color: #FFF;
}
.tt-input-disabled:disabled {
  cursor: not-allowed;
  border-color: #E1E6F0;
  background-color: initial;
  opacity: 0.7;
}
.tt-input-disabled:disabled::placeholder {
  color: #999;
}
.tt-input-disabled:disabled:hover,
.tt-input-disabled:disabled:focus {
  color: #999;
  border-color: #E1E6F0;
}
.tt-input-wrap {
  display: inline-block;
  width: 100%;
  position: relative;
  vertical-align: middle;
  line-height: normal;
  outline: none;
}
.tt-input-wrap:hover .tt-input-clear {
  display: block;
}
.tt-input-size--sm {
  height: 28px;
}
.tt-input-size--lg {
  height: 42px;
}
.tt-input-clear {
  display: none;
}
.tt-input-width-suffix {
  padding-right: 42px;
}
.tt-input-suffix,
.tt-input-prefix {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  width: 30px;
}
.tt-input-suffix {
  right: 0;
  cursor: pointer;
}
.tt-input-prefix {
  left: 0;
  cursor: pointer;
}

.geetest-box {
  width: 0;
  height: 0;
}

/*
 * Variables here for theme styling
 */
.tt-encrypt-code {
  position: relative;
  display: inline-block;
}
.tt-encrypt-code .encrypt-input {
  padding: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  opacity: 0;
}
.tt-encrypt-code .encrypt-box {
  display: flex;
  align-items: center;
}
.tt-encrypt-code .encrypt-box.encrypt-type--box .encrypt-cell {
  border: 1px solid #e1e6f0;
}
.tt-encrypt-code .encrypt-box.encrypt-type--underline .encrypt-cell {
  border: none;
  margin: 0 3px;
  border-bottom: 1px solid #a0aaaf;
}
.tt-encrypt-code .encrypt-box .encrypt-cell {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  background-color: #fff;
  color: #fff;
  text-align: center;
}
.tt-encrypt-code .encrypt-box .encrypt-cell.show {
  color: #222;
}
.tt-encrypt-code .encrypt-box .encrypt-cell:not(:last-child) {
  border-right: none;
}
.tt-encrypt-code .encrypt-box .encrypt-cell:first-of-type {
  border-radius: 2px 0 0 2px;
}
.tt-encrypt-code .encrypt-box .encrypt-cell:last-of-type {
  border-radius: 0 2px 2px 0;
}
.tt-encrypt-code .encrypt-input:focus + .encrypt-box .active:after {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  height: 20px;
  border-left: solid 1px #232C37;
  animation: blink 800ms linear infinite;
}
@keyframes blink {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}


.country-mark[data-v-27f58b8d] {
  display: inline-block;
  width: 16px;
  vertical-align: middle;
}

/*
 * Variables here for theme styling
 */
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}
.simplebar-wrapper {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}
.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  visibility: visible;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.simplebar-content:after,
.simplebar-content:before {
  content: ' ';
  display: table;
}
.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}
.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}
.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}
.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}
.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #616A79;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition: opacity 0s linear;
}
.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}
.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}
.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}
.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}
[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}
.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}
.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tt-select-dropdown {
  width: inherit;
  box-sizing: border-box;
  border-radius: 2px;
  position: absolute;
  z-index: 1040;
  transform-origin: center top;
}
.tt-select-dropdown-transfer {
  z-index: 1060;
  width: auto;
}

/*
 * Variables here for theme styling
 */
.tt-select-box {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  min-width: 90px;
  outline: none;
  cursor: pointer;
}
.tt-select-box.opened {
  border-color: var(--active-color);
}
.tt-select-box.opened .tt-select-box-input {
  border-color: var(--active-color);
  color: var(--active-color);
}
.tt-select-box.opened .tt-select-box-icon {
  background-color: var(--active-color);
}
.tt-select-box.disabled {
  opacity: 0.8;
  cursor: default;
}
.tt-select-box-input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 32px;
  font-size: 12px;
  line-height: 30px;
  padding-left: 10px;
  padding-right: 40px;
  border-radius: 2px;
  border: solid 1px var(--special-color);
  background: transparent;
  overflow: hidden;
  position: relative;
  color: #838D9E;
  outline: none;
}
.tt-select-box-input:not(:disabled):hover {
  color: #838D9E;
  background: transparent;
}
.tt-select-box-input:not(:disabled):focus {
  color: #838D9E;
  background: transparent;
}
.tt-select-box-custom-input {
  display: block;
  cursor: pointer;
  outline: none;
}
.tt-select-box-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1px;
  top: 1px;
  background-color: var(--special-color);
}
.tt-select-box-icon:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-right-color: #838d9e;
  border-bottom-color: #838d9e;
  bottom: 3px;
  right: 10px;
  top: 9px;
  transform: rotate(45deg);
}
.tt-select-box-menu {
  width: 100%;
  min-width: 90px;
  margin: 8px 0 0;
  padding: 0;
  border-radius: 2px;
  background-color: var(--drop-list);
  box-shadow: 2px 2px 10px var(--bg-default);
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 300px;
  z-index: 1000;
}
.tt-select-box-menu li {
  margin: 0;
  padding: 8px;
  color: #838D9E;
  line-height: 1;
  font-size: 12px;
  list-style: none;
  cursor: pointer;
}
.tt-select-box-menu li:not(.selected):hover {
  color: var(--default-font-color);
  background-color: var(--hover-color);
}
.tt-select-box-menu .selected {
  color: var(--active-color);
}

.tt-plus-minus {
  position: relative;
  display: inline-block;
}
.tt-plus-minus .input {
  height: 32px;
  padding: 0 40px;
  border: solid 1px var(--border-color);
  box-sizing: border-box;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  background-color: transparent;
}
.tt-plus-minus .input:not(:disabled):focus {
  border-color: var(--active-color);
}
.tt-plus-minus .input[disabled] {
  opacity: 0.8;
  cursor: default;
}
.tt-plus-minus .plus,
.tt-plus-minus .minus {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 1px;
  background-color: var(--light-grey);
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.tt-plus-minus .plus.disabled,
.tt-plus-minus .minus.disabled {
  opacity: 0.8;
  cursor: default;
}
.tt-plus-minus .minus {
  left: 1px;
}
.tt-plus-minus .minus:after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 14px;
  left: 10px;
  background-color: #838d9e;
}
.tt-plus-minus .plus {
  right: 1px;
}
.tt-plus-minus .plus:before {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 14px;
  left: 10px;
  background-color: #838d9e;
}
.tt-plus-minus .plus:after {
  content: '';
  display: block;
  position: absolute;
  width: 2px;
  height: 10px;
  top: 10px;
  left: 14px;
  background-color: #838d9e;
}

.virtual-list[data-v-a411ffe8] {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.virtual-list .list-view-content[data-v-a411ffe8] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
}

.tt-no-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
  height: 100%;
  color: var(--light-grey);
}
.tt-no-data svg {
  width: 53px;
  height: 58px;
  margin: -40px 0 10px;
  color: var(--light-grey);
}

.tabs[data-v-eca74e6c] {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}
.tabs-cell[data-v-eca74e6c] {
  position: relative;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  font-size: 12px;
  color: var(--default-font-color);
}
.tabs-cell.active[data-v-eca74e6c] {
  color: var(--active-color);
}


.tab-panel[data-v-5a0b9aa4] {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  overflow-y: auto;
}

.tt-echart {
  flex: 1;
  margin: 0 auto;
}

/*
 * Variables here for theme styling
 */
.load-more[data-v-f1756e68] {
  display: block;
  max-width: 100%;
}
.status-loading[data-v-f1756e68] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  color: var(--active-color);
  font-weight: 500;
}
.status-loading .loading-text[data-v-f1756e68] {
  margin-left: 10px;
}
.status-nomore[data-v-f1756e68],
.status-empty[data-v-f1756e68] {
  padding: 30px 0;
  text-align: center;
  color: #838D9E;
}

