html,
body {
    font-family: 'Nunito', sans-serif;
    font-display: swap;
    margin: 0;
    position: relative;
    z-index: 99;
}

body::-webkit-scrollbar {
    display: none;
}


#copy-message {
    position: fixed;
    z-index: 999;
    bottom: 30%;
    width: 60px;
    height: 28px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fff;
    border: 1px solid #d9d9d9;
    color: #333;
    font-size: 12px;
    text-align: center;
    line-height: 28px;
    border-radius: 20px;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 6px;
    width: calc(100% - 6px);
    height: 5px;
    background-color: #fab702;
    z-index: -1;
}

#scroll-wrap::-webkit-scrollbar {
    height: 4px;
    /* 关键：明确高度 */
    display: block;
}

#scroll-wrap::-webkit-scrollbar-thumb {
    background-color: var(--bg-footer);
    border-radius: 999px;
}

#scroll-wrap::-webkit-scrollbar-track {
    background: #E6E6E6;
}

.dt-desc::-webkit-scrollbar,
.h5-dt-desc-text::-webkit-scrollbar {
    width: 4px;
    display: block;
}

.dt-desc::-webkit-scrollbar-thumb,
.h5-dt-desc-text::-webkit-scrollbar-thumb {
    background-color: var(--bg-footer);
    border-radius: 999px;
}

.dt-desc::-webkit-scrollbar-track,
.h5-dt-desc-text::-webkit-scrollbar-track {
    background: #E6E6E6;
}

a img{    object-fit: cover;}

@media (min-width:768px) {
    .heading::after {
        left: 12px;
        width: calc(100% - 12px);
    }
}