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;
opacity: 0;
transition: all var(--duration) ease-in-out;
overflow: hidden;
/* overflow: hidden; */
display: flex;
flex-direction: column;
justify-content: space-between;

View File

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

View File

@ -52,10 +52,10 @@ export default function InvestGroup() {
)}
{section3Data && (
<section className={styles.equityInvestment} id={section3Data.title}
style={{
backgroundImage: `url(${section3Data.backgroundImage})`
}}
<section className={styles.equityInvestment} id={section3Data.title}
style={{
backgroundImage: `url(${section3Data.backgroundImage})`
}}
>
<SectionTitle title={section3Data.title} />
<div className={styles.equityInvestmentItems}>

View File

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