:root {
    --color-bg: #f7f8fb;
    --color-surface: #ffffff;
    --color-surface-soft: #f3f5f8;
    --color-text: #111827;
    --color-muted: #667085;
    --color-border: #d9dee7;
    --color-primary: #2563eb;
    --color-primary-soft: #eff6ff;
    --color-accent: #16a34a;
    --color-accent-soft: #ecfdf3;
    --color-danger: #dc2626;
    --color-danger-soft: #fef2f2;
    --shadow-subtle: 0 1px 2px rgba(16, 24, 40, 0.06);
    --radius: 8px;
    --radius-sm: 6px;
}

html {
    font-size: 14px;
    letter-spacing: 0;
}

body.shop-shell {
    min-height: 100vh;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.shop-main {
    max-width: 1180px;
}

.navbar-acg {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-subtle);
}

.nav-shell {
    gap: 12px;
}

.brand-logo {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: #ffffff;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.navbar-acg .navbar-brand {
    max-width: 260px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.2;
}

.navbar-acg .navbar-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-acg .navbar-toggler {
    min-width: 42px;
    min-height: 38px;
    padding: 6px 8px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.navbar-acg .nav-link {
    min-height: 38px;
    padding: 8px 12px;
    color: var(--color-muted);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.navbar-acg .nav-link:hover,
.navbar-acg .nav-link.active {
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.nav-icon {
    margin-right: 6px;
    font-size: 0.95em;
}

.search-input {
    width: min(340px, 100%);
}

.search-input .input-group {
    width: 100%;
}

.search-input .input-group-text,
.search-input .form-control {
    height: 38px;
    border-color: var(--color-border);
    background: var(--color-surface);
}

.search-input .input-group-text {
    color: var(--color-muted);
    border-right: 0;
}

.search-input .form-control {
    border-left: 0;
}

.form-control {
    min-height: 40px;
    border-color: var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.user-login-box,
.user-info-box {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.br-12,
.btn,
.dropdown-menu {
    border-radius: var(--radius-sm) !important;
}

.btn {
    min-height: 36px;
    font-weight: 600;
}

.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline-secondary {
    color: var(--color-text);
    border-color: var(--color-border);
}

.dropdown-menu {
    border-color: var(--color-border);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
}

.panel {
    margin-bottom: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--color-border);
}

.panel-title {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 800;
}

.panel-meta {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.panel-body {
    padding: 14px;
}

.notice-panel {
    background: #fbfcfe;
}

.notice-body {
    color: var(--color-muted);
    line-height: 1.65;
}

.notice-body p:last-child,
.detail-body p:last-child {
    margin-bottom: 0;
}

.catalog-panel .panel-body {
    padding-top: 12px;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    max-width: 100%;
    padding: 6px 10px;
    color: var(--color-muted);
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.chip:hover {
    color: var(--color-primary);
    border-color: #bfdbfe;
    background: var(--color-primary-soft);
}

.chip.is-primary {
    color: #ffffff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.chip-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-right: 7px;
    border-radius: 5px;
    background-color: #e5e7eb;
}

.item-list {
    align-items: stretch;
}

.item-message {
    width: 100%;
    padding: 18px 14px;
    color: var(--color-muted);
    background: var(--color-surface-soft);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius);
}

.product-link {
    display: block;
    margin-bottom: 8px;
}

.acg-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.acg-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
}

.acg-card.soldout {
    opacity: 0.62;
    cursor: not-allowed;
}

.acg-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--color-surface-soft);
    overflow: hidden;
}

.acg-thumb-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.acg-card > .p-3 {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 12px !important;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.goods-title {
    min-height: 2.75em;
    margin: 0 0 10px;
    color: var(--color-text);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.stat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.84rem;
}

.price {
    color: var(--color-danger);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
}

.price .unit {
    margin-right: 1px;
    font-size: 0.86em;
    font-weight: 800;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

.badge-soft-primary {
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border: 1px solid #bfdbfe;
}

.badge-soft-success {
    color: #027a48;
    background: var(--color-accent-soft);
    border: 1px solid #abefc6;
}

.badge-soft-danger {
    color: var(--color-danger);
    background: var(--color-danger-soft);
    border: 1px solid #fecaca;
}

.badge-soft-muted {
    color: var(--color-muted);
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
}

.badge-soft-warning {
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fed7aa;
}

.badge-soft-info {
    color: #075985;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
}

.soldout-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.78);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 800;
}

.product-panel .panel-body {
    padding: 14px;
}

.product-layout {
    align-items: stretch;
}

.product-media {
    height: 100%;
    min-height: 280px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.item-cover {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    object-fit: contain;
}

.purchase-panel {
    height: 100%;
    padding: 2px 0;
}

.product-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.item-title {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 900;
    line-height: 1.25;
}

.shared-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    color: var(--color-muted);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.shared-button:hover {
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-color: #bfdbfe;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--radius);
}

.price-label {
    color: #9a3412;
    font-weight: 800;
}

.form-label {
    color: var(--color-text);
    font-weight: 800;
}

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

.sku {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    max-width: 100%;
    padding: 7px 10px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.sku:hover {
    border-color: #bfdbfe;
    background: var(--color-primary-soft);
}

.sku.is-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
}

.badge-money {
    margin-left: 7px;
    color: var(--color-danger);
    font-size: 0.85em;
    font-weight: 900;
}

.optional-card {
    width: 100%;
    min-height: 40px;
    padding: 8px 10px;
    color: var(--color-muted);
    text-align: left;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.qty-group {
    width: 180px;
    max-width: 100%;
}

.change-num-sub,
.change-num-add {
    width: 42px;
    min-height: 40px;
    color: var(--color-text);
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    font-size: 1.1rem;
    font-weight: 900;
}

.change-num-sub {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.change-num-add {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.qty-group .form-control {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    font-weight: 800;
}

.captcha-group {
    width: 260px;
    max-width: 100%;
}

.captcha-img {
    height: 40px;
    padding: 0;
    border-color: var(--color-border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
}

.cash-pay {
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.pay-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 8px;
}

.pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 10px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-weight: 800;
    cursor: pointer;
}

.pay:hover {
    color: var(--color-accent);
    background: var(--color-accent-soft);
    border-color: #abefc6;
}

.pay img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    object-fit: contain;
}

.item-detail {
    margin-top: 12px;
}

.detail-body {
    color: var(--color-muted);
    line-height: 1.72;
}

.detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.order-query-page {
    max-width: 960px;
}

.order-query-page .panel-header {
    justify-content: flex-start;
}

.order-query-page .panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: var(--radius-sm);
}

.order-query-page .order-query-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-query-page .order-query-input {
    flex: 0 1 360px;
    width: min(360px, 100%);
}

.order-query-page .order-list {
    display: grid;
    gap: 10px;
}

.order-query-page .order-item {
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.order-query-page .order-info-card {
    padding: 14px 16px;
}

.order-query-page .order-info-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--color-text);
    font-weight: 900;
}

.order-query-page .order-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #ffffff;
    background: var(--color-primary);
    border-radius: 4px;
    font-size: 0.8rem;
}

.order-query-page .order-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px 56px;
}

.order-query-page .order-info-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--color-muted);
}

