fab.wxss 746 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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-fab {
  29. position: fixed;
  30. width: auto;
  31. min-width: 86rpx;
  32. height: 86rpx;
  33. line-height: normal;
  34. padding: 0 40rpx;
  35. box-sizing: border-box;
  36. border-radius: 48rpx;
  37. }
  38. .t-fab .t-button__text {
  39. display: flex;
  40. align-items: center;
  41. }
  42. .t-fab::after {
  43. border-radius: inherit;
  44. }
  45. .t-fab__text {
  46. margin-left: 16rpx;
  47. }
  48. .t-fab--icononly {
  49. padding: 0;
  50. border-radius: 50%;
  51. }