animation.wxss 528 B

123456789101112131415161718192021222324252627282930
  1. .animation-element-wrapper {
  2. display: flex;
  3. width: 100%;
  4. padding-top: 150rpx;
  5. padding-bottom: 150rpx;
  6. justify-content: center;
  7. overflow: hidden;
  8. background-color: #ffffff;
  9. }
  10. .animation-element {
  11. width: 200rpx;
  12. height: 200rpx;
  13. background-color: #1AAD19;
  14. }
  15. .animation-buttons {
  16. padding: 30rpx 50rpx 10rpx;
  17. width: 100%;
  18. height: 360rpx;
  19. box-sizing: border-box;
  20. }
  21. .animation-button {
  22. float: left;
  23. line-height: 2;
  24. width: 300rpx;
  25. margin: 15rpx 12rpx;
  26. }
  27. .animation-button-reset {
  28. width: 620rpx;
  29. }