Index.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. <template>
  2. <div id="jtaq">
  3. <div class="panel-left" :class="{ 'is-hide': aside_hide }">
  4. <div class="pl-b1">
  5. <span class="title1-left">船舶信息</span>
  6. <div class="plb1-part1">
  7. <img :src="require('@/assets/imgs/page_jtaq/icon-cbxx.png')" alt="">
  8. <div>
  9. <span>当前在港船舶总数</span>
  10. <div>
  11. <span>{{ data_cbxx.total }}</span>
  12. <span>艘次</span>
  13. </div>
  14. </div>
  15. </div>
  16. <ul class="plb1-part2">
  17. <li v-for="item in data_cbxx.cata" :class="{ 'clickable': item.name === '重点追踪船舶' }" @click="showBoatList(item)">
  18. <span>{{ item.name }}</span>
  19. <span>{{ item.value }}</span>
  20. <span>艘</span>
  21. <div>
  22. <span>{{ cbxxPercent(item.value) }}</span>
  23. <span>%</span>
  24. </div>
  25. <span>占比</span>
  26. </li>
  27. </ul>
  28. </div>
  29. <KeyBoatList :list-data="keyBoatList.value" :list-title="'重点追踪船舶列表'" v-if="boatListShow"
  30. @closeBoatList="boatListShow = false" />
  31. <div class="pl-b2">
  32. <span class="title2-left">船舶航行预测</span>
  33. <div class="plb2-row1">
  34. <span>上海市河港</span><span>{{ data_cbxx.riverCount }}</span><span>艘</span>
  35. </div>
  36. <ul class="plb2-main">
  37. <li v-for="item in listData_cbhxyc.value">
  38. <span>{{ item.dist }}</span>
  39. <span>{{ item.value }}</span>
  40. <span>艘</span>
  41. </li>
  42. </ul>
  43. </div>
  44. <div class="pl-b3">
  45. <span class="title2-left">船舶功能分类</span>
  46. <div id="chart-cbgn"></div>
  47. </div>
  48. <div class="pl-b4">
  49. <span class="title2-left">船舶航行状态</span>
  50. <div v-for="item in data_cbhxzt.value" class="plb4-item">
  51. <img :src="item.iconUrl" alt="">
  52. <div>
  53. <span>{{ item.title }}</span>
  54. <div>
  55. <span>{{ item.value }}</span>
  56. <span>艘</span>
  57. <span>{{ hxztPercent(item.value) }}</span>
  58. <span>%</span>
  59. <span>占比</span>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>
  65. <div class="panel-right" :class="{ 'is-hide': aside_hide }">
  66. <div class="pr-b1 pr">
  67. <span class="title1-right">运行态势</span>
  68. <span class="title2-right">安全通航信息</span>
  69. <el-carousel
  70. trigger="click"
  71. height="23vh"
  72. class="prb1-main"
  73. indicator-position="outside"
  74. arrow="never"
  75. :autoplay="!aqthPopupShow"
  76. >
  77. <el-carousel-item v-for="page in listData_aqthxx_len" :key="page">
  78. <div v-for="item,index in listData_aqthxx.value.slice((page-1)*2, (page-1)*2+2)" class="prb1-item" @click="showAqthPopup(index+(page-1)*2)">
  79. <span class="title3" :class="{'highlight':item.abstract[1]===aqthPopupData.value.code&&aqthPopupShow}">{{ item.title }}</span>
  80. <span v-for="item2 in item.abstract"> {{ item2 }}</span>
  81. </div>
  82. </el-carousel-item>
  83. </el-carousel>
  84. <div class="popup-aqth" v-if="aqthPopupShow">
  85. <i class="btn-close" @click="handleCloseAqthPopup"></i>
  86. <div class="title-dialog">{{ aqthPopupData.value.title }}</div>
  87. <p>{{ aqthPopupData.value.des }}</p>
  88. </div>
  89. </div>
  90. <div class="pr-b2 pr">
  91. <span class="title2-right">通航流量监测</span>
  92. <span class="title3">分时段流量统计</span>
  93. <div id="chart_fsdll"></div>
  94. <span class="title3">分航向流量统计</span>
  95. <div class="prb2-item" v-for="item in data_fhxll.value">
  96. <div>
  97. <img :src="require('@/assets/imgs/page_jtaq/icon-zhandian.png')" alt="">
  98. <span>{{ item.from }}</span>
  99. <i></i>
  100. <span>{{ item.to }}</span>
  101. </div>
  102. <div>
  103. <span>分航向流量统计</span>
  104. <span>{{ item.value }}</span>
  105. <span>艘次</span>
  106. </div>
  107. </div>
  108. </div>
  109. </div>
  110. </div>
  111. </template>
  112. <script>
  113. export default {
  114. name: 'JtaqHome',
  115. }
  116. </script>
  117. <script setup>
  118. import { onMounted, reactive, computed, ref } from 'vue';
  119. import { setCbgn, setFsdll } from '@/echarts/options'
  120. import { ElCarousel, ElCarouselItem } from 'element-plus'
  121. import 'element-plus/es/components/carousel/style/css'
  122. import 'element-plus/es/components/carousel-item/style/css'
  123. import { GetThlljc, GetCbxx, GetThllByHour, GetKeyBoats } from '../../apis/jtaq'
  124. import KeyBoatList from './cpns/KeyBoatList.vue'
  125. import { asideShow } from '@/store/index'
  126. const aside_hide = asideShow().isHide
  127. onMounted(() => {
  128. getData()
  129. setCbgn(document.getElementById('chart-cbgn'), chartData_cbgnfl.value)
  130. setFsdll(document.getElementById('chart_fsdll'), chartData_fsdll.value)
  131. })
  132. function getData() {
  133. getData_thlljc()
  134. getData_cbxx()
  135. }
  136. function getData_cbxx() {
  137. GetCbxx().then(res => {
  138. listData_cbhxyc.value.forEach(i => {
  139. i.value = res.data.district[i.dist]
  140. })
  141. data_cbxx.total = res.data.inport
  142. data_cbxx.riverCount = res.data.inRiverShipTotal
  143. data_cbxx.cata.forEach(i => {
  144. i.value = res.data[i.fieldName]
  145. })
  146. data_cbhxzt.value.forEach(i => {
  147. i.value = res.data[i.fieldName]
  148. })
  149. let boatTypeArr = []
  150. for (let key in res.data.boatType) {
  151. boatTypeArr.push({name: key, value: res.data.boatType[key]})
  152. }
  153. boatTypeArr = boatTypeArr.sort((a,b) => b.value - a.value)
  154. chartData_cbgnfl.value = [
  155. ...boatTypeArr.slice(0,4),
  156. { name: '其它', value: boatTypeArr.slice(4).reduce((sum, i) => sum + i.value, 0)}
  157. ]
  158. setCbgn(document.getElementById('chart-cbgn'), chartData_cbgnfl.value)
  159. })
  160. }
  161. const data_cbxx = reactive({
  162. total: 0,
  163. riverCount: 0,
  164. cata: [
  165. { name: '重点追踪船舶', value: 0, fieldName: 'keyBoat' },
  166. { name: '载运危货船舶', value: 0, fieldName: 'dangerBoat' }
  167. ]
  168. })
  169. function cbxxPercent(value) {
  170. if(!value||value===0) {
  171. return '-'
  172. }
  173. return (value / data_cbxx.total *100).toFixed(2)
  174. }
  175. const listData_cbhxyc = reactive({value: [
  176. { dist: '奉贤', value: 0 },
  177. { dist: '金山', value: 0 },
  178. { dist: '松江', value: 0 },
  179. { dist: '嘉定', value: 0 },
  180. { dist: '闵行', value: 0 },
  181. { dist: '青浦', value: 0 },
  182. { dist: '宝山', value: 0 },
  183. { dist: '崇明', value: 0 },
  184. { dist: '浦东', value: 0 }
  185. ]})
  186. const data_cbhxzt = reactive({value: [
  187. { title: '航行中船舶', value: 0, iconUrl: require('@/assets/imgs/page_jtaq/icon-cb-hxz.png'), fieldName: 'runningBoatCount'},
  188. { title: '靠泊中船舶', value: 0, iconUrl: require('@/assets/imgs/page_jtaq/icon-cb-kbz.png'), fieldName: 'stopBoatCount'}
  189. ]})
  190. function hxztPercent(value) {
  191. const sum = data_cbhxzt.value.reduce((total,i) => i.value+total, 0)
  192. if(sum===0||!value) {
  193. return '-'
  194. }
  195. return Math.round(value / sum *100)
  196. }
  197. const chartData_cbgnfl = reactive({value:[
  198. { name: '--', value: 0 },
  199. { name: '--', value: 0 },
  200. { name: '--', value: 0 },
  201. { name: '--', value: 0 },
  202. { name: '--', value: 0 }
  203. ]})
  204. const listData_aqthxx = reactive({value:[
  205. {
  206. title: '水域测量作业',
  207. abstract: [
  208. '2024年4月25日至2024年4月27日,06:00至18:00',
  209. '沪航通〔2024〕0319号'
  210. ],
  211. des: '作业时间:2024年4月25日至2024年4月27日,06:00至18:00。\n'+
  212. '作业地点:上海国际航运中心洋山深水港区尚东分公司码头前沿100米范围内水域。\n'+
  213. '作业方式:东海航海保障中心负责。作业船“海测1”在作业水域开展水深测量。\n'+
  214. '注意事项:1.作业船舶应在明显易见处昼夜显示规定的号灯号型,保持AIS正常开启;\n' +
  215. '2.作业船加强VHF13频道值守、瞭望和动态通报,做好警戒;\n' +
  216. '3.船舶航经作业水域时,谨慎驾驶,注意避让;\n' +
  217. '4.风力大于7级或能见度小于1海里时,应暂停作业。'
  218. },
  219. {
  220. title: '浮筒吊装作业',
  221. abstract: [
  222. '2024年04月25日至2024年05月30日,08:00-18:00时',
  223. '沪航通〔2024〕0314号'
  224. ],
  225. des: '作业时间:2024年04月25日至2024年05月30日,08:00-18:00时。\n' +
  226. '作业地点:青草沙水库下游闸口外侧前沿长约500米、宽约200水域范围。\n' +
  227. '作业方式:浮筒采用机动艇拖运至青草沙水库下游闸口内侧,再使用汽车吊吊运跨过大堤,使用机动艇拖运至宽阔水域后,用起重船吊装至等待在闸口外的平板驳船上,运至加工厂进行维护施工,维护完成后采用同样的方法运回至水库指定位置安装。\n' +
  228. '注意事项:1.作业船舶应在显明易见处悬挂作业信号,并在锚缆入水处设浮标并显示标志,不作业时松缆入江底;\n'+
  229. '2.作业船应加强值班、了望和高频守听;\n'+
  230. '3.航行船舶应距最远锚位50米外缓速通过;\n'+
  231. '4.如遇实际风力大于7级或视程小于1000米停止作业。'
  232. },
  233. {
  234. title: '码头疏浚作业',
  235. abstract: [
  236. '2024年04月25日至2024年05月16日',
  237. '沪航通〔2024〕0317 号'
  238. ],
  239. des: '作业时间:2024年04月25日至2024年05月16日,日夜作业。\n' +
  240. '作业地点:上海黄浦江上游浦西侧上粮七库码头前沿顺岸长约73米、自码头前沿向江中宽约40米的范围内水域。\n' +
  241. '作业方式:作业船“全通浚401”(船长39.5米、船宽13.5米)在码头前沿顺岸布置,艏抛八字开锚、艉抛交叉八字锚,锚缆长约20米,艏艉锚位间距约80米,最远锚位距码头前沿约50米,自上游向下游、自岸边向江中依次进行挖泥作业。疏浚土由“全通1501、全通801”运至主管部门指定的倾倒区抛弃。作业船“全通浚601”根据需要进场进行挖泥作业。\n' +
  242. '注意事项:1.作业船按规定悬挂号灯号型,锚缆入水方向白天显示明显标志、夜间灯光照射,保持AIS正常开启。不作业时,松锚缆入江底;\n' +
  243. '2.作业船加强VHF06频道守听和动态通报,加强与航经船舶联络;\n' +
  244. '3.船舶航经作业水域时,谨慎驾驶,注意避让;\n' +
  245. '4.本次施工作业码头前沿顺岸长73米、自码头前沿向江中宽40米的水域为本次疏浚作业的安全作业区,使用至作业结束,期间无关船舶不得进入;\n' +
  246. '5.风力大于6级或能见度小于500米时,应暂停作业。'
  247. },
  248. {
  249. title: '码头综合修复工程施工',
  250. abstract: [
  251. '2024年04月25日至2024年06月23日,日夜作业',
  252. '沪航通〔2024〕0316号'
  253. ],
  254. des: '作业时间:2024年04月25日至2024年06月23日,日夜作业。\n'+
  255. '作业地点:上海黄浦江上游浦西侧吴泾热电厂出灰码头前沿顺岸长约112m、自码头前沿向江中宽约10m的范围内水域。\n'+
  256. '作业方式:本次施工采用无船舶参与的作业方式。主要利用汽车吊、振动锤、绳锯等设备对码头的裂缝、面板及梁系破损、靠船钢护桩、桩基损坏等进行修复。施工所用材料通过陆上运输至码头。\n'+
  257. '注意事项:1.作业水域按规定悬挂必要的警示标志,夜间保持必要的灯光照射;\n'+
  258. '2.施工单位落实指定人员加强作业水域的现场管理,防范无关船舶停靠;\n'+
  259. '3.船舶航经作业水域时,谨慎驾驶,注意避让;\n'+
  260. '4.本次施工作业码头前沿顺岸长112米、自码头前沿向江中宽10米的水域为本次施工的安全作业区,使用至施工结束,期间无关船舶不得进入;\n'+
  261. '5.风力大于6级或能见度小于500米时,应暂停施工。'
  262. },
  263. ]})
  264. const listData_aqthxx_len = computed(() => {
  265. return Math.ceil(listData_aqthxx.value.length/2)
  266. })
  267. const aqthPopupShow = ref(false)
  268. const aqthPopupData = reactive({value: {}})
  269. function showAqthPopup(index) {
  270. aqthPopupShow.value = true
  271. aqthPopupData.value = {...listData_aqthxx.value[index], code:listData_aqthxx.value[index].abstract[1]}
  272. }
  273. function handleCloseAqthPopup() {
  274. aqthPopupShow.value = false
  275. }
  276. function getData_thlljc() {
  277. GetThlljc().then(res => {
  278. chartData_fsdll.value = res.data.boatCountList
  279. let listTemp = JSON.parse(JSON.stringify(res.data.boatCountList))
  280. listTemp.forEach(i => {
  281. i.GPSTIME = i.GPSTIME.slice(-2)
  282. })
  283. let chartFsdll = setFsdll(document.getElementById('chart_fsdll'), listTemp)
  284. let lastIndex = res.data.boatCountList.length-1
  285. chartFsdll.dispatchAction({
  286. type: 'select',
  287. seriesIndex: 0,
  288. dataIndex: lastIndex,
  289. })
  290. getData_fhxll(res.data.boatCountList[lastIndex].GPSTIME)
  291. chartFsdll.getZr().on('click', (params)=> {
  292. const pointInPixel = [params.offsetX, params.offsetY]
  293. if (chartFsdll.containPixel('grid', pointInPixel)) {
  294. let dataIndex = chartFsdll.convertFromPixel({ seriesIndex: 0 }, pointInPixel)[0]
  295. chartFsdll.dispatchAction({
  296. type: 'select',
  297. seriesIndex: 0,
  298. dataIndex: dataIndex,
  299. })
  300. getData_fhxll(chartData_fsdll.value[dataIndex].GPSTIME)
  301. }
  302. })
  303. })
  304. }
  305. function getData_fhxll(time) {
  306. GetThllByHour(time+':00:00').then(res => {
  307. data_fhxll.value.forEach(i => {
  308. i.value = res.data[i.fieldName]
  309. })
  310. })
  311. }
  312. const chartData_fsdll = reactive({value: [
  313. { GPSTIME: '00', NUM: 0 },
  314. { GPSTIME: '06', NUM: 0 },
  315. { GPSTIME: '12', NUM: 0 },
  316. { GPSTIME: '18', NUM: 0 }
  317. ]})
  318. const data_fhxll = reactive({value: [
  319. { from: '黄浦江上游', to: '黄浦江下游', value: 0, fieldName: 'down' },
  320. { from: '黄浦江下游', to: '黄浦江上游', value: 0, fieldName: 'up' },
  321. ]})
  322. const boatListShow = ref(false)
  323. const keyBoatList = reactive({value: []})
  324. function showBoatList(item) {
  325. // console.log(item)
  326. if(item.fieldName==="keyBoat") {
  327. if(keyBoatList.value.length!==0) {
  328. boatListShow.value = true
  329. return
  330. }
  331. GetKeyBoats().then(res => {
  332. keyBoatList.value = res.data.Rows || []
  333. boatListShow.value = true
  334. })
  335. }
  336. }
  337. </script>
  338. <style lang="scss" scoped>
  339. #jtaq {
  340. .panel-left, .panel-right {
  341. box-sizing: border-box;
  342. position: absolute;
  343. top: 105px;
  344. width: 380px;
  345. height: calc(100vh - 105px);
  346. text-align: left;
  347. display: flex;
  348. flex-direction: column;
  349. justify-content: space-between;
  350. transition: all 0.5s ease;
  351. }
  352. .panel-left {
  353. left: 0;
  354. padding: 0 30px 30px;
  355. &.is-hide {
  356. left: -380px;
  357. }
  358. }
  359. .panel-right {
  360. right: 0;
  361. padding: 0 30px 30px;
  362. &.is-hide {
  363. right: -380px;
  364. }
  365. .pr {
  366. display: flex;
  367. flex-direction: column;
  368. align-items: flex-end;
  369. }
  370. }
  371. .pl-b1 {
  372. .plb1-part1 {
  373. display: flex;
  374. align-items: center;
  375. margin: 0 0 15px 10px;
  376. &>img {
  377. width: 100px;
  378. height: 71px;
  379. }
  380. &>div {
  381. display: flex;
  382. flex-direction: column;
  383. &>span {
  384. font-size: 16px;
  385. color: #FFFFFF;
  386. }
  387. &>div {
  388. margin-top: 3px;
  389. span:nth-child(1) {
  390. width: 57px;
  391. height: 21px;
  392. font-size: 28px;
  393. font-family: BarlowBold;
  394. color: transparent;
  395. background: linear-gradient(180deg, rgba(224,244,255,0.9) 0%, rgba(89,102,128,0.9) 100%);
  396. -webkit-background-clip: text;
  397. letter-spacing: 2px;
  398. }
  399. span:nth-child(2) {
  400. margin-left: 6px;
  401. font-size: 13px;
  402. color: rgba($color: #fff, $alpha: 0.6);
  403. }
  404. }
  405. }
  406. }
  407. .plb1-part2 {
  408. margin-left: 10px;
  409. li {
  410. &.clickable {
  411. cursor: pointer;
  412. }
  413. display: flex;
  414. align-items: flex-end;
  415. margin-bottom: 20px;
  416. &>span:nth-child(1) {
  417. font-size: 16px;
  418. color: #eee;
  419. font-weight: bold;
  420. }
  421. &>span:nth-child(2), &>div>span:nth-child(1) {
  422. display: inline-block;
  423. font-size: 22px;
  424. font-family: BarlowBold;
  425. color: #00EAFF;
  426. line-height: 22px;
  427. }
  428. &>span:nth-child(2) {
  429. width: 50px;
  430. margin: 0 5px;
  431. text-align: center;
  432. }
  433. &>span:nth-child(3), &>span:nth-child(5){
  434. font-size: 15px;
  435. color: #eee;
  436. }
  437. &>div {
  438. display: flex;
  439. align-items: flex-end;
  440. width: 60px;
  441. margin-left: 15px;
  442. &>span:nth-child(2) {
  443. font-size: 16px;
  444. font-family: BarlowBold;
  445. color: #00EAFF;
  446. line-height: 14px;
  447. }
  448. }
  449. }
  450. }
  451. }
  452. .boat-dock-list {
  453. left: 360px;
  454. width: 350px;
  455. height: 600px;
  456. }
  457. .pl-b2 {
  458. .plb2-row1 {
  459. display: flex;
  460. justify-content: space-between;
  461. align-items: center;
  462. padding: 0 40px 0 10px;
  463. &>span:not(:nth-child(2)) {
  464. font-size: 16px;
  465. font-weight: bold;
  466. font-style: italic;
  467. color: transparent;
  468. text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
  469. background: linear-gradient(0deg, #6FC2FF 0%, #CCDAE6 35%, #FFFFFF 60%);
  470. -webkit-background-clip: text;
  471. padding-right: 10px;
  472. }
  473. span:nth-child(2) {
  474. flex: 1;
  475. padding-right: 10px;
  476. text-align: right;
  477. font-size: 20px;
  478. font-weight: bold;
  479. color: transparent;
  480. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(175, 231, 255, 0.8) 80%, rgba(0,179,255,0.8) 100%);
  481. -webkit-background-clip: text;
  482. }
  483. }
  484. .plb2-main {
  485. width: 90%;
  486. display: flex;
  487. justify-content: space-between;
  488. flex-wrap: wrap;
  489. &>li {
  490. width: 91px;
  491. height: 25px;
  492. margin: 15px 0;
  493. display: flex;
  494. justify-content: center;
  495. align-items: flex-end;
  496. background: url('@/assets/imgs/page_jtaq/bg-cbyc.png') no-repeat;
  497. background-size: 100% 100%;
  498. span {
  499. margin-bottom: 8px;
  500. font-size: 16px;
  501. font-weight: 600;
  502. color: transparent;
  503. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(175, 231, 255, 0.8) 80%, rgba(0,179,255,0.8) 100%);
  504. text-shadow: 0 6px 0 rgba(175, 231, 255, 0.2);
  505. -webkit-background-clip: text;
  506. line-height: 14px;
  507. }
  508. span:nth-child(2) {
  509. margin: 0 4px 7px;
  510. font-family: BarlowBold;
  511. font-size: 24px;
  512. line-height: 24px;
  513. }
  514. }
  515. }
  516. }
  517. .pl-b3 {
  518. #chart-cbgn {
  519. height: 18vh;
  520. width: 90%;
  521. }
  522. }
  523. .pl-b4 {
  524. .plb4-item {
  525. display: flex;
  526. align-items: center;
  527. margin: 10px 0;
  528. &>img {
  529. width: 85px;
  530. height: 85px;
  531. }
  532. &>div {
  533. box-sizing: border-box;
  534. width: 200px;
  535. height: 66px;
  536. padding-left: 15px;
  537. transform: translateX(-10px);
  538. display: flex;
  539. flex-direction: column;
  540. justify-content: center;
  541. background: url('@/assets/imgs/page_jtaq/bg-hxzt.png') no-repeat;
  542. background-size: 100% 100%;
  543. &>span {
  544. font-size: 16px;
  545. font-weight: bold;
  546. font-style: italic;
  547. color: transparent;
  548. text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
  549. background: linear-gradient(0deg, #6FC2FF 0%, #CCDAE6 35%, #FFFFFF 60%);
  550. -webkit-background-clip: text;
  551. }
  552. &>div {
  553. display: flex;
  554. align-items: flex-end;
  555. margin-top: 5px;
  556. span:nth-child(1), span:nth-child(3), span:nth-child(4) {
  557. padding-right: 3px;
  558. font-size: 22px;
  559. line-height: 22px;
  560. font-family: YSBTH;
  561. font-weight: 400;
  562. font-style: italic;
  563. color: transparent;
  564. text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
  565. background: linear-gradient(-1deg, #9EC7FF 0%, #DCEBFF 40%, #FFFFFF 100%);
  566. -webkit-background-clip: text;
  567. }
  568. span:nth-child(2), span:nth-child(5) {
  569. margin: 0 5px;
  570. font-size: 16px;
  571. line-height: 22px;
  572. color: #FFFFFF;
  573. }
  574. span:nth-child(4) {
  575. font-size: 16px;
  576. line-height: 20px;
  577. }
  578. }
  579. }
  580. }
  581. }
  582. .pr-b1 {
  583. position: relative;
  584. .prb1-main {
  585. width: 82%;
  586. .prb1-item {
  587. margin: 15px 0;
  588. cursor: pointer;
  589. &>span:not(:first-child) {
  590. position: relative;
  591. display: block;
  592. padding-left: 26px;
  593. height: 21px;
  594. margin: 10px 0;
  595. font-size: 16px;
  596. font-family: BarlowBold;
  597. color: rgba($color: #fff, $alpha: 0.8);
  598. overflow: hidden;
  599. white-space: nowrap;
  600. text-overflow: ellipsis;
  601. &::before {
  602. content: '';
  603. position: absolute;
  604. top: 0;
  605. left: 0;
  606. display: inline-block;
  607. width: 21px;
  608. height: 21px;
  609. background: url('@/assets/imgs/page_jtaq/icon-aqth.png') no-repeat;
  610. background-size: 100% 100%;
  611. }
  612. }
  613. .highlight {
  614. color: #FFE874;
  615. }
  616. }
  617. :deep(.el-carousel__indicator--horizontal) {
  618. margin: 0 4px;
  619. }
  620. :deep(.el-carousel__indicator button) {
  621. width: 5px;
  622. height: 5px;
  623. border-radius: 50%;
  624. }
  625. }
  626. .popup-aqth {
  627. position: absolute;
  628. box-sizing: border-box;
  629. padding: 20px 10px 20px 20px;
  630. top: 5vh;
  631. left: -320px;
  632. width: 320px;
  633. height: 364px;
  634. background: url('@/assets/imgs/page_jtaq/bg-popup.png') no-repeat;
  635. background-size: 100% 100%;
  636. .btn-close {
  637. position: absolute;
  638. right: 18px;
  639. top: 15px;
  640. display: block;
  641. width: 12px;
  642. height: 12px;
  643. padding: 4px;
  644. background: url('@/assets/imgs/common/btn-close.png') no-repeat;
  645. background-size: 12px 12px;
  646. background-position: center;
  647. cursor: pointer;
  648. }
  649. p:nth-child(3) {
  650. height: calc(100% - 34px);
  651. padding-right: 10px;
  652. margin-top: 10px;
  653. overflow-y: auto;
  654. font-size: 16px;
  655. color: #eee;
  656. line-height: 22px;
  657. white-space: pre-wrap;
  658. }
  659. }
  660. }
  661. .pr-b2 {
  662. #chart_fsdll {
  663. width: 92%;
  664. height: 16vh;
  665. margin: 5px 0 10px;
  666. }
  667. .title2-right {
  668. margin-bottom: 25px;
  669. }
  670. .prb2-item {
  671. margin: 16px 0;
  672. display: flex;
  673. flex-direction: column;
  674. align-items: center;
  675. &>div {
  676. display: flex;
  677. }
  678. &>div:first-child {
  679. align-items: center;
  680. width: fit-content;
  681. height: 32px;
  682. margin-bottom: 20px;
  683. padding-right: 14px;
  684. background: url('@/assets/imgs/page_jtaq/bg-fhx-1.png');
  685. background-size: 100% 100%;
  686. &>img {
  687. width: 47px;
  688. height: 51px;
  689. margin-right: 5px;
  690. }
  691. &>i {
  692. display: inline-block;
  693. width: 51px;
  694. height: 19px;
  695. margin: 0 6px 0 10px;
  696. background: url('@/assets/imgs/page_jtaq/icon-arrow.png') repeat-x;
  697. background-size: 17px 19px;
  698. }
  699. &>span {
  700. font-size: 16px;
  701. font-weight: bold;
  702. font-style: italic;
  703. color: #FFFFFF;
  704. }
  705. }
  706. &>div:last-child {
  707. box-sizing: border-box;
  708. justify-content: center;
  709. align-items: flex-end;
  710. width: 290px;
  711. height: 34px;
  712. padding-bottom: 13px;
  713. background: url('@/assets/imgs/page_jtaq/bg-fhx-2.png');
  714. background-size: 100% 100%;
  715. span:nth-child(1), span:nth-child(3) {
  716. font-size: 16px;
  717. color: #FFFFFF;
  718. }
  719. span:nth-child(2) {
  720. margin: 0 13px;
  721. font-size: 32px;
  722. font-family: BarlowBold;
  723. color: transparent;
  724. line-height: 32px;
  725. background: linear-gradient(0deg, rgba(148, 239, 255, 1) 0%, rgba(85, 226, 255, 1) 100%);
  726. -webkit-background-clip: text;
  727. }
  728. }
  729. }
  730. }
  731. }
  732. </style>