/* ========================================
   右侧边栏样式
======================================== */

.lsd-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* 侧边栏区块 */
.lsd-sidebar-section {
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}
.lsd-sidebar-section-box-cptj {
    border: 1px solid #e5e7ebff;
    background-color: #f9fafbff;
    margin-bottom: 0 !important;

}

.lsd-sidebar-section:last-child {
    margin-bottom: 0;
}

/* 区块标题 */
.lsd-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F3F4F6;
}

/* ========================================
   产品卡片
======================================== */
.lsd-product-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lsd-product-card {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e5e7ebff;
    transition: all 0.2s;
}

.lsd-product-card:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.lsd-product-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.lsd-product-card-desc {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 12px;
    line-height: 1.5;
}

.lsd-product-card-link {
    font-size: 13px;
    color: #2563EB;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.lsd-product-card-link:hover {
    color: #1D4ED8;
}

/* ========================================
   移动端适配
======================================== */
@media screen and (max-width: 768px) {
    .lsd-sidebar {
        width: 100%;
        margin-top: 24px;
    }

    .lsd-sidebar-section {
        padding: 16px;
    }

    .lsd-sidebar-title {
        font-size: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .lsd-product-card-title {
        font-size: 14px;
    }
}
