guanwang/src/views/ServicesProject.vue
2023-09-05 10:54:13 +08:00

47 lines
736 B
Vue

<script>
</script>
<template>
<div class="body">
<div class=" content">
<div class="content_text"><strong>服务项目</strong></div>
<div class="content_des"></div>
</div>
<div class="empty">
</div>
</div>
</template>
<style scoped>
.body {
width: 100%;
box-sizing: border-box;
height: 730px;
background-color: #f5f5f5;
}
.empty {
height: 420px;
}
.content {
box-sizing: border-box;
width: 100%;
text-align: center;
margin-bottom: 100px;
}
.content_text {
font-size: 30px;
width: 100%;
height: 140px;
line-height: 140px;
}
.content_des {
width: 100%;
height: 140px;
background-color: #fff;
}
</style>