/*顶部栏*/
.navbar{
    background: #3d4452;
    max-width: 800px;
    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: 800px;
  bottom: 0;
  z-index: 99;
  box-shadow: 0px 0px 12px rgba(45,52,54,0.08);
  overflow: hidden;
}
.tabbar + .wrap {
  padding-bottom: 0.98rem;
}
.tabbar .item {
  float: left;
  width: 33.33%;
  text-align: center;
  color: #666666;
}
.tabbar .item.on {
  color: #3d4452;
}
.tabbar .item.on .icon-home {
  background-image: url(../img/tabbar/home-active.png);
}
        /* home容器样式 */
     .icon-home {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            overflow: hidden;
            /* 使用background-image属性调入图片作为背景（logo），此处需替换为你实际的图片路径 */
            background-image: url('home-active.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            animation: rotate 5s linear infinite reverse;
        }

        /* 定义旋转动画关键帧 */
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
.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%;
}
/*CB61AA341A855DC8197DA9EBB0574E89*/
.tabbar .icon-home {
  background-image: url(../img/tabbar/home.png);
}
.tabbar .icon-category {
  background-image: url(../img/tabbar/logs.svg);
}
.tabbar .icon-user {
  background-image: url(../img/tabbar/user.svg);
}