.content .case-list ul{
    display: flex;
    flex-wrap: wrap;
}
.content .case-list .case-item{
    width: 32%;
    margin-right: 2%;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 20px 1px rgba(0,0,0,0.3);
    position: relative;
    padding-bottom: 60px;
}
.content .case-list .case-item:nth-child(3n){
    margin-right: 0;
}
.content .case-list .case-item .case-img{
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.content .case-list .case-item .case-img img{
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.content .case-list .case-item:hover .case-img img{
    transform: scale(1.1);
}

.content .case-list .case-item .case-info{
    padding: 0 20px;
}
.content .case-list .case-item .case-title{
    font-weight: bold;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 10px 0;
}
.content .case-list .case-item .case-desc{
    font-size: 14px;
    color: #666666;
    line-height: 18px;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.content .case-list .case-item .case-more{
    font-size: 14px;
    color: #1A1A1A;
    padding-left: 18px;
    background: url(../images/case-more.webp) no-repeat left center;
    line-height: 16px;
    position: absolute;
    bottom: 24px;
    left: 20px;
}
.content .case-list .case-item .case-line{
    width: 0;
    height: 4px;
    background: #0C5BE2;
    position: absolute;
    bottom: 0;
    left: 20px;
    transition: all 0.5s;
}
.content .case-list .case-item:hover .case-line{
    width: calc(100% - 40px);
}

.pagination{
    justify-content: center;
}




@media only screen and (min-width: 1050px) and (max-width: 1440px) {
    .content .case-list .case-item .case-title{
        font-size: 14px;
        line-height: 21px;
    }
}
@media only screen and (max-width: 1050px) {
    .content .case-list .case-item .case-title{
        font-size: 12px;
        line-height: 18px;
    }
    .content .case-list .case-item{
        margin-bottom: 20px;
    }
}