/* 日志页面容器 */
.log-container {
  min-height: 100vh;
  padding: 40px 20px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

/* 页面标题 */
.log-title {
  text-align: center;
  margin-top: 75px;
  padding: 15px 30px;
  border-radius: 1.5rem;
  width: 50vw;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.log-title h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #2d3748;
}

/* 时间轴容器 */
.timeline {
  margin-top: 75px;
  position: relative;
  padding-left: 40px;
}

/* 时间轴竖线 */
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 1px;
}

/* 日志项 */
.log-item {
  position: relative;
  margin-bottom: 40px;
  padding: 20px 25px;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.log-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.3);
}

/* 时间轴圆点 */
.log-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 25px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(131, 220, 131);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

/* 日志标签 */
.log-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 8px;
}

/* 修复bug */
.tag-blue {
  background: rgba(66, 185, 131, 0.3);
  color: #2d7d57;
}
/* 新增功能 */
.tag-yellow {
  background: rgba(255, 243, 72, 0.3);
  color: #a0a02d;
}
/* 重大更新 */
.tag-red {
  background: rgba(255, 72, 72, 0.3);
  color: #a02d2d;
}

/* 日志日期 */
.log-date {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 10px;
  display: block;
}

/* 日志内容 */
.log-content {
  font-size: 1.1rem;
  color: #1a202c;
  line-height: 1.6;
  margin: 0;
}

/* 响应式适配（移动端） */
@media (max-width: 1200px) {
  .log-container {
    padding: 30px 15px;
    padding-bottom: 100px;
  }

  .timeline {
    padding-left: 30px;
  }

  .log-item::before {
    left: -25px;
  }

  .log-title h1 {
    font-size: 1.8rem;
  }

  .log-content {
    font-size: 1rem;
  }
}
