    /*手机底部bar导航*/
    * {
      margin: 0;
      padding: 0;
    }
    a {
      line-break: normal;
      text-decoration: none;
    }
    ul li {
      list-style: none;
    }
    .footer {
      position: fixed;
      width: 100%;
      height: 60px;
      bottom: 0;
      left: 0;
      box-sizing: border-box;
      box-shadow: 0 0 10px 1px rgba(0,0,0,0.2);
      border-top: 1px solid #cccccc;
      display: none;
      background: #ffffff;
      z-index: 999999;
      overflow: hidden;
    }
    .footer ul {
      display: flex;
      height: 100%;
      align-items: center;
      justify-content: space-between;
    }
    .footer ul li {
      flex: 4;
      
    }
    .footer ul li a {
      display: flex;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 16px;
    }
    .footer ul li img {
      display: block;
      width: 26px;
      margin: auto;
    }
    .footer ul li p {
      font-size: 12px;
      text-align: center;
      margin-top: 4px;
    }
    .footer ul li.active p {
      color: red;
    }