follow.vue 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="">
  3. <image src="../../static/img/follow.png" mode="" class="follow">
  4. <view class="out">
  5. <image src="../../static/img/erwei1.jpg" mode="" class="erwi"></image>
  6. <view class="text">
  7. 关注公众号,即可获取隔离政策变化提醒
  8. </view>
  9. </view>
  10. </image>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style>
  16. .follow{
  17. position: relative;
  18. height: 100vh;
  19. width: 100%;
  20. }
  21. .out{
  22. position: absolute;
  23. top: 40%;
  24. /* height: 384upx; */
  25. /* line-height: 384upx; */
  26. width: 100%;
  27. text-align: center;
  28. z-index: 9999999999999;
  29. }
  30. .out image{
  31. margin: 0 auto;
  32. height: 384upx;
  33. width: 384upx;
  34. background-color: #00BFFF;
  35. }
  36. .text{
  37. width: 50%;
  38. margin: 0 auto;
  39. margin-top: 20upx;
  40. text-align: center;
  41. font-size: 28upx;
  42. font-weight: 400;
  43. line-height: 40upx;
  44. color: #FFFFFF;
  45. opacity: 1;
  46. }
  47. </style>