function showDetail(paperId) {
    // 隐藏 smartflow-paper-paperId 的所有兄弟节点
    var siblings = document.querySelectorAll(`div[id^='smartflow-paper-']:not(#smartflow-paper-${paperId.replace('.', '-')})`);
    siblings.forEach(sibling => sibling.style.display = 'none');

    // 显示当前节点
    var paper = document.getElementById(`smartflow-paper-${paperId.replace('.', '-')}`);
    if (paper) {
        paper.style.display = 'block';
    }

    document.getElementById("paper-detail-area").style.display = "block";
    document.getElementById("paper-detail-area").scrollIntoView({
        behavior: 'smooth'
    });
}



// 从URL中获取参数
function getPaper() {
    const paperId = new URLSearchParams(window.location.search).get('paper');

    if (paperId) {
        // showDetail(paperId);
    }
}