/* static/css/right-guide.css - 取消「内容导航」加粗 */
.right-guide {
    width: 160px;
    padding: 15px;
    background: #f5faff;
    /* 浅蓝背景，区分正文 */
    border-radius: 8px;
    flex-shrink: 0;
    /* 固定宽度 */
    height: 100%;
    /* 和正文滚动区高度一致 */
    /* 内部内容上下居中 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 112, 184, 0.1);
}

.guide-title {
    font-size: 14px;
    font-weight: normal;
    /* 核心修改：取消加粗（也可写400） */
    color: #222;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-list li {
    margin: 10px 0;
    padding-left: 6px;
    transition: all 0.2s;
}

.guide-list li:hover {
    padding-left: 10px;
}

/* 未高亮项颜色变浅（#999），高亮项保持#0070b8 */
.guide-list li a {
    font-size: 13px;
    color: #999;
    /* 未激活：浅灰色 */
    transition: color 0.2s;
    /* 颜色过渡更顺滑 */
}

/* hover时：变深一点，但不超过高亮色 */
.guide-list li a:hover {
    color: #666;
    /* hover后变中灰色 */
}

/* 高亮项：保持原有蓝色，不变 */
.guide-list li a.active {
    color: #0070b8;
    /* 高亮色不变 */
    font-weight: 600;
    position: relative;
}

.guide-list li a.active::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 25%;
    height: 50%;
    width: 2px;
    background: #0070b8;
    border-radius: 1px;
}

.product-brief {
    font-size: 10px;
    /* 比导航文字小一点，不抢戏 */
    color: #999;
    /* 主色，清晰醒目 */
    margin-bottom: 10px;
    /* 和导航栏留间距 */
    padding: 5px 0;
    /* border-left: 3px solid #007bff; */
    /* 加个小竖线，提升视觉层级 */
    /* padding-left: 10px; */
}

/* 可选：加粗核心词 */
.product-brief strong {
    color: #007bff;
    /* 品牌色突出 */
}