* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: rgba(73, 177, 245, 0.2);
}

::-webkit-scrollbar-thumb {
    background-color: #49b1f5;
    background-image: linear-gradient(45deg,
    rgba(255, 255, 255, 0.4) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.4) 75%,
    transparent 75%,
    transparent);
    border-radius: 1em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

@media (min-width: 769px) {

    /* 打字机效果 */
    .typewriter-text {
        display: inline-block;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        border-right: 2px solid #FFFFFF;
        animation: typing 3.5s steps(40, end) 0.8s forwards,
        blinkCursor 0.7s step-end infinite 0.8s;
        width: 0;
    }

    /* 打字动画 */
    @keyframes typing {
        from {
            width: 0
        }
        to {
            width: 100%
        }
    }

    /* 光标闪烁动画 */
    @keyframes blinkCursor {
        from, to {
            border-color: transparent
        }
        50% {
            border-color: #FFFFFF
        }
    }

    /* 打字完成后移除光标 */
    .typewriter-text.completed {
        border-right: none;
        animation: none;
    }

    /* 修改原来的标题样式，移除原有动画 */
    .mbti_header_content_title {
        font-size: 37px;
        font-weight: 700;
        margin-bottom: 31px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        line-height: 1.3;
        letter-spacing: -0.5px;
        margin-top: 113px;
        /* 移除原来的fadeInUp动画 */
        animation: none !important;
    }
}