

.flex-box {
    display: flex;
}

.flex-inline-box {
    display: inline-flex;
}



/* custom recipe - 自定义的弹性组合配方 */

.flex-custom-flowCenter {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
}

.flex-custom-spaceBetween {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}


.flex-custom-flowCenter .flex-item {
    flex-grow: 1;
}




