Browse Source

fix: 🧩 修改遮挡问题

pull/22/head
张耀 3 years ago
parent
commit
8a32d41bd8
  1. 4
      src/views/Art/ArtMapItem.vue
  2. 12
      src/views/Art/ArtRightItem.vue

4
src/views/Art/ArtMapItem.vue

@ -64,7 +64,7 @@ function clickGo() {
.art-title {
max-width: 170px;
height: 21px;
height: 22px;
padding-top: 4px;
padding-bottom: 2px;
font-size: 14px;
@ -77,7 +77,7 @@ function clickGo() {
}
.art-author {
max-width: 170px;
height: 18px;
height: 22px;
padding-top: 4px;
padding-bottom: 2px;
margin-top: 2px;

12
src/views/Art/ArtRightItem.vue

@ -4,9 +4,9 @@
<img class="banner" :src="artInfo?.urlList[0]" alt="" />
<div class="intro-container">
<!-- 标题 -->
<h3 class="art-title">{{ switchLanguage(artInfo, 'artworkName') }}</h3>
<div class="art-title">{{ switchLanguage(artInfo, 'artworkName') }}</div>
<!-- 作者 -->
<h5 class="art-author">{{ artInfo.author }}</h5>
<div class="art-author">{{ artInfo.author }}</div>
<!-- 导航按钮 -->
<div class="go-container" @click="clickGo">{{ $t('art.go') }}</div>
<!-- 介绍
@ -55,7 +55,8 @@ function clickGo() {
.art-title {
max-width: 200px;
height: 18px;
height: 22px;
padding-top: 4px;
font-size: 16px;
font-family: 'font_bold';
color: #736661;
@ -66,8 +67,9 @@ function clickGo() {
}
.art-author {
max-width: 150px;
height: 14px;
margin-top: 2px;
height: 17px;
padding-top: 3px;
margin-top: 1px;
font-size: 12px;
font-family: 'font_regular';
color: #9b8c85;

Loading…
Cancel
Save