/* #region jobs_list */
.jobs_list {
  position: relative;
  z-index: 2;
  padding: 16.3rem 0px 8.5rem;
  background-color: #fff;
}
.jobs_list .tcon .tag + h2 {
  margin-top: 2.17rem;
}
.jobs_list .job_list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.56rem 3.26rem;
  margin-top: 6.48rem;
}
.jobs_list .job_item {
  width: calc((100% - 3.26rem) / 2);
  min-height: 46rem;
  padding: 4.98rem 5.4rem 4rem 5.46rem;
  border-radius: 1.6rem;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid #e4e8ee;
  background-color: #fff;
}
.jobs_list .job_item.hide {
  display: none;
}
.jobs_list .job_item.active,
.jobs_list .job_item:hover {
  border: 2px solid var(--primary);
  background-color: #fff9ee;
  box-shadow: 0px 1.2rem 3rem rgba(240, 131, 0, 0.1);
}
.jobs_list .job_list:hover .job_item.active:not(:hover) {
  border: 1.5px solid #e4e8ee;
  background-color: #fff;
  box-shadow: none;
}
.jobs_list .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  min-height: 8.36rem;
}
.jobs_list .head .title {
  color: #16202c;
  font-weight: 450;
  font-size: 3.4rem;
  line-height: 4.5rem;
}
.jobs_list .head .meta {
  margin-top: 1.17rem;
  color: #16202c;
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.jobs_list .apply {
  flex-shrink: 0;
  padding-top: 0.2rem;
  text-align: right;
}
.jobs_list .salary {
  display: block;
  color: #f18200;
  font-weight: 520;
  font-size: 2.05rem;
  line-height: 2.7rem;
  white-space: nowrap;
}
.jobs_list .btn_apply {
  min-width: 15.4rem;
  height: 4.2rem;
  margin-top: 1.26rem;
  gap: 0.9rem;
  padding: 0px 3.3rem;
}
.jobs_list .btn_apply::after {
  width: 1.1rem;
  height: 0.9rem;
}
.jobs_list .job_item.active .btn_apply {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.jobs_list .job_list:hover .job_item.active:not(:hover) .btn_apply {
  color: var(--title);
  border-color: rgba(34, 29, 21, 0.3);
  background-color: transparent;
}
.jobs_list .job_item:hover .btn_apply {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.jobs_list .duty {
  margin-top: 3.94rem;
  padding-top: 2.68rem;
  border-top: 1px solid rgba(34, 29, 21, 0.1);
}
.jobs_list .duty h4 {
  color: #16202c;
  font-weight: 520;
  font-size: 2rem;
  line-height: 2.7rem;
}
.jobs_list .duty ol {
  counter-reset: duty;
  margin-top: 1.2rem;
}
.jobs_list .duty li {
  position: relative;
  counter-increment: duty;
  padding-left: 1.9rem;
  color: var(--text);
  font-weight: 330;
  font-size: 1.47rem;
  line-height: 2.4rem;
}
.jobs_list .duty li::before {
  content: counter(duty) '.';
  position: absolute;
  left: 0px;
  top: 0px;
}
.jobs_list .more_box {
  margin-top: 4.44rem;
  text-align: center;
}
.jobs_list .btn_more {
  min-width: 20rem;
}
.jobs_list .btn_more.hide {
  display: none;
}
/* #endregion */

/* #region apply_popup */
.apply_popup {
  position: fixed;
  inset: 0px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  background-color: rgba(34, 29, 21, 0.5);
}
.apply_popup.active {
  opacity: 1;
  visibility: visible;
}
.apply_popup .apply_box {
  position: relative;
  width: 68rem;
  max-height: 100%;
  overflow-y: auto;
  padding: 4.27rem 4.6rem 4.5rem;
  border-radius: 0px 0px 2.4rem 2.4rem;
  transform: translateY(2rem);
  transition: transform 0.4s;
  border-top: 4px solid #f18200;
  background-color: #fff;
  box-shadow: 0px 2rem 6rem rgba(4, 16, 48, 0.2);
}
.apply_popup.active .apply_box {
  transform: translateY(0px);
}
.apply_popup .apply_box::-webkit-scrollbar {
  width: 0px;
}
.apply_popup .apply_close {
  position: absolute;
  right: 1.8rem;
  top: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  transition: 0.3s;
}
.apply_popup .apply_close::before,
.apply_popup .apply_close::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.8rem;
  height: 2px;
  margin: -1px 0px 0px -0.9rem;
  background-color: rgba(17, 18, 20, 0.74);
}
.apply_popup .apply_close::before {
  transform: rotate(45deg);
}
.apply_popup .apply_close::after {
  transform: rotate(-45deg);
}
.apply_popup .apply_close:hover {
  background-color: #f5f5f5;
}
.apply_popup .apply_close:hover::before,
.apply_popup .apply_close:hover::after {
  background-color: var(--primary);
}
.apply_popup .apply_title {
  color: var(--title);
  font-weight: 450;
  font-size: 4rem;
  line-height: 5.3rem;
}
.apply_popup .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2.7rem;
  margin-top: 2.35rem;
}
.apply_popup .item {
  position: relative;
  width: 100%;
}
.apply_popup .item.col2 {
  width: calc((100% - 2.5rem) / 2);
}
.apply_popup .label {
  display: block;
  margin-bottom: 0.7rem;
  color: #161616;
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.apply_popup .label em {
  margin-left: 0.5rem;
  color: #fc8216;
}
.apply_popup .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.apply_popup input[type='text'],
.apply_popup input[type='tel'],
.apply_popup textarea {
  display: block;
  width: 100%;
  height: 5.8rem;
  padding: 0px 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: transparent;
}
.apply_popup textarea {
  height: 12.6rem;
  padding: 1.6rem 2rem;
  line-height: 2.4rem;
  resize: none;
}
.apply_popup textarea::placeholder {
  color: rgba(0, 0, 0, 0.44);
  font-weight: 330;
}
.apply_popup input[type='text']:focus,
.apply_popup input[type='tel']:focus,
.apply_popup textarea:focus {
  border-color: var(--primary);
  box-shadow: 0px 0px 0px 0.3rem rgba(240, 131, 0, 0.1);
}
.apply_popup .wpcf7-not-valid {
  border-color: #e5484d !important;
}
.apply_popup .upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  height: 9.04rem;
  padding: 0px 2rem;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  border: 1px dashed rgba(0, 0, 0, 0.2);
}
.apply_popup .upload:hover,
.apply_popup .upload.dragover {
  border-color: var(--primary);
  background-color: #fff9ee;
}
.apply_popup .upload input[type='file'] {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.apply_popup .upload_icon {
  flex-shrink: 0;
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #f18200 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11.5 14 7l5 4.5M14 7v11M6 20.5h16'/%3E%3C/svg%3E") no-repeat center / 2.6rem 2.6rem;
}
.apply_popup .upload_text strong {
  display: block;
  color: #161616;
  font-weight: 520;
  font-size: 1.5rem;
  line-height: 2rem;
}
.apply_popup .upload_text em {
  display: block;
  margin-top: 0.4rem;
  color: rgba(17, 18, 20, 0.74);
  font-weight: 330;
  font-size: 1.3rem;
  line-height: 1.8rem;
}
.apply_popup .item_check {
  margin-top: -0.3rem;
}
.apply_popup .item_check .wpcf7-acceptance,
.apply_popup .item_check .wpcf7-list-item {
  display: block;
  margin: 0;
}
.apply_popup .item_check .wpcf7-list-item label {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
}
.apply_popup .item_check input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}
.apply_popup .item_check .wpcf7-list-item-label {
  position: relative;
  display: block;
  padding-left: 3.1rem;
  color: var(--title);
  font-weight: 330;
  font-size: 1.5rem;
  line-height: 2rem;
}
.apply_popup .item_check .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.3rem;
  box-sizing: border-box;
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #fff;
}
.apply_popup .item_check label:hover .wpcf7-list-item-label::before,
.apply_popup .item_check input:focus-visible + .wpcf7-list-item-label::before {
  border-color: var(--primary);
}
.apply_popup .item_check input:focus-visible + .wpcf7-list-item-label::before {
  box-shadow: 0 0 0 0.3rem rgba(240, 131, 0, 0.2);
}
.apply_popup .item_check input:checked + .wpcf7-list-item-label::before {
  border-color: var(--primary);
  background-color: var(--primary);
}
.apply_popup .item_check input:checked + .wpcf7-list-item-label::after {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.4rem;
  width: 0.5rem;
  height: 0.9rem;
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.apply_popup .item_check .wpcf7-list-item-label a {
  color: var(--primary);
  text-decoration: underline;
}
.apply_popup .item_submit {
  margin-top: 2.2rem;
}
.apply_popup .send {
  width: 100%;
}
.apply_popup .send.loading {
  opacity: 0.7;
  pointer-events: none;
}
.apply_popup .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  color: #e5484d;
  font-size: 1.4rem;
  line-height: 1.5;
}
/* #endregion */

