footer_master.wxss 812 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* templates/footer_master/footer_master.wxss */
  2. .footer-container {
  3. position: fixed;
  4. bottom: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 98rpx;
  8. background: #FFFFFF;
  9. box-shadow: 0 0 8rpx 0 rgba(0,0,0,0.1);
  10. z-index: 99;
  11. }
  12. .footer-wrapper {
  13. width: 100%;
  14. margin: 0;
  15. }
  16. .footer-items {
  17. display: flex;
  18. justify-content: space-around;
  19. align-items: center;
  20. text-align: center;
  21. margin: 0;
  22. }
  23. .footer-item {
  24. padding: 10rpx 22rpx 6rpx 22rpx;
  25. position: relative;
  26. }
  27. .footer-item-image {
  28. width: 48rpx;
  29. height: 48rpx;
  30. }
  31. .footer-item-image-active {
  32. width: 48rpx;
  33. height: 48rpx;
  34. }
  35. .footer-item-image-large {
  36. width: 74rpx;
  37. height: 74rpx;
  38. }
  39. .footer-item-text {
  40. font-size: 22rpx;
  41. color: #ccc;
  42. }
  43. .footer-item-text-active {
  44. color: #4BC492;
  45. }
  46. .footer-item-specific-text-active {
  47. color: #fff;
  48. }