.search-bar {
    transition: 0s;
}
.search-bar .form-group label{
    font-size: var(--font-h7);
}
.search-bar .form-group:nth-child(2){
    margin-right: 10px;
}
.search-bar .form-group:nth-child(3) label{
    font-weight: bold;
    margin-right: 10px;
}
@media(max-width:1199px){
    .search-bar{
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        border:1px solid var(--con-font-black);
        border-bottom: 0;
    }
    .search-bar .form-group{
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    .search-bar input,.search-bar select{
        width: auto;
        flex: 1;
        min-width: 50px;
        margin-bottom: 0px;
    }
    .search-bar-btn{
        display: flex;
        margin-bottom: 20px;
    }
    .search-bar button{
        margin: 0 auto;
    }
}

h4{
    font-size: var(--font-h6);
    color: var(--con-font-black);
    font-weight: bold;
    margin-bottom: 15px;
}

section>table{
    width: 100%;
    table-layout: fixed;
}
table thead{
    background-color: var(--title-font-blue);
    color: var(--white);
}
table thead tr th{
    padding: 10px;
    height: auto;
    font-weight: bold;
    line-height: 1;
}
section>table thead tr th:nth-child(1){ 
    width: 42.2%;
}
section>table thead tr th:nth-child(2){
    width: 28.3%;
}
section>table thead tr th:nth-child(3){
    width: 11.5%;
}
section>table thead tr th:nth-child(4){
    width: 8%;
}
section>table thead tr th:nth-child(5){
    width: 10%;
}

table tbody tr td{
    padding: 15px 10px;
    height: auto;
    line-height: 1;
    font-size: var(--font-h7);
}
section>table tbody tr td:first-child{
    display: flex;
    align-items: center;
}
section>table tbody tr td .img{
    min-width: 100px;
    width: 100px;
    height: 70px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}
section>table tbody>tr+*{
    border-top: 1px solid var(--input-boder);
}

@media(max-width:1199px){
    section>table thead{
        display: none;
    }
    section>table tbody tr{
        display: flex;
        flex-direction: column;
        border: 1px solid var(--input-boder);
        margin-bottom: 15px;
    }
    section>table tbody tr td{
        padding: 10px;
        padding-left: 120px;
        display: flex;
        align-items: center;
        position: relative;
    }
    section>table tbody tr td:first-child{
        flex-direction: column;
        align-items: flex-start;
    }
    section>table tbody tr td .img{
        margin-bottom: 7px;
        min-width: 150px;
        width: 150px;
        height: 120px;
    }
    section>table tbody tr td:nth-child(3){
        overflow : initial;
        text-overflow :initial;
        white-space :initial;
    }
    section>table tbody tr>td+*{
        border-top: 1px solid var(--input-boder);
    }
    section>table tbody tr td::before{
        content: attr(data-th)"：";
        width: 105px;
        height: 100%;
        padding: 10px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        background-color: var(--title-font-blue);
        color: var(--white);
        text-align: right;
        position: absolute;
        top: 0;
        left: 0;
    }
    section>table tbody tr td:last-child a{
        margin: 0;
    }
}

.details{
    width: 100%;
    display: grid;
    grid-template-columns:repeat(2,1fr);
    border-top: 1px solid var(--input-boder);
    margin-bottom: 50px;
}
.detail{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3,1fr);
}
.details .detail>div{
    padding: 15px;
    line-height: 1;
    border-bottom: 1px solid var(--input-boder);
}
.details .detail:first-child::after{
    content: '';
    border-bottom: 1px solid var(--input-boder);
}
.details .detail:last-child>div{
    text-align: right;
    font-size: var(--font-h7); 
}
.details .detail>div span:last-child{
    display: inline-block;
    width: 85px;
}
.details .detail:last-child>div span:last-child{
    text-align: right;
    color: var(--cancel);
}
@media(max-width:991px){
    .details{
        grid-template-columns:repeat(1,1fr);
    }
    .detail{
        grid-template-rows:none;
    }
    .details .detail:first-child::after{
        display: none;
    }
    .details .detail>div{
        text-align: right;
    }
    .details .detail>div span:last-child{
        text-align: right;
    }
}

.infomations{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 10px;
    row-gap: 15px;
}
.infomations table tbody tr td{
    border-bottom: 1px solid var(--input-boder);
}
@media(max-width:991px){
    .infomations{
        grid-template-columns: repeat(1,1fr);
    }
    .infomations table tbody tr td span{
        min-width: 50px;
    }
    .infomations table tbody tr td{
        display: flex;
    }
}