.commodity-card-wrap{
    box-shadow: 4px 4px 30px rgba(0%,0%,0%,0.1);
    max-width: 260px;
    width: 100%;
    overflow:hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    /* animation: mymoveaa 2s ; */
    transition: 1s;
    background-color: white;
}
.commodity-card-wrap:hover{
    box-shadow: 4px 4px 30px rgba(0%,0%,0%,0.4);
}
@keyframes mymoveaa {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.commodity-card-wrap a{
    text-decoration: none;
    color:#333;
}
.product-image{
    position: relative;
    display: block;
    width: 100%;
    min-height: 260px;    
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.discount-wrap-bg{
    width: 100%;
    color:#5D1B56;
    background-color: #F5CD00;
    padding: 5px;
    display: block;
    transform: rotate(-45deg);
    text-align: center;
    position: absolute;
    font-size: 16px;
    top: 31px;
    left: -82px;
}


 
.product-image img{
    position: absolute;
    width: 90%;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}


.sellout-warp-bg{
    max-width:62px;
    position: absolute;
    right: 30px;
    top: 0px;
    z-index:100;
}


.info-wrap-hank{
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
}
.product-title{
    height: 46px;
    margin-top: 0px;
    display: -webkit-box;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-weight: bolder;
    line-height: 22px;
    font-family: "微軟正黑體";
    letter-spacing: 1px;
}

.dollar-style{
    text-align: center;
    font-weight: bolder;
    font-size: 18px;
    line-height: 32px;
    width: 100%;
    display: block;
    color:red;
    padding: 5px 0px;
}
.buy-btn{
    width: 80%;
    padding: 10px;
    font-size:16px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    background-color: #ddd;
}
.commodity-card-wrap:hover .buy-btn{
    background-color: #F5CD00;
}

@media (max-width: 768px) {
    .product-image
    {
        min-height: 180px;      
    }
       
    .product-image img
    {
        width:85%;
    }

    .discount-wrap-bg{
        font-size: 16px;
        top: 30px;
        left: -85px;
    }
    .dollar-style{
        font-size: 14px;
    }   
}

@media (max-width: 414px) {
    .product-image
    {
        min-height: 180px;      
    }

    .discount-wrap-bg{
        font-size: 14px;
        top: 25px;
        left: -40px;
    }
}

@media (max-width: 375px) {

    .product-image
    {
        min-height: 160px;      
    }

    .discount-wrap-bg{
        font-size: 12px;
        top: 20px;
        left: -40px;
    }
}

@media (max-width: 320px) {

    .product-image
    {
        min-height: 140px;      
    }

    .discount-wrap-bg{
        font-size: 12px;
        top: 15px;
        left: -30px;
        transform: rotate(-45deg) scale(0.9);
    }
}
