.approval-item-card {
    width: 100%;
    padding: 12px 12px 0;
    border-radius: 3px;
    box-sizing: border-box;
    background: #fff;
    &.item-card-status-2 {
        box-shadow: 0px 6px 6px rgba(58, 66, 71, 0.05);
    }
    &.item-end {
        max-height: 44px;
        min-height: .2rem;
        .approval-item-names{ 
            &.only {
                height: .2rem;
                line-height: .2rem;
                .approval-item-name {
                    height: .2rem;
                    line-height: .2rem;
                }
            }
            
        }

    }
    &.item-multiple {
        padding-right: .34rem;
        .multiple-arrow {
            position: absolute;
            right: 18px;
            color: #9DA0A3;
            font-size: 16px;
        }
        .approval-item-names{
            .approval-item-assignesNames {
                .main-item {
                    color: #1E80C7;
                    font-size: 14px;
                }
                .sub-item {
                    max-width: 100%;
                    width: auto;
                }
            }
        }
        
    }
    .approval-item-avatar {
        color: #fff;
        width: .4rem;
        height: .4rem;
        border-radius: 50%;
        line-height: .4rem;
        text-align: center;
        display: inline-block;
        font-size: .14rem;
        vertical-align: top;
        margin-bottom: 12px;
    }
    .approval-item-names {
        display: inline-block;
        width: calc(100% - 48px);
        margin-left: .08rem;
        margin-bottom: 10px;
        box-sizing: border-box;
        &.only{
            margin-left: 0;
            .approval-item-name{
                margin-top: 0;
                height: 40px;
                line-height: 40px;     
            }     
        }
        .approval-item-assignesNames {
            width: 100%;
            font-size:16px;
            color:#3a4247;
            line-height: 20px;
            text-align:left;
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            .main-item {
                color: #8BDA44;
                font-size: 16px;
                //padding-left: 6px;
                flex-shrink: 0;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
            }
            .sub-item {
                //padding-right: 6px;
            }
            .space-item {
                display: inline-block;
                width: 6px;
            }
        }
        .approval-item-name {         
            font-size:14px;
            color:#9DA1A3;
            line-height:16px;
            text-align:left;
            margin-top: 4px;
        }
    }
}

.text-ellipsis {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}