﻿        /* 11715.com原创模板，请尊重原创，禁止盗用 */
        :root {
            --bg: #f0fdf4;
            --card: #ffffff;
            --primary: #10b981;    /* 淡绿色主色 */
            --secondary: #0d9488;  /* 深绿色辅色 */
            --accent: #f59e0b;     /* 橙色点缀 */
            --text: #1e293b;
            --text-light: #64748b;
            --border: #d1fae5;
            --success: #059669;
            --tag-blue: #3b82f6;
            --tag-red: #dc2626;
            --tag-purple: #8b5cf6;
            --tag-yellow: #d97706;
            --tag-pink: #ec4899;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.4;
            font-size: 14px;
            padding: 0;
        }
        

        .compact-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 12px 16px 8px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }
        
        .site-title {
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .stats-badge {
            background: rgba(255, 255, 255, 0.2);
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .subtitle {
            font-size: 13px;
            opacity: 0.9;
        }
        
        .compact-nav {
            display: flex;
            background: white;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 64px;
            z-index: 99;
        }
        
        .nav-tab {
            flex: 1;
            padding: 10px 0;
            text-align: center;
            font-size: 13px;
            color: var(--text-light);
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }
        
        .nav-tab.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
            font-weight: 600;
        }
        

        .compact-content {
            padding: 8px;
        }
        
        .compact-card {
            background: var(--card);
            border-radius: 10px;
            border: 1px solid var(--border);
            margin-bottom: 8px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .rank-triangle {
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 28px 28px 0 0;
            z-index: 1;
        }
        
        .rank-1 .rank-triangle { border-color: var(--accent) transparent transparent transparent; }
        .rank-2 .rank-triangle { border-color: #34d399 transparent transparent transparent; }
        .rank-3 .rank-triangle { border-color: #fbbf24 transparent transparent transparent; }
        .rank-other .rank-triangle { border-color: #d1fae5 transparent transparent transparent; }
        
        .rank-number {
            position: absolute;
            top: 2px;
            left: 3px;
            font-size: 11px;
            font-weight: 700;
            color: white;
            z-index: 2;
        }
        
        .rank-other .rank-number {
            color: var(--text-light);
        }
        
        .platform-compact {
            padding: 12px;
            position: relative;
        }
        
        .platform-row {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .platform-logo {
            width: 48px;
            height: 48px;
            border-radius: 20%;
            flex-shrink: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            background: #f0fdf4;
        }
        
        .platform-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .platform-info {
            flex: 1;
            min-width: 0;
        }
        
        .platform-name-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 4px;
        }
        
        .platform-name {
            font-weight: 700;
            font-size: 15px;
            color: var(--text);
        }
        
        .platform-tags {
            display: flex;
            gap: 4px;
            font-size: 11px;
        }


/* 下载动态样式 - 单行布局 */
.download-dynamic {
    margin: 12px 0;
}

.top-text {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 8px 0 0;
    height: 40px;
}

.download-dynamic-title {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    height: 100%;
    min-width: 50px;
    border-radius: 8px 0 0 8px;
}

.title-icon {
    font-size: 16px;
}

.title-text {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 40px;
}

.scroll-wrapper {
    position: relative;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

.scroll-text {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: top 0.5s ease;
}

.scroll-auto {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scroll-auto strong {
    color: var(--primary);
    font-weight: 600;
}


.app-shangbangzhuan { color: #dc2626; font-weight: 600; }
.app-quxianzhuan { color: #059669; font-weight: 600; }
.app-miaodan { color: #3b82f6; font-weight: 600; }
.app-zhongrenbang { color: #8b5cf6; font-weight: 600; }
.app-qiehuzhu { color: #ec4899; font-weight: 600; }
.app-lezhuke { color: #d97706; font-weight: 600; }
.app-xiongmaozhuan { color: #0d9488; font-weight: 600; }

        
        .tag {
            background: #f1f5f9;
            color: var(--text-light);
            padding: 2px 8px;
            border-radius: 4px;
            white-space: nowrap;
            font-weight: 500;
        }
        
        .tag.hot { background: #fee2e2; color: var(--tag-red); }
        .tag.fast { background: #dcfce7; color: var(--success); }
        .tag.stable { background: #dbeafe; color: var(--tag-blue); }
        .tag.new { background: #fef3c7; color: var(--tag-yellow); }
        .tag.social { background: #fce7f3; color: var(--tag-pink); }
        .tag.game { background: #ede9fe; color: var(--tag-purple); }
        .tag.comprehensive { background: #e0f2fe; color: #0c4a6e; }
        .tag.simple { background: #f0f9ff; color: #0369a1; }
        .tag.beginner { background: #f0fdf4; color: var(--success); }
        .tag.fun { background: #fef3c7; color: #b45309; }
        
        .platform-features {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
        }
        
        .platform-desc {
            color: var(--text-light);
            flex: 1;
            margin-right: 10px;
        }
        
        .platform-rating {
            display: flex;
            align-items: center;
            color: var(--accent);
            font-weight: 600;
            white-space: nowrap;
        }
        
        .download-link {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.2s;
            flex-shrink: 0;
            display: inline-block;
            text-align: center;
            box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .download-link:active {
            transform: translateY(1px);
            box-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
        }
        
        .compact-footer {
            text-align: center;
            padding: 12px;
            font-size: 11px;
            color: var(--text-light);
            border-top: 1px solid var(--border);
            margin-top: 8px;
        }
        
        .page-section {
            display: none;
        }
        
        .page-section.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .tip-compact {
            background: #ecfdf5;
            border-left: 3px solid var(--primary);
            padding: 8px 12px;
            margin: 8px 0;
            font-size: 12px;
            border-radius: 0 4px 4px 0;
            color: #065f46;
        }
        
        .quiz-option {
            padding: 12px;
            background: #f8fafc;
            border-radius: 8px;
            margin-bottom: 8px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .quiz-option:active {
            background: #e2e8f0;
        }
        
        .quiz-option.selected {
            border-color: var(--primary);
            background: #d1fae5;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
        }
        
        .quiz-title {
            font-weight: 600;
            margin-bottom: 2px;
            font-size: 14px;
            color: var(--text);
        }
        
        .quiz-desc {
            font-size: 12px;
            color: var(--text-light);
        }
        
        .dynamic-number {
            font-weight: 700;
            color: var(--accent);
        }
