From c714e78ecb00a7cc453228f14d9c93143c4ba5e4 Mon Sep 17 00:00:00 2001 From: iHeyTang Date: Mon, 29 Sep 2025 11:32:51 +0800 Subject: [PATCH] fix: adjust max-height and border-radius for result images and videos to enhance visual presentation --- src/pages/result/index.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/pages/result/index.css b/src/pages/result/index.css index 41cc607..1dd07b5 100644 --- a/src/pages/result/index.css +++ b/src/pages/result/index.css @@ -37,7 +37,7 @@ /* 媒体容器 - 自适应比例 */ .result-container { width: 100%; - max-height: 60vh; + max-height: 80vh; display: flex; align-items: center; justify-content: center; @@ -47,18 +47,17 @@ } .result-image { - width: 100%; height: auto; - max-height: 60vh; - border-radius: 16px; + max-height: 70vh; + border-radius: 12px; object-fit: contain; } .result-video { width: 100%; - height: 60vh; + height: 70vh; object-fit: contain; - border-radius: 16px; + border-radius: 12px; } /* 底部操作区域 */