.join_us {
  padding: 60px 100px;
}

.join_us .wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}

.join_us .wrapper .item {
  padding: 30px 100px;
  background-color: var(--background_color_1);
}

.join_us .wrapper .item_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.join_us .wrapper .item .left_box {
  max-width: 740px;
}

.join_us .wrapper .item .left_box .job_name {
  font-family: SourceHanSansSC-Medium;
  font-size: 24px;
  color: #232531;
  letter-spacing: 0;
  font-weight: 500;
  margin-bottom: 20px;
}

.join_us .wrapper .item .left_box .job_info span {
  font-family: SourceHanSansSC-Regular;
  font-size: 16px;
  color: #232531;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 3px;
}

.join_us .wrapper .item .left_box .job_info .job_need {
  font-family: SourceHanSansSC-Regular;
  font-size: 14px;
  color: #575962;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.join_us .wrapper .item .left_box .job_salary {
  font-family: SourceHanSansSC-Regular;
  font-size: 16px;
  color: #232531;
  letter-spacing: 0;
  line-height: 24px;
  font-weight: 400;
}

.join_us .wrapper button {
  width: 94px;
  height: 34px;
  background: #2F83FF;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: SourceHanSansSC-Medium;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0;
  font-weight: 500;
}

.join_us .dialog {
  position: fixed;
  width: 700px;
  height: 320px;
  border: 4px solid rgb(86, 84, 121);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  display: flex;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding: 20px;
  display: none;
}

.join_us .dialog.show {
  display: flex;
}

.join_us .dialog .content {
  width: 80%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  height: 200px;
}

.join_us .dialog img {
  width: 300px;
  margin: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.join_us .dialog .close_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.join_us .dialog .close_btn:hover {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.join_us .dialog .content .p0 {
  margin-top: 20px;
}

.join_us .dialog .content .p1 {
  font-size: 20px;
}

.join_us .dialog .content .p2 {
  margin-top: 10px;
  font-size: 30px;
  font-weight: bold;
  text-decoration: underline;
  word-break: break-all;
  line-height: 90%;
}

.join_us .dialog .content .p3 {
  font-size: 12px;
  color: #666;
}

.join_us .dialog .content .copyright {
  margin-top: 4px;
}

.dialog-enter-active {
  transition: opacity .5s;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -ms-transition: opacity .5s;
  -o-transition: opacity .5s;
}

.dialog-enter {
  opacity: 0;
}

.dialog-leave-active {
  transition: opacity .5s;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -ms-transition: opacity .5s;
  -o-transition: opacity .5s;
}

.dialog-leave-to {
  opacity: 0;
}