.flower_main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-bottom: 80px;
    padding-top: 80px;
    border-bottom: 1px solid #707070;
}
.flower_main:last-child{
    border-bottom: none;
}
.flower_main .flower_left {
    
}

.flower_main .flower_left img {
    /*
    min-height: 650px;
    object-fit: cover;
*/
    width: 100%;
    height: 25rem;
    object-fit: cover;
    object-position: center;
}

.f_product_right {
    display: flex;
    justify-content: center;
    align-items: start;
}

.f_product_right .f_series_product {}

.f_product_right .f_series_product .f_series_probox {}

.f_product_right .f_series_product .f_series_probox .f_series_proimg {
    width: 100%;
    text-align: right;
}

.f_product_right .f_series_product .f_series_probox .t_series_proimg {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.f_product_right .f_series_product .f_series_probox .f_series_proimg img {
    width: 90%;
}

.f_product_right .f_series_product .f_series_probox .f_series_proname {
    margin-top: 20px;
    text-align: left;
    color: #46484b;
    border-bottom: 1px solid #707070;
    width: 90%;
    margin-left: auto;
}

.f_product_right .f_series_product .f_series_probox .f_series_proname h5 {
    padding-bottom: 10px;
    color: #46484b;
} 

.f_product_right .f_series_product .f_series_probox .f_series_proname p {}

.f_product_right .f_series_product .f_series_probox .f_series_finsh {
    padding-top: 10px;
    text-align: center;
    color: #46484b;
    display: flex;
    gap: 20px;
    width: 90%;
    margin-left: auto;
}

.f_product_right .f_series_product .f_series_probox .f_series_finsh p {
    font-size: 18px;
    position: relative;
    color: #46484b;
}

.f_product_right .f_series_product .f_series_probox .f_series_finsh p::after {
    content: " | ";
    position: absolute;
    right: -15px;
}
.f_product_right .f_series_product .f_series_probox .f_series_finsh p:last-child::after {
    content: none;
    
}
.f_product_right .f_series_product .f_series_probox .f_series_proname h5{
    font-size: 24px;
}
@media(max-width:1090px){
    .flower_main{
        grid-template-columns: 1fr !important;
    }
    .f_product_right .f_series_product .f_series_probox .f_series_proimg{
        text-align: center;
    }
    .f_product_right .f_series_product .f_series_probox .f_series_proname h5{
        text-align: center;
    }
    .f_product_right .f_series_product .f_series_probox .f_series_finsh{
        justify-content: center;
        width:100%;
    }
    .f_product_right .f_series_product .f_series_probox .f_series_proname{
        border: none;
         width:100%;
    }
    
}
@media(max-width:590px){
    .f_product_right .f_series_product .f_series_probox .f_series_finsh{
        display: block;
    }
    .f_product_right .f_series_product .f_series_probox .f_series_finsh p::after {
        display: none;
    }
}