
        body {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden; /* 隐藏水平滚动条 */
        }
   .t4s-toolbar {
            --bg-color: #ffffff;
            --icon-color: #222222;
            --label-color: #222222;
            --count-bg-color: #000000;
            --count-text-color: #ffffff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background-color: var(--bg-color);
            padding: 10px;
        }
   .t4s-toolbar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1; /* 让每个工具栏项平均分配空间 */
        }
   .t4s-toolbar-icon {
            margin-bottom: 10px; /* 将图标和文字的距离设置为 10px */
        }
   .t4s-toolbar-label {
            font-weight: bold;
            font-size: 0.8em;
        }
   .t4s-toolbar-item > a {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            height: 45px;
            justify-content: center;
            box-sizing: border-box;
        }
        /* 仅在移动端显示 */
        @media (max-width: 768px) {
       .t4s-toolbar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 100;
            }
        }
        /* 在桌面端隐藏 */
        @media (min-width: 769px) {
       .t4s-toolbar {
                display: none;
            }
        }
   .main-content {
            flex: 1;
        }
   .drawer {
            display: none; /* 初始状态为隐藏 */
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 300px; /* 抽屉的宽度 */
            background-color: white;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3); /* 阴影效果 */
            z-index: 101; /* 确保抽屉在其他元素之上 */
            overflow-y: auto; /* 允许抽屉内容滚动 */
            padding: 20px;
        }
   .show {
            display: block; /* 显示抽屉 */
        }
    