analysis.scss 3.99 KB
body {
  margin: 0 0;
  width: 100%;
  height: 100%;
  background: #071424;
  background-size: 100% 100%;
  border: 0px;
}

#mainDiv {
  width: 100%;
  height: 100%;
  background: #071424;
  background-size: 100% 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.guanbibtn {
  display: block;
  float: right;
  font-size: 14px;
  padding: 3px 12px;
  width: 24px;
  height: 24px;
  /* line-height: 30px; */
  text-align: right;
}

#analysis {
  position: relative;
  z-index: 1;
}

.date {
  width: 150px;
}

.tool-bar {
  display: flex;
  flex-wrap: nowrap;
  position: relative;

  .tool-group {
    .title {
      display: block;
      height: 30px;
      line-height: 30px;
      text-align: center;
      color: #00eef6;
      font-size: 14px;
      font-weight: inherit;
    }

    .btn-bar {
      display: flex;
      flex-wrap: nowrap;
      color: #fff;
      border-right: 1px solid rgba(255, 255, 255, 0.2);

      .iconfont {
        display: inline-block;
        font-size: 18px;
        padding: 10px 12px;
        text-align: center;
        cursor: default;

        .name {
          font-size: 12px;
          display: block;
        }
      }
    }
  }

  &:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 30px;
  }
}

.dialog {
  width: 240px;
  height: calc(100vh - 145px);
  box-sizing: border-box;
  position: absolute;
  //   top: 86px;
  bottom: 0px;
  right: 0px;
  overflow: auto;

  .title {
    font-weight: inherit;
    font-size: 14px;
    color: #00eef6;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    position: relative;
    background-color: #02061a;

    .iconfont {
      position: absolute;
      top: 0px;
      right: 10px;
    }
  }
}

.tiaojian {
  font-size: 12px;

  .filter-title {
    padding: 2px 10px;
    font-size: 12px;
    line-height: 1.5em;
    color: #fff;
    background-color: #071424;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .box {
    padding: 2px;
    color: #fff;

    /deep/ .el-form-item {
      margin: 0px;

      .el-form-item__label {
        padding: 0px;
        line-height: 35px;
        font-size: 12px;
      }

      .el-form-item__content {
        line-height: 35px;
        font-size: 12px;
      }

      .el-input__inner {
        height: 24px;
        background: transparent;
        line-height: 35px;
        font-size: 12px;
      }

      .el-radio-button {
        color: #fff;
        margin-right: 15px;
        box-shadow: none;

        .el-radio-button__inner {
          display: none;
        }

        &.is-active {
          color: #00eef6;
        }
      }

      .el-checkbox__label {
        font-size: 12px;
      }
    }

    /deep/ .layer-list {
      .el-form-item__label {
        display: block;
        float: none;
        font-size: 12px;
      }

      .el-form-item__content {
        margin-left: 30px !important;
        font-size: 12px;

        .el-checkbox {
          display: block;
          line-height: 25px;
        }
      }
    }

    .filter-list {
      color: inherit;
      padding: 10px 0px;
      cursor: default;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 12px;

      .li {
        line-height: 1.5em;
        display: flex;

        * {
          flex: 1;
          text-align: center;
        }

        .iconfont {
          font-size: 12px;

          &:hover {
            color: #00eef6;
          }
        }
      }
    }
  }

  .search-btn {
    background: linear-gradient(to bottom, #9a9da7, #02081f);
    width: 100%;
    box-sizing: border-box;
    line-height: 2em;
    border: none;
    color: #fff;

    &:focus {
      outline: none;
    }
  }

  .short-search-btn {
    background: linear-gradient(to bottom, #9a9da7, #02081f);
    width: 48%;
    box-sizing: border-box;
    line-height: 2em;
    border: none;
    color: #fff;

    &:focus {
      outline: none;
    }
  }
}