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 @@