tabbar遮挡了部分main底部的内容
.main
.main {
background-repeat: no-repeat;
height: 100vh;
overflow: auto;
background-size: cover;
// padding-bottom: 100px;
给 .main 添加padding-bottom 是可以解决的,但是会引发第二个问题就是.main这个容器在滚动的时候 底部滚动的时候需要多滚动几次才能出来,往上滚动的时候也是需要多滚动几次
tabbar样式
.k-tabbar {
display: flex;
justify-content: space-around;
font-size: 12px;
z-index: 999;
padding-top: 10px;
left: 0;
position: fixed;
bottom: 0;
width: 100%;
background-color: $blue;
}