about.wxss 448 B

123456789101112131415161718192021222324252627282930313233
  1. /* pages/about/about.wxss */
  2. .about {
  3. display: flex;
  4. height: 100%;
  5. padding: 160rpx 0;
  6. flex-direction: column;
  7. align-items: center;
  8. }
  9. .logo {
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. }
  14. .icon {
  15. width: 176rpx;
  16. height: 176rpx;
  17. }
  18. .name {
  19. color: #333;
  20. font-size: 44rpx;
  21. font-weight: bold;
  22. margin-top: 20rpx;
  23. }
  24. .introduce {
  25. color: #555;
  26. font-size: 34rpx;
  27. text-align: center;
  28. margin-top: 40rpx;
  29. }