.h_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 48px 0;
}
.h_link a {
  margin-right: 48px;
  font-size: 18px;
  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
  font-weight: 400;
  color: #3D3D3D;
  position: relative;
  padding-bottom: 16px;
}
.h_link a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: #012B81;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s linear;
}
.h_link a:hover {
  color: #012B81;
}
.h_link a:hover::after {
  transform: scaleX(1);
}
.h_link a.h_active {
  color: #012B81;
}
.h_link a.h_active::after {
  transform: scaleX(1);
}
.h_List {
  margin-top: 30px;
  position: relative;
}
.h_List::after {
  content: '招聘岗位';
  position: absolute;
  top: -80px;
  right: -8px;
  width: 104px;
  height: 272px;
  background: #012B81;
  font-size: 37px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 56px;
  padding: 25px;
  box-sizing: border-box;
  text-align: center;
}
.h_List::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -28px;
  width: 28px;
  height: 296px;
  background: #061A25;
}
.h_List .h_box {
  padding: 48px;
  background: #F9F9F9;
  margin-bottom: 30px;
}
.h_List .h_box .h_title {
  font-size: 20px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #012B81;
  margin-bottom: 8px;
}
.h_List .h_box .h_subtitle {
  font-size: 16px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #012B81;
  margin-bottom: 30px;
}
.h_List .h_box .h_p1 {
  font-size: 16px;
  font-family: Source Han Sans CN-Medium, Source Han Sans CN;
  font-weight: 500;
  color: #3D3D3D;
  margin: 0 0 6px;
}
.h_List .h_box .h_desc {
  font-size: 15px;
  font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  font-weight: 350;
  color: #555555;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .h_link {
    flex-wrap: nowrap;
    overflow-y: auto;
    padding: 30px 0;
  }
  .h_link a {
    padding-bottom: 4px;
    margin-right: 30px;
    white-space: nowrap;
  }
  .h_List {
    margin-top: 0;
  }
  .h_List::after,
  .h_List::before {
    display: none;
  }
  .h_List .h_box {
    padding: 20px;
  }
}
