wallpaper.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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. .progress-container {
  65. position: relative;
  66. margin-inline: 56rpx;
  67. margin-top: 615rpx;
  68. }
  69. .progress {
  70. width: 100%;
  71. }
  72. .progress-text {
  73. position: absolute;
  74. top: 50%;
  75. left: 50%;
  76. transform: translate(-50%, -50%);
  77. color: white;
  78. font-size: 24rpx;
  79. z-index: 1;
  80. font-weight: 500;
  81. }
  82. /*
  83. .bottom {
  84. display: flex;
  85. justify-content: space-between;
  86. align-items: center;
  87. position: fixed;
  88. bottom: 0;
  89. left: 0;
  90. right: 0;
  91. padding: 0 32rpx;
  92. box-sizing: border-box;
  93. }
  94. .bottom button {
  95. flex: 1;
  96. margin: 0 16rpx;
  97. height: 88rpx;
  98. font-size: 32rpx;
  99. } */