
    /* 全局样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', sans-serif;
        background: radial-gradient(circle, #0A1F44, #0D0D0D);
        color: #FFFFFF;
        line-height: 1.6;
        padding: 20px;
    }

    a {
        color: #7B61FF;
        text-decoration: none;
        rel: nofollow;
    }

    a:hover {
        text-decoration: underline;
    }

    /* 容器布局 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px;
        background: rgba(13, 13, 13, 0.8);
        border-radius: 10px;
    }

    header {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        color: #FFC700;
        margin-bottom: 10px;
    }

    header p {
        font-size: 1rem;
        color: #CFCFCF;
    }

    article {
        margin-top: 20px;
    }

    article h2, article h3 {
        font-family: 'Poppins', sans-serif;
        color: #7B61FF;
        margin-bottom: 15px;
    }

    article h2 {
        font-size: 2rem;
    }

    article h3 {
        font-size: 1.5rem;
    }

    article p {
        margin-bottom: 15px;
        font-size: 1rem;
        color: #CFCFCF;
    }

    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
        margin-bottom: 15px;
    }

    code {
        color: #FFC700;
    }

    /* 按钮样式 */
    .cta-button {
        display: inline-block;
        padding: 15px 30px;
        background: #FFC700;
        color: #0D0D0D;
        border: none;
        border-radius: 50px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }

    .cta-button:hover {
        box-shadow: 0 0 10px #FFC700;
        transform: scale(1.05);
    }

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

    .images img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* 视觉冲击元素 */
    .particle {
        position: absolute;
        width: 5px;
        height: 5px;
        background-color: rgba(255, 207, 0, 0.8);
        border-radius: 50%;
        animation: float 5s infinite ease-in-out;
    }

    @keyframes float {
        0% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-20px) scale(1.2); }
        100% { transform: translateY(0) scale(1); }
    }

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

        header h1 {
            font-size: 2rem;
        }

        article h2 {
            font-size: 1.75rem;
        }

        article h3 {
            font-size: 1.25rem;
        }

        .images img {
            width: 80px;
            height: 80px;
        }

        .cta-button {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
    }

    @media (max-width: 480px) {
        header h1 {
            font-size: 1.5rem;
        }

        article h2 {
            font-size: 1.5rem;
        }

        article h3 {
            font-size: 1.1rem;
        }

        .images img {
            width: 60px;
            height: 60px;
        }

        .cta-button {
            padding: 8px 16px;
            font-size: 0.8rem;
        }
    }

    @media (min-width: 1024px) {
        .container {
            grid-template-columns: 1fr 2fr 1fr;
        }

        .images img {
            width: 120px;
            height: 120px;
        }
    }

    @media (min-width: 1200px) {
        .container {
            padding: 60px;
        }

        header h1 {
            font-size: 3rem;
        }

        article h2 {
            font-size: 2.5rem;
        }

        article h3 {
            font-size: 1.75rem;
        }

        .images img {
            width: 150px;
            height: 150px;
        }

        .cta-button {
            padding: 20px 40px;
            font-size: 1.1rem;
        }
    }

    /* 提示信息样式 */
    .reference-note {
        text-align: center;
        font-size: 0.9rem;
        color: #CFCFCF;
        margin-top: 30px;
    }

    /* 代码块美化 */
    .code-block {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 10px;
        overflow-x: auto;
    }

    .code-block code {
        color: #7B61FF;
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.95rem;
    }

    /* 动态星河效果 */
    .starry-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, #0A1F44, transparent);
        animation: aurora-move 15s linear infinite;
        z-index: -1;
    }

    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* 信息面板样式 */
    .info-panel {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .info-panel h4 {
        font-family: 'Poppins', sans-serif;
        color: #2EC4B6;
        margin-bottom: 10px;
    }

    .info-panel p {
        color: #CFCFCF;
        font-size: 0.95rem;
    }

    /* 动画加载效果 */
    .loading-animation {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .loading-animation .dot {
        width: 15px;
        height: 15px;
        margin: 5px;
        background-color: #7B61FF;
        border-radius: 50%;
        animation: bounce 1.5s infinite ease-in-out;
    }

    .loading-animation .dot:nth-child(2) {
        animation-delay: 0.3s;
    }

    .loading-animation .dot:nth-child(3) {
        animation-delay: 0.6s;
    }

    @keyframes bounce {
        0%, 80%, 100% { transform: scale(0); }
        40% { transform: scale(1); }
    }


