:root {
  --bg: #f5f7fa;
  --page: #ffffff;
  --line: #e8edf5;
  --line-dark: #dbe3ef;
  --text: #1f2d3d;
  --muted: #8a95a7;
  --blue: #2f81f7;
  --blue-deep: #3a4a5d;
  --nav: #364454;
  --nav-light: #445568;
  --orange: #f6a23a;
  --green: #67c23a;
  --purple: #8a62f2;
  --danger: #f56c6c;
  --shadow: 0 8px 24px rgba(31, 45, 61, 0.08);
  --radius: 8px;
  --font: "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

body {
  min-width: 1360px;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.prototype-shell {
  padding: 20px 24px 36px;
}

.prototype-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 16px;
}

.prototype-header h1 {
  font-size: 24px;
  margin-bottom: 6px;
}

.prototype-header p {
  color: var(--muted);
  font-size: 13px;
}

.prototype-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prototype-tab {
  border: 1px solid var(--line-dark);
  background: #fff;
  color: #516177;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
}

.prototype-tab.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.screen {
  display: none;
}

.screen.is-active {
  display: block;
}

.modal-page {
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title-wrap h2 {
  font-size: 16px;
}

.save-hint {
  color: var(--muted);
  font-size: 12px;
}

.icon-button {
  border: 0;
  background: transparent;
  color: #98a3b3;
  font-size: 18px;
  cursor: pointer;
}

.modal-body {
  padding: 10px 16px 20px;
}

.upload-entry {
  height: 38px;
  border: 1px solid #cfe0fb;
  background: #eef5ff;
  color: #6885b2;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 14px;
}

.link-action,
.link-line-button,
.table-link {
  border: 0;
  background: transparent;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
}

.form-section {
  margin-bottom: 14px;
}

.form-section.no-top-space {
  margin-top: 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 3px solid var(--blue);
}

.section-label small {
  color: var(--muted);
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.form-item {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: #5e6b7e;
}

.form-item-wide {
  grid-column: 1 / -1;
}

.short-width {
  max-width: 360px;
}

.purchase-mode-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mode-card {
  border: 1px solid var(--line-dark);
  background: #f8fbff;
  border-radius: 8px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.mode-card.is-active {
  border-color: var(--blue);
  background: #eef5ff;
}

.mode-card-head {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.mode-card p {
  color: #6f7e93;
  line-height: 1.7;
}

.import-notice-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid #d8e7ff;
  border-radius: 6px;
  background: #f5f9ff;
  color: #63748c;
  font-size: 12px;
}

.primary-text-button {
  height: 28px;
  padding: 0 12px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  white-space: nowrap;
}

.field-box,
.filter-box,
.simple-filter,
.textarea-box,
.read-box,
.nav-search {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: #fff;
  padding: 0 12px;
  color: #a0a9b7;
}

.field-select {
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.field-select::after {
  content: "▾";
  color: #8e98a9;
}

.helper-copy,
.sub-text,
.muted-text,
.modal-title-wrap .save-hint,
.approval-card p,
.approval-card span,
.product-line p,
.read-box,
.track-row p,
.upload-panel p {
  color: var(--muted);
}

.section-title-row,
.table-top-actions,
.table-footer-row,
.footer-left-actions,
.footer-summary,
.modal-footer,
.footer-button-group,
.footer-link-group,
.approval-filter-row,
.approval-card-head,
.detail-top-row,
.detail-switch,
.detail-title-row,
.panel-card-head,
.order-top-header,
.top-inline-actions,
.modal-title-wrap,
.inline-detail-head,
.purchase-list-footer {
  display: flex;
  align-items: center;
}

.section-title-row,
.table-footer-row,
.modal-footer,
.detail-top-row,
.detail-title-row,
.panel-card-head,
.order-top-header,
.purchase-list-footer {
  justify-content: space-between;
}

.table-top-actions,
.footer-left-actions,
.footer-summary,
.footer-button-group,
.footer-link-group,
.detail-switch,
.top-inline-actions {
  gap: 10px;
}

.mini-button,
.outline-button,
.ghost-button,
.primary-button,
.switch-button,
.type-option {
  border-radius: 4px;
  cursor: pointer;
}

.mini-button {
  border: 1px solid var(--line);
  background: #fafbfd;
  color: #b1b8c5;
  font-size: 12px;
  padding: 6px 10px;
}

.mini-button.is-disabled {
  opacity: 0.7;
}

.table-frame {
  border: 1px solid var(--line);
  overflow: hidden;
}

.dialog-card .table-frame {
  border-radius: 8px;
}

.table-core {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table-core th,
.table-core td {
  border-bottom: 1px solid var(--line);
  padding: 9px 10px;
  font-size: 12px;
  vertical-align: top;
  text-align: left;
}

.table-core thead th {
  background: #f6f8fb;
  color: #66758b;
  font-weight: 500;
}

.table-core tbody tr:last-child td {
  border-bottom: 0;
}

.product-line {
  display: flex;
  gap: 10px;
}

.product-thumb {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, #7ab0ff, #2f81f7);
  flex: 0 0 auto;
}

.product-thumb.is-dark {
  background: linear-gradient(135deg, #46586e, #202d3d);
}

.price-pair {
  display: grid;
  gap: 4px;
}

.price-cost {
  color: #f39a2c;
}

.price-tag {
  color: #63b04d;
}

.radio-group {
  display: flex;
  gap: 6px;
}

.radio-chip {
  position: relative;
  padding-left: 18px;
  color: #6e7989;
}

.radio-chip::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #c5d0df;
  background: #fff;
}

.radio-chip.is-active::before {
  border-color: var(--blue);
  background: radial-gradient(circle at center, var(--blue) 0 45%, #fff 46% 100%);
}

.action-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a6afbc;
  white-space: nowrap;
}

.table-icon-action {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #a6afbc;
  cursor: pointer;
}

.table-icon-action:hover {
  background: #f3f7fd;
  color: #6f7f95;
}

.table-icon-action svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.sub-row {
  background: #fff;
}

.purchase-entry-cell {
  text-align: center;
}

.purchase-row-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.purchase-row-label {
  white-space: nowrap;
}

.sub-text-inline {
  white-space: nowrap;
}

.sub-text-nowrap {
  white-space: nowrap;
}

.outline-button {
  height: 28px;
  padding: 0 12px;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.procurement-detail-row td {
  background: #fbfcff;
}

.inline-detail-bar {
  display: grid;
  gap: 8px;
}

.inline-detail-head {
  gap: 12px;
  font-size: 12px;
  color: #6a7890;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 10px;
  background: #eef5ff;
  color: var(--blue);
}

.inline-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-detail-list span,
.approval-procurement-items span {
  padding: 5px 8px;
  background: #fff;
  border: 1px solid #e2eaf8;
  border-radius: 4px;
  color: #4f617b;
  font-size: 12px;
}

.table-footer-row {
  padding: 10px 0 0;
}

.footer-summary {
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
}

.footer-summary strong {
  color: var(--text);
}

.flow-block {
  display: flex;
  gap: 30px;
  padding: 4px 0 0;
}

.vertical-flow {
  flex-direction: column;
  gap: 14px;
}

.flow-node {
  position: relative;
  display: grid;
  gap: 4px;
  font-size: 12px;
  color: #6a7890;
  padding-left: 16px;
}

.flow-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.flow-node.is-blue::before {
  background: var(--blue);
}

.flow-node.is-purple::before {
  background: var(--purple);
}

.flow-node.is-orange::before {
  background: var(--orange);
}

.flow-node.is-green::before {
  background: var(--green);
}

.modal-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}

.ghost-button {
  min-width: 72px;
  height: 32px;
  background: #fff;
  border: 1px solid var(--line-dark);
  color: #67768c;
}

.primary-button {
  min-width: 72px;
  height: 32px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
}

.app-page {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  min-height: 780px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.left-nav {
  background: var(--nav);
  color: #dce4ef;
  padding: 14px 10px;
}

.nav-search {
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
  border-color: transparent;
  color: rgba(255, 255, 255, 0.65);
  justify-content: center;
  margin-bottom: 14px;
}

.nav-search.is-dark {
  margin-top: 10px;
}

.nav-menu {
  display: grid;
  gap: 8px;
  font-size: 12px;
}

.nav-menu span {
  padding: 8px 10px;
  border-radius: 4px;
}

.nav-menu span.is-active {
  background: rgba(255, 255, 255, 0.14);
}

.nav-menu.dark span.is-active {
  background: rgba(255, 255, 255, 0.2);
}

.app-main {
  background: #fff;
}

.app-toolbar {
  height: 42px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 18px;
}

.toolbar-tabs {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.toolbar-tabs .is-active {
  color: var(--blue);
  font-weight: 600;
}

.approval-layout {
  display: grid;
  grid-template-columns: 196px 240px minmax(0, 1fr);
  min-height: 738px;
}

.approval-menu,
.approval-center-list {
  border-right: 1px solid var(--line);
  background: #fff;
}

.approval-menu {
  padding: 12px;
}

.approval-filter-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.filter-box {
  min-width: 100%;
  justify-content: space-between;
}

.simple-filter {
  min-width: 88px;
}

.approval-side-list {
  font-size: 12px;
}

.approval-side-group {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  color: #647386;
}

.approval-side-entry {
  height: 30px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  color: #55657d;
}

.approval-side-entry.is-active {
  background: #edf4ff;
  color: var(--blue);
}

.approval-center-list {
  background: #f7f9fc;
  padding: 12px;
}

.approval-card {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 12px;
  font-size: 12px;
}

.approval-card.is-active {
  border-color: var(--blue);
}

.status-tag {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
}

.status-tag.warning {
  background: #fff3e5;
  color: #ef9f37;
}

.approval-content {
  padding: 18px;
}

.detail-top-row {
  margin-bottom: 14px;
}

.detail-top-row h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.switch-button {
  height: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: #6d7a8d;
}

.switch-button.is-active {
  color: var(--blue);
  box-shadow: var(--shadow);
}

.detail-section {
  margin-bottom: 18px;
}

.detail-title-row {
  font-size: 12px;
  color: #66758b;
  margin-bottom: 12px;
}

.detail-title-mark {
  padding-left: 10px;
  border-left: 3px solid var(--blue);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.basic-detail-grid,
.mini-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  font-size: 12px;
  margin-bottom: 12px;
}

.basic-detail-grid div,
.mini-info-grid div {
  display: grid;
  gap: 4px;
}

.basic-detail-grid label,
.mini-info-grid label {
  color: var(--muted);
}

.detail-text-value {
  display: block;
  min-height: 24px;
  color: #334257;
  font-size: 14px;
  line-height: 1.7;
  padding-top: 2px;
}

.approval-file-card,
.attachment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f7fb;
  border-radius: 4px;
  padding: 10px 12px;
  width: 260px;
}

.attachment-item.is-empty,
.mobile-detail-attachment-item.is-empty {
  color: #8e9aac;
  background: #f7f9fc;
}

.file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ff6b6b;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
}

.approval-procurement-summary-row td {
  background: #fff;
}

.approval-procurement-row td {
  background: #fbfcff;
}

.approval-procurement-inline {
  min-height: 36px;
}

.approval-procurement-sale-cell {
  color: #99a5b5;
  font-size: 14px;
  white-space: nowrap;
}

.approval-procurement-line {
  display: grid;
  gap: 8px;
}

.approval-procurement-title {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.approval-procurement-title span {
  color: var(--muted);
  font-size: 12px;
}

.approval-procurement-detail-title {
  padding-top: 2px;
}

.approval-procurement-detail-title strong {
  color: #243446;
  font-size: 14px;
}

.approval-procurement-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #d9d9d9;
  margin: 0 auto 8px;
}

.left-nav-order {
  width: 100%;
}

.white-main {
  background: #f7f8fa;
  padding: 0 0 18px;
}

.order-top-header {
  padding: 12px 18px 8px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.order-top-header h2 {
  font-size: 22px;
  margin-bottom: 4px;
}

.order-top-header p,
.top-inline-actions {
  font-size: 12px;
  color: #6f7e93;
}

.order-tab-strip {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #67758b;
}

.order-tab-strip .is-active {
  color: var(--blue);
  font-weight: 600;
  position: relative;
}

.order-tab-strip .is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--blue);
}

.panel-card {
  margin: 16px 18px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.panel-card-head {
  padding: 10px 12px;
}

.purchase-list-table td,
.purchase-list-table th {
  white-space: nowrap;
}

.purchase-list-table th:nth-child(3),
.purchase-list-table td:nth-child(3) {
  width: 280px;
  max-width: 280px;
}

.product-ellipsis-cell {
  overflow: hidden;
}

.product-ellipsis-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.product-ellipsis-wrap.has-count .ellipsis-text {
  max-width: calc(100% - 62px);
}

.ellipsis-text {
  display: block;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-count-suffix {
  flex: 0 0 auto;
  color: #5f7088;
}

.item-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 10px;
  font-size: 12px;
  flex: 0 0 auto;
}

.item-tag-virtual {
  background: #eef9ef;
  color: #58a03d;
}

.item-tag-service {
  background: #eef9ef;
  color: #58a03d;
}

.item-tag.is-hidden {
  display: none;
}

.status-point {
  position: relative;
  padding-left: 10px;
}

.status-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-point.warning::before {
  background: var(--orange);
}

.status-point.success::before {
  background: var(--green);
}

.status-point.muted::before {
  background: #d66a6a;
}

.status-point.rejected {
  color: #d66a6a;
}

.status-point.rejected::before {
  background: #d66a6a;
}

.status-point.revoked {
  color: #8b97aa;
}

.status-point.revoked::before {
  background: #8b97aa;
}

.status-point.purchased {
  color: #3f9f62;
}

.status-point.purchased::before {
  background: #3f9f62;
}

.status-point.received {
  color: #2f81f7;
}

.status-point.received::before {
  background: #2f81f7;
}

.status-point.pending {
  color: #b88922;
}

.status-point.pending::before {
  background: #b88922;
}

.status-point.partial {
  color: #9b7cf3;
}

.status-point.partial::before {
  background: #9b7cf3;
}

.status-point.invalid {
  color: #7c8798;
}

.status-point.invalid::before {
  background: #7c8798;
}

.purchase-list-footer {
  justify-content: flex-end;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
}

.danger-text {
  color: var(--danger);
}

.table-action-cell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.mode-company .col-self-only {
  display: none;
}

.compact-summary {
  padding-top: 10px;
}

.textarea-box {
  min-height: 110px;
  align-items: flex-start;
  padding-top: 12px;
}

.input-area {
  width: 100%;
  resize: vertical;
  padding: 12px;
  line-height: 1.7;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: #fff;
}

.upload-panel {
  min-height: 128px;
  border: 1px dashed #d8e1ef;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #fff;
  text-align: center;
  color: #8996ab;
}

.upload-illustration {
  font-size: 28px;
}

.plain-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 22px;
  border-radius: 11px;
  font-size: 12px;
}

.plain-type.physical {
  background: #eef5ff;
  color: var(--blue);
}

.plain-type.virtual {
  background: #eef9ef;
  color: #58a03d;
}

.read-box {
  min-height: 72px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: #fff;
  padding: 12px;
  line-height: 1.8;
}

.attachment-list {
  display: grid;
  gap: 10px;
}

.approval-track {
  display: grid;
  gap: 18px;
}

.track-row {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

.track-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  flex: 0 0 auto;
}

.track-dot.is-blue {
  background: var(--blue);
}

.track-dot.is-purple {
  background: var(--purple);
}

.track-dot.is-orange {
  background: var(--orange);
}

.track-comment {
  margin-top: 8px;
  background: #f4f7fb;
  border-radius: 4px;
  padding: 10px 12px;
  color: #6c7b90;
  line-height: 1.7;
}

.dialog-mask {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 40, 0.28);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.dialog-mask.is-open {
  display: flex;
}

.dialog-mask-wide {
  z-index: 18;
}

.purchase-create-dialog {
  width: 980px;
  max-height: calc(100vh - 56px);
  overflow: auto;
}

.purchase-create-dialog .modal-page {
  border-radius: 10px;
}

.todo-page {
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 920px;
}

.todo-left-nav {
  background: #3e4d5e;
}

.avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d9d9d9;
  margin: 4px auto 18px;
}

.todo-main {
  background: #eef3fb;
}

.todo-topbar {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  background: #3e4d5e;
  color: #fff;
  font-size: 16px;
}

.todo-layout {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  min-height: 720px;
}

.todo-menu-panel {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 12px 8px;
}

.todo-detail-panel {
  padding: 12px 14px;
  background: #f6f8fc;
}

.todo-filter-item {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #566780;
  cursor: pointer;
  margin-bottom: 8px;
}

.todo-filter-item.is-active {
  background: #edf4ff;
  color: var(--blue);
}

.todo-filter-item em {
  font-style: normal;
}

.todo-empty-card.is-hidden {
  display: none;
}

.todo-detail-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.todo-status-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 11px;
  background: #fff3e5;
  color: #ef9f37;
  font-size: 12px;
}

.todo-status-tag.done {
  background: #eef9ef;
  color: #58a03d;
}

.todo-detail-card,
.todo-empty-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px 18px;
  box-shadow: 0 10px 28px rgba(48, 67, 96, 0.06);
}

.todo-empty-card {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.todo-card-list {
  display: grid;
  gap: 14px;
}

.todo-detail-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.todo-detail-head h2 {
  font-size: 20px;
}

.todo-detail-title-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.todo-task-card {
  border: 1px solid #e4ebf5;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  padding: 14px;
  margin-bottom: 14px;
}

.todo-task-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.todo-meta-block {
  min-height: 68px;
  padding: 10px 12px;
  border: 1px solid #e7edf6;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.todo-meta-block label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.todo-meta-block span {
  display: block;
  color: #243446;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.todo-inline-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.todo-inline-tag.is-hidden {
  display: none;
}

.todo-inline-tag-partial {
  background: #f4efff;
  color: #8b63f6;
}

.todo-inline-tag-full {
  background: #edf8f1;
  color: #2f9a5f;
}

.todo-product-section {
  border: 1px solid #e7edf6;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.todo-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #edf2f8;
  background: #f8fbff;
}

.todo-section-head strong {
  font-size: 14px;
  color: #2a3d53;
}

.todo-section-head span {
  color: #7e8ba0;
  font-size: 12px;
}

.todo-detail-actions {
  display: flex;
  justify-content: flex-end;
}

.todo-detail-actions .primary-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.todo-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.todo-product-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-right: 1px solid #edf2f8;
  border-bottom: 1px solid #edf2f8;
}

.todo-product-item:nth-child(2n) {
  border-right: 0;
}

.todo-product-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.todo-product-name-group {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.todo-product-name {
  font-size: 14px;
  color: var(--text);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.todo-product-qty {
  flex: 0 0 auto;
  color: #68798f;
  font-size: 12px;
  font-weight: 600;
}

.dialog-card {
  width: 620px;
  min-height: 520px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 45, 61, 0.18);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.confirm-dialog-card {
  width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(31, 45, 61, 0.18);
  padding: 28px 28px 22px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.confirm-dialog-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}

.confirm-dialog-icon.is-danger {
  background: #fff1f0;
  color: #e05a5a;
}

.confirm-dialog-icon.is-primary {
  background: #eef5ff;
  color: var(--blue);
}

.confirm-dialog-card h3 {
  font-size: 18px;
  color: #243446;
}

.confirm-dialog-card p {
  margin-top: 10px;
  color: #6c7b90;
  font-size: 14px;
  line-height: 1.7;
}

.confirm-dialog-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.import-dialog-card {
  width: 694px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 45, 61, 0.18);
  overflow: hidden;
}

.import-dialog-body {
  padding: 16px 24px 0;
}

.import-dialog-tipbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 16px;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 14px;
}

.import-dropzone {
  margin-top: 18px;
  min-height: 322px;
  border: 1px dashed #cfd8e6;
  border-radius: 8px;
  background: #fbfcff;
  display: grid;
  place-items: center;
  text-align: center;
}

.import-dropzone-illustration {
  position: relative;
  width: 160px;
  height: 120px;
  margin: 0 auto 18px;
}

.import-dropzone-folder {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 8px;
  height: 62px;
  border: 3px solid #6b747f;
  border-top-width: 2px;
  border-radius: 4px;
  background: #fff;
  transform: skewX(16deg);
  box-shadow: 18px -6px 0 #2f81f7;
}

.import-dropzone-folder::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -20px;
  width: 44px;
  height: 22px;
  border: 3px solid #6b747f;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #fff;
  transform: skewX(-16deg);
}

.import-dropzone-arrow {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: #f5a623;
  font-size: 42px;
  font-weight: 700;
  line-height: 46px;
}

.import-dropzone p {
  color: #4b586b;
  font-size: 14px;
}

.import-dialog-footer {
  padding: 18px 18px 18px 24px;
}

.import-error-dialog-card {
  width: 694px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(31, 45, 61, 0.18);
  overflow: hidden;
}

.import-error-dialog-body {
  padding: 16px 24px 0;
}

.import-dialog-tipbar.import-dialog-tipbar-error {
  color: #f08d1a;
  background: #fff7ea;
}

.import-dialog-tipbar.import-dialog-tipbar-error.is-hidden {
  display: none;
}

.import-error-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.import-error-chip {
  height: 30px;
  padding: 0 12px;
  border: 1px solid #d9e4f2;
  border-radius: 15px;
  background: #fff;
  color: #607189;
  font-size: 12px;
  cursor: pointer;
}

.import-error-chip.is-active {
  border-color: #bfd7ff;
  background: #eef5ff;
  color: var(--blue);
}

.import-error-box {
  margin-top: 18px;
  min-height: 322px;
  border: 1px dashed #cfd8e6;
  border-radius: 8px;
  background: #fbfcff;
  padding: 18px 18px 16px;
}

.import-error-box-message {
  padding: 12px;
  border: 1px solid #e9eef5;
  border-radius: 8px;
  background: #fff;
}

.import-error-box-message span {
  color: #334257;
  font-size: 13px;
  line-height: 1.7;
}

.import-error-scene-switch {
  margin-top: 16px;
  padding: 14px 0 4px;
  display: grid;
  gap: 10px;
}

.import-error-scene-switch > span {
  color: #6c7b90;
  font-size: 13px;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 12px;
}

.dialog-header h3 {
  font-size: 15px;
}

.dialog-table {
  margin-bottom: 10px;
}

.dialog-table tbody td {
  height: 56px;
  vertical-align: middle;
}

.table-input {
  width: 100%;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: 0 10px;
  color: var(--text);
  background: #fff;
}

.table-input.is-readonly {
  background: #f8fafc;
  color: #97a2b3;
}

.table-input::placeholder {
  color: #a0a9b7;
}

.product-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.product-input-row .table-input {
  flex: 1;
  min-width: 0;
}

.product-row-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
  flex: 0 0 auto;
}

