      /* 隐藏滚动条但保留滚动功能 */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        /* 微信悬浮卡片侧滑展开过渡效果 */
        .hover-card-trigger:hover .hover-card-target {
            opacity: 1;
            transform: translateX(0) scale(1);
            pointer-events: auto;
        }
        .detail-content {
    font-size: 15.5px;
    line-height: 1.85;
    color: #334155;
}

/* 段落和标题间距 */
.detail-content p {
    margin-bottom: 0.25em;
}

.detail-content h3 {
    margin: 2em 0 1em 0;
    font-weight: 700;
    color: #1e2937;
}

/* 有序列表（ol）美化 - 重点优化序号 */
.detail-content ol {
    margin: 1.6em 0;
    padding-left: 1.8em;
    counter-reset: custom-counter;   /* 支持自定义序号 */
}

.detail-content ol li {
    position: relative;
    margin-bottom: 0.85em;
    padding-left: 0.4em;
}

.detail-content ol li::before {
    content: counter(custom-counter) "、";
    counter-increment: custom-counter;
    position: absolute;
    left: -1.8em;
    font-weight: 700;
    color: #646464;           /* 序号颜色，可自行修改 */
    width: 1.6em;
    text-align: right;
}

/* 如果你想要默认的阿拉伯数字也可以使用下面这套（更简洁） */
.detail-content ol {
    list-style-type: none;           /* 先去掉默认样式 */
    padding-left: 0;
}

.detail-content ol li {
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 0.85em;
}

.detail-content ol li::before {
    content: counters(custom-counter, ".") "、";
    counter-increment: custom-counter;
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1e40af;
}

/* 无序列表保持不变 */
.detail-content ul {
    margin: 1.6em 0;
    padding-left: 1.6em;
    list-style-type: disc;
}

.detail-content ul li {
    margin-bottom: 0.7em;
}

/* 其他通用美化 */
.detail-content blockquote {
    margin: 2em 0;
    padding: 1.25em 1.5em;
    border-left: 5px solid #0ea5e9;
    background: #f0f9ff;
    border-radius: 0 12px 12px 0;
    color: #1e40af;
    font-style:solid;
}

.detail-content img {
    max-width: 100%;
    border-radius: 14px;
    margin: 1.8em 0;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}