.user-register-container {
  background-image: url('../assets/img/login/login_bg.png');
  background-repeat: no-repeat;
  height: 100vh;
  background-size: 100vw auto;
  position: relative;
  .user-register-container--content {
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    .user-register-container--logo {
      width: 100vw;
      height: 144px;
      text-align: center;
      > img {
        height: 144px;
      }
    }
    .van-form {
      width: 85vw;
      padding-top: 110px;
      margin: 0 auto;
    }
    .van-cell {
      width: 268px;
      border-radius: 8px;
      margin: 0 auto 14px;
    }
    .van-button.register-button {
      width: 268px;
      background: #fcecc8;
      color: #a57825;
      font-size: 18px;
      border-radius: 8px;
      border: 1px solid #fcecc8;
      margin: 0 auto;
      height: 48px;
    }
  }
}