/* 弹性盒子 */
.flex {
    display: flex;
}

.flexDc {
    flex-direction: column;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 2;
}

.flex4 {
    flex: 4;
}

.text-align-center {
    text-align: center;
}

.flex-wrap-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-wrap {
    flex-wrap: wrap;
}

.AI-flex-start {
    align-items: flex-start;
}

.AI-flex-end {
    align-items: flex-end;
}

.AI-center {
    align-items: center;
}

.AI-wrap {
    flex-wrap: wrap;
}

.JC-flex-start {
    justify-content: flex-start;
}

.JC-flex-end {
    justify-content: flex-end;
}

.JC-center {
    justify-content: center;
}

.JC-space-between {
    justify-content: space-between;
}

.JC-space-around {
    justify-content: space-around;
}

/*-------文字溢出-------*/
.overT {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overT1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.overT2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.overT3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.overT4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.overT5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}
.overT6 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}
.overT7 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}
.overT11 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 11;
    overflow: hidden;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}