body {
    margin: 0;
    padding: 0;
    font-family: '微软雅黑';
    font-size: 25rem;
}
  
p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}
  
img {
    width:100%;max-width: 100%;
}

.clearfix:after{
    content: '';
    display: block;
    clear: both;
    width: 0;height: 0;
}
.cl{clear: both;}
.fl{float: left;}
.fr{float: right;}
.flex{display: flex;}
/* 单行限制 */
.limit1{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
/* 多行限制 默认两行 */
.limitN{
    --limit:2;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: var(--limit);
    line-clamp: var(--limit);
    -webkit-box-orient: vertical;
}



.w{width: 91.2%;margin:auto;}



body{background: #fff;}





























