From d110939130f15ab7961d43b757194bf85d15a866 Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Thu, 28 Aug 2025 07:51:28 +0800 Subject: [PATCH] 'commit' --- dsLightRag/static/YunXiao/physics_quiz.html | 661 +++++++++++++++++--- 1 file changed, 570 insertions(+), 91 deletions(-) diff --git a/dsLightRag/static/YunXiao/physics_quiz.html b/dsLightRag/static/YunXiao/physics_quiz.html index 22f3a40a..62f8525a 100644 --- a/dsLightRag/static/YunXiao/physics_quiz.html +++ b/dsLightRag/static/YunXiao/physics_quiz.html @@ -41,6 +41,29 @@ font-size: 28px; } + .difficulty-indicator { + display: inline-block; + padding: 5px 15px; + border-radius: 20px; + font-weight: bold; + margin-bottom: 15px; + } + + .difficulty-easy { + background-color: #e8f5e9; + color: #2e7d32; + } + + .difficulty-medium { + background-color: #fff8e1; + color: #ff8f00; + } + + .difficulty-hard { + background-color: #ffebee; + color: #c62828; + } + .quiz-info { color: #666; font-size: 16px; @@ -59,6 +82,10 @@ transition: all 0.3s ease; } + .question.hidden { + display: none; + } + .question:hover { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); } @@ -137,6 +164,15 @@ display: none; } + .navigation-section { + text-align: center; + margin: 20px 0; + padding: 15px; + background-color: #f5f5f5; + border-radius: 8px; + display: none; + } + .submit-section { text-align: center; margin-top: 40px; @@ -198,16 +234,17 @@