.modalWrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  z-index: 999;
  background-color: rgb(6, 25, 64, 0.7);
}
.modalBox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalBox .title {
  /* width: 80px; */
  font-size: 20px;
  font-family: "SourceHanSansCN-Normal, SourceHanSansCN";
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 23px;
}
.modal {
  padding: 1.2rem 1.5rem;
  /* min-width: 690px; */
  /* height: 570px; */
  position: relative;
  /* background-color: #061940; */
  background: linear-gradient(-135deg, transparent 50px, #051840 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.closeBtn {
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
}
.closeBtn img {
  width: 100%;
}
.formItem i {
  margin-right: 10px;
  color: #fff;
}
.formItem input,
textarea {
  width: 7.8rem;
  background: transparent;
  color: #fff;
  opacity: 0.7;
}

.formItem {
  margin-bottom: 0.3rem;
  /* width: 510px; */
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  /* height: 30px; */
  display: flex;
  align-items: center;
}
.confirm {
  position: relative;
  width: 78px;
  height: 36px;
}
.confirm span {
  cursor: pointer;
  display: block;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
}
.confirm img {
  width: 100%;
  height: 100%;
}
.confirmWrap {
  width: 100%;
  justify-content: flex-end;
  display: flex;
}

input::-webkit-input-placeholder {
  /* placeholder颜色  */
  color: rgba(255, 255, 255, 0.7) !important;
}
textarea::-webkit-input-placeholder {
  /* placeholder颜色  */
  color: rgba(255, 255, 255, 0.7) !important;
}

@media screen and (max-width: 480px) {
  .confirmWrap {
    justify-content: center;
  }
  .confirm {
    width: 2.6rem;
    height: 1rem;
  }
  .formItem input,
  textarea {
    width: 100%;
  }
  .modalBox {
    padding: 0 1rem;
  }
  .modal {
    padding: 1.2rem 0 0.5rem !important;
    width: 100%;
    background: linear-gradient(-135deg, transparent 1rem, #051840 0);
  }
  .closeBtn {
    width: .53rem;
    height: .53rem;
  }
  .modal .formItem {
    width: 6.8rem;
    padding: 0 10px;
  }
  .modal .input{
    height: 1.08rem;
  }
  .modal .input input{
    height: 100%;
  }
}
