 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .page {
            display: none;
            padding: 40px 30px;
        }
        .page.active {
            display: block;
        }
        
        /* 所有问题页面样式 */
        .question-block {
            margin-bottom: 30px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #3498db;
        }
        .question-text {
            font-size: 1.1rem;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.6;
            font-weight: 500;
        }
        .options-block {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .option-block {
            padding: 12px 15px;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            line-height: 1.5;
        }
        .option-block:hover {
            border-color: #3498db;
            background: #ebf5fb;
        }
        .option-block.selected {
            border-color: #3498db;
            background: #3498db;
            color: white;
        }
        .option-label {
            display: inline-block;
            width: 30px;
            font-weight: bold;
            margin-right: 10px;
        }
        h1 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        .btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        .btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        .question {
            margin-bottom: 30px;
            font-size: 1.15rem;
            color: #2c3e50;
            line-height: 1.6;
        }
        .options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .option {
            padding: 15px;
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            line-height: 1.5;
        }
        .option:hover {
            border-color: #3498db;
            background: #ebf5fb;
        }
        .option.selected {
            border-color: #3498db;
            background: #3498db;
            color: white;
        }
        .progress {
            height: 6px;
            background: #e9ecef;
            margin-bottom: 30px;
            border-radius: 3px;
            overflow: hidden;
        }
        .progress-bar {
            height: 100%;
            background: #3498db;
            width: 0%;
            transition: width 0.3s ease;
        }
        .result-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .result-code {
            text-align: center;
            font-size: 1.8rem;
            color: #27ae60;
            margin-bottom: 30px;
        }
        .result-desc {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            line-height: 1.8;
            color: #34495e;
        }
        .dimensions {
            margin-bottom: 30px;
        }
        .dimension {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        .dimension-name {
            color: #2c3e50;
        }
        .dimension-score {
            font-weight: bold;
            color: #3498db;
        }
        .match-info {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        .disclaimer {
            text-align: center;
            color: #95a5a6;
            font-size: 0.9rem;
            margin-top: 40px;
            line-height: 1.5;
        }
        
        /* 模态框按钮样式 */
        .modal-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
        }
        .modal-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                border-radius: 10px;
            }
            .page {
                padding: 20px 15px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .question-block {
                padding: 15px;
            }
            .question-text {
                font-size: 1rem;
            }
            .option-block {
                padding: 10px;
            }
        }