tips.wxss 828 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .tui-tips-box {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: center;
  5. align-items: center;
  6. text-align: center
  7. }
  8. .tui-tips-fixed {
  9. width: 90%;
  10. position: fixed;
  11. left: 50%;
  12. top: 50%;
  13. -webkit-transform: translate(-50%, -50%);
  14. transform: translate(-50%, -50%);
  15. }
  16. .tui-tips-icon {
  17. display: block;
  18. flex-shrink: 0;
  19. width: 280rpx;
  20. height: 280rpx;
  21. margin-bottom: 40rpx;
  22. }
  23. .tui-tips-content {
  24. text-align: center;
  25. color: #666666;
  26. font-size: 28rpx;
  27. padding: 0 50rpx 24rpx 50rpx;
  28. box-sizing: border-box;
  29. word-break: break-all;
  30. word-wrap: break-word;
  31. }
  32. .tui-tips-btn {
  33. height: 60rpx;
  34. line-height: 60rpx;
  35. font-size: 28rpx;
  36. background: #EB0909;
  37. color: #fff;
  38. border-radius: 6rpx;
  39. margin: 0;
  40. }
  41. .tui-tips-btn-hover {
  42. background: #c80808;
  43. color: #e5e5e5;
  44. }