.home .card {
  margin-bottom: 8px;
}
.home .article-time {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 12px;
}
.home .article-time > :first-child {
  margin-right: 4px;
}
.home .article-time img {
  width: 16px;
  height: 100%;
}
.home ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home ul li {
  padding: 8px;
  cursor: pointer;
  box-sizing: border-box;
}
.home ul li .read-more {
  display: none;
  color: #fff;
  text-align: center;
  background-color: #38b6ff;
}
.home ul li .read-more a {
  color: #fff;
  text-decoration: none;
}
.home ul li:hover {
  border-left: 2px solid #38b6ff;
}
.home ul li:hover .read-more {
  display: block;
}
