

/** 1.sort banner **/
.banner{
    height: 20vw;
    min-height: 150px;
    max-height: 250px;
}

@media (max-width: 991px) {
    .banner{
        height: 200px;
    }
    /*.PC .gap{*/
    /*    padding-top: 30px;*/
    /*}*/
    /*.PHONE .gap{*/
    /*    padding: 1em;*/
    /*}*/
}

.banner_nav{
    border-radius: 20px;
    overflow: hidden;
}

.banner_title{
    position: absolute;
    top: 0;
    padding: 0 5em;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.banner_title h3{
    margin-bottom: 17px;
}

.banner_title h2{
    font-weight: bolder;
}

.banner_title .line{
    background-color: #1e66f8;
    display: block;
    height: 3px;
    margin-top: 17px;
    width: 5em;
}

@media (max-width: 991px) {
    .banner_title .line{
        display: none;
    }

    .banner_title{
        align-items: center;
        left:0;
    }

}

@media (max-width: 600px) {
    .banner_title h5{
        display: none;
    }
}


/** sort banner END **/

/** sort nav **/

.holder{
    height: 80px;
    /*margin-bottom: 2em;*/
}

.product_sort{
    padding-top: 1em;
    background: #FFFFFF;
}

.sort_row li>div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 1.5rem;
    font-size: 18px;
    font-weight: bolder;
    cursor: pointer;
}

.sort_row .is_active{
    color: #1e66f8;
}

.sort_row .is_active::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50%;
    left: 50%;
    bottom: 3px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: width 0.15s ease;
    transition: width 0.15s ease;
    background-color: #1e66f8;
}
@media (max-width: 991px) {
    .product_sort span{
        font-size: 14px;
    }
}

/*@media (max-width: 991px) {*/
/*    ul.flex-row{*/
/*        flex-wrap: wrap;*/
/*    }*/
/*    ul.flex-row>li{*/
/*        max-width: 33.33%;*/
/*        flex-basis: 33.33%;*/
/*    }*/
/*}*/

/** sort nav END **/

/** product card **/

.banner_card{
    /*height: 30vw;*/
    min-height: 150px;
    max-height: 350px;
    padding: 0 1em;
}

@media (max-width: 991px) {
    .banner_card .banner_nav{
        filter: brightness(0.7);
    }
}



.product_card_row{
    display: flex;
    flex-wrap: wrap;
}

.product_card{
    flex-basis: 33.33%;
    -webkit-flex-basis:33.33%;
    max-width: 496px;
    padding: 1em ;
}

@media (max-width: 991px) {

    .product_card{
        flex-basis: 50%;
        -webkit-flex-basis:50%;
    }
}

@media (max-width: 600px) {

    .product_card{
        flex-basis: 100%;
        -webkit-flex-basis:100%;
        /*margin: 0 2em;*/

    }
}

.product_card_nav{
    padding: 16px 16px 24px;
    background-color: #f3f4f8;
    border-radius: 20px;
    height: 100%;
    transition: box-shadow 0.5s;
    max-height: 30em;
}

.product_card_nav:hover{
    box-shadow: 6px 2px 6px 0px rgba(0,0,0,0.25);
}

.product_card span{
    color: #171717;
}

.product_card .product_name{
    font-size: 20px;
    line-height: 36px;
    /*margin-bottom: 1em;*/
    min-height: 72px;
    margin-right: 60px;
}

@media (max-width: 991px) {
    .product_card .product_name{
        font-size: 20px;
    }
}

.product_card .product_info{
    font-size: 16px;
    line-height: 28px;
    margin-right: 70px;
}

.product_card .product_enter{
    position: absolute;
    right: 16px;
    bottom: 24px;
    background-color: rgba(23, 23, 23, 0.8);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    transition: background-color 0.5s;
    border-radius: 10px;
}



.product_card_nav:hover .product_enter{
    background-color: #1e66f8;
}

.hr{
    position: absolute;
    top: -5em;
    width: 100%;
}



/** product card END **/
