ywsq.scss 2.52 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 {
        cursor: pointer;
        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);
        transition: all 0.3s;

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

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

    .right-type {
      margin-bottom: 20px;
    }

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

    }

    .cactive {
      background-color: $green;
      color: $menuText;
    }

    .type-content {
      @include flex;
      justify-content: space-between;
      padding: 0 20px;
      margin: 50px 0;

      li {
        width: 23.5%;
        height: 50px;
        line-height: 50px;
        border: 1px solid $borderColor;
        border-radius: 5px;
        box-sizing: border-box;
        padding-left: 10px;
        cursor: pointer;
        transition: all 0.3s;
      }
    }

    .right-situation {
      ul {
        padding: 20px;
        @include flex;
        flex-wrap: wrap;
        margin-left: -20px;
        justify-content: space-between;

        li {
          width: 31%;
          height: 50px;
          border: 1px solid $borderColor;
          @include flex;
          justify-content: space-between;
          margin-left: 20px;

          p {
            @include flex-center;
          }



          p:nth-child(1) {
            flex: 1;
            width: 100%;
            padding: 3px;
          }

          p:nth-child(2) {
            width: 50px;
            height: 50px;
            border-left: 1px solid $borderColor;
            cursor: pointer;
          }

          i {
            font-size: 24px;
          }
        }
      }
    }
  }
  .right-btn{
    text-align: center;
    margin-top: 20px;
  }
}