|
|
|
@ -120,7 +120,7 @@ |
|
|
|
display: flex; |
|
|
|
align-items: start; |
|
|
|
justify-content: space-between; |
|
|
|
gap: 10.625rem; |
|
|
|
gap: 5rem; |
|
|
|
} |
|
|
|
.sl2-arch__copy { |
|
|
|
display: flex; |
|
|
|
@ -137,7 +137,7 @@ |
|
|
|
} |
|
|
|
.sl2-arch__desc { |
|
|
|
margin: 0; |
|
|
|
color: var(--color-text); |
|
|
|
color: var(--color-text-muted); |
|
|
|
font-family: "MiSans VF", "PingFang SC", sans-serif; |
|
|
|
font-size: var(--font-20); |
|
|
|
font-weight: 400; |
|
|
|
@ -145,16 +145,17 @@ |
|
|
|
margin-bottom: 2.5rem; |
|
|
|
} |
|
|
|
.sl2-arch__panel { |
|
|
|
width: 60rem; |
|
|
|
width: 100%; |
|
|
|
overflow: hidden; |
|
|
|
border-radius: 1.875rem; |
|
|
|
background: var(--color-white); |
|
|
|
border: 1px solid rgb(223, 224, 226); |
|
|
|
/* border: 1px solid rgb(223, 224, 226); */ |
|
|
|
} |
|
|
|
.sl2-arch__panel img { |
|
|
|
display: block; |
|
|
|
width: 100%; |
|
|
|
height: auto; |
|
|
|
/* height: auto; */ |
|
|
|
object-fit: contain; |
|
|
|
} |
|
|
|
|
|
|
|
.sl2-core { |
|
|
|
@ -219,6 +220,14 @@ |
|
|
|
font-size: var(--font-20); |
|
|
|
font-weight: 400; |
|
|
|
line-height: var(--font-28); |
|
|
|
|
|
|
|
/* 4行 */ |
|
|
|
min-height: calc(var(--font-28) * 4); |
|
|
|
display: -webkit-box; |
|
|
|
-webkit-line-clamp: 4; |
|
|
|
-webkit-box-orient: vertical; |
|
|
|
overflow: hidden; |
|
|
|
text-overflow: ellipsis; |
|
|
|
} |
|
|
|
.sl2-core__media { |
|
|
|
padding: 3rem; |
|
|
|
|