49 lines
955 B
Vue

<template>
<div class="quality">
<div class="left">
<div class="top"><LeftTop /></div>
<div class="middle"><LeftMiddle /></div>
<!-- <div class="bottom"><LeftBottom /></div> -->
</div>
<div class="right"><Right /></div>
</div>
</template>
<script>
import LeftTop from './leftTop.vue'
import LeftMiddle from './leftMiddle.vue'
// import LeftBottom from './leftBottom.vue'
import Right from './right.vue'
export default {
components: { LeftTop, LeftMiddle, Right }
}
</script>
<style lang="less" scoped>
.quality {
width: 100%;
height: 100%;
// background: url(../assets/temp/6.png) no-repeat;
// background-size: 100% 100%;
display: flex;
justify-content: space-between;
.left {
width: 22%;
height: 100%;
.top {
height: 36%;
}
.middle {
height: 18%;
}
.bottom {
height: 46%;
}
}
.right {
width: calc(78% - 20px);
height: 100%;
}
}
</style>