



/*点击波纹*/
.waves-effect.waves-green .waves-ripple {

  /* The alpha value allows the text and background color
  of the button to still show through. */
  background-color: rgba(185, 246, 202, 0.5);
}



.circular {
  animation: rotate 2s linear infinite;
  height: 60px;
  width: 60px;
  margin: 0;
  margin-bottom: 12px;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke: var(--theme-color-1);
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }

}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }

}

.loader-showbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  color: #86909c;
}
