/* 招聘岗位页：列表 + 星环计划 + 成长计划 + 邮箱banner */

/* 容器（如果全站已有 .wrap，可删除这一段） */
.wrap{
  width: var(--container, 1190px);
  margin: 0 auto;
}

/* 页面大标题 */
.page-title{
  text-align:center;
  font-size:30px;
  font-weight:800;
  margin:24px 0 24px;
}

/* =========================
   招聘列表（两列卡片）
   ========================= */
.job-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-bottom: 18px;
}

.job-card{
  display:flex;
  align-items:center;
  background:#f8f8f8;
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.job-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.job-thumb{
  width:160px;
  height:90px;
  flex:0 0 160px;
  object-fit:cover;
  background:#ddd;
}

.job-body{
  flex:1;
  padding: 10px 14px;
  min-width:0;
}

.job-title{
  font-size:18px;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-bottom:8px;
}

.job-time{
  font-size:13px;
  color:#999;
}

.job-arrow{
  width:50px;
  display:flex;
  justify-content:center;
  color:#ccc;
  font-size:18px;
  transform: rotate(-90deg);
  user-select:none;
}

/* “了解更多”按钮 */
.more-btn{
  width:490px;
  height:60px;
  margin: 12px auto 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #d8d8d8;
  background:#fff;
  color:#666;
  font-size:18px;
  border-radius:6px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.more-btn:hover{
  background: var(--brand, #3388ff);
  border-color: var(--brand, #3388ff);
  color:#fff;
}

/* =========================
   为智星环计划（灰底左右图文）
   ========================= */
.intro{
  background: #f8f8f8;
  padding: 26px 0;
  margin: 10px 0 30px;
}
.intro .wrap{
  display:flex;
  gap: 22px;
  align-items:stretch;
  border-radius: 2px;
  overflow:hidden;
}

.intro-left{
  flex: 0 0 400px;
  padding: 44px 30px;
}
.intro-left h2{
  margin:0 0 14px;
  font-size:30px;
  font-weight:800;
}
.intro-left p{
  margin:0;
  font-size:14px;
  line-height:2;
  color:#333;
}

.intro-right{
  flex:1;
  min-width:0;
}
.intro-right img{
  width:100%;
  height:444px;
  object-fit:cover;
  display:block;
}

/* =========================
   成长计划（三列）
   ========================= */
.section-title{
  font-size:30px;
  font-weight:800;
  margin: 18px 0 16px;
}

.growth-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 30px;
}

.growth-item img{
  width:100%;
  height:auto;
  display:block;
  background:#ddd;
}
.growth-item h3{
  margin: 12px 0 8px;
  font-size:16px;
  font-weight:800;
}
.growth-item p{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color:#666;
  min-height: 72px;
}

/* =========================
   底部邮箱大图
   ========================= */
.banner{
  margin: 0 auto;
  padding: 0 0 10px;
}
.banner img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================
   Job.asp 移动端适配（追加到文件末尾）
   ========================= */

*{ box-sizing: border-box; }
img{ max-width: 100%; height: auto; display: block; }

/* wrap 不要固定宽度撑出屏幕 */
.wrap{
  width: min(1190px, 100%);
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

/* ---------- 招聘列表：两列 => 一列 ---------- */
@media (max-width: 768px){
  .job-grid{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .job-card{
    width: 100%;
  }

  .job-thumb{
    width: 96px;     /* 缩小缩略图，避免挤压文字 */
    height: 72px;
    object-fit: cover;
    flex: 0 0 auto;
  }

  .job-title{
    word-break: break-word;  /* 标题长也不断层 */
  }

  .job-arrow{
    margin-left: auto;
  }

  .more-btn{
    width: 100%;
    text-align: center;
  }
}

/* ---------- 为智星环计划：左右 => 上下 ---------- */
@media (max-width: 900px){
  .intro .wrap{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px;
    align-items: start;
  }

  .intro-left, .intro-right{
    width: 100%;
  }

  .intro-right img{
    width: 100%;
    height: auto;
  }
}

/* ---------- 成长计划：三列 => 一列/两列 ---------- */
@media (max-width: 900px){
  .growth-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
}
@media (max-width: 560px){
  .growth-grid{
    grid-template-columns: 1fr !important;
  }
}

/* ---------- 底部大图 banner：防止溢出 ---------- */
@media (max-width: 768px){
  .banner{
    width: 100%;
  }
  .banner img{
    width: 100%;
    height: auto;
  }
}