/* 解决方案页：复用 product.css 区块，补充主体与对照表样式 */

.solution-page .solution-entities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.solution-page .solution-entity {
    padding: 22px 20px;
    background: #fff;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
}

.solution-page .solution-entity__title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    color: #284e9d;
}

.solution-page .solution-entity__desc {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}

.solution-page .solution-entity__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.solution-page .solution-entity__tag {
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #444;
    background: #f3f6fb;
    border-radius: 999px;
}

.solution-page .solution-table-wrap {
    overflow-x: auto;
    border: 1px solid #e5e9f0;
    border-radius: 12px;
    background: #fff;
}

.solution-page .solution-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 14px;
}

.solution-page .solution-table th,
.solution-page .solution-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eef1f6;
    vertical-align: top;
}

.solution-page .solution-table th {
    background: #f7fafc;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.solution-page .solution-table td {
    color: #555;
    line-height: 1.5;
}

.solution-page .solution-table tbody tr:last-child td {
    border-bottom: none;
}

.solution-page .solution-table tbody tr:hover td {
    background: #fafbfd;
}

@media (max-width: 1024px) {
    .solution-page .solution-entities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .solution-page .solution-entities {
        grid-template-columns: 1fr;
    }
}
