Files
sgxt_web/src/views/KeyPopulations/index.vue

55 lines
1.5 KiB
Vue
Raw Normal View History

2025-04-15 18:56:50 +08:00
<template>
<div class="homeBox">
<!-- 头部 -->
<Head type="importantPerson"></Head>
<!-- 内容 -->
<div class="home-contant">
<!-- 左边 -->
<div class="home-aside asideL" style="left:0">
<ImportantPerson></ImportantPerson>
</div>
<!-- 右边 -->
<div class="home-aside asideR" style="right:0">
<div class="aside-middle mt60">
<Zdrqhd></Zdrqhd>
</div>
<div class="aside-middle">
<Yjclqktj></Yjclqktj>
</div>
</div>
</div>
2025-04-15 19:03:17 +08:00
<div class="foot"></div>
2025-04-15 18:56:50 +08:00
</div>
</template>
<script setup>
import Head from '@/views/home/layout/head.vue';
import ImportantPerson from './model/importantPerson.vue'
import Zdrqhd from './model/zdrqhd.vue'
import Yjclqktj from './model/yjclqktj.vue'
</script>
<style lang="scss" scoped>
@import "@/assets/css/homeScreen.scss";
2025-04-15 19:03:17 +08:00
.foot{
position: absolute;
left: 50%;
bottom: 0;
transform: translate(-50%);
width: 1380px;
height: 107px;
background: url("~@/assets/images/foot.png") no-repeat center center;
background-size: 100% 100%;
}
2025-04-15 18:56:50 +08:00
.asideL{
background: linear-gradient( to right, rgba(78, 98, 132,0.8) 0%, #fff 100%);
}
.asideR{
background: linear-gradient( to left, rgba(78, 98, 132,0.8) 0%, #fff 100%);
}
.homeBox .home-contant .home-aside .aside-middle{
height: calc((100% - 60px)/2);
}
.transition {
transition: all 0.5s;
}
</style>