<!-- 搜索框容器(改为双输入框) -->
<div id="searchBoxContainer">
    <input type="text" class="search-input" id="searchContent" placeholder="搜索题目内容...">
    <input type="text" class="search-input" id="searchType" placeholder="搜索题目类型...">
    <button class="function-btn" onclick="searchQuestion()">联合查询</button>
</div>

<!-- 题目表格容器 -->
<div id="questionTableContainer">
    <table class="question-table" id="questionTable">
        <thead>
        <tr>
            <th>题目内容</th>
            <th>题目类型</th>
            <th>操作区</th>
        </tr>
        </thead>
        <tbody id="questionBody"></tbody>
    </table>
</div>

<!-- 答题表单容器(保持不变) -->
<div class="form-container" id="answerFormContainer">
    <h2>答题页面</h2>
    <p id="questionText"></p>
    <input type="text" id="userAnswer" placeholder="请输入你的答案">
    <button onclick="checkAnswer()">提交答案</button>
    <button onclick="closeAnswerForm()">返回</button>
    <p id="resultText"></p>
    <p id="answerText" style="display: none;">答案:<span id="correctAnswer"></span></p>
    <p id="analysisText" style="display: none;">解析:<span id="questionAnalysis"></span></p>
</div>

<!-- 遮罩层 -->
<div class="overlay" id="overlay"></div>