/* CSS Document */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  /*清除移动端默认的点击高亮效果*/
  -webkit-tap-highlight-color: transparent;
  /*设置以边框开始计算宽度*/
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html,
body {
  width: 100%;
  font-size: 14px;
  color: #666;
  line-height: normal;
  font-family: "微软雅黑", Helvetica Neue, Helvetica, Tahoma, Arial, sans-serif;
  position: relative;
}

ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-weight: normal;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0 none;
}

a {
  outline: none;
  text-decoration: none;
  color: #666;
  -o-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
}

em,
i {
  font-style: normal;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.clearfix {
  +zoom: 1;
  _zoom: 1;
  +overflow: hidden;
  _overflow: hidden;
}
.fl {
  float: left;
}

.fr {
  float: right;
}

.mb35 {
  margin-bottom: 0.35rem;
}
.tov2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tov3{
  /*display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;*/
  overflow: hidden;
  text-overflow: ellipsis;
}
.tov4{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tov5{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  html,
  body {
    font-size: 12px;
  }
}
