 html,body{
            height:100%;width:100%;margin:0;padding:0;
            background: #f5f6f7;
        }
        .body{
            
            display: flex;
            justify-content: center;
        }
        .bottom{
            width:100%;
            text-align: right;
            position: fixed;
            bottom:0.3rem;
            padding-right:2rem;
        }
        a, a:visited{
            text-decoration: none;
        }
        .container{
            width:100%;
            padding:0.9rem;
            max-width:1000px;
             min-height: calc(100% - 200px);
    margin: 10px 5% 32px;
    position: relative;
    background-color: #fff;
    padding-top: 24px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1);
    -webkit-font-smoothing: antialiased;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    
        }
        #notice{
            position: fixed;
            top:0;
            font-size: 18px;
            color:red;
            line-height:20px;
            width:100%;
            text-align: right;
            padding:10px 0;
            
        }
        
        
        
.time-line {
  position: relative;
  padding-left: 75px; /* 调整以适应日期宽度和边距 */
    margin-left:80px;
}

.time-line:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px; /* 调整以适应日期宽度 */
  width: 2px;
  background-color: #ccc;
}

.time-line >li {
  list-style-type: none; /* 去掉li的原生点 */
  position: relative;
  margin-bottom: 30px;
  margin-left: 10px;
    padding-left:-10px;
}

.time-line .event {
  display: flex;
  align-items: flex-start;
}

.time-line .event-date {
  position: absolute;
  top: 1px;
  left: -160px; /* 调整以适应日期宽度和边距 */
  display: inline-block;
  padding: 5px 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  text-align: right;
}

.time-line .event-content {
  background-color: #fff;
  border-radius: 5px;
  padding: 0;
  margin-left: 1px;
}

.time-line .event-content li{
    margin:0;padding:0;
}
.time-line .event-content h5{
    margin-top:0;padding-top:0;
}

.time-line >li:first-child  .event-date{
    background-color: #43adf3;
    color:#fff;
}
.time-line >li:first-child  .event-date::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -13px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #43adf3;
  transform: rotate(90deg); /* 添加这一行来旋转箭头90度 */
}