index.less 918 Bytes
.quotationBox {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  .quotationNavigation {
    width: 30%;
    height: 100%;
    :global .adm-side-bar {
      background-color: #ebf2fd;
    }
  }
  .quotationContent {
    width: 70%;
    height: 100%;
    overflow-y: auto;
    .contentItem {
      width: 92%;
      height: 7.5rem;
      border-radius: 10px;
      background-color: #fff;
      margin: 0 auto;
      margin-bottom: 1rem;
      display: flex;
      padding: 0.625rem;
      .contentItemImg {
        width: 6rem;
        height: 6rem;
        border-radius: 10px;
      }
      .contentItemTitle {
        font-size: 1.1rem;
        color: #333;
        margin-left: 0.625rem;
        font-weight: 700;
      }
    }
    .nestedItems {
      .contentItem {
        background-color: '#333';
      }
    }
  }
}