/* 修改后的services.css */
.content .content-list{
    margin: 10px auto 0;
    padding-bottom: 60px;
    max-width: 1200px; /* 限制最大宽度为1200px */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* 保持原有其他样式不变 */
.content-list .service-content{
    width: 48%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 20px;
    border: 1px solid #F0F1F3;
    overflow: hidden;
    padding: 10px;
}
.service-content .service-content-img{
    width: 36.4%;
    aspect-ratio: 213 / 219;
}
.service-content .service-content-img img{
    object-fit: cover; /* 确保图片适配容器 */
}
/* 其他原有样式保持不变 */
    .service-content .service-content-text{
        height: 200px;
        padding: 0 15px;
    }
    .service-content .service-content-title{
        font-size: 15px;
    }
    .service-content .service-content-desc{
        margin-top: 10px;
    }

@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .service-content .service-content-text{
        padding: 0 15px;
    }
    .service-content .service-content-title{
        font-size: 15px;
    }
    .service-content .service-content-desc{
        margin-top: 10px;
    }
}

@media only screen and (max-width: 1000px) {
    .service-content .service-content-text{
        padding: 0 10px;
    }
    .service-content .service-content-title{
        font-size: 14px;
        line-height: 18px;
    }
    .service-content .service-content-desc{
        margin-top: 0;
    }
}

