index.wxss 902 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .content {
  2. display: -webkit-box;
  3. display: -webkit-flex;
  4. display: -ms-flexbox;
  5. display: flex;
  6. -webkit-box-orient: vertical;
  7. -webkit-box-direction: normal;
  8. -webkit-flex-direction: column;
  9. -ms-flex-direction: column;
  10. flex-direction: column;
  11. -webkit-box-align: center;
  12. -webkit-align-items: center;
  13. -ms-flex-align: center;
  14. align-items: center;
  15. -webkit-box-pack: center;
  16. -webkit-justify-content: center;
  17. -ms-flex-pack: center;
  18. justify-content: center;
  19. }
  20. .logo {
  21. height: 200rpx;
  22. width: 200rpx;
  23. margin-top: 200rpx;
  24. margin-left: auto;
  25. margin-right: auto;
  26. margin-bottom: 50rpx;
  27. }
  28. .text-area {
  29. display: -webkit-box;
  30. display: -webkit-flex;
  31. display: -ms-flexbox;
  32. display: flex;
  33. -webkit-box-pack: center;
  34. -webkit-justify-content: center;
  35. -ms-flex-pack: center;
  36. justify-content: center;
  37. }
  38. .title {
  39. font-size: 36rpx;
  40. color: #8f8f94;
  41. }