@imgWidth: 90px;
@imgWidthSmall: 48px;



.del_icon {
    line-height: 25px;
    margin-left: 5px;
    position: absolute;
    top: 4px;
    right: 2px;

    &:hover {
        cursor: pointer;
    }
}

.user_imgs_single {

    .go_sel_img_div {
        cursor: pointer;
        border: 1px solid @border_color;
        border-radius: 50%;
        i{
            top: 5px;
            position: relative;
        }
    }

    //用户的名字
    .user_name {
        width: @imgWidth;
        margin-top: 5px;
        .text-overflow();
    }

    .user_img_item {
        //用户图片信息
        .user_img {
            width: @imgWidth;
            height: @imgWidth;
            border-radius: 50%;
            cursor: pointer;
            //字体图片
            i {
                position: relative;
                top: 5px;
            }

            //用户图片大小
            img {
                width: @imgWidth;
                height: @imgWidth;
                border-radius: 50%
            }
        }
    }
}

.user_img_more {
    .imgs_div {
        padding: 5px 8px;
        //用户显示项
        .user_img_item {
            float: left;
            margin-top: 10px;
            cursor: pointer;
            //用户图片
            .user_img {
                width: 48px;
                height: 48px;
                border: 1px solid @border_color;
                border-radius: 50%;

                //用户图片大小
                img {
                    width: @imgWidthSmall;
                    height: @imgWidthSmall;
                    border-radius: 50%
                }
            }

            //用户名字
            .user_name {
                width: 95px;
                margin-top: 5px;
                .text-overflow();
            }
        }
    }
}


