fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
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
26
27
28
29
30
<template>
    <div class="pro-publicity-pre">
        <h3 class="title">{{form.articleName}}</h3>
        <div class="introduce" v-html="form.articleContent"></div>
    </div>
</template>
 
<script>
export default {
  props: ['form']
}
</script>
 
<style lang="scss">
.pro-publicity-pre {
    padding:0 24px 0 0;
    .title {
        text-align: center;
        margin: 15px 0 15px 22px;
    }
    .introduce {
      width: 95%;
      padding-left: 13px;
      img, video{width: 100%;height: auto}
      div,p{
        width: 100% !important;
      }
    }
}
</style>