| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view class="content">
- <view class="text-area">
- <text class="top-line"></text>
- <view class="item">
- <!-- <image src="../../static/success.png" class="success-img"></image> -->
- <text class="success-text">获权失败</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
-
- }
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .text-area {
- display: flex;
- justify-content: center;
- }
- .top-line{
- margin-top: 0rpx;
- margin-left: 0;
- position: absolute;
- width: 750rpx;
- height: 1rpx;
- background: #CCCCCC;
- }
- .item{
- margin-top: 400rpx;
- text-align: center;
- width: 750rpx;
- height: 1206rpx;
- }
- .success-img{
- margin-left: 242rpx;
- margin-top: 73rpx;
- width: 261rpx;
- height: 266rpx;
- }
- .success-text{
- margin-left: 276rpx;
- margin-top: 433rpx;
- font-size: 49rpx;
- font-family: Microsoft YaHei-3970(82674968);
- font-weight: 400;
- color: #333333;
- }
- </style>
|