* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body,
#app {
    color: #333;
    font-size: 0.14rem;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    vertical-align: middle;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
}

div[disabled],
button[disabled] {
    background: #ddd !important;
    color: #fff !important;
    border-color: #ddd !important;
    cursor: no-drop;
}


/*通用*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.hidden {
    overflow: hidden;
}

.posi-r {
    position: relative;
}

.posi-a {
    position: absolute;
}

.clear:after {
    display: block;
    content: '';
    clear: both;
}

.t-hide1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t-hide2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.t-hide3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.txt-r {
    text-align: right;
}

.txt-l {
    text-align: left;
}

.txt-c {
    text-align: center;
}

.vertical {
    vertical-align: middle;
}

.animation {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.text-pre {
    white-space: pre-wrap;
}


/*flex*/

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flex-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-align {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.shrink {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
}

.flex1 {
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
    -webkit-flex-direction: column
}

.flex-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}