/*清除元素默认的内外边距  */

* {
    margin: 0;
    padding: 0;
    color: #292929;
    box-sizing: border-box;
}

/*去掉列表前面的小点*/

li {
    list-style: none;
}

/*图片没有边框   去掉图片底侧的空白缝隙*/

img {
    border: 0;
    display: block;
    /*ie6*/
    vertical-align: middle;
}


/*让button 按钮 变成小手*/

button {
    cursor: pointer;
}


/*取消链接的下划线*/

a {
    color: #292929;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    color: #292929;
}

button,
input {
    font-family: 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    /*取消轮廓线 蓝色的*/
    outline: none;
}

body {
  background-color: #fff;
    /* font: 12px/1.5 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif; */
    /*color: #000*/
}

select,input,textarea,button{
  border:0;
  outline:none;
}
/*单行 超出隐藏 */
.oneLine{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}
/* 多行超出隐藏 */
.moreLine{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;/*行数*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
}