.order-query-page .order-info-label {
    color: var(--color-muted);
    white-space: nowrap;
}

.order-query-page .order-info-value {
    min-width: 0;
    color: #475467;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.order-query-page .order-info-row .amount-value {
    color: #475467;
    font-size: 1rem;
    font-weight: 700;
}

.order-query-page .order-info-row .status-badge {
    justify-self: start;
}

.order-query-page .order-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px;
    background: #fbfcfe;
    border-bottom: 1px solid var(--color-border);
}

.order-query-page .order-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.order-query-page .order-status {
    display: flex;
    align-items: center;
}

.order-query-page .status-badge,
.order-query-page .shipment-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 26px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
}

.order-query-page .status-paid,
.order-query-page .shipment-paid {
    color: #067647;
    background: var(--color-accent-soft);
}

.order-query-page .status-pending,
.order-query-page .shipment-waiting {
    color: #b54708;
    background: #fffaeb;
}

.order-query-page .order-basic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 14px;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.order-query-page .order-no {
    grid-column: 1 / -1;
    color: var(--color-text);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-weight: 800;
    word-break: break-all;
}

.order-query-page .payment-dst {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.order-query-page .payment-method {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    min-height: 28px;
    padding: 3px 8px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    vertical-align: middle;
}

.order-query-page .payment-icon {
    display: block;
    flex: 0 0 22px;
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    object-fit: contain;
}

.order-query-page .image-placeholder {
    background: var(--color-surface-soft);
    border: 1px dashed var(--color-border);
}

.order-query-page .payment-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-query-page .order-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.order-query-page .order-amount {
    min-width: 118px;
    padding: 8px 10px;
    text-align: right;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}

.order-query-page .amount-label {
    display: block;
    margin-bottom: 2px;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.order-query-page .amount-value {
    color: var(--color-danger);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.15;
}

.order-query-page .goods-section {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px;
}

.order-query-page .goods-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    overflow: hidden;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.order-query-page .goods-image {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 72px !important;
    max-height: 72px !important;
    object-fit: contain;
}

.order-query-page .goods-details {
    min-width: 0;
}

.order-query-page .goods-name {
    margin: 0 0 6px;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.35;
}

.order-query-page .goods-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.order-query-page .goods-sku,
.order-query-page .a-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 7px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 800;
}

.order-query-page .a-badge-primary {
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.order-query-page .a-badge-success {
    color: #067647;
    background: var(--color-accent-soft);
}

.order-query-page .a-badge-warning {
    color: #b54708;
    background: #fffaeb;
}

.order-query-page .card-section {
    margin: 0 12px 12px;
    overflow: hidden;
    background: #fbfcfe;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.order-query-page .card-section .card-header {
    padding: 10px 12px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.order-query-page .shipment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    font-size: 1rem !important;
}

.order-query-page .shipment-title {
    display: inline-flex;
    align-items: center;
    color: var(--color-text);
    font-weight: 900;
}

.order-query-page .card-content,
.order-query-page .card-content-no-password,
.order-query-page .card-password-section,
.order-query-page .card-loading {
    padding: 12px;
}

.order-query-page .card-secret-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.order-query-page .card-secret-title {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.order-query-page .copy-card-btn {
    min-height: 30px;
    padding: 4px 9px;
    color: var(--color-primary);
    background: var(--color-surface);
    border-color: var(--color-border);
    font-size: 0.86rem;
}

.order-query-page .copy-card-btn:hover {
    color: #ffffff;
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.order-query-page .card-display {
    max-height: 260px;
    overflow: auto;
    padding: 10px 12px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.order-query-page .usage-note {
    padding: 0 12px 12px;
}

.order-query-page .usage-note-label {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-bottom: 6px;
    padding: 3px 7px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 900;
}

.order-query-page .usage-note-body {
    color: var(--color-text);
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.order-query-page .loading-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
}

.wholesale-table {
    font-size: 0.9rem;
}

.wholesale-table th,
.wholesale-table td {
    padding: 6px 8px;
}

footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 14px 22px;
    color: var(--color-muted);
    text-align: center;
    font-size: 0.86rem;
}

@keyframes icon-spin {
    to {
        transform: rotate(360deg);
    }
}

.icon-spin {
    animation: icon-spin 0.9s linear infinite;
}

@media (max-width: 991.98px) {
    .navbar-acg .navbar-brand {
        max-width: 46vw;
    }

    .nav-shell .navbar-brand {
        order: 1;
    }

    .user-login-box,
    .user-info-box {
        order: 2;
        margin-left: auto;
    }

    .navbar-acg .navbar-toggler {
        order: 3;
    }

    .navbar-acg .navbar-collapse {
        order: 4;
        width: 100%;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--color-border);
    }

    .search-input {
        width: 100%;
        margin-top: 8px;
    }

    .product-media,
    .item-cover {
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    html {
        font-size: 13px;
    }

    .shop-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .panel-header,
    .panel-body,
    .product-panel .panel-body {
        padding: 12px;
    }

    .register-link {
        display: none;
    }

    .chip-list,
    .sku-list {
        gap: 6px;
    }

    .chip,
    .sku {
        min-height: 34px;
        padding: 6px 8px;
    }

    .product-media,
    .item-cover {
        min-height: 210px;
    }

    .price-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .qty-group,
    .captcha-group {
        width: 100%;
    }

    .pay-list {
        grid-template-columns: 1fr;
    }

    .order-query-page .order-query-controls {
        align-items: stretch;
    }

    .order-query-page .order-query-input,
    .order-query-page .btn-search-query {
        width: 100%;
    }

    .order-query-page .order-header {
        grid-template-columns: 1fr;
    }

    .order-query-page .order-info-card {
        padding: 14px;
    }

    .order-query-page .order-info-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .order-query-page .order-info-row {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .order-query-page .order-basic {
        grid-template-columns: 1fr;
    }

    .order-query-page .order-right {
        justify-content: stretch;
    }

    .order-query-page .order-amount {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }

    .order-query-page .goods-section {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .order-query-page .goods-thumb {
        width: 56px;
        height: 56px;
    }

    .order-query-page .goods-image {
        max-width: 56px !important;
        max-height: 56px !important;
    }

    .order-query-page .shipment-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
