button,
input :focus {
  outline: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  border: none;
}

input,
button {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

textarea {
  resize: none;
  overflow: auto;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

.formBox * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* outline: none; */
}

.formBox {
  padding-top: 20px;
  padding-bottom: 40px;
}

.formBox hr {
  margin: 0 auto 24px;
}

.formBox h2 {
  font-size: 28px;
  color: #323232;
  line-height: 1.5em;
  font-family: "Verdana";
  text-align: center;
  margin-bottom: 25px;
}

.formBox p {
  font-size: 20px;
  color: #666666;
  line-height: 1.5em;
  font-family: "Verdana";
  text-align: center;
  margin-bottom: 30px;
}

.formBox form {
  /* margin-top: 16px; */
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #999;
}

.formBox form input::-webkit-input-placeholder,
.formBox form textarea::-webkit-input-placeholder {
  color: #999;
}

.formBox form input:-moz-placeholder,
.formBox form textarea:-moz-placeholder {
  color: #999;
}

.formBox form input::-moz-placeholder,
.formBox form textarea::-moz-placeholder {
  color: #999;
}

.formBox form input:-ms-input-placeholder,
.formBox form textarea:-ms-input-placeholder {
  color: #999;
}

.formBox form .form-item {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 20px;
  position: relative;
}

.formBox form .form-item:nth-of-type(1) {
  margin-top: 0;
}

.formBox form .form-item .required {
  position: absolute;
  font-size: 16px;
  color: #a50000;
  top: 16px;
  left: 10px;
  display: block;
}

.formBox form input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  height: 50px;
  width: 100%;
  border: solid 1px #dbdbdb;
  line-height: 50px;
  padding-left: 16px;
}

.formBox form .imBox {
  display: flex;
  align-items: stretch;
}

.formBox form .imBox .imtypeBox {
  width: 30%;
  margin-right: 2%;
}

.formBox form .imBox .imtypeBox span {
  background-color: #fff;
  width: 100%;
  text-align: center;
  display: block;
  color: #999;
  position: relative;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  border: solid 1px #dbdbdb;
}

.formBox form .imBox .imtypeBox span::before {
  content: "*";
  display: block;
  font-size: 16px;
  color: #a50000;
  position: absolute;
  left: 10px;
  top: 2px;
}

.formBox form .imBox .imtypeBox span::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid #999;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  display: block;
  position: absolute;
  right: 10px;
  top: 20px;
}

.formBox form .imBox .imtypeBox select {
  display: block;
  width: 30%;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 99;
  cursor: pointer;
}

.formBox form .imBox .imtypeBox select option {
  color: #999;
}

.formBox form .imBox .imvalueBox {
  width: 68%;
}

.formBox form .imBox .imvalueBox .imvalueBox-1 {
  font-size: 0;
}

.formBox form .imBox .imvalueBox .imvalueBox-1 input {
  display: inline-block;
  font-size: 16px;
  color: #999;
  padding-left: 10px;
}

.formBox form .imBox .imvalueBox .imvalueBox-1 .cc {
  width: 40%;
  margin-right: 2%;
}

.formBox form .imBox .imvalueBox .imvalueBox-1 .pn {
  width: 58%;
}

.formBox form .imBox .imvalueBox .imvalueBox-2 {
  display: none;
  width: 100%;
}

.formBox form .application-box h4 {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  margin-top: 0;
  color: #999;
}

.formBox form .application-box h4::before {
  content: "*";
  color: #a50000;
  position: absolute;
  left: 10px;
  top: 2px;
  display: block;
}

.formBox form .application-box label {
  display: inline-block;
  padding: 0 8px;
  color: #999;
  margin-bottom: 0;
  font-weight: 400;
}

.formBox form .application-box label i {
  color: #f00c0c;
}

.formBox form .application-box label input {
  width: 12px;
  height: 12px;
  border: 1px solid #999;
  outline: none;
  border-radius: 50%;
  padding: 0;
  display: inline-block;
  margin-right: 6px;
}

.formBox form .application-box label input:checked {
  position: relative;
  border: 1px solid #333;
}

.formBox form .application-box label input:checked::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #333;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
}

.formBox form .app-box {
  display: none;
  margin-top: 12px;
}

.formBox form .app-box input::-webkit-input-placeholder {
  color: #f00c0c;
}

.formBox form .app-box input:-moz-placeholder {
  color: #f00c0c;
}

.formBox form .app-box input::-moz-placeholder {
  color: #f00c0c;
}

.formBox form .app-box input:-ms-input-placeholder {
  color: #f00c0c;
}

.formBox form .textBox {
  width: 100%;
  height: 160px;
}

.formBox form .textBox textarea {
  display: block;
  width: 100%;
  height: inherit;
  border: solid 1px #dbdbdb;
  padding: 12px 16px;
  color: #999;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 24px;
  font-family: inherit;
}

.formBox form .btn-submit {
  height: 68px;
  background-color: #ff9900;
  display: block;
  color: #fff;
  line-height: 68px;
  width: 100%;
  font-size: 16px;
  margin-top: 40px;
  outline: none;
  cursor: pointer;
}

@media (min-width: 375px) and (max-width: 767.98px) {
  .formBox form .imBox {
    display: flex;
    align-items: stretch;
  }
  .formBox form .imBox .imtypeBox {
    width: 30%;
    margin-right: 2%;
  }
  .formBox form .imBox .imtypeBox span {
    width: 100%;
    text-align: center;
    display: block;
    color: #999;
    position: relative;
    height: 50px;
    font-size: 14px;
    line-height: 50px;
    border: solid 1px #dbdbdb;
  }
  .formBox form .imBox .imtypeBox span::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid #999;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
    display: block;
    position: absolute;
    right: 2px;
    top: 24px;
  }
  .formBox form .imBox .imvalueBox {
    width: 68%;
  }
  .formBox form .imBox .imvalueBox .imvalueBox-1 {
    font-size: 0;
  }
  .formBox form .imBox .imvalueBox .imvalueBox-1 input {
    display: inline-block;
    font-size: 14px;
    color: #999;
    padding-left: 6px;
  }
  .formBox form .imBox .imvalueBox .imvalueBox-1 .cc {
    width: 46%;
    margin-right: 2%;
  }
  .formBox form .imBox .imvalueBox .imvalueBox-1 .pn {
    width: 52%;
  }
  .formBox form .imBox .imvalueBox .imvalueBox-2 {
    display: none;
    width: 100%;
  }
}
