footer.wxss 698 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* templates/footer/footer.wxss */
  2. .footer-container {
  3. position: fixed;
  4. bottom: 0;
  5. left: 0;
  6. width: 100%;
  7. background: #FFFFFF;
  8. box-shadow: 0 0 14rpx 0 rgba(0,0,0,0.1);
  9. z-index: 99;
  10. }
  11. .footer-wrapper {
  12. width: 100%;
  13. margin: 0;
  14. }
  15. .footer-items {
  16. display: flex;
  17. justify-content: space-around;
  18. align-items: center;
  19. text-align: center;
  20. margin: 0;
  21. }
  22. .footer-item {
  23. padding: 18rpx 22rpx;
  24. position: relative;
  25. text-align: center;
  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-text {
  36. font-size: 20rpx;
  37. color: #ccc;
  38. margin-top: 8rpx;
  39. }
  40. .footer-item-text-active {
  41. color: #00B7FF;
  42. }