/* 结果列表开始 */
.search-res{}

.search-wrap{
    display: none;
    font-size: 18px;
    margin-top: 13px;
    position: relative;
}

.search-wrap form{
    width: 100%;
    height: 4em;
    border: 1px solid #EBECEF;
    border-radius: 2.6em;
    overflow: hidden;
}

.search-wrap input{
    width: 100%;
    height: inherit;
    border: none;
    outline: none;
    box-sizing: border-box;
    padding-left: 4em;
    font-size: 1.2em;
}

.search-wrap img{
    width: 2.8em;
    height: 2.8em;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
}

.search-title{
    border-bottom: 1px solid #821316;
    margin: 10px 0 30px;
}

.searchL h3{
    font-size: 18px;
    color: #1B1919;
    margin-right: 5px;
    line-height: 40px;
}

.searchL p{
    font-size: 16px;
    color: #757474;
}

.searchL .red-text{
    color: #CA2706;
}

.searchR img{
    margin-right: 5px;
}

.searchR p, .searchR p a{
    font-size: 15px;
    color: #ACA9A9;
}

.res-list li{
    box-sizing: border-box;
    margin-bottom: 14px;
    position: relative;
}

.res-list li a{
    box-sizing: border-box;
    padding: 30px 20px;
    background: #F7F8FC;
}

.resL{
    width: 150px;
    flex-shrink: 0;
    position: relative;
}

.resL::after{
    content: "";
    display: block;
    width: 1px;
    height: inherit;
    background: #C2C9D3;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    z-index: 99;
}

.resL h3{
    font-size: 28px;
    color: #9B0A0E;
    line-height: 30px;
}

.resL p{
    font-size: 14px;
    color: #A6A9AC;
    line-height: 40px;
}

.resR{
    width: calc(98% - 150px);
    height: auto;
}

.resR h3{
    font-size: 16px;
    color: black;
    line-height: 30px;
    height: 30px;
}

.resR p{
    font-size: 14px;
    color: #656464;
    line-height: 25px;
    height: 50px;
}

.res-list li:hover .resR h3{
    color: #9B0A0E;
}

.res-list li:hover .resR p{
    color: #333333;
}

.res-list li::after{
    content: "";
    width: 100%;
    height: 2px;
    background: #9B0A0E;
    transition: all 0.2s ease-out 0s;
    transform:scaleX(0);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.res-list li:hover::after{
    transform: none;
}

/* 结果列表结束 */


/* 响应式处理开始 */
@media screen and (max-width: 998px){
    .search-res{
        box-sizing: border-box;
        padding: 0 2%;
    }

    .searchR{
        display: none;
    }

    .searchL{
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between !important;
    }

    .search-wrap{
        display: block;
    }
}

@media screen and (max-width: 698px){
    .resL{
        width: 110px;
    }

    .resL::after{
        right: 20px;
    }

    .resR{
        width: calc(98% - 110px);
    }

    .res-list li a{
        padding: 15px;
    }

    .resL h3{
        font-size: 24px;
    }

    .search-wrap{
        font-size: 16px;
    }
}

@media screen and (max-width: 598px){
    .search-wrap{
        font-size: 12px;
    }
}


@media screen and (max-width: 500px){
    .sm-paging{
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 400px){
    .resL{
        width: 90px;
    }
    .resL::after{
        right: 12px;
    }

    .resR{
        width: calc(100% - 100px);
    }

    .search-wrap{
        font-size: 10px;
    }
}









/* 响应式处理结束 */