.articleBody {
	padding: 50px 0;
}
.articleWrap{
    display: flex;
}
.articleDesc{
    flex: 1;
    margin-left: 80px;
}
.articleLeft{
    margin-left: -.05rem;
    text-align: center;
}
.articleTitle {
    margin-top: 5px;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: bold;
}
.articleItem{
    display: flex;
    justify-content: space-between;
    line-height: 36px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.articleItem > div {
	padding: 0;
}
.date-column {
	color: #999;
    text-align: right;
}

.pagination {
	margin-top: 20px;
	justify-content: center;
}
.page-link {
	padding: 5px 10px;
	border-radius: 4px !important;
}
.page-link:focus{
    box-shadow: none !important;
}


/* 详情 */
.articleDetail{
    padding: 50px 0;
}
.articleDetail .articleTitle{
    margin-bottom: 5px;
    text-align: center;
}
.articleInfo{
    margin-bottom: 20px;
    text-align: center;
    color: #999;
}

@media screen and (max-width: 450px) {
    .articleBody{
        padding: 30px 0;
    }
    .articleDetail{
        padding: 30px 15px;
    }
    .articleWrap{
        padding: 0 15px;
        display: block;
    }
    .articleDesc{
        margin-left: 0;
    }
    .articleItem{
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .article-title, .date-column{
        line-height: 24px;
    }
}