#lights {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  canvas {
    width: 100%;
    height: 100%;
  }

.text-type {
    display: inline-block;
    white-space: pre-wrap;
    text-align: center;
    font-size: 36px;
    /* 预留多行高度，避免换行时第一行向上跳动 */
    line-height: 1.4;
    vertical-align: top;
    font-weight: 700;
}

.new-text-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    z-index: 5;
    position: relative;
    width: 100%;
    bottom: 250px;
}
@media (max-width: 768px) {
    .new-text-wrapper {
        bottom: 220px;
        padding: 0 20px;
    }
    .text-type {
        font-size: 24px;
        min-height: 4.2em;
    }
}


.text-type__cursor {
    margin-left: 0.25rem;
    display: inline-block;
    opacity: 1;
}

.text-type__cursor--hidden {
    display: none;
}
.shiny-text {
    display: inline-block;
  }

.light-rays-container {
    width: 100%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .light-rays-container {
        top: 51px;
    }
  }

.liquid-ether-container {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    -ms-touch-action: none;
        touch-action: none;
  }


/**
 * Hero 区按钮样式
 * .hero-view-report-button 背景采用 ShinyText 类似扫光效果
 */
.hero-view-report-button {
  /* 基础背景色 */
  background-color: #ddd;
  /* 扫光渐变：基础色 + 高光 */
  background-image: linear-gradient(
    120deg,
    #ddd 0%,
    #ddd 30%,
    #fff 50%,
    #ddd 70%,
    #ddd 100%
  );
  background-size: 200% auto;
  background-position: 150% center;
  animation: hero-button-shine 2.5s ease-in-out infinite;
  /* 字体白色 */
  color: #333;
  padding: 5px 30px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.2) !important;
  width: 128px;
}

.hero-view-report-button:hover {
  background-position: -50% center;
  color: #333;
}

@keyframes hero-button-shine {
  0% {
    background-position: 150% center;
  }
  100% {
    background-position: -50% center;
  }
}


/*# sourceMappingURL=hero-animation.css.map*/