.homeblock-section { 
  width: 255px;
  border: 1px solid #eee;
  padding: 10px;
  background-color: #fff;
  border-radius: 6px;
  margin: 10px 0px;
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
}
  
  /* .homeblock-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 2px;
    border-bottom: 1px solid var(--classC);
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    color: var(--main);
  } */
  
  .homeblock-title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--classC);
    font-size: 16px;
    font-weight: 500;
    height: 45px;
    line-height: 45px;
    padding: 0 15px;
    color: var(--main);
  }
  
  .homeblock-title > .line {
    display: inline-block;
    width: 12px;
    height: 1px;
    background-color: #40b5f4;
    margin-left: 8px;
    vertical-align: middle;
  }
  
  
  
  .homeblock-timeline {
    position: relative;
    border-left: 2px solid #eee;
    margin-left: 10px;
    margin-top: 20px;
    padding-left: 15px;
  }
  
  .homeblock-timeline-item {
    position: relative;
    margin-bottom: 14px;
  }
  
  .homeblock-timeline-item .dot {
    position: absolute;
    left: -10px;
    top: 6px;
    width: 8px;
    height: 8px;
    background-color: #00aaff;
    border-radius: 50%;
  }
  
  .homeblock-timestamp {
    color: #999;
    font-size: 12px;
    margin-bottom: 2px;
  }
  
  .homeblock-timeline-content .link {
    text-decoration: none;
    color: black;
    font-weight: 500;
  } 
  
  .homeblock-timeline-content .link:hover {
    color: #0078d4;
  }

  /* ✅ 点击过后变紫色 */
  /* .homeblock-timeline-content .link:visited {
    color: purple;
  } */

  
  
  .homeblock-more {
    text-align: center;
    margin-top: 20px;
  }
  
  .homeblock-more a {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #0078d4;
    color: #0078d4;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .homeblock-more a:hover {
    background-color: #0078d4;
    color: #fff;
  }
  
  /* ✅ 自适应：手机端适配 */
  @media (max-width: 768px) {
    .homeblock-section {
      display: none !important; 
    } 
  }
  
  /* @media (max-width: 768px) {
    body {
      flex-direction: column;
    }
  
    .homeblock-section {
      width: 100%;
      margin-left: 0;
      margin-top: 20px;
      order: 2;
      display: block !important;
    }
  } */
  
  