|
@@ -0,0 +1,57 @@
|
|
|
+<template>
|
|
|
+ <div class="title_container">
|
|
|
+ <div class="title">{{ title }}</div>
|
|
|
+ <div>
|
|
|
+ <slot></slot>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup>
|
|
|
+import { ref, reactive, toRefs, onBeforeMount, onMounted } from 'vue'
|
|
|
+const props = defineProps({
|
|
|
+ title: {} //标题
|
|
|
+})
|
|
|
+</script>
|
|
|
+<style lang="scss" scoped>
|
|
|
+.title_container {
|
|
|
+ width: 100%;
|
|
|
+ min-width: 300px;
|
|
|
+ height: 54px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ background: url('../../assets/img/一级标题样式(1).png') no-repeat;
|
|
|
+ // background-size: 100% 100%;
|
|
|
+
|
|
|
+ .title {
|
|
|
+ font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 26px;
|
|
|
+ color: #f6f9fe;
|
|
|
+ line-height: 30px;
|
|
|
+ text-shadow: 0px 0px 7px rgba(75, 180, 229, 0.25), 0px 2px 8px rgba(5, 28, 55, 0.42);
|
|
|
+ text-align: left;
|
|
|
+ font-style: normal;
|
|
|
+ text-transform: none;
|
|
|
+ font-weight: bold;
|
|
|
+ /* 加粗字体 */
|
|
|
+ margin-left: 36px;
|
|
|
+ /* 金属光泽渐变效果 */
|
|
|
+ background: linear-gradient(to top, #49ffff 4%, #e2ffff 100%);
|
|
|
+ -webkit-background-clip: text;
|
|
|
+ /* 文字应用渐变 */
|
|
|
+ background-clip: text;
|
|
|
+
|
|
|
+ /* 使文字透明,背景渐变会应用到文字 */
|
|
|
+ color: transparent;
|
|
|
+
|
|
|
+ /* 光泽效果:文本阴影 */
|
|
|
+ text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.4), -2px -2px 5px rgba(0, 0, 0, 0.4);
|
|
|
+
|
|
|
+ /* 给文字加一些柔和的过渡效果 */
|
|
|
+ transition: all 0.3s ease;
|
|
|
+ font-style: italic;
|
|
|
+ transform: skewX(-5deg);
|
|
|
+ /* 自定义水平方向倾斜 */
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|