body{
    background-color: #f0f0f0;
}
.sideBar{
    width: 200px;
    height: 100vh;
    background-color: #2a2749;
    position: fixed;
    top: 0;
    left: 0;
}
.sideBar .logo{
    height: 60px;
    width: 100%;
}
.sideBar .navList{
    color: white;
    height: calc(100vh - 60px);
    overflow: hidden;
    overflow-y: auto;
}
.sideBar .el-menu{
    background-color: transparent;
    border-right: none;
}
.sideBar .el-menu-item{
    color: white;
    text-align: center;
}
.sideBar .el-menu-item:hover{
    color: white;
    background-color: #221f3a;
}
.sideBar .el-menu-item.is-active{
    color: white;
    background-color: #035ee8;
}

.topBar{
    height: 60px;
    width: calc(100% - 200px);
    background-color: #035ee8;
    position: fixed;
    top: 0;
    left: 200px;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    color: white;
}
.topBar .titleName{
    font-size: 20px;
    font-weight: bold;
}
.topBar .server{
    cursor: pointer;
}

.content{
    position: relative;
    top: 80px;
    left: 220px;
    z-index: 500;
    width: calc(100vw - 200px - 40px);
    min-height: calc(100vh - 60px - 40px);
    background-color: white;
    padding: 20px;
    border-radius: 4px;
}