html,body{
    background-color: #333333;
}
a{
    cursor: pointer;
}
#app{
    background-color: #489af0;
    width: 460px;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
}
.tab-btn{
    padding: 0rem 0rem 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: none !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-item{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    outline: none !important;
    padding: 1rem 0;
    text-align: center;
    color: #333333;
    background-color: transparent;
}
.nav-group{
    position: fixed;
    bottom: 0;
    width: 460px;
    left: calc(50% - 230px);
    font-size: 1.3rem;
    z-index: 2;
}
@media screen and (max-width: 750px){
    #app{
        width: 100%;
    }
    .nav-group{
        width: 100%;
        left: 0;
    }
}
a.d-block{
    margin: -1px 0;
}
.noSelect{
    pointer-events: none !important;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
