/* 赛博朋克主题样式 */
        body {
            background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.95),
            rgba(10, 10, 10, 0.98)) !important;
            color: #e0e0e0;
            font-family: 'Rajdhani', sans-serif;
            overflow-x: hidden;
            margin: 0;
        }

        /* 主布局容器 */
        .layout-container {
            background: transparent !important;
            min-height: 100vh;
            position: relative;
        }

        #saasbox_page_content {
            background: transparent !important;
            position: relative;
            padding: 2rem 0;
        }

        /* 主内容区域 */
        .main-content {
            position: relative;
            padding: 2rem 0;
            min-height: 80vh;
        }

        /* 树形目录容器 */
        #trees > div {
            background: linear-gradient(145deg,
            rgba(10, 10, 10, 0.9),
            rgba(20, 20, 20, 0.9)) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            position: fixed;
            width: 18%;
            height: calc(100vh - 120px);
            max-height: none;
            overflow: auto;
        }

        /* 树形组件样式适配深色主题 */
        .el-input__inner {
            background: rgba(20, 20, 20, 0.8) !important;
            border: 1px solid rgba(116, 228, 222, 0.3) !important;
            color: #74e4de !important;
        }

        .el-input__inner::placeholder {
            color: rgba(116, 228, 222, 0.5) !important;
        }

        .el-tree {
            background: transparent !important;
            color: #9ca3af !important;
        }

        .el-tree-node__content {
            height: 28px;
        }

        .el-tree-node__content:hover {
            background-color: rgba(116, 228, 222, 0.1) !important;
        }

        .el-tree-node:focus > .el-tree-node__content {
            background-color: rgba(116, 228, 222, 0.2) !important;
        }

        .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
            background-color: rgba(116, 228, 222, 0.2) !important;
            color: #74e4de !important;
        }

        /* 文章内容区域 */
        #body {
            background: linear-gradient(145deg,
            rgba(10, 10, 10, 0.9),
            rgba(20, 20, 20, 0.9)) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px;
            padding: 1rem 3rem 3rem !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        #body:hover {
            border-color: rgba(116, 228, 222, 0.3) !important;
            box-shadow:
                    0 15px 50px rgba(0, 0, 0, 0.4),
                    0 0 20px rgba(116, 228, 222, 0.1);
        }

        /* 文章标题 */
        #body_hear {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem !important;
            font-weight: 700;
            color: #74e4de !important;
            margin: 0 auto 2rem !important;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-shadow: 0 0 10px rgba(116, 228, 222, 0.3);
            position: relative;
            padding-bottom: 1rem;
            width: 100%;
            display: block !important;
        }

        #body_hear::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 2px;
            background: linear-gradient(90deg,
            transparent,
            #74e4de,
            transparent);
        }

        /* 文章内容样式 */
        #body img {
            width: 100%;
            cursor: pointer;
            border-radius: 8px;
            border: 1px solid rgba(116, 228, 222, 0.2);
        }

        #body h1, #body h2, #body h3, #body h4, #body h5, #body h6,
        #body .h1, #body .h2, #body .h3, #body .h4, #body .h5, #body .h6 {
            position: relative;
            padding-top: 60px;
            margin-top: -60px;
            color: #74e4de !important;
            font-family: 'Orbitron', sans-serif;
        }

        #body p {
            margin-top: 30px;
            margin-bottom: 30px;
            color: #e0e0e0 !important;
        }

        #body a {
            color: #74e4de !important;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        #body a:hover {
            color: #4acdc6 !important;
            text-shadow: 0 0 10px rgba(116, 228, 222, 0.5);
        }

        #body pre {
            margin-top: 30px;
            margin-bottom: 30px;
            color: #e0e0e0 !important;


        }

        #body pre code {
            /* 保留空白符序列，但是正常地进行换行 */
            white-space: pre-wrap;
            font-family: 'Rajdhani', sans-serif;
        }

        /* 右侧目录容器 */
        #tocEl {
            background: linear-gradient(145deg,
            rgba(10, 10, 10, 0.9),
            rgba(20, 20, 20, 0.9)) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: 12px;
            padding: 1rem !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            margin-top: 20px;
            position: fixed;
            right: 0;
            top: 80px;
            width: 280px;
            max-height: calc(100vh - 120px);
            overflow: auto;
        }

        /* 目录内容样式 */
        #toc {
            color: #9ca3af !important;
        }

        #toc a {
            color: #9ca3af !important;
            transition: all 0.3s ease;
        }

        #toc a:hover,
        #toc a.active {
            color: #74e4de !important;
        }

        #toc, ul, li {
            margin: 0;
            padding: 0;
        }

        #toc, ul {
            position: relative;
            top: auto;
            min-width: 177px;
            font-size: 14px;
            margin-top: 0.5rem !important;
        }

        #toc li ul li {
            /*border-left: 0 solid rgba(116, 228, 222, 0.3) !important;*/
            margin-left: 10px;
            white-space: nowrap;
        }

        #toc li {
            /*border-left: 1px solid rgba(116, 228, 222, 0.3) !important;*/
            padding-left: 10px;
            position: relative;
            padding-bottom: 0.5rem !important;
        }

        #toc ul li {
            list-style-type: none;
        }

        #toc ul li ul li {
            list-style-type: none;
        }

        #toc ul li ul li::before {
            content: "";
            display: inline-block;
            border: 4px solid rgba(116, 228, 222, 0.6) !important;
            border-radius: 50%;
            position: absolute;
            left: -5px;
            top: 8px;
        }

        #toc ul li a {
            color: #9ca3af !important;
            overflow: hidden;
            display: block;
            text-overflow: ellipsis;
            padding: 0.3rem 0.75rem;
            border-radius: 4px;
        }

        #toc ul li a:hover {
            background: rgba(116, 228, 222, 0.1);
        }

        #toc ul li::before {
            content: "";
            display: inline-block;
            border: 4px solid rgba(116, 228, 222, 0.6) !important;
            border-radius: 50%;
            position: absolute;
            left: -5px;
            top: 9px;
        }

        /* 滚动条样式 */
        #trees > div::-webkit-scrollbar,
        #tocEl::-webkit-scrollbar {
            width: 6px;
        }

        #trees > div::-webkit-scrollbar-track,
        #tocEl::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 3px;
        }

        #trees > div::-webkit-scrollbar-thumb,
        #tocEl::-webkit-scrollbar-thumb {
            background: #74e4de;
            border-radius: 3px;
        }

        #trees > div::-webkit-scrollbar-thumb:hover,
        #tocEl::-webkit-scrollbar-thumb:hover {
            background: #4acdc6;
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            #body {
                padding: 2rem !important;
                /*margin: 0 1rem !important;*/
                width: 90% !important;
            }

            #body_hear {
                font-size: 2rem !important;
                margin: 0 1rem 2rem !important;
                width: 90% !important;
            }

            #trees > div,
            #tocEl {
                position: static;
                /*width: 90% !important;*/
                margin: 1rem auto !important;
                height: auto;
                max-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 1rem 0;
            }

            #body {
                padding: 1.5rem !important;
                /*margin: 0 0.5rem !important;*/
                border-radius: 8px;
                width: 95% !important;
            }

            #body_hear {
                font-size: 1.8rem !important;
                margin: 0 0.5rem 1.5rem !important;
                width: 95% !important;
            }

            #trees > div,
            #tocEl {
                display: none;
            }
        }

        @media (max-width: 480px) {
            #body_hear {
                font-size: 1.5rem !important;
            }

            #body {
                padding: 1rem !important;
                font-size: 0.95rem;
                line-height: 1.6;
            }
        }

        /* 添加角落装饰 */
        #body::before,
        #body::after {
            content: '';
            position: absolute;
            width: 1rem;
            height: 1rem;
            opacity: 0.3;
            transition: opacity 0.3s ease;
        }

        #body::before {
            top: 0;
            left: 0;
            border-top: 2px solid #74e4de;
            border-left: 2px solid #74e4de;
            border-top-left-radius: 12px;
        }

        #body::after {
            bottom: 0;
            right: 0;
            border-bottom: 2px solid #74e4de;
            border-right: 2px solid #74e4de;
            border-bottom-right-radius: 12px;
        }

        #body:hover::before,
        #body:hover::after {
            opacity: 0.8;
        }

        /* 触摸设备优化 */
        @media (hover: none) and (pointer: coarse) {
            #body:hover {
                transform: none;
                border-color: rgba(255, 255, 255, 0.1) !important;
            }

            #body:active {
                border-color: rgba(116, 228, 222, 0.3) !important;
            }
        }

        #toc a{
            text-decoration: none;
        }
