/* 表格容器 */
.basic-info-list {
  width: 100%;
  margin: 15px 0;
  font-family: sans-serif;
}

/* 表格项 */
.bsc-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* 最后一项去除下边框 */
.bsc-item:last-child {
  border-bottom: none;
}

/* 标签样式 */
.bac-item-label {
  flex: 0 0 30%;
  padding: 0 10px;
  font-weight: 600;
  color: #333;
}

/* 值样式 */
.bac-item-value {
  flex: 0 0 70%;
  padding: 0 10px;
  color: #666;
}

/* 全宽项调整 */
.bsc-item.full .bac-item-label {
  flex-basis: 20%;
}
.bsc-item.full .bac-item-value {
  flex-basis: 80%;
}

/* 响应式适配 */
@media (max-width: 600px) {
  .bsc-item {
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 8px;
  }
  .bac-item-label,
  .bac-item-value,
  .bsc-item.full .bac-item-label,
  .bsc-item.full .bac-item-value {
    flex-basis: 100%;
    padding: 0;
  }
}