quotationDetail.less 4.87 KB
.quotationDetailBox {
  padding: 16px !important;
  // height: 100%;
  background-color: #fff;
  // min-height: 100vh;
}
.customer {
  margin-top: 8px !important;
  font-size: 15px !important;
  font-weight: 550;
  .label {
     white-space: nowrap;        /* 强制不换行 */
    overflow: hidden;           /* 隐藏溢出内容 */
    text-overflow: ellipsis;    /* 显示省略号 */
  }
  :global .adm-input-element {
    border: 1px solid #dededf;
    height: 40px !important;
    margin: 8px 0;
    border-radius: 5px;
  }
  .sizeBox {
    display: flex;
    align-items: center;

    .sizeItem {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }
}
.sizeBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  .customer {
    width: 32%;
  }
}
.tabs-wrapper {
  display: flex;
  align-items: center;
}
.tab-content {
  width: 48px !important;
}
.quotationTab {
  :global .adm-selector-item {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
.svgBox {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.svgBox1 {
  display: flex;
  // align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 240px !important;
  overflow: hidden;
}
.materialsLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
 
}
.materialBtns {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 16px;
  }
.selectInput {
  :global .adm-input-element {
    border: 1px solid #dededf;
    height: 40px !important;
    margin: 8px 0;
    border-radius: 5px;
  }
}
.tableBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  .tableHeader {
    // flex: 1;
    width: 16%;
    font-size: 15px !important;
    text-align: center;
    font-weight: 700;
    padding: 0 1px;
  }
  .tableBody {
    // flex: 1;
    width: 16%;
    overflow: hidden;
    font-size: 10px !important;
    // min-height: 40px;
    // line-height: 40px;
    text-align: center;
    // overflow-wrap: break-word;
    // word-wrap: break-word;
    padding: 0 1.5px;
  }
}
.boxListBody {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f3f3f3;
  padding: 16px !important;
  margin-bottom: 8px !important;
  border-radius: 3px !important;
}
:global .adm-input-element:read-only {
  background-color: #f1f2f8 !important;
}
.backBox {
  display: flex;
  align-items: center;
  margin: 8px 0;
  height: 53px !important;
  font-size: 16px;
  // justify-content: space-between;
  .backEnd {
    width: 40px !important;
  }
}
.projectBtn {
  align-items: center;
  justify-content: space-between;
}
.boxTitle {
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 16px !important;
  margin-top: 16px !important;
  border-bottom: 1px solid #dededf;
}
.quotationBody {
  font-size: 20px !important;
  .line {
    width: 100%;
    height: 1px;
    margin-top: 16px !important;
    background-color: #dededf;
  }
}
.tabsBox {
  position: relative;
  width: 100%;
  .tabAddBtn {
    position: absolute;
    right: 0;
    top: 20px;
  }
  .tabClearBtn{
    position: absolute;
    right: 0;
    top: 0;
  }
  // .tabTitle{
  //   display: flex;
  //   align-items: center;
  //   position: relative;
  // }
}
.materialsBox{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.addTabs{
  height: 192px !important;
  padding: 16px !important;
  position: relative;
  :global .adm-input-element{
    height: 48px !important;
    border: 1px solid #dededf;
  }
  .addTabsBtn{
    position: absolute;
    right: 5%;
    bottom: 10%;
  }
}
.processFlex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  .processBtn{
    margin-left: 16px !important;
  }
}
.materialsBtns{
  display: flex;
  flex-wrap: wrap;
  margin-left: 16px !important;
  margin-top: 24px !important;
}
.materialBox{
  .materialsBtns{
    display: flex;
    flex-wrap: wrap;
    margin: 0 !important;
  }
}
.CollapseBox {
  :global .adm-list-item-content .adm-list-item-content-main{
    font-weight: 700;
    font-size: 20px;
  }
  :global .adm-list-item{
    padding: 0;
  }
}
/* 外层容器:允许横向滚动 */
.tabsContainer {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabsContainer::-webkit-scrollbar {
  display: none;
}

/* Tab 内容样式 */
.tabTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px; /* 左右留白 */
  width: 100%; /* 占满 Tab 容器 */
  white-space: nowrap;
  // overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.tabText {
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.closeIcon {
  // margin-left: 8px;
  flex-shrink: 0;
  cursor: pointer;
  color: #999;
  position: absolute;
  right:  -10px;
  top: 0;
  z-index: 99;
}