intent.vue 764 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view class="intent">
  3. <view class="bgimg"><image src="../../static/images/yxs.png"></image></view>
  4. <view class="name">赵秋安</view>
  5. <view class="erweima">
  6. </view>
  7. </view>
  8. </template>
  9. <script></script>
  10. <style lang="scss" scoped>
  11. page {
  12. height: 100%;
  13. }
  14. .intent {
  15. width: 100%;
  16. height: 100%;
  17. position: relative;
  18. }
  19. .bgimg {
  20. width: 100%;
  21. height: 100%;
  22. image {
  23. width: 100%;
  24. height: 100%;
  25. }
  26. }
  27. .name {
  28. width: 14.5vw;
  29. background-color: red;
  30. // height: 20rpx;
  31. position: absolute;
  32. top: 33.5vh;
  33. left: 26.5vw;
  34. text-align: center;
  35. }
  36. .erweima {
  37. width: 156rpx;
  38. height: 156rpx;
  39. background-color: red;
  40. position: absolute;
  41. bottom: 138rpx;
  42. right: 118rpx;
  43. // right: 0;
  44. }
  45. </style>