:root {
  --page-bg: #eaf7ec; /* 浅绿色背景 */
  --max-width: 1200px;
  --gap: 20px;
  --border-1: #2fa86a;
  --border-2: #f59e0b;
  --border-3: #2563eb;
  --border-width: 1px; /* 粗边框 */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--page-bg);
}

.biaoge-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px 16px;
}

.biaoge-container {
  width: 100%;
  max-width: var(--max-width);
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
}

/* 每个表格卡片 */
.biaoge-table {
  background: #fff;
  margin-bottom: var(--gap);
  border: var(--border-width) solid;
  border-radius: 10px;
  overflow: hidden;
}

/* 不同表格的边框色 */
.biaoge-table--1 { border-color: var(--border-1); }
.biaoge-table--2 { border-color: var(--border-2); }
.biaoge-table--3 { border-color: var(--border-3); }

.biaoge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.biaoge-cell {
  padding: 16px;
  font-size: 14px;
  box-sizing: border-box;
}

.biaoge-label {
  font-weight: bold;
  flex: 0 0 160px;
}

.biaoge-desc {
  flex: 1;
}

.biaoge-desc-title {
  font-weight: bold;
  margin-bottom: 6px;
}

.biaoge-desc-sub {
  font-size: 13px;
  color: #666;
}

.biaoge-meta {
  flex: 0 0 120px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.biaoge-action {
  flex: 0 0 120px;
  text-align: right;
}

.biaoge-action button {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f8f8f8;
  cursor: pointer;
}

.biaoge-action button:hover {
  background: #eee;
}

/* 手机端自适应 */
@media (max-width: 768px) {
  .biaoge-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .biaoge-label,
  .biaoge-meta,
  .biaoge-action {
    flex: 1 1 100%;
    text-align: left;
  }
  .biaoge-action {
    margin-top: 10px;
  }
}