/* 分页样式 */

#pagi {
    text-align: center;
    margin: 20px 0;
}

#pagi a,
#pagi b {
    border-radius: 10px;
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
}

#pagi a:hover {
    background-color: #f5f5f5;
}

.zit {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* 没有找到搜索结果的样式 */
.no-search-results {
    padding: 20px 0;
}

.search-not-found {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.not-found-icon {
    margin-bottom: 20px;
    color: #6c757d;
}

.not-found-text h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.not-found-text p {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 500;
}

.not-found-text ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    width: 100%;
}

.not-found-text ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #6c757d;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.not-found-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}