@charset "UTF-8";
html,
body,
.main {
  width: 100%;
  height: 100%;
}

.main {
  position: relative;
}

/*背景*/
.bg-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  zoom: 1;
  background-image: url("../images/unit_register01.png");
  background-size: cover;
  background-position: center top;
  background-color: #fff;
  background-repeat: no-repeat;
}

.register-box {
  width: 400px;
  height: 700px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 16px 2px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 16px 2px rgba(0, 0, 0, 0.5);
  padding: 20px 0;
  border-radius: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  margin: auto;
  /* -webkit-transform: translateY(-50%); */
  /* transform: translateY(-50%); */
  background-color: #16b7ff;
}

.register-inner {
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  margin: 0 auto;
  color: #fff;
}
.register-inner .register-title {
  font-family: "楷体";
  margin-bottom: 30px;
}
.register-inner .el-form-item {
  margin-bottom: 16px;
}
.register-inner .el-form-item label {
  color: #fff;
}
.register-inner .el-form-item.valid-box .el-input {
  width: -webkit-calc(100% - 110px);
  width: calc(100% - 110px);
}
.register-inner .el-form-item.valid-box .random-box {
  float: right;
  height: 30px;
  line-height: 30px;
  margin-top: 5px;
}
.register-inner .submit-btn {
  display: block;
  width: -webkit-calc(100% - 40px);
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 50px;
  background: #f9a31c;
  color: #fff;
}
