section[data-module="aboutpage-timeline"] .timeline-wrapper {
position: relative;
  padding:0;
  left: -20px;
  margin-top: 50px;
}

/* 中央红线，对齐圆心 */
section[data-module="aboutpage-timeline"] .timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -30px;
  left: 0;
  width: 1.5px;
  background-color: #e7382f;
  z-index: 0;
}

section[data-module="aboutpage-timeline"] .timeline-item {
  display: flex;
  align-items: center; /* 垂直居中让 icon 和内容一样高 */
  margin-bottom: 40px;
  position: relative;
}


section[data-module="aboutpage-timeline"] .timeline-item.hidden {
  display: none;
}

/* 白色大圆 + 图内 padding */
section[data-module="aboutpage-timeline"] .timeline-icon {
  width: 114px;
  height: 114px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: -57px; /* 宽度一半做居中对齐 */
  top: 0;
  z-index: 2;
  padding: 10px; /* 可根据图标留白调整 */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

section[data-module="aboutpage-timeline"] .timeline-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

section[data-module="aboutpage-timeline"] .timeline-content {
  background-color: #f2d6bd;
  padding: 5px 20px;
  border-radius: 10px;
  min-width: 300px;        /* 最小宽度避免太小 */
  max-width: 100%;         /* 防止超出容器 */
  display: flex;
  flex-direction: column;
	padding-left: 80px;
  justify-content: center; /* 垂直居中内容 */
  z-index: 1;
	  min-height: 105px; /* 设定初始高度为 105px */
  height: auto;      /* 内容多时自动撑高 */
  overflow: visible; /* 避免被裁切 */
}

section[data-module="aboutpage-timeline"] .timeline-content h3 {
  margin: 0;
  font-weight: bold;
  font-size: 30px;
}
section[data-module="aboutpage-timeline"] .chi {
  font-family: 'Kiwi Maru', sans-serif;
	
}
section[data-module="aboutpage-timeline"] .timeline-content p {
  font-size: 18px;
	color: black;
	padding:0;
  margin:0;
}
section[data-module="aboutpage-timeline"] .load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute; /* 改成 absolute */
  transform: translateX(-50%); /* 关键：居中对齐红线 */
  z-index: 2;
  cursor: pointer;
}
section[data-module="aboutpage-timeline"] .arrow-icon {
  width: 24px;
  height: auto;
  margin-bottom: 5px;
}

section[data-module="aboutpage-timeline"] .load-more-text {
  font-family: 'Fuzzy Bubbles', cursive;
	font-size: 20px;
  color: black;
  padding-top: 10px;
}

@media (max-width: 768px) {
  section[data-module="aboutpage-timeline"] .timeline-wrapper {
    padding: 0 15px;
    position: relative;
  }

  /* 调整中央红线居中 */
  section[data-module="aboutpage-timeline"] .timeline-wrapper::before {
    left: 50%;
    transform: translateX(-0.75px);
    top: 0;
    bottom: 0;
  }

  /* 时间项垂直堆叠 */
  section[data-module="aboutpage-timeline"] .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
  }

  /* icon 圆圈变小，并移至上方 */
  section[data-module="aboutpage-timeline"] .timeline-icon {
    width: 64px;
    height: 64px;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    padding: 8px;
    margin-bottom: -20px;
    z-index: 3;
    position: absolute;
  }

  /* 内容改为居中、保留 padding */
  section[data-module="aboutpage-timeline"] .timeline-content {
    padding: 40px 20px 20px;
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin-top: 32px; /* 留出给 icon */
  }

  /* 标题 & 内容 居中 */
  section[data-module="aboutpage-timeline"] .timeline-content h3,
  section[data-module="aboutpage-timeline"] .timeline-content p {
    text-align: center;
	
  }

  /* load more 居中在线条下方 */
  section[data-module="aboutpage-timeline"] .load-more {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    z-index: 2;
  }
	section[data-module="aboutpage-timeline"] .timeline-wrapper::before {
  left: 50%;
  transform: translateX(-0.75px);
  top: 40px;
  bottom: 80px;
}

}


