1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view class="care-content">
- <view class="title">
- 以下情况不能清洗车辆
- </view>
- <view class="img">
- <u-image width="80%" height="1600rpx" mode="widthFix" src="/static/img/carmore.jpg"></u-image>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- page {
- height: 100%;
- }
- .care-content{
- padding: 20rpx;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- .title{
- font-size: 30rpx;
- font-weight: 600;
- margin-bottom: 20rpx;
- }
- .img{
- flex: 1;
- margin-left: 40rpx;
- }
- }
- </style>
|