优化解决方案幻灯片样式:增大图片尺寸并移除圆角
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
- 图片宽度从 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 <noreply@anthropic.com>
This commit is contained in:
@@ -2732,7 +2732,7 @@ html {
|
|||||||
background: rgba(15, 23, 42, 0.7);
|
background: rgba(15, 23, 42, 0.7);
|
||||||
backdrop-filter: blur(16px);
|
backdrop-filter: blur(16px);
|
||||||
border: 1px solid rgba(148, 163, 184, 0.15);
|
border: 1px solid rgba(148, 163, 184, 0.15);
|
||||||
border-radius: 20px;
|
border-radius: 0;
|
||||||
box-shadow:
|
box-shadow:
|
||||||
0 8px 32px rgba(15, 23, 42, 0.5),
|
0 8px 32px rgba(15, 23, 42, 0.5),
|
||||||
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
||||||
@@ -2809,11 +2809,11 @@ html {
|
|||||||
/* 右侧图片区域 */
|
/* 右侧图片区域 */
|
||||||
.solution-image {
|
.solution-image {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
width: 400px;
|
width: 500px;
|
||||||
height: 350px;
|
height: 400px;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
border-radius: 16px;
|
border-radius: 0;
|
||||||
background: rgba(15, 23, 42, 0.5);
|
background: rgba(15, 23, 42, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user