
    /* 主容器 */
    .healthview_case {
      display: flex;
      background-color: #ffffff;
      width: 100%;
      max-width: 100%;
      padding: 0;
      gap: 40px;
      align-items: stretch;
      margin-bottom: 40px;
    }

    /* 左侧红色卡片区 */
    .healthview_case .left-card {
      flex: 0 0 380px;
      background-color: #b83232;
      color: #ffffff;
      padding: 35px 25px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
      border-radius: 2px;
      display: flex;
      flex-direction: column;
    }

    .healthview_case .left-card .card-title {
      font-size: 20px;
      font-weight: bold;
      line-height: 1;
      margin-bottom: 25px;
      padding-bottom: 12px;
    }

    .healthview_case .left-card .direction-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .healthview_case .left-card .direction-list li {
      font-size: 17px;
      display: flex;
      align-items: center;
      line-height: 1.4;
    }

    .healthview_case .left-card .direction-list li::before {
      content: "•";
      font-size: 22px;
      margin-right: 12px;
      line-height: 1;
    }

    /* 右侧职位列表区 */
/* 右侧职位列表区 */
.healthview_case .right-content {
  flex: 1;
  display: block;
  padding-top: 5px;
}

.healthview_case .right-content .job-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 设为 3 列 */
  gap: 10px 20px;
  align-content: start;
}

.healthview_case .right-content .job-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
  font-size: 14px;
  color: #222222;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

    /* 响应式适配 - 移动端与平板 */
    @media (max-width: 900px) {
      .healthview_case {
        flex-direction: column;
        padding: 10px 20px;
        gap: 10px;
      }

      .healthview_case .left-card {
        flex: none;
        width: 100%;
      }

      .healthview_case .right-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 550px) {
      .healthview_case .right-content {
        grid-template-columns: 1fr;
      }

      .healthview_case .right-content .job-item {
        white-space: normal;
      }
    }
    
    
   @media (max-width: 550px) {
  /* 1. 右侧整体区域保持单列结构 */
  .healthview_case .right-content {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 8px 4px;
    overflow: hidden;
  }
  
  /* 2. 将 job-col 设为标准的 3 列 CSS Grid 网格 */
  .healthview_case .right-content .job-col {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* 强制分割为等宽的 3 列 */
    gap: 0px 14px; /* 元素之间的上下、左右间距 */
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  /* 3. job-item 单元格内部样式微调 */
  .healthview_case .right-content .job-item {
   
    
    
    width: 100% !important;
    box-sizing: border-box !important;
    /* white-space: nowrap !important;  删掉强制不换行 */
    /* overflow: hidden !important; 单行省略也去掉 */
    /* text-overflow: ellipsis !important; 文字省略号删掉 */
    font-size: 0.9rem;
    text-align: left !important;
    height: auto !important;     /* 高度自动撑开 */
    word-wrap: break-word;      /* 长单词/英文强制换行 */
    word-break: break-all;     /* 文字溢出自动换行 */
    
  }
  
  /* 4. 分类标题同步适配 */
  .healthview_case .right-content .job-category-title {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
}



@media screen and (max-width: 768px) {
        .healthview_case .left-card .card-title {
      font-size: 1.2rem;
      font-weight: bold;
      line-height: 1;
      margin-bottom: 25px;
      padding-bottom: 12px;
    }
  .left-card .direction-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important; /* 开启换行 */
    justify-content: space-between !important;
    align-items: center !important;
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
    gap: 10px 0 !important; /* 行与行之间的上下间距 */
    box-sizing: border-box !important;
        overflow:hidden;
            text-overflow: ellipsis !important;
  }

  .left-card .direction-list li {
    flex: 0 0 48% !important; /* 单个卡片宽占 48%，一行刚好放下 2 个 */
    width: 48% !important;
    text-align: center !important;
    padding: 0px 6px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    font-size: 14px !important;
      text-overflow: ellipsis !important;
  }
}