@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

html,
body,
#app {
    width: 100%;
    height: 100%;
}

html {
    font-size: calc(100vw / 750 * 100);
}

body {
    font-size: .16rem;
}

:root {
    --primarycolor: #2999fb;
    --contentbgcolor: #eeeeee;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.justify-c {
    justify-content: center;
}

.justify-s {
    justify-content: start;
}

.justify-e {
    justify-content: end;
}

.justify-s-b {
    justify-content: space-between;
}

.justify-s-a {
    justify-content: space-around;
}

.justify-s-e {
    justify-content: space-evenly;
}

.align-i-s {
    align-items: flex-start;
}

.align-i-e {
    align-items: flex-end;
}

.align-i-c {
    align-items: center;
}

.align-i-b {
    align-items: baseline;
}

.align-i-s {
    align-items: stretch;
    /* 默认 */
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}
.flex-1 {
    flex: 1;
    overflow: auto;
}

.nav-bar {
    height: .88rem;
    background-color: var(--primarycolor);
    color: white;
    font-size: .44rem;
    position: relative;
    font-size: .32rem;
}

.left-back {
    position: absolute;
    left: .32rem;
    font-size: .32rem;
}

.nav-bar>.left-back>.iconfont {
    font-size: .44rem;
}