
.explore .search-ctn{
    border-bottom: 2px solid var(--theme-beige);
}

.virtuoso-list{
    margin-top: calc(110 * var(--rpx-50));
    --column: 4;
    --gap: calc(50 * var(--rpx-50));
}

.virtuoso-list .flex-item{
    cursor: pointer;
}

.virtuoso-list .cover{
    position: relative;
    overflow: hidden;
}

.virtuoso-list .cover img{
    width: 100%;
    aspect-ratio: 300/400;
    height: auto;
    object-fit: cover;
    display: block;
}

.virtuoso-list .info{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(200, 185, 147, .9);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(20 * var(--rpx));
    gap: calc(20 * var(--rpx));
    transition: .4s cubic-bezier(0.15, 1, 0.336, 1);
    transform: translateY(10%);
    opacity: 0;
}

.virtuoso-list .flex-item:hover .info{
    transform: none;
    opacity: 1;
}

.virtuoso-list .name{
    font-family: var(--serif-font);
    text-align: center;
    height: calc(80 * var(--rpx));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(18rem / 16);
    font-weight: bold;
    background-color: #f4ecdb;
}

@media (max-width: 960px) {
    .virtuoso-list{
        --column: 3;
    }
}
@media (max-width: 960px) {
    .virtuoso-list{
        --column: 1;
        --gap: calc(20 * var(--rpx));
        justify-content: center;
    }
    .virtuoso-list .flex-item{
        width: 72%;
    }
}
