index.wxss 528 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* custom-tab-bar/index.wxss */
  2. .head {
  3. position: fixed;
  4. z-index: 1;
  5. width: 100%;
  6. height: 35px;
  7. line-height: 35px;
  8. background-color: #fff;
  9. top: 0;
  10. display: flex;
  11. }
  12. .item {
  13. flex: 1;
  14. background-color: #fff;
  15. text-align: center;
  16. box-sizing: border-box;
  17. }
  18. .text {
  19. color: #646566;
  20. height: 1.5em;
  21. line-height: 1.5em;
  22. font-size: 18px;
  23. font-weight: 600;
  24. display: inline-block;
  25. }
  26. .line {
  27. width: 4em;
  28. height: 5rpx;
  29. margin: -5rpx auto;
  30. background-color: #1989fa;
  31. }
  32. .act {
  33. color: #1989fa;
  34. }