|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="tag-layer" @click.stop>
|
|
|
- <img @click.stop="close" :src="require('@/assets/images/js_icon/close.png')" class="close" alt="">
|
|
|
<div class="hotlistcon">
|
|
|
+ <img @click.stop="close" :src="require('@/assets/images/js_icon/close.png')" class="close" alt="">
|
|
|
<img class="htitle" :src="require('@/assets/images/js_icon/hotlisticon.png')" alt="">
|
|
|
<ul v-if="hotspots.length > 0">
|
|
|
<li @click="onclickHotpost(item)" v-for="item in hotspots" :key="item.name">
|
|
@@ -64,25 +64,24 @@ const close = () => {
|
|
|
justify-content: center;
|
|
|
align-items: flex-end;
|
|
|
|
|
|
- .close {
|
|
|
- color: rgba(255, 255, 255, 0.6);
|
|
|
- z-index: 999;
|
|
|
- position: absolute;
|
|
|
- right: 18px;
|
|
|
- bottom: 67%;
|
|
|
- width: 34px;
|
|
|
- }
|
|
|
-
|
|
|
.hotlistcon {
|
|
|
display: flex;
|
|
|
position: relative;
|
|
|
align-items: flex-start;
|
|
|
justify-content: center;
|
|
|
- height: 65%;
|
|
|
+ height: 50%;
|
|
|
+ max-height: calc(100% - 320px);
|
|
|
width: 100%;
|
|
|
background-size: 100% 100%;
|
|
|
background-image: url(@/assets/images/js_icon/hotspot_bg.png);
|
|
|
-
|
|
|
+ .close {
|
|
|
+ color: rgba(255, 255, 255, 0.6);
|
|
|
+ z-index: 999;
|
|
|
+ position: absolute;
|
|
|
+ right: 18px;
|
|
|
+ top: 10px;
|
|
|
+ width: 34px;
|
|
|
+ }
|
|
|
.htitle {
|
|
|
position: absolute;
|
|
|
left: 50%;
|
|
@@ -96,7 +95,7 @@ const close = () => {
|
|
|
border-radius: 10px;
|
|
|
font-size: 14px;
|
|
|
color: #fff;
|
|
|
- max-height: calc(100% - 60px);
|
|
|
+ height: 100%;
|
|
|
overflow-y: auto;
|
|
|
margin: 40px 10px;
|
|
|
|