1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .audioList{
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- z-index: -1000000;
- }
- .loading {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 10000;
- background: rgba(0, 0, 0, .6);
- }
- .loadingWrap {
- position: relative;
- width: 295px;
- padding: 21px 17px;
- background: rgba(135, 135, 135, .72);
- border-radius: 24px;
- .loadingIcon {
- position: absolute;
- left: 50%;
- top: -35px;
- transform: translateX(-50%);
- width: 216px;
- }
- .loadingTip {
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: -35px;
- color: #fff;
- font-size: 13px;
- font-weight: 400px;
- }
- :global {
- .van-progress {
- height: 7px;
- }
- .van-progress__portion {
- background: linear-gradient(180deg, #3CD6F9 0%, #1CACF1 100%);
- border: 1px solid rgba(255, 255, 255, .5);
- }
- .van-progress__pivot {
- top: 0;
- color: transparent;
- background-color: transparent;
- width: 35px;
- height: 37px;
- background-image: url('./img/icon_loading_head.png');
- background-repeat: no-repeat;
- background-size: 100% 100%;
- }
- }
- }
|