.paper .section-divider {
    margin-bottom: 0;
}

.paper .section-divider::before {
    display: none;
}

#mindmap-container svg {
    /* 使用 !important 强制覆盖JS脚本生成的 style 属性 */
    width: 100% !important;
    /* 强制宽度占满容器 */
    height: auto !important;
    /* 强制高度自动适应 */
    display: block !important;
    /* 强制变为块级元素 */
    margin: 0 auto !important;
    /* 强制水平居中 */

    /* (可选) 也可以设置一个最小高度，以防内容过少时塌陷 */
    min-height: 800px;
}

.share-record {
    width: 100%;
    min-height: 300px;
    background-color: rgba(197, 189, 189, 0.55);
    border-radius: 20px;
    margin: 30px auto 50px;
    padding: 70px;
    border: 3px solid rgba(176, 168, 154, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.share-record h4 {
    margin-left: 60px;
    position: relative;
    font-size: 1.7em;
}

i.highlight {
    color: #333;
    font-weight: bold;
}

.share-record h4::before {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 25px;
    height: 25px;
    background-image: url('https://static.igem.wiki/teams/5858/images/template/pointlist.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.share-record p {
    margin-left: 1em;
    font-size: 1.5em;
    line-height: 1.5;
    color: #555;
    text-align: justify;
}

.share-record a {
    font-size: 1.2em;
    color: #734e94;
}

.share-record a:hover {
    color: #555;
    text-decoration: underline;
}


.paper h2 {
    position: relative;
    font-family: 'Arima Madurai';
    font-weight: 900;
    font-style: normal;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    width: fit-content;
    z-index: 3;
}

.paper h2::before {
    content: '';
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    left: 0;
    width: 110%;
    height: 120%;
    background: #a99bd4;
    border-radius: 20px 0 0 0;
    z-index: -1;
}

.paper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250%;
    max-width: 60vw;
    height: 5px;
    background: #a99bd4;
    z-index: -1;
}

.paper .displayboard_pic .bagfront {
    position: absolute;
    left: -20%;
    top: 58%;
    transform: translateY(-50%);
    width: 30%;
    height: 39%;
    background-image: url('https://static.igem.wiki/teams/5858/images/template/picture-display-board/bagfront.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    pointer-events: none;
}

.paper .displayboard_pic .bagback {
    position: absolute;
    left: -15%;
    top: 58%;
    transform: translateY(-50%);
    width: 30%;
    height: 39%;
    background-image: url('https://static.igem.wiki/teams/5858/images/template/picture-display-board/bagback.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.paper .displayboard_pic .context img {
    width: 100%;
    height: 100%;
    margin: 0;
    max-width: 100%;
    object-fit: contain;
}

.paper h2 {
    margin-left: 0;
}

iframe.pdf {
    width: 100%;
    height: 100vh;
}

ul.c3r1_figure_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

ul.c3r1_figure_list>div,
ul.c3r1_figure_list>img {
    box-sizing: border-box;
    width: 33%;
    padding: 10px;
    text-align: center;
}

ul.c3r1_figure_list img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}