first commit

This commit is contained in:
zjc
2024-12-12 10:30:11 +08:00
commit 81d7983cb6
37 changed files with 5240 additions and 0 deletions

43
src/views/home/index.vue Normal file
View File

@@ -0,0 +1,43 @@
<template>
<main class="wrapper">
<box1 />
<div class="header">
<div class="title">奉节县旅游指挥调度中心</div>
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</main>
</template>
<script setup>
import box1 from './components/box-1.vue'
onMounted(() => {})
</script>
<style lang="scss" scoped>
.wrapper {
display: flex;
width: 100vw;
height: 100vh;
overflow: hidden;
background-color: #0a254b;
.title {
width: vw(3133);
height: vh(120);
font-size: vw(48);
font-weight: 800;
text-align: center;
padding-top: vh(20);
color: #fff;
letter-spacing: vw(10);
box-sizing: border-box;
text-shadow: 0px 4px 7px rgba(0, 150, 255, 0.75);
background-image: url('@/assets/images/title.png');
background-size: 100% 100%;
}
}
</style>