  .homeblock {
    width: 255px; 
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    margin: 15px 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    box-sizing: border-box; 
  }
  
  .homeblock__tabs {
    display: flex;
    margin-bottom: 12px;
    /* border-bottom: 1px solid #e6e6e6; */ 
  }
  
  /* .homeblock__tabs .tab {
    padding: 6px 12px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
  } */

  .homeblock__tabs .tab {
    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);
  }

  .tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    cursor: pointer;
    font-weight: bold;
    color: #666;
    border-bottom: 2px solid transparent; 
  }
  
  .homeblock__tabs .tab.active {
    color: #007fff; 
    border-bottom: 2px solid #007fff;
  }
  
  .homeblock__list {
    display: block;
    margin-left: 16px;
    margin-top: 20px;
  }
  
  .homeblock__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
  }
  
  .homeblock__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .homeblock__item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
    flex-shrink: 0;
  }
  
  .homeblock__item a {
    display: flex;
    text-decoration: none;
    color: #333;
    flex: 1;
  }
  
  .homeblock__item h4 {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 6px 0;
    line-height: 1.4;
  }
  
  .homeblock__item p {
    font-size: 12px;
    color: #999;
    margin: 0;
  }
  
  .homeblock__more {
    display: block;
    margin: 10px 20px;
    text-align: center;
  }
  
  .homeblock__more a {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #007fff;
    color: #007fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
  }
  
  .homeblock__more a:hover {
    background: #007fff;
    color: #fff;
  }  

  .hideClass{
    display: none;
  }

  .joe_aside__item:first-child {
    position: relative;
    width: 250px;
    margin-bottom: 0px;
    border-radius: var(--radius-wrap);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }

  /* 小屏设备（手机等）适配 */
  @media (max-width: 768px) {
    .homeblock {
      display: none !important;    
    }
  }

  /* @media (max-width: 768px) {  
    .joe_container {
      flex-direction: column;
    } 
    .homeblock {
      width: 100%;
      margin-left: 0;
      margin-top: 20px;
      order: 2;
      display: block !important;
    }
  } */
 
  

  