ywsq.scss 1.18 KB
.ywsq {
  display: flex;

  /deep/.el-collapse-item__header {
    padding-left: 20px;
    font-weight: 700;
    font-size: 16px;
  }

  .ywsq-left {
    width: 25%;

    .box-card {
      margin-bottom: 20px;
      cursor: pointer;
    }

    .item-title {
      font-size: 18px;
      font-weight: 700;
      padding: 20px;

      &:hover {
        background-color: $light-blue;
        color: $menuText;
      }
    }

    .item-list {
      padding: 0 20px 0 20px;

      .active {
        background-color: $light-blue;
        color: $menuText;
      }

      li {
        line-height: 36px;
        background-color: rgb(235, 235, 235);
        margin-top: 10px;
        padding-left: 10px;
        border-radius: 2px;
        box-sizing: border-box;
        border: 1px solid rgb(235, 235, 235);

        &:hover {
          background-color: $light-blue;
          color: $menuText;
        }
      }
    }
  }

  .ywsq-right {
    width: calc(75% - 20px);
    margin-left: 20px;

    .right-title {
      font-size: 18px;
      font-weight: 700;
      padding: 20px;
      border-bottom: 1px solid $borderColor;

      .type-content {
        padding: 20px;
        @include flex;
      }
    }
  }
}