.shop_list {
    margin-bottom: 20px;

    overflow: hidden;
    max-height: 100vh;
}


.shop_item_list {
    width: 140%;
    column-width: 160px;
    column-count: auto;
    column-gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    transform: rotate(5deg) translateX(-20%);  
    animation: myfirst 50s linear infinite alternate;
}

@keyframes myfirst
{
    0% {transform: rotate(0deg) translateX(-20%);  }
    20% {transform: rotate(5deg) translateX(-20%);  }
    50% {transform: rotate(5deg) translateX(0%);  }
    80% {transform: rotate(5deg) translateX(-20%);  }
    100% {transform: rotate(0deg) translateX(-20%);  }

}
 

.shop_card {
    break-inside: avoid;
    max-width: 260px;
    transition: transform 0.3s;
   
}

.shop_card:hover  {
    transform: scale(1.05);
  
}
.shop_card:hover .shop_img_mask {
    background: rgb(0 0 0/.4);
  
}

.hover_show {
    display: none;
}

.shop_card:hover .hover_show {
    display: block;
}

.shop_img_show {
    max-height: 400px;
    overflow: hidden;
    height: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    position: relative;
    display: block;
}

.shop_img_mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0/.06);
    pointer-events: none;
    z-index: 1;
}

.shop_img {
    pointer-events: none;
    width: 100%;

}

.shop_user_name {
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
    color: #999999;
    text-decoration: none;
    -webkit-transition: all;
    font-size: 12px;
}

.shop_user_subtitle {
    color: #919ba7;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.shop_bottom {
    /* display: none; */
    position: relative; 
    padding-bottom: 30px;
}


.shop_top{
    position: absolute;
    top: 10px;
    z-index: 2;
    left: 20px;
    right: 20px;
    display: flex;
    color: #fff;   
}
.like_btn{
    cursor: pointer;
}
.shop_title {
    font-size: 16px;
    font-weight: bold; 

    max-width: 70%;
}
.shop_tools{ 
    margin-left: auto;
}

.shop_download {}

.shop_hide {
    display: none;
}


.shop_bottom_btn>.download_btn{
    position:initial;
    margin: 0 5px;
}

.shop_img_link {
    display: block;
}

.shop_page {
    line-height: 100px;
    margin-bottom: 50px;

    text-align: center;
    color: #999;
}
 


@media (max-width: 1100px){
  
    .shop_list {
        display: none;
    }
    .shop_item_list {
        column-width: 150px; 
        column-gap: 5px;
        padding: 0 8px;
    }
    .shop_img_show {
        max-height: 350px;
    }

}
