

   

    /* 主容器 最大宽度1200px 居中 */
    .wrapper {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
    }

    /* 页面标题（仅装饰） */
    .page-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    color: #f70000;
    letter-spacing: -0.01em;
    border-left: 5px solid #f63be8;
    padding-left: 1rem;
    padding: 10px;
    background: #e3edd6;
    }

    /* 列表页卡片区域 */
    .list-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    /* 卡片样式 — 用于列表项和内容页头部/卡片 */
    .card {
      background: white;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
      transition: box-shadow 0.2s ease, transform 0.1s ease;
      overflow: hidden;
      border: 1px solid #eef2f6;
    }

    .card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }

    /* 列表项内部布局：logo + 信息 */
    .list-item {
      display: flex;
      align-items: center;
      padding: 1.25rem 1.5rem;
      gap: 1.25rem;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }

    .list-item:hover {
      background: #fafcff;
    }

    /* 自动生成logo的通用样式 */
    .logocom {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: white;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      flex-shrink: 0;
      user-select: none;
      font-size: 1.4rem;
      width: 72px;
      height: 72px;
      background-color: #3b82f6; /* 会被内联样式覆盖 */
    }

    /* 列表项中的信息区域 */
    .info {
      flex: 1;
      min-width: 0; /* 防止文本溢出 */
    }

    .company-name {
      
       
      
      margin-bottom: 0.35rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: larger;
    font-weight: 600;
    color: #097efe;


    }

    /* 概况信息行 */
    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.25rem;
      font-size: 0.9rem;
      color: #475569;
      margin-bottom: 0.25rem;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .meta-label {
      color: #64748b;
      font-weight: 400;
    }

    .meta-value {
      font-weight: 500;
      color: #1e293b;
    }

    /* 招聘职位数特殊样式 */
    .job-count {
      background: #eef2ff;
      color: #2563eb;
      font-weight: 600;
      padding: 0.15rem 0.6rem;
      border-radius: 2rem;
      font-size: 0.8rem;
      display: inline-block;
    }

    /* 内容页部分 */
    .content-section {
     /*  margin-top: 2.5rem; */
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .content-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    /*  padding: 1.5rem; */
      background: white;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      border: 1px solid #eef2f6;
      flex-wrap: wrap;
    }

    .content-header .logo {
      width: 96px;
      height: 96px;
      font-size: 2rem;
      border-radius: 1rem;
    }

    .content-title {
      flex: 1;
      min-width: 200px;
    }

    .content-title h1 {
      font-size: 1.9rem;
      font-weight: 700;
      color: #0b1e33;
      margin-bottom: 0.25rem;
      line-height: 1.2;
    }

    .content-title .sub-meta {
      color: #4b5563;
      font-size: 0.95rem;
    }

    /* 文字内容段落卡片 */
    .text-card {
      background: white;
      border-radius: 1rem;
      padding: 1.75rem 2rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      border: 1px solid #eef2f6;
    }


    .text-card2 {

     
      padding: 1.75rem 2rem;
   
    }
    .text-card p {
      margin-bottom: 1.25rem;
      font-size: 1.05rem;
      color: #1f2a41;
    }

    .text-card p:last-child {
      margin-bottom: 0;
    }

    /* 响应式微调 */
    @media (max-width: 640px) {
      body {
        padding: 0.75rem;
      }

      .list-item {
        padding: 1rem;
        gap: 1rem;
      }

      .logo {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        border-radius: 0.6rem;
      }

      .company-name {
        font-size: 1.1rem;
      }

      .meta {
        font-size: 0.8rem;
        gap: 0.4rem 0.9rem;
      }

      .content-header {
        padding: 1.25rem;
        gap: 1rem;
      }

      .content-header .logo {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
      }

      .content-title h1 {
        font-size: 1.5rem;
      }

      .text-card {
        padding: 1.5rem;
      }

     

      .text-card p {
        font-size: 1rem;
      }

      .page-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
      }
    }

    /* 确保内容页也能响应式换行 */
    @media (max-width: 480px) {
      .content-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    /* 链接样式重置 */
    a {
      text-decoration: none;
      color: inherit;
    }

    /* 简单分割线（视觉区分列表和内容） */
    .divider {
      margin: 2rem 0 0.5rem;
      border: 0;
      height: 1px;
      background: linear-gradient(to right, #e2e8f0, transparent);
    }



    .pages {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    line-height: 25px;
}
.pages a {
    display: inline-block;
    padding: 0px 10px 0px 10px;
    margin-left: 5px;
    color: #666;
    border: 1px solid #dedede;
    font-size: 14px;
}
.pages .selected {
    font-weight: bold;
    color: #fff;
    background: #007ccf;
    border: 1px solid #007ccf;
}


.yellowtips{
    font-size: small;
    font-weight: normal;
    color: #696f6b;
}

