
        ::-webkit-scrollbar {
            display: none;
        }

        /* 模态框整体样式 */
       .modal-dongtai {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5); /* 加深遮罩背景色，增强对比度 */
        }

        /* 模态框内容区域样式 */
       .modal-content {
            font-size:30px;
            background-color: #fff; /* 白色背景 */
            margin: 15% auto;
            padding: 30px;
            border:3px solid #ccc; /* 浅灰色边框 */
            width: 550px; /* 适当增加宽度 */
            border-radius: 20px; /* 增加圆角半径 */
            box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.8); /* 增强阴影效果 */
            animation-name: fadeIn;
            animation-duration: 0.4s;
            max-height: 400px; /* 设置最大高度 */
            height: auto; /* 高度根据内容自动调整 */
        }

        /* 关闭按钮样式 */
       .close {
            color: #ff5555; /* 红色关闭按钮 */
            float: right;
            font-size: 32px;
            font-weight: bold;
            transition: color 0.3s ease; /* 添加颜色过渡效果 */
        }

       .close:hover,
       .close:focus {
            color: #e73d3d; /* 鼠标悬停时颜色加深 */
            text-decoration: none;
            cursor: pointer;
        }

        /* 定义淡入动画 */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }
        input {
        height:35px;
        width:200px;
        border - width: 2px; /* 加粗边框 */
        border - color: #ccc; /* 调整颜色 */
        border - style: solid; /* 实线边框 */
        } 
        button{
        font-size:24px;
        }

        /* 让模态框出现和消失时不影响其他元素位置，关键在于使用 fixed 定位 */
        body {
            position: relative;
        }

        /* 分页按钮样式 */
       .pagination-buttons {
            text-align: center;
            margin-top: 0px;
        }

       .pagination-buttons button {
            margin: 0 5px;
            padding: 0px 0px;
            cursor: pointer;
        }
