fenghuo/apps/web/components/content/jcdt/page.tsx

38 lines
1005 B
TypeScript
Raw Normal View History

2025-06-11 09:55:47 +08:00
import JcdtList from './jcdtlist';
import FhjtPage from './fhjt';
import FhwsPage from './fhws';
import BqrxPage from './bqrx';
2025-06-11 13:19:09 +08:00
import Integrated from '../integ/Integrated';
2025-06-09 21:40:05 +08:00
const JcdtContainer = () => {
return (
<>
2025-06-11 09:55:47 +08:00
<div className="w-full h-[60px] ml-1 relative">
<p
className="text-center absolute right-0 "
style={{ color: '#005d93', fontSize: '32px', fontWeight: 'bold', marginRight: '255px' }}
>
</p>
<div
className="bg-[#0082e9] w-[1514px] h-[60px] flex justify-center items-center"
style={{
clipPath: 'polygon(0 0, calc(100% - 150px)1%, calc(100% - 30px) 100%, 0 100%)',
}}
></div>
</div>
<div
2025-06-11 09:55:47 +08:00
className="bg-cover bg-center w-[1920px] h-[6000px] ml-1 pt-10"
style={{ backgroundImage: 'url(/jcdt.png)' ,backgroundSize: '100% 100%', backgroundRepeat: 'no-repeat'}}
>
2025-06-11 09:55:47 +08:00
<JcdtList />
<FhjtPage />
<FhwsPage />
<BqrxPage />
2025-06-11 13:19:09 +08:00
<Integrated />
</div>
</>
2025-06-11 09:55:47 +08:00
);
2025-06-09 21:40:05 +08:00
};
export default JcdtContainer;