43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { CarouselDemo } from "@/components/Carousel";
|
|
import {FireNewsList} from "./FireNewsList";
|
|
|
|
|
|
export function LectureHall() {
|
|
return(
|
|
<div className="w-5/6 overflow-hidden flex justify-center h-148 mb-10 mx-auto">
|
|
<div className="relative left-0 top-0 w-full h-full">
|
|
{/* 轮播背景图 */}
|
|
<div className="w-full h-full absolute" style={{clipPath: 'polygon(0 0, calc(100% - 150px)-0.9%, calc(100% - 30px) 100%, 0 100%)',}}>
|
|
<CarouselDemo
|
|
paginationPosition="left"
|
|
paginationStyle="dot"
|
|
/>
|
|
</div>
|
|
<div className='top-0 right-0 bg-white h-full'></div>
|
|
</div>
|
|
<div className="w-120 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>
|
|
)
|
|
} |