.fl {
  float: left;
}

.fr {
  float: right;
}

/*清除浮动*/

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

/* 鼠标移入后图片放大，移除后图片缩小 */

.scale {
  overflow: hidden;
}

.scale img {
  transition: 1s;
}

.scale:hover img {
  transform: scale(1.2);
  cursor: pointer;
}

/* 文本隐藏 */

.bth-otc {
  white-space: nowrap;
  overflow: hidden;
}

.mlbh-mtc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 列表前小圆点 */

.marquage {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #ff7300;
}

.hot-tag-upper {
  padding: 4px 0;
  font-size: 12px;
  width: 150%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hot-tag-upper a {
  margin-right: 5px;
  color: #666;
}
.hot-tag-upper span {
  margin-right: 5px;
  color: #898989;
}