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;
    background: #FFFFFF;
    border-radius: 10px;
    padding:20px;
}
.listItem{
    height: 70px;
    line-height: 70px;    
    display: flex;
    border-bottom: dotted 1px #eee;
    justify-content: space-between;
}   
.title{
    width: calc(100% - 105px);
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    line-height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding-left: 34px;
    position: relative;
}
.title::before{
    content:'';
    position: absolute;
    left: 10px;
    top:30px;
    width: 14px;
    height: 14px;
    background: url('../image/dot.png') no-repeat left top;
    background-size: 100% 100%;
}
.time{
    flex-shrink: 0;
    width: 100px;
    font-size: 16px;
    color: #999999;
}
.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;
}