.networkgroup {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 600;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: 0.7s;
    background: #F5F5F5;
}

.networkgroup-header {
    background-color: white;
    padding: 16px;
    box-sizing: border-box;
    height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DBD4CD;
}

.networkgroup-menu {
    padding: 0 16px;
    background: white;
    height: 100%;
    overflow-y: auto;
}

.networkgroup-menu li {
    color: #666666;
    font-size: 16px;
    height: 58px;
    line-height: 58px;
    border-bottom: 1px dashed #DBD4CD;
    padding-left: 16px;
    position: relative;
}

.networkgroup-menu li span {
    position: absolute;
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #666666;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}