.product-input-row:hover .product-row-actions {
  opacity: 1;
  pointer-events: auto;
}

.product-service-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.service-tag-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.service-tag-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  display: none;
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(31, 45, 61, 0.92);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  z-index: 4;
}

.service-tag-toggle:hover .service-tag-tooltip {
  display: block;
}

.service-toggle-tag {
  min-width: 38px;
  justify-content: center;
  color: #8a5b14;
  background: #fff6e8;
  border: 1px solid #f3d7a7;
}

.service-tag-toggle.is-service .service-toggle-tag {
  color: #2f8a3a;
  background: #eef9ef;
  border-color: #bfe2c4;
}

.upload-mini-button {
  height: 30px;
  padding: 0 12px;
  border: 1px solid #d8e1ef;
  border-radius: 4px;
  background: #f7faff;
  color: var(--blue);
  cursor: pointer;
  white-space: nowrap;
}

.create-purchase-table th,
.create-purchase-table td {
  border-right: 1px solid var(--line);
}

.create-purchase-table th:last-child,
.create-purchase-table td:last-child {
  border-right: 0;
}

.create-purchase-table td.js-shared-merge-cell {
  border-left: 1px solid var(--line);
}

.purchase-detail-table-frame {
  overflow-x: auto;
  overflow-y: hidden;
}

