|
|
@ -25,7 +25,16 @@ |
|
|
|
</div> |
|
|
|
<div class="placeholder"></div> |
|
|
|
<div class="right_detail"> |
|
|
|
<div class="detail_header"></div> |
|
|
|
<div class="detail_header"> |
|
|
|
<div>电力巡检摄像头</div> |
|
|
|
<div class="right"> |
|
|
|
<p class="en">DETAILS PAGE</p> |
|
|
|
<p>详情页</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="article"> |
|
|
|
<Paragraph /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -39,6 +48,7 @@ import { handleScreenAuto } from '@/common/utils' |
|
|
|
// Import Swiper Vue.js components |
|
|
|
import { Swiper, SwiperSlide } from 'swiper/vue' |
|
|
|
import { Pagination } from 'swiper' |
|
|
|
import Paragraph from './Paragraph' |
|
|
|
import 'swiper/css' |
|
|
|
import 'swiper/css/pagination' |
|
|
|
import Tabs from './Tabs' |
|
|
@ -112,9 +122,6 @@ onMounted(() => { |
|
|
|
flex: 1; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
.right_detail::-webkit-scrollbar { |
|
|
|
display: none; /* Chrome Safari */ |
|
|
|
} |
|
|
|
.right_detail { |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
@ -124,18 +131,45 @@ onMounted(() => { |
|
|
|
z-index: 100; |
|
|
|
height: 100%; |
|
|
|
scrollbar-width: none; /* firefox */ |
|
|
|
-ms-overflow-style: none; /* IE 10+ */ |
|
|
|
overflow-x: hidden; |
|
|
|
overflow-y: auto; |
|
|
|
position: relative; |
|
|
|
overflow-x: auto; |
|
|
|
.detail_header { |
|
|
|
position: fixed; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
right: 0; |
|
|
|
width: 100%; |
|
|
|
padding: 30px 25px; |
|
|
|
background: linear-gradient(90deg, #283fe7, #4b17e1); |
|
|
|
font-size: 20px; |
|
|
|
font-family: DFPYuanW7-GB; |
|
|
|
font-weight: 400; |
|
|
|
color: #ffffff; |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
box-sizing: border-box; |
|
|
|
.right { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
font-size: 18px; |
|
|
|
font-family: Alibaba PuHuiTi; |
|
|
|
.en { |
|
|
|
margin-right: 26px; |
|
|
|
font-size: 10px; |
|
|
|
font-family: ' ZonaPro'; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.article { |
|
|
|
margin-top: 80px; |
|
|
|
min-height: 100%; |
|
|
|
background: #fff; |
|
|
|
} |
|
|
|
} |
|
|
|
.right_detail:hover { |
|
|
|
width: 1000px; |
|
|
|
z-index: 120; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|