footer.wxss 1.9 KB

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