zhaoxiaoqiang1
2026-01-04 f1d30d03186c79ca2cbcfe60d6d2ce7d73fba97b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
  <h2 v-if="title" class="section-title">{{title}}</h2>
</template>
<script>
// 内容模块小标题组件
export default {
  props: {
    title: {
      type: String,
      default: ''
    }
  }
}
</script>
 
<style lang="postcss" scoped>
.section-title {
  margin: 30px 0 20px 0;
  padding: 0 0 0 10px;
  border-left: solid 2px #0081f0;
  line-height: 16px;
  font-size: 14px;
  color: #222222;
}
</style>