.flex {
  display: flex;
  align-items: center;
}
.article-wrapper {
  padding: 0.773rem 0 0.867rem;
  background: rgba(41, 40, 37, 0.99);
}
.tag-list {
  margin-bottom: 0.187rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.tag-list .tag {
  width: 23%;
  margin: 0 1%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 0.28rem;
  padding: 0.107rem 0.267rem;
  border-radius: 0.333rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 0.32rem;
  letter-spacing: 0px;
  color: #ffffff;
}
.tag-list .tag.active {
  border-color: #fcc000;
  color: #fcc000;
}
.tag-description {
  margin-bottom: 0.4rem;
  padding: 0.373rem;
  background: #000;
  font-size: 0.32rem;
  color: #ffffff;
  line-height: 1.6;
}
.article-list {
  position: relative;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center 0;
}
.article-list .item {
  margin: 0 0.16rem 0.533rem 0.16rem;
  position: relative;
  height: 4.5rem;
  overflow: hidden;
  transition: all 0.5s;
}
.article-list .item:hover .details-wrapper {
  background: #000;
}
.article-list .item:hover .details {
  transform: translate3d(0, 0, 0);
}
.article-list .item:hover > .title {
  transform: translate3d(0, 100%, 0);
}
.article-list .item > .title {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.32rem 0.293rem 0.32rem;
  font-size: 0.4rem;
  font-weight: bold;
  font-stretch: normal;
  color: #ffffff;
  background-image: linear-gradient(to bottom, transparent, #000);
  transition: all 0.5s;
}
.article-list .item .details-wrapper {
  width: 100%;
  height: 100%;
  background: transparent;
  transition: background 0.5s;
}
.article-list .item .details {
  width: 100%;
  height: 100%;
  padding: 0.2rem;
  transform: translate3d(0, -100%, 0);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: all 0.5s;
}
.article-list .item .details .title {
  margin-bottom: 0.2rem;
  font-size: 0.4rem;
  font-weight: bold;
  color: #ffffff;
}
.article-list .item .details .line {
  margin-bottom: 0.2rem;

  background-color: #ffb900;
}
.article-list .item .details .desc {

  line-height: 1.6;
  font-size: 0.32rem;
  color: #ffffff;
}
.load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.413rem auto 0;
  width: 5.2rem;
  height: 0.987rem;
  border-radius: 0.107rem;
  border: solid 2px #fcc000;
  font-size: 0.4rem;
  font-weight: bold;
  color: #fcc000;
}
