.product_listArea {
    /* padding-top: 30px; */
    /* margin: 0px -10px; */
    display: flex;
    flex-wrap: wrap;
    margin: 0 ;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4 , 1fr);
    gap: clamp(1.6130rem, 2.6042vw, 3.1250rem); /* 25.81px , 2.6042vw , 50.00px */
}

.product_list {
    margin: 0 ;
    padding: 0;
    /* padding: 0 10px 20px; */
    box-sizing: border-box;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 3;

    vertical-align: top;
    /* width: 25%; */
}

.product_listIn {
    display: flex;
    flex-direction: column;
    gap:  clamp(0.625rem, 0.7813vw, 0.9375rem); /* 10px , 0.7813vw , 15px */
}
.product_img {
    position: relative;

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.product_list:hover .product_img {
    -webkit-box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.1);

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.product_img a {
    position: relative;
    /* padding-top: 100%; */
    aspect-ratio: 210 / 297;
    display: block;
}

.product_img>a>img {
    /* max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    transition: all 0.3s ease-out; */

    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    float: none;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: 0.3s ease all;
}

.product_img.active img {
    -webkit-box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.1);

    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.product_detail {
    position: relative;
    /* padding: 15px 0;
				padding: 15px 50px 60px 0px; */
    /* padding: 15px 50px 0px 0px; */
    flex-grow: 1;
}

.product_name{

}
.product_name a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.product_name a .product_name ,
.product_name a  {
    font-size: 1rem;
    line-height: 1.1;
    color: var(--dark_color);
    /* padding: 5px 0 0; */
    /* min-height: calc(1rem * 1.1 * 3); */
    /* text-align: center; */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_name a .product_nameEN {
    /* font-size: 12px; 
    color: #000;
    padding: 5px 0;
    letter-spacing: 0;
    font-family: var(--foreign_foreign);*/

    display: none;
}


@media (max-width: 1280px) {

    .product_listArea{
        grid-template-columns: repeat(3, 1fr);
    }
        .product_list {
            /* width: 33.3%; */
        }

}

@media(max-width:990px) {
    
    .addCart_button {
        display: block;
    }
}


@media(max-width:640px) {

    .product_listArea {
        grid-template-columns: repeat(2, 1fr);
    }           
        .product_list {
            width: 100%;
            /* width: 49%; */
            /* padding: 0 10px 45px; */
        }

    /*隱藏賣場列表樣式*/
    .right_contentBg.hide_product .product_list {
        width: 50%;
    }

    .product_detail {
        /* padding: 15px 50px 0px 0px; */
        /* padding:15px 50px 45px 0px; */
        /* padding: 15px 0px 45px 0px; */
    }

}

/* @media(max-width:425px){ */
/* .product_list {
		width: 100%;
		padding: 0px;
	} */

/* }	 */

/* @media(max-width:375px){ */
@media(max-width:425px) {

    .product_listArea {
        /* padding-top: 30px; */
        /* margin: 0px 0px -30px; */
        /* display: block; */
        /* flex-wrap: unset; */

        grid-template-columns: unset;
        display: flex;
        flex-direction: column;
    }

    .product_list {
        width: 100%;
        /* padding: 0 0px 30px; */
    }

    /*隱藏賣場列表樣式*/
    .right_contentBg.hide_product .product_list {
        width: 100%;
        padding: 0 0px 30px;
    }

    /* 收藏愛心 */
    .favorite_heart {
        right: 0;
    }

    .product_detail {
        /* padding: 15px 30px 0px 0px; */
    }


}