.yichen_text_recruitment {
  padding: var(--component-gap) 0;
  position: relative;
}

/* 背景图 */
.yichen_text_recruitment .bg_img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 蒙版 */
.yichen_text_recruitment::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}
.yichen_text_recruitment .bg_img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: opacity(0.8);
}

.yichen_text_recruitment .container {
  display: flex;
  height: 100%;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.yichen_text_recruitment .container .title {
  color: var(--color-primary);
  text-align: center;
  font-size: var(--title-size-h1);
  font-weight: 500;
  line-height: normal;
}

.yichen_text_recruitment .container .desc {
  color: var(--color-primary);
  text-align: center;
  font-size: var(--text-flag-size);
  font-weight: 500;
  line-height: normal;
  margin-top: 24px;
}

.yichen_text_recruitment .container .btn {
  border-radius: 5px;
  background: var(--color-primary);
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.125;
  padding: 10px 18px;
  margin-top: 68px;
}
.yichen_text_recruitment .container .btn a:hover{
  color: #FFF;
}

@media screen and (max-width: 1200px) {
  .yichen_text_recruitment .container .btn {
    font-size: 24px;
    margin-top: 40px;
  }
}

@media screen and (max-width: 992px) {
  .yichen_text_recruitment .container .btn {
    font-size: 20px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .yichen_text_recruitment .container .btn {
    font-size: 16px;
    margin-top: 20px;
  }

  .yichen_text_recruitment .container .desc {
    margin-top: 10px;
  }
}

@media screen and (max-width: 576px) {
  .yichen_text_recruitment .container .title {
    font-size: 20px;
  }

  .yichen_text_recruitment .container .desc {
    font-size: 12px;
  }
}