@media screen and (max-width: 1024px) {
  .jobs_list .job_item {
    width: 100%;
    min-height: 0px;
  }
}

@media screen and (max-width: 768px) {
  .jobs_list {
    padding: 50px 0px 60px;
  }
  .jobs_list .job_list {
    gap: 14px;
    margin-top: 26px;
  }
  .jobs_list .job_item {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .jobs_list .head {
    flex-direction: column;
    gap: 14px;
    min-height: 0px;
  }
  .jobs_list .head .title {
    font-size: 20px;
    line-height: 1.35;
  }
  .jobs_list .head .meta {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
  }
  .jobs_list .apply {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 0px;
    text-align: left;
  }
  .jobs_list .salary {
    font-size: 16px;
    line-height: 1.4;
  }
  .jobs_list .btn_apply {
    min-width: 0px;
    height: 34px;
    margin: 0px 0px 0px auto;
    padding: 0px 18px;
    font-size: 13px;
  }
  .jobs_list .duty {
    margin-top: 18px;
    padding-top: 16px;
  }
  .jobs_list .duty h4 {
    font-size: 16px;
    line-height: 1.4;
  }
  .jobs_list .duty ol {
    margin-top: 8px;
  }
  .jobs_list .duty li {
    padding-left: 16px;
    font-size: 13px;
    line-height: 22px;
  }
  .jobs_list .more_box {
    margin-top: 26px;
  }
  .apply_popup {
    padding: 20px 10px;
  }
  .apply_popup .apply_box {
    width: 100%;
    padding: 22px 18px 24px;
    border-radius: 0px 0px 16px 16px;
  }
  .apply_popup .apply_close {
    right: 8px;
    top: 10px;
    width: 28px;
    height: 28px;
  }
  .apply_popup .apply_close::before,
  .apply_popup .apply_close::after {
    width: 15px;
    margin-left: -7.5px;
  }
  .apply_popup .apply_title {
    font-size: 24px;
    line-height: 1.35;
  }
  .apply_popup .wrap {
    row-gap: 16px;
    margin-top: 18px;
  }
  .apply_popup .item.col2 {
    width: 100%;
  }
  .apply_popup .label {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 20px;
  }
  .apply_popup input[type='text'],
  .apply_popup input[type='tel'],
  .apply_popup textarea {
    height: 46px;
    padding: 0px 12px;
    font-size: 14px;
  }
  .apply_popup textarea {
    height: 96px;
    padding: 10px 12px;
    line-height: 1.6;
  }
  .apply_popup .upload {
    height: 74px;
    gap: 12px;
  }
  .apply_popup .upload_icon {
    width: 36px;
    height: 36px;
    background-size: 20px 20px;
  }
  .apply_popup .upload_text strong {
    font-size: 14px;
  }
  .apply_popup .upload_text em {
    font-size: 11px;
    line-height: 1.5;
  }
  .apply_popup .item_check .wpcf7-list-item-label {
    padding-left: 28px;
    font-size: 13px;
    line-height: 18px;
  }
  .apply_popup .item_check .wpcf7-list-item-label::before {
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 3px;
  }
  .apply_popup .item_check input:checked + .wpcf7-list-item-label::after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
  }
  .apply_popup .item_submit {
    margin-top: 10px;
  }
}

