41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
import { CarouselDemo } from "@/components/Carousel";
|
|
import {FireNewsList} from "./FireNewsList";
|
|
|
|
|
|
export function FhrxPage() {
|
|
return(
|
|
<div className=" w-full overflow-hidden flex justify-center h-200 mb-10">
|
|
<div className="relative">
|
|
{/* 轮播背景图 */}
|
|
<div className="w-200 absolute" style={{clipPath: 'polygon(0 0, calc(100% - 150px)-0.9%, calc(100% - 30px) 100%, 0 100%)',}}>
|
|
<CarouselDemo />
|
|
</div>
|
|
<div className='w-200 bg-white h-full'></div>
|
|
</div>
|
|
|
|
<div className="w-100 h-full bg-white relative">
|
|
{/* 标题部分 */}
|
|
<div className="relative pt-6 pr-8">
|
|
<h2 className="text-right text-4xl font-bold text-[#005d93] mb-2">烽火热线</h2>
|
|
{/* 蓝色装饰线 */}
|
|
<div className="h-3 bg-[#005d93]"></div>
|
|
</div>
|
|
{/* 列表 */}
|
|
<div className="mt-4 pr-8">
|
|
|
|
<div className="mb-5 justify-end flex">
|
|
信箱
|
|
</div>
|
|
|
|
<div className="mb-5 justify-end flex">
|
|
问答
|
|
</div>
|
|
|
|
<div className="mb-5 justify-end flex">
|
|
心灵
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |