|
|
@ -4,8 +4,10 @@ |
|
|
|
<span class="theme">{{ themeTitle }}</span |
|
|
|
>{{ title }} |
|
|
|
</h2> |
|
|
|
<p class="line1" v-if="line1">{{ line1 }}</p> |
|
|
|
<p class="line2" v-if="line2">{{ line2 }}</p> |
|
|
|
<div class="scale"> |
|
|
|
<p class="line1" v-if="line1">{{ line1 }}</p> |
|
|
|
<p class="line2" v-if="line2">{{ line2 }}</p> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
@ -46,22 +48,25 @@ const props = defineProps({ |
|
|
|
.theme { |
|
|
|
color: #f94622; |
|
|
|
} |
|
|
|
.line1 { |
|
|
|
font-size: 7px; |
|
|
|
font-family: Source Han Sans CN; |
|
|
|
font-weight: 300; |
|
|
|
color: #595959; |
|
|
|
line-height: 16px; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
.line2 { |
|
|
|
font-size: 7px; |
|
|
|
font-family: Alibaba PuHuiTi; |
|
|
|
font-weight: 300; |
|
|
|
color: #595959; |
|
|
|
text-align: center; |
|
|
|
line-height: 9px; |
|
|
|
margin-top: 4px; |
|
|
|
.scale { |
|
|
|
font-size: 14px; |
|
|
|
transform: scale(0.5); |
|
|
|
width: 200%; |
|
|
|
.line1 { |
|
|
|
font-family: Source Han Sans CN; |
|
|
|
font-weight: 300; |
|
|
|
color: #595959; |
|
|
|
line-height: 16px; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
.line2 { |
|
|
|
font-family: Alibaba PuHuiTi; |
|
|
|
font-weight: 300; |
|
|
|
color: #595959; |
|
|
|
text-align: center; |
|
|
|
line-height: 9px; |
|
|
|
margin-top: 4px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |