This commit is contained in:
zhangjianjun 2026-04-13 14:22:00 +08:00
parent 0f97546fe0
commit a7dd2ef5ed
4 changed files with 12 additions and 8 deletions

View File

@ -103,7 +103,7 @@
height: 0; height: 0;
opacity: 0; opacity: 0;
transition: all var(--duration) ease-in-out; transition: all var(--duration) ease-in-out;
overflow: hidden; /* overflow: hidden; */
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;

View File

@ -96,8 +96,10 @@
gap: 1.25rem; gap: 1.25rem;
.equityInvestmentItemLogo { .equityInvestmentItemLogo {
width: 16.5rem; width: 100%;
height: 9.8125rem; /* width: 264px;
height: 157px; */
aspect-ratio: 264 / 157;
object-fit: cover; object-fit: cover;
border-radius: 8px; border-radius: 8px;
} }

View File

@ -120,11 +120,13 @@
} }
.cardsInner { .cardsInner {
max-width: 107.5rem; /* max-width: 107.5rem; */
max-width: 100%;
margin: 0 auto; margin: 0 auto;
display: grid; display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.5rem; gap: 1.5rem;
padding: 0 10rem;
} }
.card { .card {