缺陷修复

This commit is contained in:
黄心宇 2025-12-23 20:04:00 +08:00
parent ac6b94170f
commit 5b463dd340
3 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const Scene = ({ zoneId }) => {
sceneList.map((scene, index) => { sceneList.map((scene, index) => {
return <div className="scene-item" key={index}> return <div className="scene-item" key={index}>
<h3>{scene.name}</h3> <h3>{scene.name}</h3>
<p>{scene.value}</p> <p>{scene.summary}</p>
<Link to={`/softwareFactory/scene/${index + 1}`}> <Link to={`/softwareFactory/scene/${index + 1}`}>
<span>查看详情</span> <span>查看详情</span>
<KFIcon type="icon-icon_blackarrow_hover" font={40}/> <KFIcon type="icon-icon_blackarrow_hover" font={40}/>

View File

@ -37,6 +37,7 @@
} }
a { a {
margin-top: auto;
span { span {
margin-top: 14px; margin-top: 14px;
line-height: 25px; line-height: 25px;

View File

@ -32,6 +32,7 @@
padding: 0 calc((100vw - 1600px) / 2); padding: 0 calc((100vw - 1600px) / 2);
width: 100%; width: 100%;
margin-top: 60px; margin-top: 60px;
overflow: hidden;
.header-left { .header-left {
width: 642px; width: 642px;
@ -90,6 +91,7 @@
flex-shrink: 1; flex-shrink: 1;
width: 40vw; width: 40vw;
margin-left: 160px; margin-left: 160px;
overflow: hidden;
.header-item { .header-item {