app.css 854 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .tabbar {
  2. width: 100%;
  3. height: 50px;
  4. position: fixed;
  5. bottom: 0;
  6. background-color: white;
  7. z-index: 1;
  8. border-top: 1px solid #F3F3F3;
  9. text-align: center;
  10. }
  11. .tabbar1 {
  12. width: 100%;
  13. height: 50px;
  14. position: fixed;
  15. top: 0;
  16. background-color: white;
  17. z-index: 1;
  18. border-top: 1px solid #F3F3F3;
  19. text-align: center;
  20. }
  21. .tabbar-content {
  22. display: flex;
  23. flex-direction: column;
  24. justify-content: center;
  25. align-items: center;
  26. height: 50px;
  27. }
  28. .tabbar-active {
  29. color: #258fff;
  30. }
  31. .tabbar-inactive {
  32. color: #b9b9b9;
  33. }
  34. .tabbar-hidden {
  35. display: none;
  36. }
  37. .tabbar-title {
  38. font-size: 10px;
  39. margin: 3px 0 0 0;
  40. line-height: 1;
  41. text-align: center;
  42. }
  43. a.active {
  44. color: #258fff;
  45. text-decoration: none;
  46. }
  47. a{
  48. color: #b9b9b9;
  49. text-decoration: none;
  50. }