.voucher-dialog-card {
  width: 560px;
}

.voucher-dropzone {
  min-height: 212px;
}

.voucher-upload-note {
  margin-top: 14px;
  color: #8e9aac;
  font-size: 12px;
  line-height: 1.6;
}

.voucher-existing-block {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #e6edf6;
  border-radius: 10px;
  background: #f8fbff;
}

.voucher-existing-block.is-hidden {
  display: none;
}

.voucher-existing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.voucher-existing-head strong {
  color: #243446;
  font-size: 14px;
}

.voucher-existing-head span {
  color: #8e9aac;
  font-size: 12px;
}

.voucher-existing-list {
  display: grid;
  gap: 10px;
}

.voucher-existing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e6edf6;
}

.voucher-existing-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.voucher-existing-main strong {
  display: block;
  color: #334257;
  font-size: 13px;
}

.voucher-existing-main p {
  margin-top: 4px;
  color: #8a97aa;
  font-size: 12px;
}

.voucher-existing-delete {
  border: 0;
  background: transparent;
  color: #f05b5b;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.purchase-detail-dialog .read-box {
  color: #5c6b80;
}

.read-box-multiline {
  min-height: 74px;
  align-items: flex-start;
  padding-top: 12px;
  line-height: 1.7;
}

.create-purchase-table {
  min-width: 1180px;
}

