/* 一站解决方案样式 */
.one-stop-solution {
    background-color: transparent;
    background-image: linear-gradient(40deg, #E7D3D3 10%, #FFFFFF 30%);
}

.solution-title {
    font-size: 3.7vw;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.1em;
    letter-spacing: -2px;
    word-spacing: 0em;
    color: #212121;
}

.module-title {
    color: #212121;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    text-decoration: none;
    line-height: 1.1em;
    letter-spacing: 0px;
    word-spacing: 0em;
}

.solution-description {
    padding: 1.5rem 0;
}

/* 大屏幕样式 (≥992px) */
@media (min-width: 992px) {
    .solution-left {
        border-right: 1px solid #e5e7eb;
        padding-right: 2rem;
    }
    
    .solution-right {
        border-left: 1px solid #e5e7eb;
        padding-left: 2rem;
    }
    
    .solution-grid {
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        padding: 1.5rem 0;
    }
    
    .solution-module {
        border: none !important;
    }
    
    .solution-module:nth-child(odd) {
        border-right: 1px solid #e5e7eb !important;
    }
        .solution-module:nth-child(2n) {
        border-right: 1px solid #e5e7eb !important;
    }
    
    .solution-module:nth-child(-n+2) {
        border-bottom: 1px solid #e5e7eb !important;
    }
}

/* 中等屏幕样式 (≥768px 且 <992px) */
@media (min-width: 768px) and (max-width: 991px) {
    .solution-title {
        font-size: 2.5rem;
    }
}

/* 小屏幕样式 (<768px) */
@media (max-width: 767px) {
    .solution-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .solution-module {
        border-bottom: 1px solid #e5e7eb;
        border-left: none;
        border-right: none;
        border-top: none;
        border-radius: 0;
    }
    
    .solution-module:last-child {
        border-bottom: none;
    }
    
    .solution-grid {
        gap: 0;
    }
}