.banner {
    display: flex;
    justify-content: center;
}

/* 内容 */
.content {
    min-height: 500px;
}

.content-list {
    margin-top: 10px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.content-list>ul {
    padding: 0 20px;
}

.content-list>ul>li {

}

.content-list>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    border-bottom: 2px dotted #b4b4b4;
}

.content-list-text{
    width: 900px;
    display: flex;
    align-items: center;
}

.content-list-time{
    font-size: 16px;
	color: #666666;
}

.content-list-text>span{
    margin-right: 10px;
    display: block;
    width: 6px;
	height: 6px;
	background-color: #bdc9d5;
	border-radius: 3px;
}

.content-list-text>p{
    flex: 1;
    font-size: 16px;
	color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.content-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
}
.content-page-box {
    width: 400px;
    height: 30px;
}

@media screen and (max-width: 1600px) {
    .content-list-text {
        width: 700px;
    }
}