
.content .content-list{
    margin-top: 40px;
}
.content-list .service-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-top: 30px;
}
.service-content .service-content-img{
    width: 40%;
    aspect-ratio: 480 / 360;
}
.service-content .service-content-img img{
    width: 100%;
    height: 100%;
}
.service-content .service-content-text{
    width: 56%;
}
.service-content .service-content-title {
    font-weight: bold;
    color: #1A1A1A;
    font-size: 18px;
    line-height: 20px;
}
.service-content .service-content-desc {
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
    line-height: 21px;
}

@media only screen and (min-width: 1000px) and (max-width: 1440px) {

}

@media only screen and (max-width: 1000px) {
    .content .content-list{
        margin-top: 30px;
    }
    .content-list .service-content{
        margin-top: 20px;
    }
    .service-content .service-content-title{
        font-size: 16px;
    }
    .service-content .service-content-desc{
        font-size: 12px;
        line-height: 18px;
    }
}

