.skeleton-anim {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}
.skeleton-anim:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #e2e5e7;
    animation: skeleton-loading 1s linear infinite alternate;
}

.main_goods-skeleton {
    display: flex;
    gap: 8px;
}
.main_goods-skeleton__item {
    flex: 1;
    height: 253px;
    border-radius: 6px;
}

@keyframes skeleton-loading {
    0% {
        background-color: hsl(0, 0%, 95%);
    }
    100% {
        background-color: hsl(0, 0%, 88%);
    }
}