image.wxss 807 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-image__mask {
  29. display: flex;
  30. align-items: center;
  31. justify-content: center;
  32. background-color: #f2f2f2;
  33. color: #ccc;
  34. }
  35. .t-image--loading-text {
  36. width: 0px;
  37. height: 0px;
  38. }
  39. .t-image__common {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .t-image--shape-circle {
  44. border-radius: 50%;
  45. overflow: hidden;
  46. }
  47. .t-image--shape-round {
  48. border-radius: 8rpx;
  49. overflow: hidden;
  50. }
  51. .t-image--shape-square {
  52. border-radius: 0;
  53. overflow: hidden;
  54. }