/* 加入我们 join_list */
.join-section {
    margin-top: 90px;
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .intro-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-gap: 30px;
    padding: 0 20px;
  }
  
  .intro-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .intro-card:hover {
    transform: translateY(-5px);
  }
  
  .card-content {
    padding: 40px;
  }
  
  .card-header {
    margin-bottom: 30px;
    position: relative;
  }
  
  .card-tag {
    background: #e8f3ff;
    color: #2b85e4;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 16px;
    display: inline-block;
  }
  
  .card-header h2 {
    font-size: 28px;
    margin: 10px 0;
  }
  
  .en-title {
    color: #999;
    font-size: 16px;
    text-transform: uppercase;
  }
  
  .card-body {
    display: flex;
    gap: 40px;
  }
  
  .card-image {
    flex: 0 0 45%;
  }
  
  .card-image img {
    width: 100%;
    border-radius: 12px;
  }
  
  .feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 24px;
  }
  
  .feature-list li:before {
    content: "✓";
    color: #2b85e4;
    position: absolute;
    left: 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
  }
  
  .benefit-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
  }
  
  .benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: inline-block;
  }
  .benefit-icon img{
    width: 100%;
    height: 100%;
  }
  
  /* 响应式设计 */
  @media (max-width: 768px) {
    .card-body {
      flex-direction: column;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .card-content {
      padding: 20px;
    }
  }

  .jobs-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .main-title .cn {
    font-size: 32px;
    font-weight: bold;
  }
  
  .main-title .en {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
  }
  
  .divider {
    margin-top: 20px;
    width: 40px;
  }
  
  /* 职位分类卡片 */
  .job-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-5px);
  }
  
  .card-image {
    aspect-ratio: 3/2;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
  }
  
  .card-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .card-info p {
    font-size: 14px;
    opacity: 0.8;
  }
  
  /* 职位列表卡片 */
  .job-listings {
    display: grid;
    gap: 20px;
  }
  
  .job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .job-card:hover {
    transform: translateX(5px);
  }
  
  .job-info {
    flex: 1;
  }
  
  .job-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .job-desc {
    color: #666;
    font-size: 14px;
  }
  
  .apply-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #00928c;
    color: white;
    border-radius: 24px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .apply-btn:hover {
    background: #00928c;
  }
  
  .arrow-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  
  /* 响应式设计 */
  @media (max-width: 1024px) {
    .job-categories {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .jobs-section {
      padding: 40px 20px;
    }
    
    .job-card {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
    
    .apply-btn {
      width: 100%;
      justify-content: center;
    }
  }



/* 加入我们 job_detail */

/* 基础样式设置 */
:root {
    --primary-color: #2b85e4;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-radius: 12px;
    --spacing-unit: 16px;
  }
  
  /* 容器样式 */
  .job-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 90px;

    margin-bottom: 90px;
    padding: var(--spacing-unit);
  }
  
  /* 返回导航 */
  .back-nav {
    margin-bottom: 24px;
    padding: 0 4px;
  }
  
  .back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .back-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
  
  .back-button:hover {
    color: #00928c;
  }
  
  .back-button span {
    font-weight: 400;
  }
  
  /* 移除默认的按钮焦点样式 */
  .back-button:focus {
    outline: none;
  }
  
  /* 移除默认的按钮焦点样式 */
  .back-button:focus {
    outline: none;
  }
  
  /* 职位卡片 */
  .job-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  
  /* 页面标题 */
  .page-header {
    text-align: center;
    padding: 32px 24px;
  }
  
  .header-content {
    margin-bottom: 16px;
  }
  
  .header-content .cn {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 8px;
  }
  
  .header-content .en {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
  }
  
  .header-divider img {
    width: 40px;
    height: auto;
  }
  
  /* 职位内容 */
  .job-content {
    padding: 32px;
  }
  
  /* 职位标题区 */
  .job-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
  }
  
  .job-title {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
  }
  
  .job-tags {
    display: flex;
    gap: 8px;
  }
  
  .tag {
    padding: 4px 12px;
    background: #f5f7fa;
    border-radius: 16px;
    font-size: 14px;
    color: var(--text-secondary);
  }
  
  /* 信息区块 */
  .info-section {
    margin-bottom: 32px;
  }
  
  .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 16px;
  }
  
  .section-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
  }
  
  /* 投递按钮 */
  .apply-section {
    text-align: center;
    margin-top: 40px;
  }
  
  .apply-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #00928c;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .apply-button:hover {
    background-color: #00928c;
  }
  
  /* 响应式适配 */
  @media (max-width: 768px) {
    .job-content {
      padding: 20px;
    }
  
    .job-title {
      font-size: 20px;
    }
  
    .section-title {
      font-size: 16px;
    }
  
    .section-content {
      font-size: 14px;
    }
  
    .apply-button {
      width: 100%;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    .job-detail-container {
      padding: 12px;
    }
  
    .page-header {
      padding: 24px 16px;
    }
  
    .header-content .cn {
      font-size: 24px;
    }
  
    .job-tags {
      flex-wrap: wrap;
    }
  }