<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* çƒ­é—¨å›¾æ&nbsp;‡ */
.hot-icon {
  width: 18px;
  height: 24px;
  margin-top: -3px;
}

.location-title {
  padding: 15px;
}

.wiki-img {
  width: 150px;
  height: 100px;
  margin-right: 15px;
  border-radius: var(--border-radius-big);
}

/* ä½œè€…å¤´åƒ */
.list-author-photo {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

.recommend-wiki-list {
  margin-top: 0;
  padding-top: 1px;
}

.wiki-card {
  background: var(--background-primary);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wiki-card .picture {
  width: 100%;
  height: 128px;
  border-radius: 10px;
}

.text {
  margin-top: 8px;
  
  color: var(--color-text-primary);
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  font-family: Microsoft YaHei;
}

.swiper-horizontal &gt; .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: 6px;
  text-align: right;
  z-index: 0;
}

.swiper-pagination-bullet-active {
  background: #ff4c2e;
}

.recommend-wiki-list {
  counter-reset: section;
}

.recommend-wiki-list .recommend-wiki-link {
  margin-bottom: 12.2px;
}

.recommend-wiki-list .recommend-wiki-link::before {
  counter-increment: section;
  content: '';
  width: 26px;
  height: 32px;
  line-height: 28px;
  background-size: 26px 32px;
  background-repeat: no-repeat;
  padding-left: 32px;
  color: var(--color-text-secondary);
  font-size: var(--font-size-big);
  font-weight: bold;
}

.recommend-wiki-list .recommend-wiki-link:nth-child(1)::before {
  background-image: url(../images/index/sort_1.png);
}

.recommend-wiki-list .recommend-wiki-link:nth-child(2)::before {
  background-image: url(../images/index/sort_2.png);
}

.recommend-wiki-list .recommend-wiki-link:nth-child(3)::before {
  background-image: url(../images/index/sort_3.png);
}

.recommend-wiki-list .recommend-wiki-link:nth-child(n + 4)::before {
  content: counter(section);
  padding-right: 25px;
  margin-left: -25px;
}

.recommend-ask-list .recommend-ask-link,
.recommend-topic-list .recommend-topic-link {
  margin-bottom: 18.6px;
  height: 25px;
  padding-left: 32px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .swiper-pagination {
    display: none;
  }

  .recommend-box-title {
    padding-left: 15px;
  }

  .wiki-card {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  .wiki-card .picture {
    border-radius: 0;
    height: 160px;
  }

  .wiki-img {
    width: 120px;
    height: 100px;
  }

  .wiki-item {
    position: relative;
    padding-bottom: 45px;
  }

  .wiki-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: clip;
    text-overflow: ellipsis;
    white-space: normal;
    margin-top: 10px;
    height: 35px;
  }

  .author-time {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
  }
}
</pre></body></html>