.article-list-panel{
    display: flex;
    flex-wrap: wrap;
}
.activity-panel{
    width: 32%;
    padding: 30px 0;
    border-bottom: 2px solid #fff;
}
.activity-panel:nth-child(3n+1){
    margin-right: 1%;
}
.activity-panel:nth-child(3n+2){
    margin-left: 1%;
    margin-right: 1%;
}
.activity-panel:nth-child(3n+3){
    margin-left: 1%;
}
.activity-panel>a>div{
    overflow: hidden;
    width: 100%;
    height: 260px;
}
.activity-panel img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: all 0.6s;
}
.activity-panel img:hover{
    transform: scale(1.2);
}
.activity-panel .title{
    font-size: 20px;
    height: 65px;
    color: #333;
    line-height: 30px;
    padding-top: 10px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 15px;
}
.activity-panel .title:hover{
    color: #1a7bd9;
}
.activity-panel .desc{
    color: #777;
    line-height: 20px;
    max-height: 40px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .activity-panel{
        width: 100%;
        padding: 30px 0;
        border-bottom: 2px solid #0767c5;
    }
    .activity-panel:nth-child(3n+1){
        margin-right: 0%;
    }

    .activity-panel img{
        height: 170px;
    }

}