.sol-list-section {
    background-color: #fff;
    padding: 0 0 80px;
}

/* === 1. 顶部网格导航 (核心) === */
.sol-nav-grid {
    display: grid;
    /* PC端一行显示 5-6 个，自动填满 */
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px; /* 格子间距 */
    margin-bottom: 50px;
}

.sol-nav-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    /* 保持高度一致 */
    min-height: 80px; 
}

/* 图标 */
.sol-nav-icon {
    font-size: 28px !important;
    color: var(--brand-color);
    margin-right: 12px;
    transition: 0.3s;
}


/* 文字 */
.sol-nav-text {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

/* 右下角“点击了解” */
.sol-nav-tip {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 12px;
    color: #999;
    transform: scale(0.9);
    transition: 0.3s;
}

/* 悬停效果 */
.sol-nav-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: var(--brand-color);
}
.sol-nav-item:hover .sol-nav-tip { color: var(--brand-color); }

/* 选中状态 (参考图中的粉色背景，这里改为浅绿) */
.sol-nav-item.active {
    background-color: var(--brand-color); /* 深绿背景 */
    border-color: var(--brand-color);
}
.sol-nav-item.active .sol-nav-icon,
.sol-nav-item.active .sol-nav-text,
.sol-nav-item.active .sol-nav-tip {
    color: #fff; /* 文字变白 */
}

/* === 2. 下方内容区域 === */
.sol-tab-pane {
    display: none; /* 默认隐藏 */
    animation: fadeIn 0.5s ease;
}
.sol-tab-pane.active {
    display: block;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* 分类标题 */
.sol-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.sol-cat-icon {
    font-size: 32px !important;
    color: var(--brand-color);
    margin-right: 15px;
}
.sol-cat-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* 卡片网格 */
.sol-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 一行4个 */
    gap: 20px;
}

.sol-item-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.sol-item-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* 图片区域 */
.sol-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f9f9f9;
}
.sol-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sol-item-card:hover .sol-img-box img { transform: scale(1.05); }

/* 文字区域 */
.sol-info-box {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sol-item-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* 按钮 */
.sol-btn {
    display: block;
    background-color: var(--brand-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}
.sol-btn:hover {
    background-color: #068a48; /* 深一点的绿色 */
    color: #fff;
}

/* === 响应式适配 === */
@media (max-width: 991.98px) {
    /* 导航网格：手机端一行2个 */
    .sol-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .sol-nav-item { padding: 15px 10px; min-height: 70px; }
    .sol-nav-icon { font-size: 20px; margin-right: 8px; }
    .sol-nav-text { font-size: 14px; }
    .sol-nav-tip { display: none; /* 手机端隐藏小字 */ }

    /* 卡片网格：手机端一行1个 */
    .sol-cards-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .sol-img-box { height: 200px; }
}