hookehuyr

style(PdfViewer): 调整阴影透明度提升视觉效果

1 <!-- 1 <!--
2 * @Date: 2025-01-21 2 * @Date: 2025-01-21
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-10-22 15:08:11 4 + * @LastEditTime: 2025-10-22 15:16:46
5 * @FilePath: /mlaj/src/components/ui/PdfViewer.vue 5 * @FilePath: /mlaj/src/components/ui/PdfViewer.vue
6 * @Description: PDF预览组件 - 使用pdf-vue3库 6 * @Description: PDF预览组件 - 使用pdf-vue3库
7 --> 7 -->
...@@ -867,7 +867,7 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => { ...@@ -867,7 +867,7 @@ const applyPinchZoom = (newZoom, centerX, centerY, container) => {
867 background: rgba(255, 255, 255, 0.15); 867 background: rgba(255, 255, 255, 0.15);
868 padding: 12px 20px; 868 padding: 12px 20px;
869 border-radius: 25px; 869 border-radius: 25px;
870 - box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); 870 + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
871 backdrop-filter: blur(1px); 871 backdrop-filter: blur(1px);
872 border: 1px solid rgba(255, 255, 255, 0.3); 872 border: 1px solid rgba(255, 255, 255, 0.3);
873 transition: all 0.3s ease; 873 transition: all 0.3s ease;
......