
    /* 基本样式重置 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* 字体设置 */
    body {
        font-family: 'Roboto', 'Montserrat', sans-serif;
        background: linear-gradient(135deg, #0F172A, #1E293B);
        color: #B0B0B0;
        line-height: 1.6;
        padding: 20px;
    }

    /* 容器 */
    .container {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 20px;
        max-width: 1440px;
        margin: 0 auto;
    }

    /* 导航栏 */
    .sidebar {
        grid-column: span 3;
        background: rgba(18, 18, 18, 0.9);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .sidebar h2 {
        color: #00FF7F;
        margin-bottom: 20px;
        font-size: 1.5em;
    }

    .sidebar ul {
        list-style: none;
    }

    .sidebar ul li {
        margin-bottom: 15px;
    }

    .sidebar ul li a {
        color: #1E90FF;
        text-decoration: none;
        font-size: 1.1em;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .sidebar ul li a:hover {
        color: #32CD32;
        transform: scale(1.05);
    }

    /* 主内容区 */
    .content {
        grid-column: span 9;
        background: rgba(255, 255, 255, 0.05);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        position: relative;
    }

    .content h1, .content h2, .content h3, .content h4 {
        color: #00B4D8;
        margin-bottom: 20px;
    }

    .content p {
        margin-bottom: 15px;
        color: #D1D5DB;
    }

    .content ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .content ul li {
        margin-bottom: 10px;
        color: #A1A1A1;
    }

    /* 按钮样式 */
    .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #FF5722;
        color: #FFFFFF;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-decoration: none;
    }

    .button:hover {
        background-color: #E64A19;
        transform: scale(1.05);
    }

    .button:active {
        transform: scale(0.95);
    }

    /* 代码块样式 */
    pre {
        background: rgba(0, 0, 0, 0.8);
        padding: 15px;
        border-radius: 8px;
        overflow-x: auto;
        color: #00FF7F;
        margin-bottom: 20px;
    }

    code {
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.95em;
    }

    /* 图片样式 */
    .images {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .images img {
        width: 100%;
        max-width: 150px;
        border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .images img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    }

    /* 动画效果 */
    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .aurora {
        background: radial-gradient(circle, rgb(255, 87, 34), transparent);
        animation: aurora-move 15s linear infinite;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .container {
            max-width: 1200px;
        }
    }

    @media (max-width: 1200px) {
        .container {
            max-width: 1024px;
        }
    }

    @media (max-width: 1024px) {
        .sidebar {
            grid-column: span 4;
        }

        .content {
            grid-column: span 8;
        }
    }

    @media (max-width: 768px) {
        .container {
            grid-template-columns: repeat(6, 1fr);
        }

        .sidebar {
            grid-column: span 6;
        }

        .content {
            grid-column: span 6;
        }

        .images img {
            max-width: 100px;
        }
    }

    @media (max-width: 480px) {
        .container {
            grid-template-columns: repeat(4, 1fr);
        }

        .sidebar {
            grid-column: span 4;
        }

        .content {
            grid-column: span 4;
        }

        .images img {
            max-width: 80px;
        }

        .content h1 {
            font-size: 1.8em;
        }

        .content h2 {
            font-size: 1.6em;
        }

        .content h3 {
            font-size: 1.4em;
        }
    }

    @media (max-width: 320px) {
        .container {
            grid-template-columns: 1fr;
        }

        .sidebar, .content {
            grid-column: span 1;
        }

        .images img {
            max-width: 100%;
        }

        .content h1 {
            font-size: 1.6em;
        }

        .content h2 {
            font-size: 1.4em;
        }

        .content h3 {
            font-size: 1.2em;
        }
    }

    /* 提示信息样式 */
    .reference-note {
        background: rgba(0, 0, 0, 0.7);
        color: #FFFFFF;
        padding: 10px 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        font-size: 1em;
        text-align: center;
    }

    /* 示例数据展示样式 */
    .sample-data {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 10px;
        margin-top: 30px;
    }

    .sample-data h2 {
        color: #0074D9;
        margin-bottom: 15px;
    }

    .sample-data ul {
        list-style: disc inside;
    }

    .sample-data ul li {
        margin-bottom: 10px;
        color: #A1A1A1;
    }

    /* 卡片样式 */
    .card {
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        padding: 20px;
        margin-bottom: 20px;
    }

    /* 动态粒子效果 */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://images.gptkong.com/demo/sample12.png') repeat;
        opacity: 0.1;
        pointer-events: none;
    }

    /* 链接样式 */
    a {
        color: #1E90FF;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #32CD32;
    }

    /* 标题样式 */
    h1, h2, h3, h4 {
        font-weight: bold;
    }

    /* 表格样式 */
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
    }

    table, th, td {
        border: 1px solid #2D3748;
    }

    th, td {
        padding: 10px;
        text-align: left;
    }

    th {
        background-color: #1E293B;
        color: #00B4D8;
    }

    td {
        color: #D1D5DB;
    }

    /* 滚动条样式 */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }

    ::-webkit-scrollbar-thumb {
        background: #00B4D8;
        border-radius: 4px;
    }

    /* 图标样式 */
    .icon {
        width: 32px;
        height: 32px;
        display: inline-block;
        background-size: cover;
        margin-right: 10px;
    }

    .icon-shield {
        background-image: url('https://images.gptkong.com/demo/sample1.png');
    }

    .icon-lock {
        background-image: url('https://images.gptkong.com/demo/sample2.png');
    }

    /* 阴影效果 */
    .shadow {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    /* 导航动画 */
    .sidebar ul li a::before {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #32CD32;
        transition: width 0.3s ease;
    }

    .sidebar ul li a:hover::before {
        width: 100%;
    }

    /* 窗口过渡 */
    .content, .sidebar {
        transition: all 0.3s ease;
    }

    /* 按钮加载动画 */
    .button-loading::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #FFF;
        border-top: 2px solid #FF5722;
        border-radius: 50%;
        margin-left: 10px;
        animation: spin 1s linear infinite;
        vertical-align: middle;
    }

    /* Spinner动画 */
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* 卡片动画 */
    .card:hover {
        transform: translateY(-5px);
        transition: transform 0.3s ease;
    }

    /* 背景动效 */
    .background-effect {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(255,87,34,0.3), transparent);
        animation: aurora-move 20s linear infinite;
        z-index: -1;
    }

    /* 阴影动画 */
    .shadow-move {
        animation: shadowMove 10s infinite;
    }

    @keyframes shadowMove {
        0% { box-shadow: 0 0 10px rgba(0, 255, 127, 0.5); }
        50% { box-shadow: 0 0 20px rgba(0, 255, 127, 0.8); }
        100% { box-shadow: 0 0 10px rgba(0, 255, 127, 0.5); }
    }

