12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .tui-alert-box {
- position: fixed;
- width: 560rpx;
- left: 50%;
- top: 50%;
- background: #fff;
- transition: all 0.3s ease-in-out;
- transform: translate(-50%, -50%) scale(0);
- opacity: 0;
- border-radius: 6rpx;
- overflow: hidden;
- z-index: 99998;
- }
- .tui-alert-show {
- transform: translate(-50%, -50%) scale(1);
- opacity: 1;
- }
- .tui-alert-mask {
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- z-index: 99996;
- transition: all 0.3s ease-in-out;
- opacity: 0;
- visibility: hidden;
- }
- .tui-alert-mask-show {
- visibility: visible;
- opacity: 1;
- }
- .tui-alert-content {
- text-align: center;
- color: #333333;
- padding: 98rpx 48rpx 92rpx 48rpx;
- box-sizing: border-box;
- word-break: break-all;
- }
- .tui-alert-btn {
- width: 100%;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #fff;
- box-sizing: border-box;
- position: relative;
- font-size: 32rpx;
- line-height: 32rpx;
- }
- .tui-alert-btn-hover {
- background: #f7f7f7;
- }
- .tui-alert-btn::before {
- width: 100%;
- content: "";
- position: absolute;
- border-top: 1rpx solid #E0E0E0;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- left: 0;
- top: 0;
- }
|