/* 表格容器 */
.product__description.rich-text table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* 表格整体外框（高端商务风） */
.product__description.rich-text table {
    border: 2px solid #ccc !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

/* 单元格基础样式 */
.product__description.rich-text table td {
    padding: 14px 16px !important;
    vertical-align: middle !important;
    font-size: 15px !important;
    display: table-cell !important;
    border-bottom: 1px solid #d0d0d0 !important; /* 更深的横线 */
}

/* 更清晰的竖线 */
.product__description.rich-text table td:not(:last-child) {
    border-right: 1px solid #c8c8c8 !important; /* 深灰色，清晰但不刺眼 */
}

/* 双色行背景 */
.product__description.rich-text table tr:nth-child(odd) {
    background: #f5f5f5 !important; /* 比 #fafafa 更深一点，增强对比 */
}
.product__description.rich-text table tr:nth-child(even) {
    background: #ffffff !important;
}

/* 表头列（1、3） */
.product__description.rich-text table td:nth-child(1),
.product__description.rich-text table td:nth-child(3) {
    font-weight: 700 !important;
    color: #222 !important;
    background: #e9e9e9 !important; /* 更深的灰色，区分更明显 */
    width: 22% !important;
}

/* 值列（2、4） */
.product__description.rich-text table td:nth-child(2),
.product__description.rich-text table td:nth-child(4) {
    font-weight: 400 !important;
    color: #444 !important;
    width: 28% !important;
}

/* 正文二级标题 H2 */
.product__description.rich-text h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin: 28px 0 14px !important;
    padding-left: 10px !important;
    border-left: 3px solid #007bff !important; /* 品牌色强调线 */
    line-height: 1.4 !important;
}
/* 正文图片统一美化 */
.product__description.rich-text img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important; /* 圆角 */
    box-shadow: 0 4px 14px rgba(0,0,0,0.12) !important; /* 阴影 */
    margin: 20px 0 !important; /* 上下间距 */
    display: block !important;
}
/* 多张图片连续时增加间距 */
.product__description.rich-text p img + img {
    margin-top: 20px !important;
}
.product__description.rich-text p {
    margin: 20px 0 !important;
}

.blockreassurance--product {
    display: none !important;
}
/* PC 端右侧悬浮模块卡片化 */
@media (min-width: 992px) {

    .product__right {
        background: #ffffff !important;
        padding: 20px !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
        border: 1px solid #e5e5e5 !important;
        height: fit-content !important;
        z-index: 10 !important;
    }

    .product__right > * {
        margin-bottom: 18px !important;
    }

    /* 阶段 1：上半部分 */
    .product__right.sticky-top-100 {
        position: sticky !important;
        top: 100px !important;
    }

    /* 阶段 2：进入 bottom 区域（top 值由 JS 动态设置） */
    .product__right.sticky-dynamic {
        position: sticky !important;
    }

    .product__bottom {
        display: flex;
        gap: 40px;
    }

    .product__bottom-left {
        flex: 1;
    }

    .product__bottom-right {
        width: 360px;
        margin-left: auto;
    }
}
