
html, body, body > div {
    width: 100%;
    height: 100%;
  }
  .scroll {
    width: 100%;
    height: 100%;
    overflow: hidden scroll;
  }
  
  .scroll .scroll-item {
    background: red;
    margin-top: 20px;
  }
  .scroll .scroll-item:first-child {
    margin-top: 0px;
  }
  
  
  .dfbz-config-table .config-table-item:first-child .dfbz-config-table-collapse-button{
    display: none;
  }
  
  .dfbz-config-table .config-table-item:first-child .table-title > tr > td{
    font-size: 28px !important;
    padding-bottom: 36px !important;
  }
  
  .dfbz-config-table .config-table-item:first-child > tbody > tr:first-child td{
    font-size: 17px !important;
    color: black !important;
    font-weight: bold !important;
  }
  
  .dfbz-config-table .config-table-item > tbody > tr:nth-child(odd) {
    background-color: #f7f7f7;
  }
  
  .dfbz-config-table .config-table-item:first-child > tbody > tr:nth-child(odd) {
    background-color: transparent;
  }
  
  .dfbz-config-table .dfbz-config-table-collapse-button {
    float: left;
    position: relative;
    width: 17px;
    height: 17px;
    border: 1px solid black;
    margin: 4px 0 0 15px;
    cursor: pointer;
  }
  
  .dfbz-config-table .dfbz-config-table-collapse-button::before,
  .dfbz-config-table .dfbz-config-table-collapse-button::after {
    position: absolute;
    content: "";
    display: block;
    width: 9px;
    height: 1px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
  }
  
  .dfbz-config-table .dfbz-config-table-collapse-button::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .dfbz-config-table .dfbz-config-table-collapse-button.close::after {
    width: 0;
  }
  
  @media screen and (max-width: 750px) {
  
    .dfbz-config-table .config-table-item:first-child .table-title > tr > td{
      font-size: 46px !important;
      padding-bottom: 50px !important;
    }
  
    .dfbz-config-table .config-table-item:first-child > tbody > tr:first-child td{
      font-size: 28px !important;
    }
  
    .dfbz-config-table {
      padding: 0 32px;
    }
  
    .dfbz-config-table .dfbz-config-table-collapse-button {
      border: 2px solid black;
      width: 26px;
      height: 26px;
      margin: 6px 0 0 20px;
    }
  
    .dfbz-config-table .dfbz-config-table-collapse-button::before,
    .dfbz-config-table .dfbz-config-table-collapse-button::after {
      width: 15px;
      height: 2px;
    }
  
  }
  
  
  .collapse-transition{ 
    transition: height 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  }
  
  .config-table {
    --tableBorder: 1px solid #e8e8e8;
    position: relative;
    height: 100%;
  }
  
  .config-table .table-title-text {
    float: left;
  }
  
  .config-table-item {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    word-break: break-all;
  }
  
  .config-table-item,
  .config-table-item td,
  .config-table-item th {
    border: var(--tableBorder);
  }
  .config-table-item {
    border-bottom: none;
  }
  
  .config-table-item:last-child {
    border-bottom: var(--tableBorder);
  }
  
  .config-table-item .config-table-desc-td {
    padding: 0;
    border-bottom: none;
  }
  
  
  .config-table-desc {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    border: none;
  }
  
  .config-table-desc tr td {
    border-right: none;
  }
  
  .config-table-desc tr:first-child td {
    border-top: none;
  }
  .config-table-desc tr:last-child td {
    border-bottom: none;
  }
  .config-table-desc tr:first-child td:first-child {
    border-left: none;
    border-bottom: none;
  }
  .config-table-desc tr td:last-child {
    border-right: none;
  }
  
  .config-table-desc .config-table-desc-item {
    box-sizing: border-box;
  }
  
  .dfbz-select {
    position: relative;
    height: 70px;
    width: 356px;
    line-height: 70px;
    padding-right: 60px;
    font-weight: bold;
    font-size: 30px;
    border: 1px solid #97989a;
  }
  
  .dfbz-select::after {
    top: 50%;
    right: 40px;
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 4px solid #00a3e0;
    border-top: none;
    border-right: none;
    transform: translate(0, -50%) rotate(-45deg);
  }
  
  .dfbz-select .dfbz-select-text {
    padding: 0px 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .dfbz-select .dfbz-select-text__inner-select {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
  }
  