
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  background: #1A1926;
}



.flex{
  display: flex;
}
.flex-col{
  flex-direction: column;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.align-center{
  align-items: center;
}

.relative{
  position: relative;
}

.absolute{
  position: absolute;
}

.toast-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
}


.toast {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 20px 40px;
  border-radius: 12px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  max-width: 80%;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-container-filter {
  position: fixed;
  top:100px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
}


.toast-filter {
  position:relative;
  font-size: 14px;
  width: calc(max-content + 2px);
  height: max-content;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 24px 24px 24px 24px;
  background: linear-gradient(360deg, #557EA9, #1A1E3D);
  display: flex;
  justify-content: center;

}

.toast-box{
  margin-bottom: 2px;
  color: white;
  padding: 20px 40px;
  width: max-content;
  height: max-content;
  border-radius: 24px 24px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1E2048;
    border: 1px solid transparent;
}


.toast-filter.show {
  opacity: 1;
  transform: translateY(0);
}

.instructions {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  margin-top: 40px;
  color: white;
  text-align: left;
}


.logout-check{
  color: #fff !important;
  cursor: pointer !important;
}

/* 菊花loading样式 */
.chrysanthemum-loader {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 80px;
        margin: 1.5rem 0;
      }

      .chrysanthemum-loader div {
        transform-origin: 40px 40px;
        animation: chrysanthemum 1.2s linear infinite;
      }

      .chrysanthemum-loader div:after {
        content: " ";
        display: block;
        position: absolute;
        top: 3px;
        left: 37px;
        width: 6px;
        height: 18px;
        border-radius: 20%;
        background: #ffffff;
      }

      .chrysanthemum-loader div:nth-child(1) {
        transform: rotate(0deg);
        animation-delay: -1.1s;
      }

      .chrysanthemum-loader div:nth-child(2) {
        transform: rotate(30deg);
        animation-delay: -1s;
      }

      .chrysanthemum-loader div:nth-child(3) {
        transform: rotate(60deg);
        animation-delay: -0.9s;
      }

      .chrysanthemum-loader div:nth-child(4) {
        transform: rotate(90deg);
        animation-delay: -0.8s;
      }

      .chrysanthemum-loader div:nth-child(5) {
        transform: rotate(120deg);
        animation-delay: -0.7s;
      }

      .chrysanthemum-loader div:nth-child(6) {
        transform: rotate(150deg);
        animation-delay: -0.6s;
      }

      .chrysanthemum-loader div:nth-child(7) {
        transform: rotate(180deg);
        animation-delay: -0.5s;
      }

      .chrysanthemum-loader div:nth-child(8) {
        transform: rotate(210deg);
        animation-delay: -0.4s;
      }

      .chrysanthemum-loader div:nth-child(9) {
        transform: rotate(240deg);
        animation-delay: -0.3s;
      }

      .chrysanthemum-loader div:nth-child(10) {
        transform: rotate(270deg);
        animation-delay: -0.2s;
      }

      .chrysanthemum-loader div:nth-child(11) {
        transform: rotate(300deg);
        animation-delay: -0.1s;
      }

      .chrysanthemum-loader div:nth-child(12) {
        transform: rotate(330deg);
        animation-delay: 0s;
      }

/* 更多条形样式... */

@keyframes chrysanthemum {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


@media (max-width: 1360px) {
  html {
    background-color: #fff;
    font-size: calc(100vw / 7.5);
    scrollbar-width: 0 !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body{
    scrollbar-width: 0 !important;
    -webkit-overflow-scrolling: touch !important;
  }
  body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
  }

}

