.f {
    display: flex;
}
.fc  /* 方向垂直朝下 */
{
     flex-direction:column;  
}
.jfs {
    justify-content: flex-start;
}

.jfe {
    justify-content: flex-end;
}

.ja {/* 平分 */
    justify-content: space-around;
}

.jb { /* 两边对齐 */
    justify-content: space-between;
}
.jc{ /* 左右居中 */
    justify-content: center;
}
.je {
    justify-content: space-evenly;
}

.ac { /* 上下居中 */
    align-items: center;
}

.ab { /* 第一行字对齐 */
    align-items: baseline;
}
.as{
    align-items: flex-start;
}
.ae {
    align-items: flex-end;
}

.tc {
    text-align: center;
}

.tl {
    text-align: left;
}
.tr{
    text-align: right;
}
.w {
    flex-wrap: wrap;
}

.p_r {
    position: relative;
}

.p_f {
    position: fixed;
}

.p_a {
    position: absolute;
}


.ellipsis {
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.hand{
    cursor: pointer;
}