.recruit {
  font-size: 30px;
  margin-bottom: 30px;
  color: #217299;
}

.job_item {
  width: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #217299;
  padding: 20px;
  margin-bottom: 20px;
}

.jopb_item_head > p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.jopb_item_head > p:nth-child(2),
.job_item_info_left {
  font-size: 15px;
  color: #666666;
}

.job_item_info {
  margin-top: 10px;
}

.job_item_btn {
  width: 140px;
  height: 50px;
  border-radius: 6px;
  background: #3b87ef;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

.dialog_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
}

.dialog {
  max-width: 800px;
  max-height: 500px;
  margin: 0 15px;
  border-radius: 10px;
  background: #ffffff;
  padding: 20px;
  box-sizing: border-box;
}

.dialog_title {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 13px;
}
.dialog_title > p {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}
.close_icon {
  position: absolute;
  right: 0;
  top: -5px;
  cursor: pointer;
  width: 30px;
}

.dialog_line {
  width: 100%;
  margin: 0;
}

.dialog_info {
  width: 100%;
  margin: 20px 0 10px;
  overflow-y: scroll;
  max-height: 340px;
}
.dialog_info_box {
  display: flex;
  margin-bottom: 10px;
  font-size: 14px;
  color: #000000;
}
.dialog_info_box > p:nth-child(2) {
  flex: 1;
  word-break: break-word;
}

.dialog_btn {
  width: 140px;
  height: 50px;
  border-radius: 6px;
  background: #47d4e5;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 750px) {
  .recruit {
    font-size: 18px;
    margin-bottom: 0;
  }

  .job_item {
    padding: 10px;
    margin-bottom: 10px;
  }

  .jopb_item_head > p:nth-child(1) {
    font-size: 18px;
  }

  .jopb_item_head > p:nth-child(2),
  .job_item_info_left {
    font-size: 14px;
  }

  .job_item_btn {
    width: 100px;
    height: 40px;
    font-size: 16px;
  }
  .dialog {
    padding: 10px;
  }

  .dialog_title {
    margin-bottom: 0;
  }
  .dialog_title > p {
    font-size: 18px;
  }

  .close_icon {
    width: 22px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .dialog_line {
    margin: 15px 0;
  }

  .dialog_info {
    margin: 10px 0;
    max-height: 365px;
  }

  .dialog_btn {
    width: 100px;
    height: 40px;
    font-size: 16px;
  }
}
