 /* ================== 全局变量 ================== */
        :root {
            --primary: #ff7eb3;
            --primary-light: #fff0f5;
            --primary-dark: #e66a9c;
            --text-main: #333;
            --bg-body: #fff5f8;
            --radius: 8px;
            
            /* 按钮颜色 */
            --btn-green-bg: linear-gradient(135deg, #67c23a 0%, #4caf50 100%);
            --btn-blue-bg: #e3f2fd;
            --btn-blue-text: #1976d2;
        }

        /* ================== 基础重置 ================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "Microsoft YaHei", sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.8; }
        a { text-decoration: none; color: inherit; transition: 0.3s; cursor: pointer; }
        ul { list-style: none; }
        img { display: block; max-width: 100%; border-radius: 4px; }

        .container { width: 1200px; margin: 0 auto; position: relative; padding: 0 15px; }
        
        /* 导航栏 */
        .header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 999; }
        .nav-inner { height: 70px; display: flex; align-items: center; justify-content: space-between; }
        .logo { font-size: 24px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 10px; }
        .logo span { font-size: 12px; background: #e3f2fd; color: #1976d2; padding: 2px 6px; border-radius: 4px; font-weight: normal; }
        .nav-menu a { padding: 0 20px; height: 70px; line-height: 70px; font-weight: bold; font-size: 15px; border-bottom: 3px solid transparent; }
        .nav-menu a:hover, .nav-menu a.active { color: var(--primary); border-bottom-color: var(--primary); }

        /* ================== 布局容器 ================== */
        .page-layout { display: flex; gap: 30px; margin-top: 30px; align-items: flex-start; }
        
        /* 左侧主内容区 */
        .main-content { 
            flex: 1; 
            min-width: 0; 
            background: #fff; 
            padding: 40px; 
            border-radius: var(--radius); 
            box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
        }
        
        
        
        /* 右侧侧边栏 */
        .sidebar { width: 340px; flex-shrink: 0; position: sticky; top: 90px; }

        /* 面包屑 */
        .breadcrumb { margin-bottom: 20px; font-size: 14px; color: #999; }
        .breadcrumb a:hover { color: var(--primary); }

        /* ================== APP 头部详情 (修改版) ================== */
        .app-hero { display: flex; gap: 25px; border-bottom: 1px solid #eee; padding-bottom: 30px; margin-bottom: 30px; }
        .app-icon-large { 
            width: 130px; height: 130px; border-radius: 24px; flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 1px solid #f0f0f0; 
        }
        .app-header-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
        
        .app-title-row { margin-bottom: 10px; }
        .app-title { font-size: 28px; font-weight: 800; color: #333; line-height: 1.2; margin-bottom: 8px;}
        .app-badges { display: flex; gap: 8px; }
        .badge { font-size: 12px; padding: 2px 8px; border-radius: 4px; background: #eee; color: #666; display: inline-block; }
        .badge.safe { background: #e8f5e9; color: #2e7d32; }

        /* 🌟 核心修改：下载按钮组 (头部右侧) */
        .download-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        /* 主按钮 (绿色) */
        .btn-main {
            background: var(--btn-green-bg);
            color: #fff;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
            display: flex; align-items: center; gap: 6px;
        }
        .btn-main:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4); }

        /* 次级按钮 (网盘等) */
        .btn-mirror {
            background: var(--btn-blue-bg);
            color: var(--btn-blue-text);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            border: 1px solid transparent;
        }
        .btn-mirror:hover { background: #d0e7f7; transform: translateY(-1px); }

        /* 提取码文字 */
        .code-text { font-size: 13px; color: #999; margin-left: 5px; }


        /* ================== 参数网格 ================== */
        .info-grid { 
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; 
            background: #fcfcfc; padding: 20px; border-radius: 8px; border: 1px solid #eee; margin-bottom: 30px;
        }
        .info-item { display: flex; flex-direction: column; }
        .info-label { font-size: 12px; color: #999; margin-bottom: 4px; }
        .info-value { font-size: 14px; font-weight: bold; color: #333; }

        /* ================== 🌟 修改：截图轮播 (Carousel) ================== */
        .carousel-container {
            position: relative;
            width: 100%;
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .carousel-wrapper {
            display: flex;
            transition: transform 0.4s ease-in-out;
            width: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 400px; /* 固定高度，可调整 */
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 裁剪填充 */
            object-position: top center;
        }

        /* 轮播控制按钮 */
        .c-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px; height: 40px;
            background: rgba(0,0,0,0.4);
            color: #fff;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
            cursor: pointer;
            border: none;
            z-index: 10;
            transition: 0.2s;
        }
        .c-btn:hover { background: rgba(0,0,0,0.7); }
        .c-prev { left: 15px; }
        .c-next { right: 15px; }


        /* ================== 正文样式 (H3统一) ================== */
        .content-body h3 { 
            font-size: 18px; 
            border-left: 5px solid var(--primary); 
            padding-left: 12px; 
            margin: 35px 0 15px; 
            background: linear-gradient(90deg, #fff5f8 0%, transparent 100%); 
            padding-top: 6px; padding-bottom: 6px;
            color: #333;
        }
        /* 第一个H3去掉上边距 */
        .content-body h3:first-of-type { margin-top: 0; }

        .content-body p { color: #555; margin-bottom: 15px; text-align: justify; }
        .content-body ul { padding-left: 20px; list-style: disc; color: #666; }
        .content-body li { margin-bottom: 8px; }


        /* ================== 侧边栏样式 (保持不变) ================== */
        .toc-card { background: #fff; padding: 20px; border-radius: var(--radius); border: 1px solid #eee; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
        .toc-title { font-weight: bold; margin-bottom: 15px; font-size: 16px; border-bottom: 2px solid var(--primary-light); padding-bottom: 10px; }
        .simple-list li { border-bottom: 1px dashed #eee; padding: 8px 0; display: flex; justify-content: space-between; color: #666; font-size: 14px; }
        .simple-list li:last-child { border: none; }
        .news-list { display: flex; flex-direction: column; gap: 15px; }
        .news-card { display: flex; gap: 12px; align-items: flex-start; transition: 0.2s; }
        .news-card:hover .news-text { color: var(--primary); }
        .news-thumb-box { width: 90px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; border: 1px solid #eee; }
        .news-thumb { width: 100%; height: 100%; object-fit: cover; }
        .news-info { flex: 1; min-width: 0; }
        .news-text { font-size: 14px; font-weight: bold; color: #333; line-height: 1.4; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .news-date { font-size: 12px; color: #aaa; }
        .seo-footer { background: #2c2c2c; color: #999; padding: 40px 0 20px; margin-top: 50px; font-size: 13px; text-align: center; }

        @media (max-width: 900px) {
            .page-layout { flex-direction: column; }
            .sidebar { width: 100%; position: static; }
            .app-hero { flex-direction: column; text-align: center; }
            .download-actions { justify-content: center; }
            .info-grid { grid-template-columns: 1fr 1fr; }
        }