help.vue 656 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class='content'>
  3. <view class="bg"></view>
  4. <view class=' imgwrap'>
  5. <image class='img' src="../../static/imgs/mySet/question1.png" mode=""></image>
  6. <image class='img' src="../../static/imgs/mySet/question2.png" mode=""></image>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. };
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .bg{
  20. height:162rpx;
  21. background: linear-gradient(180deg, #112253 0%, #FCFCFC 100%);
  22. }
  23. // .content{
  24. // padding:20rpx;
  25. // }
  26. .imgwrap{
  27. position:relative;
  28. top:-132rpx;
  29. text-align:center;
  30. }
  31. .img{
  32. width:680rpx;
  33. height:246rpx;
  34. margin:20rpx auto;
  35. }
  36. </style>