        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5;
        }

        header {
            background-color: #f8f9fa;
            padding: 1rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1001;
        }

        .header-content {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            width: 50px;
            height: 50px;
        }

        .header-logo img {
            width: 100%;
            height: 100%;
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .header-logo img:hover {
            transform: scale(1.15);
        }

        nav.top-nav {
            display: flex;
            gap: 1rem;
        }

        nav.top-nav a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        nav.top-nav a:hover {
            color: #007bff;
        }

        .main-content {
            margin-top: 80px;
            padding: 20px;
            flex-grow: 1;
            max-width: 1300px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .content-section {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .article-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .article-meta {
            color: #7f8c8d;
            font-size: 0.9em;
            margin-bottom: 1.5rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 2rem 0;
        }

        .contact-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            text-align: center;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .contact-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .contact-desc {
            color: #7f8c8d;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            margin: 0 auto 1.5rem;
            border: 1px solid #eee;
            padding: 5px;
        }

        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .back-link {
            display: inline-block;
            margin-top: 1.5rem;
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .back-link:hover {
            text-decoration: underline;
            color: #1d6fa5;
        }

        iframe {
            display: block;
            width: 100%;
            border: none;
            margin: 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        /* 滚动条样式 */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        @media (max-width: 768px) {
            .main-content {
                padding: 15px;
                margin-top: 70px;
            }

            .content-section {
                padding: 15px;
            }

            .article-title {
                font-size: 1.75rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .qr-code {
                width: 180px;
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            nav.top-nav {
                gap: 0.5rem;
            }

            .header-logo {
                width: 40px;
                height: 40px;
            }

            .article-title {
                font-size: 1.5rem;
            }

            .contact-title {
                font-size: 1.3rem;
            }
        }

        iframe {
            display: block;
            /* 让 iframe 变成块级元素 */
            width: 100%;
            /* 让它占满容器 */
            height: 365px;
            /* 设定高度 */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            /* 添加阴影 */
            border-radius: 10px;
            /* 圆角 */
        }

        @media (max-width: 1300px) {
            iframe {
                height: 450px;
            }
        }

        @media (max-width: 1100px) {
            iframe {
                height: 750px;
            }
        }

        @media (max-width: 768px) {
            iframe {
                height: 750px;
            }
        }

        @media (max-width: 480px) {
            iframe {
                height: 600px;
            }
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif; /* 与style-index.css保持一致 */
    line-height: 1.6;
    background-color: #f5f5f5; /* 与style-index.css保持一致 */
    color: #333;
}

/* 导航栏样式 */
header {
    background-color: #f8f9fa;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1001;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    width: 50px;
    height: 50px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.header-logo img:hover {
    transform: scale(1.15);
}

nav.top-nav {
    display: flex;
    gap: 0.5rem;
}

nav.top-nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    font-weight:normal;
}

nav.top-nav a:hover {
    color: #007bff;
}


/* 内容容器（renew.css独有样式保留） */
.container {
    max-width: 900px;
    margin: 90px auto 40px;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2563eb;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 更新列表样式（renew.css独有样式保留） */
.update-list {
    position: relative;
    padding: 10px 0 30px;
}

/* 更新卡片样式（renew.css独有样式保留） */
.update-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.grid {
    display: grid;
    gap: 16px;
}

.version {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.version-number {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    display: flex;
    align-items: center;
}

.version-number::before {
    content: '📦';
    margin-right: 8px;
    font-size: 1.1em;
}

.date {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.changes {
    list-style-position: outside;
    color: #4b5563;
    padding-left: 18px;
}

.changes li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 4px;
}

.changes li:last-child {
    margin-bottom: 0;
}

.changes li::marker {
    color: #7c3aed;
}

/* 滚动条样式（以style-index.css为准） */
* {
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #db91f3 #ffd6d6;
}

/* Webkit 浏览器的滚动条样式 (Chrome, Safari, Edge 等) */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #ffd6d6;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    background: #ffd6d6;
}

::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #db91f3;
    border-radius: 3px;
    transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #b63f9a;
}

::-webkit-scrollbar-corner {
    background: #ffd6d6;
}

/* 深色模式支持（以style-index.css为准） */
@media (prefers-color-scheme: dark) {
    * {
        scrollbar-color: #db91f3 #2d2d2d;
    }

    ::-webkit-scrollbar,
    ::-webkit-scrollbar-track,
    ::-webkit-scrollbar-corner {
        background: #2d2d2d;
    }
}

/* iframe 样式 */
iframe {
    display: block;
    width: 100%;
    height: 365px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: none; /* 保留renew.css独有设置 */
}

/* 响应式设计 */
@media (max-width: 1300px) {
    iframe {
        height: 450px;
    }
}

@media (max-width: 1100px) {
    iframe {
        height: 750px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        width: 35px;
        height: 35px;
    }

    nav.top-nav a {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }

    .page-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .update-card {
        padding: 18px 20px;
    }

    .version-number {
        font-size: 16px;
    }

    iframe {
        height: 750px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
        margin-top: 80px;
    }

    .page-title {
        font-size: 24px;
    }

    .update-card {
        padding: 15px;
    }

    iframe {
        height: 600px;
    }
}