123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/piano/cropper/cropper.wxss */
- .container {
- position: relative;
- height: 100vh;
- /* 确保容器占满整个视口高度 */
- }
- .bottom {
- display: flex;
- flex-direction: row;
- position: fixed;
- bottom: 100rpx;
- left: 0;
- right: 0;
- height: 88rpx;
- background-color: rgba(0, 0, 0, 0.6);
- z-index: 12;
- }
- .right_btn {
- width: 218rpx;
- height: 88rpx;
- background: #6546A3;
- border-radius: 44rpx;
- }
- .left_btn {
- width: 218rpx;
- height: 88rpx;
- background: rgba(0, 0, 0, 0.4);
- border-radius: 44rpx;
- margin-left: 102rpx;
- margin-right: 112rpx;
- }
- .btn_title {
- font-weight: 600;
- font-size: 34rpx;
- font-style: normal;
- color: white;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- justify-content: center;
- align-items: center;
- }
- .progress-container {
- position: relative;
- margin-inline: 56rpx;
- margin-top: 615rpx;
- }
- .progress {
- width: 100%;
- }
- .progress-text {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: white;
- font-size: 24rpx;
- z-index: 1;
- font-weight: 500;
- }
|