.supplier-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}

.supplier-list li {
    width: 100px;
    max-width: 100px;
    margin: 10px 5px;
}

.supplier-list li div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplier-list li .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #588528;
}

.supplier-list li .img-box img {
    width: 48px;
}

.supplier-list li .name a {
    font-size: 12px;
    font-weight: 600;
    color: #343434;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
    word-wrap: break-word;
    max-width: 100px;
}