huoquanshibai.vue 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="content">
  3. <view class="text-area">
  4. <text class="top-line"></text>
  5. <view class="item">
  6. <!-- <image src="../../static/success.png" class="success-img"></image> -->
  7. <text class="success-text">获权失败</text>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. }
  15. </script>
  16. <style>
  17. .content {
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. justify-content: center;
  22. }
  23. .text-area {
  24. display: flex;
  25. justify-content: center;
  26. }
  27. .top-line{
  28. margin-top: 0rpx;
  29. margin-left: 0;
  30. position: absolute;
  31. width: 750rpx;
  32. height: 1rpx;
  33. background: #CCCCCC;
  34. }
  35. .item{
  36. margin-top: 400rpx;
  37. text-align: center;
  38. width: 750rpx;
  39. height: 1206rpx;
  40. }
  41. .success-img{
  42. margin-left: 242rpx;
  43. margin-top: 73rpx;
  44. width: 261rpx;
  45. height: 266rpx;
  46. }
  47. .success-text{
  48. margin-left: 276rpx;
  49. margin-top: 433rpx;
  50. font-size: 49rpx;
  51. font-family: Microsoft YaHei-3970(82674968);
  52. font-weight: 400;
  53. color: #333333;
  54. }
  55. </style>