  /* Container */



  /* Headline List */
  .headline-section {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 15px;
      margin-bottom: 30px;
      font-size: 14px;
  }

  .headline-item {
      color: #c00;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: flex;
      align-items: center;
  }

  .headline-item::before {
      content: "•";
      margin-right: 8px;
      font-size: 20px;
  }

  /* Hot Ticker */
  .hot-ticker {
      /* 从左到右渐变：左侧 #F0F1F3，右侧 #E7F0F7 */
      background: linear-gradient(to right, #F0F1F3, #E7F0F7);
      padding: 15px 20px;
      display: flex;
      margin-bottom: 40px;
      border-radius: 4px;
      align-items: center;
  }

  .hot-label {
      color: #c00;
      font-weight: bold;
      font-style: italic;
      font-size: 20px;
      width: 100px;
      line-height: 1.2;
      border-right: 1px solid #ddd;
      margin-right: 20px;
  }

  .hot-content {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      font-size: 14px;
      color: #555;
  }


  .hot-content div::before {
      content: "•";
      margin-right: 10px;
  }

  /* News Section Layout */
  .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 20px;
      border-bottom: 2px solid #333;
      padding-bottom: 5px;
  }

  .section-header h2 {
      margin: 0;
      font-size: 20px;
  }

  .section-header .more {
      font-size: 12px;
      color: #999;
  }

  .layout-grid {
      display: grid;
      grid-template-columns: 8fr 3fr;
      gap: 40px;
      margin-bottom: 50px;
  }

  .layout-grid .sidebar {
      min-width: 0;
  }

  /* Main Content Grid */
  .main-content-top {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 20px;
      /* margin-bottom: 20px; */
  }

  .card-featured {
      position: relative;
      height: 250px;
      border-radius: 6px;
      overflow: hidden;
      background-color: #eee;
      cursor: pointer;
      margin: 10px;
  }

  .card-featured img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .card-featured .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      padding: 20px;
      color: #fff;
  }

  .card-featured h3 {
      margin: 0 0 10px 0;
      font-size: 18px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .card-featured .meta {
      font-size: 12px;
      opacity: 0.8;
  }

  .sub-news-grid {
      /* display: grid; */
      min-width: 0;
  }

  .sub-news-card {
      display: flex;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
  }

  .sub-news-card .info {
      /* flex: 1; */
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;

  }

  .sub-news-card h4 {
      margin: 0 0 10px 0;
      font-size: 16px;
      line-height: 1.4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .sub-news-card .meta {
      font-size: 12px;
      color: #999;
      display: flex;
      align-items: center;
  }

  .sub-news-card .meta .meta-icon {
      width: 14px;
      padding-right: 6px;
  }

  .sub-news-card .thumb {
      width: 100px;
      height: 65px;
      border-radius: 4px;
      background-color: #eee;
      overflow: hidden;
  }

  .sub-news-card .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Sidebar - Hot Q&A */
  .sidebar-list {
      font-size: 14px;
  }

  .sidebar-item {
      margin-bottom: 25px;
  }

  .sidebar-item .tag {
      color: #c00;
      margin-right: 5px;
  }

  .sidebar-item .user {
      font-weight: bold;
      margin-bottom: 8px;
      display: block;
  }

  .sidebar-item .content {
      background: #f9f9f9;
      padding: 10px;
      border-radius: 4px;
      color: #666;
      margin-bottom: 5px;
  }

  .sidebar-item .meta {
      font-size: 11px;
      color: #ccc;
  }

  /* Sidebar - Featured List */
  .featured-sidebar-img {
      width: 100%;
      /* background-color: #eee; */
      border-radius: 6px;
      margin-bottom: 15px;
      position: relative;
      cursor: pointer;
      padding-bottom: 56.25%;
      /* 9/16 = 0.5625，即56.25% */
      margin-bottom: 10px;
      overflow: hidden;
  }

  .featured-sidebar-img img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .featured-sidebar-img .overlay {
      position: absolute;
      bottom: 0;
      padding: 15px;
      color: #fff;
      background: rgba(0, 0, 0, 0.5);
      width: 100%;
      box-sizing: border-box;
      font-size: 14px;
      white-space: nowrap;
      /* 强制不换行 */
      overflow: hidden;
      /* 隐藏溢出内容 */
      text-overflow: ellipsis;
      /* 显示省略号 */

  }

  .list-sidebar li {
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      font-size: 15px;
      display: flex;
      align-items: center;
      color: #444;
      cursor: pointer;
      white-space: nowrap;
      /* 强制不换行 */
      overflow: hidden;
      /* 隐藏溢出内容 */
      text-overflow: ellipsis;
      /* 显示省略号 */
      line-height: 30px;

  }

  .list-sidebar li .name {
      white-space: nowrap;
      /* 强制不换行 */
      overflow: hidden;
      /* 隐藏溢出内容 */
      text-overflow: ellipsis;
      /* 显示省略号 */
  }

  .list-sidebar li::before {
      content: "";
      width: 6px;
      height: 6px;
      background-color: #005bac;
      display: inline-block;
      border-radius: 6px;
      margin-right: 8px;
      flex-shrink: 0;
      vertical-align: middle;
  }

  /* Footer */
  .load-more {
      text-align: center;
      padding: 40px 0;
      color: #999;
      font-size: 14px;
  }

.load-more a {
    color: #c00;
    margin-left: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    /* 热点模块 - 垂直布局 */
    .hot-ticker {
        flex-direction: column;
        padding: 12px 15px;
        margin-bottom: 20px;
    }

    .hot-label {
        width: auto;
        border-right: none;
        border-bottom: 1px solid #ddd;
        margin-right: 0;
        margin-bottom: 10px;
        padding-bottom: 10px;
        text-align: center;
        font-size: 16px;
    }

    .hot-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hot-content-item {
        font-size: 14px;
        padding: 5px 0;
    }

    /* 主布局 - 单列 */
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    /* 主内容区 - 单列 */
    .main-content-top {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* 特性卡片 - 调整高度 */
    .card-featured {
        height: 180px;
        margin: 0;
    }

    .card-featured h3 {
        font-size: 16px;
    }

    .card-featured .overlay {
        padding: 15px;
    }

    /* 新闻卡片 - 调整布局 */
    .sub-news-card {
        padding: 12px 0;
        gap: 10px;
    }

    .sub-news-card h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* 栏目标题 - 调整字体 */
    .section-header {
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .section-header .more {
        font-size: 12px;
    }

    /* 侧边栏精选图片 */
    .featured-sidebar-img {
        padding-bottom: 56.25%;
    }

    .featured-sidebar-img .overlay {
        padding: 10px;
        font-size: 13px;
    }

    /* 侧边栏列表 */
    .list-sidebar li {
        font-size: 14px;
        padding: 8px 0;
        line-height: 1.5;
    }

    /* 加载更多 */
    .load-more {
        padding: 25px 0;
        font-size: 13px;
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .card-featured {
        height: 160px;
    }

    .card-featured h3 {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 15px;
    }

    .sub-news-card h4 {
        font-size: 13px;
    }

    .list-sidebar li {
        font-size: 13px;
    }
}