/* 极简 ERP 自定义样式 */
html, body { background: #f7f8fa; -webkit-tap-highlight-color: transparent; }
* { box-sizing: border-box; }

.page { padding-bottom: 60px; min-height: 100vh; }

/* 首页统计卡片 */
.stat-grid { display: flex; flex-wrap: wrap; gap: 10px; padding: 12px; }
.stat-card {
  flex: 1 1 44%;
  background: #fff; border-radius: 10px; padding: 14px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.stat-card .num { font-size: 22px; font-weight: 600; color: #323233; }
.stat-card .label { font-size: 12px; color: #969799; margin-top: 2px; }
.stat-card.accent .num { color: #ee0a24; }
.stat-card.blue .num { color: #1989fa; }

.quick-grid { display: flex; flex-wrap: wrap; background: #fff; border-radius: 10px; margin: 0 12px; padding: 8px 0; }
.quick-item { width: 25%; text-align: center; padding: 10px 0; cursor: pointer; }
.quick-item .van-icon { font-size: 26px; color: #1989fa; }
.quick-item .txt { font-size: 12px; color: #646566; margin-top: 4px; }

.block-title { padding: 14px 16px 6px; font-size: 13px; color: #969799; }

/* 单据明细行 */
.item-row { display: flex; align-items: center; padding: 6px 0; }
.item-row .grow { flex: 1; min-width: 0; }
.item-row .name { font-size: 14px; color: #323233; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-row .sub { font-size: 12px; color: #969799; }

.amount { color: #ee0a24; font-weight: 600; }

/* 登录页 */
.login-wrap { display: flex; flex-direction: column; justify-content: center; min-height: 100vh; padding: 0 28px; }
.login-logo { text-align: center; margin-bottom: 30px; }
.login-logo .t1 { font-size: 26px; font-weight: 700; color: #1989fa; }
.login-logo .t2 { font-size: 13px; color: #969799; margin-top: 6px; }

/* tabbar 占位 */
.tabbar-holder { height: 50px; }

.nodata { text-align: center; color: #c8c9cc; padding: 50px 0; font-size: 13px; }

/* 筛选条 */
.filter-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
}
.month-input {
  border: 1px solid #ebedf0; border-radius: 6px; background: #fff;
  padding: 5px 10px; font-size: 14px; color: #323233; outline: none;
}
.filter-total { margin-left: auto; font-size: 13px; color: #646566; }
