cropper.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/piano/cropper/cropper.wxss */
  2. .container {
  3. position: relative;
  4. overflow: hidden;
  5. }
  6. .navi_bar {
  7. position: fixed;
  8. z-index: 15;
  9. top: 0;
  10. left: 0;
  11. right: 0;
  12. }
  13. .ex-nav-bgc-class {
  14. background: white;
  15. backdrop-filter: blur(10px);
  16. }
  17. .bottom {
  18. display: flex;
  19. flex-direction: row;
  20. position: fixed;
  21. bottom: 100rpx;
  22. left: 0;
  23. right: 0;
  24. height: 88rpx;
  25. background-color: rgba(0, 0, 0, 0.6);
  26. z-index: 13;
  27. }
  28. .right_btn {
  29. width: 218rpx;
  30. height: 88rpx;
  31. background: #6546A3;
  32. border-radius: 44rpx;
  33. }
  34. .left_btn {
  35. width: 218rpx;
  36. height: 88rpx;
  37. background: rgba(0, 0, 0, 0.4);
  38. border-radius: 44rpx;
  39. margin-left: 102rpx;
  40. margin-right: 112rpx;
  41. }
  42. .btn_title {
  43. font-weight: 600;
  44. font-size: 34rpx;
  45. font-style: normal;
  46. color: white;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. text-align: center;
  51. justify-content: center;
  52. align-items: center;
  53. }
  54. .progress-container {
  55. position: relative;
  56. margin-inline: 56rpx;
  57. margin-top: 1454rpx;
  58. z-index: 10;
  59. }
  60. .progress {
  61. z-index: 11;
  62. height: 52rpx;
  63. }
  64. .progress-text {
  65. position: absolute;
  66. top: 50%;
  67. left: 50%;
  68. transform: translate(-50%, -50%);
  69. color: white;
  70. font-size: 24rpx;
  71. z-index: 12;
  72. font-weight: 500;
  73. }