<!-- 搜索框 -->
<input type="text" class="search-box" id="searchBox" placeholder="输入试卷类型搜索" oninput="filterPapers()">

<!-- 考试列表容器 -->
<div id="paperListContainer">
    <!-- 考试卡片模板(动态生成) -->
</div>

<!-- 题目列表容器 -->
<div id="questionListContainer" style="display: none;">
    <table class="question-table">
        <thead>
        <tr>
            <th>题目内容</th>
            <th>操作</th>
        </tr>
        </thead>
        <tbody id="questionTableBody">
        </tbody>
    </table>
</div>

<!-- 答题弹窗 -->
<div class="answer-popup" id="answerPopup">
    <h2>答题</h2>
    <input type="hidden" id="answerPaperId">
    <input type="hidden" id="answerQuestionId">
    <input type="hidden" id="answerStudentName">
    <label for="answerContent">答案:</label>
    <input type="text" id="answerContent">
    <button onclick="submitAnswer()">提交答案</button>
    <button onclick="closeAnswerPopup()">取消</button>
</div>