body,html{
    height:100%;
    width:100%;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    
}
.navBox{
    display: flex;
    flex-direction: column;
    position: fixed;
    left:0;
    background-color: #fff;
    box-shadow: 5px 5px 5px #ebebeb;
    z-index: 999;
    height:100%;
    width:400px;
    border-right:1px solid #ebebeb;
    font-size:20px;
    padding-top:30px;
    padding-left:30px;
    padding-bottom:30px;
    overflow-y: auto;
}
.navBox a{
    margin-bottom:5px;
}
.textBody{
    position: absolute;
    left:550px;
    width:700px;
    height:100%;
    text-align: justify;
}
.titleStyle{
    margin:10px;
    font-size:15px;
    text-align: center;
    display: block;
}
.nodeStyle{
    font-size:16px;
    margin:5px 0;
}
.nodeStyle>span{
    margin-left:10px;
    line-height: 26px;
}
.nodeStyle>p{
    margin-top:-0px;
    margin-bottom:0;
    line-height: 26px;
}
.nodeStyle a{
    color:rgb(51,102,204);
    text-decoration: underline;
    cursor: pointer;
}
.tableStyle{
    margin-bottom:20px;
}