        * {
            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;
    }
}
/* ====== 返回顶部按钮样式 ====== */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
  overflow: hidden;
  animation: breathing 3s ease-in-out infinite;
}

/* 呼吸闪动 */
@keyframes breathing {
  0%, 100% { box-shadow: 0 0 15px rgba(54 243 178 / 58%); }
  50% { box-shadow: 0 0 25px rgba(184 73 218 / 58%); }
}

/* 图片 */
#backToTop img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  position: absolute;
  z-index: 2;
  transition: transform 0.4s ease;
}

/* 滚动进度环 */
.progress-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 1;
}
.progress-ring__background {
  fill: none;
  stroke: rgba(230 157 157 / 32%);
  stroke-width: 8;
}
.progress-ring__circle {
  fill: none;
  stroke: #d786dc;
  stroke-width: 8;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.2s ease;
}

/* 显示状态 */
#backToTop.show {
  display: flex;
  opacity: 1;
  animation: fadeInUp 0.4s ease, breathing 3s ease-in-out infinite;
}

/* 悬停动效 */
#backToTop:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}
#backToTop:hover img {
  transform: translateY(-2px) rotate(-8deg);
}

/* 点击反馈 */
#backToTop:active {
  transform: scale(0.9);
}

/* 出现动画 */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 暗色模式 */
@media (prefers-color-scheme: dark) {
  #backToTop {
    background: rgba(40, 40, 40, 0.6);
  }
  .progress-ring__background {
    stroke: rgba(255, 255, 255, 0.1);
  }
}

/* 手机端优化 */
@media (max-width: 768px) {
  #backToTop {
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
  }
}
.back-link {
    display: inline-block;
    margin: 20px 0;
    color: #3498db;
    text-decoration: none;
    font-weight: 500
}

.back-link:hover {
    text-decoration: underline
}