<style>
        @font-face {
            font-family: 'Playwrite AU SA Regular';
            src: url('fonts/Playwrite AU SA/PlaywriteAUSA-Regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Playwrite AU SA Thin';
            src: url('fonts/Playwrite AU SA/PlaywriteAUSA-Thin.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'Playwrite AU SA Light';
            src: url('fonts/Playwrite AU SA/PlaywriteAUSA-Light.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        /* 全局样式 */
        body {
            font-family: "Cascadia Mono", monospace; /* 使用 Cascadia Mono 字体，如果不可用则回退到系统默认等宽字体 */
            display: flex; /* 使用 flexbox 布局 */
            justify-content: center; /* 水平居中内容 */
            align-items: center; /* 垂直居中内容 */
            height: 100vh; /* 设置body高度为视口高度 */
            background-color: #f0f0f0; /* 设置浅灰色背景 */
            flex-direction: column; /* 将flex项目垂直排列 */
            margin: 0; /* 移除默认外边距 */
            padding: 0; /* 移除默认内边距 */
        }
        /* 打字效果容器样式 */
        .typing {
            text-align: center; /* 文本居中对齐 */
        }
        /* 小标题样式 */
        .typing-tittle-small {
            font-family: 'Playwrite AU SA Light', monospace;
            font-size: 1.75em; /* 设置小标题字体大小 */
            color: blue; /* 设置小标题颜色为蓝色 */
        }
        /* 大标题样式 */
        .typing-tittle-large {
            font-family: 'Playwrite AU SA Regular', monospace;
            font-size: 3em; /* 设置大标题字体大小 */
            color: blue; /* 设置大标题颜色为蓝色 */
        }
        /* 中等大小正文样式 */
        .typing-body-mid {
            font-size: 1em; /* 设置正文字体大小 */
            color: gray; /* 设置正文颜色为灰色 */
        }
        /* 淡入效果样式 */
        .fade-in {
            opacity: 0; /* 初始设置为完全透明 */
            transition: opacity 0.5s ease-in-out; /* 添加0.5秒的淡入过渡效果 */
        }
        /* 逐字打印效果初始样式 */
        [data-printonebyone="true"] {
            visibility: hidden; /* 初始隐藏需要逐字打印的元素 */
        }
    </style>