2023-09-05 10:26:27 +08:00
|
|
|
<script>
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<div class="body">
|
|
|
|
<div class=" content">
|
|
|
|
<div class="content_text"><strong>服务项目</strong></div>
|
|
|
|
<div class="content_des"></div>
|
|
|
|
</div>
|
2023-09-05 10:54:13 +08:00
|
|
|
<div class="empty">
|
|
|
|
|
|
|
|
</div>
|
2023-09-05 10:26:27 +08:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.body {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2023-09-05 10:54:13 +08:00
|
|
|
height: 730px;
|
2023-09-05 10:26:27 +08:00
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
2023-09-05 10:54:13 +08:00
|
|
|
.empty {
|
|
|
|
height: 420px;
|
|
|
|
}
|
|
|
|
|
2023-09-05 10:26:27 +08:00
|
|
|
.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>
|