| | |
| | | </div> |
| | | <div class="public-bounced-content"> |
| | | <div class="public-bounced-content-left"> |
| | | <GasTable></GasTable> |
| | | <GasTable :displayContent="displayContent"></GasTable> |
| | | <GasECharts></GasECharts> |
| | | <!-- <GasTabs></GasTabs>--> |
| | | </div> |
| | | <div class="public-bounced-content-right"> |
| | | <GasVideo></GasVideo> |
| | |
| | | import GasTable from '@components/BaseNav/PublicBounced/GasComponents/GasTable' |
| | | import GasECharts from '@components/BaseNav/PublicBounced/GasComponents/GasECharts' |
| | | import GasVideo from '@components/BaseNav/PublicBounced/GasComponents/GasVideo' |
| | | // import GasTabs from '@components/BaseNav/PublicBounced/GasComponents/GasTabs' |
| | | |
| | | export default { |
| | | name: 'PublicBounced', |
| | | components: { |
| | | // GasTabs, |
| | | GasTable, |
| | | GasECharts, |
| | | GasVideo |
| | |
| | | |
| | | <style lang="less" scoped> |
| | | .public-bounced { |
| | | width: 80%; |
| | | height: 450px; |
| | | z-index: 999; |
| | | position: absolute; |
| | | top: 25%; |
| | | left: 10%; |
| | | background-color: #002432; |
| | | margin: 1% auto; |
| | | position: fixed; |
| | | top: 50%; |
| | | left: 50%; |
| | | //transform: translate(-50%, -50%); |
| | | background-color: #0f1432; |
| | | border: 1px #9fc5c8 solid; |
| | | |
| | | .public-bounced-title { |
| | | width: 100%; |
| | | border: 1px #a4c0d8 solid; |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: space-between; |
| | | padding: 5px 0; |
| | | background-color: #002433; |
| | | |
| | | span { |
| | | color: #f4f7ff; |
| | |
| | | } |
| | | |
| | | .public-bounced-content { |
| | | width: 100%; |
| | | height: 100%; |
| | | display: flex; |
| | | //align-items: center; |
| | | align-items: center; |
| | | justify-content: space-around; |
| | | padding: 12px; |
| | | |
| | | .public-bounced-content-left { |
| | | //flex: 1; |
| | | width: 48%; |
| | | height: 400px; |
| | | flex-direction: column; |
| | | margin-right: 13px; |
| | | } |
| | | |
| | | .public-bounced-content-right { |
| | | width: 48%; |
| | | height: 400px; |
| | | //flex: 1; |
| | | } |
| | | } |
| | | |