html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-control {
    width: 600px;
}

.form-check-input {
    width: 20px;
    height: 20px;
}

.search-box {
    display: inline-block;
   
}

    .search-box input, select {
       
        padding: 10px 20px;
    }

.right-top {
    position: page; /* 绝对定位 */
    float: right;
    top: 0; /* 距离容器顶部0px */
    right: 0; /* 距离容器右侧0px */
    /* 你可以添加其他样式，如padding、margin、background-color等 */
    padding: 10px 20px; /* 例如，添加一些内边距使链接更易点击 */
    background-color: #007bff; /* 例如，设置背景颜色 */
    color: white; /* 例如，设置文字颜色 */
    text-decoration: none; /* 去除下划线 */
    border-radius: 0 0 5px 0; /* 例如，为链接的右下角添加圆角 */
}
.right-submit {
    /* 背景颜色 */
    background-color: #2196F3;
    /* 文字颜色 */
    color: white;
    /* 圆角设置 */
    border-radius: 8px;
    /* 内边距 */
    padding: 12px 24px;
    /* 边框 */
    border: none;
    /* 文字大小 */
    font-size: 16px;
    /* 鼠标悬停效果 */
    cursor: pointer;
    /* 过渡动画 */
    transition: background-color 0.3s;
    position: absolute;
    right: 20px;
   
}

    /* 悬停状态 */
    .right-submit:hover {
        background-color: #1976D2;
    }

    /* 按下状态 */
    .right-submit:active {
        background-color: #0D47A1;
    }
.data-empty {
    text-align:center;
    color:orangered;
}
ul {
    list-style-type: none; /* 移除默认的列表符号 */
    padding: 0; /* 移除默认的内边距 */
    margin: 0; /* 移除默认的外边距 */
    top:10px;
}

li {
    display: inline-block; /* 将 li 元素设置为行内块元素 */
    margin-right: 1em; /* 设置每个 li 元素之间的间距为 1 字符宽度 */
}