1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .tui-bottom-popup.data-v-3fb08834 {
- width: 100%;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- 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;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .tui-popup-radius.data-v-3fb08834 {
- border-top-left-radius: 24rpx;
- border-top-right-radius: 24rpx;
- overflow: hidden;
- }
- .tui-popup-show.data-v-3fb08834 {
- opacity: 1;
- /* transform: translate3d(0, 0, 0); */
- }
- .tui-popup-mask.data-v-3fb08834 {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.6);
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .tui-mask-show.data-v-3fb08834 {
- opacity: 1;
- visibility: visible;
- }
|