wallpaper.wxss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. background-color: #F2F5F7;
  15. overflow: hidden;
  16. }
  17. .select_icon {
  18. position: absolute;
  19. width: 56rpx;
  20. height: 56rpx;
  21. bottom: 32rpx;
  22. right: 32rpx;
  23. z-index: 1;
  24. }
  25. .grid-container {
  26. margin-top: 32rpx;
  27. display: grid;
  28. grid-template-columns: repeat(2, 1fr);
  29. grid-gap: 32rpx;
  30. margin-inline: 32rpx;
  31. }
  32. .device_img {
  33. width: 320rpx;
  34. height: 240rpx;
  35. border-radius: 16rpx;
  36. }
  37. .footer {
  38. position: fixed;
  39. bottom: 0;
  40. left: 0;
  41. right: 0;
  42. display: flex;
  43. width: 750rpx;
  44. height: 170rpx;
  45. background: #FFFFFF;
  46. box-shadow: 0rpx -4rpx 16rpx 0rpx #E8EAEB;
  47. border-radius: 72rpx 72rpx 0rpx 0rpx;
  48. justify-content: center;
  49. align-items: center;
  50. }
  51. .footer>image {
  52. margin-right: 8rpx;
  53. width: 48rpx;
  54. height: 48rpx;
  55. margin-top: -16rpx;
  56. }
  57. .footer>view {
  58. color: #6546A3;
  59. width: 128rpx;
  60. font-weight: Medium;
  61. font-size: 32rpx;
  62. margin-top: -16rpx;
  63. }
  64. /*
  65. .bottom {
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. position: fixed;
  70. bottom: 0;
  71. left: 0;
  72. right: 0;
  73. padding: 0 32rpx;
  74. box-sizing: border-box;
  75. }
  76. .bottom button {
  77. flex: 1;
  78. margin: 0 16rpx;
  79. height: 88rpx;
  80. font-size: 32rpx;
  81. } */