body {
    background-repeat: repeat;
    background: #f3f3f3;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0a0a0a;
}

@media (max-width: 991px) {
    body {
        overflow-x: hidden;

    }
}

html {
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 10px 0;
    font-family: "Lato", sans-serif;;
}

h6 {
    font-size: 16px;
}

p {
    line-height: 1.7;
}

.download-link {
    color: #007bff !important;
    text-decoration: underline !important;
}

.tip {
    color: #616f80;
    font-weight: bold;
}

.submit-success {
    width: 100%;
    height: 400px;
    background-color: aquamarine;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort-cls {
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(205, 203, 203, 0.27);
}

.dataTables_wrapper .dataTables_scrollHeadInner th {
    background-color: #E9ECEF; /* 深色背景 */
    color: #495057; /* 文字颜色 */
    border-color: #E9ECEF;
}

ul.custom-list {
    list-style: none; /* Remove default list styling */
    counter-reset: list-counter; /* Initialize counter */
    padding-left: 0; /* Remove default padding */
}


ul.custom-list {
    list-style: none; /* Remove default list styling */
    counter-reset: list-counter; /* Initialize counter */
    padding-left: 0; /* Remove default padding */
}

/* Style for list items */
ul.custom-list li {
    counter-increment: list-counter; /* Increment counter */
    margin-bottom: 0.5em; /* Add space between items */
    position: relative; /* Position for the pseudo-element */
    padding-left: 2.5em; /* Add space for numbering and indent */
}

/* Style for the numbering */
ul.custom-list li::before {
    content: "[" counter(list-counter) "] "; /* Insert counter with brackets */
    position: absolute; /* Position number absolutely */
    left: 0; /* Align number to the left */
    width: 2em; /* Set width for the number */
    text-align: right; /* Align number to the right */
}

/* Ensure text wraps correctly */
ul.custom-list li {
    text-indent: 0; /* No extra indent on the first line */
}

.mouse {
    cursor: default;
}
