| 123456789101112131415161718192021222324252627 |
- <template>
- <v-page>
- <v-header class="nav-head" :title="$t('contribution.d1')"></v-header>
- <view class="radius-5">
- <image class="bor-2" src="/static/newImg/1.jpg" mode="widthFix" style="width:100%;height:auto;display: block;"></image>
- <view class="dis-flex flex-y-center">
- <image class="flex-three" src="/static/newImg/2.jpg" mode="widthFix" style="height:auto"></image>
- <image class="flex-three" src="/static/newImg/3.jpg" mode="widthFix" style="height:auto"></image>
- <image class="flex-three" src="/static/newImg/4.jpg" mode="widthFix" style="height:auto"></image>
- </view>
- <image class="bor-2" src="/static/newImg/5.jpg" mode="widthFix" style="width:100%;height:auto;display: block;"></image>
- </view>
- </v-page>
- </template>
- <script>
- </script>
- <style scoped lang="scss">
- .radius-5{
- overflow: hidden;
- }
- .flex-three {
- float: left;
- width: 33.3%;
- }
- </style>
|