/* 基础容器 */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* 主竖线 */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px; /* 控制竖线位置 */
  width: 2px;
  background: #ccc;
}

/* 时间点容器 */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px; /* 内容与竖线间距 */
}

/* 红色圆点 */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 24px; /* 对齐竖线 */
  top: 5px;
  width: 12px;
  height: 12px;
  background: #ff0000;
  border-radius: 50%;
  border: 2px solid white; /* 白边增加对比度 */
  box-shadow: 0 0 0 2px #ff0000; /* 外发光效果 */
  z-index: 1;
}

/* 内容样式 */
.timeline-content {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* 内容样式 */
.timeline-content p{
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-size:18px;
}

/* 标题样式 */
.timeline-title {
  margin-top: 0;
  color: #333;
}

/* 最后一项底部间距重置 */
.timeline-item:last-child {
  margin-bottom: 0;
}
.content-cor{
background: white;
padding: 10px;
}
.content-cor p {
margin-bottom: 10px;
line-height: 1.9;
text-align: justify;
font-size: 16px;
}