2022-10-17 10:13:22 +08:00

61 lines
1.2 KiB
Vue

<template>
<div class="security">
<div class="left">
<div class="top"><LeftTop /></div>
<div class="bottom"><LeftBottom /></div>
</div>
<div class="center">
<div class="top"><CenterTop /></div>
<div class="bottom"><CenterBottom /></div>
</div>
<div class="right"><RightTop /></div>
</div>
</template>
<script>
import LeftTop from './leftTop.vue'
import LeftBottom from './leftBottom.vue'
import CenterTop from './centerTop.vue'
import CenterBottom from './centerBottom.vue'
import RightTop from './rightTop.vue'
export default {
components: { LeftTop, LeftBottom, CenterTop, CenterBottom, RightTop }
}
</script>
<style lang="less" scoped>
.security {
width: 100%;
height: 100%;
display: flex;
justify-content: space-between;
// background: url(../assets/temp/5.png) no-repeat;
// background-size: 100% 100%;
.left {
width: 20%;
height: 100%;
.top {
height: 65%;
}
.bottom {
height: 35%;
}
}
.center {
width: calc(60% - 40px);
height: 100%;
.top {
height: 65%;
}
.bottom {
height: 35%;
}
}
.right {
width: 20%;
height: 100%;
}
}
</style>