cell-group.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-cell-group {
  29. position: relative;
  30. }
  31. .t-cell-group__title {
  32. font-family: PingFangSC-Regular;
  33. font-size: 28rpx;
  34. color: #888888;
  35. text-align: left;
  36. line-height: 90rpx;
  37. background-color: #fbfbfb;
  38. padding-left: 32rpx;
  39. }
  40. .t-cell-group--bordered::before {
  41. position: absolute;
  42. box-sizing: border-box;
  43. content: ' ';
  44. pointer-events: none;
  45. right: 0;
  46. left: 0;
  47. top: 0;
  48. border-top: 1px solid #e6e6e6;
  49. transform: scaleY(0.5);
  50. z-index: 1;
  51. }
  52. .t-cell-group--bordered::after {
  53. position: absolute;
  54. box-sizing: border-box;
  55. content: ' ';
  56. pointer-events: none;
  57. right: 0;
  58. left: 0;
  59. bottom: 0;
  60. border-bottom: 1px solid #e6e6e6;
  61. transform: scaleY(0.5);
  62. z-index: 1;
  63. }