        /* 本页专用样式 - 确保与现有手机版风格一致 */
        
        /* 页面标题区 */
        .page-header {
            background: linear-gradient(135deg, #1a0a05 0%, #3D1408 100%);
            padding: 20px 16px;
            margin-bottom: 16px;
            border-radius: 12px;
            text-align: center;
        }
        .page-header h1 {
            font-family: 'Noto Serif SC', serif, 'Songti SC', 'SimSun';
            color: #C8A96E;
            font-size: 1.2rem;
            margin: 0 0 6px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .page-header h1 i {
            color: #C8A96E;
        }
        .page-header p {
            color: rgba(200,169,110,0.6);
            font-size: 0.85rem;
            margin: 0;
        }
        
        /* 进度条 */
        .progress-card {
            background: #FFFDF9;
            border: 1px solid rgba(232,213,163,0.4);
            border-radius: 12px;
            padding: 10px 14px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex: 1;
        }
        .progress-title {
            font-size: 0.9rem;
            color: #333;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .progress-title i {
            color: #8B1A1A;
        }
        .progress-count {
            font-size: 0.85rem;
            color: #666;
        }
        .progress-count span {
            color: #8B1A1A;
            font-weight: 400;
        }
        .progress-bar {
            height: 6px;
            background: rgba(232,213,163,0.3);
            border-radius: 3px;
            overflow: hidden;
            flex-shrink: 0;
            width: 80px;
        }
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8B1A1A, #C8A96E);
            border-radius: 3px;
            transition: width 0.3s ease;
            width: 0%;
        }
        
        /* 体质分类标题 */
        .type-section {
            margin-bottom: 16px;
        }
        .type-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            padding: 0 4px;
        }
        .type-header i {
            color: #C8A96E;
            font-size: 0.9rem;
        }
        .type-name {
            font-family: 'Noto Serif SC', serif, 'Songti SC', 'SimSun';
            color: #8B1A1A;
            font-size: 0.95rem;
            font-weight: 400;
        }
        
        /* 题目卡片 */
        .question-card {
            background: #FFFDF9;
            border: 1px solid rgba(232,213,163,0.4);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
        }
        .question-num {
            display: inline-block;
            background: linear-gradient(135deg, #8B1A1A, #A52A2A);
            color: #fff;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .question-text {
            font-size: 0.95rem;
            color: #333;
            line-height: 1.6;
            margin-bottom: 12px;
        }
        
        /* 选项样式 */
        .option-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .option-item {
            display: flex;
            align-items: center;
            padding: 12px;
            background: #faf8f5;
            border: 1px solid rgba(232,213,163,0.3);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .option-item:active {
            transform: scale(0.98);
            background: #f5f0e8;
        }
        .option-item.selected {
            background: linear-gradient(135deg, rgba(139,26,26,0.1), rgba(200,169,110,0.1));
            border-color: #C8A96E;
        }
        .option-radio {
            width: 20px;
            height: 20px;
            border: 2px solid #C8A96E;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        .option-item.selected .option-radio {
            background: #C8A96E;
            border-color: #C8A96E;
        }
        .option-item.selected .option-radio::after {
            content: '';
            width: 8px;
            height: 8px;
            background: #1a0a05;
            border-radius: 50%;
        }
        .option-label {
            font-size: 0.9rem;
            color: #333;
        }
        .option-value {
            margin-left: auto;
            font-size: 0.8rem;
            color: #999;
        }
        
        /* 提交按钮区域 */
        .submit-section {
            padding: 16px 0 20px;
            text-align: center;
        }
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #8B1A1A, #A52A2A);
            color: #fff;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 400;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(139,26,26,0.3);
            transition: all 0.3s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .submit-btn:active {
            transform: scale(0.98);
            box-shadow: 0 2px 8px rgba(139,26,26,0.3);
        }
        .submit-btn:disabled {
            background: #ccc;
            color: #888;
            cursor: not-allowed;
            box-shadow: none;
        }
        .submit-btn i {
            margin-right: 8px;
        }
        
        /* 未登录提示 */
        .login-tip {
            background: #FFFDF9;
            border: 1px solid rgba(232,213,163,0.4);
            border-radius: 16px;
            padding: 40px 20px;
            text-align: center;
            margin: 20px 0 80px;
        }
        .login-tip i {
            font-size: 3.5rem;
            color: rgba(200,169,110,0.4);
            margin-bottom: 16px;
            display: block;
        }
        .login-tip h3 {
            font-family: 'Noto Serif SC', serif, 'Songti SC', 'SimSun';
            color: #8B1A1A;
            font-size: 1.1rem;
            margin: 0 0 8px 0;
        }
        .login-tip p {
            color: #666;
            font-size: 0.9rem;
            margin: 0 0 20px 0;
        }
        .login-tip .m-btn {
            display: inline-block;
            padding: 12px 40px;
            background: linear-gradient(135deg, #8B1A1A, #A52A2A);
            color: #fff;
            border-radius: 25px;
            font-size: 0.95rem;
            text-decoration: none;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(139,26,26,0.3);
            -webkit-tap-highlight-color: transparent;
            transition: all 0.3s ease;
        }
        .login-tip .m-btn i {
            color: rgba(200,169,110,0.8);
            margin-right: 8px;
        }
        .login-tip .m-btn:active {
            transform: scale(0.96);
            box-shadow: 0 2px 8px rgba(139,26,26,0.3);
        }
        
        /* 加载提示 */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26,10,5,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .loading-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        .loading-content {
            text-align: center;
            color: #C8A96E;
        }
        .loading-content i {
            font-size: 2.5rem;
            animation: spin 1s linear infinite;
        }
        .loading-content p {
            margin: 16px 0 0 0;
            font-size: 0.95rem;
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
