index.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .tabbar {
  2. display: flex;
  3. justify-content: space-around;
  4. position: fixed;
  5. height: 110rpx;
  6. width: 100vw;
  7. bottom: 0;
  8. background-color: #fff;
  9. z-index: 999;
  10. box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 8rpx;
  11. }
  12. .tabbar .item {
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. width: 98rpx;
  17. height: 98rpx;
  18. }
  19. .tabbar .item .icon {
  20. width: 46rpx;
  21. height: 46rpx;
  22. text-align: center;
  23. line-height: 46rpx;
  24. color: #333333;
  25. }
  26. .tabbar .item .num {
  27. width: 80%;
  28. height: 46rpx;
  29. font-size: 28rpx;
  30. font-family: PingFang SC-Bold, PingFang SC;
  31. font-weight: bold;
  32. color: #333333;
  33. }
  34. .tabbar .item .label {
  35. height: 34rpx;
  36. font-size: 24rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #999999;
  39. margin-top: 8rpx;
  40. }
  41. .title {
  42. width: 100vw;
  43. height: 90rpx;
  44. line-height: 90rpx;
  45. text-align: center;
  46. box-sizing: border-box;
  47. border-bottom: 1px solid #EEEEEE;
  48. font-size: 28rpx;
  49. font-family: PingFang SC-Regular, PingFang SC;
  50. color: #333333;
  51. }
  52. swiper-item {
  53. display: flex;
  54. flex-wrap: wrap;
  55. align-content: flex-start;
  56. }
  57. .swiper-item {
  58. width: 150rpx;
  59. height: 150rpx;
  60. background-color: red;
  61. }