@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

html,body{
    width: 100%;
    height: 100%;
}



html{
    --primaryColor:#2999FB;
    --contentBgColor:#EEEEEE;
    font-size: calc(100vw / 375 * 100);
}

body{
    font-size: 0.16rem;
}

#app{
    width: 100%;
    height: 100%;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.j-c{
    justify-content: center;
}

.a-c{
    align-items: center;
}

.j-s-b{
    justify-content: space-between;
}

.j-s-e{
    justify-content: space-evenly;
}

.j-s-a{
    justify-content: space-around;
}

.flex-1{
    flex: 1;
    overflow: auto;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex-nowrap{
    flex-wrap: nowrap;
}