index.vue 619 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="content">
  3. <image class="logo" src="@/static/logo.png"></image>
  4. <view class="text-area">
  5. <text class="title">小鹅通</text>
  6. </view>
  7. </view>
  8. </template>
  9. <style scoped>
  10. .content {
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: center;
  15. }
  16. .logo {
  17. height: 200rpx;
  18. width: 200rpx;
  19. margin-top: 200rpx;
  20. margin-left: auto;
  21. margin-right: auto;
  22. margin-bottom: 50rpx;
  23. }
  24. .text-area {
  25. display: flex;
  26. justify-content: center;
  27. }
  28. .title {
  29. font-size: 36rpx;
  30. color: #8f8f94;
  31. }
  32. </style>