index.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .ant-result {
  2. position: relative;
  3. text-align: center;
  4. line-height: normal;
  5. box-sizing: border-box;
  6. }
  7. .ant-result::after {
  8. content: '';
  9. position: absolute;
  10. background-color: #eeeeee;
  11. display: block;
  12. top: auto;
  13. right: 0;
  14. bottom: 0;
  15. left: 0;
  16. height: 1px;
  17. transform: scaleY(0.5);
  18. }
  19. .ant-result-main {
  20. padding: 32px 12px;
  21. margin-bottom: 20px;
  22. background-color: #ffffff;
  23. }
  24. .ant-result-image {
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. width: 64px;
  29. height: 64px;
  30. margin: 0 auto;
  31. overflow: hidden;
  32. text-align: center;
  33. line-height: 64px;
  34. }
  35. .ant-result-image + .ant-result-title,
  36. .ant-result-image + .ant-result-message {
  37. padding-top: 20px;
  38. }
  39. .ant-result-image-success {
  40. color: #1677ff;
  41. }
  42. .ant-result-image-error {
  43. color: #ff3b30;
  44. }
  45. .ant-result-image-info {
  46. color: #1677ff;
  47. }
  48. .ant-result-image-warning {
  49. color: #ff8f1f;
  50. }
  51. .ant-result-image-wait {
  52. color: #00b578;
  53. }
  54. .ant-result-title {
  55. font-size: 18px;
  56. color: #333333;
  57. }
  58. .ant-result-title:empty {
  59. display: none;
  60. }
  61. .ant-result-message {
  62. padding-top: 8px;
  63. font-size: 13px;
  64. color: #999999;
  65. }
  66. .ant-result-message:empty {
  67. display: none;
  68. }