/* --- 全局变量 --- */
        :root {
            --primary: #ff7eb3;
            --primary-dark: #e66a9c;
            --text-main: #333;
            --text-gray: #888;
            --bg-body: #fff5f8;
            --radius: 8px;
            --btn-green: linear-gradient(135deg, #67c23a 0%, #4caf50 100%);
            --ribbon-red: #ff5252;
            --baidu-blue: #06a7ff;
            --alert-bg: #fff0f0;
            --alert-border: #ffcccc;
            --alert-text: #d32f2f;
        }

        /* --- 基础重置 --- */
        * { 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.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; cursor: pointer; }
        ul { list-style: none; }
        img { display: block; max-width: 100%; }
        button { cursor: pointer; font-family: inherit; }

        .container { width: 1200px; margin: 0 auto; position: relative; }
        .flex-row { display: flex; gap: 20px; align-items: flex-start; margin-top: 20px; }
        
        /* --- 顶部导航 --- */
        .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); }

        /* --- Banner --- */
        .banner-wrapper {
            height: 420px;
            position: relative; 
            margin-bottom: 25px; 
            overflow: hidden; 
            box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
            border-radius: 0 0 12px 12px;
        }
        .banner-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
        }
        .banner-mask {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(30,30,30,0.95) 0%, rgba(30,30,30,0.85) 0%, transparent 100%);
            display: flex; align-items: center;
            z-index: 1; 
        }
        .banner-content { padding-left: 60px; color: #fff; max-width: 550px; position: relative; z-index: 2; }
        
        .ver-line { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
        .ver-badge { background: #ff9800; color: #fff; padding: 4px 10px; font-size: 12px; font-weight: bold; border-radius: 4px; }
        .update-time { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); padding: 4px 10px; font-size: 12px; border-radius: 4px; color: #fff; font-weight: bold; display: flex; align-items: center; gap: 5px; }

        .banner-title { font-size: 48px; font-weight: bold; margin-bottom: 10px; }
        .banner-slogan { font-size: 22px; font-weight: 300; margin-bottom: 20px; opacity: 0.9; }
        .banner-desc { font-size: 14px; opacity: 0.7; margin-bottom: 30px; line-height: 1.8; }
        .banner-btns { display: flex; gap: 15px; }
        .b-btn { padding: 12px 30px; border-radius: 50px; font-weight: bold; display: flex; align-items: center; gap: 8px; color: #fff; border: none; cursor: pointer; font-size: 15px; transition: transform 0.2s; }
        .b-btn:hover { transform: translateY(-3px); }
        .b-btn.android { background: var(--btn-green); box-shadow: 0 5px 15px rgba(103, 194, 58, 0.4); }

        /* --- 布局通用 --- */
        .sidebar { width: 320px; flex-shrink: 0; }
        .main-content { flex: 1; min-width: 0; }
        .card { background: #fff; padding: 25px; margin-bottom: 25px; border-radius: var(--radius); box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid #fcfcfc; }
        .card-head { border-bottom: 1px solid #f0f0f0; padding-bottom: 15px; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
        .card-title { font-size: 18px; font-weight: bold; border-left: 5px solid var(--primary); padding-left: 12px; line-height: 1; }
        .card-more { font-size: 12px; color: #999; }
        .card-more:hover { color: var(--primary); }

        /* --- 侧边栏 --- */
        .dl-card { border: 2px solid #fff0f5; position: relative; overflow: hidden; }
        .dl-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
        .dl-title { font-size: 18px; font-weight: bold; color: var(--primary); display: flex; align-items: center; gap: 5px; }
        .dl-safe { background: #e1f5fe; color: #039be5; font-size: 12px; padding: 2px 8px; border-radius: 4px; }
        .dl-info { background: #f9f9f9; color: #666; font-size: 12px; padding: 10px; border-radius: 6px; margin-bottom: 20px; display: flex; justify-content: space-between; }
        .dl-btn-wrap { position: relative; margin-bottom: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
        .dl-btn { display: flex; justify-content: center; align-items: center; width: 100%; height: 55px; color: #fff; font-weight: bold; font-size: 16px; text-decoration: none; padding-right: 20px; cursor: pointer; }
        .dl-btn.green { background: var(--btn-green); }
        .baidu-btn { display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; height: 45px; background: var(--baidu-blue); color: #fff; border-radius: 8px; margin-bottom: 10px; font-size: 14px; font-weight: bold; border: none; transition: 0.2s; box-shadow: 0 4px 10px rgba(6, 167, 255, 0.2); }
        .baidu-btn:hover { background: #0091ea; box-shadow: 0 6px 12px rgba(6, 167, 255, 0.3); transform: translateY(-2px); }
        .ribbon-box { position: absolute; top: 0; right: 0; width: 60px; height: 60px; overflow: hidden; pointer-events: none; }
        .ribbon-text { position: absolute; top: 8px; right: -22px; width: 80px; background: var(--ribbon-red); color: #fff; font-size: 10px; font-weight: bold; text-align: center; transform: rotate(45deg); padding: 4px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
        
        .game-info-img { width: 100%; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .info-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 12px; border-bottom: 1px dashed #eee; padding-bottom: 8px; }
        .info-label { color: #999; } .info-val { font-weight: 500; }
        .rating-box { text-align: center; background: #fffbe6; padding: 10px; border-radius: 6px; margin-bottom: 15px; }
        .rating-num { font-size: 24px; font-weight: bold; color: #ff9800; }
        .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
        .tag-item { background: #f0f2f5; font-size: 12px; padding: 4px 10px; border-radius: 20px; color: #666; }

        /* --- 游戏画面 & 视频 --- */
        .gallery-wrap { position: relative; }
        .gallery-main { position: relative; width: 100%; height: 450px; background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 15px; display: flex; align-items: center; justify-content: center; }
        .gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: opacity 0.3s; display: none; }
        .gallery-main iframe { width: 100%; height: 100%; border: none; display: none; }
        .g-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(0,0,0,0.6); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; cursor: pointer; z-index: 10; }
        .g-arrow:hover { background: var(--primary); }
        .g-prev { left: 15px; } .g-next { right: 15px; }
        
        .gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
        .g-thumb { width: 120px; height: 70px; flex-shrink: 0; border-radius: 4px; cursor: pointer; border: 2px solid transparent; opacity: 0.6; transition: 0.2s; position: relative; background: #000; overflow: hidden; }
        .g-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .g-thumb.active, .g-thumb:hover { opacity: 1; border-color: var(--primary); }
        .g-thumb.is-video::before { content: '▶'; position: absolute; top:50%; left:50%; transform:translate(-50%, -50%); color:#fff; font-size: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); z-index: 2; }

        /* ...其余样式保持不变... */
        .install-alert-box { background: #fffafa; border: 2px solid #ff4d4f; border-left: 8px solid #d32f2f; padding: 20px; border-radius: 8px; margin-bottom: 25px; cursor: pointer; transition: all 0.2s; position: relative; box-shadow: 0 4px 12px rgba(255, 77, 79, 0.15); }
        .install-alert-box:hover { background: #fff0f0; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255, 77, 79, 0.25); }
        .alert-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .alert-icon { font-size: 22px; }
        .alert-title { color: #d32f2f; font-weight: bold; font-size: 18px; }
        
        .limit-text-3 {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3; /* 限制3行 */
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 14px; 
            color: #555; 
            line-height: 1.6;
            margin-bottom: 12px;
            word-break: break-all;
        }

        .alert-action { margin-top: 10px; text-align: center; font-size: 14px; font-weight: bold; color: var(--primary); border-top: 1px dashed #ffccc7; padding-top: 8px; }
        .alert-action span { background: var(--primary); color: #fff; padding: 4px 15px; border-radius: 20px; display: inline-block; }
        @keyframes shake-hard { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 10%, 30%, 50%, 70%, 90% { transform: translate(-8px, -2px) rotate(-1deg); } 20%, 40%, 60%, 80% { transform: translate(8px, 2px) rotate(1deg); } }
        .shake-active { animation: shake-hard 0.8s cubic-bezier(.36,.07,.19,.97) both; }
        .dl-status-box { display: none; background: #f0f9eb; color: #67c23a; border: 1px solid #c2e7b0; padding: 15px; border-radius: 8px; margin-bottom: 15px; text-align: center; font-weight: bold; font-size: 16px; box-shadow: 0 4px 10px rgba(103, 194, 58, 0.15); animation: fadeInSlide 0.5s ease; }
        .dl-status-box.active { display: block; }
        @keyframes fadeInSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
        .version-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .ver-item { display: flex; align-items: center; background: #fafafa; border: 1px solid #eee; border-radius: 8px; overflow: hidden; transition: 0.3s; cursor: pointer; padding: 10px; gap: 15px; }
        .ver-item:hover { border-color: var(--primary); background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transform: translateY(-2px); }
        .ver-img { width: 80px; height: 80px; flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #ddd; }
        .ver-img img { width: 100%; height: 100%; object-fit: cover; }
        .ver-info { flex: 1; min-width: 0; }
        .ver-info h4 { font-size: 15px; font-weight: bold; margin-bottom: 5px; color: #333; }
        .ver-info p { font-size: 12px; color: #888; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
        .ver-btn { font-size: 12px; color: #fff; background: var(--primary); display: inline-block; padding: 2px 10px; border-radius: 4px; }
        .story-text { text-align: justify; line-height: 1.8; color: #555; font-size: 15px; margin-bottom: 20px; }
        .news-list li { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px dashed #eee; font-size: 14px; }
        .news-tag { padding: 3px 8px; border-radius: 4px; font-size: 12px; color: #fff; margin-right: 12px; }
        .tag-dl { background: #f56c6c; } .tag-guide { background: var(--primary); }
        .news-title { flex: 1; color: #333; } .news-date { color: #999; font-size: 13px; }
        .faq-item { margin-bottom: 15px; border: 1px solid #f0f0f0; border-radius: 6px; overflow: hidden; }
        .faq-q { background: #fafafa; padding: 12px 15px; font-weight: bold; cursor: pointer; color: #444; display: flex; justify-content: space-between; user-select: none;}
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; background: #fff; color: #666; font-size: 14px; padding: 0 15px; box-sizing: border-box; }
        .faq-a.open { padding-top: 15px; padding-bottom: 15px; border-top: 1px solid #f0f0f0; }
        .comment-input { background: #f5f5f5; padding: 15px; border-radius: 8px; margin-bottom: 20px; }
        .comment-list .item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f9f9f9; }
        .c-avatar { width: 45px; height: 45px; background: #e0e0e0; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
        .seo-footer { background: #2c2c2c; color: #999; padding: 50px 0 20px; margin-top: 50px; font-size: 13px; }
        .footer-inner { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 30px; margin-bottom: 20px; border-bottom: 1px solid #444; }
        .f-col-left { width: 55%; }
        .f-col-right { width: 35%; display: flex; flex-direction: column; align-items: flex-end; }
        .f-title { color: #fff; font-size: 16px; font-weight: bold; margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 10px; line-height: 1.2; display: inline-block; }
        .f-col-right .f-title-wrap { width: 100%; text-align: left; display: flex; justify-content: flex-end; }
        .f-desc { line-height: 1.8; color: #aaa; }
        .f-link-grid { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 30px; text-align: left; }
        .f-link-grid a { color: #888; } .f-link-grid a:hover { color: #fff; text-decoration: underline; }
        .copyright { text-align: center; color: #666; font-size: 12px; }
        .toast { position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-100px); background: rgba(0,0,0,0.8); color: #fff; padding: 12px 25px; border-radius: 50px; z-index: 10000; transition: 0.3s; opacity: 0; pointer-events: none; }
        .toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
        .toast-warn { border-left: 4px solid #ff4d4f; }
        .toast-success { border-left: 4px solid #67c23a; }
        .story-text img{margin:0 auto;}
        
        
        