wallpaper.wxss 663 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* pages/piano/wallpaper/wallpaper.wxss */
  2. .img_section {
  3. width: 100%;
  4. height: 400rpx;
  5. position: relative;
  6. align-items: center;
  7. justify-content: center;
  8. }
  9. .select_img {
  10. padding-inline: 108rpx;
  11. height: 400rpx;
  12. border-radius: 16rpx;
  13. }
  14. .select_icon {
  15. position: absolute;
  16. width: 56rpx;
  17. height: 56rpx;
  18. bottom: 32rpx;
  19. right: 32rpx;
  20. z-index: 1;
  21. }
  22. .grid-container {
  23. display: grid;
  24. grid-template-columns: repeat(2, 1fr);
  25. grid-column-gap: 32rpx;
  26. /* grid-row: 32rpx; */
  27. padding-inline: 32rpx;
  28. padding-top: 16rpx;
  29. }
  30. .cell {
  31. width: 100%;
  32. height: 240rpx;
  33. border-radius: 16rpx;
  34. }