wallpaper.wxss 1.7 KB

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