.network-group{
    width: 456px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index:200;
    background: #FFFFFF;
    transform: translateX(100%);
    transition: .5s;
}

.network-group-header {
    height: 146px;
    background: url("../image/right-side-header-background.png") round;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 28px;
    padding: 0 30px;
    font-family: 'AlibabaPuHuiTi-Bold';

}
.network-group-header-close{
    width: 20px;
    height: 20px;
    background: url("../image/right-side-close.png") round;
    cursor: pointer;
}


.network-group ul {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    color: #666666;
}

.network-group ul li{
    display: flex;
    gap: 12px;
    align-items: center;
    height: 80px;
    border-bottom: 1px dashed #E6E6E6;
    transition: .2s;
    font-size: 22px;
}

.network-group ul li span{
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #E6E6E6;
    border-radius: 50%;
    transition: .2s;
}

.network-group ul li:hover{
    color: #FF9E00;
    cursor: pointer;
    border-bottom: 1px solid #FF9E00;
}

.network-group ul li:hover span{
   background: #FF9E00;
}