1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class="box-top">
- <view class="bg3">
- <image src="../static/index/img14.png" mode=""></image>
- </view>
- <view class="bg3 two">
- <image src="../static/index/img08.png" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- export default {
-
- name: "hxb",
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .box-top {
- display: flex;
- padding: 36rpx 41rpx 72rpx 41rpx;
- .bg3 {
- width: 56rpx;
- height: 62rpx;
- image:{
- height: 100%;
- width: 100%;
- }
- }
- }
- .two {
- margin-left: 36rpx;
- }
- </style>
|