.f-l {
    float: left;
}

.f-r {
    float: right;
}

.f-n {
    float: none;
}

.d-i {
    display: inline;
}

.d-ib {
    display: inline-block;
    vertical-align: top;
//对齐
}

.nd-ib {
    display: none;
}

.d-b {
    display: block;
}

.nd-b {
    display: none;
}

.d-f {
    display: flex;
}

.nd-f {
    display: none;
}

.ta-l {
    text-align: left;
}

.ta-c {
    text-align: center;
}

.ta-r {
    text-align: right;
}

.va-m {
    vertical-align: middle;
}

.va-b {
    vertical-align: bottom;
}

.va-t {
    vertical-align: top;
}

.p-r {
    position: relative;
}

.p-a {
    position: absolute;
}

.p-f {
    position: fixed;
}

.text-h {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clear:after {
    content: "";
    clear: both;
    width: 100%;
    display: block;
}

.b-r {
    border-radius: 3px;
}

.bold {
    font-weight: bold;
}

.m-l {
    margin-left: 15px;
}

.m-r {
    margin-right: 15px;
}

.m-2r {
    margin-right: 20px;
}

.m-2l {
    margin-left: 20px;
}

.m-t {
    margin-top: 10px;
}

.m-2t {
    margin-top: 20px;
}

.m-b {
    margin-bottom: 10px;
}

.m-2b {
    margin-bottom: 20px;
}

/*多出的文字强制变成...*/

.text-overflow {
    overflow: hidden;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

/*多出的文字强制变成... 结束*/

/*强制换行*/

.word-break {
    word-wrap: break-word;
    word-break: normal;
}

/*强制换行 结束*/

/*强制不换行*/

.word-no-break {
    white-space: nowrap;
}

/*强制不换行 结束*/

.underline:hover {
     text-decoration: underline;
}

.no_line {
    text-decoration: none;
}

.no_line:hover {
     text-decoration: none;
 }

.pointer {
    cursor: pointer;
}

.no_pointer {
    cursor: default;
}

.zoom-in{
    cursor:zoom-in;
}

[v-cloak]{
    display: none;
}

/* 重写input textarea 的 placeholder */

.van-field__control::-webkit-input-placeholder{
    color: #a0a0a0 !important;
}