.article_list .article_block {
  display: flex;
  padding: 16px;
  padding-bottom: 0;
}
.article_list .article_block_pic {
  margin-left: auto;
  width: 115px;
  height: 86px;
  flex-shrink: 0;
  background-color: #eee;
  background-position: top;
  background-size: cover;
}
.article_list .article_block_info {
  margin-right: 10px;
}
.article_list .article_block_title {
  max-height: 44px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.article_list .article_block_desc {
  font-size: 12px;
  font-weight: normal;
  color: #999999;
}
.article_list .bottom_loading {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article_list .bottom_loading:after {
  display: flex;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/bt_loading.png);
  background-size: 25px 25px;
  background-repeat: no-repeat;
  animation: bottom_loading_anime linear 1s infinite;
}
@keyframes bottom_loading_anime {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container {
  height: 49vw;
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
}
.swiper-container .swiper-slide {
  width: 88vw;
  height: 49vw;
  background-size: cover;
  background-position: top;
}
.swiper-container .swiper-slide:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.swiper-container .swiper-slide a {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-container h3 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 6px 12px;
  margin: 0;
}
