.shaixuanqi {
    margin-bottom: 20px;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.shaixuanqi label {
    margin-right: 10px;
}

.shaixuanqi input, .shaixuanqi select {
    padding: 5px;
    margin-right: 10px;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination button {
    padding: 5px 10px;
    cursor: pointer;
    /* 背景颜色和边框 */
    background-color: #408ed4; /* 绿色背景 */
    border: none; /* 移除边框 */
    border-radius: 10px; /* 圆角边框 */
 
    /* 文本样式 */
    color: white; /* 白色文字 */
    font-size: 16px; /* 字体大小 */
    font-weight: bold; /* 加粗字体 */
    text-align: center; /* 文字居中 */
    text-transform: uppercase; /* 大写字母 */
    padding: 8px 10px; /* 内边距 */
    cursor: pointer; /* 鼠标悬停时显示为手指 */
 
    /* 鼠标悬停效果 */
    transition: background-color 0.3s ease; /* 过渡效果 */
}

.pagination button:hover{
    background-color: #171917; /* 悬停时改变背景颜色 */
}

.pagination button:disabled {
    color: #000000;
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #797979; /* 悬停时改变背景颜色 */
}

.shaixuanqi button{
    /* 设置按钮的宽度和高度 */
    /* width: 100px;
    height: 50px; */
 
    /* 背景颜色和边框 */
    background-color: #17a2b8; /* 绿色背景 */
    border: none; /* 移除边框 */
    border-radius: 10px; /* 圆角边框 */
 
    /* 文本样式 */
    color: white; /* 白色文字 */
    font-size: 16px; /* 字体大小 */
    font-weight: bold; /* 加粗字体 */
    text-align: center; /* 文字居中 */
    text-transform: uppercase; /* 大写字母 */
    padding: 8px 10px; /* 内边距 */
    cursor: pointer; /* 鼠标悬停时显示为手指 */
 
    /* 鼠标悬停效果 */
    transition: background-color 0.3s ease; /* 过渡效果 */
}

.shaixuanqi button:hover{
    background-color: #171917; /* 悬停时改变背景颜色 */
}

.shaixuanqi button:active{
    background-color: #388e3c; /* 点击时改变背景颜色 */

    transform: scale(0.95); /* 点击时稍微缩小 */
}