| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .tui-actionsheet {
- width:750rpx;
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 9999;
- visibility: hidden;
- -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;
- background: #eaeaec;
- min-height: 100rpx;
- }
- .tui-actionsheet-show {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- visibility: visible;
- }
- .tui-tips {
- width:750rpx;
- padding: 30rpx 60rpx;
- box-sizing: border-box;
- text-align: center;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .tui-operate-box {
- padding-bottom: 12rpx;
- }
- .tui-actionsheet-btn {
- width:750rpx;
- height: 100rpx;
- background: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- font-size: 36rpx;
- position: relative;
- }
- .tui-btn-last {
- padding-bottom: env(safe-area-inset-bottom);
- }
- .tui-actionsheet-divider::before {
- content: '';
- width:750rpx;
- border-top: 1rpx solid #d9d9d9;
- position: absolute;
- top: 0;
- left: 0;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .tui-actionsheet-cancel {
- color: #1a1a1a;
- padding-bottom: env(safe-area-inset-bottom);
- }
- .tui-actionsheet-hover {
- background: #f7f7f9;
- }
- .tui-actionsheet-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.6);
- z-index: 9996;
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .tui-mask-show {
- opacity: 1;
- visibility: visible;
- }
|