footer.wxss 880 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .tui-footer{
  2. width: 100%;
  3. overflow: hidden;
  4. padding: 30rpx 24rpx;
  5. box-sizing: border-box;
  6. }
  7. .tui-fixed{
  8. position: fixed;
  9. bottom:env(safe-area-inset-bottom);
  10. z-index: 9999;
  11. }
  12. .tui-footer-link{
  13. color: #596d96;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. font-size: 28rpx;
  18. }
  19. .tui-link{
  20. position: relative;
  21. padding: 0 18rpx;
  22. line-height: 1;
  23. }
  24. .tui-link::before{
  25. content: " ";
  26. position: absolute;
  27. right: 0;
  28. top: 0;
  29. width: 1px;
  30. bottom: 0;
  31. border-right: 1px solid #d3d3d3;
  32. -webkit-transform-origin: 100% 0;
  33. transform-origin: 100% 0;
  34. -webkit-transform: scaleX(0.5);
  35. transform: scaleX(0.5);
  36. }
  37. .tui-link:last-child::before{
  38. border-right:0 !important
  39. }
  40. .tui-link-hover{
  41. opacity: .5
  42. }
  43. .tui-footer-copyright{
  44. font-size: 24rpx;
  45. color: #A7A7A7;
  46. line-height: 1;
  47. text-align: center;
  48. padding-top: 16rpx
  49. }