toast.wxss 377 B

12345678910111213141516171819202122
  1. .toast_content_box {
  2. display: flex;
  3. width: 100%;
  4. height: 100%;
  5. justify-content: center;
  6. align-items: center;
  7. position: fixed;
  8. z-index: 999;
  9. }
  10. .toast_content {
  11. width: 50%;
  12. padding: 20rpx;
  13. background: rgba(0, 0, 0, 0.8);
  14. border-radius: 20rpx;
  15. }
  16. .toast_content_text {
  17. height: 100%;
  18. width: 100%;
  19. color: #fff;
  20. font-size: 28rpx;
  21. text-align: center;
  22. }