about.wxss 726 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* pages/about/about.wxss */
  2. .aboutPage {
  3. width: 100vw;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. background: #FFFDFD;
  9. justify-content: space-between;
  10. }
  11. .aboutTitle {
  12. font-size: 32rpx;
  13. color: #1F2430;
  14. }
  15. image {
  16. width: 150rpx;
  17. height: 150rpx;
  18. margin-top: 160rpx;
  19. margin-bottom: 24rpx;
  20. }
  21. .softName {
  22. font-size: 24rpx;
  23. color: #333A5B;
  24. font-family: PingFangSC-Medium, PingFang SC;
  25. font-weight: 500;
  26. margin-bottom: 8rpx;
  27. }
  28. .softVersion {
  29. font-size: 20rpx;
  30. color: #8492A6;
  31. }
  32. .copyRight {
  33. color: #8492A6;
  34. font-size: 20rpx;
  35. font-weight: 400;
  36. }
  37. .flex{
  38. display: flex;
  39. flex-direction: column;
  40. align-items: center;
  41. }
  42. .m30{
  43. margin-bottom: 30rpx;
  44. }