.jobs_banner {
  height: 68.08rem;
  overflow: hidden;
  isolation: isolate;
  background-color: #041030;
}
.jobs_banner.img_bg > img {
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.jobs_banner:hover.img_bg > img {
  transform: scale(1.02);
}
.jobs_banner .content {
  height: 100%;
  padding-top: 15.68rem;
}
.jobs_banner .tcon h1 {
  color: #fff;
  font-weight: 520;
  font-size: 6.4rem;
  line-height: 8rem;
  text-shadow: 0px 0.4rem 2rem rgba(0, 30, 70, 0.2);
}
.jobs_banner .tcon p {
  max-width: 52rem;
  margin-top: 2.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 305;
  font-size: 2.2rem;
  line-height: 3.5rem;
}
.jobs_banner .btns {
  display: flex;
  gap: 1.96rem;
  margin-top: 3.66rem;
}
.jobs_banner .btn {
  padding: 0px 3.4rem;
}

@media screen and (max-width: 1024px) {
  .jobs_banner.img_bg > img {
    object-position: 30% center;
  }
}

@media screen and (max-width: 768px) {
  .jobs_banner {
    height: 420px;
  }
  .jobs_banner.img_bg > img {
    object-position: 34% center;
  }
  .jobs_banner::before {
    content: '';
    position: absolute;
    inset: 0px;
    z-index: -1;
    background-image: linear-gradient(90deg, rgba(4, 16, 48, 0.85) 0%, rgba(4, 16, 48, 0.35) 100%);
  }
  .jobs_banner .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
  }
  .jobs_banner .tcon h1 {
    font-size: 30px;
    line-height: 1.3;
  }
  .jobs_banner .tcon p {
    max-width: none;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .jobs_banner .btns {
    gap: 10px;
    margin-top: 24px;
  }
  .jobs_banner .btn {
    padding: 0px 22px;
  }
}

.jobs_company {
  position: relative;
  z-index: 1;
  padding: 23.52rem 0px 16rem;
}
.jobs_company::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0.1rem;
  z-index: -1;
  width: 100%;
  height: 111.3rem;
  pointer-events: none;
  background: url(../img/company-bg.webp) no-repeat center top / 100% 100%;
}
.jobs_company .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
.jobs_company .main {
  width: 68rem;
}
.jobs_company .tcon .tag + h2 {
  margin-top: 2.18rem;
}
.jobs_company .intro {
  margin-top: 2.74rem;
}
.jobs_company .intro h3 {
  color: var(--title);
  font-weight: 450;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.jobs_company .intro p {
  max-width: 64rem;
  margin-top: 0.9rem;
  color: var(--text);
  font-weight: 330;
  font-size: 1.6rem;
  line-height: 3rem;
}
.jobs_company .honor {
  margin-top: 3.5rem;
}
.jobs_company .honor h3 {
  color: var(--title);
  font-weight: 450;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
.jobs_company .honor_list {
  margin-top: 1.23rem;
}
.jobs_company .honor_list li {
  position: relative;
  padding-left: 1.53rem;
  color: var(--text);
  font-weight: 380;
  font-size: 1.8rem;
  line-height: 3.6rem;
}
.jobs_company .honor_list li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 1.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.jobs_company .btns {
  margin-top: 4.35rem;
}
.jobs_company .btn {
  padding: 0px 3.4rem;
}
.jobs_company .info_list {
  width: 79.96rem;
  flex-shrink: 0;
}
.jobs_company .info_list > li {
  display: flex;
  align-items: flex-start;
  padding: 2.9rem 5rem 2.88rem 3.05rem;
  border-radius: 1.6rem;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.64);
}
.jobs_company .info_list > li + li {
  margin-top: 1.65rem;
}
.jobs_company .info_list > li:hover {
  transform: translateY(-0.4rem);
  background-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0px 1.2rem 2.8rem rgba(4, 16, 48, 0.08);
}
.jobs_company .num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin: 0.34rem 3rem 0px 0px;
  border-radius: 50%;
  color: #fff;
  font-weight: 520;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  background-color: var(--primary);
}
.jobs_company .info_list h3 {
  color: var(--dark);
  font-weight: 450;
  font-size: 2.8rem;
  line-height: 3.7rem;
}
.jobs_company .info_list p {
  margin-top: 1.72rem;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.6rem;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .jobs_company .main {
    width: 46%;
  }
  .jobs_company .info_list {
    width: 50%;
  }
}

