/* 验证码统一样式，行内样式覆盖 */
.form_divs .form-item-code {
  display: flex;
}
.form_divs .form-item-code input[name="code"] {
  flex: 1;
  border-right-width: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  -webkit-appearance: none;
  border: 1px solid #dddddd;

  -moz-appearance: textfield;
}
.form_divs .form-item-code input[name="code"]::-webkit-inner-spin-button,
.form_divs .form-item-code input[name="code"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.form_divs .form-item-code .send-code {
  width: 110px;
  height: 100%;
  height:32px;
  text-align: center;
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  cursor: pointer;
  color: #fff;
  background-color: #c91919;
  outline: none;
  border: none;
  padding: 0;
  
}
.form_divs .form-item-code .send-code.disabled {
  color: #5e5e5e;
  cursor: not-allowed;
  background-color: #eeeeee;
}
