From 0ddb0dd93c061ab0d04648ec1e0f7dcd40698fdd Mon Sep 17 00:00:00 2001 From: HuangHai <10402852@qq.com> Date: Mon, 1 Sep 2025 13:09:46 +0800 Subject: [PATCH] 'commit' --- .../static/RecognizeEduQuestionOcr.html | 285 ++++++++++++------ 1 file changed, 199 insertions(+), 86 deletions(-) diff --git a/dsLightRag/static/RecognizeEduQuestionOcr.html b/dsLightRag/static/RecognizeEduQuestionOcr.html index 2c5f9e7f..6bda9644 100644 --- a/dsLightRag/static/RecognizeEduQuestionOcr.html +++ b/dsLightRag/static/RecognizeEduQuestionOcr.html @@ -113,6 +113,7 @@ height: 150px; object-fit: contain; background-color: #f9f9f9; + cursor: pointer; /* 添加鼠标悬停小手效果 */ } .example-image-card .description { @@ -181,6 +182,7 @@ background-color: #f9f9f9; line-height: 1.8; /* 优化行高 */ } + .option-item { margin: 8px 0; /* 为选项添加上下间距 */ background-color: #f9f9f9; @@ -224,14 +226,19 @@ position: relative; /* 关键:作为动画容器的定位基准 */ overflow: hidden; /* 防止动画溢出 */ } + .option-item { margin: 8px 0; /* 为选项添加上下间距 */ background-color: #f9f9f9; } @keyframes spin { - 0% { transform: rotate(0deg); } - 100% { transform: rotate(360deg); } + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } } /* 图片模态框样式 */ @@ -245,7 +252,7 @@ width: 100%; height: 100%; overflow: auto; - background-color: rgba(0,0,0,0.9); + background-color: rgba(0, 0, 0, 0.9); } .modal-content { @@ -278,6 +285,7 @@