.mode-self .create-purchase-table {
  min-width: 1420px;
}

.mode-self .create-purchase-table th:nth-child(2),
.mode-self .create-purchase-table td:nth-child(2) {
  min-width: 300px;
  width: 300px;
}

.supplier-cell-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.supplier-cell-wrap .table-input {
  flex: 1;
  min-width: 0;
}

.supplier-row-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.supplier-cell:hover .supplier-row-actions {
  opacity: 1;
  pointer-events: auto;
}

.supplier-row-action {
  width: 18px;
  height: 18px;
  border: 1px solid #cfd8e6;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.supplier-row-action.is-danger {
  color: #e85f5f;
}

.dialog-add-line {
  width: 100%;
  height: 34px;
  border: 1px dashed #bfd3f7;
  background: #fff;
  color: var(--blue);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 12px;
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 18px;
  margin-top: auto;
}

.prototype-tabs-mobile {
  margin-left: 12px;
}

.mobile-shell {
  padding: 8px 0 24px;
  display: flex;
  justify-content: center;
}

.mobile-device {
  width: 393px;
  min-height: 852px;
  background: #f5f7fb;
  border: 1px solid #dfe6f1;
  box-shadow: 0 18px 50px rgba(36, 52, 70, 0.12);
  overflow: hidden;
}

.mobile-topbar,
.mobile-user-header {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid #edf1f6;
}

.mobile-topbar strong,
.mobile-user-header strong {
  font-size: 16px;
}

