/* 解决的问题模块样式 */
.solved-problems-v2 {
    padding: 0;
    margin-top: 24px;
}

.solved-problems-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.solved-problems-v2-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: left;
}

.solved-problems-v2-content {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.solved-problems-v2-item {
    margin-bottom: 0;
}

.solved-problems-v2-item:last-child {
    margin-bottom: 0;
}

.solved-problems-v2-description {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .solved-problems-v2 {
        padding: 16px 0;
    }

    .solved-problems-v2-container {
        padding: 0 16px;
    }

    .solved-problems-v2-title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .solved-problems-v2-content {
        padding: 16px;
        border-radius: 6px;
    }

    .solved-problems-v2-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .solved-problems-v2-container {
        padding: 0 12px;
    }

    .solved-problems-v2-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .solved-problems-v2-content {
        padding: 14px;
    }

    .solved-problems-v2-description {
        font-size: 12px;
    }
}