#details{
    max-width: 1000px;
    margin: 50px auto 30px;
    padding: 0 10px;
    box-sizing: border-box;
}
.result_box{
    padding: 0 0 30px;
    margin: 0 auto 30px;
    border-bottom: 1px solid #eee;
}
.result_imgs{
    display: flex;
    gap: 20px;
    align-items: center;
}
.result_imgs .left img{
    width: 100%;
}
.result_imgs .left{
    width: 67.8%;
}
.result_imgs .right{
    width: 32.2%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.result_box table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.result_box table th,
.result_box table td{
    background-color: #fff;
    padding: 8px 12px;
    box-sizing: border-box;
    white-space: nowrap;
    border: 1px solid #aaa;
    font-weight: normal;
}
.result_box table th{
    background-color: #F2F2F2;
}
.result_box table td.itemname{
    white-space: unset;
}
.result_box table td a{
    background-color: #af1e23;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .bike_search_area{
        text-align: left;
    }
    #page_result .search_area select{
        width: 47%;
        margin: 1%;
    }
    #details{
        margin-top: 30px;
    }
    .result_imgs{
        display: block;
    }
    .result_imgs .left,
    .result_imgs .right{
        width: 100%;
    }
    .result_imgs .right{
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        margin-top: 2%;
    }
    .result_imgs .right a{
        width: 48% !important;
    }
    .result_box table{
        border-bottom: 1px solid #aaa;
    }
    .result_box table th,
    .result_box table td{
        display: block;
        border-bottom: 0;
        padding: 10px;
        text-align: center;
    }
    .result_box table td.itemname{
        text-align: left;
    }
}