.mobile-back {
  border: 0;
  background: transparent;
  color: #2f3f56;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
}

.mobile-page-body {
  padding-bottom: 88px;
}

.mobile-section {
  margin-top: 10px;
  background: #fff;
}

.mobile-section-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border-bottom: 1px solid #eef2f7;
}

.mobile-section-head > strong,
.mobile-section-title-inline > strong {
  position: relative;
  padding-left: 10px;
  font-size: 15px;
}

.mobile-section-head > strong::before,
.mobile-section-title-inline > strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--blue);
}

.mobile-link-button,
.mobile-add-link {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  cursor: pointer;
}

.mobile-form-list,
.mobile-purchase-form {
  display: grid;
}

.mobile-form-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid #eef2f7;
}

.mobile-form-row label {
  color: #2f3f56;
  font-size: 14px;
}

.mobile-form-row span {
  color: #98a3b3;
  font-size: 14px;
  text-align: right;
}

.mobile-section-title-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-mode-chip {
  height: 24px;
  padding: 0 8px;
  border-radius: 6px;
  background: #f1f4f8;
  color: #5b6d84;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
}

.mobile-product-card,
.mobile-procurement-block,
.mobile-ticket-card,
.mobile-purchase-list,
.mobile-mode-stack,
.mobile-hint-card,
.mobile-textarea-box,
.mobile-todo-cards {
  padding: 12px 16px;
}

.mobile-product-card {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #eef2f7;
}

.mobile-product-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e7f0ff, #fff5df);
  flex: 0 0 auto;
}

.mobile-product-main {
  min-width: 0;
  flex: 1;
}

.mobile-product-title-row,
.mobile-procurement-head,
.mobile-order-no-row,
.mobile-todo-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mobile-product-main p,
.mobile-procurement-head p,
.mobile-order-user-row,
.mobile-ticket-line,
.mobile-todo-meta,
.mobile-hint-card {
  color: #7b8798;
  font-size: 13px;
}

.mobile-product-price-row {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: #516177;
  font-size: 13px;
}

.mobile-product-price-row strong {
  color: #ef5b4d;
}

.mobile-count-chip {
  min-width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #f1f4f8;
  color: #445568;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mobile-procurement-block {
  display: grid;
  gap: 12px;
}

.mobile-money-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed #e6ecf4;
  border-bottom: 1px dashed #e6ecf4;
}

.mobile-money-row label {
  color: #2f3f56;
}

.mobile-money-row span,
.mobile-search-box {
  color: #9aa5b5;
}

.mobile-search-box {
  height: 42px;
  border-radius: 10px;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
}

.mobile-procurement-summary {
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #f8fbff;
  overflow: hidden;
}

.mobile-procurement-summary.is-hidden {
  display: none;
}

.mobile-procurement-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #e8eef7;
}

.mobile-procurement-summary-head strong {
  font-size: 14px;
  color: #2f3f56;
}

.mobile-procurement-summary-head span {
  color: #7b8798;
  font-size: 12px;
}

.mobile-procurement-summary-list {
  display: grid;
}

.mobile-procurement-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid #eef3f8;
}

.mobile-procurement-summary-item:first-child {
  border-top: 0;
}

.mobile-procurement-summary-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.mobile-procurement-summary-main strong {
  font-size: 14px;
  color: #2f3f56;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-procurement-summary-main span {
  color: #7b8798;
  font-size: 12px;
}

.mobile-procurement-summary-price {
  flex: 0 0 auto;
  color: #ef5b4d;
  font-size: 14px;
  font-weight: 600;
}

.mobile-bottom-actions,
.mobile-nav-footer,
.mobile-tabbar {
  position: sticky;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #e9eef5;
}

