body{
    background: url('../image/smallBg2.png') repeat;
}
.columnTitle{
    width: 1230px;
    display: flex;
    align-items: center;
    margin:0 auto;
    margin-top: 32px;
    
}
.columnTitle img{
    width: 30px;
}
.columnTitle .columnName{
    font-weight: bold;
    font-size: 28px;
    color: #333333;
    margin: 0 8px;
    
}
.content{
    padding: 30px ;
    min-height: calc(100vh - 512px);
}
.contentContainer{
    width: 1230px;
    margin:0 auto;
    
}
.listItem{
    width: 1230px;
    height: 163px;
    background: #FFFFFF;
    border-radius: 10px;
    padding:24px;
    display: flex;
    margin-bottom: 15px;
}   
.listImg{
    flex-shrink: 0;
    width: 167px;
    height: 111px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 20px;
}
.listInfo{
    flex-grow: 1;
    display: block;
    width: calc(100% - 200px);
}
.title{
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.des{
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    margin:14px 0 10px 0;
    display: block;
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;              /* 标准属性，目前仅 Firefox 部分支持 */
    overflow: hidden;
}
.time{
    font-size: 14px;
    color: #666666;
    line-height: 22px;
    display: block;
}
.paginationBox{
    display: flex;
    width: 1230px;
    margin:0 auto;
    padding: 30px;
    align-items: center;
    justify-content: center;
}
.page{
    display: block;
    background: #fff;
    padding: 5px 15px;
    color:#333;
    margin-right: 15px;
}
.pageActive{
    color: #A42227;
    font-weight: bold;
}