.post-list-header{
    display:flex;
    font-weight: bold;
    background: #666;
    color: #fff;
}


.post-list-item{
    display:flex;
    width:100%;
}

.post-list-item:nth-child(odd){
    background: #f4f4f4;
}

.post-date,
.post-list-header > div:first-child{
    width: 120px;
}
.post-title,
.post-list-header > div:nth-child(2){
    flex:1;
}

.post-list-header > div,
.post-list-item > div{
    padding: 6px;
}

.post-title a{
    text-decoration: none;
    color: #333;
}
.post-title a:hover{
    color: #BFAB4D;
}

.post-list-pagination{
    margin:20px 0;
}

.post-list-pagination > div{
    color:#999
}

.post-list-pagination > div > a{
    display: block;
    line-height: 22px;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color:#999;
    text-decoration: none;
}

.post-list-pagination > div > a:hover{
    color: #666;
}

.post-list-pagination > div > a.active{
    background: #f2f2f2;
    color: #666;
}