.groupListBox {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    font-size: 14px;
    color: #2f3238;
    .groupList {
        padding-bottom: 10px;
        .groupItem {
            display: flex;
            align-items: center;
            padding: 6px 20px;
            cursor: pointer;
            &:hover {
                background: #f6f7fa;
            }
            .groupPic {
                min-width: 36px;
                height: 36px;
                border-radius: 50%;
                display: inline-block;
                background: #fff;
            }
            .groupNameContent {
                // width: 188px;
                width: 259px;
                margin-left: 8px;
                .groupNameBox {
                    display: flex;
                    align-items: center;
                    .groupName {
                        font-size: 13px;
                        font-weight: 400;
                        display: inline-block;
                        vertical-align: middle;
                        overflow: hidden;
                        white-space: nowrap;
                        text-overflow: ellipsis;
                    }
                    .departmentTagBox {
                        width: 49px;
                        padding-right: 15px;
                        display: flex;
                        padding-top: 1px;
                    }
                    .tagContact {
                        width: 28px;
                        height: 15px;
                        background: #fff4e7;
                        border-radius: 3px;
                        font-size: 12px;
                        font-weight: 500;
                        color: #f89119;
                        text-align: center;
                        line-height: 15px;
                        margin-left: 4px;
                    }
                }
                .memberNum {
                    font-size: 12px;
                    font-weight: 400;
                    color: #a8adb3;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
            }
            .owner {
                width: 50px;
                margin-left: 10px;
                color: #999;
            }
        }
    }
}
