html,
body,
#app {
    height: 100%;
    margin: 0;
    padding: 0;
}
.home {
    /* background: #161A33; */
    background: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.home-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #ff404e;
    color: #fff;
    padding: 0 40px;
    line-height: 70px;
}
.home__main {
    user-select: none;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.home__footer {
    width: 100%;
    flex-grow: 0;
    text-align: center;
    padding: 1em 0;
}
.home__footer>a {
    font-size: 12px;
    color: #ababab;
    text-decoration: none;
}
.home__loading {
    margin-bottom: 10px;
}
.home__title {
    color: #323947;
    font-size: 16px;
    margin-bottom: 10px;
}
.home__sub-title {
    color: #9196A1;
    font-size: 14px;
}