body {
    background-color: #F8F8F8;
}

.nav_one {
    width: auto;
}

.product_list {
    display: flex;
    flex-wrap: wrap;
}

.product_lone {
    width: 24.2%;
    margin-right: 1%;
    padding: 10px;
    border-radius: 15px;
    cursor: pointer;
    transition: .5s;
    margin-bottom: 45px;
}

.product_ltop {
    background-color: #fff;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 290px; */
    border-radius: 15px 15px 15px 15px;
    transition: .5s;
    height: 15.15vw;
    min-height: 270px;
}

.product_ltop img {
    max-height: 97%;
}

.product_ltext {
    padding: 27px 6px 17px;
    font-size: 18px;
    color: #333333;
}

.product_lone:hover {
    background-color: #fff;
    transition: .5s;
    box-shadow: 0 0px 20px 1px rgba(0, 0, 0, 0.08);
}

.product_lone:hover .product_ltop {
    background-color: #DDDDDD;
    transition: .5s;
}

.search_btn {
    cursor: pointer;
}

@media(max-width:1400px) and (min-width:1200px) {
    .product_ltext {
        font-size: 16px;
        padding: 20px 6px 10px;
    }
}

@media(max-width:1200px) and (min-width:1024px) {
    .product_ltop {
        min-height: 220px;
    }
    .product_ltext {
        font-size: 14px;
        padding: 20px 6px 10px;
    }
}

@media(min-width:1024px) {
    .product_lone:nth-child(4n) {
        margin-right: 0;
    }
}

@media(max-width:1024px) {
    .nav_all {
        display: block !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    body {
        background-color: #FFFFFF;
    }
    .product_lall {
        padding-top: 0;
    }
    .product_list {
        display: block;
    }
    .product_lone {
        width: 100%;
        margin-right: 0;
        background-color: #fff;
        box-shadow: 0 0px 20px 1px rgba(0, 0, 0, 0.08);
        margin-bottom: 24px;
    }
    .product_ltop {
        background-color: #DDDDDD;
    }
    .product_ltext {
        font-size: 16px;
        padding: 22px 5px 15px;
    }
    .search_all {
        width: 100%;
    }
}