
    /* 基础样式 */
    body {
        margin: 0;
        padding: 0;
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0A1F44, #6C5CE7);
        color: #E0E0E0;
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        color: #38E54D;
        margin-top: 1.5em;
        margin-bottom: 0.5em;
    }

    p {
        margin-bottom: 1em;
        font-size: 1rem;
    }

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

    a:hover {
        color: #6C5CE7;
    }

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

    /* 容器 */
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(18, 18, 18, 0.9);
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        border-radius: 10px;
    }

    /* 导航栏 */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .navbar .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #38E54D;
    }

    .navbar .menu {
        display: none;
    }

    .drawer-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #0A1F44;
        transition: right 0.3s ease;
        padding-top: 60px;
    }

    .drawer-menu.open {
        right: 0;
    }

    .drawer-menu ul {
        list-style: none;
        padding: 0;
    }

    .drawer-menu ul li {
        margin: 20px 0;
        text-align: center;
    }

    .drawer-menu ul li a {
        color: #E0E0E0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #E0E0E0;
    }

    /* 主标题 */
    .main-title {
        text-align: center;
        font-size: 2.5rem;
        margin: 40px 0;
        color: #38E54D;
    }

    /* 文章部分 */
    article {
        margin-bottom: 40px;
    }

    article h2 {
        font-size: 2rem;
        color: #6C5CE7;
    }

    article h3 {
        font-size: 1.5rem;
        color: #38E54D;
    }

    article pre {
        background: #1E1E1E;
        padding: 15px;
        border-radius: 5px;
        overflow-x: auto;
    }

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

    /* 图片样式 */
    .images-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin: 20px 0;
    }

    .images-grid img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    /* 提示信息 */
    .reference-note {
        text-align: center;
        font-size: 1.2rem;
        color: #E0E0E0;
        margin: 20px 0;
    }

    /* 响应式设计 */
    @media (max-width: 1440px) {
        .main-title {
            font-size: 2.2rem;
        }

        article h2 {
            font-size: 1.8rem;
        }

        article h3 {
            font-size: 1.3rem;
        }
    }

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

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

        .navbar .menu {
            display: block;
        }
    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 2rem;
        }

        .drawer-menu ul li a {
            font-size: 1rem;
        }

        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        }
    }

    @media (max-width: 480px) {
        .main-title {
            font-size: 1.8rem;
        }

        article h2 {
            font-size: 1.6rem;
        }

        article h3 {
            font-size: 1.2rem;
        }

        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        }
    }

    @media (max-width: 320px) {
        .main-title {
            font-size: 1.5rem;
        }

        article h2 {
            font-size: 1.4rem;
        }

        article h3 {
            font-size: 1rem;
        }

        .images-grid {
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        }
    }

    /* 动画效果 */
    @keyframes rotate {
        from {
            transform: rotateY(0deg);
        }
        to {
            transform: rotateY(360deg);
        }
    }

    .rotating-element {
        width: 200px;
        height: 200px;
        margin: 0 auto;
        background: url('https://images.gptkong.com/demo/sample1.png') no-repeat center;
        background-size: cover;
        animation: rotate 15s linear infinite;
    }

    .button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #38E54D;
        color: #121212;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: transform 0.3s ease, background-color 0.3s ease;
        font-family: 'Poppins', sans-serif;
    }

    .button:hover {
        transform: scale(1.1);
        background-color: #6C5CE7;
    }

    /* 数据可视化图表 */
    .chart {
        width: 100%;
        height: 300px;
        background-image: url('https://images.gptkong.com/demo/sample2.png');
        background-repeat: no-repeat;
        background-size: contain;
        margin-bottom: 20px;
    }

    /* 视差滚动 */
    .parallax {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 400px;
        margin: 40px 0;
    }

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

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