.verify-result-sign-container {
  background-color: #F5F5F5;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;

  .verify-result-sign-aside {
    //min-height: calc(100vh - 50px);

    .block {
      background-color: #FFFFFF;
      padding: 15px 0 12px 16px;
      margin-bottom: 10px;

      >.title {
        font-size: 14px;
        margin-bottom: 18px;
      }
    }

    .block-auth-success {
      background-color: #fff;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 10px;

      >img {
        width: 100px;
        margin: 96px 0 30px 0;
      }

      >p {
        font-size: 15px;
        font-weight: 400;
        color: #333;
        line-height: 21px;
        margin-bottom: 96px;
      }
    }
  }

  .verify-result-sign-footer {
    width: 100vw;
    //height: 50px;
    padding: 15px;
    //line-height: 50px;
  }

  .block-auth-failure {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;

    >img {
      width: 100px;
      margin: 96px 0 30px 0;
    }

    >p {
      font-size: 14px;
      font-weight: 400;
      color: #343434;
      line-height: 16px;
      margin-bottom: 65px;
    }
  }
}

