@charset "utf-8";
/*----- common -----*/
.service-box,
.service-form,
.service-search {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 50px;
}
.service-box .title,
.service-form .title,
.service-search .title   {
    position: relative;
    box-sizing: border-box;
    color: #191919;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 30px;
}
/*----- 維修登記表單 -----*/
.service-form {
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 50px;
}
.form-wrap .btn-box {
    margin: 0 -5px;
}
/*----- 維修進度查詢 -----*/
.service-search-content {
    position: relative;
    box-sizing: border-box;
    display: table-row;
    text-align: left;
    width: 100%;
}
.service-search-content td {
    position: relative;
    padding: 20px 70px 30px;
    background: #f7f7f7;
}
.service-search-content ul {
    text-align: left;
}
.service-search-btn {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    background: #fff;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
}
.service-search-btn i {
    position: relative;
    z-index: 2;
    top: 2px;
}
.table-h tbody tr{
    background: #f1f1f1; 
}
.table-h tbody tr {
    border-bottom: 0;
    border-top: 1px solid #ddd;
}
.service-search-content{
    border-top: none !important;
}
.service-search-content td:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 0;
    right: 0;
    background: #FFF;
}
.no-item {
    text-align: center;
    padding: 40px 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}
/*----- rwd -----*/
@media screen and (max-width: 1280px) {
    .service-search-content td {
        padding: 20px 15px 30px;
    }
}
@media screen and (max-width: 1000px) {
    .service-form {
        padding: 30px;
        border-radius: 10px;
    }
    .service-box .title,
    .service-form .title,
    .service-search .title {
        font-size: 18px;
        margin: 0 0 20px;
    }
    .table-h {
        border-top: 0;
    }
    .table-h tr {
        padding: 15px 0;
    }
    .table-h td {
        text-align: left;
        padding: 0 15px;
    }
    .table-h td[data-title]:before {
        color: #666;
    }
    .table-h td[data-title]:last-of-type:before {
        display: none;
    }
    .service-search-btn {
        margin: 10px auto 0;
        width: 100%;
    }
    .service-search-content {
        padding: 0 !important;
    }
    .service-search-content td {
        padding: 20px 15px 30px !important;
    }
    .service-search-content ul {
        text-align: left;
    }
}