@mixin text-overflow{
	text-overflow: ellipsis;
	word-break: break-all;
	white-space:nowrap;
	overflow: hidden;
}

.avatar-list {
    &-item {
        display: inline-block;
        text-align: center;
        // width: 48px;
        margin-right: 10px;
        height: 30px;
        margin-top: -3px;
        vertical-align: top;
        padding-bottom: 24px;
        margin-bottom: 5px;
        @include text-overflow;
        &-img-content {
            position: relative;
            width: 30px;
            margin: 0 auto;
            &:hover {
                .avatar-list-item-close {
                    display: block;
                    cursor: pointer;
                    background-image: url('./cross-thine.svg');
                    background-size: auto;
                    background-repeat: no-repeat;
                    background-position: center;
                }
            }
        }
        &-close {
            position: absolute;
            top: 0;
            left: 0;
            display: none;
            width: 30px;
            height: 30px;
            line-height: 30px;
            border-radius: 100%;
            background:rgba(0,0,0,0.30);
            color: #fff;
            font-size: 14px;
            text-align: center;
        }
        .cover{
            width: 30px;
            height: 30px;
            position: absolute;
            top: 0;
            left: 0;
            display: inline-block;
        }
        &-name {
            display: inline-block;
            font-size:12px;
            color:#35434c;
            line-height:24px;
            max-width: 37px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
    }
    &-add-btn {
        display: inline-block;
        vertical-align: top;
        &-main {
            display: inline-block;
            width: 24px;
            height: 24px;
            line-height: 24px;
            text-align: center;
            color: #fff;
            font-size: 12px;
            background-color:#e4ebf0;
            &:hover{
                background-color:#1687d9;
                box-shadow:0 1px 2px 0 rgba(0,0,0,0.30);
            }
            border-radius: 100%;
            font-weight: bold;
            cursor: pointer;
        }
        &-setting{
            font-size:12px;
            color:#005999;
            text-align:left;
            background: none;
            cursor: pointer;
            margin-top: 4px;
            display: inline-block;
        }
    }
}