index.wxss 730 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .wux-prompt {
  2. display: flex;
  3. height: 100%;
  4. align-items: center;
  5. justify-content: center;
  6. color: rgba(0,0,0,.45);
  7. background-color: #f2f3f4
  8. }
  9. .wux-prompt__bd {
  10. margin-top: 0;
  11. text-align: center
  12. }
  13. .wux-prompt__icon {
  14. width: 128rpx;
  15. height: 128rpx
  16. }
  17. .wux-prompt__title {
  18. font-size: 32rpx;
  19. font-weight: 700;
  20. color: rgba(0,0,0,.85);
  21. margin: 4rpx 0
  22. }
  23. .wux-prompt__text {
  24. font-size: 24rpx;
  25. margin: 4rpx 0
  26. }
  27. .wux-prompt__button {
  28. font-size: 24rpx;
  29. line-height: 2;
  30. margin: 8rpx auto;
  31. width: 200rpx;
  32. padding: 4rpx 0;
  33. border: 1PX solid #e8e8e8
  34. }
  35. .wux-prompt__button::after {
  36. display: none
  37. }
  38. .wux-prompt__button--hover {
  39. color: rgba(0,0,0,.65)!important;
  40. background-color: #ececec!important
  41. }