.mt-tab {
  font-size: .18rem;
  box-sizing: border-box;
  background: linear-gradient(180deg, #e5e5e5, #e5e5e5, rgba(229, 229, 229, 0)) bottom left no-repeat;
  background-size: 100% 1px;
  &-inner{
    width: 100%;
    display: flex;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
  }
  &-ink-bar {
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: left 0.3s cubic-bezier(0.35, 0, 0.25, 1) 0.09s;
    &-inner{
      display: block;
      background-color: #32c5bd;
      margin: auto;
      height: 100%;
      transition: width 0.3s cubic-bezier(0.35, 0, 0.25, 1);
    }
  }
}

.mt-tab-item {
  display: block;
  flex: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #888;
  &_active{
    color: #32c5bd;
  }
  &_disabled{
    color: #ccc;
  }
}
