From 26eb7a068514a40f1a1c4694170536ab280a060c Mon Sep 17 00:00:00 2001 From: yiqiu Date: Tue, 25 Nov 2025 16:28:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=A7=A3=E5=86=B3=E6=96=B9?= =?UTF-8?q?=E6=A1=88=E5=B9=BB=E7=81=AF=E7=89=87=E6=A0=B7=E5=BC=8F=EF=BC=9A?= =?UTF-8?q?=E5=A2=9E=E5=A4=A7=E5=9B=BE=E7=89=87=E5=B0=BA=E5=AF=B8=E5=B9=B6?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E5=9C=86=E8=A7=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 图片宽度从 400px 增加到 500px - 图片高度从 350px 增加到 400px - 移除 .solution-content 的圆角 (border-radius: 0) - 移除 .solution-image 的圆角 (border-radius: 0) - 打造更加简洁大气的视觉效果 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- css/index.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/css/index.css b/css/index.css index 5492e4e..569ab4d 100644 --- a/css/index.css +++ b/css/index.css @@ -2732,7 +2732,7 @@ html { background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(148, 163, 184, 0.15); - border-radius: 20px; + border-radius: 0; box-shadow: 0 8px 32px rgba(15, 23, 42, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05); @@ -2809,11 +2809,11 @@ html { /* 右侧图片区域 */ .solution-image { flex-shrink: 0; - width: 400px; - height: 350px; + width: 500px; + height: 400px; position: relative; overflow: hidden; - border-radius: 16px; + border-radius: 0; background: rgba(15, 23, 42, 0.5); }