        /* 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;
            --primary-light: #d1fae5;
        }

        * {
            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-card:nth-child(1) .rank-triangle {
            border-color: var(--accent) transparent transparent transparent;
        }
        .rank-card:nth-child(2) .rank-triangle {
            border-color: #34d399 transparent transparent transparent;
        }
        .rank-card:nth-child(3) .rank-triangle {
            border-color: #fbbf24 transparent transparent transparent;
        }
        .rank-card:nth-child(-n+3) .rank-number {
            color: white;
        }
        .rank-card:nth-child(1) .rank-number::before { content: "1"; }
        .rank-card:nth-child(2) .rank-number::before { content: "2"; }
        .rank-card:nth-child(3) .rank-number::before { content: "3"; }
        .rank-card:nth-child(n+4) .rank-triangle {
            border-color: transparent;
        }

        .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: relative;
            top: 0;
            left: 0;
            right: 0;
            margin: 0;
            padding: 0;
            list-style: none;
            transition: opacity 0.4s ease;
            opacity: 1;
        }

        .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;
        }

        /* 列表内动态标签：胶囊形 + 随机配色（由 JS 附加 tag-tone-n） */
        .platform-tags .tag.tag-auto-tone {
            /* border-radius: 999px; */
            font-weight: 600;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-0 {
            background: #dbeafe;
            color: #1d4ed8;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-1 {
            background: #f1f5f9;
            color: #475569;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-2 {
            background: #ede9fe;
            color: #5b21b6;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-3 {
            background: #fef3c7;
            color: #c2410c;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-4 {
            background: #d1fae5;
            color: #047857;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-5 {
            background: #fce7f3;
            color: #be185d;
        }

        .platform-tags .tag.tag-auto-tone.tag-tone-6 {
            background: #e0f2fe;
            color: #0369a1;
        }

        .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: linear-gradient(90deg, rgba(16, 185, 129, 0.85) 0%, rgba(52, 211, 153, 0.75) 30%, rgba(240, 253, 244, 0.95) 100%);
            padding: 8px 12px;
            margin: 8px 0;
            font-size: 13px;
            color: #064e3b;
            backdrop-filter: blur(1px);
        }

        .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);
        }

        /* ── 图文文章列表（栏目16） ── */
        .article-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .article-item {
            padding: 10px 12px;
            border-bottom: 1px solid var(--border);
            transition: background 0.15s;
        }

        .article-item:last-child {
            border-bottom: none;
        }

        .article-item-link {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            text-decoration: none;
            color: inherit;
        }

        .article-item-link:hover .article-title {
            color: var(--primary);
        }

        .article-img-wrap {
            width: 68px;
            height: 68px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f1f5f9;
        }

        .article-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-body {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .article-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.15s;
        }

        .article-subtitle {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }

        .article-date {
            font-size: 11px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .article-date::before {
            content: "📅";
            font-size: 10px;
        }

        /* ── 文章详情页（tuijian_info） ── */
        .article-cover {
            width: 100%;
            height: 200px;
            overflow: hidden;
            margin-bottom: 10px;
            border-radius: 0;
        }

        .article-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-header {
            padding: 14px 14px 10px;
        }

        .article-title-h1 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin: 0 0 10px;
        }

        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 12px;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .meta-icon {
            font-size: 11px;
        }

        .meta-sep {
            color: var(--border);
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 8px;
        }

        .article-tags a {
            display: inline-block;
            padding: 2px 8px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 20px;
            font-size: 11px;
            text-decoration: none;
        }

        .article-tags a:hover {
            background: var(--primary);
            color: #fff;
        }

        /* 文章正文 */
        .article-content {
            padding: 14px 14px 20px;
            font-size: 14px;
            line-height: 1.8;
            color: var(--text);
            word-break: break-word;
        }

        .article-content p {
            margin-bottom: 12px;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            margin: 8px 0;
            display: block;
        }

        .article-content h2,
        .article-content h3,
        .article-content h4 {
            font-weight: 700;
            color: var(--text);
            margin: 16px 0 8px;
        }

        .article-content h2 { font-size: 16px; }
        .article-content h3 { font-size: 15px; }
        .article-content h4 { font-size: 14px; }

        .article-content ul,
        .article-content ol {
            padding-left: 20px;
            margin-bottom: 12px;
        }

        .article-content li {
            margin-bottom: 4px;
            line-height: 1.7;
        }

        .article-content blockquote {
            border-left: 3px solid var(--primary);
            padding: 8px 12px;
            background: var(--primary-light);
            margin: 12px 0;
            border-radius: 0 6px 6px 0;
            color: var(--text);
            font-size: 13px;
        }

        /* 上下篇导航 */
        .article-nav-row {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }

        .article-nav {
            padding: 12px 14px;
            margin-top: 0;
        }

        .article-nav-link--next {
            justify-content: flex-end;
        }

        .article-nav-link--next .nav-text {
            text-align: right;
        }

        .article-nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: inherit;
            transition: background 0.15s;
            border-radius: 6px;
            padding: 6px;
        }

        .article-nav-link:hover {
            background: var(--primary-light);
        }

        .nav-arrow {
            font-size: 16px;
            color: var(--primary);
            flex-shrink: 0;
            width: 20px;
        }

        .nav-text {
            flex: 1;
            min-width: 0;
        }

        .nav-label {
            font-size: 11px;
            color: var(--text-light);
            margin-bottom: 2px;
        }

        .nav-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }