<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
div.card {
  border: none;
}
div.card .card-header {
  background-color: white;
}

.category-list, .article-list {
  font-size: 0.8rem;
}

.category-list {
  max-height: 50vh; /* 手机端分类列表高度减小 */
  overflow-y: auto;
  margin-bottom: 20px; /* 手机端增加间距 */
}
.category-list .all_category {
  cursor: pointer;
}

.nested {
  display: none; /* 默认隐藏子分类 */
  margin-left: 20px; /* 子分类缩进 */
}

.active {
  display: block; /* 显示子分类 */
}

.list-group {
  border: none;
  border-image: none;
}

.list-group-item {
  border: none;
  border-image: none;
  cursor: pointer; /* 鼠标悬停时显示手型 */
}

.article-list {
  max-height: 70vh; /* 手机端文章列表高度调整 */
  overflow-y: auto;
}

#list_table {
  border: none;
  color: gray;
}
#list_table tr, #list_table td, #list_table th {
  border: none;
}
#list_table thead {
  display: none !important;
}
#list_table tbody tr td:nth-child(2) {
  text-align: right;
}
#list_table a {
  text-decoration: none;
  color: black;
}

.pagination-detail {
  display: none;
}

/* 手机端样式调整 */
@media (max-width: 768px) {
  .category-list {
    max-height: 40vh; /* 手机端分类列表高度进一步减小 */
  }
  .article-list {
    max-height: 50vh; /* 手机端文章列表高度进一步调整 */
  }
}

/*# sourceMappingURL=index.css.map */
</pre></body></html>