1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .wux-floating-panel {
- position: fixed;
- z-index: 1020;
- bottom: 0;
- left: 0;
- width: 100vw;
- display: flex;
- flex-direction: column;
- touch-action: none
- }
- .wux-floating-panel::after {
- content: "";
- display: block;
- position: absolute;
- bottom: -100vh;
- height: 100vh;
- width: 100vw;
- background: #fff
- }
- .wux-floating-panel__hd {
- flex: none;
- height: 56rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: grab;
- -webkit-user-select: none;
- -moz-user-select: none;
- user-select: none;
- background-color: #fff;
- border-top-left-radius: 12rpx;
- border-top-right-radius: 12rpx
- }
- .wux-floating-panel__bar {
- height: 6rpx;
- width: 40rpx;
- border-radius: 20rpx;
- background: #ccc
- }
- .wux-floating-panel__bd {
- flex: 1 1;
- overflow-y: scroll;
- background: #fff
- }
- .wux-floating-panel__mask {
- display: block;
- width: 100%;
- height: 100vh;
- position: absolute;
- left: 0;
- top: -100vh;
- background: 0 0
- }
|