| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .tabbar {
- width: 100%;
- height: 50px;
- position: fixed;
- bottom: 0;
- background-color: white;
- z-index: 1;
- border-top: 1px solid #F3F3F3;
- text-align: center;
- }
- .tabbar1 {
- width: 100%;
- height: 50px;
- position: fixed;
- top: 0;
- background-color: white;
- z-index: 1;
- border-top: 1px solid #F3F3F3;
- text-align: center;
- }
- .tabbar-content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 50px;
- }
- .tabbar-active {
- color: #258fff;
- }
- .tabbar-inactive {
- color: #b9b9b9;
- }
- .tabbar-hidden {
- display: none;
- }
- .tabbar-title {
- font-size: 10px;
- margin: 3px 0 0 0;
- line-height: 1;
- text-align: center;
- }
- a.active {
- color: #258fff;
- text-decoration: none;
- }
- a{
- color: #b9b9b9;
- text-decoration: none;
- }
|