wallpaper.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* pages/piano/wallpaper/wallpaper.wxss */
  2. .img_section {
  3. margin-top: 32rpx;
  4. margin-left: 108rpx;
  5. width: 533rpx;
  6. position: relative;
  7. align-items: center;
  8. justify-content: center;
  9. }
  10. .select_img {
  11. width: 533rpx;
  12. height: 400rpx;
  13. border-radius: 16rpx;
  14. overflow: hidden;
  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. margin-top: 32rpx;
  26. display: grid;
  27. grid-template-columns: repeat(2, 1fr);
  28. grid-gap: 32rpx;
  29. margin-inline: 32rpx;
  30. }
  31. .device_img {
  32. width: 320rpx;
  33. height: 240rpx;
  34. border-radius: 16rpx;
  35. }
  36. .footer {
  37. position: fixed;
  38. bottom: 0;
  39. left: 0;
  40. right: 0;
  41. display: flex;
  42. width: 750rpx;
  43. height: 170rpx;
  44. background: #FFFFFF;
  45. box-shadow: 0rpx -4rpx 16rpx 0rpx #E8EAEB;
  46. border-radius: 72rpx 72rpx 0rpx 0rpx;
  47. justify-content: center;
  48. align-items: center;
  49. }
  50. .footer>image {
  51. margin-right: 8rpx;
  52. width: 48rpx;
  53. height: 48rpx;
  54. }
  55. .footer>view {
  56. color: #6546A3;
  57. width: 128rpx;
  58. font-weight: Medium;
  59. font-size: 32rpx;
  60. }