@media screen and (max-width: 1024px) {
  .jobs_company .content {
    flex-direction: column;
  }
  .jobs_company .main,
  .jobs_company .info_list {
    width: 100%;
  }
  .jobs_company .info_list {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 768px) {
  .jobs_company {
    padding: 50px 0px 60px;
  }
  .jobs_company::before {
    top: 0px;
    height: 100%;
    background-size: cover;
  }
  .jobs_company .intro {
    margin-top: 20px;
  }
  .jobs_company .intro h3 {
    font-size: 16px;
    line-height: 1.5;
  }
  .jobs_company .intro p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
  .jobs_company .honor {
    margin-top: 24px;
  }
  .jobs_company .honor h3 {
    font-size: 18px;
    line-height: 1.4;
  }
  .jobs_company .honor_list {
    margin-top: 8px;
  }
  .jobs_company .honor_list li {
    padding-left: 14px;
    font-size: 14px;
    line-height: 26px;
  }
  .jobs_company .honor_list li::before {
    top: 11px;
    width: 5px;
    height: 5px;
  }
  .jobs_company .btns {
    margin-top: 24px;
  }
  .jobs_company .btn {
    padding: 0px 22px;
  }
  .jobs_company .info_list {
    margin-top: 30px;
  }
  .jobs_company .info_list > li {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .jobs_company .info_list > li + li {
    margin-top: 12px;
  }
  .jobs_company .num {
    width: 24px;
    height: 24px;
    margin: 2px 12px 0px 0px;
    font-size: 12px;
  }
  .jobs_company .info_list h3 {
    font-size: 18px;
    line-height: 1.4;
  }
  .jobs_company .info_list p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.7;
  }
}

.jobs_welfare {
  position: relative;
  z-index: 2;
  padding: 16rem 0px 16.1rem;
}
.jobs_welfare::before {
  content: '';
  position: absolute;
  inset: 0px;
  z-index: -1;
  pointer-events: none;
  background: url(../img/welfare-bg.webp) no-repeat center top / 100% 100%;
  border-radius: 3rem;
}
.jobs_welfare .tag {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.jobs_welfare .tcon h2 {
  color: #fff;
}
.jobs_welfare .tcon .tag + h2 {
  margin-top: 2.18rem;
}
.jobs_welfare .welfare_list {
  margin-top: 6.64rem;
}
.jobs_welfare .welfare_list > li {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 51.77rem;
  border-radius: 1.6rem;
  border: 1px solid #e4e8ee;
  background-color: #fff;
}
.jobs_welfare .welfare_list > li + li {
  margin-top: 5.01rem;
}
.jobs_welfare .photo {
  position: relative;
  flex-shrink: 0;
  width: 77.8rem;
  margin: 0px;
  align-self: stretch;
}
.jobs_welfare .photo .img {
  overflow: hidden;
  height: 100%;
}
.jobs_welfare .photo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jobs_welfare .photo::after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  height: 18rem;
  pointer-events: none;
  background-image: linear-gradient(0deg, rgba(4, 16, 47, 0.9) 0%, rgba(4, 16, 47, 0) 100%);
}
.jobs_welfare .photo_dots {
  position: absolute;
  left: 0px;
  bottom: 2.7rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
}
.jobs_welfare .photo_dots .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
}
.jobs_welfare .photo_dots .dot.active {
  background-color: #fff;
}
.jobs_welfare .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0px;
  padding: 4rem 6rem 4rem 9.65rem;
}
.jobs_welfare .info h3 {
  color: var(--dark);
  font-weight: 450;
  font-size: 2.8rem;
  line-height: 3.7rem;
}
.jobs_welfare .info p {
  margin-top: 1.78rem;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.jobs_welfare .cols {
  display: flex;
  margin-top: 2.63rem;
}
.jobs_welfare .cols .col {
  width: 23.93rem;
}
.jobs_welfare .cols .col + .col {
  width: 24.95rem;
}
.jobs_welfare .cols .col:last-child {
  width: auto;
}
.jobs_welfare .cols h4 {
  color: var(--dark);
  font-weight: 520;
  font-size: 2rem;
  line-height: 2.7rem;
}
.jobs_welfare .cols ul {
  margin-top: 0.52rem;
}
.jobs_welfare .cols li {
  position: relative;
  padding-left: 1.49rem;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 3.4rem;
}
.jobs_welfare .cols li::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary);
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .jobs_welfare .photo {
    width: 40%;
  }
  .jobs_welfare .info {
    padding: 4rem;
  }
  .jobs_welfare .cols .col,
  .jobs_welfare .cols .col + .col {
    width: 33.33%;
  }
}

