.recruits-wrapper {
  margin: 0 -1.5rem;
  padding-top: 4rem;
}

.recruits {
  display: flex;
  flex-wrap: wrap;
}
.recruits .recruit:hover {
  color: #fff;
  background: linear-gradient(90deg, rgb(32, 156, 255) 0%, rgb(0, 83, 233) 100%);
  box-shadow: 0px 0px 20px 0px rgba(31, 153, 254, 0.5);
}
.recruits .recruit:hover .recruit__tip {
  color: #fff;
}

.recruit {
  overflow: hidden;

  width: 60rem;
  height: 21rem;
  margin: 1.5rem;
  padding: 3rem;

  cursor: pointer;

  border-radius: 5px;
  background: #fff;
}

.recruit__head {
  display: flex;

  padding-bottom: 2rem;
}

.recruit__title {
  margin-bottom: 2rem;

  font-size: 2.2rem;
  font-weight: bold;
}

.recruit__tip {
  color: #818181;

  font-size: 1.6rem;
}

.recruit__icon {
  margin-right: 1rem;
}

.recruit__text {
  margin-right: 4rem;
}

.recruit__info {
  flex: 1;
}

.recruit__count {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 5.4rem;
  height: 5.4rem;

  color: #000;
  border-radius: 50%;
  background: #f3f5f7;
}

.recruit__body {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;

  height: 5rem;

  text-overflow: ellipsis;

  font-size: 1.5rem;
  line-height: 2.5rem;

  -webkit-line-clamp: 2;
}

.modal-recruit .recruit {
  display: flex;
  flex-direction: column;

  width: 1080px;
  height: 600px;
  margin: 0 auto;
  padding: 0;

  cursor: auto;

  border-radius: 5px;
  background: #fff;
}
.modal-recruit .recruit__label {
  color: #000;
}
.modal-recruit .recruit__head {
  padding: 3rem;

  border-bottom: 1px solid #eee;
}
.modal-recruit .recruit__body {
  display: block;
  overflow: auto;
  flex: 1;

  height: auto;
  padding: 0 3rem;
}
.modal-recruit .recruit__foot {
  padding: 3rem;

  color: #0c6ef1;

  font-size: 1.6rem;
}

.modal-recruit__close {
  float: right;

  cursor: pointer;

  color: #fff;

  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .recruits-wrapper {
    margin: 0;
    padding: 0;
  }
  .modal-recruit .recruit {
    width: 100%;
  }
}