.content{
    margin: 40px auto 60px;
}
.content .title{
    margin-bottom: 40px;
}
.content .service-content{
    display: flex;
    justify-content: space-between;
}
.content .service-content-item{
    width: 32%;
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.1);
    border-radius: 12px;
    background: #FFFFFF;
    padding: 29px;
    cursor: pointer;
    border: 1px solid #FFFFFF;
}
.content .service-content-item:hover{
    border: 1px solid #15499A;
}
.content .service-content-item .service-img{
    width: 66px;
    height: 66px;
}
.content .service-content-item .service-img img{
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.content .service-content-item .service-content-text .service-content-title{
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    line-height: 25px;
    margin-top: 10px;
}
.content .service-content-item .service-content-text .service-content-text{
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    margin-top: 15px;
}



@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .content .title{
        margin-bottom: 30px;
    }
    .content .service-content-item{
        padding: 10px;
    }
    .content .service-content-item .service-content-text .service-content-text{
        line-height: 21px;
    }

}
@media only screen and (max-width: 1000px) {
    .content .title{
        margin-bottom: 20px;
    }
    .content .service-content-item{
        width: 32.7%;
        padding: 10px;
    }
    .content .service-content-item .service-img{
        width: 50px;
        height: 50px;
    }
    .content .service-content-item .service-content-text .service-content-title{
        font-size: 16px;
        margin-top: 0;
    }
    .content .service-content-item .service-content-text .service-content-text{
        font-size: 12px;
        line-height: 18px;
        margin-top: 0;
    }
}