wupengfei
2025-04-10 8fb20fc31b4be097e5408b9ecfeb5002ebe042f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <div class="insure-detail-content-grid-item2">
    <slot></slot>
  </div>
</template>
 
<script setup lang="ts">
defineOptions({
  name: 'InsureDetailContentGridItem',
});
</script>
 
<style lang="scss" scoped>
@use '@/style/common.scss' as *;
 
.insure-detail-content-grid-item2 {
  display: inline-grid;
  min-width: 0;
  grid-column-end: span 2;
}
</style>