/* custom-hp.css: Human Practices 容器样式 */
.custom-containers {
    margin: 40px auto;
    width: 90vw;
    display: flex;
    flex-direction: column;
    gap: 24px;

}

.container-static, .container-collapsible {
    border: none;
    background: none;

    border-radius: 30px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    background: #fff;
    transition: box-shadow 0.2s;
}

.container-title {
    font-weight: bold;
    padding: 1px 3vw;
    background: none;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    font-size: 2.75rem;
    font-family: 'NATS-Regular', serif;
    letter-spacing: 1px;
    user-select: none;
    color: #0040d6;
}

.container-static .container-title {
    cursor: default;
}

.container-content {
    padding: 0 24px;
    background: none;
    font-size: 1rem;
    color: #333;

    border-radius: 0 0 30px 30px;
    animation: fadeIn 0.3s;
}

.read-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 24px auto;
    padding: 0px 8px;
    background: #0040d6;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 500;
    font-family: 'NATS-Regular', serif;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background 0.2s, color 0.2s;
    border: none;
    text-align: center;
    user-select: none;
    width: 20vw;
    flex: 0 0 auto;
    margin: 0 auto 24px auto;
    z-index: 1;
}

.arrow-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(194, 214, 255, 0);
    padding: 2px;
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.read-more-btn.expanded .arrow-icon {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .custom-containers {
        max-width: 98vw;
        gap: 16px;
    }

    .container-title, .container-content {
        padding: 12px 10px;
        font-size: 0.98rem;
    }
}

.collapsible-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1), opacity 0.4s;
    padding: 0 24px;
}

.collapsible-content.expanded {
    max-height: 400px;
    opacity: 1;
    transition: max-height 0.7s cubic-bezier(.4, 0, .2, 1), opacity 0.4s;
    padding: 20px 24px;
    overflow-y: auto;
    scrollbar-width: auto;
    scrollbar-color: #0040d6 rgba(255, 255, 255, 0);
}

.collapsible-content.expanded::-webkit-scrollbar {
    width: 8px;
    background: rgba(255, 255, 255, 0);
    border-radius: 8px;
}

.collapsible-content.expanded::-webkit-scrollbar-thumb {
    background: #0040d6;
    border-radius: 8px;
}

.collapsible-content.expanded::-webkit-scrollbar-thumb:hover {
    background: #1976d2;
}

.gene-section {
    display: flex;
    gap: 32px;
    margin: 60px auto 80px auto;
    max-width: 90vw;
    width: 90vw;

    align-items: flex-start;
    position: relative;
}

.gene-long-img {
    position: relative;
    width: 40vw;
    min-width: 0;
    max-width: 40vw;
    height: auto;

    display: block;
}

.in-mid-text {
    align-items: center;
    text-align: center !important;
    font-size: 1.8rem;
    font-weight: bold;
    margin-left: 24vw;
    width: 100%;
    color: rgba(0, 0, 0, 0.48) !important;

}

.man-pic {
    zoom: 10% !important;
}

.man-pic-2 {
    zoom: 28% !important;
}

.all-pic-sm {
    zoom: 40% !important;
}

.sticky-info {
    flex: 0 0 50vw;
    max-width: 50vw;
    position: sticky;
    display: flex;
    flex-direction: column;
    top: 100px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    align-self: flex-start;
    z-index: 2;

    justify-content: center;
    width: 100%;
    height: 75vh;
}

.sticky-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;

    color: #222;
    font-size: 1.08rem;
}

.sticky-inner {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    min-width: 0;
    margin: 0;
    border-radius: 30px;
    padding: 0;
    box-sizing: border-box;
    overflow: auto;
    display: block;
}

@media (max-width: 900px) {
    .gene-section {
        flex-direction: column;
        max-width: 98vw;
        width: 98vw;
        gap: 24px;
    }

    .gene-long-img {
        height: auto;
    }

    .sticky-info {
        position: static;
        width: 100%;
        max-width: 100vw;
        margin-top: 24px;
        justify-content: flex-start;
    }

    .sticky-content {
        max-width: 100vw;
        width: 100%;
    }
}

.hp-abstract-container {
    width: 85vw;
    margin: 0 auto 40px auto;
    font-size: 2.08rem;
    font-family: 'NATS-Regular', serif;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

.hp-abstract-inner {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 2.08rem;
    overflow: auto;
    font-family: 'NATS-Regular', serif;
    line-height: 1.2;
    color: #000000;
    text-align: left;
}

li .title {
    font-weight: bold !important;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.hp-image {
    display: block;
    margin: 12px auto;
    max-width: 80%;
    height: auto;
}

.hp-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.hp-list.level-1 > li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 0;
    text-align: left;
}

.hp-list.level-1 > li::before {
    content: none;
}

.hp-list.level-2 > li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    text-align: left;
}

.hp-list.level-2 > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 11px;
    height: 11px;
    background: #1976d2;
    border-radius: 50%;

}

.hp-list.level-3 > li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 24px;
    text-align: left;
}

.hp-list.level-3 > li::before {

    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border: 2px solid #1976d2;
    border-radius: 50%;
    background: transparent;
}

.dividingline {
    width: 98%;
    height: 3px;
    background: #0040d6;
    margin: 8px auto 18px auto;
    border-radius: 2px;
}

.head-smtitle {
    margin-top: -100px !important;
}

