12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .tui-toast {
- background: rgba(0, 0, 0, 0.75);
- border-radius: 10rpx;
- position: fixed;
- visibility: hidden;
- opacity: 0;
- left: 50%;
- top: 48%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- transition: 0.3s ease-in-out;
- transition-property:opacity,visibility;
- z-index: 9999;
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
- padding: 60rpx 20rpx 54rpx 20rpx;
- box-sizing: border-box;
- }
- .tui-toast-padding {
- padding-top: 50rpx !important;
- padding-bottom: 50rpx !important;
- }
- .tui-unicon-padding {
- padding: 24rpx 40rpx !important;
- word-break: break-all;
- }
- .tui-toast-show {
- visibility: visible;
- opacity: 1;
- }
- .tui-toast-img {
- width: 120rpx;
- height: 120rpx;
- display: block;
- margin-bottom: 28rpx;
- }
- .tui-toast-text {
- font-size: 30rpx;
- line-height: 30rpx;
- font-weight: 400;
- color: #fff;
- text-align: center;
- }
- .tui-unicon{
- line-height: 40rpx !important;
- font-size: 32rpx !important;
- }
- .tui-content-ptop {
- padding-top: 10rpx;
- font-size: 26rpx !important;
- }
|