|
@@ -102,7 +102,7 @@
|
|
|
<div class="footListCon6" v-for="(item,index) in CocoFlowList" @click="openNewWindow(item)" :key="index+'4p'">
|
|
|
<div class="footListConimg">
|
|
|
<!-- <img style="margin-bottom: 12px;height: 24px;width: 22px;" :src="JSON.parse(item.json).icon" alt=""> -->
|
|
|
- <img style="margin-bottom: 12px;height: 24px;width: 22px;" :src="require('../assets/img/cocoflow2.svg')" alt="">
|
|
|
+ <img style="margin-bottom: 12px;height: 40px;width: 40px;object-fit: contain;" :src="require('../assets/img/cocoflow2.svg')" alt="">
|
|
|
</div>
|
|
|
<div class="TabListName">{{ item.name }}</div>
|
|
|
<div class="TabListBri">
|
|
@@ -762,11 +762,17 @@ import { API_CONFIG } from "@/common/apiConfig";
|
|
|
padding: 16px;
|
|
|
box-sizing: border-box;
|
|
|
cursor: pointer;
|
|
|
+ transition: all 0.3s ease; /* 统一过渡效果 */
|
|
|
position: relative;
|
|
|
}
|
|
|
.footListCon6:hover .cha{
|
|
|
display: block;
|
|
|
}
|
|
|
+
|
|
|
+.footListCon6:hover{
|
|
|
+ transform: translate(-5px,-10px); /* 向上位移 */
|
|
|
+ box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
|
+}
|
|
|
.footListCon:hover{
|
|
|
transform: translate(-5px,-10px); /* 向上位移 */
|
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|