.modal_form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.confirm_send_btn {
  
  padding: 8px 12px;
  background-color: rgba(193, 7, 20, 0.4);
  color: #FFF;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  cursor: not-allowed;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-left: 10px;
}
@media screen and (min-width: 1025px) {
  .sendModal_innder {
    width: 780px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    color: #000;
    display: grid;
    gap: 20px;
  }

  .modal_tip p {
    line-height: 1.7;
  }

  .form_item {
    
    
  }

  .form_item:nth-child(1) {
    width: 165px;
  }

  .form_item:nth-child(2) {
    width: 304px;
  }

  .form_item input:focus {
    border-color: #C01E13;
  }


  .captcha_image img {
    width: 76%;
  }

  #smsCodeInput {
    width: 143px;
  }

  .confirm_send_btn.active:hover {
    background-color: #a81910;
  }
}
.modal_title {
  
  border-radius: 12px;
  font-size: 15px;
  padding: 12px;
  background: linear-gradient(90deg, rgba(0, 223, 108, 0.10) 0%, rgba(253, 194, 0, 0.10) 100%);
}
.modal_title p {
  color: #999;
  font-size: 12px;
  margin-top: 10px;
}
.sendModal h2 img {
  width: 24px;
  vertical-align: middle;
  margin-right: 5px;
  cursor: pointer;
}
.modal_ft {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
.send_code_btn {
  position: absolute;
  right: 0;
  margin-left: 10px;
  padding: 10px 10px;
  background-color: rgba(0, 0, 0, 0);
  color: #C01E13;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sendModal h2 {
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
.form_item input {
  width: 100%;
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
.modal_ft span {
  color: #C01E13;
}
.modal_title h2 {
  font-weight: normal;
}
@media screen and (max-width: 1024px) {

  
  .sendModal_innder {
    width: 90%;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    color: #000;
    display: grid;
    gap: 20px;
    margin: 10% auto 0;
  }

  .form_item {
    width: 100%;
  }

  .captcha_image img {
    width: 76%;
  }

  #smsCodeInput {
    min-width: 3.4rem;
  }

  .confirm_send_btn {
    flex: auto;
  }
}
.error {
  position: fixed;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  background: rgba(0, 0, 0, 0.60);
  border-radius: 8px;
  padding: 14px 12px;
  font-size: 14px;
  z-index: 99999;
  display: none;
  white-space: nowrap;
}
.confirm_send_btn.active {
  background-color: #C01E13;
  color: #fff;
  cursor: pointer;
}
.captcha_image {
  position: absolute;
  top: 6px;
  right: 63px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sendModal {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.form_item {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.modal_tip {
  font-size: 12px;
  color: #999;
}