2026-05-13 11:48:22 +08:00
|
|
|
.download-cta {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: 400px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
background: #fff;
|
|
|
|
|
border-top: 1px solid #eec8b8;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__pattern {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 50%;
|
2026-05-14 17:58:14 +08:00
|
|
|
width: 1920px;
|
|
|
|
|
max-width: none;
|
2026-05-13 14:57:52 +08:00
|
|
|
height: 923px;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
transform: translate(-50%, -50%);
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__inner {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 1280px;
|
|
|
|
|
gap: 32px;
|
|
|
|
|
margin: 0 auto;
|
2026-05-15 12:11:50 +08:00
|
|
|
padding: 60px 16px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__content {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
2026-05-14 17:58:14 +08:00
|
|
|
order: 2;
|
2026-05-13 14:57:52 +08:00
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
2026-05-14 17:58:14 +08:00
|
|
|
align-items: center;
|
2026-05-13 14:57:52 +08:00
|
|
|
justify-content: center;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
gap: 36px;
|
|
|
|
|
overflow: clip;
|
2026-05-14 17:58:14 +08:00
|
|
|
text-align: center;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__copy {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-05-14 17:58:14 +08:00
|
|
|
align-items: center;
|
2026-05-13 14:57:52 +08:00
|
|
|
width: 100%;
|
|
|
|
|
gap: 16px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__heading {
|
2026-05-14 17:58:14 +08:00
|
|
|
--download-heading-title-size: 32px;
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
2026-05-14 17:58:14 +08:00
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: center;
|
2026-05-13 14:57:52 +08:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: 20px;
|
2026-05-14 17:58:14 +08:00
|
|
|
max-width: 100%;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__title {
|
2026-05-14 17:58:14 +08:00
|
|
|
position: relative;
|
|
|
|
|
top: -4px;
|
2026-05-13 14:57:52 +08:00
|
|
|
margin: 0;
|
2026-05-14 17:58:14 +08:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
font-size: var(--download-heading-title-size);
|
2026-05-13 14:57:52 +08:00
|
|
|
font-weight: 700;
|
|
|
|
|
line-height: 1.2;
|
2026-05-15 12:11:50 +08:00
|
|
|
letter-spacing: var(--ls-32);
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #1a1a1a;
|
|
|
|
|
white-space: nowrap;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__logo-frame {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: relative;
|
|
|
|
|
flex-shrink: 0;
|
2026-05-14 17:58:14 +08:00
|
|
|
width: calc(var(--download-heading-title-size) * 3.9167);
|
|
|
|
|
height: calc(var(--download-heading-title-size) * 1.5);
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__logo {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: none;
|
|
|
|
|
height: 100%;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__description {
|
2026-05-13 14:57:52 +08:00
|
|
|
max-width: 542px;
|
|
|
|
|
margin: 0;
|
2026-05-14 17:58:14 +08:00
|
|
|
font-size: 16px;
|
2026-05-13 14:57:52 +08:00
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.5;
|
2026-05-15 12:11:50 +08:00
|
|
|
letter-spacing: var(--ls-16);
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #7a726d;
|
2026-05-14 17:58:14 +08:00
|
|
|
text-align: center;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badges {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
overflow: clip;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 260px;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
height: 70px;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
overflow: clip;
|
|
|
|
|
border-radius: 20px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge--android {
|
2026-05-13 14:57:52 +08:00
|
|
|
background: #f28a4b;
|
|
|
|
|
border: 1px solid #c5834e;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge--ios {
|
2026-05-13 14:57:52 +08:00
|
|
|
background: #383838;
|
|
|
|
|
border: 1px solid #141414;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge__icon {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge__icon-frame {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 44px;
|
|
|
|
|
height: 44px;
|
|
|
|
|
background: #151515;
|
|
|
|
|
border-radius: 12px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge__apple-icon {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: block;
|
|
|
|
|
width: 22px;
|
|
|
|
|
height: 27px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-15 12:11:50 +08:00
|
|
|
.store-badge--android .store-badge__icon-frame {
|
|
|
|
|
background: #d55f31;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge__android-icon {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 28px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-13 11:48:22 +08:00
|
|
|
.store-badge__copy {
|
2026-05-13 14:57:52 +08:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: 3px;
|
|
|
|
|
overflow: clip;
|
|
|
|
|
white-space: nowrap;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge__platform {
|
2026-05-13 14:57:52 +08:00
|
|
|
margin: 0;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
letter-spacing: 0.05px;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge--android .store-badge__platform {
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #ffd6bc;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge--ios .store-badge__platform {
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #ccc;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badge__label {
|
2026-05-13 14:57:52 +08:00
|
|
|
margin: 0;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: normal;
|
2026-05-15 12:11:50 +08:00
|
|
|
letter-spacing: var(--ls-15);
|
2026-05-13 14:57:52 +08:00
|
|
|
color: #fff;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__phone {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: relative;
|
2026-05-14 17:58:14 +08:00
|
|
|
display: block;
|
|
|
|
|
order: 1;
|
2026-05-13 14:57:52 +08:00
|
|
|
flex-shrink: 0;
|
2026-05-14 17:58:14 +08:00
|
|
|
width: min(418px, calc(100vw - 32px));
|
|
|
|
|
aspect-ratio: 418 / 510;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__phone-crop {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
pointer-events: none;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__phone-image {
|
2026-05-13 14:57:52 +08:00
|
|
|
position: absolute;
|
|
|
|
|
top: -18.05%;
|
|
|
|
|
left: 3.8%;
|
|
|
|
|
width: 92.43%;
|
|
|
|
|
max-width: none;
|
|
|
|
|
height: 136.1%;
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-14 17:58:14 +08:00
|
|
|
@media (max-width: 397px) {
|
|
|
|
|
.download-cta__heading {
|
|
|
|
|
--download-heading-title-size: clamp(24px, 8vw, 32px);
|
|
|
|
|
gap: clamp(8px, 2.5vw, 12px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__title {
|
|
|
|
|
line-height: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 569px) {
|
|
|
|
|
.store-badge {
|
|
|
|
|
width: min(100%, calc(100vw - 32px));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
@media (min-width: 570px) {
|
2026-05-14 17:58:14 +08:00
|
|
|
.download-cta__heading {
|
|
|
|
|
--download-heading-title-size: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-15 12:11:50 +08:00
|
|
|
.download-cta__title {
|
|
|
|
|
letter-spacing: var(--ls-40);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-14 17:58:14 +08:00
|
|
|
.download-cta__description {
|
|
|
|
|
font-size: 18px;
|
2026-05-15 12:11:50 +08:00
|
|
|
letter-spacing: var(--ls-18);
|
2026-05-14 17:58:14 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
.store-badges {
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex-wrap: wrap;
|
2026-05-14 17:58:14 +08:00
|
|
|
justify-content: center;
|
2026-05-13 14:57:52 +08:00
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|
|
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
@media (min-width: 1023px) {
|
|
|
|
|
.download-cta {
|
|
|
|
|
height: 600px;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
.download-cta__inner {
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
gap: 0;
|
|
|
|
|
padding: 0 24px;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
|
2026-05-14 17:58:14 +08:00
|
|
|
.download-cta__content {
|
|
|
|
|
order: 1;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__copy {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__description {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.store-badges {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.download-cta__heading {
|
|
|
|
|
--download-heading-title-size: 48px;
|
2026-05-13 14:57:52 +08:00
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
|
2026-05-15 12:11:50 +08:00
|
|
|
.download-cta__title {
|
|
|
|
|
letter-spacing: var(--ls-48);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-13 14:57:52 +08:00
|
|
|
.download-cta__phone {
|
2026-05-14 17:58:14 +08:00
|
|
|
order: 2;
|
|
|
|
|
width: 418px;
|
2026-05-13 14:57:52 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (min-width: 1280px) {
|
|
|
|
|
.download-cta__inner {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2026-05-13 11:48:22 +08:00
|
|
|
}
|