From 310156b7244cd7b0c1b958f4267b5cf4e12bd90a Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期五, 08 三月 2024 17:15:45 +0800
Subject: [PATCH] fix:修改获取实例
---
src/components/item-wrap/item-wrap.vue | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/components/item-wrap/item-wrap.vue b/src/components/item-wrap/item-wrap.vue
index 3e630a1..e587200 100644
--- a/src/components/item-wrap/item-wrap.vue
+++ b/src/components/item-wrap/item-wrap.vue
@@ -15,7 +15,7 @@
<template>
<div class="item_title" v-if="title !== ''">
- <span class="title-inner"> {{ title }} </span>
+ <span class="title-inner">{{ title }} </span>
</div>
<div
:class="title !== '' ? 'item_title_content' : 'item_title_content_def'"
@@ -32,6 +32,7 @@
.item_title {
background-image: url("@/assets/img/candantop.png") ;
+ background-size: 231px 100%;
background-repeat: no-repeat;
height: $item-title-height;
line-height: $item-title-height;
@@ -55,11 +56,14 @@
transform: rotate(180deg);
}
.title-inner {
- margin-left: 15px;
+ margin-left: 25px;
+ margin-top: 4px;
color: #fff;
- font-weight: 900;
+ font-weight: 400;
letter-spacing: 2px;
+ font-size: 20px;
font-style: italic;
+ font-family: '200-SSBoYaTi';
//background: linear-gradient(
// 92deg,
// #0072ff 0%,
--
Gitblit v1.8.0