/* 公共样式 */

.flex-row {
    display: flex;
    flex-direction: row;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-flex-direction: column;
}

.j-c {
    justify-content: center;
}

.j-e {
    justify-content: flex-end;
}

.j-s {
    justify-content: flex-start;
}

.a-e {
    align-items: flex-end;
}

.a-s {
    align-items: flex-start;
}

.j-s-a {
    justify-content: space-around;
    -ms-flex-inline-pack: distribute;
}

.j-s-b {
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.a-c {
    align-items: center;
}


/* 文字溢出省略 */

.text-nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.j-c-s {
    justify-content: space-evenly
}