ul {
      padding-inline-start: 0px;
  }

  ul,
  li {
      list-style-type: none;
  }
  /* 一层ul */
  .nativebar {
      width: 100%;
      display: flex;
      height: 40px;
      line-height: 25px;
      /* background: linear-gradient(45deg,rgba(254,172,94,0.5),rgba(199,121,208,0.5),rgba(75,192,200,0.5)); */
      //background-color: #00BCD4;
      cursor:pointer;
  }
  /* 禁用类 */
  .nativebar>.disabled {
      cursor: not-allowed;
      opacity: 0.5;
  }
  /* 一层li */
  .nativebar>.nativebar-item {
      text-align: center;
      flex: 1;
  }
  .nativebar>.nativebar-item:hover{
     // color: #FFFFFF;
  }
  /* 二层ul */
  .nativebar>.nativebar-item>.innerNativebar {
      width: inherit;
  }
  /* 动画 */
  .nativebar>.nativebar-item>.animationOpacity {
      animation: opacity 0.5s linear;
      opacity: 1;
      font-size: 15px;
  }
  /* 二层li */
  .nativebar>.nativebar-item>.innerNativebar>.innerNativebar-item {
      width: inherit;
      //background-color: #00BCD4;
  }
  .nativebar>.nativebar-item>.innerNativebar>.innerNativebar-item:hover{
      opacity: 0.8;
  }


  @keyframes opacity {
      from {
          opacity: 0.2;
      }

      to {
          opacity: 1;
      }
  }
  * {
    /* mae */
  }