.caseBox {
    width: 1200px;
    margin: 120px auto;
}

.caseCateList {
    display: flex;
    flex-wrap: wrap;

}

.caseCateItem {
    width: fit-content;
    white-space: nowrap;
    margin: 0 50px 30px 0;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    padding-bottom: 4px;
    position: relative;
    cursor: pointer;

}

.caseItemCateActive {
    font-weight: 500;
    font-size: 20px;
    color: #2871FF;
}

.caseItemCateActive::after {
    content: ' ';
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 0px;
    height: 3px;
    background-color: #2871FF;
    border-radius: 2px;
}

.caseList {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.caseItem {
    width: 380px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
    border-radius: 14px;
    overflow: hidden;
    margin-right: 30px;
    margin-bottom: 30px;
}

.caseItem:nth-child(3n) {
    margin-right: 0;
}

.caseItemImg {
    width: 380px;
    height: 208px;
}

.caseInfo {
    width: 100%;
    padding: 18px 20px;
}

.caseInfoTit {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    margin-bottom: 12px;
}

.caseInfoDetail {
    font-weight: 400;
    font-size: 20px;
    color: #99A6BC;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
}

.caseInfoMore {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    font-weight: 400;
    font-size: 12px;
    color: #2871FF;
    margin: 20px 0 0 auto;
}

.caseInfoMoreImg {
    width: 18px;
    height: 18px;
    margin-left: 4px;
}


/* --- 分页器样式 --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    min-width: 40px;
    text-align: center;
}

.page-link:hover {
    border-color: #2871FF;
    color: #2871FF;
}

.page-item.active .page-link {
    background: #2871FF;
    color: #fff;
    border-color: #2871FF;
}

.page-item.disabled .page-link {
    background: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

.page-ellipsis {
    padding: 8px 5px;
    color: #999;
    cursor: default;
}