@media screen and (max-width: 768px) {
  .jobs_welfare {
    padding: 50px 0px 60px;
  }
  .jobs_welfare::before {
    background-size: cover;
  }
  .jobs_welfare .welfare_list {
    margin-top: 26px;
  }
  .jobs_welfare .welfare_list > li {
    flex-direction: column;
    min-height: 0px;
    border-radius: 14px;
  }
  .jobs_welfare .welfare_list > li + li {
    margin-top: 16px;
  }
  .jobs_welfare .photo {
    width: 100%;
    height: 220px;
  }
  .jobs_welfare .photo::after {
    height: 80px;
  }
  .jobs_welfare .photo_dots {
    bottom: 12px;
    gap: 6px;
  }
  .jobs_welfare .photo_dots .dot {
    width: 10px;
    height: 10px;
  }
  .jobs_welfare .info {
    padding: 20px 18px 24px;
  }
  .jobs_welfare .info h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  .jobs_welfare .info p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.7;
  }
  .jobs_welfare .info p br {
    display: none;
  }
  .jobs_welfare .cols {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
  }
  .jobs_welfare .cols .col,
  .jobs_welfare .cols .col + .col,
  .jobs_welfare .cols .col:last-child {
    width: calc((100% - 16px) / 2);
  }
  .jobs_welfare .cols h4 {
    font-size: 15px;
    line-height: 1.4;
  }
  .jobs_welfare .cols li {
    padding-left: 12px;
    font-size: 13px;
    line-height: 24px;
  }
  .jobs_welfare .cols li::before {
    top: 10px;
    width: 4px;
    height: 4px;
  }
}

