/* solution.css
   解决方案页面（Solution.cshtml）专用样式
   - 视觉风格与首页保持一致
*/

/* 页面标题区域 */
.page-header {
    padding: 36px 0;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* 页面主体区域 */
.solutions-section {
    padding: 48px 0;
    background-color: #ffffff;
}

.solutions-intro {
    margin-bottom: 28px;
}

    .solutions-intro h2 {
        margin: 0 0 10px 0;
    }

    .solutions-intro p {
        color: #666;
        margin: 0;
        max-width: 760px;
    }

/* 解决方案卡片网格 */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card__image {
    height: 180px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b8b8b;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

.solutionsoftware-card__image {
    height: 250px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b8b8b;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}


.solution-card__content {
    padding: 16px;
}

    .solution-card__content h3 {
        margin: 0 0 8px 0;
        font-size: 1.05rem;
    }

    .solution-card__content p {
        margin: 0;
        color: #555;
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* 分区标题与布局 */
.solution-block {
    margin-top: 36px;
}

    .solution-block h3 {
        margin: 0 0 12px 0;
        font-size: 1.25rem;
    }

    .solution-block p {
        margin: 0 0 18px 0;
        color: #666;
    }

/* 响应式优化 */
@media (max-width: 768px) {
    .solutions-section {
        padding: 32px 0;
    }

    .solution-card__image {
        height: 160px;
    }
}
