2024-09-23 14:06:03 +08:00
|
|
|
|
import { Image } from "antd"
|
|
|
|
|
|
import zd from '../../../../assets/img/u7.png'
|
|
|
|
|
|
import title from '../../../../assets/img/titleRight.png'
|
2024-09-26 17:59:26 +08:00
|
|
|
|
import styles from './index.module.less'
|
2024-09-23 14:06:03 +08:00
|
|
|
|
|
|
|
|
|
|
const Page = () => {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div style={{ display: 'flex',height:'100%' }}>
|
2024-09-23 15:52:06 +08:00
|
|
|
|
<div style={{ backgroundColor: '#ffffff',width:390,height:'100%',marginRight:10,padding:10 }}>
|
2024-09-26 17:59:26 +08:00
|
|
|
|
<div className={styles.title}>
|
2024-09-23 14:06:03 +08:00
|
|
|
|
<Image src={title} />保护对象
|
|
|
|
|
|
</div>
|
2024-09-26 17:59:26 +08:00
|
|
|
|
<div className={styles.content}>
|
2024-09-23 14:06:03 +08:00
|
|
|
|
水库防洪标准按50年一遇设计,1000年一遇校核,设计洪水位111.51米,校核洪水位 112.75 米,水库担负着红安县城、七里坪、杏花、城关等城镇,以及京九铁路汉麻连络线、省道S234、国道G230,京九铁路汉麻联络线等交通设施安全的防洪重任、防洪保护人口32万
|
|
|
|
|
|
人,保护耕地 15 万亩。
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2024-09-23 15:52:06 +08:00
|
|
|
|
<div style={{ backgroundColor: '#ffffff',flex:1,padding:10}}>
|
2024-09-26 17:59:26 +08:00
|
|
|
|
<div className={styles.title}>
|
2024-09-23 14:06:03 +08:00
|
|
|
|
<Image src={title} />转移路线示意图
|
|
|
|
|
|
</div>
|
2024-09-26 17:59:26 +08:00
|
|
|
|
<div style={{display:'flex',justifyContent:'center'}}>
|
2024-09-23 14:06:03 +08:00
|
|
|
|
<Image src={zd} width='80%' preview={false} />
|
2024-09-26 17:59:26 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2024-09-23 14:06:03 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
export default Page
|