/*
CTC Separate Stylesheet
Updated: 2024-08-21 01:40:51
Theme Name: 康赛特定制主题
Template: hello-elementor
Author: Steven Zou
Version: 1.0.1724204451
*/

.product-card {
    position: relative;
}
.product-card .wp-block-group {
    transform: translate(0px, 40px);
    opacity: 1;
    height:0PX;
    transition: 0.6s;
    
}

.product-card:hover .wp-block-group{
    opacity: 1;
    transform: translate(0px, 0px);  
    height:100%;
    border-radius: 10px;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .product-card .wp-block-group {  
       transform: none;
       opacity: 1;
       height: inherit;
       transition: none;  
    }
    .product-card:hover .wp-block-group{
       opacity: 1;
       transform: none;  
       height: inherit;
 }
}