/* 服务特点部分样式 */
.service-features {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 15px;
    padding: 20px;
    flex: 0 1 auto;
    min-width: 250px;
    border-right: 1px solid #eee;
    text-align: center;
}

.feature:last-child {
    border-right: none;
}

.feature img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.feature span {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

/* 修改响应式布局 */
@media (max-width: 768px) {
    .service-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 20px 10px;
    }

    .feature {
        flex: 0 0 50%;
        /* 设置为50%宽度 */
        min-width: unset;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
        margin: 0;
        box-sizing: border-box;
    }

    /* 清除右边的边框 */
    .feature:nth-child(2n) {
        border-right: none;
    }

    /* 清除最后两个元素的底部边框 */
    .feature:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* 更小屏幕的优化 */
@media (max-width: 480px) {
    .service-features {
        padding: 15px 5px;
    }

    .feature {
        padding: 12px 8px;
    }

    .feature img {
        width: 24px;
        height: 24px;
    }

    .feature span {
        font-size: 13px;
    }
}