/**
 * 人事招聘页面样式
 */

.page-recruitment {
  min-width: 1500px;
  color: #292c33;
  background: #fff;
}

.recruit-wrap {
  width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.recruit-site-header {
  background: #fff;
}

.recruit-site-header__inner {
  height: 145px;
  display: flex;
  align-items: center;
}

.recruit-logo {
  display: block;
  width: 407px;
  height: 76px;
}

.recruit-logo:hover {
  text-decoration: none;
}

.recruit-logo__img {
  width: 407px;
  height: 76px;
  object-fit: contain;
}

.recruit-main-nav {
  height: 55px;
  background: #008842;
}

.recruit-main-nav__list {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recruit-main-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 34px;
  padding: 0 17px;
  border-radius: 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
}

.recruit-main-nav__list a:hover {
  text-decoration: none;
}

.recruit-main-nav__list a.is-active {
  color: #008842;
  background: #fff;
}

.recruit-hero {
  position: relative;
  height: 405px;
  overflow: hidden;
  background: #008842;
}

.recruit-hero__img {
  width: 100%;
  height: 405px;
  object-fit: cover;
  object-position: center 33%;
}

.recruit-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.recruit-hero__inner {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translateX(-50%);
}

.recruit-hero__crumb {
  position: absolute;
  right: 0;
  bottom: 36px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
}

.recruit-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 980px;
  height: 75px;
  margin: 40px auto 0;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 1px 9px rgba(35, 45, 58, 0.22);
}

.recruit-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  color: #333;
  font-size: 25px;
  line-height: 1;
  text-decoration: none;
}

.recruit-tabs a:hover {
  text-decoration: none;
}

.recruit-tabs a.is-active {
  color: #008842;
  font-weight: 700;
}

.recruit-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 110px;
  height: 6px;
  border-radius: 3px;
  background: #008842;
  transform: translateX(-50%);
}

.recruit-page-title {
  margin: 0;
  color: #008842;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 3px;
}

.recruit-requirements {
  margin-top: 40px;
  padding-top: 54px;
  padding-bottom: 146px;
  background: #eaf3fb;
}

.job-board {
  display: grid;
  grid-template-columns: 710px 710px;
  gap: 32px;
  width: 1452px;
  margin: 108px auto 0;
  align-items: start;
}

.job-board__column {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.job-card {
  width: 650px;
  min-height: 154px;
  overflow: hidden;
  border-radius: 48px 0 48px 0;
  background: #fff;
  color: #008842;
  box-shadow: 0 8px 20px rgba(0, 74, 153, 0.04);
  outline: none;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.job-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.2), 0 8px 20px rgba(0, 74, 153, 0.08);
}

.job-card.is-expanded {
  background: #008842;
  color: #fff;
  box-shadow: 0 12px 24px rgba(22, 76, 158, 0.16);
}

.job-card__head {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 154px;
  padding: 0 82px 0 78px;
  box-sizing: border-box;
}

.job-card__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-right: 28px;
  object-fit: contain;
}

.job-card__head h2 {
  margin: 0;
  color: inherit;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.job-card__arrow {
  position: absolute;
  right: 64px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid #bebebe;
  transform: translateY(-50%);
}

.job-card.is-expanded .job-card__arrow {
  right: 52px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  border-bottom: 0;
}

.job-card__body {
  max-height: 0;
  padding: 0 52px;
  opacity: 0;
  overflow: hidden;
  color: #fff;
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: 0.5px;
  transition:
    max-height 0.25s ease,
    padding-bottom 0.25s ease,
    opacity 0.2s ease;
}

.job-card.is-expanded .job-card__body {
  max-height: 420px;
  padding-bottom: 38px;
  opacity: 1;
}

.job-card__body p {
  margin: 0 0 2px;
}

.job-card__body strong {
  font-weight: 400;
}

.requirements-contact {
  width: 1452px;
  margin: 126px auto 0;
  color: #292c33;
}

.requirements-contact h2 {
  margin: 0 0 28px;
  color: #008842;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.requirements-contact p {
  margin: 0 0 24px;
  font-size: 23px;
  line-height: 1.35;
}

.recruit-news {
  margin-top: 40px;
  padding: 86px 0 146px;
  background: #fff;
}

.recruit-news__list {
  display: grid;
  gap: 50px;
  width: 1454px;
  margin: 112px auto 0;
}

.recruit-news-card__link {
  display: grid;
  grid-template-columns: 174px 1fr;
  align-items: center;
  gap: 70px;
  min-height: 307px;
  padding: 48px 70px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 14px rgba(31, 49, 77, 0.16);
  box-sizing: border-box;
  text-decoration: none;
}

.recruit-news-card__link:hover {
  text-decoration: none;
}

.recruit-news-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 174px;
  border-radius: 8px;
  background: #008842;
  color: #fff;
  font-style: normal;
}

.recruit-news-card__date span {
  color: #fff;
  font-size: 60px;
  font-weight: 300;
  line-height: 0.98;
}

.recruit-news-card__date em {
  margin-top: 13px;
  color: #fff;
  font-size: 30px;
  font-style: normal;
  line-height: 1;
}

