/* 提供岗位 */
.job-list .grid-list {
  display: grid;
  grid-template-columns: 424px 776px;
  position: relative;
}
.job-list .grid-list .item-box {
  padding-right: 24px;
  padding-bottom: 24px;
  background: #fff;
}
/* .job-list .grid-list .item-box:nth-of-type(1) .item {
  left: 24px;
  z-index: 1;
}
.job-list .grid-list .item-box:nth-of-type(1) .content-box {
  display: block;
  z-index: 1;
} */
.job-list .grid-list .item-box .item {
  width: fit-content;
  height: fit-content;
  position: relative;
  left: 0;
  z-index: 2;
  transition: all 0.3s;
}
.job-list .grid-list .item-box .item .img {
  width: 400px;
  height: 200px;
  display: block;
}
.job-list .grid-list .item-box .item .name {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
}
.job-list .grid-list .item-box .content-box {
  box-sizing: border-box;
  width: 776px;
  min-height: 672px;
  position: absolute;
  top: 0;
  left: 424px;
  z-index: 2;
  display: none;
  transition: all .3s;
}
.job-list .grid-list .item-box:hover {
  background: #f4f5f7;
}
.job-list .grid-list .item-box:hover .item {
  left: 24px;
}
.job-list .grid-list .item-box:hover .content-box {
  display: block;
}
.job-list .grid-list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
}
.job-list .grid-list2 .item-box {
  width: 100%;
  height: fit-content;
  position: relative;
}
.job-list .grid-list2 .item-box img {
  width: 100%;
  height: auto;
  display: block;
}
.job-list .grid-list2 .item-box .content-box {
  height: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
}
.job-list .grid-list2 .item-box:hover .content-box {
  opacity: 1;
  transition: all 0.3s;
}

/* 联系我们区域 */
.contact-box {
  padding-top: 5rem;
}
.contact-box .back-grey {
  background: #e1e4e7;
  position: relative;
}
.contact-box .contact {
  padding-bottom: 7rem;
  position: relative;
  top: -5rem;
  z-index: 2;
}
.contact-box .contact .img {
  height: 350px;
  width: auto;
  display: block;
}
.contact-box .contact .text-box {
  box-sizing: border-box;
  width: 750px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: url(/static/images/job-contact-back.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}