.jobs_steps {
  position: relative;
  z-index: 1;
  padding: 9.45rem 0px 10.04rem;
}
.jobs_steps::before {
  content: '';
  position: absolute;
  left: 0px;
  top: -2.68rem;
  z-index: -1;
  width: 100%;
  height: 83.6rem;
  pointer-events: none;
  background: url(../img/steps-bg.webp) no-repeat center top / 100% 100%;
}
.jobs_steps .tcon .tag + h2 {
  margin-top: 2.18rem;
}
.jobs_steps .step_list {
  position: relative;
  display: flex;
  min-height: 42rem;
  margin-top: 6.43rem;
  padding: 6.49rem 0px 4rem;
  border-radius: 2.4rem;
  background-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0px 1rem 1.2rem rgba(206, 211, 221, 0.35);
}
.jobs_steps .step_list::before {
  content: '';
  position: absolute;
  left: 6rem;
  right: 6rem;
  top: 17.95rem;
  height: 2px;
  background-color: rgba(34, 29, 21, 0.1);
}
.jobs_steps .step_list > li {
  position: relative;
  flex: 1 1 0px;
  min-width: 0px;
  text-align: center;
}
.jobs_steps .step_list > li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 10.36rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  margin-left: -1.1rem;
  border-radius: 50%;
  border: 4px solid #fff;
  background-color: var(--primary);
}
.jobs_steps .icon {
  display: block;
  width: 7.8rem;
  height: 7.8rem;
  margin: 0px auto;
  border-radius: 1.6rem;
  transition: transform 0.4s;
  background-color: var(--primary);
  box-shadow: 0px 0.8rem 1.6rem rgba(240, 131, 0, 0.25);
}
.jobs_steps .step_list > li:hover .icon {
  transform: translateY(-0.6rem);
}
.jobs_steps .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.jobs_steps .step_list h3 {
  margin-top: 8.95rem;
  color: var(--dark);
  font-weight: 450;
  font-size: 2.8rem;
  line-height: 3.7rem;
}
.jobs_steps .step_list p {
  max-width: 30rem;
  margin: 1.29rem auto 0px;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.6rem;
}

@media screen and (max-width: 768px) {
  .jobs_steps {
    padding: 50px 0px 60px;
  }
  .jobs_steps::before {
    top: 0px;
    height: 100%;
    background-size: cover;
  }
  .jobs_steps .step_list {
    flex-direction: column;
    gap: 26px;
    min-height: 0px;
    margin-top: 26px;
    padding: 24px 18px 26px;
    border-radius: 16px;
  }
  .jobs_steps .step_list::before {
    left: 50%;
    right: auto;
    top: 40px;
    bottom: 40px;
    width: 2px;
    height: auto;
  }
  .jobs_steps .step_list > li::after {
    display: none;
  }
  .jobs_steps .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  .jobs_steps .step_list h3 {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.4;
  }
  .jobs_steps .step_list p {
    max-width: none;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.7;
  }
}

