/* 建设进程页面（/time/）专属样式
 * 页面结构见 source/time/index.md，纯静态时间线无需 JS
 * 复刻自 qiqi.ee（Nuxt 版 /time）：竖向时间线 + 圆点节点
 */

.time-page {
  width: 100%;
  display: flex;
  justify-content: center;
}
.time-timeline {
  width: 100%;
  max-width: 1400px;
  padding: 30px 40px;
  background-color: var(--card-bg, #ffffff);
  border: 1px solid #e8e8e8;
  border-radius: 15px;
}
.time-title {
  margin: 0 0 30px;
  font-size: 22px;
  font-weight: 600;
  color: var(--font-color, #303133);
}

.time-entry {
  position: relative;
  padding-left: 24px;
  padding-bottom: 32px;
}
/* 竖向时间线 */
.time-entry::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background-color: #e4e7ed;
}
.time-entry:last-child {
  padding-bottom: 0;
}
.time-entry:last-child::before {
  display: none;
}

.time-entry-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.time-entry-header .dot {
  position: absolute;
  left: 0;
  width: 11px;
  height: 11px;
  box-sizing: border-box;
  border-radius: 50%;
  /* 普通节点：珊瑚色空心圆 */
  border: 2px solid #e67e5a;
  background-color: var(--card-bg, #ffffff);
}
.time-entry-header .date {
  font-size: 16px;
  font-weight: 600;
  color: var(--font-color, #303133);
}

.time-items {
  margin: 0;
  padding-left: 20px;
  list-style-type: decimal;
}
.time-items li {
  font-size: 14px;
  line-height: 2;
  color: var(--font-color-secondary, #606266);
}

/* 重要节点：深色实心圆 */
.time-entry.major .dot {
  border: none;
  background-color: var(--font-color, #303133);
}

/* 暗黑模式适配 */
[data-theme='dark'] .time-timeline {
  border-color: #323232;
}
[data-theme='dark'] .time-entry::before {
  background-color: #323232;
}

/* 移动端 */
@media (max-width: 768px) {
  .time-timeline {
    padding: 20px 16px;
  }
}
