footer.wxss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-footer {
  29. display: flex;
  30. flex-direction: column;
  31. align-items: center;
  32. justify-content: flex-start;
  33. }
  34. .t-footer__text {
  35. font-size: var(--td-footer-text-font-size, var(--td-font-size-s, 24rpx));
  36. line-height: var(--td-footer-text-line-height, 40rpx);
  37. color: var(--td-footer-text-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4)));
  38. }
  39. .t-footer__link-list + .t-footer__text:not(:empty) {
  40. margin-top: var(--td-footer-text-margin-top, 8rpx);
  41. }
  42. .t-footer__link-list {
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. }
  47. .t-footer__link-item {
  48. color: var(--td-footer-link-color, var(--td-brand-color, var(--td-primary-color-7, #0052d9)));
  49. font-size: var(--td-footer-link-font-size, var(--td-font-size-s, 24rpx));
  50. line-height: var(--td-footer-link-line-height, 40rpx);
  51. text-decoration: underline;
  52. }
  53. .t-footer__link-line {
  54. font-size: 24rpx;
  55. color: var(--td-footer-link-dividing-line-color, var(--td-font-gray-3, rgba(0, 0, 0, 0.4)));
  56. display: inline-block;
  57. padding: 0 var(--td-footer-link-dividing-line-padding, var(--td-spacer-1, 24rpx));
  58. }
  59. .t-footer__logo {
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64. .t-footer__icon {
  65. width: var(--td-footer-logo-icon-width, 48rpx);
  66. height: var(--td-footer-logo-icon-height, 48rpx);
  67. margin-right: var(--td-footer-logo-icon-margin-right, var(--td-spacer, 16rpx));
  68. }
  69. .t-footer__title {
  70. font-weight: bold;
  71. font-size: var(--td-footer-logo-title-font-size, var(--td-font-size-m, 32rpx));
  72. line-height: var(--td-footer-logo-title-line-height, 48rpx);
  73. font-style: italic;
  74. }
  75. .t-footer__title-url {
  76. width: var(--td-footer-logo-title-url-width, 256rpx);
  77. }