12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- .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;
- }
|