cropper.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* pages/piano/cropper/cropper.wxss */
  2. .container {
  3. position: relative;
  4. height: 100vh;
  5. /* 确保容器占满整个视口高度 */
  6. }
  7. .bottom {
  8. display: flex;
  9. flex-direction: row;
  10. position: fixed;
  11. bottom: 100rpx;
  12. left: 0;
  13. right: 0;
  14. height: 88rpx;
  15. background-color: rgba(0, 0, 0, 0.6);
  16. z-index: 12;
  17. }
  18. .right_btn {
  19. width: 218rpx;
  20. height: 88rpx;
  21. background: #6546A3;
  22. border-radius: 44rpx;
  23. }
  24. .left_btn {
  25. width: 218rpx;
  26. height: 88rpx;
  27. background: rgba(0, 0, 0, 0.4);
  28. border-radius: 44rpx;
  29. margin-left: 102rpx;
  30. margin-right: 112rpx;
  31. }
  32. .btn_title {
  33. font-weight: 600;
  34. font-size: 34rpx;
  35. font-style: normal;
  36. color: white;
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. text-align: center;
  41. justify-content: center;
  42. align-items: center;
  43. }
  44. .progress-container {
  45. position: relative;
  46. margin-inline: 56rpx;
  47. margin-top: 615rpx;
  48. }
  49. .progress {
  50. width: 100%;
  51. }
  52. .progress-text {
  53. position: absolute;
  54. top: 50%;
  55. left: 50%;
  56. transform: translate(-50%, -50%);
  57. color: white;
  58. font-size: 24rpx;
  59. z-index: 1;
  60. font-weight: 500;
  61. }