/*=============== ARTICLE PAGE ===============*/

.article-section {
    padding-block: 170px 0;
    margin-bottom: 8px;
}
.article__container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding:20px 20px 20px 10px;
    background-color: #ffffff;
}
.article-sidebar {
    width: 210px;
    text-align: center;
}
.article-sidebar h2{
    background: #F53F3F;
    color: #fff;
    font-size: 16px;
    height: 42px;
    line-height: 42px;
    border-radius: 5px;
}

.sidebar-list li{
    line-height: 52px;
    font-size: 14px;
    border-bottom: 1px solid #eeeeee;
    padding-left: 76px;
    text-align: left;
    position: relative;
}

.sidebar-list li:before{
    width: 6px;
    height: 14px;
    border-radius: 4px;
    content: " ";
    background: #F53F3F;
    color: #F53F3F;
    position: absolute;
    top: 50%;
    margin-top: -7px;
    left: 34px;
}
.sidebar-list-item a{
    display: block;
}
.sidebar-list-item a:hover{
    color: #F53F3F;
}

.sidebar-list-item-actived a{
    color: #F53F3F;
}

.sidebar-list-item-link{
    color: #F53F3F;
}

.sidebar-wechat{
    font-size: 14px;
}
.sidebar-wechat img{
    width: 150px;
    height: 150px;
    margin: 40px auto 8px;
}


.article-content{
    flex: 1;
}

.article-title-wrapper{
    border-bottom: 1px solid #e5e6eb;
    padding: 20px 0 8px 0;
    margin-bottom: 20px;
}
.article-title{
    width: 630px;
    margin: 0 auto;
    text-align: center;
    line-height: 36px;
    font-size: 24px;
}
.article-info{
    font-size: 14px;
    text-align: center;
    margin-bottom: 26px;

}
.article-author{
    padding: 0 20px 0 4px;
}
.article-date{
    padding: 0 20px 0 4px;
}
.article-body{
    padding: 0 80px;
    font-size: 16px;
    line-height: 28px;
    text-indent: 2em;
}

.article-body img{
    margin: 0 auto;
}