| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- body {
- color: rgba(0, 0, 0, 0.86);
- }
- .tabbar {
- width: 100%;
- height: 50px;
- position: fixed;
- bottom: 0;
- background-color: white;
- z-index: 1;
- border-top: 1px solid #F3F3F3;
- text-align: center;
- transition: all ease 0.3s;
- }
- .tabbar-content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 50px;
- }
- .tabbar-hidden {
- height: 0;
- transition: all ease 0.3s;
- }
- .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;
- }
- .navbar {
- border-bottom: 1px solid #f5f5f9;
- position: fixed;
- top: 0;
- width: 100%;
- z-index: 2;
- }
- .tabbar-route-content {
- margin-bottom: 50px;
- }
- .content-wrap {
- padding-top: 45px;
- }
|