index.less 848 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. page{
  2. padding-bottom: 100rpx;
  3. }
  4. .tarbar-module {
  5. width: 100%;
  6. position: fixed;
  7. bottom: 50rpx;
  8. left: 0;
  9. // padding: 0 20rpx;
  10. bottom:120rpx;
  11. .tarbar {
  12. background: white;
  13. width: 100%;
  14. display: grid;
  15. grid-template-columns:repeat(5, 110rpx);
  16. justify-content: space-between;
  17. padding: 10rpx 0rpx;
  18. box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  19. // border-radius: 50rpx;
  20. font-size: 26rpx;
  21. .tarbar-item {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. .icon{
  26. width:40rpx;
  27. height:40rpx;
  28. margin-bottom: 10rpx;
  29. }
  30. .active-icon{
  31. width: 80rpx;
  32. height: 80rpx;
  33. margin-top: -30rpx;
  34. }
  35. .tarbar-text{
  36. color: #919090;
  37. }
  38. .active-text{
  39. color: black;
  40. }
  41. }
  42. }
  43. }