Commit 4c5d5e1b authored by “yiyousong”'s avatar “yiyousong”

perf:修改站点编排页面文字、图片样式

parent a6400410
...@@ -49,11 +49,10 @@ ...@@ -49,11 +49,10 @@
v-for="(v, i) in collectList" v-for="(v, i) in collectList"
:key="'' + v.id + i" :key="'' + v.id + i"
> >
<div class="item-logo"> <div class="item-logo cursor-pointer" @click="openWindow(v)">
<img <img
class="w-full h-full object-cover cursor-pointer" class="w-full h-full object-contain"
:src="api + v.modelIcon" :src="api + v.modelIcon"
@click="openWindow(v)"
/> />
<img <img
class="bottom-img" class="bottom-img"
...@@ -98,9 +97,9 @@ ...@@ -98,9 +97,9 @@
v-for="item in v.list" v-for="item in v.list"
:key="item.id" :key="item.id"
> >
<div class="item-logo" @click="openWindow(item)"> <div class="item-logo cursor-pointer" @click="openWindow(item)">
<img <img
class="w-full h-full object-cover cursor-pointer" class="w-full h-full object-contain"
:src="api + item.modelIcon" :src="api + item.modelIcon"
/> />
</div> </div>
...@@ -281,6 +280,9 @@ export default { ...@@ -281,6 +280,9 @@ export default {
justify-items: center; justify-items: center;
} }
} }
.common-item {
font-family: Source Han Sans CN;
}
.icon-img { .icon-img {
transform: rotateZ(0deg); transform: rotateZ(0deg);
transition: all 1s; transition: all 1s;
...@@ -295,6 +297,9 @@ export default { ...@@ -295,6 +297,9 @@ export default {
background: linear-gradient(180deg, #daefff 0%, #ffffff 100%); background: linear-gradient(180deg, #daefff 0%, #ffffff 100%);
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1); box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
border-radius: 20px; border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
position: relative; position: relative;
.bottom-img { .bottom-img {
position: absolute; position: absolute;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment