.content{
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.content-left{
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    min-height: 800px;
    background-color: white;
    padding-top: 18px;
}
.content-right{
    padding-top: 0;
    width: calc(100% - 220px);
}

.content-left-one{
    width: 150px;
    height: 48px;
    opacity: 1;
    border-radius: 4px;
    background: rgba(246, 247, 251, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
    color: var(--brand-color);
}
.content-left-one:focus, .content-left-one:hover{
    color: var(--brand-color);
}
.content-left-one-active, .content-left-one-active:focus, .content-left-one-active:hover{
    background-color: var(--brand-color);
    color: white;
}

.article{
}
.article-list{
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}
.article-list-one{
    margin-bottom: 44px;
    width: 380px;
    background-color: white;
    display: inline-block;
}
.article-list-one:not(:nth-child(3n)){
    /*margin-right: 40px;*/
}
.article-list-one img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.article-list-one-info{
    padding: 16px 14px 22px 14px;
    box-sizing: border-box;
}
.article-list-one-title{
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.1px;
    color: rgba(0, 0, 0, 1);
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    white-space: nowrap;
}
.article-list-one-desc{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(128, 128, 128, 1);
}

.new-page{
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 103px;
}
