.my-section{
    position: relative;
    padding: 30px 15px 40px 15px;
}
.my-section.my-section-no-more{
    padding-bottom: 10px;
}
.my-section p{
    margin-bottom: 0;
}
.my-section-title{
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
}
.my-section .section-head-style1{
    margin-bottom: 20px;
}
.my-section .section-head-style1 .my-section-title{
    margin-bottom: 6px;
}
.my-section .section-head-style1 .right-content{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}
.section-view-more{
    color: #ffffff;
    background-color: #000000;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    line-height: 1.2;
}

/*产品卡片样式*/
.shop-card{
    position: relative;
}
.shop-card .product-media img{
    border-radius: 20px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.shop-card .product-title{
    color: #000;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 6px;
    font-weight: 600;
}
.shop-card .product-price{
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}
.shop-card .product-tag{
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shop-card .product-tag .badge{
    padding: 4px 8px;
    font-size: 10px;
    background-color: #ffff;
    color: #000000;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.5s;
}
.shop-card:hover .product-media img{
    transform: translateY(-20px);
}
.shop-card .shop-meta .meta-icon{
    width: 45px;
    min-width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    border: 0;
    line-height: 45px;
    border-radius: 32px;
    margin-bottom: 5px;
    box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-card .shop-meta .dz-heart-fill{
    display: none;
}
.shop-card .shop-meta .meta-icon i{
    font-size: 18px;
    color: #fff;
}
.shop-card .shop-meta{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    gap: 0;
    padding: 15px 10px;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.my-pc-img{
    display: none;
}
@media (min-width: 1024px) {
    .my-section{
        max-width: var(--pc-max-width);
        margin-right: auto;
        margin-left: auto;
        padding: 30px 15px;
    }
    .my-section-title{
        font-size: 2.1875rem;
    }
    .my-section .section-head-style1{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }
    .my-section .section-head-style1 .right-content{
        position: unset;
        transform: unset;
    }
    .my-pc-img{
        display: block;
    }
    .my-m-img{
        display: none;
    }
    .section-view-more{
        font-size: 16px;
        padding: 12px 30px;
        border-radius: 10px;
    }
}
