
    /* 基础样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0A192F, #2C3E50);
        color: #FFFFFF;
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4 {
        font-family: 'Futura', sans-serif;
        color: #38E54D;
    }

    h1 {
        font-size: 3rem;
        text-align: center;
        margin-top: 20px;
        text-shadow: 2px 2px #6C5CE7;
    }

    h2 {
        font-size: 2.5rem;
        margin-top: 40px;
        color: #FF6F61;
    }

    h3 {
        font-size: 2rem;
        margin-top: 30px;
        color: #6C5CE7;
    }

    p {
        font-size: 1rem;
        margin: 20px 0;
        padding: 0 20px;
    }

    a {
        color: #FF6F61;
        text-decoration: none;
        position: relative;
    }

    a::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #FF6F61;
        transform-origin: bottom right;
        transition: transform 0.25s ease-out;
    }

    a:hover::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }

    /* 导航栏 */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.9);
        display: flex;
        justify-content: center;
        padding: 15px 0;
        z-index: 1000;
    }

    .navbar a {
        margin: 0 15px;
        font-size: 1.1rem;
    }

    /* 主内容区域 */
    .container {
        max-width: 1200px;
        margin: 100px auto 50px auto;
        padding: 0 20px;
    }

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

    .images img {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    /* 代码块样式 */
    pre {
        background: #1E2A38;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        font-size: 0.9rem;
    }

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

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

    table, th, td {
        border: 1px solid #6C5CE7;
    }

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

    th {
        background: #2C3E50;
    }

    /* 按钮样式 */
    .button {
        position: relative;
        display: inline-block;
        padding: 10px 20px;
        margin: 20px 0;
        background-color: #FF6F61;
        color: #FFFFFF;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        overflow: hidden;
        transition: background-color 0.3s ease;
    }

    .button:hover {
        background-color: #e65c59;
    }

    .button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.5s ease;
    }

    .button:active::before {
        transform: translate(-50%, -50%) scale(1);
    }

    /* 分隔线 */
    .section-divider {
        height: 0;
        border-top: 100px solid transparent;
        border-bottom: 100px solid #6C5CE7;
        margin: 50px 0;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 2rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        p, pre, table {
            font-size: 0.9rem;
        }
    }

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

    @media (max-width: 1024px) {
        h1 {
            font-size: 2.2rem;
        }
        .navbar a {
            margin: 0 10px;
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 1.8rem;
        }
        h2 {
            font-size: 1.5rem;
        }
        h3 {
            font-size: 1.2rem;
        }
        .images {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        h1 {
            font-size: 1.5rem;
        }
        .navbar a {
            font-size: 0.9rem;
            margin: 0 5px;
        }
    }

    @media (max-width: 320px) {
        h1 {
            font-size: 1.2rem;
        }
        p, pre, table {
            font-size: 0.8rem;
        }
    }

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

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

    /* 提示文字样式 */
    .reference-note {
        text-align: center;
        font-size: 1rem;
        margin: 20px 0;
        color: #38E54D;
        font-style: italic;
    }