.mobile-bottom-actions {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.mobile-total-copy {
  color: #69788f;
  font-size: 13px;
}

.mobile-total-copy strong {
  color: #ef5b4d;
  font-size: 16px;
}

.mobile-action-group {
  display: flex;
  gap: 10px;
}

.mobile-primary-button,
.mobile-secondary-button,
.mobile-mini-primary {
  height: 40px;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 16px;
  cursor: pointer;
}

.mobile-primary-button,
.mobile-mini-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.mobile-secondary-button {
  border: 1px solid var(--blue);
  background: #fff;
  color: var(--blue);
}

.mobile-primary-button.wide,
.mobile-secondary-button.wide {
  width: 100%;
}

.mobile-detail-summary {
  padding: 12px 16px 10px;
  background: linear-gradient(180deg, #d8ebff 0%, #cfe4fb 100%);
}

.mobile-approval-detail-page {
  padding-bottom: 24px;
}

.mobile-approval-banner {
  padding: 10px 16px 12px;
  background: #fff;
  border-bottom: 1px solid #edf2f8;
}

.mobile-approval-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mobile-approval-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8b98ac;
  font-size: 12px;
}

.mobile-approval-banner-left strong {
  color: var(--blue);
  font-size: 12px;
}

.mobile-approval-banner-filter {
  color: #9aa7b8;
  font-size: 12px;
}

.mobile-approval-order-card {
  padding: 14px 16px 8px;
  background: #fff;
}

.mobile-approval-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-approval-order-head strong {
  color: #2f3f56;
  font-size: 16px;
}

.mobile-approval-order-head p {
  margin-top: 6px;
  color: #99a5b6;
  font-size: 12px;
}

.mobile-approval-status-chip {
  height: 22px;
  padding: 0 8px;
  border-radius: 11px;
  background: #fff5e6;
  color: #d9891c;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.mobile-approval-base-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.mobile-approval-base-item {
  display: grid;
  gap: 4px;
}

.mobile-approval-base-item label {
  color: #8c98aa;
  font-size: 12px;
}

.mobile-approval-base-item span {
  color: #2f3f56;
  font-size: 13px;
  line-height: 1.5;
}

.mobile-approval-amount-hint {
  color: #8d99aa;
  font-size: 12px;
}

.mobile-approval-product-list {
  display: grid;
  gap: 10px;
  padding: 12px 16px 16px;
}

.mobile-approval-product-card {
  display: flex;
  gap: 10px;
}

.mobile-approval-product-cover {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4e7a0, #c6d87b);
  flex: 0 0 auto;
}

.mobile-approval-product-cover.is-photo {
  background: linear-gradient(135deg, #ffc9ae, #8d6e63);
}

.mobile-approval-product-cover.is-dark {
  background: linear-gradient(135deg, #2e3747, #6d7b91);
}

.mobile-approval-product-cover.is-purple {
  background: linear-gradient(135deg, #7c66d3, #aa9cf2);
}

.mobile-approval-product-main {
  min-width: 0;
  flex: 1;
}

.mobile-approval-product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mobile-approval-product-title-row strong {
  min-width: 0;
  color: #2f3f56;
  font-size: 14px;
  line-height: 1.45;
}

.mobile-approval-product-title-row span,
.mobile-approval-product-main p {
  color: #8d99aa;
  font-size: 12px;
}

.mobile-approval-product-main p {
  margin-top: 4px;
  line-height: 1.5;
}

.mobile-approval-product-price-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #7f8da1;
  font-size: 12px;
}

.mobile-approval-product-price-row strong {
  color: #ef5b4d;
  font-size: 14px;
}

.mobile-approval-inline-link {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.mobile-approval-inline-link-main {
  display: grid;
  gap: 4px;
}

.mobile-approval-inline-link-main strong {
  color: #2f3f56;
  font-size: 14px;
}

.mobile-approval-inline-link-main p {
  color: #98a3b3;
  font-size: 12px;
}

.mobile-approval-inline-link > span {
  color: var(--blue);
  font-size: 13px;
  white-space: nowrap;
}

.danger-row span {
  color: #ef5b4d;
  font-weight: 700;
}

.mobile-approval-sheet-card {
  width: min(100%, 393px);
}

.mobile-approval-sheet-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 12px;
  color: #7e8c9f;
  font-size: 12px;
}

.mobile-approval-sheet-summary strong {
  color: #ef5b4d;
  font-size: 18px;
}

.mobile-approval-sheet-list {
  display: grid;
  gap: 10px;
}

.mobile-approval-sheet-item {
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #fbfcff;
  overflow: hidden;
}

.mobile-approval-sheet-item-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid #eef2f7;
  background: #f7f9fc;
}

.mobile-approval-sheet-item-head strong {
  color: #2f3f56;
  font-size: 14px;
}

.mobile-approval-sheet-item-body {
  display: grid;
}

.mobile-approval-sheet-line {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-top: 1px solid #eef2f7;
}

.mobile-approval-sheet-line:first-child {
  border-top: 0;
}

.mobile-approval-sheet-line label {
  color: #8a97aa;
  font-size: 13px;
}

.mobile-approval-sheet-line span {
  min-width: 0;
  color: #334257;
  font-size: 13px;
  text-align: right;
}

.mobile-order-hero {
  padding: 14px 16px;
  background: linear-gradient(180deg, #d7eaff 0%, #cbe1fb 100%);
}

.mobile-order-no-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mobile-order-file-icon,
.mobile-order-copy {
  font-size: 13px;
  color: #5b6b83;
}

.mobile-order-user-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.mobile-avatar-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d9dfe8;
  display: inline-block;
}

.mobile-avatar-dot.big {
  width: 24px;
  height: 24px;
  background: #b8d7ff;
}

.mobile-tab-strip {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  background: #fff;
}

.mobile-tab-strip span {
  flex: 0 0 auto;
  min-width: 64px;
  height: 32px;
  padding: 0 12px;
  border-radius: 16px;
  background: #f4f7fb;
  color: #65748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.mobile-tab-strip .is-active {
  background: #eaf3ff;
  color: var(--blue);
}

.mobile-tab-strip-order {
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid #edf2f8;
}

.mobile-tab-strip-order span {
  min-width: auto;
  padding: 0 10px;
  height: 30px;
  border-radius: 15px;
  font-size: 12px;
}

.mobile-purchase-total-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  background: #f6ecd8;
  color: #6d5a35;
  font-size: 13px;
}

.mobile-purchase-total-bar strong {
  color: #3c3528;
  font-size: 15px;
}

.mobile-purchase-feed {
  background: #fff;
}

.mobile-purchase-card {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #edf2f8;
  background: #fff;
  text-align: left;
  padding: 12px 14px;
  cursor: pointer;
}

.mobile-purchase-card:last-child {
  border-bottom: 0;
}

.mobile-purchase-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-purchase-no-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
}

.mobile-purchase-no-row strong {
  min-width: 0;
  color: var(--blue);
  font-size: 14px;
}

.mobile-purchase-cart,
.mobile-purchase-card-action {
  color: #6d7d94;
  font-size: 14px;
  flex: 0 0 auto;
}

.mobile-purchase-card-action {
  color: var(--blue);
  font-size: 13px;
}

.mobile-purchase-card-action.danger {
  color: #d85d5d;
}

.mobile-purchase-card-action.muted {
  color: #a1acbb;
}

.mobile-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef9f37;
  flex: 0 0 auto;
}

.mobile-status-dot.rejected {
  background: #e95e5e;
}

.mobile-status-dot.revoked {
  background: #8b97aa;
}

.mobile-status-dot.purchased {
  background: #3f9f62;
}

.mobile-status-dot.received {
  background: #2f81f7;
}

.mobile-status-dot.pending-light {
  background: #b88922;
}

.mobile-status-dot.partial {
  background: #8b63f6;
}

.mobile-status-dot.invalid {
  background: #5c6474;
}

.mobile-status-copy {
  font-style: normal;
  color: #8a6d2f;
  font-size: 13px;
  white-space: nowrap;
}

.mobile-status-copy.rejected {
  color: #d85d5d;
}

.mobile-status-copy.revoked {
  color: #8b97aa;
}

.mobile-status-copy.purchased {
  color: #3f9f62;
}

.mobile-status-copy.received {
  color: #2f81f7;
}

.mobile-status-copy.pending-light {
  color: #b88922;
}

.mobile-status-copy.partial {
  color: #8b63f6;
}

.mobile-status-copy.invalid {
  color: #5c6474;
}

.mobile-purchase-card-body {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.mobile-purchase-card-body p {
  display: flex;
  gap: 4px;
  margin: 0;
  color: #65758b;
  font-size: 13px;
  line-height: 1.45;
}

.mobile-purchase-card-body label {
  flex: 0 0 auto;
  color: #8a97aa;
}

.mobile-purchase-card-body span {
  min-width: 0;
  color: #3a4a5d;
}

.mobile-purchase-detail-page {
  padding-bottom: 20px;
}

.mobile-purchase-detail-summary {
  margin-bottom: 10px;
}

.mobile-detail-status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 11px;
  background: #fff3e5;
  color: #8a6d2f;
  font-size: 12px;
  white-space: nowrap;
}

.mobile-purchase-detail-page.mode-self .mobile-detail-status-tag {
  background: #eef5ff;
  color: var(--blue);
}

.mobile-detail-inline-hint {
  color: #7b8798;
  font-size: 12px;
}

.mobile-detail-summary-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7b8798;
  font-size: 12px;
  border-left: 0;
}

.mobile-detail-summary-inline strong {
  color: #7b8798;
  font-size: 12px;
  font-weight: 600;
}

.mobile-detail-card-list {
  display: grid;
  gap: 10px;
  padding: 12px 16px;
}

.mobile-detail-card {
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #fbfcff;
  overflow: hidden;
}

.mobile-detail-card-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid #edf2f8;
  background: #f8fbff;
}

.mobile-detail-card-head strong {
  font-size: 14px;
  color: #2f3f56;
}

