*{
    margin: 0;
    padding: 0;
}
body {
    font-family: '微软雅黑';
}
/*清除浮动*/
.clearfix:after{
    /*生成内容作为最后一个元素*/
    content: "";
    /*使生成的元素以块级元素显示，占满剩余空间*/
    display: block;
    /*避免生成内容破坏原有布局的高度*/
    height: 0;
    /*使生成的内容不可见,并允许可能被生成内容盖住的内容可以进行点击和交互*/
    visibility: hidden;
    /*重点是这一句*/
    clear: both;
}
.clearfix {
    /*用于兼容IE,触发IE hasLayout*/
    *zoom: 1;
}

a {
    color: #222;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}
/*单行超出截取*/
.cutSingleLine {
    /*文本溢出显示省略号*/
    /*规定段落中的文本不进行换行*/
    white-space: nowrap;
    overflow: hidden;
    /*显示省略符号来代表被修剪的文本*/
    text-overflow: ellipsis;
}
/*2行超出截取*/
.cutSecondLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 40px;
    max-width: 630px;
}

.cutSecondLine:after{
    content: "...";
    position: absolute;
    bottom: 0;
    right: 0;
    padding-left: 40px;
    background: -webkit-linear-gradient(left, transparent, #fff 55%);
    background: -o-linear-gradient(right, transparent, #fff 55%);
    background: -moz-linear-gradient(right, transparent, #fff 55%);
    background: linear-gradient(to right, transparent, #fff 55%);
}
/*多行超出截取*/
.cutMoreLine {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /*调整-webkit-line-clamp的值就能实现在第n行*/
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.loadmore-bar {
    display: block;
    text-align: center;
    line-height: 32px;
    border: 1px solid #0e7bdc;
    color: #0676db;
    font-size: 14px;
}

table {
    border-collapse: collapse;
}

::-ms-clear,::-ms-reveal{display:none;}