.form-dialog {
  max-width: 975px;
}
.form-dialog button{
  outline: none;
}
.form-dialog .el-dialog__header{
  display: flex;
  align-items: center;
  height: 160px;
  background: linear-gradient(90deg, rgba(50, 131, 191, 0.98) 0%, rgba(1, 34, 65, 0.7) 100%), url('/img/form/banner.png') no-repeat center center / cover;
}
.form-dialog .el-dialog__headerbtn{
  font-size: 20px;
}
.form-dialog .el-dialog__title {
  padding-left: 70px;
  margin: 0;
  font-size: 26px;
  color: #fff;
}
.form-dialog .el-dialog__footer {
  padding: 0 20px 40px;
}

.input_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-bottom: 24px;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.input_box:hover {
  border-color: rgba(50, 131, 191, 0.5);
}
.input_box:focus-within {
  border-color: #3283BF;
  box-shadow: 0 0 5px rgba(50, 131, 191, 0.5);
}
.input_box.is-error {
  border-color: red;
  box-shadow: 0 0 5px rgba(255,0,0, 0.5);
}

.input_box .phone_areacode_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
}

.input_box .phone_areacode_box select {
  width: 100px;
  height: inherit;
  padding-left: 10px;
  font-size: 14px;
  color: #333;
  outline: 0;
  border: 1px solid #D2D2D2;
  border-right: 0;
  border-radius: 0;
  background-color: #fff;
  box-sizing: border-box;
}

.is_mobile .input_box {
  flex-direction: column;
  height: auto;
}

.input_box .label {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  width: 193px;
  height: inherit;
  padding: 0 15px;
  color: #333333;
  font-size: 18px;
  border-right: 1px solid #D2D2D2;
  background-color: #fafafa;
  box-sizing: border-box;
}

.is_mobile .input_box .label {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid #D2D2D2;
}

.input_box input {
  flex: 1;
  height: inherit;
  padding: 0 20px;
  color: #333333;
  font-size: 18px;
  border: 0;
  outline: unset;
  box-sizing: border-box;
}

.is_mobile .input_box input {
  flex-basis: auto;
  width: 100%;
  height: 50px;
}

.input_box .verification_code_input_box {
  display: flex;
  align-items: center;
  width: 100%;
  height: inherit;
}

.input_box input[name="verification_code"] {
  border-radius: 0;
}

.is_mobile .input_box input[name="verification_code"] {
  border-radius: 0 0 0 5px;
}

.input_box .verification_code {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: inherit;
  border: 1px solid #D2D2D2;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  box-sizing: border-box;
  cursor: pointer;
}

.is_mobile .input_box .verification_code {
  height: 50px;
  border-radius: 0 0 5px 0;
}

.input_box .verification_code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.input_box .verification_code p {
  position: absolute;
  z-index: 1;
  font-size: 14px;
  margin: 0;
}

.form-error-tips {
  width: 100%;
  color: red;
  font-size: 14px;
  text-align: center;
}
.btn_box {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn_box button {
  width: 128px;
  height: 48px;
  font-size: 18px;
  color: #fff;
  text-align: center;
  border: 1px solid #3283BF;
  box-sizing: border-box;
  border-radius: 5px;
  background-color: #3283BF;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn_box button:disabled {
  cursor: not-allowed;
}
.btn_box button:not(:disabled):hover  {
  color: #3283BF;
  background-color: #fff;
  border-color: #3283BF;
}
