1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/piano/cropper/cropper.wxss */
- .container {
- position: relative;
- overflow: hidden;
- }
- .navi_bar {
- position: fixed;
- z-index: 15;
- top: 0;
- left: 0;
- right: 0;
- }
- .ex-nav-bgc-class {
- background: white;
- backdrop-filter: blur(10px);
- }
- .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: 13;
- }
- .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: 1454rpx;
- z-index: 10;
- }
- .progress {
- z-index: 11;
- height: 52rpx;
- }
- .progress-text {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: white;
- font-size: 24rpx;
- z-index: 12;
- font-weight: 500;
- }
|