* {
    --www: 160px;
}

.item {
    width: var(--www);
    margin: 0 10px 10px 0;
    display: inline-block;
}

.image-wrapper {
    width: var(--www);
    height: var(--www);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper img {
    max-width: var(--www);
    max-height: var(--www);
}

.image-desc {
    font-size: 12px;
    width: var(--www);
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis ellipsis;
}

.copyBtn {
    position:absolute;
    right:0;
    bottom:0;
}