/* 精品分类 */

.yublog_boutique-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
  padding: 12px 15px 0;
}

.yublog_boutique-list .hot_item {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 4px;
}

.yublog_boutique-list .hot_item .inner {
  display: block;
  height: 100%;
}

.yublog_boutique-list .hot_item img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.yublog_boutique-list .hot_item .title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  font-size: 16px;
}

/* 文章列表 */

.yublog_article_list {
  margin-top: 20px;
}

.yublog_article_list .article_item {
  display: flex;
  margin: 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid #ebeef5;
}
.article_item:hover > .information .title {
  color: var(--theme-color);
}
.article_item .thumbnail {
  flex-shrink: 0;
  position: relative;
  width: 210px;
  height: 140px;
  margin-right: 15px;
  overflow: hidden;
}

.article_item .thumbnail img {
  width: 210px;
  height: 140px;
  border-radius: 6px;
}
.article_item .information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.article_item .information .title {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.article_item .information .info {
  min-height: 40px;
  color: #909399;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.article_item .information .meta {
  display: flex;
  justify-content: space-between;
  color: #909399;
}

.article_item .information .meta ul {
  display: flex;
}
.article_item .information .meta li {
  display: flex;
  align-items: center;
  color: #909399;
  font-size: 14px;
}

.article_item .information .meta li::before {
  content: '/';
  margin: 0 6px;
}
.article_item .information .meta li:nth-child(1)::before {
  content: '';
}

.article_item .information .meta li i {
  margin-right: 4px;
  font-size: 14px;
}

.article_item .information .meta .sort {
  display: flex;
  align-items: center;
}

.article_item .information .meta .sort i {
  margin-right: 4px;
}

/* 热门分类文章 */
.yublog_hot_list {
  margin-top: 20px;
  padding: 0 20px;
}

.hot_sort_card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
  padding: 12px 0 0;
}

.hot_sort_item {
  height: 390px;
  max-height: 390px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.hot_sort_item .hot_sort_title {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  /* background: url('https://umapu.cn/content/templates/umapu/assets/imgs/hotlist/1.png')
    no-repeat; */
  background-size: 100%;
}

.hot_sort_item .hot_sort_title a {
  color: #fff;
  font-size: 18px;
}

.hot_sort_article {
  padding: 0 15px;
}

.hot_sort_article li {
  line-height: 36px;
  margin: 4px 0;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hot_sort_article li span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #dcdcdc;
  border-radius: 50%;
  margin-right: 6px;
}
.hot_sort_article li:nth-child(1) span {
  background-color: #f93131;
}

.hot_sort_article li:nth-child(2) span {
  background-color: #fc0;
}

.link_container {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
}

.link_list {
  padding: 15px;
}

.link_list a {
  margin: 0 6px;
}

