/* 查询页整体尺寸 */
 .submit-wrapper{
   width: 500px;
   height:550px;
   padding: 20px;
   margin: 20px auto;
 }
 /*提交成功页整体尺寸 */
.success-wrapper{
  height:550px;
  width:500px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}
/* 验证图片整体外框 */
.el-input-group{
  border:1px solid #DCDFE6;
  border-radius: 3px;
  overflow: hidden;
}

/* 验证图片外框 */
.imgVerify .el-input-group__append {
  padding: 0;
  border: none;
  overflow: hidden;
}
/* 验证图片input框 */
.el-input-group .el-input__inner{
    outline: none;
    border: none;
  }
.el-input-group .el-input__inner:focus{
    border-color: #DCDFE6
}
.verifyImg{
 font-size: 0;
 opacity: 0.5 !important;
}
/* 验证图片 */
.image{
  height: 38px;
}
.image-validate-input.el-input{
  width: 300px;
}

/* 邮箱验证样式 */
.email-wrapper{
  margin-top: 10px;
  text-align: left;
}
.validate-input.el-input{
  width: 300px;
}
.get-email-button{
  border: none;
  outline: none;
}
.el-input-group__append{
  border: none;
}




/* 修改浏览器滚动条 */
::-webkit-scrollbar{
  width: 6px;
  max-height: 6px;
  background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb{
  background-color: rgba(0,0,0,.15);
}
::-webkit-scrollbar-track{
  background-color: #F5F5F5;
}


