  /* 栏目列表页核心样式 - 加分割线+整体美化 */
.content-wrapper {
  padding: 1rem 0;
  position: relative;
  z-index: 20;
}
.main-content {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(134, 86, 170, .06);
  padding: 32px;
  border: none;
}
.sidebar-menu {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(134, 86, 170, .06);
  padding: 28px;
  border: none;
  height: fit-content;
}
/* 面包屑 */
/* ========== 美化面包屑导航 - 优化版 ========== */
.breadcrumb {
  padding: 14px 18px !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap; /* 小屏幕自动换行 */
  background: rgba(255,255,255,.95) !important;
  border-radius: 8px !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.05) !important;
  border: 1px solid rgba(0,0,0,.05) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: " / " !important; /* 更美观的分隔符 */
  color: #bbb !important;
  font-weight: 400;
  padding: 0 4px;
}
.breadcrumb a {
  color: #555 !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
  padding: 2px 4px;
  border-radius: 4px;
}
.breadcrumb a:hover {
  color: var(--primary) !important;
  background: rgba(134,86,170,.06) !important;
  transform: translateY(-1px);
}
.breadcrumb .active {
  color: #222 !important;
  font-weight: 600 !important;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 页面主标题（黑色 + 专属分割线） */
/* 只改这 2 个样式，其他不动 */

/* 主标题：左侧紫色竖线 + 底部灰色线 */
.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #000 !important;
  padding-left: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 28px;
  position: relative;
}

/* 右侧子栏目菜单 */
.sidebar-menu .list-group-item {
  border: none;
  padding: 11px 16px;
  color: #333;
  border-radius: 6px;
  margin-bottom: 8px;
  transition: all 0.2s ease;
  font-size: 18px;
}
.sidebar-menu .list-group-item.active {
  background-color: var(--primary-transparent15);
  color: var(--primary);
  font-weight: 600;
}
.sidebar-menu .list-group-item:hover {
  background-color: var(--primary-transparent15);
  color: var(--primary);
}

/* 新闻项 - 优化动画+间距 */
.list-news-item {
  display: flex;
  gap: 1.2rem;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  height: 100%;
}
.list-news-item::before,
.list-news-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  z-index: -1;
  border-radius: 8px;
}
.list-news-item::before {
  border-top-color: var(--primary);
  border-right-color: var(--primary);
  transform-origin: top right;
  transform: scale(0, 0);
}
.list-news-item::after {
  border-bottom-color: var(--primary);
  border-left-color: var(--primary);
  transform-origin: bottom left;
  transform: scale(0, 0);
}
.list-news-item:hover::before,
.list-news-item.active::before {
  transform: scale(1, 1);
}
.list-news-item:hover::after,
.list-news-item.active::after {
  transform: scale(1, 1);
  transition-delay: 0.2s;
}
.list-news-item:hover {
  background-color: rgba(255,255,255,0.8);
}
/* 左侧时间区域 - 优化间距 */
.news-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  color: var(--primary);
  font-weight: bold;
  z-index: 1;
}
.news-date .day {
  font-size: 2.2rem;
  line-height: 1;
}
.news-date .month {
  font-size: 1rem;
  margin-top: 4px;
}
.list-news-item.active .news-date {
  color: var(--primary);
}
.list-news-item.active .news-date::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  margin-top: 5px;
}
/* 右侧新闻内容 - 优化字体大小 */
.news-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000 !important;
  position: relative;
  z-index: 1;
  display: inline-block;
}
/* 标题下划线动画 */
.news-content h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}
.list-news-item:hover h5::after,
.list-news-item.active h5::after {
  width: 100%;
}
.news-content p {
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 18px !important;
  margin: 0;
}
/* 紫色分页 - 优化间距+圆角 */
.pagination {
  margin-top: 30px;
  justify-content: center;
}
.pagination .page-link {
  color: var(--primary) !important;
  border: 1px solid var(--primary-transparent25) !important;
  border-radius: 4px !important;
  margin: 0 4px;
  padding: 7px 14px;
  font-size: 18px;
}
.pagination .page-item.active .page-link {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}
.pagination .page-link:hover {
  background-color: var(--primary-transparent15) !important;
  color: var(--primary-dark) !important;
}
.pagination .page-item.disabled .page-link {
  color: #999 !important;
  border-color: #eee !important;
  background: #f9f9f9;
}
/* 响应式适配 - 优化移动端 */
@media (max-width: 991px) {
  .content-wrapper {
    padding: 2rem 0;
  }
  .main-content {
    padding: 20px;
  }
  .sidebar-menu {
    margin-top: 1.5rem;
    padding: 20px;
  }
  .page-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .list-news-item {
    gap: 1rem;
    padding: 12px;
  }
  .news-date {
    min-width: 60px;
  }
  .news-date .day {
    font-size: 1.8rem;
  }
  .pagination .page-link {
    padding: 6px 12px;
  }
}