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

    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
    }

    a {
        color: #39ff14;
        text-decoration: none;
    }

    a[rel="nofollow"] {
        /* 无需额外样式 */
    }

    /* 头部样式 */
    header {
        text-align: center;
        padding: 50px 0;
        background: radial-gradient(circle, rgba(255,87,34,1) 0%, rgba(0,0,0,0) 70%);
        animation: aurora-move 15s linear infinite;
    }

    header h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3em;
        margin-bottom: 20px;
        text-shadow: 0 0 10px #ff5722, 0 0 20px #ff5722;
    }

    header p {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto;
    }

    /* 主要内容样式 */
    main {
        max-width: 1200px;
        margin: 50px auto;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.5);
    }

    article {
        margin-bottom: 40px;
    }

    article h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #39ff14;
    }

    article h3, article h4 {
        font-family: 'Montserrat', sans-serif;
        color: #ff5722;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    article p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    article pre {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 20px;
    }

    article code {
        color: #39ff14;
        font-family: 'Courier New', Courier, monospace;
    }

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

    .gallery img {
        width: calc(25% - 10px);
        border-radius: 5px;
        transition: transform 0.3s;
    }

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

    /* 提示信息 */
    .reference {
        text-align: center;
        font-size: 1.2em;
        margin-top: 40px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(255,255,255,0.2);
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .gallery img {
            width: calc(33.333% - 10px);
        }
    }

    @media (max-width: 1200px) {
        .gallery img {
            width: calc(50% - 10px);
        }
    }

    @media (max-width: 768px) {
        header h1 {
            font-size: 2em;
        }
        .gallery img {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        body {
            padding: 10px;
        }
        header h1 {
            font-size: 1.5em;
        }
    }

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

    /* 按钮样式 */
    .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #39ff14;
        color: #000;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 10px #39ff14;
    }

    /* 代码块样式 */
    .code-preview {
        background: #2d2d2d;
        padding: 20px;
        border-radius: 5px;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
        color: #ffffff;
    }


