26 lines
520 B
Vue
26 lines
520 B
Vue
<template>
|
|
<!-- 通用页脚 -->
|
|
<div class="custom-footer">
|
|
<span>Copyright © 2024-2027 FiEE</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
|
|
<style scoped lang="scss">
|
|
.custom-footer {
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 120px 0;
|
|
color: #888;
|
|
font-size: 75px;
|
|
background: #f7f8fa;
|
|
letter-spacing: 5px;
|
|
border-top: 5px solid #ececec;
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 100;
|
|
}
|
|
</style>
|
|
|