index.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. /* 更多 */
  13. .extend {
  14. display: flex;
  15. padding-top: 30rpx;
  16. flex-wrap: wrap;
  17. }
  18. .extend .tabbar-item {
  19. flex: none;
  20. width: 25%;
  21. margin-bottom: 10rpx;
  22. }
  23. .tabbar-item {
  24. flex: 1;
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. height: 98rpx;
  29. }
  30. .tabbar-item .icon {
  31. width: 46rpx;
  32. height: 46rpx;
  33. text-align: center;
  34. line-height: 46rpx;
  35. color: #333333;
  36. }
  37. .tabbar-item .num {
  38. width: 80%;
  39. height: 46rpx;
  40. font-size: 28rpx;
  41. font-family: PingFang SC-Bold, PingFang SC;
  42. font-weight: bold;
  43. color: #333333;
  44. }
  45. .tabbar-item .label {
  46. height: 34rpx;
  47. font-size: 24rpx;
  48. font-family: PingFang SC-Regular, PingFang SC;
  49. color: #999999;
  50. margin-top: 8rpx;
  51. }
  52. .title {
  53. width: 100vw;
  54. height: 90rpx;
  55. line-height: 90rpx;
  56. text-align: center;
  57. box-sizing: border-box;
  58. border-bottom: 1px solid #EEEEEE;
  59. font-size: 28rpx;
  60. font-family: PingFang SC-Regular, PingFang SC;
  61. color: #333333;
  62. }
  63. swiper-item {
  64. display: flex;
  65. flex-wrap: wrap;
  66. align-content: flex-start;
  67. }
  68. .swiper-item {
  69. width: 150rpx;
  70. height: 150rpx;
  71. }