change-photo.wxss 543 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .bg {
  2. width: 100%;
  3. height: 100%;
  4. display: flex;
  5. flex-direction: column;
  6. background-color: black;
  7. }
  8. .canvas {
  9. margin: auto 0;
  10. background-color: black;
  11. }
  12. .menu {
  13. position: fixed;
  14. width: 100%;
  15. height: 100rpx;
  16. bottom: 0;
  17. left: 0;
  18. display: flex;
  19. }
  20. .menu>view {
  21. width: 120rpx;
  22. height: 100rpx;
  23. font-family: PingFangSC-Regular;
  24. font-size: 28rpx;
  25. line-height: 100rpx;
  26. text-align: center;
  27. color: #FFFFFF;
  28. }
  29. .menu>view:first-child {
  30. margin: 0 auto 0 10rpx;
  31. }
  32. .menu>view:last-child {
  33. margin-right: 10rpx;
  34. }