        /* 底部导航 */
        .footer-nav {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 60px;
            background: #fbfaf6;
            display: flex;
            align-items: center;
            justify-content: space-around;
            border-top: 1px solid #eee;
            z-index: 99;
        }

        .footer-nav .nav-item {
            text-align: center;
            font-size: 12px;
            color: #666;
        }

        .footer-nav .nav-item .ic {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            margin: 0 auto 4px;
            display: block;
        }

        .footer-nav .nav-item .ic img {
            width: 100%;
            height: 100%;
        }     
/* ======================
   分页组件样式（道家风格）
====================== */
/* 分页容器 */
.pager {
  padding: 0;
  text-align: center;
  width: 100%;
}

/* 分页列表 */
.pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

/* 分页列表项 */
.pagination li {
  margin: 0;
  border: none;
}

/* 分页按钮通用样式 */
.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 10px 16px;
  font-size: 15px;
  color: #8c6a3d; /* 古铜色文字 */
  background: #f9f7f3; /* 浅米色背景 */
  text-decoration: none;
  border: 1px solid #e2d6c1; /* 浅边框 */
  margin: 0 2px;
  border-radius: 6px;
  min-width: 40px;
  height: 40px;
  line-height: 20px;
  text-align: center;
  box-sizing: border-box;
}

/* 禁用状态（上一页/下一页不可点） */
.pagination li.disabled span {
  color: #ccc;
  background: #faf8f5;
  border-color: #f0e9df;
  cursor: not-allowed;
}

/* 激活状态（当前页） */
.pagination li.active span {
  background: #8c6a3d; /* 古铜色背景 */
  color: #fff; /* 白色文字 */
  border-color: #8c6a3d;
  font-weight: 500;
}

/* 鼠标悬浮效果（非禁用/非激活） */
.pagination li:not(.disabled):not(.active) a:hover {
  background: #e9d7b7; /* 浅金色背景 */
  color: #5a4832;
  border-color: #c9a36b;
  transition: all 0.2s ease;
}

/* 手机端适配（缩小按钮尺寸） */
@media (max-width: 480px) {
  .pagination li a,
  .pagination li span {
    padding: 8px 12px;
    font-size: 14px;
    min-width: 36px;
    height: 36px;
  }
}