footer.wxss 1.3 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__copyright-info {
  35. font-size: 24rpx;
  36. line-height: 32rpx;
  37. color: #bbbbbb;
  38. }
  39. .t-footer__link-list {
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. margin-bottom: 12rpx;
  44. }
  45. .t-footer__link-item {
  46. color: #266fe8;
  47. font-size: 24rpx;
  48. line-height: 40rpx;
  49. padding-left: 6rpx;
  50. text-decoration: underline;
  51. }
  52. .t-footer__link-item:not(:last-child)::after {
  53. content: '|';
  54. color: #266fe8;
  55. display: inline-block;
  56. padding-left: 10rpx;
  57. padding-right: 10rpx;
  58. }
  59. .t-footer__logo {
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. }
  64. .t-footer__icon {
  65. width: 48rpx;
  66. height: 48rpx;
  67. margin-right: 16rpx;
  68. }
  69. .t-footer__title {
  70. font-weight: bold;
  71. font-size: 32rpx;
  72. line-height: 48rpx;
  73. font-style: italic;
  74. }
  75. .t-footer__title-url {
  76. width: 256rpx;
  77. }