屏蔽知乎首页所有推荐内容的火狐插件.
/* 知乎推荐内容屏蔽样式 */

/* 隐藏推荐标签页的内容区域 */
.Topstory-recommend {
  display: none !important;
}

/* 隐藏推荐标签本身(可选,如果你想完全移除推荐标签) */
.TopstoryTabs-link[href="/"] {
  display: none !important;
}

/* 隐藏带有推荐标记的卡片 */
[data-za-detail-view-path-module="TopstoryRecommend"] {
  display: none !important;
}

/* 隐藏首页推荐的热门内容 */
.Topstory-hot {
  display: none !important;
}

/* 隐藏推荐广告 */
.Pc-card,
.Pc-feedAd,
.Pc-feedAd-container {
  display: none !important;
}

/* 隐藏右侧栏的推荐内容 */
.Topstory-mainColumnCard .Card:has(.HotList) {
  display: none !important;
}

/* 隐藏知乎盐选推荐 */
.KfeCollection-PcColle498 {
  display: none !important;
}

/* 隐藏视频推荐 */
.Topstory-videoRecommend {
  display: none !important;
}

/* 隐藏右侧"大家都在搜" */
.HotSearchCard {
  display: none !important;
}

/* 隐藏右侧"推荐关注" */
.Card:has(.ZDI--UserPlusFill24) {
  display: none !important;
}