/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    font-family: '微软雅黑';
    font-style: initial;
    color: #666;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}
/* custom */
a {
    text-decoration: none;
    -webkit-backface-visibility: hidden;
}

li {
    list-style: none;
}

html, body {
    width: 100%;
}

body {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input, button, select, textarea{
    outline:none;
    color: #666;
    border: 1px solid #F5F5F5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    font-family: '微软雅黑';
    font-size: 14px;
    width: 200px;
    height: 40px;
    border-radius: 5px;
}
::placeholder{
    font-size: 14px;
    color: #999;
}
select{
    padding: 5px;
    background: url("../image/down.png") 99% center no-repeat;
}
.fl{
    float: left;
}
.fr{
    float: right;
}
.clear:after{
    display: block;
    content: '';
    clear: both;
}
.vertical-middle{
    display: inline-block;
    vertical-align: middle;
}
.vertical-top{
    display: inline-block;
    vertical-align: top;
}
.ellipsis{
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.multiline-omission{
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}