@charset "utf-8";
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 20px;
}
body {
    line-height: 1.5;
    font-family: "PingFang SC", "Helvetica Neue", Helvetica, "Microsoft YaHei", Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;

}
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
dl,
dt,
dd,
ul,
ol,
li,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
}
body,
button,
input,
select,
textarea {
    font: Lucida Grande, 'Microsoft YaHei', "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
    /* -webkit-appearance: none; */
}
ul,
ol,
li {
    list-style: none;
}
a,
div,
button,
input,
span,
i,
img {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
label,
input,
select {
    vertical-align: middle;
    outline: none;
    border: 0;
}
img {
    border: none;
}
i,
em {
    font-style: normal;
    font-weight: normal;
}
.clearfix:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0;
}

.clearfix {
    zoom: 1;
}
/* 单行打点 */
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/* 两行打点 */
.ellipsis2 {
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
/* 三行打点 */
.ellipsis3 {
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}