index.wxss 662 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .wux-toptips {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. z-index: 5000
  7. }
  8. .wux-toptips__content {
  9. padding: 10rpx;
  10. font-size: 28rpx;
  11. color: #fff;
  12. word-wrap: break-word;
  13. word-break: break-all;
  14. transition: background-color .3s
  15. }
  16. .wux-toptips__content--success {
  17. background-color: #33cd5f
  18. }
  19. .wux-toptips__content--info {
  20. background-color: #387ef5
  21. }
  22. .wux-toptips__content--warn {
  23. background-color: #ffc900
  24. }
  25. .wux-toptips__content--cancel {
  26. background-color: #ef473a
  27. }
  28. .wux-toptips__icon {
  29. position: absolute;
  30. top: 50%;
  31. transform: translateY(-50%)
  32. }
  33. .wux-toptips__text {
  34. display: block;
  35. text-align: center;
  36. padding: 0 52rpx
  37. }