.recruit-news-card__body h2 {
  margin: 0 0 22px;
  color: #292c33;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
}

.recruit-news-card__body p {
  margin: 0;
  color: #666;
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: 1px;
}

.recruit-pagination,
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 68px;
  color: #333;
  font-size: 18px;
}

.recruit-pagination a,
.recruit-pagination span,
.news-pagination a,
.news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #bdbdbd;
  color: #333;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.recruit-pagination a:hover,
.news-pagination a:hover {
  text-decoration: none;
}

.recruit-pagination .is-current,
.news-pagination .is-active {
  border-color: #008842;
  background: #008842;
  color: #fff;
}

.recruit-pagination .is-disabled {
  color: #aaa;
}

.recruit-pagination span,
.news-pagination span {
  border-color: transparent;
  padding: 0;
}

.join-section {
  padding: 118px 0 172px;
  background: #fff;
}

.join-form {
  width: 1300px;
  margin: 100px 140px 0;
}

.join-form__field {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.join-form__field label,
.join-form__field legend {
  display: block;
  margin: 0 0 14px;
  padding: 0;
  color: #333;
  font-size: 25px;
  line-height: 1.2;
}

.join-form__field span {
  color: #e3170d;
}

.join-form__field input[type="text"],
.join-form__field input[type="tel"] {
  display: block;
  width: 90%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid #b8b8b8;
  color: #333;
  font-size: 26px;
  line-height: 60px;
  outline: none;
  box-sizing: border-box;
}

.join-form__field input[type="text"]:focus,
.join-form__field input[type="tel"]:focus {
  border-color: #008842;
}

.join-form__field--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 31px;
}

.join-form__field--inline legend {
  width: 100%;
}

.join-radio {
  display: inline-flex !important;
  align-items: center;
  margin: 0 46px 0 0 !important;
  color: #333;
  font-size: 23px !important;
  line-height: 1 !important;
}

.join-radio input {
  width: 21px;
  height: 21px;
  margin: 0 12px 0 6px;
}

.join-radio span {
  color: #333;
}

.join-form__field--education .join-radio {
  margin-right: 72px !important;
}

.join-form__notice {
  margin: 50px 0 0;
  color: #e22112;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.join-form__submit {
  display: block;
  width: 180px;
  height: 68px;
  margin: 110px auto 0;
  border: 0;
  border-radius: 8px;
  background: #008842;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.recruit-map {
  position: relative;
  height: 307px;
  overflow: hidden;
  background: #dce6ef;
}

.recruit-map__img {
  width: 100%;
  height: 307px;
  object-fit: cover;
  object-position: center top;
}

.recruit-map__card {
  position: absolute;
  left: calc((100% - 1500px) / 2 - 12px);
  top: 0;
  width: 480px;
  height: 307px;
  padding: 36px 43px 30px;
  box-sizing: border-box;
  background: rgba(0, 64, 146, 0.82);
  color: #fff;
}

.recruit-map__card h2 {
  margin: 0 0 27px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.recruit-map__card ul {
  display: grid;
  gap: 10px;
}

.recruit-map__card li {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.recruit-footer__main {
  background: #fff;
}

.recruit-footer__inner {
  display: grid;
  grid-template-columns: 410px 380px 1fr;
  align-items: start;
  gap: 140px;
  min-height: 316px;
  padding-top: 83px;
  box-sizing: border-box;
}

.recruit-footer__logo img {
  width: 407px;
  height: 76px;
  object-fit: contain;
}

.recruit-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 29px 58px;
  padding-top: 4px;
}

.recruit-footer__links a {
  color: #292c33;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.recruit-footer__links a:hover {
  color: #008842;
  text-decoration: none;
}

.recruit-footer__qr-list {
  display: flex;
  justify-content: flex-end;
  gap: 54px;
}

.recruit-footer__qr-list figure {
  margin: 0;
  text-align: center;
}

.recruit-footer__qr-list img {
  width: 160px;
  height: 160px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 18px, #111 18px 28px, transparent 28px 40px, #111 40px 50px, transparent 50px 62px, #111 62px 72px),
    linear-gradient(#111 10px, transparent 10px 18px, #111 18px 28px, transparent 28px 40px, #111 40px 50px, transparent 50px 62px, #111 62px 72px),
    radial-gradient(circle at 50% 50%, #0f66c2 0 17px, #fff 18px 25px, transparent 26px),
    repeating-linear-gradient(90deg, transparent 0 8px, #111 8px 13px, transparent 13px 21px),
    repeating-linear-gradient(0deg, transparent 0 9px, #111 9px 14px, transparent 14px 24px),
    #fff;
  background-size: 72px 72px, 72px 72px, 62px 62px, 160px 160px, 160px 160px, auto;
  background-position: 12px 12px, 76px 76px, center, 0 0, 0 0, 0 0;
  background-repeat: no-repeat;
}

.recruit-footer__qr-list figcaption {
  margin-top: 25px;
  color: #292c33;
  font-size: 18px;
  line-height: 1;
}
