.flower_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-bottom: 80px;
    padding-top: 80px;
    border-bottom: 1px solid #ccc;
}

.flower_main .flower_left {
    
}

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

.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: 80%;
}

.f_product_right .f_series_product .f_series_probox .f_series_proname {
    margin-top: 20px;
    text-align: left;
    color: #000;
    border-bottom: 2px solid #ccc;
    width: 80%;
    margin-left: auto;
}

.f_product_right .f_series_product .f_series_probox .f_series_proname h5 {
    padding-bottom: 10px;
}

.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: #000;
    display: flex;
    gap: 20px;
    width: 80%;
    margin-left: auto;
}

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

.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_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;
    }
}