.meContents{
    display: flex;
    justify-content: space-between;
}
.leftBox{
    width: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    padding-bottom: 10px;
}

/* 左侧导航 */
.leftNav{
    width: 100%;
}
.leftNav>a{
    display: block;
    width: 100%;
    height: 36px;
    padding-left: 20px;
    font-size: 12px;
    line-height: 36px;
    color: #333333;
    background-color: white;
}
.leftNav>a.active{
    background-color: #EEF4FC;
    color: #003399;
}

/* 右侧板块 */
.rightBox{
    flex: 1;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.rightBox>.topBox{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.rightBox .box1{
    background-color: white;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
}
.rightBox .box2{
    background-color: white;
}