.app-main {
  width: 100%;
  height: 100%;
}

.main {
  width: 100%;
  height: 100%;
  position: relative;
  background: url(../../imgs/background.jpg) no-repeat top center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register {
  width: 880px;
  margin: 0 auto;
  background: #fff;
}

.register .register-in {
  padding: 20px 40px;
}

.register-in .hd {
  margin-bottom: 30px;
}

.hd .logo {
  width: 670px;
  height: 56px;
  display: flex;
  line-height: unset;
  padding-left: 130px;
  margin-bottom: 26px;
  justify-content: center;
}

.hd .desc {
  color: #6b6b6b;
  margin-top: 30px;
}

.hd .desc em {
  color: #c53023;
  cursor: pointer;
}

.hd .login-a {
  color: #c53023;
}

.register .bd {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bd .item {
  width: 45%;
  position: relative;
  margin-bottom: 25px;
  box-sizing: border-box;
}

.bd .item.verify {
  visibility: hidden;
  margin-bottom: 0;
  margin-top: -15px;
}

.bd .item input {
  line-height: 56px;
  background: none;
  outline: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  font-size: 14px;
  border: 0 none;
  border-bottom: 1px solid #d5d5d5;
}

.bd .item i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #985F0D;
  font-size: 2.2em;
}

.bd .item input:-moz-placeholder {
  color: #B3B3B3;
}

.bd .item input:-ms-input-placeholder {
  color: #B3B3B3;
}

.bd .item input::-webkit-input-placeholder {
  color: #B3B3B3;
}

.bd .item input:focus {
  border-color: #c22d22;
}

.bd .item input:focus + i.user-icon {
  background-position: 0 -30px;
}

.bd .item input:focus + i.pass-icon {
  background-position: 0 -30px;
}

.bd .item input:focus + i.email-icon {
  background-position: 0 -24px;
}

.bd .item input:focus + i.password-icon {
  background-position: 0 -14px;
}

.bd .item .select-wrap {
  line-height: 56px;
  background: none;
  outline: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  font-size: 14px;
  border: 0 none;
  border-bottom: 1px solid #d5d5d5;
}

.bd .item select {
  height: 56px;
  color: #B3B3B3;
  background: none;
  outline: none;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-left: -5px;
  font-size: 14px;
  border: 0 none;
}

.bd .tips {
  top: 60px;
  left: 40px;
  position: absolute;
  color: #b8906f;
}

.bd .btn-verify {
  position: absolute;
  bottom: 14px;
  right: 0;
  width: 84px;
  height: 34px;
  line-height: 34px;
  background: #b8906f;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  padding: auto auto;
  cursor: pointer;
  font-size: 14px;
}

.register .bt {
  position: relative;
  padding-bottom: 36px;
}

.bt .btn-register {
  margin: 10px auto;
  width: 75%;
  max-width: 400px;
  height: 40px;
  background: #b8906f;
  border-radius: 4px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.bt .btn-register a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: white;
}

.bt .reg-agreement {
  width: 100%;
  text-align: center;
  margin: 10px 0 10px;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bt .reg-agreement .protocol {
  color: #761C19;
  cursor: pointer;
}

.bt .ajax-error {
  visibility: hidden;
  position: absolute;
  padding: 0;
  width: 100%;
  text-align: center;
  height: 32px;
  line-height: 32px;
}

#registerModal {
  line-height: 24px;
  font-weight: 400;
  color: #333;
}

#registerModal .intro {
  margin-bottom: 6px;
}

#registerModal .tt1 {
  display: inline-block;
}

#registerModal .tt2 {
  margin-left: 18px;
  display: inline-block;
}

#registerModal .tt3 {
  margin-left: 32px;
  display: inline-block;
}


@media (max-width: 900px) {
  body {
    background: unset;
  }

  .main {
    background: unset;
  }

  .hd {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .hd .logo {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .register {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: scroll;
  }

  .register-in {
    margin: 20px 15px;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 2px 2px 8px grey;
  }

  .bd .item {
    width: 100%;
  }

  .register .bt {
    padding-bottom: 5px !important;
  }
}