wallpaper.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* pages/piano/wallpaper/wallpaper.wxss */
  2. .img_section {
  3. margin-top: 32rpx;
  4. margin-left: 170rpx;
  5. width: 400rpx;
  6. position: relative;
  7. align-items: center;
  8. justify-content: center;
  9. }
  10. .select_img {
  11. width: 400rpx;
  12. height: 400rpx;
  13. border-radius: 16rpx;
  14. background-color: #F2F5F7;
  15. overflow: hidden;
  16. }
  17. .canvas_img {
  18. width: 400rpx;
  19. height: 400rpx;
  20. border-radius: 16rpx;
  21. background-color: #F2F5F7;
  22. overflow: hidden;
  23. }
  24. .select_icon {
  25. position: absolute;
  26. width: 56rpx;
  27. height: 56rpx;
  28. bottom: 32rpx;
  29. right: 32rpx;
  30. z-index: 1;
  31. }
  32. .grid-container {
  33. margin-top: 32rpx;
  34. display: grid;
  35. grid-template-columns: repeat(2, 1fr);
  36. grid-gap: 32rpx;
  37. margin-inline: 32rpx;
  38. }
  39. .device_img {
  40. width: 320rpx;
  41. height: 240rpx;
  42. border-radius: 16rpx;
  43. }
  44. .footer {
  45. position: fixed;
  46. bottom: 0;
  47. left: 0;
  48. right: 0;
  49. display: flex;
  50. width: 750rpx;
  51. height: 170rpx;
  52. background: #FFFFFF;
  53. box-shadow: 0rpx -4rpx 16rpx 0rpx #E8EAEB;
  54. border-radius: 72rpx 72rpx 0rpx 0rpx;
  55. justify-content: center;
  56. align-items: center;
  57. }
  58. .footer>image {
  59. margin-right: 8rpx;
  60. width: 48rpx;
  61. height: 48rpx;
  62. margin-top: -16rpx;
  63. }
  64. .footer>view {
  65. color: #6546A3;
  66. width: 128rpx;
  67. font-weight: Medium;
  68. font-size: 32rpx;
  69. margin-top: -16rpx;
  70. }