.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* margin: 50px auto; */
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 190px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 导航按钮样式 */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 16px;
    cursor: pointer;
    border: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* 指示器样式 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background: white;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .carousel-slide {
        height: 250px;
    }

    .carousel-nav {
        padding: 12px;
        font-size: 14px;
    }
}

/* 分页样式 */

#pagi {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
}

#pagi a,
#pagi b {
    border-radius: 10px;
    display: inline-block;
    padding: 3px;
    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 {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.no-result-icon {
    font-size: 60px;
    color: #4973EE;
    margin-bottom: 20px;
}

.no-search-results h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-search-results p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.search-keyword {
    color: #4973EE;
    font-weight: 600;
    padding: 0 3px;
}

.suggestions {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.suggestions p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.suggestions ul {
    list-style-type: none;
    padding-left: 0;
}

.suggestions li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.suggestions li:before {
    content: "•";
    color: #4973EE;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .no-search-results {
        padding: 30px 15px;
    }
    
    .no-result-icon {
        font-size: 50px;
    }
    
    .no-search-results h3 {
        font-size: 20px;
    }
    
    .suggestions {
        padding: 15px;
    }
}