12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .tui-bottom-popup.data-v-3fb08834 {
- width: 100%;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 997;
- /* visibility: hidden; */
- opacity: 0;
- -webkit-transform: translate3d(0, 100%, 0);
- transform: translate3d(0, 100%, 0);
- -webkit-transform-origin: center;
- transform-origin: center;
- transition: all 0.3s ease-in-out;
- min-height: 20rpx;
- }
- .tui-popup-radius.data-v-3fb08834 {
- border-top-left-radius: 24rpx;
- border-top-right-radius: 24rpx;
- padding-bottom: env(safe-area-inset-bottom);
- overflow: hidden;
- }
- .tui-popup-show.data-v-3fb08834 {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1;
- /* visibility: visible; */
- }
- .tui-popup-mask.data-v-3fb08834 {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.6);
- z-index: 996;
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .tui-mask-show.data-v-3fb08834 {
- opacity: 1;
- visibility: visible;
- }
|