/* 文章列表页 */
.articleContent {
  padding-top: 30px;
}
.articleList {
  border-bottom: 1px dashed #cdcdcd;
  overflow: hidden;
  display: block;
  padding: 20px 0;
}
.articleList:hover {
  border-bottom: 1px dashed #1890ff;
}
.articleList:hover h3 {
  color: #1890ff;
}
.articleImg {
  display: block;
  float: left;
  width: 20%;
  height: 140px;
  margin-right: 30px;
  border: 1px solid #cdcdcd;
  box-sizing: border-box;
}
.articleImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articleInfo {
  float: right;
  width: 76%;
}
.articleInfoTop {
  overflow: hidden;
  padding-top: 10px;
}
.articleInfoTop h3 {
  width: 70%;
  float: left;
  font: 18px/40px "微软雅黑";
  color: #333;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.articleInfoTop span {
  float: right;
  font: 14px/40px "bahnschrift";
  color: #999;
}
.articleInfo p {
  font: 16px/32px "微软雅黑";
  color: #777;
  overflow: hidden;  
  text-overflow: ellipsis;  
  display: -webkit-box;  
  -webkit-line-clamp: 3;  
  -webkit-box-orient: vertical; 
  height: 72px;
}