toast.wxss 516 B

1234567891011121314151617181920212223242526272829303132333435
  1. .wx-toast-box {
  2. display: flex;
  3. width: 100%;
  4. justify-content: center;
  5. position: fixed;
  6. z-index: 999;
  7. top: 50%;
  8. left: 50%;
  9. transform: translate(-50%, -50%);
  10. opacity: 0;
  11. }
  12. .wx-toast-content {
  13. width: 226rpx;
  14. min-height: 174rpx;
  15. background: rgba(0, 0, 0, 0.8);
  16. border-radius: 8rpx;
  17. padding: 30rpx;
  18. }
  19. .wx-toast-toast {
  20. height: 100%;
  21. width: 100%;
  22. color: #fff;
  23. font-size: 28rpx;
  24. text-align: center;
  25. }
  26. .icon {
  27. width: 80rpx;
  28. height: 80rpx;
  29. display: block;
  30. margin:15rpx auto;
  31. }