.tabs{
  border: 1px solid #D0D9E1;
}
.tabs-row{
  display: flex;
}
.tabs-row > div{
  flex: 1;
  color: var(--themeColor);
  border-right: 1px solid #D0D9E1;
  transition: all 0.3s;
  cursor: pointer;
  padding: 6px max(2px,0.5rem);
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.tabs-row > div:last-child{
  border-right: none;
}
.tabs-row > div.active{
  background-color: var(--themeColor);
  color: #fff;
}
.tabs-row > div:hover{
  background-color: var(--themeColor);
  color: #fff;
}
.container:not(.tabs-row){
  padding-left: 15px;
  padding-right: 15px;
}
.showContent{
  display: none;
}
.form-row > div{
  flex: 1;
}
.form-row{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}
.form-row .form-label{
  color: #163C57;
  font-size: 18px;
}
.form-row .form-control, .form-row .form-select{
  background-color: #f4f4f4;
  min-height: 40px;
  font-size: max(15px, 1rem);
}
.form-row .form-check{
  margin-bottom: .5rem;
  font-size: 18px;
  color: #163C57;
}
.form .btn{
  width: 100%;
  background-color: var(--themeColor);
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}
#calendarControl{
  cursor: pointer;
}
.overview-table{
  margin-top: max(20px, 2.5rem);
  margin-bottom: max(14px, 1.8rem);
}
.table thead th{
  background-color: var(--themeColor);
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  padding: 1rem;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
.table tbody td{
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
}

/* 公开喊价 */
.gold-contract{
  background-image: url('../images/gold2.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4.5rem 0;
}
.gold-contract .desc{
  color: #fff;
  font-size: 16px;
}
.gold-contract .table-responsive{
  margin-top: 4rem;
}
.gold-contract .table-striped>:not(caption)>*>*{
  --bs-table-striped-bg: #0D2434;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}
.description{
  display: flex;
  margin-bottom: max(14px, 3.5rem);
}
.description-image{
  width: 45%;
  object-fit: cover;
  margin-bottom: 12px;
}
.description-left{
  width: 55%;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.description-text{
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.description-left .description-notify{
  margin-top: 4rem;
}
.description-left .description-notify p{
  font-size: 16px;
  color: var(--themeColor);
}
.calendarIcon{
  width: 24px;
  height: auto;
}
.date-input{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--themeColor);
}
.date-input input{
  width: 32%;
  background-color: transparent;
  text-align: center;
}

@media screen and (max-width:768px){
  .tabs{
    border: none;
  }
  .tabs-row{
    width: 100%;
    max-width: none;
    padding: 0;
    flex-wrap: wrap;
  }
  .tabs-row > div{
    width: calc(100% / 4); 
    flex: 0 auto;
    border-bottom: 1px solid #D0D9E1;
    height: 55px;
    white-space: normal;
  }
  .tabs-row > div:last-child{
    border-right: 1px solid #D0D9E1;
  }
  .description{
    flex-direction: column-reverse;
  }
  .description-image{
    width: 100%;
    margin-bottom: 12px;
  }
  .description-left{
    padding-right: 0;
    width: 100%;
  }
  .form-row{
    flex-direction: column;
    gap: 24px;
  }
  .form .btn{
    margin: 30px 0;
  }
  .title{
    margin: 35px 0 25px;
  }
}

