123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div class="m-about">
- <div class="mb-title">公司概况</div>
- <div class="mb-detail">
- <p v-for="(item,i) in join.detail" :key="i">{{item}}</p>
- </div>
- <div class="btn">
- <span @click="$router.push({path:'/join-us'})">加入我们</span>
- </div>
- <mSwiper/>
- </div>
- </template>
- <script>
- import mSwiper from '@/components/m-swiper'
- export default {
- props: ['join'],
- components: {
- mSwiper
- }
- }
- </script>
- <style scoped>
- .m-about{
- text-align: center;
- background: #1c1d26;
- color: #fff;
- padding: 40px 0;
- }
- .m-about .mb-title{
- font-size: 20px;
- font-weight: bold;
- margin-bottom: 40px;
- }
- .m-about .mb-detail{
- text-align: justify;
- margin-bottom: 80px;
- font-size: 14px;
- }
- .m-about .mb-detail p{
- width: 88%;
- line-height: 1.5;
- margin: 20px auto;
- }
- </style>
|