.SixueContent {
  flex: 1;
  display: flex;
  flex-flow: column;
  overflow: hidden;
  padding: 0 12px;
  .SixueBreadcrumb {
    background: #fff;
    padding: 14px 24px;
    margin: 0 0 12px;
  }
  .SixueTab{
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    li{
      position: relative;
      display: inline-block;
      list-style: none;
      color: #999;
      padding: 0 24px;
      cursor: pointer;
      font-size: 13px;
      line-height: 40px;
      &:hover {
        color: #017aff;
      }
      &:before{
        position: absolute;
        border-radius: 0;
        width: 0;
        border-bottom: 2px solid #017aff;
        left: 50%;
        bottom: 0;
        content: "";
        transition: all .3s ease;
      }
      &.active{
        z-index: 1;
        font-weight: bold;
        color: #333;
        &:before{
          width: 100%;
          left: 0;
        }
      }
    }
  }
  .SixueScroll {
    flex: 1;
    overflow: auto;
    .scrollNode {
      background: #fff;
      padding: 20px 24px;
      min-height: 100%;
      &.backgroundNo{
        background: transparent;
        padding: 0;
      }
    }
  }
  .placeholderF{
    position: relative;
    width: 100%;
    height: 12px;
    &:before{
      position: absolute;
      top: 0;
      left: 12px;
      right: 12px;
      height: 12px;
      background: transparent;
      content: ''
    }
  }
}
