
    /* 基本样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Roboto', 'Helvetica', sans-serif;
        background: linear-gradient(135deg, #00264d, #3c1a7f);
        color: #ffffff;
        line-height: 1.6;
    }
    /* 容器 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    /* 头部样式 */
    header {
        text-align: center;
        padding: 50px 0;
        background: radial-gradient(circle, rgba(0,38,77,1) 0%, rgba(60,26,127,1) 100%);
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    header h1 {
        font-size: 3em;
        margin-bottom: 10px;
        color: #00ff80;
    }
    header p {
        font-size: 1.2em;
        color: #ffffff;
    }
    /* 主体内容 */
    main {
        padding: 40px 0;
    }
    article {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    article h2 {
        font-size: 2.5em;
        color: #00ff80;
        margin-bottom: 20px;
        text-align: center;
    }
    article h3 {
        font-size: 1.8em;
        color: #ff5722;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    article p {
        font-size: 1em;
        color: #ffffff;
        margin-bottom: 15px;
    }
    article pre {
        background: #1e1e1e;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
        margin-bottom: 15px;
    }
    article code {
        color: #00ff80;
        font-family: 'Courier New', Courier, monospace;
    }
    /* 示例数据 */
    .sample-data {
        margin-top: 40px;
    }
    .sample-data h3 {
        color: #ff9800;
        margin-bottom: 20px;
    }
    .sample-data ul {
        list-style: none;
        padding: 0;
    }
    .sample-data li {
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 10px;
        padding: 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
    }
    .sample-data li img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        border-radius: 5px;
    }
    .sample-data li div {
        flex: 1;
    }
    /* 图片样式 */
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }
    .images-grid img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }
    .images-grid img:hover {
        transform: scale(1.05);
    }
    /* 视觉冲击提示 */
    .reference-note {
        text-align: center;
        margin: 40px 0;
        font-size: 1.2em;
        color: #ffeb3b;
    }
    /* 响应式设计 */
    @media (max-width: 1440px) {
        header h1 {
            font-size: 2.5em;
        }
        article h2 {
            font-size: 2em;
        }
    }
    @media (max-width: 1200px) {
        .container {
            width: 95%;
        }
        article h2 {
            font-size: 1.8em;
        }
    }
    @media (max-width: 1024px) {
        article h3 {
            font-size: 1.5em;
        }
    }
    @media (max-width: 768px) {
        header h1 {
            font-size: 2em;
        }
        article h2 {
            font-size: 1.5em;
        }
    }
    @media (max-width: 480px) {
        header h1 {
            font-size: 1.8em;
        }
        article h2 {
            font-size: 1.3em;
        }
        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        }
    }
    @media (max-width: 320px) {
        header h1 {
            font-size: 1.5em;
        }
        article h2 {
            font-size: 1.1em;
        }
    }
    /* 按钮样式 */
    .btn {
        display: inline-block;
        padding: 10px 20px;
        background: #00ff80;
        color: #00264d;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1em;
        transition: background 0.3s ease, transform 0.3s ease;
    }
    .btn:hover {
        background: #00e676;
        transform: scale(1.05);
    }
    /* 动画效果 */
    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    .animated-background {
        background: radial-gradient(circle, rgb(255, 87, 34), transparent);
        animation: aurora-move 15s linear infinite;
    }
    /* 代码块样式 */
    .code-block {
        background: #2d2d2d;
        padding: 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin-bottom: 20px;
    }
    .code-block code {
        color: #f8f8f2;
        font-family: 'Courier New', Courier, monospace;
        font-size: 0.95em;
    }
    /* 列表样式 */
    ul {
        padding-left: 20px;
    }
    li {
        margin-bottom: 10px;
    }
    /* 链接样式 */
    a {
        color: #00ff80;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }

