
.my-image {
    max-width: 100%; /* 图片最大宽度不超过容器宽度 */
    height: auto; /* 高度自适应 */
    /* border-radius: 0px 0px 70px 0px; */

  }


  .profile-container {
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中对齐 */
    margin-left: 50px;
    margin-right: 50px;
  }

  .profile-container .text-content .name{
    font-size: 30px;
    color:#3660b2;
  }


  .avatar {
    width: 200px; /* 设置头像宽度 */
    height: auto; /* 设置头像高度 */
    margin-right: 20px; /* 头像与文字的间距 */
    border-radius: 8px ;
  }
  
  .text-content {
    flex-grow: 1; /* 允许文本内容区域扩展 */
  }
 

  .time-above{
    margin-left: 50px;
    font-size: 30px;
    color: #5375bb;
    padding:10px;
  }

  
  .under-title{
    margin-left: 50px;
    /* margin-right: 50px; */
    margin-top: 20px;
    font-size: 20px;
    font-weight: 800;
  }

  .under-plain{
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 10px;
    font-size: 18px;
    color: #000000;
    
  }

  .under-image{
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 10px;    
    width :90%;
    margin-bottom: 10px;
  }


  .under-image-1{
  
    width :45%;
    margin-bottom: 10px;
  }

  .under-image-container {
    display: flex;          /* 使用flex布局 */
    justify-content: center; /* 水平居中 */
    align-items: center;    /* 垂直居中 */
    flex-direction: column; /* 子元素垂直排列 */
    height: 100%;           /* 容器高度占满父容器 */
    margin-bottom: 10px;
  }
  

  .under-image-name{
    text-align: center;
    margin:10px;
    font-size: 15px;
  }




  .big-title{
    font-size: 60px;
    font-family: 'newFont', sans-serif;
    padding: 20px;
}

.inner-title{
  font-size: 50px;
  font-family: 'newFont', sans-serif;
  padding: 20px;
}


.plain {
  font-size: 22px;
  color:#000000;
  padding: 10px;

}

.timeline {
  position: relative;
  padding: 20px 0;
  margin: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 75px; /* 竖线位置 */
  top: 0;
  bottom: 0;
  width: 2px; /* 竖线宽度 */
  background-color: #687bde; /* 竖线颜色 */
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
  position: relative;
}

.timeline-item .date {
  width: 150px; /* 日期宽度 */
  font-weight: bold;
  text-align: right;
  margin-right: 20px; /* 日期和内容之间的间距 */
  color: #687bde; /* 日期颜色 */
}


.timeline-item .content {
  /* width: 80%; */
  flex-grow: 1;
  padding: 10px;
  background-color: rgb(215, 234, 239);
  border-radius: 10px; /* 圆角效果 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 65px; /* 标记位置，与竖线对齐 */
  top: 10px; /* 距离顶部的距离 */
  width: 22px; /* 标记的宽度 */
  height: 22px; /* 标记的高度 */
  background-color: #b8d8e0; /* 标记颜色 */
  border-radius: 50%; /* 圆形标记 */
  transform: translateY(-50%); /* 垂直居中 */
}