/* BASIC css start */
.showroom{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 70px;
}

.showroom .title{font-size: 40px; margin:0 1rem;}

.showroom .show_list{
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.showroom .list_box{
    display: flex;
    gap: 30px;
    background: #fff;
    overflow: hidden;
}

.showroom .list_box .content-box{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showroom .list_box .title {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 12px 0;
        color: #222;
    }

.showroom .list_box .desc {
        font-size: 14px;
        color: #555;
        margin-bottom: 18px;
    }

.showroom .list_box .map_link {
        display: inline-block;
        width: fit-content;
        padding: 10px 16px;
        background-color: #000;
        color: #fff;
        font-size: 13px;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.3s;
    }
    
    
@media (max-width:1024px) {
   
    .showroom .title{font-size: 30px;}
    .showroom .list_box{flex-direction: column;}
    .showroom .list_box .img_box{width: calc(100% - 2rem); margin:0 auto;}
    .showroom .list_box .img_box img{width:100%;}
    
}    
    
/* BASIC css end */

