.Group_ResearchList_page {
    display: none;
}
.Group_ResearchList_active {
    display: block;
}
.Group_ResearchList_pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 使内容靠右 */
    margin: 10px 0px;
    position: relative; /* 为伪元素定位 */
}

.Group_ResearchList_pagination button {
    cursor: pointer;
    padding: 7px 8px;
    border: 1px solid #cdd2d8;
    font-size: 14px;
    font-weight: bolder;
    color: #2c3e50;
    background: #f8f9fa; /* 背景颜色 */
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 5px; /* 增加按钮间距 */
}

#Group_ResearchList_pagination_muzhi {
    animation: Group_ResearchList_paginationImgBackAndForth 0.5s infinite alternate; /* 2秒周期，无限次播放，往返 */
}
@keyframes Group_ResearchList_paginationImgBackAndForth {
    0%{
        transform: translateX(0);
      }
    50% {
      transform: translateX(-5px); /* 或者其他你想要的距离 */
    }
    100% {
        transform: translateX(0);
      }
  }

.Group_ResearchList_pagination button:hover {
    background: #e2e6ea; /* 悬停时的背景颜色 */
    border-color: #adb5bd; /* 悬停时的边框颜色 */
}
.Group_ResearchList_pagination button:active {
    background: #d6d8db; /* 点击时的背景颜色 */
}
.Group_ResearchList_pagination span {
    padding: 0 8px;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    font-weight: bold;
}
.Group_ResearchList_pagination input {
    width: 50px;
    height: 30px; /* 增加输入框高度 */
    text-align: center;
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
    border: 1px solid #cdd2d8; /* 输入框边框 */
    border-radius: 4px; /* 输入框圆角 */
    margin-left: 5px; /* 输入框左侧间距 */
}
.Group_ResearchList_pagination input:focus {
    border-color: #80bdff; /* 聚焦时的边框颜色 */
    outline: none; /* 去掉默认的轮廓 */
}