.wux-floating-panel {
  position: fixed;
  z-index: 1020;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-touch-action: none;
  touch-action: none
}
.wux-floating-panel::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -100vh;
  height: 100vh;
  width: 100vw;
  background: #fff
}
.wux-floating-panel__hd {
  -ms-flex: none;
  flex: none;
  height: 56rpx;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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 {
  -ms-flex: 1 1;
  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
}