.wubao-container {
            position: fixed;
            top: 10px;
            right: 10px;
            z-index: 2000;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(0,0,0,0.6);
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .wubao-container:hover { transform: scale(1.05); }
        .wubao-icon { font-size: 30px; animation: float 2s ease-in-out infinite; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .wubao-info { color: #333; font-size: 12px; }
        .wubao-level { font-weight: 600; }
        .wubao-exp-bar {
            width: 60px;
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            margin-top: 4px;
            overflow: hidden;
        }
        .wubao-exp-fill {
            height: 100%;
            background: linear-gradient(90deg, #ffd700, #ffed4e);
            border-radius: 2px;
            transition: width 0.3s;
        }
        
        /* 五宝选择弹窗 */
        .wubao-modal {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            padding: 20px;
        }
        .wubao-modal-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            max-width: 350px;
            text-align: center;
        }
        .wubao-modal-title { font-size: 20px; font-weight: 600; margin-bottom: 20px; }
        .wubao-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        .wubao-item {
            padding: 15px;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
        }
        .wubao-item:hover { transform: scale(1.05); }
        .wubao-item.selected { border-color: #667eea; background: #f0f0ff; }
        .wubao-item-icon { font-size: 40px; margin-bottom: 5px; }
        .wubao-item-name { font-size: 14px; font-weight: 500; }
        .wubao-item-level { font-size: 12px; color: #999; margin-top: 3px; }
        
        /* 学习页面 - 五大领域 */
        .study-page { background: #f5f5f5; }
        .domains-container {
            background: white;
            border-radius: 20px 20px 0 0;
            min-height: calc(100vh - 200px);
            padding: 20px;
        }
        .domain-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s;
            border-left: 4px solid;
            position: relative;
            overflow: hidden;
        }
        .domain-card:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
        .domain-card:active { transform: scale(0.98); }
        .domain-header {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .domain-icon { font-size: 40px; animation: bounce 2s infinite; }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .domain-info { flex: 1; }
        .domain-name { font-size: 18px; font-weight: 600; }
        .domain-desc { font-size: 13px; color: #666; margin-top: 4px; }
        .domain-stats {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            font-size: 12px;
            color: #999;
        }
        .domain-progress {
            width: 100%;
            height: 6px;
            background: #f0f0f0;
            border-radius: 3px;
            margin-top: 10px;
            overflow: hidden;
        }
        .domain-progress-fill {
            height: 100%;
            border-radius: 3px;
            transition: width 0.5s ease;
        }
        
        /* 继续学习按钮 */
        .continue-learning {
            background: #f5f5f5;
            color: #333;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        .continue-learning:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6); }
        .continue-learning-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
        .continue-learning-info { font-size: 14px; opacity: 0.9; }
        .continue-learning-progress {
            margin-top: 10px;
            background: rgba(255,255,255,0.3);
            height: 6px;
            border-radius: 3px;
            overflow: hidden;
        }
        .continue-learning-progress-fill {
            height: 100%;
            background: white;
            border-radius: 3px;
            transition: width 0.5s;
        }
        
        /* 领域详情页 - 12级闯关 */
        .levels-page { min-height: 100vh; }
        .levels-header {
            color: #333;
            padding: 12px 15px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .levels-header .icon { font-size: 28px; animation: pulse 2s infinite; }
        .levels-header h2 { font-size: 16px; margin: 0; }
        .levels-header p { display: none; }
        .levels-header .levels-meta {
            font-size: 12px;
            opacity: 0.9;
            white-space: nowrap;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* ========== 英语山脉：S形登山路径 ========== */
        .levels-page.english-theme { 
            background: linear-gradient(180deg, #4FC3F7 0%, #81D4FA 20%, #B3E5FC 40%, #C8E6C9 65%, #66BB6A 90%);
        }
        .levels-page.english-theme .levels-header { background: linear-gradient(135deg, #0288D1 0%, #29B6F6 100%); }
        /* ========== 通用主题网格 ========== */
        .theme-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding: 15px;
            padding-bottom: 90px;
        }
        .theme-grid .level-item {
            aspect-ratio: 1;
            background: white;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            border: 3px solid rgba(255,255,255,0.8);
        }
        .theme-grid .level-item:hover:not(.locked) { 
            transform: translateY(-5px); 
            box-shadow: 0 8px 25px rgba(0,0,0,0.2); 
        }
        .theme-grid .level-item:active:not(.locked) { transform: scale(0.95); }
        .theme-grid .level-item.locked { 
            opacity: 0.55; 
            background: #e0e0e0 !important; 
            cursor: not-allowed; 
        }
        .theme-grid .level-item.current-level:not(.locked) {
            animation: gridPulse 1.5s ease-in-out infinite;
        }
        @keyframes gridPulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.12); }
            50% { box-shadow: 0 0 25px rgba(255,215,0,0.7), 0 8px 25px rgba(0,0,0,0.2); }
        }
        .theme-grid .level-title { 
            font-size: 11px; 
            font-weight: 600; 
            margin-top: 2px; 
            color: #333; 
            text-align: center;
        }
        .theme-grid .level-grade { font-size: 10px; color: #666; margin-top: 1px; }
        .theme-grid .level-number { font-size: 25px; font-weight: 700; }
        .theme-grid .level-stars { font-size: 11px; margin-top: 4px; }
        .theme-grid .level-status {
            position: absolute;
            top: 4px;
            right: 4px;
            font-size: 16px;
        }
        .theme-grid .level-progress {
            position: absolute;
            bottom: 6px;
            left: 10px;
            right: 10px;
            height: 4px;
            background: rgba(0,0,0,0.08);
            border-radius: 2px;
            overflow: hidden;
        }
        .theme-grid .level-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
            transition: width 0.5s;
        }
        .theme-grid .level-progress-text {
            position: absolute;
            bottom: 12px;
            right: 8px;
            font-size: 9px;
            color: #888;
        }
        
        /* ========== 语文森林主题 ========== */
        .levels-page.chinese-theme {
            background: linear-gradient(180deg, #2E7D32 0%, #43A047 30%, #66BB6A 70%, #A5D6A7 100%);
        }
        .levels-page.chinese-theme .levels-header { background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%); }
        .chinese-theme .theme-grid .level-item { background: #E8F5E9; border-color: #C8E6C9; }
        .chinese-theme .theme-grid .level-item::before {
            content: '🌲';
            position: absolute;
            top: -8px;
            font-size: 16px;
        }
        
        /* ========== 数学城堡主题 ========== */
        .levels-page.math-theme {
            background: linear-gradient(180deg, #455A64 0%, #607D8B 40%, #90A4AE 100%);
        }
        .levels-page.math-theme .levels-header { background: linear-gradient(135deg, #37474F 0%, #546E7A 100%); }
        .math-theme .theme-grid .level-item { 
            background: #ECEFF1; 
            border-color: #CFD8DC; 
            border-radius: 8px;
        }
        .math-theme .theme-grid .level-item::before {
            content: '🏰';
            position: absolute;
            top: -8px;
            font-size: 16px;
        }
        
        /* ========== 综合火山主题 ========== */
        .levels-page.comprehensive-theme {
            background: linear-gradient(180deg, #BF360C 0%, #E64A19 30%, #FF7043 70%, #FFAB91 100%);
        }
        .levels-page.comprehensive-theme .levels-header { background: linear-gradient(135deg, #870000 0%, #BF360C 100%); }
        .comprehensive-theme .theme-grid .level-item { background: #FFF3E0; border-color: #FFCC80; }
        .comprehensive-theme .theme-grid .level-item::before {
            content: '🌋';
            position: absolute;
            top: -8px;
            font-size: 16px;
        }
        
        /* ========== 全能海洋主题 ========== */
        .levels-page.all-theme {
            background: linear-gradient(180deg, #01579B 0%, #0288D1 30%, #29B6F6 70%, #81D4FA 100%);
        }
        .levels-page.all-theme .levels-header { background: linear-gradient(135deg, #003C8F 0%, #01579B 100%); }
        .all-theme .theme-grid .level-item { 
            background: #E1F5FE; 
            border-color: #B3E5FC; 
            border-radius: 50%;
        }
        .all-theme .theme-grid .level-item::before {
            content: '🐚';
            position: absolute;
            top: -8px;
            font-size: 16px;
        }
        
        /* 闯关页面 */
        .challenge-page { background: #f5f7fa; }
        .challenge-header {
            background: #f5f5f5;
            color: #333;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .challenge-info h3 { font-size: 18px; }
        .challenge-info p { font-size: 14px; opacity: 0.9; }
        .timer-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: #f5f5f5;
            color: #333;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        .timer-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 4px;
            background: rgba(255,255,255,0.2);
            padding: 6px 10px;
            border-radius: 20px;
            min-width: auto;
            flex: 1;
        }
        .timer-label {
            font-size: 12px;
            opacity: 0.9;
            white-space: nowrap;
        }
        .timer-value {
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }
        .timer-value.warning { color: #ff4444; }
        .timer {
            background: rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .timer.warning { background: rgba(255,0,0,0.3); animation: shake 0.5s infinite; }
        .timer-bar {
            display: flex;
            gap: 20px;
            align-items: center;
            justify-content: center;
            background: #f5f5f5;
            color: #333;
            padding: 12px 20px;
            border-radius: 50px;
            margin-bottom: 15px;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }
        .timer-segment {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
        }
        .timer-icon {
            font-size: 18px;
        }
        .timer-value {
            font-size: 16px;
            font-weight: 700;
        }
        .timer-value.warning { color: #ff4444; }
        .answer-analysis {
            background: white;
            border-radius: 20px;
            padding: 25px;
            margin: 20px 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            border: 2px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }
        .answer-analysis.correct-answer {
            border-color: #28a745;
            background: linear-gradient(135deg, #f8fff9 0%, #f0f9f0 100%);
        }
        .answer-analysis.wrong-answer {
            border-color: #dc3545;
            background: linear-gradient(135deg, #fff8f8 0%, #f9f0f0 100%);
        }
        .answer-analysis::before {
            content: ;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }
        .answer-analysis.correct-answer::before {
            background: linear-gradient(90deg, #28a745, #20c997);
        }
        .answer-analysis.wrong-answer::before {
            background: linear-gradient(90deg, #dc3545, #ff6b6b);
        }
        .analysis-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .analysis-title .icon {
            font-size: 28px;
        }
        .analysis-word { font-size: 20px; font-weight: 700; color: #667eea; margin-bottom: 5px; display: flex; align-items: center; gap: 10px; }
        .analysis-phonetic { font-size: 14px; color: #666; margin-bottom: 10px; }
        .analysis-meaning { font-size: 15px; color: #333; margin-bottom: 10px; padding: 10px; background: white; border-radius: 8px; }
        .analysis-example {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .example-en {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            font-weight: 500;
            line-height: 1.6;
        }
        .example-cn {
            font-size: 16px;
            color: #666;
            padding-top: 10px;
            border-top: 1px dashed #ddd;
            margin-top: 10px;
        }
        @keyframes optionClick {
            0% { transform: scale(1); }
            50% { transform: scale(0.95); }
            100% { transform: scale(1); }
        }
        @keyframes correctBounce {
            0% { transform: scale(1); }
            25% { transform: scale(1.1); }
            50% { transform: scale(0.95); }
            75% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }
        
        .question-area {
            padding: 20px;
            min-height: calc(100vh - 200px);
        }
        .question-card {
            background: white;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            animation: slideUp 0.3s ease;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .question-number {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }
        .question-word-area { background: #f5f5f5; color: #333; padding: 20px; border-radius: 16px; margin: 15px 0; position: relative; }
        .question-word { font-size: 32px; font-weight: 700; margin-bottom: 5px; }
        .question-phonetic { font-size: 16px; opacity: 0.9; }
        .audio-btn-large { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; cursor: pointer; }
        .question-text {
            font-size: 18px;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .question-header-row {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 8px 12px;
            text-align: center;
            margin-bottom: 16px;
            padding: 12px;
            background: #f5f5f5;
            border-radius: 12px;
            color: #333;
        }
        .question-header-row.domain-chinese {
            background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        }
        .question-header-row.domain-math {
            background: linear-gradient(135deg, #1E90FF 0%, #3182ce 100%);
        }
        .question-header-row.domain-comprehensive {
            background: linear-gradient(135deg, #FF4500 0%, #dd6b20 100%);
        }
        .question-header-row.domain-all {
            background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
        }
        .question-title-block {
            width: 100%;
        }
        .question-title-inline {
            font-size: 25px;
            font-weight: 700;
            line-height: 1.3;
            word-break: break-word;
        }
        .question-subtitle-block {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .question-subtitle-inline {
            font-size: 15px;
            opacity: 0.95;
        }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
        .audio-btn-inline {
            margin-left: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .audio-icon {
            width: 20px;
            height: 20px;
            display: block;
        }
        .audio-icon-small {
            width: 18px;
            height: 18px;
            display: block;
        }
        .question-debug {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 11px;
            color: #888;
            margin-bottom: 10px;
            padding: 4px 8px;
            background: #f5f5f5;
            border-radius: 8px;
        }
        .options-list { display: flex; flex-direction: column; gap: 10px; }
        .option-item {
            padding: 18px 20px;
            background: white;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #e9ecef;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            margin-bottom: 12px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .option-item:active { animation: optionClick 0.2s ease; }
        .option-item:hover {
            background: #f8f9fa;
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-color: #667eea;
        }
.option-label::after { content: "."; }
        .option-label {
            font-weight: 600;
            color: #667eea;
            min-width: 24px;
            font-size: 16px;
        }
        .option-text {
            flex: 1;
            color: #333;
            font-size: 16px;
        }
        .option-item.selected {
            border-color: #667eea;
            background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
            transform: scale(1.02);
        }
        .option-item.selected::before {
            content: ●;
            position: absolute;
            left: 15px;
            color: #667eea;
            font-size: 12px;
        }
        .option-item.selected {
            border-color: #667eea;
            background: #f0f0ff;
        }
        .option-item.correct {
            animation: correctBounce 0.6s ease;
        }
        .option-item.correct {
            border-color: #28a745;
            background: linear-gradient(135deg, #28a74515 0%, #20c99715 100%);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
            transform: scale(1.02);
        }
        .option-item.correct::after {
            content: ✓;
            position: absolute;
            right: 20px;
            color: #28a745;
            font-size: 24px;
            font-weight: 700;
        }
        .option-item.correct {
            animation: correctBounce 0.6s ease;
        }
        .option-item.correct {
            border-color: #28a745;
            background: #d4edda;
            animation: correctPulse 0.5s ease;
        }
        @keyframes correctPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .option-item.wrong {
            border-color: #dc3545;
            background: linear-gradient(135deg, #dc354515 0%, #ff6b6b15 100%);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
            animation: shake 0.5s ease;
        }
        .option-item.wrong::after {
            content: ✗;
            position: absolute;
            right: 20px;
            color: #dc3545;
            font-size: 24px;
            font-weight: 700;
        }
        .option-item.wrong {
            border-color: #dc3545;
            background: #f8d7da;
            animation: shake 0.5s ease;
        }
        .option-item.vanishing {
            animation: wrongFlyOut 0.23s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            pointer-events: none;
        }
        @keyframes wrongFlyOut {
            0% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 1;
                filter: blur(0);
            }
            30% {
                transform: translate(0, 0) rotate(0deg) scale(1.08);
                opacity: 1;
                filter: blur(0);
                background: #fff0f0;
                border-color: #ff6b6b;
            }
            100% {
                transform: translate(var(--fly-x, 60px), var(--fly-y, -40px)) rotate(var(--fly-rot, 20deg)) scale(0.15);
                opacity: 0;
                filter: blur(8px);
                height: 0;
                margin: 0;
                padding: 0;
                border-width: 0;
            }
        }
        .option-item.victory {
            animation: victoryGlow 1.5s ease-in-out infinite;
        }
        @keyframes victoryGlow {
            0%, 100% { box-shadow: 0 4px 12px rgba(40, 167, 69, 0.25); transform: scale(1.02); }
            50% { box-shadow: 0 8px 28px rgba(40, 167, 69, 0.5); transform: scale(1.04); }
        }

        /* 进度条 */
        .progress-bar-container {
            width: 100%;
            height: 20px;
            background: #e9ecef;
            border-radius: 10px;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }
        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            transition: width 0.3s ease;
        }
        .progress-bar-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
            font-weight: 600;
            color: #333;
            text-shadow: 0 0 2px rgba(255,255,255,0.8);
        }
        
        /* 语音按钮 */
        .audio-btn {
            display: inline-block;
            margin-left: 10px;
            padding: 5px 10px;
            background: #667eea;
            color: white;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .audio-btn:hover {
            background: #5a6fd6;
            transform: scale(1.1);
        }
        .audio-btn-small {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-left: 8px;
            padding: 6px 10px;
            background: #667eea;
            color: white;
            border-radius: 15px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            vertical-align: middle;
            min-width: 32px;
            min-height: 32px;
        }
        .audio-btn-small:hover {
            background: #5a6fd6;
            transform: scale(1.15);
        }
        
        /* 完美通关弹窗 */
        .perfect-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
        }
        .perfect-content {
            background: white;
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            max-width: 320px;
            width: 90%;
            animation: perfectPop 0.5s ease;
        }
        @keyframes perfectPop {
            0% { transform: scale(0.5); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        .perfect-icon {
            font-size: 60px;
            margin-bottom: 15px;
        }
        .perfect-title {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
        }
        .perfect-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .perfect-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        /* 单词详情页 */
        .word-detail-page {
            padding: 20px;
            min-height: 100vh;
            background: #f5f7fa;
        }
        .word-detail-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .word-detail-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        .word-detail-word {
            font-size: 36px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        .word-detail-phonetic {
            font-size: 18px;
            color: #667eea;
            margin-bottom: 10px;
        }
        .word-detail-meaning {
            font-size: 24px;
            color: #48bb78;
            font-weight: 600;
        }
        .word-detail-example {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 30px;
        }
        .word-detail-example-title {
            font-size: 16px;
            font-weight: 600;
            color: #667eea;
            margin-bottom: 15px;
        }
        .word-detail-example-en {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.6;
        }
        .word-detail-example-cn {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }
        .word-detail-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        /* 内联例句显示（英语山脉小学一年级专用） */
        .inline-example {
            background: #f5f5f5;
            border-radius: 16px;
            margin: 20px 0;
            color: #333;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .inline-example-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 15px 20px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
        }
        .inline-example-arrow {
            transition: transform 0.3s ease;
        }
        .inline-example.expanded .inline-example-arrow {
            transform: rotate(180deg);
        }
        .inline-example-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            text-align: center;
            padding: 0 20px;
        }
        .inline-example.expanded .inline-example-content {
            max-height: 300px;
            padding: 0 20px 20px;
        }
        .inline-example-en {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .inline-example-cn {
            font-size: 16px;
            opacity: 0.9;
        }

        /* 统一内联学习面板（V5.28.2 新增，复用 inline-example 风格） */
        .inline-learning-panel {
            background: #f5f5f5;
            border-radius: 12px;
            margin: 12px 0;
            color: #333;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .inline-learning-panel .inline-learning-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 16px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
        }
        .inline-learning-panel .inline-learning-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            text-align: center;
            padding: 0 16px;
        }
        .inline-learning-panel.expanded .inline-learning-content {
            max-height: 260px;
            padding: 0 16px 12px;
        }
        .inline-learning-panel .learning-section-inline {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .inline-learning-panel .learning-section-inline:last-child {
            margin-bottom: 0;
        }
        .inline-learning-panel .learning-label {
            font-size: 20px;
            font-weight: 600;
        }
        .inline-learning-panel .learning-text {
            font-size: 20px;
            line-height: 1.4;
        }
        .inline-learning-panel .learning-translation {
            font-size: 20px;
            opacity: 0.9;
        }

        .answer-feedback {
            margin: 15px 20px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            animation: shake 0.5s ease;
        }
        .answer-feedback.wrong {
            background: #fff0f0;
            color: #dc3545;
            border: 1px solid #ffcdd2;
        }
        .challenge-actions {
            display: flex;
            gap: 15px;
            padding: 0 20px;
            margin-top: 10px;
            margin-bottom: 20px;
        }
        .btn {
            flex: 1;
            padding: 15px;
            border-radius: 12px;
            border: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .btn:active { transform: scale(0.95); }
        .btn-primary {
            background: #667eea;
            color: white;
        }
        .btn-secondary {
            background: #f8f9fa;
            color: #333;
        }
        .btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
        
        /* 单词详情展示 - 答题后显示 */
        .word-detail-modal {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            padding: 20px;
        }
        .word-detail-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            max-width: 380px;
            text-align: center;
            animation: slideUp 0.3s ease;
        }
        .word-detail-result {
            font-size: 60px;
            margin-bottom: 15px;
        }
        .word-detail-word {
            font-size: 28px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 5px;
        }
        .word-detail-phonetic {
            font-size: 16px;
            color: #999;
            margin-bottom: 10px;
        }
        .word-detail-meaning {
            font-size: 20px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .word-detail-example {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: left;
        }
        .word-detail-example-label {
            font-size: 12px;
            color: #999;
            margin-bottom: 8px;
        }
        .word-detail-example-en {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.5;
        }
        .word-detail-example-cn {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        .word-detail-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        .word-detail-btn {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            border: none;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        /* 结果页面 */
        .result-page {
            text-align: center;
            padding: 40px 20px;
            animation: fadeIn 0.5s ease;
        }
        .result-icon { font-size: 80px; margin-bottom: 20px; animation: bounce 1s infinite; }
        .result-score { font-size: 48px; font-weight: 700; color: #667eea; }
        .result-stars { font-size: 30px; margin: 20px 0; }
        
        /* 其他页面占位 */
        .placeholder-page {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 60vh;
            color: #999;
        }
        .placeholder-icon { font-size: 60px; margin-bottom: 20px; animation: float 3s ease-in-out infinite; }
        .placeholder-text { font-size: 16px; }
        
        /* 提示信息 */
        .toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ffffff;
            color: #334155;
            padding: 14px 28px;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 600;
            z-index: 3000;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
            border: 1px solid #e8ecf1;
            animation: fadeIn 0.3s ease;
        }
        
        /* 加载动画 */
        .loading {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
        }
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        
        /* 登录弹窗 */
        .login-modal {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3000;
            padding: 20px;
        }
        .login-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            max-width: 350px;
            max-height: 90vh;
            overflow-y: auto;
        }
        .login-title { font-size: 20px; font-weight: 600; text-align: center; margin-bottom: 20px; }
        .login-subtitle { font-size: 14px; color: #666; text-align: center; margin-bottom: 20px; }
        .login-input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 16px;
            margin-bottom: 15px;
            transition: border-color 0.2s;
        }
        .login-input:focus { outline: none; border-color: #667eea; }
        .login-input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .login-input-group .login-input { margin-bottom: 0; flex: 1; }
        .verify-btn {
            padding: 15px 20px;
            background: #f5f5f5;
            color: #333;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
        }
        .verify-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .verify-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
        .login-btn {
            width: 100%;
            padding: 15px;
            background: #f5f5f5;
            color: #333;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        .login-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .login-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
        .login-link {
            text-align: center;
            margin-top: 15px;
            color: #667eea;
            cursor: pointer;
            font-size: 14px;
        }
        .login-link-row {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            font-size: 14px;
        }
        .login-link-row span {
            color: #667eea;
            cursor: pointer;
        }
        .login-tabs {
            display: flex;
            margin-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        .login-tab {
            flex: 1;
            text-align: center;
            padding: 12px;
            cursor: pointer;
            font-size: 15px;
            color: #999;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s;
        }
        .login-tab.active {
            color: #667eea;
            border-bottom-color: #667eea;
            font-weight: 600;
        }
        .login-mode-switch {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        .login-mode-switch span {
            color: #667eea;
            cursor: pointer;
            font-size: 14px;
        }
        .login-back-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #999;
        }
        
        /* 音效按钮 */
        .sound-toggle {
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 2000;
            background: rgba(0,0,0,0.6);
            padding: 8px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
        }
        
        /* 每日任务 */
        .daily-tasks {
            background: white;
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .daily-tasks-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .daily-tasks-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        .daily-tasks-progress {
            font-size: 14px;
            color: #667eea;
            font-weight: 600;
        }
        .daily-tasks-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .daily-task-item {
            display: flex;
            align-items: center;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.2s;
        }
        .daily-task-item.completed {
            background: #e8f5e9;
            opacity: 0.8;
        }
        .daily-task-icon {
            font-size: 24px;
            margin-right: 12px;
        }
        .daily-task-info {
            flex: 1;
        }
        .daily-task-name {
            font-size: 14px;
            font-weight: 500;
            color: #333;
        }
        .daily-task-reward {
            font-size: 12px;
            color: #999;
            margin-top: 2px;
        }
        .daily-task-status {
            font-size: 20px;
        }
        
        /* 快速继续 */
        .quick-continue {
            background: #f5f5f5;
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: white;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            transition: transform 0.2s;
        }
        .quick-continue:active {
            transform: scale(0.98);
        }
        .quick-continue-icon {
            font-size: 36px;
            margin-right: 15px;
        }
        .quick-continue-info {
            flex: 1;
        }
        .quick-continue-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .quick-continue-detail {
            font-size: 13px;
            opacity: 0.9;
            margin-bottom: 8px;
        }
        .quick-continue-progress {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .quick-continue-progress-bar {
            flex: 1;
            height: 6px;
            background: rgba(255,255,255,0.3);
            border-radius: 3px;
            overflow: hidden;
        }
        .quick-continue-progress-fill {
            height: 100%;
            background: white;
            border-radius: 3px;
            transition: width 0.3s;
        }
        .quick-continue-progress-text {
            font-size: 12px;
            opacity: 0.9;
        }
        .quick-continue-arrow {
            font-size: 24px;
            opacity: 0.8;
        }
        
        /* 智能推荐 */
        .smart-recommend {
            background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ffeaa7;
        }
        .smart-recommend-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .smart-recommend-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        .smart-recommend-tag {
            font-size: 12px;
            color: #e17055;
            background: rgba(225, 112, 85, 0.1);
            padding: 2px 8px;
            border-radius: 10px;
        }
        .smart-recommend-content {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 12px;
            padding: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .smart-recommend-content:active {
            transform: scale(0.98);
        }
        .smart-recommend-icon {
            font-size: 36px;
            margin-right: 12px;
        }
        .smart-recommend-info {
            flex: 1;
        }
        .smart-recommend-name {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }
        .smart-recommend-desc {
            font-size: 12px;
            color: #999;
            margin-bottom: 6px;
        }
        .smart-recommend-meta {
            display: flex;
            gap: 10px;
            font-size: 12px;
            color: #667eea;
        }
        .smart-recommend-btn {
            background: #f5f5f5;
            color: #333;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }
        
        /* 学习日历 */
        .study-calendar {
            background: white;
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .study-calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .study-calendar-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        .study-calendar-streak {
            font-size: 14px;
            color: #ff6b6b;
            font-weight: 600;
        }
        .study-calendar-week {
            display: flex;
            justify-content: space-around;
        }
        .study-calendar-day {
            text-align: center;
        }
        .study-calendar-day-name {
            font-size: 12px;
            color: #999;
            margin-bottom: 6px;
        }
        .study-calendar-day-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e0e0e0;
            margin: 0 auto;
        }
        .study-calendar-day-dot.active {
            background: #667eea;
            box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
        }
        
        /* 我的页面 */
/* ===== 会员页面新样式 ===== */
.member-header {
    background: #f5f5f5;
            color: #333;
    padding: 20px;
    text-align: center;
}
.member-header h1 {
    margin: 0 0 4px;
    font-size: 25px;
}
.member-header .subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 13px;
}

.member-guest {
    padding: 40px 20px;
    text-align: center;
}
.member-guest-icon {
    font-size: 64px;
    margin-bottom: 16px;
}
.member-guest-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}
.member-guest-desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 24px;
}

.member-not-vip {
    padding: 15px;
}
.member-promo-card {
    background: linear-gradient(135deg, #FFD700 0%, #FF8F00 100%);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255, 143, 0, 0.25);
}
.member-promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 44px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}
.member-promo-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 6px;
}
.member-promo-desc {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 16px;
}
.member-promo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.member-price-tag {
    background: rgba(255,255,255,0.25);
    padding: 6px 14px;
    border-radius: 16px;
    font-weight: 600;
}
.member-price-or {
    font-size: 13px;
    opacity: 0.8;
}
.member-buy-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 10px;
}
.member-promo-note {
    font-size: 11px;
    opacity: 0.85;
}

.member-benefits-section {
    margin-bottom: 20px;
}
.member-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
}
.member-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.member-benefit-item {
    background: white;
    border-radius: 14px;
    padding: 16px 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.member-benefit-item.locked {
    opacity: 0.55;
}
.member-benefit-icon {
    font-size: 28px;
    margin-bottom: 6px;
}
.member-benefit-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}
.member-benefit-desc {
    font-size: 11px;
    color: #999;
}

.member-vip-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    color: #333;
    margin: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
}
.member-vip-header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.member-vip-badge {
    background: #FFD700;
    color: #764ba2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}
.member-vip-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.member-vip-date {
    font-size: 12px;
    opacity: 0.9;
}
.member-vip-points {
    text-align: right;
}
.member-vip-points-label {
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 2px;
}
.member-vip-points-value {
    font-size: 26px;
    font-weight: 800;
}

.member-tool-card {
    background: white;
    border-radius: 16px;
    padding: 18px;
    margin: 0 15px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.member-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.member-tool-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}
.member-tool-badge {
    font-size: 12px;
    color: #667eea;
    background: #f0f2ff;
    padding: 4px 10px;
    border-radius: 12px;
}
.member-tool-arrow {
    font-size: 20px;
    color: #999;
}
.member-tool-desc {
    font-size: 13px;
    color: #999;
}
.member-tool-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}
.member-tool-stat {
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px;
}
.member-tool-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}
.member-tool-stat-label {
    font-size: 11px;
    color: #999;
}
.member-tool-actions {
    display: flex;
    gap: 10px;
}
.member-tool-actions .btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: none;
}
.member-tool-actions .btn-primary {
    background: #f5f5f5;
            color: #333;
}
.member-tool-actions .btn-secondary {
    background: #f0f2ff;
    color: #667eea;
}

.member-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 15px 15px;
}
.member-mini-card {
    background: white;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.member-mini-icon {
    font-size: 32px;
    margin-bottom: 8px;
}
.member-mini-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.member-mini-desc {
    font-size: 11px;
    color: #999;
}

/* 我的页面会员标签 */
.profile-member-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #999;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 8px;
    font-weight: 600;
}
.profile-member-tag.vip {
    background: linear-gradient(135deg, #FFD700 0%, #FF8F00 100%);
    color: #fff;
}

/* ===== 通用弹窗遮罩 ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 350px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ===== 错题本页面全屏覆盖 ===== */
.wrong-words-page,
.wrong-words-review-page {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #f5f7fa;
    overflow-y: auto;
    display: none;
}

.wrong-words-page.active,
.wrong-words-review-page.active {
    display: block;
}

.wrong-words-page .content,
.wrong-words-review-page .content {
    padding-bottom: 100px;
}

/* ===== 底部导航 VIP 强调 ===== */
.nav-item-vip {
    position: relative;
}

.nav-item-vip .nav-icon {
    color: #e53e3e;
    font-size: 25px;
}

.nav-item-vip .nav-label {
    color: #e53e3e;
    font-weight: 600;
}

.nav-item-vip--active .nav-icon,
.nav-item-vip--active .nav-label {
    color: #d69e2e;
}

.nav-item-vip.nav-item.active .nav-icon,
.nav-item-vip.nav-item.active .nav-label {
    color: #d69e2e;
}

.nav-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    transform: scale(0.9);
    white-space: nowrap;
}

/* ===== 学习页会员横幅 ===== */
.study-vip-banner {
    margin: 10px 15px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #feb2b2;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.study-vip-banner--guest {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-color: #cbd5e0;
}

.study-vip-banner-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.study-vip-banner-text {
    flex: 1;
    min-width: 0;
}

.study-vip-banner-title {
    font-size: 15px;
    font-weight: 700;
    color: #c53030;
    margin-bottom: 3px;
}

.study-vip-banner--guest .study-vip-banner-title {
    color: #4a5568;
}

.study-vip-banner-desc {
    font-size: 12px;
    color: #742a2a;
    line-height: 1.4;
}

.study-vip-banner--guest .study-vip-banner-desc {
    color: #718096;
}

.study-vip-banner-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.domain-trial-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(229, 62, 62, 0.9);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}

.domain-card {
    position: relative;
}

/* ===== 关卡页会员横幅 ===== */
.levels-vip-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 10px 16px;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-bottom: 1px solid #feb2b2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.levels-vip-banner--guest {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-color: #cbd5e0;
}

.levels-vip-banner-icon {
    font-size: 25px;
}

.levels-vip-banner-title {
    font-size: 14px;
    font-weight: 700;
    color: #c53030;
}

.levels-vip-banner--guest .levels-vip-banner-title {
    color: #4a5568;
}

.levels-vip-banner-desc {
    font-size: 12px;
    color: #742a2a;
}

.levels-vip-banner--guest .levels-vip-banner-desc {
    color: #718096;
}

/* ===== VIP 会员弹窗 ===== */
.vip-modal-overlay {
    z-index: 6000;
}

.vip-modal-content {
    text-align: center;
    padding: 28px 24px;
    position: relative;
}

.vip-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.vip-modal-icon {
    font-size: 56px;
    margin-bottom: 12px;
}

.vip-modal-title {
    font-size: 25px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.vip-modal-desc {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 18px;
}

.vip-modal-benefits {
    text-align: left;
    background: #f7fafc;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.vip-modal-benefit {
    font-size: 13px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vip-modal-benefit-icon {
    color: #48bb78;
    font-size: 12px;
}

.vip-modal-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.vip-modal-price-tag {
    font-size: 20px;
    font-weight: 800;
    color: #e53e3e;
}

.vip-modal-price-or {
    font-size: 13px;
    color: #a0aec0;
}

.vip-modal-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 10px;
}

.vip-modal-btn-secondary {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
    background: transparent;
    color: #718096;
    border: 1px solid #e2e8f0;
}

/* ===== 会员中心新样式 ===== */
.member-promo-card--locked {
    background: linear-gradient(135deg, #fffaf0 0%, #feebc8 100%);
    border: 1px solid #f6ad55;
}

.member-promo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.member-promo-icon {
    font-size: 40px;
}

.member-promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #744210;
    margin-bottom: 4px;
}

.member-promo-desc {
    font-size: 13px;
    color: #975a16;
}

.member-promo-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px 0;
}

.member-price-box {
    text-align: center;
    position: relative;
}

.member-price-num {
    font-size: 28px;
    font-weight: 800;
    color: #c05621;
    line-height: 1;
}

.member-price-unit {
    font-size: 13px;
    color: #975a16;
}

.member-price-save {
    position: absolute;
    top: -8px;
    right: -16px;
    background: #e53e3e;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
}

.member-price-divider {
    width: 1px;
    height: 36px;
    background: #f6ad55;
}

.member-pricing-section {
    margin: 20px 15px;
    padding: 18px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.member-pricing-cards {
    display: flex;
    gap: 12px;
    margin: 14px 0;
}

.member-pricing-card {
    flex: 1;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.member-pricing-card.active {
    border-color: #ed8936;
    background: #fffaf0;
}

.member-pricing-card--hot {
    border-color: #f6ad55;
}

.member-pricing-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
}

.member-pricing-name {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
}

.member-pricing-price {
    font-size: 24px;
    font-weight: 800;
    color: #c05621;
    margin-bottom: 6px;
}

.member-pricing-price span {
    font-size: 13px;
    font-weight: 500;
}

.member-pricing-desc {
    font-size: 12px;
    color: #718096;
}

.member-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 15px 15px;
}

.member-quick-item {
    background: white;
    border-radius: 14px;
    padding: 14px 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    position: relative;
}

.member-quick-icon {
    font-size: 26px;
    margin-bottom: 6px;
}

.member-quick-name {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
}

.member-quick-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #e53e3e;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-tool-progress {
    margin: 12px 0;
}

.member-tool-progress-bar {
    height: 8px;
    background: #edf2f7;
    border-radius: 4px;
    overflow: hidden;
}

.member-tool-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s;
}

.member-tool-progress-text {
    font-size: 12px;
    color: #718096;
    margin-top: 6px;
    text-align: right;
}

.member-vip-card {
    position: relative;
    overflow: hidden;
}

.member-vip-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* ===== 首页样式 ===== */
.home-content {
    padding: 0 15px;
}

.home-vip-card {
    margin: 15px 0;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.home-vip-card--guest {
    background: linear-gradient(135deg, #ebf8ff 0%, #bee3f8 100%);
    border: 1px solid #90cdf4;
}

.home-vip-card--locked {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #feb2b2;
}

.home-vip-card--active {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d8fd 100%);
    border: 1px solid #d6bcfa;
}

.home-vip-info {
    flex: 1;
    min-width: 0;
}

.home-vip-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.home-vip-card--locked .home-vip-title {
    color: #c53030;
}

.home-vip-card--guest .home-vip-title {
    color: #2b6cb0;
}

.home-vip-card--active .home-vip-title {
    color: #553c9a;
}

.home-vip-desc {
    font-size: 13px;
    color: #4a5568;
}

.home-vip-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.home-vip-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d69e2e, #b7791f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(214, 158, 46, 0.4);
}

.home-section {
    margin-bottom: 20px;
}

.home-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-continue-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    cursor: pointer;
}

.home-continue-name {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.home-continue-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #718096;
}

.home-continue-bar {
    width: 140px;
    height: 6px;
    background: #edf2f7;
    border-radius: 3px;
    overflow: hidden;
}

.home-continue-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

.home-continue-arrow {
    font-size: 24px;
    color: #a0aec0;
}

.home-tasks {
    background: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-task-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f7fafc;
}

.home-task-item:last-child {
    border-bottom: none;
}

.home-task-icon {
    font-size: 24px;
}

.home-task-info {
    flex: 1;
}

.home-task-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3px;
}

.home-task-reward {
    font-size: 12px;
    color: #718096;
}

.home-task-status {
    font-size: 18px;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.home-stat {
    background: white;
    border-radius: 16px;
    padding: 16px 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-stat-num {
    font-size: 25px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 4px;
}

.home-stat-label {
    font-size: 12px;
    color: #718096;
}

.home-wubao-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-wubao-icon {
    font-size: 44px;
}

.home-wubao-info {
    flex: 1;
}

.home-wubao-name {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.home-wubao-bar {
    height: 8px;
    background: #edf2f7;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.home-wubao-fill {
    height: 100%;
    background: linear-gradient(90deg, #48bb78, #38a169);
    border-radius: 4px;
}

.home-wubao-exp {
    font-size: 12px;
    color: #718096;
}

.home-start-btn {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    border: none;
    background: #f5f5f5;
            color: #333;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
}

/* ===== 入场动画 + 登录门 ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
    overflow: hidden;
}

/* 全屏背景图：前0.5s清晰，之后2.3s内逐渐变模糊 */
.splash-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/splash-bg.jpg') center center no-repeat;
    background-size: cover;
    z-index: 1;
    animation: bgBlur 2.8s ease forwards;
}

@keyframes bgBlur {
    0% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
    17.8% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
    100% {
        opacity: 1;
        filter: blur(8px);
        transform: scale(1.05);
    }
}

/* 登录门：0.5s后风景图开始变模糊时显现，1s内由模糊变清楚 */
.login-gate {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 84%;
    max-width: 340px;
    transform: translate(-50%, -50%) scale(0.92);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 36px 26px;
    text-align: center;
    opacity: 0;
    animation: gateFocus 1s ease 0.5s forwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 20;
}

@keyframes gateFocus {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translate(-50%, -50%) scale(0.92);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
    }
}

.login-gate-logo {
    font-size: 56px;
    margin-bottom: 10px;
}

.login-gate-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.login-gate-highlight {
    font-size: 28px;
    font-family: 'KaiTi', 'STKaiti', '楷体', 'BiauKai', serif;
    color: #FFD700;
    font-weight: 800;
    margin: 0 3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 副标题在登录门上部，四行缩进 */
.login-gate-subtitle {
    margin-bottom: 28px;
    text-align: left;
    display: inline-block;
}

.login-gate-subtitle span {
    display: block;
    font-size: 15px;
    color: #2d3748;
    line-height: 1.9;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.login-gate-subtitle .indent-6 {
    padding-left: 4.5em;
}

.login-gate-subtitle .indent-4 {
    padding-left: 3.75em;
}

.login-gate-subtitle .login-gate-keyword {
    display: inline !important;
    color: #FFD700;
}

.login-gate-btn {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    background: #f5f5f5;
            color: #333;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.35);
}

.login-gate-tourist {
    margin-top: 20px;
    font-size: 13px;
    color: #000000;
    text-decoration: underline;
    cursor: pointer;
}

/* ==================== 飘字动画 ==================== */
.floating-text-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-text {
    position: absolute;
    font-size: 28px;
    font-weight: 700;
    animation: floatUp 1.2s ease-out forwards;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.floating-text--points {
    color: #ffd700;
}

.floating-text--exp {
    color: #48bb78;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0.8);
    }
    50% {
        transform: translateY(-40px) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(1);
    }
}

/* ==================== 五宝语句气泡 ==================== */
.wubao-quote-bubble {
    position: absolute;
    top: 60px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 14px;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    animation: wubaoPop 0.3s ease-out;
    z-index: 100;
    max-width: 200px;
}

.wubao-quote-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.wubao-quote-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

@keyframes wubaoPop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ==================== 通关结果积分展示 ==================== */
.challenge-result-points {
    margin: 12px 0;
    text-align: center;
}

.points-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #333;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 183, 0, 0.3);
    animation: badgePop 0.5s ease-out;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.challenge-result-thorough-pass {
    margin: 8px 0 16px;
    text-align: center;
}

.thorough-pass-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.3);
    animation: badgePop 0.5s ease-out;
}

/* ==================== 填空题、匹配题、手写题样式 ==================== */

.fill-blank-area,
.handwriting-area,
.matching-area {
    width: 100%;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 16px;
}

.fill-input-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.fill-answer-input {
    flex: 1;
    height: 44px;
    padding: 0 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.fill-answer-input:focus {
    border-color: #4A90E2;
}

.handwriting-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 4px;
    gap: 8px;
}

.answer-display {
    flex: 1;
    text-align: center;
    color: #1a73e8;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.btn-view-answer {
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
}

.handwriting-board,
.handwriting-area .handwriting-board {
    width: 100%;
    margin: 12px 0;
}

.handwriting-canvas {
    width: 100%;
    height: 160px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    background: #fafafa;
    touch-action: none;
}

.handwriting-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.handwriting-preview {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.handwriting-input-row {
    margin-top: 12px;
}

.handwriting-hint,
.matching-hint {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.matching-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.matching-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.matching-item {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.matching-item.selected {
    border-color: #4A90E2;
    background: #e8f1fc;
}

.matching-item.matched {
    opacity: 0.95;
    pointer-events: none;
}

.matching-pairs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
}

.matching-pair {
    padding: 6px 12px;
    background: #e8f5e9;
    border-radius: 16px;
    font-size: 13px;
    color: #2e7d32;
}

.matching-title {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.matching-submit {
    display: block;
    margin: 0 auto;
}

.matching-learning-result {
    margin-bottom: 12px;
}

.matching-result-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.matching-result-pair:last-child {
    border-bottom: none;
}

.matching-result-word {
    font-weight: 600;
    color: #2e7d32;
}

.matching-result-arrow {
    color: #999;
}

.matching-result-meaning {
    color: #333;
}

/* 匹配题 4 种配对颜色 */
.matching-item.match-color-1 {
    border-color: #4A90E2;
    background: #e8f1fc;
    color: #1565c0;
}

.matching-item.match-color-2 {
    border-color: #4caf50;
    background: #e8f5e9;
    color: #2e7d32;
}

.matching-item.match-color-3 {
    border-color: #ff9800;
    background: #fff3e0;
    color: #ef6c00;
}

.matching-item.match-color-4 {
    border-color: #9c27b0;
    background: #f3e5f5;
    color: #7b1fa2;
}

/* 答题界面紧凑布局：移动端一屏完整显示 */
@media (max-width: 480px) {
    .page.active.challenge-page {
        display: flex;
        flex-direction: column;
        height: 100vh;
        position: relative;
    }
    .challenge-header {
        padding: 8px 12px;
        flex-shrink: 0;
    }
    .challenge-header h3 {
        font-size: 15px;
        margin: 0;
    }
    .challenge-header p {
        font-size: 11px;
        margin: 2px 0 0;
    }
    .timer-info {
        padding: 6px 8px;
        gap: 5px;
    }
    .timer-item {
        flex-direction: row;
        padding: 4px 6px;
        min-width: auto;
        flex: 1;
        gap: 2px;
    }
    .timer-label { font-size: 15px; }
    .timer-value { font-size: 15px; }
    .question-area {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        padding: 0 10px 60px;
    }
    .question-card {
        padding: 10px;
        margin-bottom: 8px;
        border-radius: 12px;
    }
    .progress-bar-container {
        height: 16px;
        margin-bottom: 8px;
    }
    .progress-bar-text { font-size: 15px; }
    .question-number {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .question-header-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 8px 10px;
        margin-bottom: 10px;
        border-radius: 10px;
        gap: 6px 8px;
    }
    .question-title-inline {
        font-size: 25px;
        line-height: 1.3;
    }
    .question-subtitle-block {
        gap: 6px;
    }
    .question-subtitle-inline {
        font-size: 18px;
    }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
    .audio-btn-inline {
        width: 26px;
        height: 26px;
    }
    .options-list { gap: 6px; }
    .option-item {
        padding: 10px 12px;
        border-radius: 10px;
        margin-bottom: 0;
        gap: 8px;
    }
.option-label::after { content: "."; }
    .option-label { font-size: 23px; min-width: 24px; }
    .option-text { font-size: 23px; }
    .fill-input-row { gap: 8px; margin-bottom: 8px; }
    .fill-answer-input {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 10px;
    }
    .handwriting-toggle { margin-bottom: 6px; }
    .handwriting-toggle .btn-text {
        font-size: 12px;
        padding: 4px 8px;
    }
    .handwriting-board { margin: 8px 0; }
    .handwriting-canvas {
        height: 90px;
        border-radius: 10px;
    }
    .handwriting-actions { gap: 8px; margin-top: 6px; }
    .handwriting-actions .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .handwriting-preview {
        margin-top: 6px;
        font-size: 12px;
    }
    .matching-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .matching-columns { gap: 10px; margin-bottom: 8px; }
    .matching-col { gap: 6px; }
    .matching-item {
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 8px;
    }
    .inline-learning-panel {
        padding: 6px 8px;
        margin: 6px 0;
        border-radius: 8px;
    }
    .inline-learning-panel .inline-learning-header {
        padding: 6px 8px;
        font-size: 13px;
    }
    .inline-learning-panel.expanded .inline-learning-content {
        max-height: 180px;
        padding: 0 8px 6px;
    }
    .learning-section-inline { margin-bottom: 3px; gap: 4px; }
    .learning-label { font-size: 16px; }
    .learning-text { font-size: 16px; line-height: 1.3; }
    .learning-translation { font-size: 16px; }
    .challenge-actions {
        position: absolute;
        bottom: 120px;
        left: 0;
        right: 0;
        display: flex;
        padding: 24px 16px 12px;
        gap: 12px;
        background: linear-gradient(transparent, #f5f7fa 50%);
        z-index: 50;
    }
    .challenge-actions .btn {
        padding: 10px;
        font-size: 15px;
        border-radius: 10px;
        background: transparent;
        border: 2px solid;
    }
    .challenge-actions .btn-primary {
        color: #667eea;
        border-color: #667eea;
    }
    .challenge-actions .btn-secondary {
        color: #888;
        border-color: #ccc;
    }
}

/* 轮次选择弹窗 */
.round-modal {
    width: 85%;
    max-width: 360px;
    max-height: 70vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
}

.round-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.round-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.round-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-modal-body {
    padding: 12px 16px;
    overflow-y: auto;
    flex: 1;
}

.round-modal-loading,
.round-modal-empty {
    text-align: center;
    padding: 30px 0;
    color: #999;
    font-size: 14px;
}

.round-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.round-item {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s;
}

.round-item:active {
    transform: scale(0.98);
    background: #e3f2fd;
}

.round-item.completed {
    background: #e8f5e9;
    border-color: #a5d6a7;
}

.round-item.in-progress {
    background: #fff3e0;
    border-color: #ffcc80;
}

.round-item-number {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.round-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.round-item-status {
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(0,0,0,0.06);
    color: #666;
}

.round-item.completed .round-item-status {
    background: #4caf50;
    color: #fff;
}

.round-item.in-progress .round-item-status {
    background: #ff9800;
    color: #fff;
}

.round-item-progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.round-item-progress-fill {
    height: 100%;
    background: #2196f3;
    border-radius: 3px;
    transition: width 0.3s;
}

/* ===== 开关组件 ===== */
.toggle-switch {
    width: 44px; height: 24px; border-radius: 12px;
    background: #ddd; position: relative; cursor: pointer;
    transition: background 0.2s; flex-shrink: 0;
}
.toggle-switch.on { background: #48bb78; }
.toggle-switch-knob {
    width: 20px; height: 20px; border-radius: 50%;
    background: white; position: absolute; top: 2px; left: 2px;
    transition: left 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch.on .toggle-switch-knob { left: 22px; }

/* ===== 订单状态标签 ===== */
.order-status-tag {
    font-size: 11px; padding: 3px 8px; border-radius: 10px;
    white-space: nowrap;
}
.order-status-completed { background: #e6fffa; color: #38b2ac; }
.order-status-pending { background: #fffbeb; color: #d69e2e; }
.order-status-shipped { background: #ebf5ff; color: #3182ce; }
.order-status-cancelled { background: #f5f5f5; color: #999; }

/* 统一导航头 */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 48px;
}
.nav-header-left {
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
    white-space: nowrap;
}
.nav-header-title {
    font-size: 17px;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-header-right {
    cursor: pointer;
    font-size: 20px;
    padding: 4px 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 6px;
}
/* 判断题模式 — 题目文字加大居中 */
.judge-mode .question-title-inline { }
.judge-mode .question-subtitle-inline { }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
.judge-mode .question-header-row { justify-content: center !important; }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
.judge-mode .audio-btn-inline { margin-left: 12px; }
/* 学习面板三行独立左对齐 */
.learning-result-row { padding: 8px 0; font-size: 20px; line-height: 1.6; display: block; text-align: left; }
.learning-result-cn { padding-left: 5em; display: block; text-align: left; }
/* 顶部挑战信息四要素同行 */
.challenge-info-row { display: flex; align-items: center; gap: 12px; font-size: 14px; padding: 4px 0; flex-wrap: wrap; }
/* 拼写题模式 — 提示行居中 */
.spelling-prompt-label { display: block; text-align: center; font-size: 16px; color: #718096; margin-bottom: 8px; }
.spelling-prompt-cn { display: block; text-align: center; font-size: 25px; font-weight: 600; color: #2d3748; margin-bottom: 12px; }
.spelling-prompt-audio { display: inline-flex; align-items: center; justify-content: center; }

/* === 英语答题UI 7/23 === */
.judge-mode .question-title-inline { }
.judge-mode .question-subtitle-inline { }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
.judge-mode .audio-btn-inline { display: inline-flex; margin-left: 8px; }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
.learning-result-row { padding: 8px 0; font-size: 20px; line-height: 1.7; }
.learning-result-row.learning-result-cn { padding-left: 5em; }
.challenge-info-row { display: flex; align-items: center; gap: 12px; font-size: 13px; padding: 6px 0; flex-wrap: wrap; color: var(--text-muted); }
.login-modal .login-content { background: white; border-radius: 16px; padding: 28px 24px; width: 340px; max-width: 90vw; text-align: center; }

@media (max-width: 480px) {
  .question-header-row { justify-content: center; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 6px 8px; padding: 10px 8px; }
  .question-title-inline { font-size: 25px; white-space: nowrap; }
  .question-subtitle-inline { font-size: 12px; white-space: nowrap; }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
  .audio-btn-inline { flex-shrink: 0; }
        .question-pos-inline { font-size: 18px; opacity: 0.85; white-space: nowrap; }
  .judge-meaning-row { font-size: 15px; }
  /* judge-mode uses inline layout now */
  .learning-result-row { font-size: 16px; }
}




/* 判断题释义行 — 居中显示 */
.judge-meaning-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 6px 0;
  text-align: center;
}
.judge-meaning-label {
  font-size: 18px;
  color: #4a90e2;
}
.judge-meaning-text {
  font-size: 18px;
  font-weight: 600;
  color: #4a90e2;
}
  font-size: 25px;
  font-weight: 600;
  color: #4a90e2;
}

/* 匹配题标题 */
.matching-title-inline {
  font-size: 18px;
  font-weight: 600;
  color: #4a90e2;
}

/* 切题过渡动画 */
.challenge-page { transition: opacity 0.2s ease; }
.challenge-page.transitioning { opacity: 0; }

/* ========== 首页 ========== */
.home-content { padding-bottom: 60px; }
.home-wubao-box { margin: 8px 16px; background: white; border-radius: 14px; padding: 10px 8px; color: #333; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.home-wubao-row { display: flex; justify-content: space-around; align-items: center; text-align: center; gap: 2px; }
.home-wubao-item { min-width: 44px; }
.home-wubao-icon { font-size: 22px; }
.home-wubao-name { font-size: 10px; color: #666; }
.home-wubao-level { font-size: 10px; font-weight: 600; color: #999; }
.home-wubao-points-value { font-size: 20px; }
.home-wubao-points-label { font-size: 11px; color: #999; }

.home-section-box { margin: 6px 16px; }
.home-section-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }

.home-domain-card { display: flex; align-items: center; padding: 8px 10px; margin-bottom: 4px; background: white; border-radius: 10px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); cursor: pointer; }
.home-domain-icon { font-size: 28px; margin-right: 10px; }
.home-domain-info { flex: 1; }
.home-domain-name { font-size: 14px; font-weight: 600; }
.home-domain-status { font-size: 11px; color: #999; }
.home-domain-arrow { color: #ccc; font-size: 18px; }

.home-ad-banner { margin: 8px 8px; background: #fffbe6; border: 1px solid #ffe58f; border-radius: 10px; min-height: 150px; display: flex; align-items: center; color: #8c6d00; text-align: center; position: relative; overflow: hidden; }
.home-ad-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 18px; color: #c9a800; z-index: 1; }
.home-ad-nav-left { left: 8px; }
.home-ad-nav-right { right: 8px; }
.home-ad-content { flex: 1; padding: 14px 36px; font-size: 14px; line-height: 1.5; }
.home-ad-counter { position: absolute; right: 8px; bottom: 2px; font-size: 10px; color: #c9a800; }

.home-product-row { display: flex; gap: 8px; overflow-x: auto; }
.home-product-card { min-width: 120px; background: white; border-radius: 10px; padding: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); cursor: pointer; }
.home-product-icon { font-size: 30px; text-align: center; margin-bottom: 4px; }
.home-product-name { font-size: 12px; font-weight: 500; text-align: center; }
.home-product-price { font-size: 11px; color: #e53e3e; text-align: center; font-weight: 600; }
.home-product-empty { width: 100%; text-align: center; padding: 14px; color: #ccc; font-size: 13px; }

/* ========== 登录弹窗 ========== */
.login-content { position: relative; }
.login-divider { margin: 16px 0; text-align: center; color: #999; font-size: 13px; }
.login-btn-wechat { background: #07c160; }


/* ========== 排行榜 ========== */
.rankings-container { padding: 0 16px 80px; }
.rankings-tabs { display: flex; gap: 8px; margin: 12px 0; justify-content: center; }
.rankings-placeholder { text-align: center; padding: 60px; color: #999; }
.rankings-list { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.rankings-user-info { flex: 1; min-width: 0; }
.rankings-me-badge { font-size: 11px; color: #667eea; margin-left: 4px; }
.rankings-score { font-weight: 700; font-size: 16px; color: #667eea; white-space: nowrap; }


/* ========== 学习页 ========== */
.study-progress-text { font-size: 13px; color: #999; white-space: nowrap; }

/* ========== 五宝页 ========== */

/* ========== 英语山脉 ========== */

/* ========== study-page.js ========== */
.stu-3b6fff { display:flex;align-items:center;gap:10px; }
.stu-fa6b6f { font-size:32px; }
.stu-63dc9c { flex:1;font-size:18px;font-weight:600; }
.stu-498103 { font-size:13px;color:#f6ad55; }
.stu-643c34 { font-size:13px;color:#999;margin:4px 0 8px; }
.stu-4ca747 { display:flex;align-items:center;gap:8px; }
.stu-f6aaf7 { flex:1;height:6px; }

/* ========== wubao-page.js ========== */
.wub-7449c3 { font-size: 60px; margin-bottom: 16px; }
.wub-67c849 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.wub-3aeeb4 { padding: 16px; padding-bottom: 80px; }
.wub-e6ce92 { background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%); border-radius: 24px; padding: 32px; text-align: center; margin-bottom: 20px; }
.wub-4ce8d8 { font-size: 100px; margin-bottom: 12px; }
.wub-7acbcd { font-size: 22px; font-weight: 700; color: #333; margin-bottom: 4px; }
.wub-494567 { font-size: 14px; color: #666; }
.wub-a075d7 { background: rgba(255,255,255,0.5); border-radius: 10px; height: 10px; margin-top: 16px; overflow: hidden; }
.wub-93cd18 { font-size: 12px; color: #666; margin-top: 6px; }
.wub-7ede8a { display: grid; gap: 12px; }
.wub-733828 { background: white; border-radius: 16px; padding: 16px; display: flex; align-items: center; gap: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.wub-7a0687 { font-size: 56px; }
.wub-49cdf8 { flex: 1; }
.wub-948e6d { display: flex; justify-content: space-between; align-items: center; }
.wub-c36043 { font-size: 17px; font-weight: 600; }
.wub-68ce24 { font-size: 13px; color: #667eea; }
.wub-01113c { font-size: 12px; color: #999; margin-top: 4px; }
.wub-f7815e { background: #f0f0f0; border-radius: 6px; height: 8px; margin-top: 10px; overflow: hidden; }
.wub-78781f { display: flex; justify-content: space-between; margin-top: 6px; }
.wub-9ae3ff { font-size: 11px; color: #999; }
.wub-123c0f { font-size: 11px; color: #e17055; font-weight: 600; }
.wub-cdc805 { font-size: 11px; color: #667eea; }

/* ========== english-mountain.js ========== */
.eng-cb9086 { display:flex;align-items:center;gap:8px;flex-wrap:nowrap;padding:8px 16px;margin-bottom:14px; }
.eng-7a7a69 { font-size:28px; }
.eng-ec696c { font-size:20px;font-weight:700;color:#dd6b20;white-space:nowrap; }
.eng-1a3afe { display:flex;align-items:center;gap:4px;margin-left:auto;white-space:nowrap; }
.eng-e21515 { font-size:18px; }
.eng-5c51dc { font-size:14px;font-weight:600;color:#dd6b20; }
.eng-9a9ff8 { left:34.3%;top:70%;transform:translate(-50%,-50%) rotate(-20deg); }
.eng-9002e4 { left:65.6%;top:49%;transform:translate(-50%,-50%) rotate(-160deg); }
.eng-0768c4 { left:34.3%;top:28%;transform:translate(-50%,-50%) rotate(-20deg); }
.eng-af9e0b { top:6%;left:12%;animation-delay:0s; }
.eng-7db6f0 { top:18%;right:8%;animation-delay:2s; }
.eng-8cd0da { position:fixed;top:0;left:0;right:0;bottom:0;z-index:100;display:flex;flex-direction:column; }
.eng-6124c9 { background:linear-gradient(135deg,#dd6b20,#e67e22);padding:12px 16px;display:flex;align-items:center;gap:12px;box-shadow:0 2px 8px rgba(221,107,32,0.3); }
.eng-dd1fba { color:#fff;font-size:18px;cursor:pointer;padding:4px 8px; }
.eng-c5112b { flex:1;text-align:center; }
.eng-85c90c { color:#fff;font-size:18px;font-weight:700; }
.eng-4b8170 { color:rgba(255,255,255,0.85);font-size:12px;margin-top:2px; }
.eng-aa6b0f { width:60px; }
.eng-26143f { flex:1;overflow-y:auto;padding:16px;background:#f5f7fa; }
.eng-ac4f1a { text-align:center;padding:40px;color:#999; }
.eng-e8f8c2 { display:flex;align-items:center;justify-content:space-between;margin-bottom:6px; }
.eng-a09a81 { font-size:16px;font-weight:600;color:#1a202c; }
.eng-08a0ed { text-align:right; }
.eng-2356b9 { font-size:16px;font-weight:700;color:#dd6b20; }
.eng-19fc22 { font-size:12px;margin-left:8px;color:#999; }
.eng-95ded4 { font-size:12px;color:#888;margin-bottom:8px; }
.eng-a13c1c { height:6px;background:#e2e8f0;border-radius:3px;overflow:hidden;margin-bottom:4px; }
.eng-1f7222 { height:100%;background:linear-gradient(90deg,#3182ce,#63b3ed);border-radius:3px;transition:width 0.3s; }
.eng-6440dc { display:flex;justify-content:flex-end;font-size:11px;color:#718096; }
.eng-557750 { position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);display:flex;align-items:center;justify-content:center;z-index:5000; }
.eng-be47af { background:white;border-radius:24px;padding:36px 24px;width:90%;max-width:400px;text-align:center; }

/* ========== member-page.js ========== */
.mem-e62464 { padding-bottom: 80px; }
.mem-a34deb { text-align: center; padding: 24px 20px 40px; }
.mem-82ac94 { font-size: 56px; margin-bottom: 12px; }
.mem-33e9c1 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #333; }
.mem-1c6d5c { font-size: 14px; color: #999; margin-bottom: 24px; }
.mem-b3f50f { background: white; border-radius: 14px; padding: 20px; margin: 0 16px 20px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); text-align: left; }
.mem-480fa4 { font-size: 15px; font-weight: 600; margin-bottom: 14px; color: #333; }
.mem-e4b174 { display: flex; flex-direction: column; gap: 10px; }
.mem-bd9db1 { display: flex; align-items: center; gap: 8px; }
.mem-8a9b54 { color: #38a169; font-size: 18px; }
.mem-20b370 { font-size: 14px; color: #555; }
.mem-10c9fa { width: 220px; padding: 12px; border-radius: 24px; border: none; background: linear-gradient(135deg, #667eea, #764ba2); color: white; font-size: 15px; font-weight: 600; cursor: pointer; }
.mem-e22443 { margin: 12px 16px 6px; }
.mem-738aa4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #333; }
.mem-250475 { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mem-9a6601 { background: white; border-radius: 10px; padding: 10px 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); font-size: 13px; color: #555; }
.mem-4babab { color: #38a169; }
.mem-c3ce62 { background: white; border-radius: 10px; padding: 10px 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); font-size: 13px; color: #555; cursor: pointer; }
.mem-f44555 { margin: 6px 16px 12px; }
.mem-3d9154 { background: #fafafa; border-radius: 10px; padding: 10px 12px; font-size: 13px; color: #aaa; border: 1px dashed #ddd; }
.mem-bfba35 { display: block; font-size: 11px; color: #ccc; }
.mem-3e6d2e { margin: 0 16px 16px; padding: 16px; background: white; border-radius: 14px; box-shadow: 0 2px 8px rgba(102,126,234,0.12); border: 1px solid rgba(102,126,234,0.15); }
.mem-7a2fe4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; color: #333; text-align: center; }
.mem-4354fd { display: flex; gap: 8px; margin-bottom: 10px; }
.mem-d92fdc { flex: 1; background: #f8f9fa; border-radius: 10px; padding: 14px; text-align: center; cursor: pointer; transition: all 0.2s; }
.mem-b8dac3 { font-size: 12px; color: #999; margin-bottom: 2px; }
.mem-b50eae { font-size: 22px; font-weight: 700; color: #667eea; }
.mem-9ae3ff { font-size: 11px; color: #999; }
.mem-0f2f0c { flex: 1; background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08)); border-radius: 10px; padding: 14px; text-align: center; border: 2px solid #667eea; cursor: pointer; transition: all 0.2s; }
.mem-cdde80 { margin: 12px 16px; }
.mem-5f22d5 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mem-8efd66 { background: white; border-radius: 12px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); cursor: pointer; }
.mem-57e132 { font-size: 24px; margin-bottom: 4px; }
.mem-d83315 { font-size: 14px; font-weight: 600; }
.mem-c28a62 { margin: 10px 16px; }
.mem-9b233a { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.mem-60cafd { background: white; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); overflow: hidden; }
.mem-1c94bf { display: flex; align-items: center; padding: 12px 14px; border-bottom: 1px solid #f5f5f5; }
.mem-49cdf8 { flex: 1; }
.mem-e96a44 { font-size: 14px; color: #333; }
.mem-783e59 { font-size: 12px; color: #999; }
.mem-7851db { text-align: right; }
.mem-b87818 { font-size: 14px; font-weight: 600; color: #e53e3e; }
.mem-91cc1a { text-align: center; padding: 10px; color: #667eea; font-size: 13px; cursor: pointer; }
.mem-dccd0e { text-align: center; padding: 10px; color: #999; font-size: 13px; cursor: pointer; }
.mem-74cfe3 { background: white; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); text-align: center; padding: 24px; color: #999; font-size: 13px; }
.mem-7b8e81 { color: #667eea; cursor: pointer; }
.mem-bcdc58 { margin: 6px 16px 16px; }
.mem-973a6c { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #38a169; }

/* ========== points-center-page.js ========== */
.poi-c630bc { text-align:center;padding:16px;background:#f8f9fa; }
.poi-849734 { font-size:36px;font-weight:700;color:#667eea; }
.poi-b9365a { font-size:13px;color:#999;margin-top:4px; }
.poi-cb6de8 { font-size:14px;color:#f0ad4e;margin-top:4px; }
.poi-aafc7c { padding: 60px 16px; text-align: center; }
.poi-7449c3 { font-size: 60px; margin-bottom: 16px; }
.poi-67c849 { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.poi-3aeeb4 { padding: 16px; padding-bottom: 80px; }
.poi-f7044a { background: white; border-radius: 16px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.poi-ae2f86 { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.poi-3b2279 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; text-align: center; }
.poi-58aba5 { cursor:pointer; }
.poi-d85cca { font-size: 32px; }
.poi-088055 { font-size: 13px; color: #333; }
.poi-9ae3ff { font-size: 11px; color: #999; }
.poi-95ef96 { display:flex;gap:8px;margin:0 0 16px; }
.poi-d2a1c0 { flex:1;padding:10px;border-radius:10px;border:none;background:#f0f0ff;color:#667eea;font-size:13px;cursor:pointer;font-weight:500; }
.poi-220a63 { flex:1;padding:10px;border-radius:10px;border:none;background:#fff5f0;color:#f0ad4e;font-size:13px;cursor:pointer;font-weight:500; }
.poi-a27005 { margin:0 16px 16px;padding:16px;background:#f8f9fa;border-radius:12px; }
.poi-e75c33 { font-size:14px;font-weight:600;margin-bottom:8px; }
.poi-a2e433 { font-size:12px;color:#666;line-height:1.8; }
.poi-138cc2 { margin-top:4px;color:#e53e3e; }
.poi-ba4f4f { margin-top:4px;color:#999; }
.poi-1f83cc { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; display: flex; align-items: center; justify-content: center; }
.poi-4b566e { background: white; border-radius: 16px; padding: 24px; width: 300px; text-align: center; }
.poi-67e406 { font-size: 40px; margin-bottom: 12px; }
.poi-9b233a { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.poi-4a9692 { font-size: 13px; color: #999; margin-bottom: 16px; }
.poi-800a82 { display: flex; gap: 12px; }
.poi-c4e5b8 { flex:1; padding:10px; border-radius:10px; border:1px solid #ddd; background:white; font-size:14px; }
.poi-d1784d { flex:1; padding:10px; border-radius:10px; border:none; background:#667eea; color:white; font-size:14px; }
.poi-27c325 { background: white; border-radius: 16px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.poi-4cb809 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.poi-b8b475 { font-size: 16px; font-weight: 600; }
.poi-bdaec0 { font-size: 13px; color: #667eea; cursor: pointer; }
.poi-252a71 { text-align: center; padding: 20px; color: #999; }
.poi-abbdf0 { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.poi-e96a44 { font-size: 14px; color: #333; }
.poi-37ce9e { font-size: 12px; color: #999; margin-top: 2px; }
.poi-3f1f2c { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.poi-49dfc2 { padding: 4px 12px; border: none; background: #f0f0f0; border-radius: 6px; font-size: 13px; }
.poi-3b7d00 { font-size: 13px; color: #999; line-height: 28px; }
.poi-b0f855 { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(0,0,0,0.78); color: white; padding: 12px 24px; border-radius: 10px; font-size: 14px; z-index: 9999; pointer-events: none; white-space: nowrap; }

/* ========== wrong-words-page.js ========== */
.wro-d38f96 { background:linear-gradient(135deg,#667eea,#764ba2);color:white;padding:16px;position:relative; }
.wro-426357 { display:flex;align-items:center;justify-content:space-between;position:relative;z-index:1; }
.wro-22d767 { display:flex;align-items:center; }
.wro-409ffc { font-size:24px;margin-right:8px;cursor:pointer;padding:4px;background:rgba(255,255,255,.2);border-radius:4px; }
.wro-3b4eea { font-size:18px;margin:0; }
.wro-6eff83 { font-size:24px;cursor:pointer;padding:4px;background:rgba(255,255,255,.2);border-radius:4px; }
.wro-ee971e { padding:60px 20px;text-align:center; }
.wro-cfe695 { font-size:56px;margin-bottom:16px; }
.wro-6af7dc { font-size:16px;color:#333;margin-bottom:8px; }
.wro-0aac5f { font-size:13px;color:#999;margin-bottom:24px; }
.wro-bd017b { padding:16px;padding-bottom:100px; }
.wro-1caf4a { display:flex;gap:6px;margin-bottom:12px;flex-wrap:wrap; }
.wro-cc568f { font-weight:700; }
.wro-13107b { background:white;border-radius:14px;padding:16px;margin-bottom:16px;box-shadow:0 2px 8px rgba(0,0,0,.06); }
.wro-86039a { display:flex;justify-content:space-between;align-items:center;margin-bottom:10px; }
.wro-0d66b2 { font-size:15px;font-weight:600;color:#333; }
.wro-344294 { height:10px;background:#f1f3f4;border-radius:5px;overflow:hidden;margin-bottom:8px; }
.wro-59dd1c { color:#e53e3e;font-size:13px;font-weight:600; }
.wro-b24df0 { display:flex;gap:16px;font-size:13px;color:#666; }
.wro-f1d860 { color:#48bb78; }
.wro-2b6364 { color:#ed8936; }
.wro-38ce96 { display:flex;gap:8px;margin-bottom:16px; }
.wro-81b1ab { text-align:center;padding:60px 20px;color:#999; }
.wro-550126 { font-size:48px;margin-bottom:12px; }
.wro-6c3ca2 { font-size:14px; }
.wro-2dfa3c { display:flex;flex-direction:column;gap:12px; }
.wro-4cd194 { background:white;border-radius:14px;padding:16px;box-shadow:0 2px 8px rgba(0,0,0,.05); }
.wro-7cca13 { display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px; }
.wro-341ff2 { font-size:18px;font-weight:bold;color:#333; }
.wro-c538b8 { font-size:13px;color:#888;margin-top:2px; }
.wro-39300f { padding:4px 10px;border-radius:12px;font-size:11px;font-weight:600; }
.wro-fa53cb { font-size:15px;color:#667eea;font-weight:600;margin-bottom:8px; }
.wro-f5e56d { font-size:13px;color:#666;margin-bottom:4px;font-style:italic; }
.wro-1e1c4b { font-size:12px;color:#999;margin-bottom:12px; }
.wro-fc5500 { display:flex;justify-content:space-between;align-items:center;font-size:12px;color:#999;margin-bottom:10px; }
.wro-53463d { margin-bottom:12px; }
.wro-67a778 { display:flex;justify-content:space-between;font-size:11px;color:#999;margin-bottom:4px; }
.wro-96996b { height:6px;background:#f1f3f4;border-radius:3px;overflow:hidden; }
.wro-1952d6 { display:flex;gap:8px; }
.wro-e770ee { flex:1;padding:10px;border-radius:10px;border:none;background:linear-gradient(135deg,#667eea,#764ba2);color:white;font-size:13px;font-weight:600; }
.wro-89924d { flex:1;padding:10px;border-radius:10px;border:1px solid #48bb78;background:white;color:#48bb78;font-size:13px;font-weight:600; }
.wro-b4e897 { position:fixed;top:0;left:0;right:0;bottom:0;background:#f8f9fa;z-index:200;overflow-y:auto;display:block; }
.wro-da4ef9 { display:flex;align-items:center;justify-content:space-between; }
.wro-d0b7bf { padding:24px 16px 120px; }
.wro-94f956 { text-align:center;margin-bottom:24px; }
.wro-c2a41d { font-size:32px;font-weight:bold;color:#333;margin-bottom:8px; }
.wro-1e4ccf { font-size:16px;color:#888; }
.wro-809d5e { background:white;border-radius:14px;padding:20px;margin-bottom:16px;box-shadow:0 2px 8px rgba(0,0,0,.06);border-left:4px solid #48bb78; }
.wro-0a285d { font-size:13px;color:#48bb78;font-weight:600;margin-bottom:8px; }
.wro-ac4db5 { font-size:18px;color:#333;font-weight:600; }
.wro-296a2d { background:white;border-radius:14px;padding:20px;box-shadow:0 2px 8px rgba(0,0,0,.06); }
.wro-500e56 { font-size:13px;color:#667eea;font-weight:600;margin-bottom:10px; }
.wro-a6f214 { font-size:15px;color:#333;margin-bottom:8px;font-style:italic;line-height:1.6; }
.wro-dbcaa2 { font-size:14px;color:#666;line-height:1.6; }
.wro-d2ccf7 { position:fixed;bottom:0;left:0;right:0;background:white;padding:16px;display:flex;gap:12px;box-shadow:0 -2px 10px rgba(0,0,0,.08); }
.wro-087c57 { flex:1;padding:14px;border-radius:10px;border:1px solid #ddd;background:white;color:#666;font-size:15px;font-weight:600; }
.wro-096559 { flex:1;padding:14px;border-radius:10px;border:none;background:linear-gradient(135deg,#48bb78,#38a169);color:white;font-size:15px;font-weight:600; }

/* ========== report-page.js ========== */
.rep-5ae714 { text-align:center;padding:60px;color:#999; }
.rep-d32e7d { padding:6px 10px 80px; }
.rep-362e03 { background:white;border-radius:14px;padding:10px;margin-bottom:4px;box-shadow:0 1px 4px rgba(0,0,0,.06); }
.rep-845e79 { font-size:14px;font-weight:600;margin-bottom:12px; }
.rep-b8f599 { display:flex;justify-content:space-around;text-align:center; }
.rep-b157e4 { font-size:20px;font-weight:700;color:#333; }
.rep-e0dafc { font-size:11px;color:#999; }
.rep-ec5881 { font-size:20px;font-weight:700;color:#38a169; }
.rep-215596 { font-size:20px;font-weight:700;color:#667eea; }
.rep-0eacb1 { font-size:20px;font-weight:700;color:#ed8936; }
.rep-e75c33 { font-size:14px;font-weight:600;margin-bottom:8px; }
.rep-58eebd { display:flex;align-items:flex-end;justify-content:space-around;height:140px;padding:0 4px;border-bottom:1px solid #eee; }
.rep-331ed4 { display:flex;flex-direction:column;align-items:center;flex:1; }
.rep-d8b02e { font-size:10px;color:#999;margin-bottom:2px; }
.rep-78ed31 { font-size:11px;color:#999;margin-top:4px; }
.rep-87ff35 { background:white;border-radius:14px;padding:10px;box-shadow:0 1px 4px rgba(0,0,0,.06); }
.rep-e1357c { display:grid;grid-template-columns:1fr 1fr;gap:8px; }
.rep-0767d7 { text-align:center;padding:8px; }
.rep-1ea702 { font-size:20px;font-weight:700; }
.rep-b466f1 { background:white;border-radius:14px;padding:10px;margin-top:4px;box-shadow:0 1px 4px rgba(0,0,0,.06); }
.rep-c877b0 { font-size:14px;font-weight:600;margin-bottom:6px; }
.rep-cc81da { font-size:13px;color:#555;line-height:1.8; }

/* ========== index.html 内联收敛 ========== */
.ix-93b8ea { display:none; }
.ix-af67bd { display:flex;justify-content:flex-end; }
.ix-7e859d { font-size:22px;cursor:pointer;padding:4px 8px; }
.ix-e976bb { background:linear-gradient(135deg,#dd6b20,#e67e22);color:#fff;padding:12px 16px;display:flex;align-items:center;gap:12px;box-shadow:0 2px 8px rgba(221,107,32,0.3); }
.ix-dd1fba { color:#fff;font-size:18px;cursor:pointer;padding:4px 8px; }
.ix-c5112b { flex:1;text-align:center; }
.ix-cb914d { font-size:16px;font-weight:700; }
.ix-b67cda { font-size:11px;opacity:0.85;margin-top:2px; }
.ix-aa6b0f { width:60px; }
.ix-701704 { font-size:13px;cursor:pointer;padding:4px 12px;background:linear-gradient(135deg,#f59e0b,#f97316);color:#fff;border-radius:16px;font-weight:600;white-space:nowrap;margin-left:8px; }
.ix-a833a4 { max-width:400px; }
.ix-1cb7a0 { display:flex;justify-content:center;align-items:center;position:relative; }
.ix-f05162 { position:absolute;right:8px;top:50%;transform:translateY(-50%) }
.ix-e8ae1d { max-height:55vh;overflow-y:auto;font-size:14px;line-height:1.8;color:#333;white-space:pre-wrap; }
.ix-b667af { text-align:center;padding:20px;color:#999; }
.ix-5c9fd9 { white-space:pre-wrap; }
.ix-1952d6 { display:flex;gap:8px; }
.ix-fdf8a2 { flex:1;border:1px solid #e2e8f0;border-radius:20px;padding:8px 14px;font-size:13px;outline:none; }
.ix-8d8050 { border-radius:20px;padding:8px 16px;font-size:13px; }
.ix-cdde80 { margin: 12px 16px; }
.ix-ded975 { display:flex;align-items:center;background:white;border-radius:24px;padding:8px 16px;box-shadow:0 2px 12px rgba(0,0,0,0.08); }
.ix-a2c9e7 { font-size:18px;margin-right:8px; }
.ix-98a507 { flex:1;border:none;outline:none;font-size:14px;background:transparent; }
.ix-0b5661 { border:none;background:transparent;color:#999;font-size:18px;cursor:pointer; }
.ix-186eaf { margin:8px 16px; }
.ix-53463d { margin-bottom:12px; }
.ix-c877b0 { font-size:14px;font-weight:600;margin-bottom:6px; }
.ix-e1357c { display:grid;grid-template-columns:1fr 1fr;gap:8px; }
.ix-0d3e5d { background:white;border-radius:10px;padding:10px;box-shadow:0 1px 3px rgba(0,0,0,0.06);cursor:pointer; }
.ix-2d7e5d { font-size:13px;font-weight:600;color:#333; }
.ix-e0dafc { font-size:11px;color:#999; }
.ix-b96eb9 { font-size:14px;font-weight:700;color:#e53e3e; }
.ix-6f30f2 { margin:0 16px; }
.ix-a45ca9 { display:flex;justify-content:center;gap:8px;position:relative;z-index:2; }
.ix-599e0d { font-size:22px;margin-bottom:2px; }
.ix-bf6597 { text-align:center;padding:40px;color:#ccc; }
.ix-829669 { display:grid;grid-template-columns:1fr 1fr;gap:10px; }
.ix-24657b { background:white;border-radius:14px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.06);cursor:pointer; }
.ix-8d0be2 { padding:10px 12px; }
.ix-906e37 { font-size:13px;font-weight:600;color:#333;line-height:1.3;height:34px;overflow:hidden; }
.ix-8ba056 { display:flex;align-items:center;gap:4px;margin-top:4px;flex-wrap:wrap; }
.ix-727577 { display:flex;justify-content:space-between;align-items:center;margin-top:6px; }
.ix-64a6f1 { font-size:15px;font-weight:700;color:#e53e3e; }
.ix-576089 { font-size:11px;color:#f59e0b; }
.ix-fbe98b { max-width: 400px; }
.ix-689163 { padding: 20px 0; }
.ix-8b8745 { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
.ix-40d84d { display: flex; justify-content: space-between; padding: 15px 0; font-size: 18px; font-weight: bold; }
.ix-943b2a { color: #e74c3c; }
.ix-7002f9 { margin-bottom: 20px; }
.ix-199b6f { width: 100%; }
.ix-39af0b { max-width: 340px; text-align: center; }
.ix-79f246 { font-size: 56px; margin-bottom: 16px; }
.ix-bc82fc { font-size: 22px; font-weight: 700; color: #e53e3e; margin-bottom: 10px; }
.ix-ba45c7 { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 12px; }
.ix-6407a1 { font-size: 15px; color: #48bb78; font-weight: 700; margin-bottom: 20px; line-height: 1.8; }
.ix-0ed0e9 { display: flex; gap: 10px; }
.ix-b5e6f5 { flex: 1; font-weight: 600; }
.ix-67e406 { font-size: 40px; margin-bottom: 12px; }
.ix-9b233a { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.ix-954f2c { font-size: 14px; color: #666; margin-bottom: 20px; line-height: 1.6; }
.ix-49cdf8 { flex: 1; }
.ix-e9c493 { background: white; }
.ix-24b531 { cursor: pointer; }
.ix-e62464 { padding-bottom: 80px; }
.ix-c28a62 { margin: 10px 16px; }
.ix-5b65a0 { font-size:12px;color:#999;font-weight:400; }
.ix-0dbc39 { background:white;border-radius:12px;box-shadow:0 1px 4px rgba(0,0,0,0.06);padding:12px 14px; }
.ix-1002b9 { display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px; }
.ix-ab0031 { height:6px;background:#e2e8f0;border-radius:3px;overflow:hidden; }
.ix-8084da { height:100%;background:linear-gradient(90deg,#ffd700,#ff8c00);border-radius:3px; }
.ix-3514c0 { display:flex;justify-content:space-between;font-size:11px;color:#999;margin-top:4px; }
.ix-60cafd { background: white; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); overflow: hidden; }
.ix-78f7e7 { font-size: 20px; margin-right: 10px; }
.ix-267f6d { font-size: 14px; }
.ix-9ae3ff { font-size: 11px; color: #999; }
.ix-91ba4f { font-size: 14px; white-space: nowrap; }
.ix-b9da74 { text-align: center; padding: 20px; color: #999; font-size: 13px; }
.ix-1c94bf { display: flex; align-items: center; padding: 12px 14px; border-bottom: 1px solid #f5f5f5; }
.ix-f3b4cd { font-size: 13px; color: #666; }
.ix-37ce9e { font-size: 12px; color: #999; margin-top: 2px; }
.ix-90383c { font-size: 14px; font-weight: 600; margin-right: 12px; }
.ix-df50bf { font-size: 11px; padding: 3px 8px; border-radius: 10px; }
.ix-91cc1a { text-align: center; padding: 10px; color: #667eea; font-size: 13px; cursor: pointer; }
.ix-dccd0e { text-align: center; padding: 10px; color: #999; font-size: 13px; cursor: pointer; }
.ix-74cfe3 { background: white; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); text-align: center; padding: 24px; color: #999; font-size: 13px; }
.ix-7b8e81 { color: #667eea; cursor: pointer; }
.ix-5ae4d7 { display:flex;gap:8px;margin-bottom:8px; }
.ix-8cb478 { flex:1;background:white;border-radius:10px;padding:10px 8px;text-align:center;box-shadow:0 1px 3px rgba(0,0,0,0.04); }
.ix-825edb { font-size:18px;font-weight:700;color:#f59e0b; }
.ix-0ccb43 { font-size:18px;font-weight:700;color:#ef4444; }
.ix-1f814e { font-size:18px;font-weight:700;color:#667eea; }
.ix-dac0bc { background:white;border-radius:12px;box-shadow:0 1px 4px rgba(0,0,0,0.06);overflow:hidden; }
.ix-7b3c67 { display:flex;align-items:center;padding:10px 14px;border-bottom:1px solid #f5f5f5; }
.ix-96b8a8 { font-size:18px;margin-right:10px; }
.ix-d5e8c5 { flex:1; }
.ix-fe8328 { font-size:13px;color:#333; }
.ix-9c0d3a { font-size:11px;color:#aaa; }
.ix-8f3825 { display:flex;justify-content:center;align-items:center;gap:12px;margin-top:10px; }
.ix-ca6227 { padding:6px 14px;border-radius:8px;border:1px solid #ddd;background:white;font-size:13px;cursor:pointer; }
.ix-1d6097 { font-size:13px;color:#999; }
.ix-e9ebe9 { display: flex; }
.ix-ad0209 { flex: 1; display: flex; align-items: center; padding: 12px 14px; border-right: 1px solid #f5f5f5; border-bottom: 1px solid #f5f5f5; cursor: pointer; }
.ix-f17aa4 { font-size: 16px; margin-right: 8px; }
.ix-80e4e0 { flex: 1; font-size: 13px; }
.ix-de3ae3 { flex: 1; display: flex; align-items: center; padding: 12px 14px; border-bottom: 1px solid #f5f5f5; cursor: pointer; }
.ix-766745 { font-size: 13px; }
.ix-81207a { flex: 1; display: flex; align-items: center; padding: 12px 14px; border-right: 1px solid #f5f5f5; cursor: pointer; }
.ix-d06be7 { flex: 1; display: flex; align-items: center; padding: 12px 14px; }
.ix-783e59 { font-size: 12px; color: #999; }
.ix-bdd5a7 { display: flex; align-items: center; padding: 12px 14px; border-bottom: 1px solid #f5f5f5; cursor: pointer; }
.ix-d2726a { flex: 1; font-size: 14px; }
.ix-4eb300 { color: #ccc; }
.ix-f9a360 { display: flex; align-items: center; padding: 12px 14px; cursor: pointer; }
.ix-7b7ce8 { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #e53e3e; background: white; color: #e53e3e; font-size: 14px; }
.ix-1b8308 { max-height: 85vh; overflow-y: auto; width: 92%; max-width: 420px; }
.ix-d32779 { margin-bottom: 16px; }
.ix-738aa4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: #333; }
.ix-fa17fa { text-align: left; font-size: 13px; color: #666; line-height: 1.8; background: #f9f9f9; border-radius: 8px; padding: 14px; white-space: pre-wrap; word-break: break-word; }
.ix-2c8dfd { text-align: left; font-size: 13px; color: #999; line-height: 1.6; background: #f9f9f9; border-radius: 8px; padding: 12px; }
.ix-102b7f { text-align: left; }
.ix-d35d9d { background: #f9f9f9; border-radius: 8px; padding: 10px 12px; margin-bottom: 6px; font-size: 13px; }
.ix-948e6d { display: flex; justify-content: space-between; align-items: center; }
.ix-63927c { font-weight: 600; color: #333; }
.ix-1953ae { font-size: 11px; padding: 2px 8px; border-radius: 8px; }
.ix-5e68f1 { color: #999; margin-top: 2px; }
.ix-012b14 { margin-top: 8px; padding: 8px; background: #e6fffa; border-radius: 6px; color: #38b2ac; font-size: 12px; }
.ix-3b012a { font-size: 13px; color: #999; padding: 12px; background: #f9f9f9; border-radius: 8px; }
.ix-cdd8ca { text-align: center; }
.ix-36f1b6 { background: #667eea; }
.ix-ccd7dd { margin-bottom: 8px; }
.ix-fe4a27 { height: 80px; resize: vertical; margin-bottom: 4px; }
.ix-d64564 { font-size:11px;color:#999;margin-bottom:8px;text-align:right; }
.ix-56c00b { margin-bottom: 4px; }
.ix-320460 { text-align: center; font-size: 13px; color: #999; cursor: pointer; }
.ix-99ceab { text-align: center; font-size: 13px; color: #999; }
.ix-5ccdef { text-align: center; padding: 20px 0; }
.ix-fc5839 { font-size: 60px; margin-bottom: 15px; }
.ix-f80093 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.ix-a7801b { font-size: 13px; color: #999; margin-bottom: 12px; }
.ix-396931 { font-size: 14px; color: #667eea; }
.ix-3d4d1f { font-size: 13px; color: #666; margin-top: 12px; }
.ix-c6e997 { font-size: 48px; margin-bottom: 15px; }
.ix-5d8bd0 { font-size: 16px; color: #333; margin-bottom: 10px; }
.ix-568d1d { font-size: 14px; color: #666; line-height: 1.6; }
.ix-c273cf { display: flex; gap: 10px; margin-top: 15px; }
.ix-d72ebd { text-align:center;padding:20px 0; }
.ix-f0ef51 { font-size:48px;margin-bottom:15px; }
.ix-6af7dc { font-size:16px;color:#333;margin-bottom:8px; }
.ix-af3686 { font-size:14px;color:#666;margin-bottom:20px; }
.ix-8588e4 { width:100%; }
.ix-fe7c84 { text-align: center; padding: 15px; font-size: 12px; color: #999; background: #f5f5f5; margin-top: 20px; }
.ix-03a70e { color: #999; text-decoration: none; }

/* ========== 学习报告 V2 样式（2026-08-17） ========== */
.rep-stat-block { display:flex;flex-direction:column;align-items:center;gap:3px;flex:1; }
.rep-stat-icon { font-size:18px;line-height:1; }
.rep-stat-val { font-size:18px;font-weight:700;color:#667eea;line-height:1.2; }
.rep-stat-label { font-size:11px;color:#999; }
.rep-stat-time { font-size:14px; }

/* ========== 我的界面头部 V2 样式（2026-08-17） ========== */
.profile-grad { background: linear-gradient(135deg,#667eea,#8b5cf6); color:#fff; padding:18px 16px; }
.profile-head { display:flex; align-items:center; gap:12px; }
.profile-avatar { font-size:44px;line-height:1;flex-shrink:0; }
.profile-head-info { flex:1; min-width:0; }
.profile-head-name { font-size:20px;font-weight:700;color:#fff; }
.profile-head-meta { display:flex;flex-wrap:wrap;gap:8px;margin-top:6px;font-size:12px; }
.profile-head-points { background:rgba(255,255,255,.2);padding:2px 10px;border-radius:10px;color:#fff; }
.profile-head-vip { background:linear-gradient(135deg,#ffd700,#ffb347);color:#7c5e00;font-weight:700;padding:2px 10px;border-radius:10px; }
.profile-head-open { background:rgba(255,255,255,.25);padding:2px 12px;border-radius:12px;color:#fff; }
/* 个人资料弹窗头像选择网格 */
.avatar-grid { display:grid; grid-template-columns:repeat(8,1fr); gap:8px; margin:10px 0 14px; }
.avatar-grid-item { font-size:24px; text-align:center; padding:6px 0; border-radius:10px; cursor:pointer; border:2px solid transparent; transition:all .15s; }
.avatar-grid-item.active { border-color:#667eea; background:rgba(102,126,234,.12); }

/* ========== 文创商品详情整页（三级页面） ========== */
.creative-detail-page { background:#fff; padding-bottom:0; }
.detail-topbar { position:sticky; top:0; z-index:1000; display:flex; align-items:center; height:48px; padding:0 12px; background:#fff; border-bottom:1px solid #f0f0f0; }
.detail-back { min-width:36px; height:36px; border:none; background:transparent; font-size:15px; color:#333; cursor:pointer; flex-shrink:0; white-space:nowrap; padding:0 8px; }
.detail-topbar-title { flex:1; text-align:center; font-size:16px; font-weight:600; color:#333; }
.detail-share { border:none; background:#667eea; color:#fff; border-radius:16px; padding:6px 14px; font-size:13px; cursor:pointer; flex-shrink:0; }
.detail-bottombar { position:fixed; bottom:0; left:0; right:0; display:flex; align-items:center; gap:10px; padding:10px 16px; background:#fff; border-top:1px solid #eee; box-shadow:0 -2px 10px rgba(0,0,0,0.05); z-index:1000; }
.detail-cart-entry { position:relative; width:44px; height:44px; border:none; background:#f5f5f5; border-radius:50%; font-size:20px; cursor:pointer; flex-shrink:0; }
.cart-badge { position:absolute; top:-2px; right:-2px; min-width:18px; height:18px; border-radius:9px; background:#e53e3e; color:#fff; font-size:11px; line-height:18px; text-align:center; padding:0 4px; }

/* ========== 购物车抽屉 ========== */
.cart-overlay { position:fixed; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.5); z-index:6000; }
.cart-drawer { position:absolute; bottom:0; left:0; right:0; max-height:75vh; background:#fff; border-radius:20px 20px 0 0; display:flex; flex-direction:column; }
.cart-drawer-header { display:flex; align-items:center; justify-content:space-between; padding:16px; border-bottom:1px solid #f0f0f0; flex-shrink:0; }
.cart-drawer-title { font-size:16px; font-weight:700; color:#333; }
.cart-drawer-body { flex:1; overflow-y:auto; padding:8px 16px; }
.cart-item { display:flex; align-items:center; gap:10px; padding:12px 0; border-bottom:1px solid #f5f5f5; }
.cart-item-img { width:56px; height:56px; border-radius:8px; background:#f5f5f5; display:flex; align-items:center; justify-content:center; overflow:hidden; flex-shrink:0; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-actions { display:flex; align-items:center; gap:6px; flex-shrink:0; }
.qty-btn { width:28px; height:28px; border:1px solid #ddd; background:#fff; border-radius:6px; font-size:16px; line-height:1; cursor:pointer; color:#333; }
.qty-btn-plus { background:#667eea; border-color:#667eea; color:#fff; }
.cart-del { border:none; background:transparent; font-size:16px; cursor:pointer; margin-left:4px; }
.cart-drawer-footer { display:flex; align-items:center; gap:12px; padding:12px 16px; border-top:1px solid #f0f0f0; flex-shrink:0; }

/* ========== 详情页顶部购物车按钮 ========== */
.detail-cart-top { position:relative; border:none; background:#f5f5f5; width:34px; height:34px; border-radius:50%; font-size:17px; cursor:pointer; flex-shrink:0; margin-right:4px; }

/* ========== 我的订单页（京东式） ========== */
.order-tabs { display:flex; overflow-x:auto; background:#fff; border-bottom:1px solid #f0f0f0; position:sticky; top:0; z-index:10; }
.order-tab { flex-shrink:0; padding:12px 16px; font-size:14px; color:#666; cursor:pointer; position:relative; white-space:nowrap; }
.order-tab.active { color:#667eea; font-weight:700; }
.order-tab.active::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:24px; height:3px; background:#667eea; border-radius:2px; }
.order-card { background:#fff; border-radius:12px; margin-bottom:12px; box-shadow:0 1px 3px rgba(0,0,0,0.06); overflow:hidden; }
.order-card-header { display:flex; justify-content:space-between; align-items:center; padding:12px 14px; border-bottom:1px solid #f5f5f5; }
.order-card-no { font-size:12px; color:#999; }
.order-card-status { font-size:12px; font-weight:600; }
.st-pending { color:#d69e2e; }
.st-paid { color:#667eea; }
.st-shipped { color:#3182ce; }
.st-completed { color:#38a169; }
.st-cancelled, .st-refunded { color:#999; }
.order-card-item { display:flex; align-items:center; gap:10px; padding:12px 14px; border-bottom:1px solid #f5f5f5; }
.order-card-img { width:56px; height:56px; border-radius:8px; background:#f5f5f5; display:flex; align-items:center; justify-content:center; overflow:hidden; flex-shrink:0; }
.order-card-info { flex:1; min-width:0; }
.order-card-name { font-size:13px; color:#333; line-height:1.3; }
.order-card-meta { font-size:12px; color:#999; margin-top:2px; }
.order-card-price { font-size:13px; color:#333; font-weight:600; flex-shrink:0; }
.order-card-footer { display:flex; justify-content:space-between; align-items:center; padding:12px 14px; }
.order-card-time { font-size:12px; color:#999; }
.order-card-actions { display:flex; align-items:center; gap:10px; }
.order-card-total { font-size:13px; color:#333; font-weight:700; }
.order-btn { padding:5px 16px; font-size:13px; border-radius:16px; }
.order-btn-receive { background:#fff; border:1px solid #667eea; color:#667eea; }

/* ========== 结算页（确认订单） ========== */
.checkout-page { background:#f5f6fa; }
.checkout-section { background:#fff; border-radius:12px; padding:14px 16px; margin-bottom:12px; box-shadow:0 1px 3px rgba(0,0,0,0.04); }
.checkout-section-title { font-size:15px; font-weight:600; color:#333; margin-bottom:6px; }

/* ========== 通用弹窗（标题居中 + × 绝对定位右侧，skill 规范） ========== */
.modal-header { display:flex; justify-content:center; align-items:center; position:relative; padding:14px 16px; border-bottom:1px solid #f0f0f0; }
.modal-title { font-size:16px; font-weight:700; color:#333; }
.modal-close { position:absolute; right:12px; top:50%; transform:translateY(-50%); width:28px; height:28px; border:none; background:transparent; font-size:22px; color:#999; cursor:pointer; line-height:1; }
/* 通用表单 */
.form-group { margin-bottom:14px; }
.form-label { display:block; font-size:13px; color:#666; margin-bottom:6px; }
.form-input { width:100%; box-sizing:border-box; padding:10px 12px; border:1px solid #e5e7eb; border-radius:10px; font-size:14px; outline:none; background:#fafafa; }
.form-input:focus { border-color:#667eea; background:#fff; }
.form-textarea { width:100%; box-sizing:border-box; padding:10px 12px; border:1px solid #e5e7eb; border-radius:10px; font-size:14px; outline:none; background:#fafafa; min-height:70px; resize:vertical; }
.form-textarea:focus { border-color:#667eea; background:#fff; }

/* ============================================================
   富信息卡片弹窗（全站统一提示，替代轻量 toast）
   ============================================================ */
.info-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex; align-items: center; justify-content: center;
    z-index: 3200; padding: 20px;
}
.info-content {
    background: #fff; border-radius: 20px; padding: 28px 24px 24px;
    width: 340px; max-width: 90vw; text-align: center;
    position: relative; box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.25s ease;
}
.info-close { position: absolute; right: 14px; top: 12px; font-size: 20px; color: #c0c4cc; cursor: pointer; line-height: 1; }
.info-icon { font-size: 52px; margin-bottom: 10px; line-height: 1; }
.info-title { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 16px; }
.info-lines { text-align: left; margin-bottom: 6px; }
.info-line { display: flex; justify-content: space-between; align-items: center; padding: 9px 2px; font-size: 14px; border-bottom: 1px dashed #f0f1f4; }
.info-line:last-child { border-bottom: none; }
.info-line-label { color: #9aa1ac; flex-shrink: 0; margin-right: 14px; }
.info-line-value { color: #333; font-weight: 600; text-align: right; word-break: break-all; }
.info-line-plain { color: #555; line-height: 1.6; width: 100%; }
.info-buttons { display: flex; gap: 10px; margin-top: 18px; }
.info-buttons .btn { flex: 1; padding: 12px 10px; border-radius: 12px; font-size: 15px; font-weight: 600; border: none; cursor: pointer; }
.info-btn-primary { background: linear-gradient(135deg, #667eea, #764ba2); color: #fff; box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35); }
.info-btn-ghost { background: #f1f3f7; color: #555; }
/* 类型配色：标题 + 图标微调 */
.info-success .info-title { color: #10b981; }
.info-info .info-title { color: #667eea; }
.info-warn .info-title { color: #f59e0b; }
.info-error .info-title { color: #ef4444; }

/* ============================================================
   表单内联校验错误
   ============================================================ */
.field-error { color: #ef4444; font-size: 12px; text-align: left; margin: -6px 0 10px 4px; line-height: 1.4; }
.login-input.error { border-color: #ef4444 !important; }
.form-input.error, .form-textarea.error { border-color: #ef4444 !important; }
