* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f4f6f8;
  color: #17202a;
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

.shell {
  min-height: 100vh;
  padding: 24px;
}

.workspace {
  display: flex;
  gap: 18px;
  min-height: calc(100vh - 48px);
}

.side-panel {
  flex: 0 0 320px;
}

.main-panel {
  flex: 1 1 auto;
  min-width: 0;
}

.side-panel,
.main-panel {
  background: #ffffff;
  border: 1px solid #d9e0e7;
  border-radius: 8px;
}

.toolbar,
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table-wrap,
.detail-table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  border-bottom: 1px solid #d9e0e7;
  padding: 11px 12px;
  white-space: nowrap;
}

th {
  background: #eef2f6;
  color: #344054;
  text-align: left;
}

.num {
  text-align: right;
}

.center {
  text-align: center;
}
