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

    body {
        font-family: 'Open Sans', sans-serif;
        background: radial-gradient(circle at top right, #0A1F44, #6C5CE7, #FF79C6);
        color: #FFFFFF;
        line-height: 1.6;
        overflow-x: hidden;
        padding: 20px;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        color: #FFD700;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    h1 {
        font-size: 3em;
        margin-bottom: 20px;
        text-align: center;
    }

    h2 {
        font-size: 2.5em;
        margin: 40px 0 20px 0;
    }

    h3 {
        font-size: 2em;
        margin: 30px 0 15px 0;
    }

    p {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #f0f0f0;
    }

    a {
        color: #FFD700;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #FF79C6;
    }

    a[rel="nofollow"]::after {
        content: '';
    }

    pre {
        background: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    code {
        font-family: 'Courier New', Courier, monospace;
        color: #FF79C6;
    }

    /* 导航栏 */
    .navbar {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .navbar a {
        font-size: 1.2em;
        position: relative;
    }

    .navbar a::before {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: #FFD700;
        bottom: -5px;
        left: 0;
        transition: width 0.3s;
    }

    .navbar a:hover::before {
        width: 100%;
    }

    /* 文章内容 */
    .content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(10, 31, 68, 0.8);
        border-radius: 15px;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* 图片样式 */
    .images {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        margin: 30px 0;
    }

    .images img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .images img:hover {
        transform: scale(1.05);
    }

    /* 按钮样式 */
    .btn {
        display: inline-block;
        background: #6C5CE7;
        color: #FFFFFF;
        padding: 15px 30px;
        border-radius: 50px;
        text-align: center;
        transition: background 0.3s ease, transform 0.3s ease;
        cursor: pointer;
    }

    .btn:hover {
        background: #FF79C6;
        transform: translateY(-5px);
    }

    /* 模块样式 */
    .module {
        position: relative;
        padding: 20px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .module:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

    code {
        color: #00FF7F;
        font-family: 'Courier New', Courier, monospace;
        font-size: 1em;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        body {
            padding: 15px;
        }

        h1 {
            font-size: 2.5em;
        }

        h2 {
            font-size: 2em;
        }

        h3 {
            font-size: 1.8em;
        }

        .navbar a {
            font-size: 1em;
        }

        .btn {
            padding: 12px 25px;
        }
    }

    @media (max-width: 1200px) {
        .content {
            padding: 15px;
        }

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

    @media (max-width: 1024px) {
        .navbar {
            flex-direction: column;
            gap: 20px;
        }

        .images {
            flex-direction: column;
            align-items: center;
        }

        h1 {
            font-size: 2.2em;
        }

        h2 {
            font-size: 1.8em;
        }

        h3 {
            font-size: 1.6em;
        }
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 2em;
        }

        h2 {
            font-size: 1.6em;
        }

        h3 {
            font-size: 1.4em;
        }

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

    @media (max-width: 480px) {
        .navbar {
            gap: 15px;
        }

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

        h1 {
            font-size: 1.8em;
        }

        h2 {
            font-size: 1.4em;
        }

        h3 {
            font-size: 1.2em;
        }

        .btn {
            padding: 10px 20px;
        }
    }

    @media (max-width: 320px) {
        body {
            padding: 10px;
        }

        h1 {
            font-size: 1.5em;
        }

        h2 {
            font-size: 1.2em;
        }

        h3 {
            font-size: 1em;
        }

        .navbar a {
            font-size: 0.9em;
        }

        .btn {
            padding: 8px 16px;
        }

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

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

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

    .fade-in {
        opacity: 0;
        animation: fadeInAnimation 2s forwards;
    }

    @keyframes fadeInAnimation {
        to { opacity: 1; }
    }

    .ripple:hover {
        position: relative;
        overflow: hidden;
    }

    .ripple:hover::after {
        content: "";
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        animation: ripple 0.6s linear;
    }

    @keyframes ripple {
        from { transform: scale(0); opacity: 1; }
        to { transform: scale(2.5); opacity: 0; }
    }

    /* 提示文本 */
    .reference-note {
        text-align: center;
        font-size: 1em;
        margin-top: 40px;
        color: #FFD700;
        font-style: italic;
    }

