.dialog {
  display: none;
  position: fixed;
  z-index: 444;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.dialog .dialogFrame {
  position: absolute;
  width: 470px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF;
}

.dialog .dialogFrame .dialogFrame_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #9c9a9b;
  padding: 0px 30px;
  height: 60px;
  box-sizing: border-box;
}
.dialog .dialogFrame .dialogFrame_title p {
  font-size: 24px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #333333;
  margin-bottom: 0px;
}
.dialog .dialogFrame .dialogFrame_title img {
  width: 15px;
  height: 15px;
}

.dialog .dialogFrame .dialog_content {
  box-sizing: border-box;
  padding: 10px 55px;
}

.dialog .dialogFrame .dialog_content form .form-group {
  width: 100%;
  margin-bottom: 30px;
  /*display: flex;
  justify-content: start;*/
}
.dialog .dialogFrame .dialog_content form .form-group:nth-child(2){
  height:42px;
}
.dialog .dialogFrame .dialog_content form .form-group:nth-child(2) input {
  width:236px;
  float: left;
}
.dialog .dialogFrame .dialog_content form .form-group input {
  border: 1px solid #E5E5E5;
  text-indent: 20px;
  width: 100%;
  height: 40px;
  -webkit-text-fill-color: #999999;
}
.dialog .dialogFrame .dialog_content form .form-group .input-group-img{
   float: left;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  line-height: 40px;
  width: 120px;
  height: 40px;
}
.dialog .dialogFrame .dialog_content form .form-group .input-group-img img{
  cursor: pointer;
  width:100%;
  height:100%
}
.dialog .dialogFrame .dialog_content form button {
  background-color: #30298E;
  border: none;
  color: #fff;
  width: 100%;
  height: 40px;
}

.Validform_checktip{
  width:100%;
  font-size:12px;
  
}
.Validform_checktip.Validform_wrong{
  color: red;
}
.Validform_checktip.Validform_right{
  color: green;
}

