workFrame.scss 1.91 KB

#ContainerFrame {
    height: 100%;
    width: 100%;
    position: sticky;
    top: 80px;
    //background-color: #ffffff;
    border: 1px solid #ebeef5;
    z-index: 100;
    @include flex;
  }
  
  #leftmenu {
    width: 250px;
    border-right: 1px solid #ebeef5;
    position: relative;
    box-sizing: border-box;
    ul {
      position: relative;
      .xian {
        background: #f2f2f2;
        padding: 2px;
      }
      .title {
        padding: 5px;
        text-align: center;
      }
      li {
        padding: 5px;
        font-size: 14px;
        color: #606266;
        line-height: 20px;
      }
      li:hover {
        color: #0f93f6;
        cursor: pointer;
      }
    }
  }
  #rightContainer {
    .tabDiv {
      width: 100%;
      height: 100%;
    }
    // .fenpin {
    //   min-width: 50%;
    //   border-right: 1px solid #ebeef5;
    // }
    //padding:5px 0 0 15px;
    background-color: #ffffffe7;
    width: 100%;
    height: 100%;
    z-index: 100;
    @include flex;
  }
  
  .svg-icon {
    width: 2.5em;
    height: 2.5em;
  }
  .iconName {
    line-height: 24px;
    font-size: 12px;
  }
  .container {
    width: 100%;
    height: 100%;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow: hidden;
  }
  .topButton {
    @include flex;
    width: 100%;
    height: 80px;
    background-color: #3498db;
    color: #ffffff;
    justify-content: space-between;
    padding-left: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
  
    ul {
      @include flex;
  
      li {
        @include flex-center;
        cursor: pointer;
        flex-direction: column;
        margin-right: 15px;
        box-sizing: border-box;
        width: 70px;
        margin: 0 5px;
      }
  
      li:hover {
        border: 1px solid #ffffff;
        border-radius: 5px;
        //color: $light-blue ;
  
        .svg-icon {
          //color: $light-blue ;
        }
      }
    }
  }