* { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: "Microsoft YaHei", "微软雅黑", "SimSun", "宋体", sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    line-height: 1.6;
  }
  .container {
    width: 100%;
    border: 1px solid #e0e0e0;
    position: relative;
  }
  /* 标题栏 */
  .header {
    padding: 12px 16px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 18px;
    position: relative;
    background: #fafafa;
  }
  .close-btn {
    position: absolute;
    right: 16px;
    top: 8px;
    font-size: 22px;
    color: #999;
    cursor: default;
    font-weight: normal;
    line-height: 1;
  }
  /* 区块通用 */
  .section {
    padding: 16px 0 8px 0;
    border-bottom: 1px solid #e8e8e8;
  }
  .section-title {
    font-size: 16px;
    font-weight: bold;
    padding: 0 16px 12px 16px;
    color: #333;
  }
  /* 信息网格 */
  .info-grid {
    padding: 0 16px 8px 16px;
  }
  .info-row {
    display: flex;
    margin-bottom: 10px;
  }
  .info-col {
    flex: 1;
    min-width: 0;
  }
  .info-label {
    font-weight: normal;
  }
  .info-value {
    color: #333;
  }
  /* 录入人单独一行 */
  .single-row {
    padding: 4px 16px 8px 16px;
  }

  /* Tab 栏 */
  .tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 8px;
    padding: 0;
    background: #fff;
  }
  .tab-item {
    padding: 12px 28px;
    font-size: 14px;
    color: #555;
    cursor: default;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
  }
  .tab-item.active {
    color: #29b6cc;
    border-bottom: 2px solid #29b6cc;
    font-weight: 500;
  }

  /* 表格 */
  .table-wrap {
    padding: 16px;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e8e8e8;
  }
  thead tr {
    background: #eef0fa;
  }
  th {
    padding: 12px 16px;
    text-align: center;
    font-weight: normal;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
  }
  th.shop-col {
    width: 45%;
    text-align: left;
  }
  th.item-col {
    width: 30%;text-align:right;
  }
  th.amount-col {
    width: 12%; text-align:right;
  }
  th.remark-col {
    width: 13%;
  }
  td {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #333;
  }
  td.shop-name {
    text-align: left;
  }
  td.item-name {
    text-align: right; padding-right:15px;
  }
  td.amount {
    text-align: right;
    padding-right: 20px;
  }
  td.remark {
    text-align: center;
  }
  /* 第一行高亮 */
  tbody tr.highlight td {
    background: #e8f8fc;
  }
  tbody tr {
    background: #fff;
  }
   tbody tr:hover td{background: #e8f8fc;}