.mobile-detail-card-head .item-tag-service {
  flex: 0 0 auto;
}

.mobile-detail-card-body {
  display: grid;
  gap: 0;
}

.mobile-detail-line {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-top: 1px solid #eef2f7;
}

.mobile-detail-line:first-child {
  border-top: 0;
}

.mobile-detail-line label {
  flex: 0 0 auto;
  color: #8a97aa;
  font-size: 13px;
}

.mobile-detail-line span {
  min-width: 0;
  color: #334257;
  font-size: 13px;
  text-align: right;
}

.mobile-detail-readbox {
  margin: 0 16px 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fbff;
  color: #5e6e85;
  font-size: 13px;
  line-height: 1.7;
}

.mobile-detail-attachment-list {
  display: grid;
  gap: 10px;
  padding: 12px 16px 16px;
}

.mobile-detail-attachment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f4f7fb;
}

.mobile-detail-file-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ff6b6b;
  color: #fff;
  font-size: 12px;
  flex: 0 0 auto;
}

.mobile-detail-attachment-item strong {
  display: block;
  color: #334257;
  font-size: 13px;
}

.mobile-detail-attachment-item p {
  margin-top: 4px;
  color: #8a97aa;
  font-size: 12px;
}

.mobile-create-upload-card {
  padding: 14px 16px 16px;
}

.mobile-create-upload-card p {
  color: #a1acbb;
  font-size: 12px;
}

.mobile-approval-picker {
  display: grid;
  gap: 12px;
  padding: 12px 16px 16px;
}

.mobile-approval-node {
  border: 1px solid #e7edf6;
  border-radius: 12px;
  background: #fbfcff;
  overflow: hidden;
}

.mobile-track-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex: 0 0 auto;
}

.mobile-track-dot.is-blue {
  background: var(--blue);
}

.mobile-track-dot.is-purple {
  background: #8b63f6;
}

.mobile-track-dot.is-orange {
  background: #ef9f37;
}

.mobile-track-dot.is-green {
  background: #58a03d;
}

.mobile-approval-node-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid #eef2f7;
  background: #f7f9fc;
}

.mobile-approval-node-head strong {
  color: #2f3f56;
  font-size: 14px;
}

.mobile-ticket-card {
  margin-top: 10px;
  background: #fff;
}

.mobile-ticket-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.mobile-ticket-head strong {
  color: var(--blue);
}

.mobile-purchase-item {
  width: 100%;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  cursor: pointer;
}

.mobile-purchase-item:last-child {
  border-bottom: 0;
}

.mobile-purchase-item p {
  margin-top: 4px;
  color: #7b8798;
  font-size: 13px;
}

.mobile-status-text {
  font-size: 13px;
  white-space: nowrap;
}

.mobile-status-text.rejected {
  color: #e36767;
}

.mobile-status-text.partial {
  color: #8b63f6;
}

.mobile-mode-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mobile-mode-card {
  border: 1px solid #d7e2f1;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  text-align: left;
  color: #2f3f56;
  cursor: pointer;
  min-height: 108px;
}

.mobile-mode-card.is-active {
  border-color: var(--blue);
  background: #eef5ff;
}

.mobile-mode-card p {
  margin-top: 8px;
  color: #7b8798;
  font-size: 12px;
  line-height: 1.5;
}

.mobile-card-action-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-hint-card {
  background: #f3f7ff;
  border-radius: 12px;
  margin-top: 10px;
}

.mobile-mode-detail-block {
  display: grid;
  gap: 12px;
}

.mobile-detail-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}

.mobile-detail-block-head strong {
  font-size: 15px;
  color: #2f3f56;
}

.mobile-import-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f3f7ff;
}

.mobile-import-bar .mobile-hint-card {
  flex: 1;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.mobile-company-detail-block,
.mobile-self-detail-block {
  display: grid;
  gap: 12px;
  padding: 12px 0 16px;
}

.mobile-form-card-header {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-radius: 10px 10px 0 0;
  background: #eef2f7;
}

.mobile-form-card-header strong,
.mobile-inner-product-head strong {
  font-size: 14px;
  color: #2f3f56;
}

.mobile-detail-stack {
  display: grid;
  gap: 12px;
  padding: 0 16px;
}

.mobile-purchase-unit,
.mobile-supplier-unit {
  display: grid;
  gap: 0;
}

.mobile-purchase-detail-card,
.mobile-inner-product-card {
  border: 1px solid #e7edf6;
  border-radius: 0 0 10px 10px;
  background: #fff;
  overflow: hidden;
}

.mobile-purchase-supplier-card {
  border-radius: 0 0 10px 10px;
}

.mobile-inner-product-card {
  margin: 12px;
  border-radius: 10px;
  background: #fbfcff;
}

.mobile-inner-product-head {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #eef2f7;
  background: #f7f9fc;
}

.mobile-purchase-textarea-row,
.mobile-purchase-upload-row {
  padding: 12px;
}

.mobile-purchase-textarea-row label,
.mobile-purchase-upload-row label {
  display: block;
  color: #2f3f56;
  font-size: 14px;
  margin-bottom: 10px;
}

.mobile-inline-textarea {
  min-height: 76px;
  color: #9aa5b5;
  font-size: 14px;
  line-height: 1.7;
}

.mobile-purchase-upload-row {
  border-top: 1px solid #eef2f7;
}

.mobile-purchase-upload-row p {
  color: #a1acbb;
  font-size: 12px;
}

.mobile-upload-trigger {
  margin-top: 14px;
  width: 100%;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 15px;
  cursor: pointer;
}

.mobile-add-inline-link {
  align-self: center;
}

.mobile-card-remove {
  border: 0;
  background: transparent;
  color: #97a4b7;
  font-size: 13px;
  cursor: pointer;
}

.mobile-inline-input,
.mobile-inline-textarea-field {
  width: 100%;
  border: 0;
  background: transparent;
  color: #2f3f56;
  font-size: 14px;
  text-align: right;
  outline: none;
}

.mobile-inline-input::placeholder,
.mobile-inline-textarea-field::placeholder {
  color: #9aa5b5;
}

.mobile-inline-textarea-field {
  min-height: 72px;
  resize: none;
  text-align: left;
  line-height: 1.7;
}

.mobile-form-row .mobile-inline-input {
  flex: 1;
}

.total-row {
  background: #f7f9fc;
}

.total-row span {
  color: #243446;
  font-weight: 700;
}

.col-self-only-mobile {
  display: block;
}

.js-mobile-company-detail-block,
.js-mobile-self-detail-block {
  display: grid;
}

.mobile-purchase-form.is-self .js-mobile-company-detail-block {
  display: none;
}

.mobile-purchase-form:not(.is-self) .js-mobile-self-detail-block {
  display: none;
}

.mobile-purchase-form.is-self .col-self-only-mobile {
  display: block;
}

.mobile-purchase-form:not(.is-self) .col-self-only-mobile {
  display: none;
}

.mobile-textarea-box {
  min-height: 124px;
  color: #99a4b4;
  font-size: 14px;
}

.mobile-user-header {
  justify-content: flex-start;
}

.mobile-todo-device {
  background: #f2f5fa;
}

.mobile-todo-body {
  padding-top: 24px;
}

.mobile-todo-switch {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 16px 12px;
  border-bottom: 1px solid #e9eef5;
  background: #fff;
}

.mobile-todo-switch-item {
  position: relative;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #637489;
  font-size: 14px;
  cursor: pointer;
}

.mobile-todo-switch-item.is-active {
  color: var(--blue);
  font-weight: 600;
}

.mobile-todo-switch-item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
}

