/* ===================================== */
/* 似水流年 时间进度条样式 */
/* ===================================== */
.w-time-progress .progress-wrap {
  padding: 10px 0;
}
.w-time-progress .progress-item {
  margin-bottom: 25px;
}
.w-time-progress .progress-item:last-child {
  margin-bottom: 0;
}
.w-time-progress .progress-title {
  font-size: 15px;
  color: #555;
  margin: 0 0 8px 0;
  font-weight: 500;
}
.w-time-progress .progress-value.red {
  color: #ff3b30;
  font-weight: 600;
  font-size: 16px;
}
.w-time-progress .progress-bar-container {
  position: relative;
  height: 18px;
  background: #f0f2f5;
  border-radius: 9px;
  overflow: hidden;
}
.w-time-progress .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 9px;
  overflow: hidden;
  transition: width 0.3s ease;
}
/* 进度条动画条纹 */
.w-time-progress .progress-bar-stripes {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  animation: progress-stripes 1s linear infinite;
}
@keyframes progress-stripes {
  0% { background-position: 0 0; }
  100% { background-position: 20px 0; }
}
/* 进度条颜色 */
.w-time-progress .progress-bar.blue { background-color: #5dade2; }
.w-time-progress .progress-bar.yellow { background-color: #f8c400; }
.w-time-progress .progress-bar.pink { background-color: #f1948a; }
.w-time-progress .progress-bar.green { background-color: #58d68d; }
.w-time-progress .progress-percent {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

/* ===================================== */
/* 新增：似水流年标题动态下划线效果（左对齐） */
/* ===================================== */
.w-time-progress .heading {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
}
.w-time-progress .heading-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
  display: inline-block;
  position: relative;
}
.w-time-progress .heading-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.w-time-progress .short-line {
  width: 20px;
  height: 2px;
  background: #ff3b30;
  border-radius: 1px;
  animation: lineFlow 1.8s ease-in-out infinite alternate;
}
.w-time-progress .long-line {
  width: 40px;
  height: 2px;
  background: #5dade2;
  border-radius: 1px;
  animation: lineFlow 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes lineFlow {
  0% { opacity: 0.5; transform: scaleX(0.8); }
  100% { opacity: 1; transform: scaleX(1); }
}