/*
 $ 主文章列表 $
 */
 .article-list {
  position: relative;
  overflow: hidden;
  padding: 8px 32px;
}

.article-list__item {
  position: relative;
  overflow: hidden;
  padding: 16px 130px 16px 28px;
  font-size: 14px;
  border-top: 1px dashed #e6e6e6;
}
.article-list__item:first-child {
  border-top: none;
}
.article-list__item__icon {
  position: relative;
  overflow: hidden;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: -28px;
  background-repeat: no-repeat;
  background-size: contain;
}
.article-list__item__icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #DBDBDB;
}
.article-list__item::after {
  display: table;
  content: '';
  clear: both;
}
.article-list__item__title {
  float: left;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 18px;
  font-size: 16px;
}
.article-list__item__flag {
  vertical-align: top;
}
.article-list__item__time {
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  left: auto;
  margin: auto;
  height: 16px;
  line-height: 16px;
  color: #888;
}
