/* ===== 人才库页 ===== */
/* Sticky Footer */
body[data-page="talent"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body[data-page="talent"] .page-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body[data-page="talent"] .service-v3-bar {
  margin-top: auto;
}

/* Hero 区域 */
.talent-hero {
  position: relative;
  background: url('../../assets/images/talent-hero-bg.png') no-repeat center center;
  background-size: cover;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.talent-hero .container {
  position: relative;
  z-index: 2;
  min-height: 420px;
}
.talent-hero-content {
  position: relative;
  padding: 60px 0;
  max-width: 620px;
}
.talent-hero-content h1 {
  color: #1a1a2e;
  margin: 0 0 20px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
.talent-hero-content p {
  color: #555;
  margin: 0 0 32px 0;
  font-size: 15px;
  line-height: 1.8;
}
.talent-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 46px;
  padding: 0 28px;
  background: linear-gradient(135deg, #1769ff, #2e7bff);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 12px 30px rgba(23,105,255,.24);
}
.talent-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(23,105,255,.32);
}

/* 数据统计栏 */
.talent-stats {
  position: relative;
  z-index: 2;
  background: #f5f7fa;
  padding: 32px 0;
}
.talent-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.talent-stat-item {
  position: relative;
  text-align: center;
  padding: 8px 20px;
}
.talent-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #dcdfe6;
}
.talent-stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.talent-stat-value strong {
  font-size: 36px;
  font-weight: 700;
  color: #4a5568;
  line-height: 1;
}
.talent-stat-value span {
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}
.talent-stat-label {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
}

/* 标题区 */
.talent-salary-section {
  padding: 80px 0 80px;
}
.talent-section-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
}
.talent-section-title h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  font-family: AlimamaShuHeiTi, AlimamaShuHeiTi;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
  padding: 0 60px;
}
.talent-section-title h2::before,
.talent-section-title h2::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 20px;
  border-radius: 100px 0 0 100px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 55%, transparent 55%),
    linear-gradient(90deg, transparent, #B9D3FF);
  background-blend-mode: multiply;
  box-shadow: 0 9px 0 0 rgba(185,211,255,0.55);
}
.talent-section-title h2::before {
  left: 0;
}
.talent-section-title h2::after {
  right: 0;
}
.talent-section-title p {
  margin: 0;
  font-size: 15px;
  color: #888;
}

/* 就业薪资表格 */
.talent-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background: #fff;
}
.talent-salary-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.talent-salary-table thead th {
  padding: 18px 20px;
  background: linear-gradient(180deg, #e8f4ff 0%, #d6eaff 100%);
  color: #333;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #c8ddf5;
}
.talent-salary-table tbody td {
  padding: 18px 20px;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.talent-salary-table tbody tr:last-child td {
  border-bottom: 0;
}
.talent-salary-table tbody tr:hover td {
  background: #f8faff;
}
.talent-salary-table tbody td:first-child {
  color: #333;
  font-weight: 500;
}
.talent-salary-table tbody td:nth-child(4),
.talent-salary-table tbody td:nth-child(5) {
  color: #2b4cff;
  font-weight: 600;
}

/* 响应式 */
@media (max-width: 1080px) {
  .talent-hero-content h1 {
    font-size: 28px;
  }
  .talent-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .talent-stat-item:nth-child(2)::after {
    display: none;
  }
  .talent-section-title h2 {
    font-size: 24px;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .talent-hero {
    min-height: auto;
    background-position: 70% top;
  }
  .talent-hero-content {
    max-width: 100%;
    padding: 0px 0;
  }
  .talent-hero-content h1 {
    font-size: 24px;
  }
  .talent-hero-content p {
    font-size: 14px;
  }
  .talent-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .talent-stat-value strong {
    font-size: 28px;
  }
  .talent-table-wrap {
    overflow-x: auto;
  }
  .talent-salary-table {
    min-width: 600px;
  }
  .talent-section-title h2 {
    font-size: 22px;
    padding: 0 30px;
  }
  .talent-section-title h2::before,
  .talent-section-title h2::after {
    width: 24px;
  }
}


/* 移动端人才库banner */
@media (max-width: 600px) {
  .talent-hero {
    background: url("../../assets/images/talent-banner-mobile.png") center / cover no-repeat;
    min-height: 530px;
  }
}


/* 移动端人才库标题样式 */
@media (max-width: 600px) {
  .talent-hero-title {
    font-family: AlimamaShuHeiTi, AlimamaShuHeiTi;
    font-weight: bold;
    font-size: 40px;
    color: #131819;
    line-height: 1.3;
  }
}


/* 移动端人才库标题样式 */
@media (max-width: 600px) {
  .talent-hero-content h1 {
    font-family: AlimamaShuHeiTi, AlimamaShuHeiTi !important;
    font-weight: bold !important;
    font-size: 40px !important;
    color: #131819 !important;
    line-height: 1.3 !important;
  }
}


/* 人才库标题两行样式 */
.talent-hero-content h1 .talent-line1 {
  display: block;
  color: #131819;
}
.talent-hero-content h1 .talent-line2 {
  display: block;
  color: #1763FF;
}
