workFrame.scss 2.18 KB
.containerFrame {
  height: 100%;
  width: 100%;
  position: sticky;
  top: 80px;
  border: 1px solid #ebeef5;
  z-index: 100;
  @include flex;
}

.leftmenu {
  width: 0;
  transition: all 0.3s;
  border-right: 1px solid #ebeef5;
  position: relative;
  box-sizing: border-box;
  padding-right: 5px;

  .title {
    line-height: 36px;
    padding-left: 10px;
  }

  ul {
    position: relative;

    .xian {
      background: #f2f2f2;
      padding: 2px;
    }

    .title {
      padding: 5px;
      text-align: center;
    }

    li {
      padding: 5px;
      font-size: 14px;
      line-height: 20px;
      cursor: pointer;
    }

    li:hover {
      color: #0f93f6;
      cursor: pointer;
    }
  }
}

.animation-map-drawer {
  width: 260px;
}

/deep/.el-tabs__header {
  margin-bottom: 0 !important;
}

/deep/.el-menu-item.is-active {
  background-color: #e7f4fe;
}

.leftCon {
  flex: 1;
  width: calc(100% - 260px);
  display: flex;
}

.splitScreen-con {
  flex: 1;
  width: 0;
}

.rightContainer {
  flex: 1;
  width: 0;
  height: calc(100vh - 80px);
}

/deep/.el-tabs {
  box-sizing: border-box;
  padding: 0 5px;
  width: 100%;
}

.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;
}

.map-drawer {
  width: 20px;
  height: 79px;
  position: absolute;
  top: 30%;
  z-index: 99;
  cursor: pointer;
}

.map-drawer-expand {
  background: url("../../../image/right.png");
  background-size: cover;
  right: 0%;
}

.map-drawer-click {
  background: url("../../../image/left.png");
  background-size: cover;
  left: 0%;
}

.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;
    }
  }
}