/* 整个导航栏 */
.nav_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center; /* 水平居中，也可以根据需要调整 */
  align-items: center; /* 垂直居中 */
  padding: 0 20px;}

.menu-item {
  position: relative; /* 为子菜单的绝对定位提供参考 */
  padding: 10px 15px;}

/* 菜单项链接样式 */
.menu-item > a {
  color: white; /* 白色文字 */
  text-decoration: none; /* 去掉下划线 */
  font-size: 16px;}

/* 鼠标悬停在菜单项上时，改变链接颜色 */
.menu-item:hover > a {
  color: #ccc;}

/* 子菜单样式 */
.submenu {
  display: none; /* 默认隐藏 */
  position: absolute;
  top: 100%; /* 位于主菜单项下方 */
  left: 0;
  background: white; /* 白色背景 */
  min-width: 160px; /* 最小宽度 */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* 阴影效果 */
  padding: 5px 0;
  margin: 0;
  list-style: none;
  z-index: 1;}

/* 子菜单项 */
.submenu li {
  padding: 5px 10px;}

/* 子菜单链接 */
.submenu li a {
  color: black;
  text-decoration: none;}

.submenu li a:hover {
  color: blue;}

/* 鼠标悬停在菜单项上时显示子菜单 */
.menu-item:hover .submenu {
  display: block;}

/* 图标的样式（需要用户自己引入图标库） */
.icon-search, .icon-home {
  display: inline-block;
  width: 16px;
  height: 16px;}
  .pagination-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    font-family: "Microsoft YaHei", sans-serif;}
  
  .pagination {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;}
  
  .page-item {
    display: block;
    height: 36px;
    line-height: 36px;
    padding: 0 14px;
    margin: 0 3px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #1a5bac;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;}
  
  .page-item:hover:not(.disabled) {
    background-color: #f0f7ff;
    border-color: #1a5bac;
    transform: translateY(-2px);}
  
  .a_mtbd_dpages {
    width: 100%;
    text-align: center;
    padding: 21px 0% 0px 0%;
    font-size: 14px;}

.a_mtbd_dpages a,.a_mtbd_dpages span {
    padding: 0px 15px;
    height: 35px;
    margin-bottom: 5px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #3871c1;
    background-color: #fff;
    color: #333333;
    display: inline-block;}

.a_mtbd_dpages a:hover,
.a_mtbd_dpages a.activepages ,.a_mtbd_dpages span{
    color: #fff;
    text-decoration: none;
    background-color: #3871c1;}
