123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777 |
- <template>
- <div id="jtaq">
- <div class="panel-left" :class="{ 'is-hide': aside_hide }">
- <div class="pl-b1">
- <span class="title1-left">船舶信息</span>
- <div class="plb1-part1">
- <img :src="require('@/assets/imgs/page_jtaq/icon-cbxx.png')" alt="">
- <div>
- <span>当前在港船舶总数</span>
- <div>
- <span>{{ data_cbxx.total }}</span>
- <span>艘次</span>
- </div>
- </div>
- </div>
- <ul class="plb1-part2">
- <li v-for="item in data_cbxx.cata" :class="{ 'clickable': item.name === '重点追踪船舶' }" @click="showBoatList(item)">
- <span>{{ item.name }}</span>
- <span>{{ item.value }}</span>
- <span>艘</span>
- <div>
- <span>{{ cbxxPercent(item.value) }}</span>
- <span>%</span>
- </div>
- <span>占比</span>
- </li>
- </ul>
- </div>
- <KeyBoatList :list-data="keyBoatList.value" :list-title="'重点追踪船舶列表'" v-if="boatListShow"
- @closeBoatList="boatListShow = false" />
- <div class="pl-b2">
- <span class="title2-left">船舶航行预测</span>
- <div class="plb2-row1">
- <span>上海市河港</span><span>{{ data_cbxx.riverCount }}</span><span>艘</span>
- </div>
- <ul class="plb2-main">
- <li v-for="item in listData_cbhxyc.value">
- <span>{{ item.dist }}</span>
- <span>{{ item.value }}</span>
- <span>艘</span>
- </li>
- </ul>
- </div>
- <div class="pl-b3">
- <span class="title2-left">船舶功能分类</span>
- <div id="chart-cbgn"></div>
- </div>
- <div class="pl-b4">
- <span class="title2-left">船舶航行状态</span>
- <div v-for="item in data_cbhxzt.value" class="plb4-item">
- <img :src="item.iconUrl" alt="">
- <div>
- <span>{{ item.title }}</span>
- <div>
- <span>{{ item.value }}</span>
- <span>艘</span>
- <span>{{ hxztPercent(item.value) }}</span>
- <span>%</span>
- <span>占比</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="panel-right" :class="{ 'is-hide': aside_hide }">
- <div class="pr-b1 pr">
- <span class="title1-right">运行态势</span>
- <span class="title2-right">安全通航信息</span>
- <el-carousel
- trigger="click"
- height="23vh"
- class="prb1-main"
- indicator-position="outside"
- arrow="never"
- :autoplay="!aqthPopupShow"
- >
- <el-carousel-item v-for="page in listData_aqthxx_len" :key="page">
- <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)">
- <span class="title3" :class="{'highlight':item.abstract[1]===aqthPopupData.value.code&&aqthPopupShow}">{{ item.title }}</span>
- <span v-for="item2 in item.abstract"> {{ item2 }}</span>
- </div>
- </el-carousel-item>
- </el-carousel>
- <div class="popup-aqth" v-if="aqthPopupShow">
- <i class="btn-close" @click="handleCloseAqthPopup"></i>
- <div class="title-dialog">{{ aqthPopupData.value.title }}</div>
- <p>{{ aqthPopupData.value.des }}</p>
- </div>
- </div>
- <div class="pr-b2 pr">
- <span class="title2-right">通航流量监测</span>
- <span class="title3">分时段流量统计</span>
- <div id="chart_fsdll"></div>
- <span class="title3">分航向流量统计</span>
- <div class="prb2-item" v-for="item in data_fhxll.value">
- <div>
- <img :src="require('@/assets/imgs/page_jtaq/icon-zhandian.png')" alt="">
- <span>{{ item.from }}</span>
- <i></i>
- <span>{{ item.to }}</span>
- </div>
- <div>
- <span>分航向流量统计</span>
- <span>{{ item.value }}</span>
- <span>艘次</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'JtaqHome',
- }
- </script>
- <script setup>
- import { onMounted, reactive, computed, ref } from 'vue';
- import { setCbgn, setFsdll } from '@/echarts/options'
- import { ElCarousel, ElCarouselItem } from 'element-plus'
- import 'element-plus/es/components/carousel/style/css'
- import 'element-plus/es/components/carousel-item/style/css'
- import { GetThlljc, GetCbxx, GetThllByHour, GetKeyBoats } from '../../apis/jtaq'
- import KeyBoatList from './cpns/KeyBoatList.vue'
- import { asideShow } from '@/store/index'
- const aside_hide = asideShow().isHide
- onMounted(() => {
- getData()
- setCbgn(document.getElementById('chart-cbgn'), chartData_cbgnfl.value)
- setFsdll(document.getElementById('chart_fsdll'), chartData_fsdll.value)
- })
- function getData() {
- getData_thlljc()
- getData_cbxx()
- }
- function getData_cbxx() {
- GetCbxx().then(res => {
- listData_cbhxyc.value.forEach(i => {
- i.value = res.data.district[i.dist]
- })
- data_cbxx.total = res.data.inport
- data_cbxx.riverCount = res.data.inRiverShipTotal
- data_cbxx.cata.forEach(i => {
- i.value = res.data[i.fieldName]
- })
- data_cbhxzt.value.forEach(i => {
- i.value = res.data[i.fieldName]
- })
- let boatTypeArr = []
- for (let key in res.data.boatType) {
- boatTypeArr.push({name: key, value: res.data.boatType[key]})
- }
- boatTypeArr = boatTypeArr.sort((a,b) => b.value - a.value)
- chartData_cbgnfl.value = [
- ...boatTypeArr.slice(0,4),
- { name: '其它', value: boatTypeArr.slice(4).reduce((sum, i) => sum + i.value, 0)}
- ]
- setCbgn(document.getElementById('chart-cbgn'), chartData_cbgnfl.value)
- })
- }
- const data_cbxx = reactive({
- total: 0,
- riverCount: 0,
- cata: [
- { name: '重点追踪船舶', value: 0, fieldName: 'keyBoat' },
- { name: '载运危货船舶', value: 0, fieldName: 'dangerBoat' }
- ]
- })
- function cbxxPercent(value) {
- if(!value||value===0) {
- return '-'
- }
- return (value / data_cbxx.total *100).toFixed(2)
- }
- const listData_cbhxyc = reactive({value: [
- { dist: '奉贤', value: 0 },
- { dist: '金山', value: 0 },
- { dist: '松江', value: 0 },
- { dist: '嘉定', value: 0 },
- { dist: '闵行', value: 0 },
- { dist: '青浦', value: 0 },
- { dist: '宝山', value: 0 },
- { dist: '崇明', value: 0 },
- { dist: '浦东', value: 0 }
- ]})
- const data_cbhxzt = reactive({value: [
- { title: '航行中船舶', value: 0, iconUrl: require('@/assets/imgs/page_jtaq/icon-cb-hxz.png'), fieldName: 'runningBoatCount'},
- { title: '靠泊中船舶', value: 0, iconUrl: require('@/assets/imgs/page_jtaq/icon-cb-kbz.png'), fieldName: 'stopBoatCount'}
- ]})
- function hxztPercent(value) {
- const sum = data_cbhxzt.value.reduce((total,i) => i.value+total, 0)
- if(sum===0||!value) {
- return '-'
- }
- return Math.round(value / sum *100)
- }
- const chartData_cbgnfl = reactive({value:[
- { name: '--', value: 0 },
- { name: '--', value: 0 },
- { name: '--', value: 0 },
- { name: '--', value: 0 },
- { name: '--', value: 0 }
- ]})
- const listData_aqthxx = reactive({value:[
- {
- title: '水域测量作业',
- abstract: [
- '2024年4月25日至2024年4月27日,06:00至18:00',
- '沪航通〔2024〕0319号'
- ],
- des: '作业时间:2024年4月25日至2024年4月27日,06:00至18:00。\n'+
- '作业地点:上海国际航运中心洋山深水港区尚东分公司码头前沿100米范围内水域。\n'+
- '作业方式:东海航海保障中心负责。作业船“海测1”在作业水域开展水深测量。\n'+
- '注意事项:1.作业船舶应在明显易见处昼夜显示规定的号灯号型,保持AIS正常开启;\n' +
- '2.作业船加强VHF13频道值守、瞭望和动态通报,做好警戒;\n' +
- '3.船舶航经作业水域时,谨慎驾驶,注意避让;\n' +
- '4.风力大于7级或能见度小于1海里时,应暂停作业。'
- },
- {
- title: '浮筒吊装作业',
- abstract: [
- '2024年04月25日至2024年05月30日,08:00-18:00时',
- '沪航通〔2024〕0314号'
- ],
- des: '作业时间:2024年04月25日至2024年05月30日,08:00-18:00时。\n' +
- '作业地点:青草沙水库下游闸口外侧前沿长约500米、宽约200水域范围。\n' +
- '作业方式:浮筒采用机动艇拖运至青草沙水库下游闸口内侧,再使用汽车吊吊运跨过大堤,使用机动艇拖运至宽阔水域后,用起重船吊装至等待在闸口外的平板驳船上,运至加工厂进行维护施工,维护完成后采用同样的方法运回至水库指定位置安装。\n' +
- '注意事项:1.作业船舶应在显明易见处悬挂作业信号,并在锚缆入水处设浮标并显示标志,不作业时松缆入江底;\n'+
- '2.作业船应加强值班、了望和高频守听;\n'+
- '3.航行船舶应距最远锚位50米外缓速通过;\n'+
- '4.如遇实际风力大于7级或视程小于1000米停止作业。'
- },
- {
- title: '码头疏浚作业',
- abstract: [
- '2024年04月25日至2024年05月16日',
- '沪航通〔2024〕0317 号'
- ],
- des: '作业时间:2024年04月25日至2024年05月16日,日夜作业。\n' +
- '作业地点:上海黄浦江上游浦西侧上粮七库码头前沿顺岸长约73米、自码头前沿向江中宽约40米的范围内水域。\n' +
- '作业方式:作业船“全通浚401”(船长39.5米、船宽13.5米)在码头前沿顺岸布置,艏抛八字开锚、艉抛交叉八字锚,锚缆长约20米,艏艉锚位间距约80米,最远锚位距码头前沿约50米,自上游向下游、自岸边向江中依次进行挖泥作业。疏浚土由“全通1501、全通801”运至主管部门指定的倾倒区抛弃。作业船“全通浚601”根据需要进场进行挖泥作业。\n' +
- '注意事项:1.作业船按规定悬挂号灯号型,锚缆入水方向白天显示明显标志、夜间灯光照射,保持AIS正常开启。不作业时,松锚缆入江底;\n' +
- '2.作业船加强VHF06频道守听和动态通报,加强与航经船舶联络;\n' +
- '3.船舶航经作业水域时,谨慎驾驶,注意避让;\n' +
- '4.本次施工作业码头前沿顺岸长73米、自码头前沿向江中宽40米的水域为本次疏浚作业的安全作业区,使用至作业结束,期间无关船舶不得进入;\n' +
- '5.风力大于6级或能见度小于500米时,应暂停作业。'
- },
- {
- title: '码头综合修复工程施工',
- abstract: [
- '2024年04月25日至2024年06月23日,日夜作业',
- '沪航通〔2024〕0316号'
- ],
- des: '作业时间:2024年04月25日至2024年06月23日,日夜作业。\n'+
- '作业地点:上海黄浦江上游浦西侧吴泾热电厂出灰码头前沿顺岸长约112m、自码头前沿向江中宽约10m的范围内水域。\n'+
- '作业方式:本次施工采用无船舶参与的作业方式。主要利用汽车吊、振动锤、绳锯等设备对码头的裂缝、面板及梁系破损、靠船钢护桩、桩基损坏等进行修复。施工所用材料通过陆上运输至码头。\n'+
- '注意事项:1.作业水域按规定悬挂必要的警示标志,夜间保持必要的灯光照射;\n'+
- '2.施工单位落实指定人员加强作业水域的现场管理,防范无关船舶停靠;\n'+
- '3.船舶航经作业水域时,谨慎驾驶,注意避让;\n'+
- '4.本次施工作业码头前沿顺岸长112米、自码头前沿向江中宽10米的水域为本次施工的安全作业区,使用至施工结束,期间无关船舶不得进入;\n'+
- '5.风力大于6级或能见度小于500米时,应暂停施工。'
- },
- ]})
- const listData_aqthxx_len = computed(() => {
- return Math.ceil(listData_aqthxx.value.length/2)
- })
- const aqthPopupShow = ref(false)
- const aqthPopupData = reactive({value: {}})
- function showAqthPopup(index) {
- aqthPopupShow.value = true
- aqthPopupData.value = {...listData_aqthxx.value[index], code:listData_aqthxx.value[index].abstract[1]}
- }
- function handleCloseAqthPopup() {
- aqthPopupShow.value = false
- }
- function getData_thlljc() {
- GetThlljc().then(res => {
- chartData_fsdll.value = res.data.boatCountList
- let listTemp = JSON.parse(JSON.stringify(res.data.boatCountList))
- listTemp.forEach(i => {
- i.GPSTIME = i.GPSTIME.slice(-2)
- })
- let chartFsdll = setFsdll(document.getElementById('chart_fsdll'), listTemp)
- let lastIndex = res.data.boatCountList.length-1
- chartFsdll.dispatchAction({
- type: 'select',
- seriesIndex: 0,
- dataIndex: lastIndex,
- })
- getData_fhxll(res.data.boatCountList[lastIndex].GPSTIME)
- chartFsdll.getZr().on('click', (params)=> {
- const pointInPixel = [params.offsetX, params.offsetY]
- if (chartFsdll.containPixel('grid', pointInPixel)) {
- let dataIndex = chartFsdll.convertFromPixel({ seriesIndex: 0 }, pointInPixel)[0]
- chartFsdll.dispatchAction({
- type: 'select',
- seriesIndex: 0,
- dataIndex: dataIndex,
- })
- getData_fhxll(chartData_fsdll.value[dataIndex].GPSTIME)
- }
- })
- })
- }
- function getData_fhxll(time) {
- GetThllByHour(time+':00:00').then(res => {
- data_fhxll.value.forEach(i => {
- i.value = res.data[i.fieldName]
- })
- })
- }
- const chartData_fsdll = reactive({value: [
- { GPSTIME: '00', NUM: 0 },
- { GPSTIME: '06', NUM: 0 },
- { GPSTIME: '12', NUM: 0 },
- { GPSTIME: '18', NUM: 0 }
- ]})
- const data_fhxll = reactive({value: [
- { from: '黄浦江上游', to: '黄浦江下游', value: 0, fieldName: 'down' },
- { from: '黄浦江下游', to: '黄浦江上游', value: 0, fieldName: 'up' },
- ]})
- const boatListShow = ref(false)
- const keyBoatList = reactive({value: []})
- function showBoatList(item) {
-
- if(item.fieldName==="keyBoat") {
- if(keyBoatList.value.length!==0) {
- boatListShow.value = true
- return
- }
- GetKeyBoats().then(res => {
- keyBoatList.value = res.data.Rows || []
- boatListShow.value = true
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- #jtaq {
- .panel-left, .panel-right {
- box-sizing: border-box;
- position: absolute;
- top: 105px;
- width: 380px;
- height: calc(100vh - 105px);
- text-align: left;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- transition: all 0.5s ease;
- }
- .panel-left {
- left: 0;
- padding: 0 30px 30px;
- &.is-hide {
- left: -380px;
- }
- }
- .panel-right {
- right: 0;
- padding: 0 30px 30px;
- &.is-hide {
- right: -380px;
- }
- .pr {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- }
- }
- .pl-b1 {
- .plb1-part1 {
- display: flex;
- align-items: center;
- margin: 0 0 15px 10px;
- &>img {
- width: 100px;
- height: 71px;
- }
- &>div {
- display: flex;
- flex-direction: column;
- &>span {
- font-size: 16px;
- color: #FFFFFF;
- }
- &>div {
- margin-top: 3px;
- span:nth-child(1) {
- width: 57px;
- height: 21px;
- font-size: 28px;
- font-family: BarlowBold;
- color: transparent;
- background: linear-gradient(180deg, rgba(224,244,255,0.9) 0%, rgba(89,102,128,0.9) 100%);
- -webkit-background-clip: text;
- letter-spacing: 2px;
- }
- span:nth-child(2) {
- margin-left: 6px;
- font-size: 13px;
- color: rgba($color: #fff, $alpha: 0.6);
- }
- }
- }
- }
- .plb1-part2 {
- margin-left: 10px;
- li {
- &.clickable {
- cursor: pointer;
- }
- display: flex;
- align-items: flex-end;
- margin-bottom: 20px;
- &>span:nth-child(1) {
- font-size: 16px;
- color: #eee;
- font-weight: bold;
- }
- &>span:nth-child(2), &>div>span:nth-child(1) {
- display: inline-block;
- font-size: 22px;
- font-family: BarlowBold;
- color: #00EAFF;
- line-height: 22px;
- }
- &>span:nth-child(2) {
- width: 50px;
- margin: 0 5px;
- text-align: center;
- }
- &>span:nth-child(3), &>span:nth-child(5){
- font-size: 15px;
- color: #eee;
- }
- &>div {
- display: flex;
- align-items: flex-end;
- width: 60px;
- margin-left: 15px;
- &>span:nth-child(2) {
- font-size: 16px;
- font-family: BarlowBold;
- color: #00EAFF;
- line-height: 14px;
- }
- }
- }
- }
- }
- .boat-dock-list {
- left: 360px;
- width: 350px;
- height: 600px;
- }
- .pl-b2 {
- .plb2-row1 {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 40px 0 10px;
- &>span:not(:nth-child(2)) {
- font-size: 16px;
- font-weight: bold;
- font-style: italic;
- color: transparent;
- text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
- background: linear-gradient(0deg, #6FC2FF 0%, #CCDAE6 35%, #FFFFFF 60%);
- -webkit-background-clip: text;
- padding-right: 10px;
- }
- span:nth-child(2) {
- flex: 1;
- padding-right: 10px;
- text-align: right;
- font-size: 20px;
- font-weight: bold;
- color: transparent;
- background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(175, 231, 255, 0.8) 80%, rgba(0,179,255,0.8) 100%);
- -webkit-background-clip: text;
- }
- }
- .plb2-main {
- width: 90%;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- &>li {
- width: 91px;
- height: 25px;
- margin: 15px 0;
- display: flex;
- justify-content: center;
- align-items: flex-end;
- background: url('@/assets/imgs/page_jtaq/bg-cbyc.png') no-repeat;
- background-size: 100% 100%;
- span {
- margin-bottom: 8px;
- font-size: 16px;
- font-weight: 600;
- color: transparent;
- background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(175, 231, 255, 0.8) 80%, rgba(0,179,255,0.8) 100%);
- text-shadow: 0 6px 0 rgba(175, 231, 255, 0.2);
- -webkit-background-clip: text;
- line-height: 14px;
- }
- span:nth-child(2) {
- margin: 0 4px 7px;
- font-family: BarlowBold;
- font-size: 24px;
- line-height: 24px;
- }
- }
- }
- }
- .pl-b3 {
- #chart-cbgn {
- height: 18vh;
- width: 90%;
- }
- }
- .pl-b4 {
- .plb4-item {
- display: flex;
- align-items: center;
- margin: 10px 0;
- &>img {
- width: 85px;
- height: 85px;
- }
- &>div {
- box-sizing: border-box;
- width: 200px;
- height: 66px;
- padding-left: 15px;
- transform: translateX(-10px);
- display: flex;
- flex-direction: column;
- justify-content: center;
- background: url('@/assets/imgs/page_jtaq/bg-hxzt.png') no-repeat;
- background-size: 100% 100%;
- &>span {
- font-size: 16px;
- font-weight: bold;
- font-style: italic;
- color: transparent;
- text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
- background: linear-gradient(0deg, #6FC2FF 0%, #CCDAE6 35%, #FFFFFF 60%);
- -webkit-background-clip: text;
- }
- &>div {
- display: flex;
- align-items: flex-end;
- margin-top: 5px;
- span:nth-child(1), span:nth-child(3), span:nth-child(4) {
- padding-right: 3px;
- font-size: 22px;
- line-height: 22px;
- font-family: YSBTH;
- font-weight: 400;
- font-style: italic;
- color: transparent;
- text-shadow: 0px 0px 5px rgba($color: #9EC7FF, $alpha: 0.3);
- background: linear-gradient(-1deg, #9EC7FF 0%, #DCEBFF 40%, #FFFFFF 100%);
- -webkit-background-clip: text;
- }
- span:nth-child(2), span:nth-child(5) {
- margin: 0 5px;
- font-size: 16px;
- line-height: 22px;
- color: #FFFFFF;
- }
- span:nth-child(4) {
- font-size: 16px;
- line-height: 20px;
- }
- }
- }
- }
- }
- .pr-b1 {
- position: relative;
- .prb1-main {
- width: 82%;
- .prb1-item {
- margin: 15px 0;
- cursor: pointer;
- &>span:not(:first-child) {
- position: relative;
- display: block;
- padding-left: 26px;
- height: 21px;
- margin: 10px 0;
- font-size: 16px;
- font-family: BarlowBold;
- color: rgba($color: #fff, $alpha: 0.8);
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- display: inline-block;
- width: 21px;
- height: 21px;
- background: url('@/assets/imgs/page_jtaq/icon-aqth.png') no-repeat;
- background-size: 100% 100%;
- }
- }
- .highlight {
- color: #FFE874;
- }
- }
- :deep(.el-carousel__indicator--horizontal) {
- margin: 0 4px;
- }
- :deep(.el-carousel__indicator button) {
- width: 5px;
- height: 5px;
- border-radius: 50%;
- }
- }
- .popup-aqth {
- position: absolute;
- box-sizing: border-box;
- padding: 20px 10px 20px 20px;
- top: 5vh;
- left: -320px;
- width: 320px;
- height: 364px;
- background: url('@/assets/imgs/page_jtaq/bg-popup.png') no-repeat;
- background-size: 100% 100%;
- .btn-close {
- position: absolute;
- right: 18px;
- top: 15px;
- display: block;
- width: 12px;
- height: 12px;
- padding: 4px;
- background: url('@/assets/imgs/common/btn-close.png') no-repeat;
- background-size: 12px 12px;
- background-position: center;
- cursor: pointer;
- }
- p:nth-child(3) {
- height: calc(100% - 34px);
- padding-right: 10px;
- margin-top: 10px;
- overflow-y: auto;
- font-size: 16px;
- color: #eee;
- line-height: 22px;
- white-space: pre-wrap;
- }
- }
- }
- .pr-b2 {
- #chart_fsdll {
- width: 92%;
- height: 16vh;
- margin: 5px 0 10px;
- }
- .title2-right {
- margin-bottom: 25px;
- }
- .prb2-item {
- margin: 16px 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- &>div {
- display: flex;
- }
- &>div:first-child {
- align-items: center;
- width: fit-content;
- height: 32px;
- margin-bottom: 20px;
- padding-right: 14px;
- background: url('@/assets/imgs/page_jtaq/bg-fhx-1.png');
- background-size: 100% 100%;
- &>img {
- width: 47px;
- height: 51px;
- margin-right: 5px;
- }
- &>i {
- display: inline-block;
- width: 51px;
- height: 19px;
- margin: 0 6px 0 10px;
- background: url('@/assets/imgs/page_jtaq/icon-arrow.png') repeat-x;
- background-size: 17px 19px;
- }
- &>span {
- font-size: 16px;
- font-weight: bold;
- font-style: italic;
- color: #FFFFFF;
- }
- }
- &>div:last-child {
- box-sizing: border-box;
- justify-content: center;
- align-items: flex-end;
- width: 290px;
- height: 34px;
- padding-bottom: 13px;
- background: url('@/assets/imgs/page_jtaq/bg-fhx-2.png');
- background-size: 100% 100%;
- span:nth-child(1), span:nth-child(3) {
- font-size: 16px;
- color: #FFFFFF;
- }
- span:nth-child(2) {
- margin: 0 13px;
- font-size: 32px;
- font-family: BarlowBold;
- color: transparent;
- line-height: 32px;
- background: linear-gradient(0deg, rgba(148, 239, 255, 1) 0%, rgba(85, 226, 255, 1) 100%);
- -webkit-background-clip: text;
- }
- }
- }
- }
- }
- </style>
|