result.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .t-float-left {
  2. float: left;
  3. }
  4. .t-float-right {
  5. float: right;
  6. }
  7. @keyframes tdesign-fade-out {
  8. from {
  9. opacity: 1;
  10. }
  11. to {
  12. opacity: 0;
  13. }
  14. }
  15. .hotspot-expanded.relative {
  16. position: relative;
  17. }
  18. .hotspot-expanded::after {
  19. content: '';
  20. display: block;
  21. position: absolute;
  22. left: 0;
  23. top: 0;
  24. right: 0;
  25. bottom: 0;
  26. transform: scale(1.5);
  27. }
  28. .t-result {
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. }
  33. .t-result__title {
  34. line-height: 56rpx;
  35. font-size: 40rpx;
  36. font-weight: 700;
  37. color: rgba(0, 0, 0, 0.9);
  38. }
  39. .t-result__icon {
  40. font-size: 80px;
  41. }
  42. .t-result__thumb + .t-result__title:not(:empty) {
  43. margin-top: 16rpx;
  44. }
  45. .t-result__description {
  46. text-align: center;
  47. color: rgba(0, 0, 0, 0.6);
  48. font-size: 28rpx;
  49. line-height: 44rpx;
  50. }
  51. .t-result__title + .t-result__description:not(:empty) {
  52. margin-top: 24rpx;
  53. }
  54. .t-result--theme-default {
  55. color: #0052d9;
  56. }
  57. .t-result--theme-success {
  58. color: #00a870;
  59. }
  60. .t-result--theme-warning {
  61. color: #ed7b2f;
  62. }
  63. .t-result--theme-error {
  64. color: #e34d59;
  65. }