
        /* 修改全局字体设置 */
        body {
            margin: 0;
            padding: 0;
            font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow-x: hidden;
        }

        /* 确保所有文本元素都使用新字体 */
        h1, h2, h3, h4, h5, h6, p, span, a, button, input, textarea {
            font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(125deg, #2196f366, #00bcd466, #e91e6366);
            opacity: 0.6;
            animation: gradientMove 15s ease infinite;
            z-index: -1;
            filter: blur(100px);
        }

        @keyframes gradientMove {
            0% {
                background-position: 0% 50%;
            }
            25% {
                background-position: 100% 50%;
            }
            50% {
                background-position: 50% 100%;
            }
            75% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 50% 0%;
            }
        }

        body::before {
            background-size: 400% 400%;
        }

        .container {
            text-align: center;
            padding: 20px;
            margin-top: 20px;
            width: 100%;
            box-sizing: border-box;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .logo {
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 2em;
            margin-bottom: 15px;
        }

        .download-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 20px;
            margin: 30px auto;
   
        }

        .download-button {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            min-width: 200px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-size: 1.2em;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .download-button i {
            font-size: 2rem;
        }

        .platform-icon {
            width: 32px;
            height: 32px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .download-button:hover .platform-icon {
            transform: scale(1.1);
        }

        .button-text {
            display: flex;
            flex-direction: column;
        }

        .button-text small {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        .button-text strong {
            font-size: 1.1rem;
        }

      .android {
            background: #f1c40f;
            box-shadow: 0 4px 15px rgba(61, 220, 132, 0.3);
        }

        .ios {
            background: #52bdff;
            box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
        }

        .wx {
            background: #3DDC84;
            box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
        }

        .windows {
            background: #2c3e50;
            box-shadow: 0 4px 15px rgba(0, 164, 239, 0.3);
        }


        .download-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .download-button:active {
            transform: translateY(0);
        }

        .features {
            margin-top: 50px;
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
            box-sizing: border-box;
            margin-left: auto;
            margin-right: auto;
        }

        .features h2 {
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }

        .feature-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            justify-content: center;
            margin: 0 auto;
        }

        .feature-card {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 15px;
            padding: 20px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-card h3 {
            color: #333;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        .feature-card p {
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .feature-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .download-buttons {
                flex-direction: column;
                padding: 0;
                gap: 15px;
                width: 90%;
                max-width: 280px;
                margin: 30px auto;
                align-items: center;
                margin-left: auto;
                margin-right: auto;
            }

            .download-button {
                width: 100%;
                min-width: unset;
                padding: 12px 20px;
                font-size: 1.1em;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0;
                box-sizing: border-box;
            }

            .download-button i {
                width: 20px;
                height: 20px;
                margin-right: 8px;
            }

            .features {
                padding: 0 15px;
                margin-top: 30px;
            }

            .feature-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                width: 100%;
            }

            .feature-card {
                padding: 15px;
            }

            .feature-card h3 {
                font-size: 1.1em;
            }

            .feature-card p {
                font-size: 0.9em;
            }

            .download-buttons > * {
                margin-left: 0;
                margin-right: 0;
            }
        }

        @media (max-width: 600px) {
            .feature-cards {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .download-buttons {
                width: 85%;
                max-width: 260px;
            }
        }

        @media (max-width: 320px) {
            .logo {
                width: 80px;
                height: 80px;
            }

            h1 {
                font-size: 1.8em;
            }

            .container {
                padding: 10px;
            }

            .download-buttons {
                width: 80%;
                max-width: 240px;
            }

            .download-button {
                padding: 10px 15px;
                font-size: 1em;
            }

            .download-button i {
                width: 18px;
                height: 18px;
            }

            .features {
                padding: 0 10px;
            }

            .feature-card {
                padding: 12px;
            }
        }

        /* 更新卡片和文字颜色为亮色主题 */
        .feature-card {
            background: rgba(0, 0, 0, 0.05);
        }

        .feature-card h3 {
            color: #333;
        }

        .feature-card p {
            color: #666;
        }

        .download-stats {
            background: rgba(0, 0, 0, 0.05);
        }

        .stat-number {
            color: #333;
        }

        .stat-label {
            color: #666;
        }

        /* 更新其他文字颜色 */
        h1, h2, h3, p {
            color: #333;
        }

        /* 友情链接样式 */
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .friend-link-card {
            padding: 10px 20px;
            background: #fff;
            border-radius: 8px;
            color: #333;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .friend-link-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .friend-links {
                gap: 10px;
            }

            .friend-link-card {
                padding: 8px 15px;
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .friend-links {
                gap: 8px;
            }

            .friend-link-card {
                padding: 6px 12px;
                font-size: 0.85em;
                min-width: 80px;
                text-align: center;
            }
        }

        footer {
            color: #333;
        }

        /* 下载量统计样式更新 */
        .download-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 30px auto;
            padding: 20px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            max-width: 600px;
            flex-direction: row; /* 确保水平排列 */
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 1.8em;
            font-weight: bold;
            color: #333;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-label {
            font-size: 0.9em;
            color: #666;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.2s;
        }

        /* 添加动画关键帧 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 为每个统计项添加不同的动画延迟 */
        .stat-item:nth-child(1) .stat-number { animation-delay: 0.2s; }
        .stat-item:nth-child(2) .stat-number { animation-delay: 0.4s; }
        .stat-item:nth-child(3) .stat-number { animation-delay: 0.6s; }
        .stat-item:nth-child(1) .stat-label { animation-delay: 0.4s; }
        .stat-item:nth-child(2) .stat-label { animation-delay: 0.6s; }
        .stat-item:nth-child(3) .stat-label { animation-delay: 0.8s; }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .download-stats {
                flex-direction: row; /* 保持水平排列 */
                gap: 20px; /* 减小间距 */
                padding: 15px;
                margin: 20px auto;
            }

            .stat-item {
                gap: 3px;
            }

            .stat-number {
                font-size: 1.2em; /* 减小字体大小 */
            }

            .stat-label {
                font-size: 0.8em;
            }
        }

        @media (max-width: 320px) {
            .download-stats {
                gap: 10px; /* 更小的间距 */
                padding: 10px;
            }

            .stat-number {
                font-size: 1em;
            }

            .stat-label {
                font-size: 0.7em;
            }
        }

        /* 添加返回顶部按钮样式 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            border: none;
            background-color: #333;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 35px;
                height: 35px;
            }
        }

        /* 添加视差滚动效果的样式 */
        .parallax-container {
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        .feature-card {
            transform: translateZ(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
        }

        .feature-card:hover {
            transform: translateY(-5px) translateZ(20px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* 优化移动端触摸反馈 */
        @media (hover: none) {
            .feature-card {
                transition: transform 0.2s ease;
            }
            
            .feature-card:active {
                transform: scale(0.98);
                background: rgba(255, 255, 255, 0.15);
            }
        }

        .contact-section {
            padding: 4rem 2rem;
        }

        .contact-section h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            padding: 2rem;
            border-radius: 12px;
        }

        .contact-card h3 {
            margin-bottom: 1.5rem;
            color: #333;
        }

        .contact-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 改为两列布局 */
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            text-decoration: none;
            color: #333;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            transition: all 0.2s ease;
            background: white;
        }

        .contact-item:hover {
            transform: translateY(-2px);
            border-color: #4a90e2;
            box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
        }

        .contact-item i {
            font-size: 1.5rem;
            width: 24px;
            text-align: center;
        }

        .contact-item span {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* 修改技术支持按钮的移动端样式 */
        @media (max-width: 768px) {
            .contact-items {
                grid-template-columns: repeat(2, 1fr); /* 一行两个按钮 */
                gap: 15px;
                padding: 0 20px;
                max-width: 400px; /* 控制单个卡片的最大宽度 */
                margin: 0 auto;
            }

            .contact-item {
                padding: 15px 20px; /* 增加内边距，与友情链接按钮一致 */
                font-size: 1.1rem; /* 增加字体大小 */
                font-weight: 500;
            }

            .contact-item i {
                font-size: 1.5rem; /* 增加图标大小 */
                width: 24px;
                text-align: center;
            }

            .contact-item span {
                font-size: 1.1rem; /* 与友情链接按钮字体大小一致 */
            }
        }

        @media (max-width: 320px) {
            .contact-items {
                gap: 12px;
                padding: 0 15px;
            }

            .contact-item {
                padding: 12px 15px; /* 与友情链接按钮内边距一致 */
            }

            .contact-item i {
                font-size: 1.2rem;
            }

            .contact-item span {
                font-size: 1rem; /* 与友情链接按钮字体大小一致 */
            }
        }

        /* 为不同平台设置特定样式 */
        .contact-item.telegram:hover {
            border-color: #0088cc;
            color: #0088cc;
        }

        .contact-item.discord:hover {
            border-color: #5865F2;
            color: #5865F2;
        }

        .contact-item.email:hover {
            border-color: #ea4335;
            color: #ea4335;
        }

        .contact-item.github:hover {
            border-color: #333;
            color: #333;
        }

        /* 合作伙伴区块 */
        .partners-section {
            position: relative;
            padding: 60px 0;
            overflow: hidden;
        }

        .partners-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            z-index: 1;
        }

        .partners-container h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

        .partner-category {
            margin-bottom: 40px;
        }

        .partner-category h3 {
            margin-bottom: 20px;
            color: #333;
        }

        .partner-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* PC端一行两个 */
            gap: 20px;
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .partner-card {
            position: relative;
            background: white;
            border-radius: 8px;
            padding: 25px 15px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            will-change: transform;
        }

        .partner-card img {
            width: auto;
            height: 60%;
            object-fit: contain;
            margin: 0;
            transition: transform 0.3s ease;
        }

        .partner-name {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
        }

        .partner-name h4 {
            margin: 0;
            color: #333 !important; /* 深灰色文字 */
            font-size: 0.9rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* 悬停效果 */
        .partner-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .partner-card:hover .partner-name {
            transform: translateY(0);
        }

        .partner-card:hover .partner-name h4 {
            opacity: 1;
            transform: translateY(0);
        }

        .partner-card:hover img {
            transform: scale(0.95);
        }

        /* 修改合作伙伴卡片的移动端样式 */
        @media (max-width: 768px) {
            .partner-cards {
                grid-template-columns: 1fr; /* 改为一列布局 */
                gap: 20px;
                padding: 0 20px;
                max-width: 400px; /* 控制单个卡片的最大宽度 */
                margin: 0 auto;
            }

            .partner-card {
                aspect-ratio: 16/9;
                padding: 25px;
                height: 180px; /* 增加高度 */
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .partner-card img {
                width: auto;
                height: 75%; /* 增加图片高度占比 */
                max-width: 90%;
            }

            .partner-name {
                padding: 12px;
            }

            .partner-name h4 {
                font-size: 1.1rem;
                margin: 0;
            }
        }

        /* 更小屏幕的合作伙伴适配 */
        @media (max-width: 480px) {
            .partner-cards {
                max-width: 320px;
                padding: 0 15px;
            }

            .partner-card {
                height: 150px;
                padding: 20px;
            }

            .partner-card img {
                height: 70%;
            }
        }

        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
            background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
        }

        .bubble {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(
                45deg,
                rgba(var(--bubble-color-1), 0.1),
                rgba(var(--bubble-color-2), 0.1)
            );
            backdrop-filter: blur(1px);
            animation: float var(--duration) ease-in-out infinite;
        }

        /* 设置泡泡的颜色变量 */
        :root {
            --bubble-color-1: 100, 149, 237;  /* 矢车菊蓝 */
            --bubble-color-2: 135, 206, 235;  /* 天蓝色 */
        }

        /* 设置不同泡泡的大小和动画 */
        .bubble:nth-child(1) {
            --size: 120px;
            --duration: 20s;
            width: var(--size);
            height: var(--size);
            left: 10%;
            animation-delay: 0s;
        }

        .bubble:nth-child(2) {
            --size: 80px;
            --duration: 18s;
            width: var(--size);
            height: var(--size);
            left: 25%;
            animation-delay: -2s;
        }

        .bubble:nth-child(3) {
            --size: 100px;
            --duration: 22s;
            width: var(--size);
            height: var(--size);
            left: 40%;
            animation-delay: -4s;
        }

        .bubble:nth-child(4) {
            --size: 90px;
            --duration: 25s;
            width: var(--size);
            height: var(--size);
            left: 55%;
            animation-delay: -6s;
        }

        .bubble:nth-child(5) {
            --size: 130px;
            --duration: 21s;
            width: var(--size);
            height: var(--size);
            left: 70%;
            animation-delay: -8s;
        }

        .bubble:nth-child(6) {
            --size: 110px;
            --duration: 19s;
            width: var(--size);
            height: var(--size);
            left: 85%;
            animation-delay: -10s;
        }

        .bubble:nth-child(7) {
            --size: 95px;
            --duration: 23s;
            width: var(--size);
            height: var(--size);
            left: 15%;
            animation-delay: -12s;
        }

        .bubble:nth-child(8) {
            --size: 115px;
            --duration: 24s;
            width: var(--size);
            height: var(--size);
            left: 30%;
            animation-delay: -14s;
        }

        .bubble:nth-child(9) {
            --size: 85px;
            --duration: 20s;
            width: var(--size);
            height: var(--size);
            left: 45%;
            animation-delay: -16s;
        }

        .bubble:nth-child(10) {
            --size: 125px;
            --duration: 26s;
            width: var(--size);
            height: var(--size);
            left: 60%;
            animation-delay: -18s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) scale(1);
            }
            50% {
                transform: translateY(-10vh) scale(1.1);
            }
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .bubble {
                --size: calc(var(--size) * 0.7);  /* 移动端缩小泡泡尺寸 */
            }
        }

        /* 修改应用截图展示区域为轮播图 */
        .app-screenshots {
            padding: 60px 0;
            background: rgba(255, 255, 255, 0.05);
            margin: 40px 0;
        }

        .app-screenshots h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
        }

        .carousel-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            padding: 0 25px;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            background: transparent;
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

        .carousel-slide img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 600px;
            object-fit: contain;
            padding: 10px;
            box-sizing: border-box;
        }

        /* 优化轮播按钮位置 */
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 2;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .carousel-button.prev {
            left: -20px;
        }

        .carousel-button.next {
            right: -20px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #333;
            transform: scale(1.2);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .carousel-container {
                max-width: 320px;
                padding: 0 25px;
            }

            .carousel-slide img {
                max-height: 500px; /* 调整移动端最大高度 */
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                max-width: 280px;
                padding: 0 25px;
            }

            .carousel-button {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .carousel-slide img {
                max-height: 400px; /* 调整小屏幕最大高度 */
            }
        }

        /* 页脚样式 */
        .footer-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: transform 0.3s ease;
        }

        .footer-badge img {
            height: 25px; /* 增加高度 */
            width: auto;
            border-radius: 6px;
        }

        .footer-badge:hover {
            transform: translateY(-2px);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .footer-badges {
                gap: 10px;
            }
            
            .footer-badge img {
                height: 22px; /* 移动端稍微小一点 */
            }
        }

        @media (max-width: 480px) {
            .footer-badges {
                gap: 8px;
            }
            
            .footer-badge img {
                height: 20px; /* 小屏幕下更小一些 */
            }
        }