You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
783 B
42 lines
783 B
<template>
|
|
<div class="card_detail_title" v-if="title">
|
|
<p class="title">
|
|
{{ title }}<span class="blue_text">{{ blue_title }}</span>
|
|
</p>
|
|
<p class="en">{{ en }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
title: String,
|
|
blue_title: String,
|
|
en: String,
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.card_detail_title {
|
|
padding: 29px 23px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background: #f9f9f9;
|
|
.title {
|
|
font-size: 22px;
|
|
font-family: DFPYuanW7-GB;
|
|
font-weight: 400;
|
|
color: #000000;
|
|
letter-spacing: 2px;
|
|
.blue_text {
|
|
color: $theme_color;
|
|
}
|
|
}
|
|
.en {
|
|
font-size: 14px;
|
|
font-family: 'ZonaPro';
|
|
font-weight: bold;
|
|
color: #929292;
|
|
}
|
|
}
|
|
</style>
|