/* 加入我们 */
body {
  background-color: #fff;
}
.banner {
  height: 435px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner .wrap {
  position: relative;
  z-index: 1;
}
.banner .text1 {
  font-size: 56px;
}
.banner .text2 {
  font-size: 30px;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.banner .text1,
.banner .text2 {
  opacity: 0;
  animation: fadeInUp 1s forwards;
  -webkit-animation: fadeInUp 1s forwards;
}
.page-title {
  text-align: center;
  padding: 50px 0;
}
.page-title h2 {
  font-size: 48px;
  font-weight: 400;
  line-height: 72px;
}
.page-title p {
  color: #7e878c;
  font-size: 22px;
}
.page-title span {
  color: var(--primary-color);
}
.talent-philosophy {
  background-color: #f3f7fb;
  padding-bottom: 70px;
}
/* 用人理念 - 图片+文字网格 */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.philosophy-grid .grid-item {
  box-sizing: border-box;
  height: 200px;
}

.philosophy-grid .grid-img {
  overflow: hidden;
}

.philosophy-grid .grid-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.philosophy-grid .grid-img:hover img {
  transform: scale(1.12);
}

.philosophy-grid .grid-text {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  cursor: default;
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.35s ease;
}
.philosophy-grid .grid-text:hover {
  background-color: #fff;
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.15);
}

.philosophy-grid .grid-text h3 {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px 0;
  color: #333;
  position: relative;
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.philosophy-grid .grid-text:hover h3 {
  color: var(--primary-color);
  transform: translateY(-4px);
}
.philosophy-grid .grid-text h3:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -15px;
  width: 27px;
  height: 3px;
  background: #d9d9d9;
  margin-left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.35s ease;
}
.philosophy-grid .grid-text:hover h3:after {
  width: 60px;
  background: var(--primary-color);
}
.philosophy-grid .grid-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
  color: #666;
  transition: color 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.philosophy-grid .grid-text:hover p {
  color: #333;
  transform: translateY(-4px);
}

/* 平板适配 */
@media screen and (max-width: 1024px) {
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 手机适配 */
@media screen and (max-width: 640px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-grid .grid-text {
    padding: 30px 20px;
  }
}
.compensation-and-benefits {
  background: url(../images/join_us/bg_1.png) no-repeat center 0;
  background-size: cover;
  min-height: 883px;
  padding-bottom: 80px;
}
.compensation-and-benefits .page-title {
  color: #fff;
}
.compensation-and-benefits .page-title p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== 竖向步骤条 stepper ===== */
.stepper {
  max-width: 100%;
  margin: 0 auto;
}

.stepper-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* 左侧指示器：圆圈 + 竖线 */
.stepper-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
  margin-right: 30px;
  align-self: stretch;
}

.stepper-indicator .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: transparent;
  flex-shrink: 0;
}

.stepper-indicator .line {
  width: 1px;
  flex: 1;
  min-height: 80px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 8px;
}

/* 最后一行不显示竖线 */
.stepper-row:last-child .stepper-indicator .line {
  background: transparent;
}

/* 内容区域：左右两列 */
.stepper-content {
  display: flex;
  gap: 24px;
  flex: 1;
  padding-bottom: 40px;
}

/* 左侧列：图标 + 标题 */
.stepper-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: 160px;
}

.stepper-icon {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 15px 3px rgba(9, 60, 95, 0.3);
  margin-bottom: 16px;
}

.stepper-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.stepper-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.stepper-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

/* 右侧列：2×2 网格 */
.stepper-right {
  display: inline-grid;
  padding: 24px;
  row-gap: 20px;
  column-gap: 10px;
  align-self: stretch;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  flex: 1;
  transition: all 0.3s ease;
}
.stepper-right:hover {
  background: rgba(255, 255, 255, 0.15);
}
.stepper-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.stepper-item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url(../images/join_us/success.png) no-repeat center / contain;
}

/* 平板适配 */
@media screen and (max-width: 768px) {
  .stepper-content {
    flex-direction: column;
    gap: 20px;
  }

  .stepper-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .stepper-icon {
    margin-bottom: 0;
  }

  .stepper-title {
    font-size: 20px;
  }

  .stepper-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机适配 */
@media screen and (max-width: 480px) {
  .stepper-indicator {
    margin-right: 16px;
  }

  .stepper-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .stepper-item {
    font-size: 14px;
  }
}
.join-us {
  background: url(../images/join_us/bg_2.png) no-repeat center;
  background-size: cover;
  padding-bottom: 50px;
}
.join-us img {
  max-width: 100%;
}
.recruitment-information {
  padding-bottom: 70px;
}
