
    /* 全局样式 */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(135deg, #0F4C81, #1E90FF);
        color: #ffffff;
        line-height: 1.6;
        padding: 20px;
    }

    /* 容器 */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* 导航栏 */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(15, 76, 129, 0.8);
        padding: 15px 30px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .navbar .logo {
        font-size: 24px;
        font-weight: bold;
        color: #FF6F61;
    }

    .navbar .nav-links a {
        margin-left: 20px;
        text-decoration: none;
        color: #ffffff;
        transition: color 0.3s ease;
    }

    .navbar .nav-links a:hover {
        color: #FF6F61;
    }

    /* 轮播图 */
    .carousel {
        position: relative;
        width: 100%;
        height: 400px;
        background: url('https://images.gptkong.com/demo/sample1.png') center center / cover no-repeat;
        border-radius: 15px;
        margin-bottom: 40px;
        animation: aurora-move 15s linear infinite;
    }

    @keyframes aurora-move {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* 主标题 */
    .main-title {
        text-align: center;
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 20px;
        background: linear-gradient(90deg, #FF6F61, #FF8C42);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* 关键词标签 */
    .keywords {
        text-align: center;
        margin-bottom: 40px;
    }

    .keywords span {
        display: inline-block;
        background: rgba(255, 111, 97, 0.2);
        color: #FF6F61;
        padding: 5px 10px;
        margin: 5px;
        border-radius: 20px;
        font-size: 14px;
    }

    /* 文章内容 */
    article {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
    }

    article h2, article h3, article h4 {
        color: #FF6F61;
        margin-bottom: 15px;
    }

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

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

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

    /* 示例数据展示 */
    .example-data {
        margin-top: 40px;
    }

    .example-data h3 {
        color: #FF6F61;
        margin-bottom: 20px;
    }

    .example-data ul {
        list-style: none;
    }

    .example-data li {
        background: rgba(255, 111, 97, 0.1);
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 10px;
    }

    /* 图片展示 */
    .image-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

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

    /* 页脚提示 */
    .footer-note {
        text-align: center;
        font-size: 14px;
        color: #cccccc;
        margin-top: 50px;
    }

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

    @media (max-width: 1200px) {
        .carousel {
            height: 300px;
        }

        .navbar {
            flex-direction: column;
        }

        .navbar .nav-links a {
            margin: 10px 0;
        }
    }

    @media (max-width: 1024px) {
        .main-title {
            font-size: 36px;
        }

        article {
            padding: 20px;
        }
    }

    @media (max-width: 768px) {
        .carousel {
            height: 250px;
        }

        .main-title {
            font-size: 28px;
        }
    }

    @media (max-width: 480px) {
        .navbar {
            padding: 10px 20px;
        }

        .main-title {
            font-size: 24px;
        }

        .keywords span {
            font-size: 12px;
            padding: 4px 8px;
        }
    }

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

        .keywords span {
            font-size: 10px;
            padding: 3px 6px;
        }
    }

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

    a:hover {
        opacity: 0.7;
    }