.mobile-todo-cards {
  display: grid;
  gap: 12px;
}

.mobile-todo-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(39, 57, 84, 0.08);
}

.mobile-status-tag {
  height: 24px;
  padding: 0 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mobile-status-tag.partial {
  background: #f4efff;
  color: #8b63f6;
}

.mobile-status-tag.full {
  background: #edf8f1;
  color: #2f9a5f;
}

.mobile-todo-product-list {
  margin: 12px 0 16px;
  display: grid;
  gap: 8px;
  color: #2f3f56;
  font-size: 14px;
}

.mobile-todo-product-list em {
  font-style: normal;
  color: #59a03d;
}

.mobile-nav-footer,
.mobile-tabbar {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #55657d;
  font-size: 13px;
}

.mobile-nav-summary strong {
  color: #ef5b4d;
}

.mobile-tabbar .is-active {
  color: var(--blue);
}

.mobile-floating-footer {
  position: sticky;
  bottom: 0;
  padding: 10px 14px 14px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0) 0%, #f5f7fb 35%, #f5f7fb 100%);
}

.mobile-floating-add-button {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  border: 1px dashed #79aaf9;
  background: #fff;
  color: var(--blue);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(47, 129, 247, 0.08);
}

.mobile-sheet-mask {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 12px;
  background: rgba(18, 29, 45, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.mobile-sheet-mask.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sheet-card {
  width: min(100%, 375px);
  max-height: calc(100vh - 24px);
  display: flex;
  flex-direction: column;
  border-radius: 18px 18px 0 0;
  background: #fff;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.22s ease;
  box-shadow: 0 -12px 36px rgba(31, 45, 61, 0.14);
}

.mobile-sheet-mask.is-open .mobile-sheet-card {
  transform: translateY(0);
}

.mobile-sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #d6deea;
  margin: 8px auto 0;
}

.mobile-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 10px;
}

.mobile-sheet-header strong {
  display: block;
  font-size: 18px;
  color: #243446;
}

.mobile-sheet-header p {
  margin-top: 6px;
  color: #7b8798;
  font-size: 13px;
  line-height: 1.5;
}

.mobile-sheet-close {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5d6d83;
  font-size: 18px;
  cursor: pointer;
}

.mobile-sheet-body {
  flex: 1;
  overflow: auto;
  padding: 0 16px 12px;
}

.mobile-sheet-row,
.mobile-sheet-field {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eef2f7;
}

.mobile-sheet-row label,
.mobile-sheet-field label {
  flex: 0 0 auto;
  color: #2f3f56;
  font-size: 14px;
}

.mobile-sheet-input-wrap {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-sheet-input {
  min-width: 0;
  width: 100%;
  height: 32px;
  border: 0;
  background: transparent;
  color: #2f3f56;
  font-size: 14px;
  text-align: right;
  outline: none;
}

.mobile-sheet-input::placeholder {
  color: #a1acbb;
}

.mobile-sheet-arrow {
  flex: 0 0 auto;
  color: #b4becc;
  font-size: 16px;
}

.mobile-sheet-section-title {
  padding: 16px 0 10px;
  color: #243446;
  font-size: 16px;
  font-weight: 600;
}

.mobile-sheet-items {
  display: grid;
  gap: 10px;
}

.mobile-sheet-item {
  border: 1px dashed #e4ebf5;
  border-radius: 12px;
  background: #fbfcff;
  padding: 0 12px;
}

.mobile-sheet-item-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sheet-item-head strong {
  font-size: 13px;
  color: #6b7a90;
}

.mobile-sheet-remove {
  border: 0;
  background: transparent;
  color: #97a4b7;
  font-size: 13px;
  cursor: pointer;
}

.mobile-sheet-add {
  width: 100%;
  height: 44px;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 16px;
  cursor: pointer;
}

.mobile-sheet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 16px;
  border-top: 1px solid #eef2f7;
  background: #fff;
}

.mobile-sheet-total {
  color: #69788f;
  font-size: 15px;
}

.mobile-sheet-total strong {
  color: #ef5b4d;
  font-size: 24px;
  font-weight: 700;
}

.mobile-voucher-sheet-card {
  max-height: 78vh;
}

.mobile-voucher-existing-block {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #f7faff;
}

.mobile-voucher-existing-block.is-hidden {
  display: none;
}

.mobile-voucher-existing-head strong {
  display: block;
  color: #243446;
  font-size: 14px;
}

.mobile-voucher-existing-head span {
  display: block;
  margin-top: 6px;
  color: #8e9aac;
  font-size: 12px;
  line-height: 1.5;
}

.mobile-voucher-existing-list {
  display: grid;
  gap: 10px;
}

.mobile-voucher-existing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.mobile-voucher-existing-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mobile-voucher-existing-main strong {
  display: block;
  color: #334257;
  font-size: 13px;
}

.mobile-voucher-existing-main p {
  margin-top: 4px;
  color: #8a97aa;
  font-size: 12px;
}

.mobile-voucher-delete {
  border: 0;
  background: transparent;
  color: #f05b5b;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.mobile-voucher-dropzone {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 28px 18px;
  border: 1px dashed #c8d8f0;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #fdfefe 100%);
  text-align: center;
}

.mobile-voucher-dropzone-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #e8f1ff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mobile-voucher-dropzone strong {
  color: #243446;
  font-size: 14px;
}

.mobile-voucher-dropzone p {
  color: #8e9aac;
  font-size: 12px;
  line-height: 1.6;
}

.mobile-voucher-sheet-footer {
  justify-content: flex-end;
}

.mobile-confirm-sheet-card {
  max-height: 42vh;
}

.mobile-confirm-sheet-card .mobile-sheet-header {
  align-items: flex-start;
}

.mobile-confirm-sheet-card .mobile-sheet-header strong {
  display: block;
  font-size: 18px;
  color: #243446;
}

.mobile-confirm-sheet-card .mobile-sheet-header p {
  margin-top: 8px;
  color: #7f8ba0;
  font-size: 13px;
  line-height: 1.6;
}

.mobile-confirm-sheet-footer {
  justify-content: flex-end;
}
