.sky {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  /* 星星 */
  .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite alternate;
  }

  /* 流星 */
  .meteor {
    position: absolute;
    top: -100px;
    width: 2px;
    height: 80px;
    background: linear-gradient(-45deg, white, rgba(255,255,255,0));
    opacity: 0;
    transform: rotate(45deg);
    animation: meteor 4s linear infinite;
  }

  @keyframes twinkle {
    from { opacity: 0.3; }
    to { opacity: 1; }
  }
  @keyframes meteor {
    0% {
      transform: translateX(0) translateY(0) rotate(45deg);
      opacity: 1;
    }
    100% {
      /* 用百分比移动，保证在 sky 容器范围内 */
      transform: translateX(-100%) translateY(100%) rotate(45deg);
      opacity: 0;
    }
  }
/* 进度条组件外层容器，可放在任何地方 */
.new_progress-widget-wrapper {
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center;     /* 垂直居中 */
  width: 100%;             
  height: 100%;            
  padding: 20px;
  box-sizing: border-box;
}

.new_progress-widget {
  width: 100%;
  max-width: 350px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* 柔和的白色光影 */
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: rgba(0,0,0,0.6); /* 半透明深色背景 */
}

.new_progress-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new_progress-bar {
  flex-grow: 1;
  height: 20px;
  background-color: #222; /* 深灰底色，和背景区分 */
  border: 2px solid #555; /* 边框稍亮 */
  border-radius: 8px;
  overflow: hidden;
}

.new_progress-fill {
  height: 100%;
  background-color: rgb(255, 255, 255); /* 蓝色填充，高亮可见 */
  width: 0;
  transition: width 0.5s ease;
  border-radius: 6px 0 0 6px; /* 保持圆角 */
}

.new_progress-label {
  font-size: 14px;
  color: #fff; /* 白色文字，高对比度 */
  white-space: nowrap;
}
