.container {
    position: relative;
    display: flex;
    margin: 3px;
}

/* 左侧 */
.left-body {
    flex: 2;
    position: relative;
    overflow: hidden;
}


/* 中间 */
.mid-body {
    flex: 8;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}



.article-name{
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    margin: 5px;
    padding-left: 10px;
    color: rgb(65, 72, 69);
    border-bottom: 1px solid #e3e3e4;
    cursor: pointer;
}

.article-title{
    margin-left: 10px;
}

.article-content{
    font-size: 18px;
    height: auto;
    line-height: 30px;
    margin: 5px;
    padding-left: 10px;
    color: #000;
    margin-left: 20px;
    
}

.article-content ul, .article-content ol, .article-content li{
    list-style-type: style;
}

.article-content em,.article-content i{
    font-style:italic;
}

.article-content strong{
    font-weight: bold;
}

/*右侧*/
.right-body {
    flex: 2.5;
    position: relative;
    min-height: 100vh;
    overflow: auto;
    border: #e3e3e4 1px solid;
    border-radius: 8px;
}