|
@@ -15,31 +15,31 @@ export const Component = createUIComp({
|
|
|
<div class={cx(rootStyles, "overflow-hidden")}>
|
|
|
<div class="bg flex flex-col"></div>
|
|
|
<div class="relative z-1 overflow-hidden">
|
|
|
- <div class="mt-0.4rem h-1.2rem text-30px text-center text_main">
|
|
|
+ <div class="mt-20px h-60px text-30px text-center text_main">
|
|
|
<Text.Component compId={children.title} />
|
|
|
</div>
|
|
|
- <div class="h-10.22rem mt-10px flex flex-1">
|
|
|
- <div class="ml-0.64rem">
|
|
|
+ <div class="h-511px mt-10px flex flex-1">
|
|
|
+ <div class="ml-32px">
|
|
|
<Image.Component
|
|
|
compId={children.img1}
|
|
|
- class="w-4.5rem h-10.22rem object-cover"
|
|
|
+ class="w-22.5px h-511px object-cover"
|
|
|
/>
|
|
|
</div>
|
|
|
- <div class="ml-0.3rem flex flex-col justify-between">
|
|
|
+ <div class="ml-15px flex flex-col justify-between">
|
|
|
<Image.Component
|
|
|
compId={children.img2}
|
|
|
- class="w-1.67rem h-3.06rem object-cover"
|
|
|
+ class="w-83.5px h-153px object-cover"
|
|
|
/>
|
|
|
<Image.Component
|
|
|
compId={children.img3}
|
|
|
- class="w-1.67rem h-2.08rem object-cover"
|
|
|
+ class="w-83.5px h-104px object-cover"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="absolute top-5rem right-1.1rem text-stroke-dark-900 z-2">
|
|
|
+ <div class="absolute top-250px right-55px text-stroke-dark-900 z-2">
|
|
|
<Text.Component compId={children.text1} />
|
|
|
- <Text.Component class="mt-1rem text-right" compId={children.text2} />
|
|
|
+ <Text.Component class="mt-50px text-right" compId={children.text2} />
|
|
|
<div class="line"></div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -52,13 +52,13 @@ const rootStyles = css`
|
|
|
position: absolute;
|
|
|
width: 100%;
|
|
|
z-index: 0;
|
|
|
- height: 9.28rem;
|
|
|
+ height: 464px;
|
|
|
background-image: linear-gradient(to right, #000 59%, #fff 59%);
|
|
|
}
|
|
|
.text_main {
|
|
|
color: #fff;
|
|
|
background-image: linear-gradient(to right, #000 59%, #fff 59%);
|
|
|
- font-size: 0.8rem;
|
|
|
+ font-size: 40px;
|
|
|
span {
|
|
|
color: #fff;
|
|
|
mix-blend-mode: difference;
|
|
@@ -67,6 +67,6 @@ const rootStyles = css`
|
|
|
}
|
|
|
.line {
|
|
|
height: 1px;
|
|
|
- background: linear-gradient(to left, #000 1.2rem, #fff 1.2rem);
|
|
|
+ background: linear-gradient(to left, #000 60px, #fff 60px);
|
|
|
}
|
|
|
`;
|