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-submit {
    background-color: #047B51;
    color: white;
    border-radius: 5px;
    padding: 12px 24px;
    border: none;
    /* 文字大小 */
    font-size: 0.6em;
    /* 鼠标悬停效果 */
    cursor: pointer;
    /* 过渡动画 */
    transition: background-color 0.3s;
    position: absolute;
    right: 60px;
    display: block;
}

    .right-submit.fixed {
        background-color: #047B51;
        color: white;
        border-radius: 5px;
        padding: 12px 24px;
        border: none;
        font-size: 0.6em;
        cursor: pointer;
        transition: background-color 0.3s;
        top: 150px !important; /* 固定在距顶部300px处 */
        position: fixed;
        right: 60px;
        display: block;
    }

/* 悬停状态 */
#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 字符宽度 */
}
