@charset "UTF-8";
*{
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color:transparent;
}

a {
    text-decoration: none;
}

i {
    font-style: normal;
}

img {
    vertical-align: top;
    border: 0px;
}

ol,
ul {
    list-style: none;
}

em,
i,
b {
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  font-size: 14px;
}

input,
textarea,
button {
  outline: none;
  font-family: Microsoft YaHei;
  border: 0px;
  padding: 0px;
  resiz: none;
}

textarea {
  overflow: auto;
}
/*单行移除省略号*/
.ellipsis{
  overflow:hidden;
  white-space:nowrap; 
  text-overflow:ellipsis;
}
.ellipsis-more{
  display:-webkit-box !importmort;
　overflow:hidden;
　text-overflow:ellipsis;
　word-break:break-all;
　-webkit-box-orient:vertical;
　-webkit-line-clamp:2;  /*(数字2表示隐藏两行)*/
}
.clear::after{
  display: block;
  clear:both;
  content: '';
}
.fl {
  float: left;
}
.fr{
  float: right;
}