.tabs{
  border: 1px solid #D0D9E1;
}
.tabs-row{
  display: flex;
}
.tabs-row > div{
  flex: 1;
  text-align: center;
  line-height: 2.8;
  color: var(--themeColor);
  border-left: 1px solid #D0D9E1;
  border-right: 1px solid #D0D9E1;
  transition: all 0.3s;
  cursor: pointer;
}
.tabs-row > div:first-child, .tabs-row > div:last-child{
  border-left: none;
  border-right: none;
}
.tabs-row > div.active{
  background-color: var(--themeColor);
  color: #fff;
}
.tabs-row > div:hover{
  background-color: var(--themeColor);
  color: #fff;
}
.title{
  display: flex;
  justify-content: space-between;
  font-size: max(20px, 2rem);
  font-weight: bold;
  margin-bottom: max(16px, 2rem);
  line-height: 1;
}
.title span {
  color: var(--themeColor);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid var(--activeColor);
}
.title img{
  width: max(18px, 1.5rem);
  height: auto;
  object-fit: contain;
}
.subTitle{
  font-size: max(18px, 1.3rem);
  color: #163C57;
  margin-bottom: max(16px, 1.5rem);
}
.showContent{
  padding: 40px 15px;
  display: none;
  animation-duration: 2s; /* 动画持续时间 */
}
.registerSearch .describe{
  font-size: max(16px, 1.2rem);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid #CCCCCC;
}
.registerSearch .form{
  margin-top: 2.2rem;
  margin-bottom: 4.9rem;
}
.registerSearch .form-row{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}
.registerSearch .form-row > div{
  flex: 1;
}
.registerSearch .form-row .form-label{
  color: #163C57;
  font-size: 18px;
}
.registerSearch .form-row .form-control, .registerSearch .form-row .form-select{
  background-color: #f4f4f4;
  min-height: 40px;
  font-size: max(15px, 1rem);
}
.registerSearch .form-row .form-check{
  margin-bottom: .5rem;
  font-size: 18px;
  color: #163C57;
}
.registerSearch .form .searchBtn{
  width: 100%;
  background-color: var(--themeColor);
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}
.downloadTable .table{
  border-radius: 10px;
  overflow: hidden;
  --bs-border-color: rgba(255, 255, 255, .4);
  max-width: 100%;
  overflow-x: auto;
}
.table thead th{
  background-color: var(--themeColor);
  color: #fff;
  font-weight: 400;
  font-family: T;
  padding: 1rem;
  font-size: 16px;
  white-space: nowrap;
}
.downloadTable .table tbody td{
  font-family: T;
  padding: .8rem;
  font-size: 16px;
  font-weight: 400;
}
.downloadTable .table .download{
  display: inline-block;
  width: max(22px, 2.1rem);
  cursor: pointer;
}
.downloadTable .table .colName{
  min-width: 250px;
}
.downloadTable .table .colCode{
  min-width: 80px;
}

#memberSelect{
  background-color: #f4f4f4;
  font-size: max(15px, 1rem);
}
.bootstrap-select .btn{
  font-size: max(15px, 1rem);
  height: 40px;
}
.bootstrap-select .dropdown-menu{
  max-height: 230px;
  font-size: max(15px, 1rem);
}
.bootstrap-select .btn .filter-option{
  display: flex;
  align-items: center;
}
@media screen and (max-width:768px){
  .downloadTable .table>:not(caption)>*>:last-child{
    position: sticky;
    right: 0;
  }
  .registerSearch .form-row{
    flex-direction: column;
    gap: 18px;
  }
}