/* 弹性盒子 直接使用公共Class方便兼容性处理 */

.none {
    display: none;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.flex {
    display: -ms-flexbox;
    display: flex;
}

.inline-flex {
    display: -ms-inline-flexbox;
    display: inline-flex;
}

/* 排列方式 */

.d-column{
    flex-direction: column;
    -ms-flex-direction: column;
}

.d-row{
    -ms-flex-direction: row;
    flex-direction: row;
}

.row-reverse{
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.column-reverse{
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.d-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.d-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.d-wrap-reverse{
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.d-fill {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.d-grow-0 {
    -ms-flex-positive: 0;
    flex-grow: 0;
}

.d-grow-1 {
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.d-shrink-0 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.d-shrink-1 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.j-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.j-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.j-center {
    -ms-flex-pack: center;
    justify-content: center;
}

.j-between{
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.j-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.a-i-start {
    -ms-flex-align: start;
    align-items: flex-start;
}

.a-i-end {
    -ms-flex-align: end;
    align-items: flex-end;
}

.a-i-center {
    -ms-flex-align: center;
    align-items: center;
}

.a-i-baseline {
    -ms-flex-align: baseline;
    align-items: baseline;
}

.a-i-stretch {
    -ms-flex-align: stretch;
    align-items: stretch;
}

.a-c-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.a-c-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.a-c-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.a-c-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.a-c-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.a-c-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.a-s-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
}

.a-s-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.a-s-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.a-s-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.a-s-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.a-s-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}