.jobs_life {
  position: relative;
  z-index: 1;
  padding: 16.03rem 0px 11.5rem;
  background-color: #fff;
}
.jobs_life .tcon .tag + h2 {
  margin-top: 2.18rem;
}
.jobs_life .life_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 6.23rem;
}
.jobs_life .photo {
  position: relative;
  flex-shrink: 0;
  margin: 0px;
  overflow: hidden;
  width: 77.6rem;
  height: 52rem;
  border-radius: 2.4rem;
}
.jobs_life .photo .img,
.jobs_life .photo .img img {
  height: 100%;
}
.jobs_life .photo .img img {
  width: 100%;
  object-fit: cover;
}
.jobs_life .photo::after {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  height: 18rem;
  pointer-events: none;
  background-image: linear-gradient(0deg, rgba(4, 16, 47, 0.92) 0%, rgba(4, 16, 47, 0) 100%);
}
.jobs_life .photo_dots {
  position: absolute;
  left: 0px;
  bottom: 2.6rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
}
.jobs_life .photo_dots .dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.5);
}
.jobs_life .photo_dots .dot.active {
  background-color: #fff;
}
.jobs_life .info {
  width: 77.5rem;
  padding-top: 2rem;
}
.jobs_life .info .tcon p {
  max-width: 63rem;
  font-weight: 330;
  font-size: 1.8rem;
  line-height: 3rem;
}
.jobs_life .life_items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.58rem 1.6rem;
  margin-top: 3.79rem;
}
.jobs_life .life_items > li {
  display: flex;
  align-items: center;
  gap: 2.67rem;
  width: calc((100% - 1.6rem) / 2);
  height: 13rem;
  padding: 0px 2rem 0px 2.43rem;
  border-radius: 1.6rem;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  border: 1px solid #e2e2e2;
  background-color: #fff;
}
.jobs_life .life_items > li:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0px 1rem 2.4rem rgba(4, 16, 48, 0.07);
}
.jobs_life .life_items > li.active {
  border: 1.5px solid #ff8e24;
}
.jobs_life .life_items .icon {
  flex-shrink: 0;
  display: block;
  width: 4.6rem;
  height: 4.6rem;
}
.jobs_life .life_items .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.jobs_life .life_items h3 {
  color: var(--dark);
  font-weight: 450;
  font-size: 2.4rem;
  line-height: 3.2rem;
  white-space: nowrap;
}
.jobs_life .life_items p {
  margin-top: 0.57rem;
  color: var(--text);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 2.2rem;
  white-space: nowrap;
}
.jobs_life .btns {
  margin-top: 4.42rem;
}
.jobs_life .btn {
  padding: 0px 3.4rem;
}

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .jobs_life .photo {
    width: 46%;
    height: 42rem;
  }
  .jobs_life .info {
    width: 50%;
  }
  .jobs_life .life_items > li {
    gap: 1.6rem;
    padding: 0px 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .jobs_life .life_box {
    flex-direction: column;
  }
  .jobs_life .photo {
    width: 100%;
    height: 44rem;
  }
  .jobs_life .info {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .jobs_life {
    padding: 50px 0px 60px;
  }
  .jobs_life .life_box {
    gap: 24px;
    margin-top: 26px;
  }
  .jobs_life .photo {
    height: 220px;
    border-radius: 16px;
  }
  .jobs_life .photo::after {
    height: 80px;
  }
  .jobs_life .photo_dots {
    bottom: 12px;
    gap: 6px;
  }
  .jobs_life .photo_dots .dot {
    width: 10px;
    height: 10px;
  }
  .jobs_life .info {
    padding-top: 0px;
  }
  .jobs_life .info .tcon p {
    max-width: none;
    font-size: 14px;
    line-height: 1.7;
  }
  .jobs_life .life_items {
    gap: 10px;
    margin-top: 20px;
  }
  .jobs_life .life_items > li {
    gap: 12px;
    width: 100%;
    height: 76px;
    padding: 0px 14px;
    border-radius: 14px;
  }
  .jobs_life .life_items .icon {
    width: 36px;
    height: 36px;
  }
  .jobs_life .life_items h3 {
    font-size: 17px;
    line-height: 1.4;
  }
  .jobs_life .life_items p {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.5;
  }
  .jobs_life .btns {
    margin-top: 22px;
  }
  .jobs_life .btn {
    padding: 0px 22px;
  }
}
