.flex{
    display: flex;
}
.flex1{
    flex: 1;
}
.flex-row{
    flex-flow: row;
}
.flex-col{
    flex-flow: column;
}
.flex-just-cen{
    justify-content: center;
}
.flex-just-start{
    justify-content: start;
}
.flex-just-between{
    justify-content: space-between;
}
.flex-just-around{
    justify-content: space-around;
}
.flex-just-end{
    justify-content: end;
}
.flex-align-cen{
    align-items: center;
}
.flex-align-top{
    align-items: flex-start;
}
.flex-align-end{
    align-items: flex-end;
}
.mr10{
    margin-right: 10px;
}
.mt5{
    margin-top: 5px;
}
.mt10{
    margin-top: 10px;
}
.mb5{
    margin-bottom: 5px;
}
.mb10{
    margin-bottom: 10px;
}
.mt20{
    margin-top: 20px;
}
.mr5{
    margin-right:5px;
}
.mr20{
    margin-right: 20px;
}
.ml20{
    margin-left: 20px;
}

.text{
    font-size:12px;
}
.text14{
    font-size:16px;
}
.w100{
    width:100%;
}
.h100{
    height: 100%;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-cen{
    text-align: center;
}
html,body{
    height: 100%;
    overflow: hidden;
}
#app{
    height: 100%;
}
.scrollBox{
    flex: 1;
    overflow: hidden;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.block{
    display: block;
}
.ellipsis{
    overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.mW50{
    max-width: 50%;
}
.flabel{
    color: #999;
    font-size: 12px;
}
.swiper{
    max-height:250px
}
.swiper img{
    width:100%;
    height: 100%;
}
.mt60{
    margin-top: 60px;
}
.w50{
    width: 50%;
}
.mt40{
    margin-top: 40px;
}
.footer{
    height: 40px;
    line-height: 40px;
}
.cfff{
    color: #ffffff;
}
.p5{
    padding:5px;
}
.p10{
    padding:10px;
}