footer.wxss 876 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* templates/footer_parent/footer.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: 1000;
  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. font-weight:600;
  27. text-align: center;
  28. }
  29. .footer-item-image {
  30. width: 51rpx;
  31. height: 38rpx;
  32. display: inline-block
  33. }
  34. .footer-item-image-active {
  35. width: 51rpx;
  36. height: 38rpx;
  37. }
  38. .footer-item-image-large {
  39. width: 74rpx;
  40. height: 74rpx;
  41. }
  42. .footer-item-text {
  43. font-size: 22rpx;
  44. color: #7C819D;
  45. }
  46. .footer-item-text-active {
  47. color: #FF6465;
  48. }
  49. .footer-item-specific-text-active {
  50. color: #fff;
  51. }