index.wxss 1.2 KB

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