.sec-cont {
    text-align: center !important;
}

.sticky-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 0 0;
    margin-top: 8px;
    margin-bottom: 18px;
    background: none;
}

.sticky-footer .read-more-btn {
    margin: 0;
    padding: 8px 24px;
    border-radius: 20px;
    background: #0040D6FF;
    box-shadow: 0 2px 8px rgba(0, 64, 214, 0.08);
    font-weight: 500;
    color: #ffffff;
    z-index: 5;
    transition: background 0.2s, box-shadow 0.2s;
}

.sticky-footer .read-more-btn:hover {
    background: #7ea3ff;
    box-shadow: 0 4px 16px rgba(0, 64, 214, 0.12);
}

b {
    color: #0d3ca2;
}

.gene-main-title {
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
    color: #0040d6;
    line-height: 1.18;
    margin-bottom: 4px;
    letter-spacing: 1px;
    font-family: 'NATS-Regular', serif;
}

#gene-title-1 {
    left: 5%;
    top: 1%;
    background: rgba(25, 118, 210, 0);
    color: #222;
}

#gene-title-2 {
    left: 5%;
    top: 25%;
    background: rgba(138, 198, 209, 0);
    color: #222;
}

#gene-title-3 {
    left: 5%;
    top: 50%;
    background: rgba(187, 222, 214, 0);
    color: #222;
}

#gene-title-4 {
    left: 7%;
    top: 74%;
    background: rgba(255, 214, 224, 0);
    color: #222;
}

/* gene-btn 单独位置和背景设置 */
#gene-btn-2 {
    left: 1%;
    top: 4.5%;
    background: #ec902b;

}

#gene-btn-1 {
    left: 23%;
    top: 9.5%;
    background: #0040d3;
}

#gene-btn-3 {
    left: 13%;
    top: 15%;
    background: rgba(255, 255, 255, 0);
}

#gene-btn-4 {
    left: 3%;
    top: 29%;
    background: #0040d3;
}

#gene-btn-5 {
    left: 21%;
    top: 35%;
    background: #ec902b;
}

#gene-btn-6 {
    left: 13%;
    top: 40%;
    background: rgba(255, 182, 185, 0);
}

#gene-btn-7 {
    left: 20.5%;
    top: 54%;
    background: #0040d3;
}

#gene-btn-8 {
    left: 2.6%;
    top: 59%;
    background: #ff9800;
}

#gene-btn-9 {
    left: 12%;
    top: 65%;
    background: rgba(138, 198, 209, 0);
}

#gene-btn-10 {
    left: 2%;
    top: 79%;
    background: #0040d3;
}

#gene-btn-11 {
    left: 20%;
    top: 84%;
    background: #ec902b;
}

#gene-btn-12 {
    left: 12%;
    top: 90%;
    background: rgba(250, 227, 217, 0);
}

.gene-btns-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.gene-btn {
    position: absolute;
    pointer-events: auto;
    z-index: 3;
    width: 17vw;
    height: 48px;
    border-radius: 10%;

    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gene-btn:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.62);
    opacity: 0.8;
}

.gene-btn.active {

    transform: scale(1.15);
    opacity: 0.8;
}

.gene-btn img {
    width: 32px;
    height: 32px;
    display: block;
}

.gene-btn-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;

    opacity: 0.85;
    border-radius: 50%;
    pointer-events: none;
}

.gene-btn-label-mu {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 1.6rem;

    opacity: 0.85;
    border-radius: 50%;
    pointer-events: none;
}

.gene-btn.active .gene-btn-label {

}

/* gene-btn 定位百分比，示例：left/top: 10% 20% */
.gene-btn[data-left][data-top] {
    left: attr(data-left%);
    top: attr(data-top%);
}

.gene-btn-title {
    position: absolute;
    z-index: 4;
    font-size: 1.4rem;
    font-weight: bold;

    padding: 8px 24px;
    text-align: center;
    pointer-events: none;
}

/* 弹窗全屏显示样式 */
.section-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 100vw;
    height: 80vh;
    max-height: 100vh;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation: fadeIn 0.3s;
}

.section-popup-content {
    width: 100% !important;
    min-height: 40vh;
    flex: 1 1 auto;
    overflow: auto;
    padding: 16px;
    font-size: 1.08rem;
    color: #222;
    box-sizing: border-box;
}

.section-popup-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 1.5rem;
    padding: 8px 18px;
    border-radius: 18px;
    background: #0040d6;
    color: #fff;
    border: none;
    z-index: 10000;
}

.section-popup-close:hover {
    background: #1976d2;
}

ccc {
    display: block;
    text-align: center;
    width: 100%;
    color: rgba(26, 29, 32, 0.59);
}

.smtt {
    font-size: 3rem;
    font-weight: 900;
}

.smttt {
    font-size: 2.8rem;
    font-weight: 900;
    color: #000000;
}

.trial {
    font-family: 'NATS-Regular', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    color: rgba(26, 29, 32, 0.37);
}

.select {
    position: absolute;
    margin-left: 3vw;
    font-size: 3rem;
    margin-top: -20px;
    font-family: 'NATS-Regular', sans-serif;
    width: 65vw;
    display: flex;
}

.lt {
    color: #ff9801;
    flex: 1;
}

.rt {
    color: #0040d3;
    flex: 1;
}