
.fxm-tab-wrap {
  position: relative;
  .fxm-tabs-tab-bar-wrap{
    padding-right: 39px;
    background: #fff;
  }
  .fxm-tab-thumb {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: @tabs-height;
    height: @tabs-height;
    text-align: center;
    line-height: @tabs-height;
    background: #FFFFFF;
    box-shadow: -2px 0px 8px 0px rgba(0,0,0,0.08);
    svg {
      width: 20px;
      height: 20px;
      fill: #666;
      vertical-align: middle;
    }
  }
  .fxm-tab-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: @modal-zindex + 1;
    background-color: white;
    transform: translateY(-100%);
    transition: transform 250ms;
    padding-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    >span {
      float: left;
      display: block;
      width: 60px;
      text-align: center;
      margin: @v-spacing-lg @h-spacing-lg;
      color: fade(@color-text-base, 60%);
      >i {
        display: block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 60px;
        font-size: 18 * @hd;
        background-color: fade(@brand-primary, 20%);
        color: @brand-primary;
        margin-bottom: 10 * @hd;
      }
    }
    &.fxm-tab-list-visible {
      transform: translateY(0);
    }
  }
  .fxm-tab-modal {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: @modal-zindex;
    background-color: @fill-mask;
  }
  .fxm-tab-item-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: #75bee5;
    margin: 5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    svg {
      width: 15px;
      height: 15px;
      fill: #fff;
      margin-left: auto;
      margin-right: auto;
    }
  }
  .fxm-tab-item {
    width: 85px;
    height: 92px;
    display: flex;
    flex-direction: column;
  }
  .fxm-tab-item-title {
    text-align: center;
  }
}
