1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div class="page-403">
- <img class="img-403" src="@/assets/ZDimages/img_myfwqx.png">
- <p class="text-403">抱歉,你无权访问该页面,如有疑问请联系管理员。</p>
- </div>
- </template>
- <script>
- export default {
- name: "403"
- }
- </script>
- <style lang="scss" scoped>
- .page-403{
- width:100%;
- height:100%;
- flex:1;
- display: flex;
- }
- .img-403{
- width:562px;
- height:313px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-top:-156px;
- margin-left:-281px;
- }
- .text-403{
- position: absolute;
- top: 50%;
- width: 100%;
- margin-top:200px;
- font-size:18px;
- font-weight:500;
- color:#0045AF;
- text-align: center;
- }
- </style>
|