/*顶部栏*/
.navbar{
    background: #C83C23;
    max-width: 750px;
    margin: 0 auto;
    font-size: 100px;
}
.navbar-header a{
    display: block;
    padding: 10px;
}
.navbar-header img{
   width: auto;
    height: 32px;
}
.hlmenu {
    position: absolute;
    right: 10px;
}
.hlmenu a{
    float: left;
    font-size: 16px;
    line-height: 30px;
    color: #FFFFFF;
    position: relative;
}
.navbar-fixed-top{
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

/*底部菜单*/
.tabbar {
  height: 55px;
  background: #fff;
  position: fixed;
  width: 100%;
  max-width: 750px;
  bottom: 0;
  z-index: 100; /* 已修正层级 */
  box-shadow: 0px 0px 12px #d1d1d1;
  overflow: hidden;
}
.tabbar + .wrap {
  padding-bottom: 0.98rem;
}
.tabbar .item {
  float: left;
  width: 33.33%;
  text-align: center;
  color: #666666;
}
.tabbar .item.on {
  color: #ec1717;
}
.tabbar .item.on .icon-home {
  background-image: url(../img/tabbar/home-active.png);
}
.tabbar .item.on .icon-category {
  background-image: url(../img/tabbar/category-active.png);
}
.tabbar .item.on .icon-user {
  background-image: url(../img/tabbar/user-active.png);
}
.tabbar .name {
  font-size: 12px;
}
.tabbar .icon {
  display: inline-block;
    vertical-align: top;
    margin-top: 5px;
    margin-bottom: 4px;
    width: 26px;
    height: 26px;
    background-size: 100%;
}

/* 图标路径 */
.tabbar .icon-home {
  background-image: url(../img/tabbar/home.png);
}
.tabbar .icon-category {
  background-image: url(../img/tabbar/category.png);
}
.tabbar .icon-user {
  background-image: url(../img/tabbar/user.png);
}

/* 新增内容区域样式 */
.content {
    padding-bottom: 75px !important;
    min-height: calc(100vh - 140px);
    position: relative;
    z-index: 200;
}

/* 移动端适配 */
@media screen and (max-width: 750px) {
    .content {
        padding-bottom: 75px !important;
    }
}