custom-service.scss 1.77 KB


.content {
  display: flex;
  margin: 28px auto;
  position: relative;
}

.left-panel {
  width: 220px;
  margin-right: $marginMedium;

  .separator {
    margin: auto;
    width: 195px;
    height: 1px;
    background-color: #dcdddd;
  }

  .menu-item {
    position: relative;
    @extend .bb;
    padding: 18px 0;
    font-weight: bold;
    color: $cFontGray;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: solid 1px #dcdddd;
    width: 195px;

    .icon-wrap {
      @extend .bb;
      padding-left: 0px;
      width: 40px;

      .icon {
        max-height: 28px;
      }
    }

    .tit {
      flex: 1;
      @extend .bb;
      padding: 0 0px;
      text-align: left;
      word-wrap: break-word;
      font-size: 18px;
    }

    .sel {
      position: absolute;
      width: 8px;
      height: 17px;
      top: 0;
      bottom: 0;
      // right: 0;
      right: -12px;
      margin: auto 0;
      background: url("~@/assets/images/insurance-query/triangle.png") no-repeat center center;
      @extend .bis;
    }

    .sel-first {
      margin: 0;
    }

    &:first-child {
      padding: 0 0 18px;
    }

    &:last-child {
      border-bottom: none;
    }

  }

  .activity {
    color: $cOrange;
  }
}

.right-panel {
  // max-width: 972px;
  width: 972px;
  background-color: #ffffff;

  .panel {
    // display: none;
  }

  .activity {
    display: block !important;
  }
}

.empty-line {
  height: 16px;
}


@media (max-width: 1200px) {
  .content {
    @include content-percent();
  }

  .left-panel {
    display: none;
  }

  .right-panel {
    margin: 0 auto;
    // width: auto;
  }
}

@media (max-width: 768px) {
  .content {
    @include content-percent();
    margin: 0 auto 16px;
  }
}