.x-service{
    
    padding: .5rem 0 1rem;
    background: #ffffff;
}
.x-service-tool{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.x-service-tool .title{
    background: url(/static/res/image/img_09.png) no-repeat center;
    background-position: 0 0rem;
    padding-left: .7rem;
    font-weight: 900;
}
.x-service-list{
    margin: .5rem 0;
}
.x-service-list-item{
    background-color: #ebf1f6;
    display: flex;
    justify-content: space-between;
    padding: .3rem;
    flex-wrap: wrap;
    border-radius: 20px;
    transition: all .3s;
    border: 1px solid #ebf1f6;
    margin-bottom: .2rem;
}
.x-service-list-item .left{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.x-service-list-item .left svg{
    margin-right: .15rem;
}
.x-service-list-item .left h4{
    font-weight: 800;
    transition: all .3s;
}
.x-service-list-item .left h4:hover{
    color: #cb0631;
    cursor: pointer;
}


.x-service-list-item .right{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.x-service-list-item .right .time{
    color: #888888;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: .25rem;
}
.x-service-list-item .right .time svg{
    margin-right: .05rem;
}
.x-service-list-item .right .downlod{
    display: inline-block;
}

.x-service-list-item .right .downlod a{
    background-color: rgba(0, 0, 0, .5);
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
}

.x-service-list-item .right .downlod a svg path {
    transition: all .3s;
}

.x-service-list-item:hover{
    background-color: #ffffff;
    border-color: rgba(0,0,0,.1);
    cursor: pointer;
}

.x-service-list-item:hover .downlod a{
    background-color: #f0f0f0;
}
.x-service-list-item:hover .downlod a svg path{
    fill: #cb0631;
}

/*单独设置分页*/
.pageMain .pagination a{
    background-color: #f5f5f5;
}





@media (max-width: 1024px) {

}
@media (max-width: 991px) {
   
}
@media (max-width: 767px) {
    .x-service-tool{
        display: block;
    }
    .x-service-list-item{
        margin-bottom: .5rem;
    }
    .x-service-tool .title{
        margin-bottom: .3rem;
        padding-left: 1rem;
    }
    .x-service-list-item .left{
        margin-bottom: .5rem;
    }
    .x-service-list-item .right{
        width: 100%;
        justify-content: space-between;
    }
    .x-service-list-item .right .downlod a{
        width: .8rem;
        height: .8rem;
    }
}









