.list {
  background-color: #f1f3f8;
  min-height: 500px;
  padding: 1rem 0 1rem 0;
  overflow: hidden;
}
.list .items .card {
  border: none;
}
.list .items .item {
  margin-bottom: 1rem;
}
.list .items .item:last-child {
  margin-bottom: 0;
}
.list .items .item .cover {
  padding: 8px 8px 0 8px;
}
.list .items .item .cover img {
  width: 100%;
  height: auto;
}
.list .items .item .title {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 0;
  font-weight: 600;
}
.list .items .item .description {
  font-size: .875rem;
  color: #999;
  margin-bottom: 0;
  margin-top: .875rem;
  line-height: 160%;
}

.pagination {
  margin: 1rem 0;
  justify-content: center;
}

.article_show {
  min-height: 580px;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  background-color: #f1f3f8;
}
.article_show .top {
  background-color: #fff;
  padding: 28px;
  border-radius: 8px;
  overflow: hidden;
}
.article_show .top .title {
  font-size: 1.25rem;
  font-weight: 600;
}
.article_show .top .type {
  font-size: .875rem;
  color: #666;
  float: left;
  margin-left: -1rem;
}
.article_show .top .type li {
  float: left;
  margin-left: 1rem;
}
.article_show .content {
  background-color: #fff;
  padding: 28px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.25rem;
  line-height: 2;
}
.article_show .content .title {
  font-size: 1.25rem;
  font-weight: 600;
  overflow: hidden;
}
.article_show .content img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.article_show .content h1,
.article_show .content h2,
.article_show .content h3,
.article_show .content h4,
.article_show .content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
  line-height: 2;
}
.article_show .content h1::before,
.article_show .content h2::before,
.article_show .content h3::before,
.article_show .content h4::before,
.article_show .content h5::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 38px;
  content: '';
  background-color: #eee;
}
.article_show .content p:last-child {
  margin-bottom: 0;
}
.article_show .content ul {
  list-style-type: disc;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.article_show .content ul:last-child {
  margin-bottom: 0;
}
