.wrapper {
  overflow: hidden;
}

.banner-container {
  display: flex;
  padding-top: 195px;
  min-width: 1200px;
  background: url("../img/apply-banner.png");
  background-size: 100% 100%;
}
.banner-container p,
.banner-container span {
  color: #fff;
}
.banner-container .title {
  margin-bottom: 30px;
  text-align: center;
  font-size: 48px;
}
.banner-container .desc {
  margin-bottom: 200px;
  text-align: center;
  font-size: 24px;
}
.banner-container a {
  color: #0B7BE0;
}

.apply-form {
  margin: 50px 0;
  min-width: 1200px;
}
.apply-form h4, .apply-form h5, .apply-form p, .apply-form span {
  color: #3d3d3d;
}
.apply-form .wrapper {
  padding: 60px;
  border-radius: 15px;
  background-color: #F9F9F9;
}
.apply-form .desc {
  margin-bottom: 20px;
}
.apply-form .desc h5 {
  font-size: 20px;
  margin-bottom: 10px;
}
.apply-form .desc p {
  font-size: 16px;
}
.apply-form .form-title {
  margin-top: 30px;
}
.apply-form .form-title h4 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}
.apply-form .form-title p {
  margin-bottom: 38px;
  text-align: center;
  font-size: 16px;
}
.apply-form .form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apply-form .form li {
  display: flex;
  margin-bottom: 50px;
  line-height: 40px;
  height: 40px;
}
.apply-form .form .label {
  display: block;
  margin-right: 20px;
  width: 112px;
  text-align: right;
  font-size: 16px;
}
.apply-form .form input {
  padding-left: 20px;
  width: 700px;
  border: 1px solid rgba(61, 61, 61, 0.5);
  outline-color: rgb(207, 166, 94);
  font-size: 16px;
  border-radius: 10px;
  box-sizing: border-box;
}
.apply-form .form .radio {
  display: flex;
  align-items: center;
  width: 700px;
}
.apply-form .form .radio span {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 5px;
  cursor: pointer;
}
.apply-form .form .radio span:before {
  content: "";
  margin-right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid rgba(61, 61, 61, 0.7);
}
.apply-form .form .radio span:after {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #0B7BE0;
}
.apply-form .form .radio span:last-child {
  margin-left: 30px;
}
.apply-form .form .radio span.active:after {
  width: 12px;
  height: 12px;
}
.apply-form .btn {
  margin: 30px auto 0;
  width: 350px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #0B7BE0;
  font-size: 22px;
  border-radius: 17px;
  background-color: #fff;
  border: 1px solid #0B7BE0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}