
.service-list{
    /*margin-top: 40px;*/
    margin-bottom: 30px;
}
.service-list .service-list-title{
    /*margin-bottom: 10px;*/
    /*font-size: 24px;*/
    /*color: #107fc9;*/
}
.service-header{
    overflow: auto;
    margin-bottom: 10px;
}
.service-header-name,
.service-header-preview{
    height: 56px;
    line-height: 56px;
    color: #fff;
    padding-left: 18px;
    float: left;
    font-size: 24px;
}
.service-header-name{
    background-color: #128ee0;
    width: 260px;
    margin-right: 10px;
}

.service-header-preview{
    background-color: #999;
    width: calc(100% - 270px);
}

.service-item {
    overflow: auto;
    margin-bottom: -1px;
}

.service-name,
.service-preview {
    float: left;
    height: 124px;
}

.service-name a {
    display: inline-block;
    vertical-align: middle;
    font-size: 19px;
    margin-left: 18px;
    font-weight: 700;
    line-height: 22px;
    padding-right: 20px;
    text-align: left;
    white-space: normal;
}

.service-name {
    width: 260px;
    background: #d6efff;
    margin-right: 10px;
    white-space: nowrap;
    border: 1px #51a4db solid;
}

.service-name:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; /* Adjusts for spacing */
}

.service-preview {
    border: 1px #b9b9b9 solid;
    background: #f8f8f8;
    width: calc(100% - 270px);
    padding: 12px 18px;
    overflow: hidden;
    position: relative;
}
.service-preview .show-more {
    background: #f8f8f8;
    position: absolute;
    height: 36px;
    left: 0;
    bottom: 0;
    right: 0;
    padding-left: 18px;
}
.service-preview .show-more a{
    font-size: 16px;
}

@media (max-width: 640px){
    .service-header{
        display: none;
    }

    .service-item{
        margin-bottom: 15px;
    }
    .service-name {
        height: 50px;
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .service-preview{
        width: 100%;
        float: none;
        margin-top: -1px;
    }

}