wallpaper.wxss 707 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. margin-top: 32rpx;
  11. padding-inline: 108rpx;
  12. width: 533rpx;
  13. height: 400rpx;
  14. border-radius: 16rpx;
  15. }
  16. .select_icon {
  17. position: absolute;
  18. width: 56rpx;
  19. height: 56rpx;
  20. bottom: 32rpx;
  21. right: 32rpx;
  22. z-index: 1;
  23. }
  24. .grid-container {
  25. display: grid;
  26. grid-template-columns: repeat(2, 1fr);
  27. grid-column-gap: 32rpx;
  28. /* grid-row: 32rpx; */
  29. padding-inline: 32rpx;
  30. padding-top: 16rpx;
  31. }
  32. .cell {
  33. width: 320rpx;
  34. height: 240rpx;
  35. border-radius: 16rpx;
  36. }