
    /* 基础样式 */
    body {
        margin: 0;
        padding: 0;
        background: linear-gradient(135deg, #1a1c2c, #2d3047);
        color: #ffffff;
        font-family: 'Roboto', 'Open Sans', sans-serif;
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #00ff7f;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    p, ul, ol, table, pre {
        margin-bottom: 1.5em;
        padding: 0 1em;
    }

    /* 布局网格 */
    .container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        padding: 20px;
    }

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

    .module:hover {
        transform: translateY(-10px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    }

    /* 按钮样式 */
    .btn {
        display: inline-block;
        padding: 10px 20px;
        margin: 10px 0;
        background: linear-gradient(45deg, #00ff7f, #1a1c2c);
        color: #ffffff;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn:hover {
        background: linear-gradient(45deg, #1a1c2c, #00ff7f);
        box-shadow: 0 0 10px #00ff7f;
        transform: scale(1.05);
    }

    /* 表格样式 */
    table {
        width: 100%;
        border-collapse: collapse;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }

    table th, table td {
        padding: 12px 15px;
        text-align: left;
    }

    table th {
        background: #00ff7f;
        color: #1a1c2c;
    }

    table tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.05);
    }

    /* 代码块样式 */
    pre {
        background: #2d3047;
        padding: 15px;
        border-radius: 10px;
        overflow-x: auto;
        font-family: 'Courier New', Courier, monospace;
        color: #00ff7f;
    }

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

    /* 图片样式 */
    .decorative-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        border-radius: 10px;
    }

    /* 动画效果 */
    @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;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .fade-in {
        animation: fadeIn 2s ease-in;
    }

    /* 响应式设计 */
    @media (max-width: 320px) {
        .container {
            grid-template-columns: 1fr;
            padding: 10px;
        }
    }

    @media (max-width: 480px) {
        .container {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .container {
            grid-template-columns: 1fr 1fr;
        }
    }

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

    @media (min-width: 1200px) {
        .container {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (min-width: 1440px) {
        .container {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    /* 链接样式 */
    a {
        color: #00ff7f;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    a:hover {
        color: #ffffff;
        text-shadow: 0 0 5px #00ff7f;
    }

    /* 提示文本样式 */
    .reference-note {
        text-align: center;
        margin: 20px 0;
        font-size: 1.2em;
        color: #ffcc00;
        animation: fadeIn 3s ease-in-out;
    }

    /* 页面标题样式 */
    .page-title {
        text-align: center;
        padding: 40px 20px 20px 20px;
        font-size: 2.5em;
        background: linear-gradient(135deg, #1a1c2c, #2d3047);
        color: #00ff7f;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    /* 文章区块样式 */
    .article-section {
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
    }

    .article-section h2 {
        margin-top: 0;
    }

    /* 图文并茂布局 */
    .image-text {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .image-text img {
        flex: 1 1 300px;
        max-width: 100%;
        border-radius: 10px;
    }

    .image-text div {
        flex: 2 1 500px;
    }

    /* 仪表盘和图表样式 */
    .dashboard, .charts {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* 视觉层次 */
    .layered-background {
        position: relative;
        z-index: 1;
    }

    .layered-background::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, rgba(255, 87, 34, 0.3), transparent);
        z-index: -1;
        animation: aurora-move 20s linear infinite;
    }

