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