careMore.vue 573 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="care-content">
  3. <view class="title">
  4. 以下情况不能清洗车辆
  5. </view>
  6. <view class="img">
  7. <u-image width="80%" height="1600rpx" mode="widthFix" src="/static/img/carmore.jpg"></u-image>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style lang="scss">
  14. page {
  15. height: 100%;
  16. }
  17. .care-content{
  18. padding: 20rpx;
  19. width: 100%;
  20. height: 100%;
  21. display: flex;
  22. flex-direction: column;
  23. .title{
  24. font-size: 30rpx;
  25. font-weight: 600;
  26. margin-bottom: 20rpx;
  27. }
  28. .img{
  29. flex: 1;
  30. margin-left: 40rpx;
  31. }
  32. }
  33. </style>