:root {
    --zf-primary: #208f80;
    --zf-primary-deep: #176f65;
    --zf-primary-soft: #eaf7f4;
    --zf-accent: #d85f47;
    --zf-success: #218a70;
    --zf-warning: #d78a32;
    --zf-text: #263330;
    --zf-muted: #74807d;
    --zf-border: #e3e9e6;
    --zf-page: #f5f7f5;
    --zf-surface: #ffffff;
    --zf-surface-soft: #f7faf8;
    --zf-shadow: 0 12px 34px rgba(27, 61, 53, 0.06);
    --zf-shadow-hover: 0 18px 40px rgba(27, 61, 53, 0.11);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

.goods-list-page {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 178px);
    background: var(--zf-page);
    color: var(--zf-text);
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    line-height: 1.6;
}

body.open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 18px;
}

#mask {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(16, 24, 40, 0.45);
    z-index: 998;
}

.zf-main {
    flex: 1 0 auto;
    width: 100%;
    padding: 22px 0 0;
}

.zf-header {
    position: relative;
    z-index: 999;
}

.zf-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--zf-border);
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
}

.zf-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 78px;
}

.zf-logo,
.zf-logo-text {
    margin: 0;
    flex: 0 0 auto;
}

.zf-logo a,
.zf-logo-text a {
    display: flex;
    align-items: center;
}

.zf-logo img {
    max-height: 50px;
    max-width: 180px;
}

.zf-logo-text a span {
    font-size: 28px;
    font-weight: 700;
    color: #3f4d69;
    letter-spacing: 1px;
    white-space: nowrap;
}

.zf-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.15;
}

.zf-brand-tagline {
    max-width: 250px;
    margin-top: 5px;
    overflow: hidden;
    color: var(--zf-muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zf-nav-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.zf-nav .nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.zf-nav .nav::-webkit-scrollbar {
    display: none;
}

.zf-nav li {
    position: relative;
    list-style: none;
}

.zf-nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    color: #516074;
    font-size: 14px;
    font-weight: 600;
    transition: all .22s ease;
    white-space: nowrap;
}

.zf-nav li a:hover,
.zf-nav li.active > a {
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
}

.zf-nav li > ul {
    position: absolute;
    top: 48px;
    left: 50%;
    min-width: 180px;
    padding: 8px 0;
    margin: 0;
    border: 1px solid var(--zf-border);
    border-radius: 12px;
    background: var(--zf-surface);
    box-shadow: var(--zf-shadow);
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    z-index: 10;
}

.zf-nav li.on > ul {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.zf-nav li > ul li {
    display: block;
    width: 100%;
}

.zf-nav li > ul li a {
    display: block;
    min-height: 0;
    padding: 8px 16px;
    border-radius: 0;
    font-weight: 500;
}

.zf-nav li > ul li a:hover {
    background: var(--zf-surface-soft);
}

.zf-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
}

.zf-order-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--zf-border);
    border-radius: 10px;
    background: var(--zf-surface-soft);
    color: var(--zf-primary-deep);
    font-size: 14px;
    font-weight: 600;
    transition: all .22s ease;
}

.zf-order-link:hover {
    background: var(--zf-primary-soft);
}

.zf-auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zf-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all .22s ease;
}

.zf-auth-btn.is-ghost {
    border: 1px solid var(--zf-border);
    background: var(--zf-surface-soft);
    color: #4d5970;
}

.zf-auth-btn.is-ghost:hover {
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
}

.zf-auth-btn.is-solid {
    background: linear-gradient(135deg, #83b1f6, var(--zf-primary));
    color: #fff;
    box-shadow: 0 10px 18px rgba(109, 158, 234, 0.24);
}

.zf-auth-btn.is-solid:hover {
    transform: translateY(-1px);
}

.zf-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 12px 5px 5px;
    border: 1px solid var(--zf-border);
    border-radius: 999px;
    background: var(--zf-surface-soft);
}

.zf-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.zf-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.zf-user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}

.zf-user-balance {
    font-size: 12px;
    color: var(--zf-muted);
}

.zf-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--zf-border);
    background: var(--zf-surface-soft);
    color: #556072;
    cursor: pointer;
}

.zf-menu-btn i {
    font-size: 16px;
}

.m-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--zf-surface);
    box-shadow: 20px 0 40px rgba(15, 23, 42, 0.12);
    overflow-y: auto;
    z-index: 1000;
    transition: left .25s ease;
}

body.open .m-nav {
    left: 0;
}

.m-nav .m-wrap {
    padding: 64px 0 32px;
}

.m-nav > .m-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--zf-border);
    background: var(--zf-surface-soft);
    color: #556072;
    cursor: pointer;
    z-index: 2;
}

.m-nav > .m-btn i {
    font-size: 16px;
}

.m-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.m-nav li {
    position: relative;
}

.m-nav li a {
    display: block;
    padding: 0 24px;
    line-height: 48px;
    border-bottom: 1px solid #f0f3f8;
    color: var(--zf-text);
    font-weight: 600;
}

.m-nav li a:hover {
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
}

.m-nav li em[class*="dot"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    text-align: center;
    cursor: pointer;
}

.m-nav li em[class*="dot"] .fa {
    line-height: 48px;
    color: var(--zf-muted);
    transition: transform .2s ease;
}

.m-nav li em[class*="dot"] .fa.open {
    transform: rotate(180deg);
}

.m-nav ul li > ul {
    display: none;
}

.m-nav ul li > ul li {
    background: var(--zf-surface-soft);
}

.zf-footer {
    flex-shrink: 0;
    margin-top: 30px;
    padding: 20px 0 24px;
    border-top: 1px solid var(--zf-border);
    background: var(--zf-surface);
}

.zf-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.zf-footer-brand {
    font-size: 14px;
    font-weight: 700;
    color: #2f3543;
}

.zf-footer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    color: var(--zf-muted);
    font-size: 13px;
}

.zf-footer-meta a {
    color: var(--zf-muted);
}

.zf-mobile-nav {
    display: none;
}

.zf-marquee-card,
.zf-toolbar-card,
.zf-subtabs-card,
.zf-section-card,
.zf-side-card,
.zf-product-panel,
.zf-content-panel,
.zf-summary-card {
    background: var(--zf-surface);
    border: 1px solid var(--zf-border);
    border-radius: 14px;
    box-shadow: var(--zf-shadow);
}

.zf-marquee-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    margin-bottom: 14px;
}

.zf-marquee-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 700;
    color: #e28b3f;
}

.zf-marquee-content {
    min-width: 0;
    color: #5f6776;
    font-size: 14px;
    line-height: 1.7;
}

.zf-marquee-content > * {
    margin: 0;
}

.zf-toolbar-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    margin-bottom: 14px;
}

.zf-toolbar-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zf-tab-chip,
.zf-subtab-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--zf-border);
    border-radius: 10px;
    background: var(--zf-surface);
    color: #4b5668;
    font-size: 15px;
    font-weight: 700;
    transition: all .22s ease;
}

.zf-tab-chip:hover,
.zf-subtab-chip:hover {
    border-color: #d6e2f6;
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
}

.zf-tab-chip.is-active,
.zf-subtab-chip.is-active {
    border-color: var(--zf-primary);
    background: linear-gradient(135deg, #7fb0f4, var(--zf-primary));
    color: #fff;
    box-shadow: 0 10px 20px rgba(109, 158, 234, 0.22);
}

.zf-search-form {
    flex: 0 0 340px;
    max-width: 100%;
}

.zf-search-box {
    position: relative;
    height: 44px;
    border: 1px solid var(--zf-border);
    border-radius: 12px;
    background: var(--zf-surface-soft);
    padding: 0 110px 0 38px;
    transition: all .2s ease;
}

.zf-search-box:focus-within {
    border-color: var(--zf-primary);
    box-shadow: 0 0 0 4px rgba(109, 158, 234, 0.12);
    background: #fff;
}

.zf-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #97a1af;
}

.zf-search-input {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    outline: none;
    color: var(--zf-text);
    font-size: 14px;
}

.zf-search-clear {
    position: absolute;
    top: 50%;
    right: 92px;
    transform: translateY(-50%);
    display: none;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #91a0b0;
    cursor: pointer;
}

.zf-search-clear.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.zf-search-submit {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 78px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #7fb0f4, var(--zf-primary));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.zf-subtabs-card {
    padding: 12px 14px;
    margin-bottom: 14px;
}

.zf-subtabs-card.is-hidden {
    display: none;
}

.zf-subtabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.zf-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    align-items: start;
}

.zf-list-main,
.zf-detail-main {
    min-width: 0;
}

.zf-list-sidebar,
.zf-detail-side {
    min-width: 0;
}

.zf-list-sidebar {
    position: sticky;
    top: 98px;
}

.zf-section-card {
    padding: 18px;
}

.zf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f3f8;
    margin-bottom: 18px;
}

.zf-section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #2f3746;
}

.zf-section-title i {
    color: #394250;
}

.zf-section-desc {
    color: var(--zf-muted);
    font-size: 14px;
    text-align: right;
}

#goods-list-wrapper {
    transition: opacity .22s ease, transform .22s ease;
}

#goods-list-wrapper.is-loading {
    opacity: .55;
    transform: translateY(4px);
}

.zf-goods-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.zf-product-card,
.zf-skeleton-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--zf-border);
    border-radius: 12px;
    background: var(--zf-surface);
    transition: all .22s ease;
}

.zf-product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--zf-shadow-hover);
}

.zf-product-thumb,
.zf-skeleton-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--zf-surface-soft);
}

.zf-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zf-product-body,
.zf-skeleton-body {
    min-width: 0;
    flex: 1 1 auto;
}

.zf-product-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    color: #2f3746;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zf-product-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.zf-mini-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid transparent;
}

.zf-mini-badge.is-auto {
    color: var(--zf-success);
    background: #ecfaf4;
    border-color: #bde7d4;
}

.zf-mini-badge.is-manual {
    color: var(--zf-warning);
    background: #fff6ea;
    border-color: #ffd9ab;
}

.zf-mini-badge.is-stock,
.zf-mini-badge.is-sales {
    color: var(--zf-accent);
    background: #fff3f1;
    border-color: #ffd4cf;
}

.zf-product-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.zf-product-price {
    color: var(--zf-accent);
    font-size: 18px;
    font-weight: 700;
}

.zf-product-market {
    color: #9ba4b1;
    font-size: 12px;
    text-decoration: line-through;
}

.zf-side-card {
    padding: 18px;
}

.zf-side-card + .zf-side-card {
    margin-top: 16px;
}

.zf-mobile-notice-card {
    display: none;
    margin-bottom: 14px;
}

.zf-mobile-service-strip {
    display: none;
}

.zf-side-card.is-soft {
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.zf-side-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #2f3746;
    margin-bottom: 16px;
}

.zf-side-content {
    color: #5f6776;
    font-size: 14px;
    line-height: 1.9;
}

.zf-side-content > *:first-child {
    margin-top: 0;
}

.zf-side-content > *:last-child {
    margin-bottom: 0;
}

.zf-side-content img {
    border-radius: 10px;
    max-width: 100%;
}

.zf-default-note {
    margin: 0;
    padding-left: 18px;
}

.zf-default-note li + li {
    margin-top: 6px;
}

.zf-service-list {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.zf-service-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.zf-service-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zf-service-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.zf-service-text strong {
    font-size: 14px;
    color: #334155;
}

.zf-service-text span {
    font-size: 13px;
    color: var(--zf-muted);
}

.zf-side-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    background: #515671;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: all .22s ease;
}

.zf-side-button:hover {
    opacity: .94;
}

.zf-side-button.is-light {
    background: var(--zf-surface-soft);
    color: #556072;
    border: 1px solid var(--zf-border);
}

.zf-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 70px 20px;
    color: var(--zf-muted);
    text-align: center;
}

.zf-empty-state i {
    font-size: 44px;
    color: #c2cad7;
}

.zf-skeleton-thumb,
.zf-skeleton-line {
    position: relative;
    overflow: hidden;
    background: #edf1f6;
}

.zf-skeleton-thumb::after,
.zf-skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), transparent);
    transform: translateX(-100%);
    animation: zf-shimmer 1.3s infinite;
}

.zf-skeleton-line {
    height: 12px;
    margin-bottom: 12px;
    border-radius: 999px;
}

.zf-skeleton-line.short {
    width: 70%;
}

.zf-skeleton-line.price {
    width: 40%;
}

@keyframes zf-shimmer {
    to {
        transform: translateX(100%);
    }
}

.zf-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 16px;
    align-items: start;
}

.zf-product-panel {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
}

.zf-product-media {
    border-radius: 14px;
    overflow: hidden;
    background: var(--zf-surface-soft);
    border: 1px solid #f0f3f8;
}

.goods-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: var(--zf-surface-soft);
}

.zf-product-title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 700;
    color: #3a4457;
}

.zf-product-brief {
    margin: 0 0 18px;
    color: var(--zf-muted);
    font-size: 14px;
}

.zf-inline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.zf-inline-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--zf-border);
    background: var(--zf-surface-soft);
    font-size: 13px;
    font-weight: 700;
}

.zf-inline-chip.is-stock {
    color: var(--zf-primary-deep);
}

.zf-inline-chip.is-sales {
    color: var(--zf-success);
}

.zf-inline-chip.is-delivery {
    color: #8a5b18;
}

.zf-form-block {
    margin-bottom: 20px;
}

.zf-form-block.is-side:last-of-type {
    margin-bottom: 18px;
}

.zf-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #465063;
}

.spec-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-option {
    position: relative;
    min-width: 68px;
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--zf-border);
    border-radius: 10px;
    background: var(--zf-surface-soft);
    color: #4e5b70;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    text-align: center;
}

.spec-option:hover {
    border-color: #d7e2f4;
    background: var(--zf-primary-soft);
}

.spec-option.active {
    border-color: var(--zf-primary);
    background: #f2f7ff;
    color: var(--zf-primary-deep);
    box-shadow: 0 0 0 3px rgba(109, 158, 234, 0.12);
}

.spec-option.disabled {
    cursor: not-allowed !important;
    opacity: .45 !important;
    text-decoration: line-through;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--zf-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--zf-surface-soft);
}

.quantity-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #556072;
    cursor: pointer;
}

.quantity-input {
    width: 64px;
    height: 42px;
    border: 0;
    border-left: 1px solid var(--zf-border);
    border-right: 1px solid var(--zf-border);
    background: #fff;
    text-align: center;
    outline: none;
    font-weight: 700;
    color: #364152;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

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

.payment-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid var(--zf-border);
    border-radius: 12px;
    background: var(--zf-surface-soft);
    cursor: pointer;
    transition: all .22s ease;
}

.payment-item:hover,
.payment-item.active {
    border-color: #d7e2f4;
    background: var(--zf-primary-soft);
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
}

.payment-icon img {
    width: 24px;
    height: 24px;
}

.payment-name {
    font-size: 14px;
    font-weight: 700;
    color: #394250;
}

.payment-checked {
    display: none;
    position: absolute;
    top: -8px;
    right: -8px;
    color: var(--zf-primary-deep);
    font-size: 22px;
    background: #fff;
    border-radius: 50%;
}

.payment-item.active .payment-checked {
    display: block;
}

.zf-content-panel {
    margin-top: 16px;
    padding: 18px;
}

.zf-content-panel.is-mobile {
    display: none;
}

.zf-panel-title,
.zf-side-meta-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #2f3746;
}

.intro {
    color: #4d5666;
    font-size: 16px;
    line-height: 1.9;
    word-break: break-word;
}

.intro > *:first-child {
    margin-top: 0;
}

.intro > *:last-child {
    margin-bottom: 0;
}

.intro img {
    max-width: 100%;
    height: auto;
    margin: 12px 0;
    border-radius: 12px;
}

.zf-detail-side {
    position: sticky;
    top: 98px;
}

.zf-summary-card {
    padding: 20px;
}

.zf-summary-topline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8c6223;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.zf-summary-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--zf-accent);
    font-weight: 700;
}

.zf-summary-price-unit {
    font-size: 24px;
}

.zf-summary-price .dynamic-price {
    font-size: 42px;
    line-height: 1;
}

.zf-summary-original {
    color: #8f97a5;
    font-size: 16px;
    text-decoration: line-through;
}

.layui-input {
    height: 46px;
    border-radius: 10px;
    border-color: var(--zf-border);
    background: var(--zf-surface-soft);
    color: var(--zf-text);
    padding: 0 14px;
}

.layui-input:focus {
    border-color: var(--zf-primary) !important;
    box-shadow: 0 0 0 4px rgba(109, 158, 234, 0.12);
}

.zf-form-help {
    margin-top: 8px;
    color: var(--zf-muted);
    font-size: 13px;
}

.coupon-input-wrap {
    position: relative;
}

.coupon-input {
    padding-right: 82px;
}

.coupon-apply-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    height: 34px;
    line-height: 34px;
    padding: 0 14px;
    border-radius: 9px;
    border: 1px solid #cfe0fb;
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
    font-size: 13px;
    font-weight: 700;
}

.coupon-change-link {
    display: none;
    color: var(--zf-primary-deep);
    font-size: 13px;
}

.coupon-tip {
    display: none;
    margin-top: 8px;
    color: var(--zf-accent);
    font-size: 13px;
}

.drawer-footer {
    margin-top: 22px;
}

.buy-btn-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    background: #4f536f;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(79, 83, 111, 0.18);
    transition: all .22s ease;
}

.buy-btn-g:hover {
    transform: translateY(-1px);
}

.total-price {
    font-size: 15px;
    font-weight: 600;
    opacity: .9;
}

.zf-side-meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #edf1f6;
}

.zf-side-meta-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.zf-side-meta-item + .zf-side-meta-item {
    margin-top: 14px;
}

.zf-side-meta-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--zf-primary-soft);
    color: var(--zf-primary-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zf-side-meta-item strong {
    display: block;
    font-size: 15px;
    color: #394250;
    margin-bottom: 2px;
}

.zf-side-meta-item span {
    color: var(--zf-muted);
    font-size: 14px;
}

.zf-service-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #edf4fd;
    color: #47566c;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .zf-header-actions .zf-order-link {
        display: none;
    }

    .zf-list-layout {
        grid-template-columns: 1fr 300px;
    }

    .zf-product-panel {
        grid-template-columns: 320px minmax(0, 1fr);
    }
}

@media (min-width: 1201px) {
    .zf-goods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .zf-product-thumb,
    .zf-skeleton-thumb {
        flex-basis: 84px;
        width: 84px;
        height: 84px;
    }

    .zf-product-card,
    .zf-skeleton-card {
        gap: 12px;
        padding: 12px;
    }
}

@media (max-width: 992px) {
    .zf-menu-btn {
        display: none;
    }

    .zf-header-inner {
        min-height: auto;
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    

    .zf-order-link {
        display: none;
    }

    .zf-nav-wrap {
        width: 100%;
        order: 3;
        display: flex;
        padding-top: 8px;
    }

    .zf-nav .nav {
        flex-direction: row;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
    }

    .zf-nav .nav > li > a {
        width: auto;
        justify-content: center;
    }

    .zf-nav li > ul {
        position: static;
        min-width: 0;
        margin-top: 6px;
        padding: 4px 0 0 12px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .zf-list-layout,
    .zf-detail-layout,
    .zf-product-panel {
        grid-template-columns: 1fr;
    }

    .zf-mobile-notice-card {
        display: block;
    }

    .zf-side-card.is-site-notice {
        display: none;
    }

    .zf-list-sidebar,
    .zf-detail-side {
        position: static;
    }

    .zf-detail-layout {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .zf-detail-main {
        order: 1;
        width: 100%;
        align-self: stretch;
    }

    .zf-detail-side {
        order: 2;
        width: 100%;
        align-self: stretch;
    }

    .zf-detail-side .zf-summary-card,
    .zf-content-panel.is-mobile {
        width: 100%;
    }

    .zf-content-panel.is-desktop {
        display: none;
    }

    .zf-content-panel.is-mobile {
        display: block;
        order: 3;
        margin-top: 0;
        align-self: stretch;
    }

    .zf-search-form {
        flex: 1 1 100%;
    }

    .zf-toolbar-card {
        flex-direction: column;
        align-items: stretch;
    }

    .zf-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .zf-section-desc {
        text-align: left;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    .zf-main {
        padding-top: 12px;
    }

    .zf-logo-text a span {
        font-size: 21px;
    }

    .zf-header-inner {
        min-height: 64px;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px 0;
    }

    .zf-logo,
    .zf-logo-text {
        min-width: 0;
        flex: 1 1 auto;
    }

    .zf-logo-text a,
    .zf-brand-copy,
    .zf-brand-name {
        min-width: 0;
        max-width: 100%;
    }

    .zf-brand-name {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .zf-brand-tagline,
    .zf-nav-wrap {
        display: none;
    }

    .zf-header-actions {
        gap: 6px;
    }

    .zf-header-actions .zf-order-link {
        display: inline-flex;
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 12px;
    }

    .zf-order-link span {
        display: none;
    }

    .zf-auth-links {
        gap: 5px;
    }

    .zf-auth-btn {
        min-width: 52px;
        height: 38px;
        padding: 0 10px;
        border-radius: 12px;
        font-size: 13px;
    }

    .zf-user-chip {
        max-width: 124px;
        padding-right: 8px;
    }

    .zf-user-info {
        min-width: 0;
    }

    .zf-user-name {
        max-width: 68px;
    }

    .zf-marquee-card,
    .zf-toolbar-card,
    .zf-subtabs-card,
    .zf-section-card,
    .zf-side-card,
    .zf-product-panel,
    .zf-content-panel,
    .zf-summary-card {
        border-radius: 12px;
    }

    .zf-goods-grid {
        grid-template-columns: 1fr;
    }

    .zf-mobile-notice-card {
        margin-bottom: 10px;
        padding: 14px;
    }

    .zf-mobile-notice-card .zf-side-title {
        margin-bottom: 10px;
    }

    .zf-toolbar-card {
        position: sticky;
        top: 72px;
        z-index: 20;
        gap: 10px;
        margin-bottom: 10px;
        padding: 10px;
        box-shadow: 0 10px 28px rgba(31, 47, 70, .1);
    }

    .zf-toolbar-tabs,
    .zf-subtabs {
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .zf-toolbar-tabs::-webkit-scrollbar,
    .zf-subtabs::-webkit-scrollbar {
        display: none;
    }

    .zf-tab-chip,
    .zf-subtab-chip {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .zf-search-box {
        height: 42px;
    }

    .zf-mobile-service-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 0 0 10px;
    }

    .zf-mobile-service-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 40px;
        padding: 0 6px;
        border: 1px solid var(--zf-border);
        border-radius: 11px;
        background: rgba(255, 255, 255, .86);
        color: #596579;
        font-size: 12px;
        font-weight: 700;
    }

    .zf-mobile-service-item i {
        color: var(--zf-primary-deep);
    }

    .zf-section-card {
        padding: 14px;
    }

    .zf-section-head {
        gap: 4px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .zf-product-card,
    .zf-skeleton-card {
        min-height: 112px;
        padding: 11px;
        border-radius: 14px;
    }

    .zf-product-thumb,
    .zf-skeleton-thumb {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
    }

    .zf-product-name {
        margin-bottom: 7px;
        font-size: 14px;
        line-height: 1.45;
    }

    .zf-product-flags {
        gap: 5px;
        margin-bottom: 7px;
    }

    .zf-mini-badge {
        min-height: 22px;
        padding: 0 7px;
        border-radius: 7px;
        font-size: 11px;
    }

    .zf-product-price {
        font-size: 19px;
    }

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

    .zf-product-media {
        width: min(210px, 62vw);
        margin: 0 auto;
    }

    .zf-summary-card {
        padding: 16px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .payment-item {
        min-height: 52px;
        padding: 9px 10px;
    }

    .payment-icon {
        width: 32px;
        height: 32px;
    }

    .payment-name {
        font-size: 13px;
    }

    .zf-product-title {
        font-size: 22px;
    }

    .zf-summary-price .dynamic-price {
        font-size: 36px;
    }

    .page-goods-list .zf-footer {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .page-goods-list .zf-mobile-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--zf-border);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        z-index: 997;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
    }

    .zf-mobile-nav .nav-item {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 48px;
        color: #8a93a1;
        font-size: 11px;
        font-weight: 600;
    }

    .zf-mobile-nav .nav-item.active {
        color: var(--zf-primary-deep);
    }

    .zf-mobile-nav .nav-icon {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .zf-tab-chip,
    .zf-subtab-chip {
        min-height: 38px;
        padding: 0 14px;
        font-size: 14px;
    }

    .zf-toolbar-tabs,
    .zf-subtabs {
        gap: 8px;
    }

    .zf-section-desc {
        font-size: 12px;
    }

    .zf-marquee-card {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .zf-product-card,
    .zf-skeleton-card {
        gap: 12px;
    }

    .zf-footer-inner,
    .zf-footer-meta {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .zf-footer-meta {
        gap: 6px;
    }
}

@media (max-width: 390px) {
    .zf-auth-btn {
        min-width: 46px;
        padding: 0 8px;
    }

    .zf-header-actions .zf-order-link {
        width: 36px;
        height: 36px;
    }

    .zf-product-thumb,
    .zf-skeleton-thumb {
        flex-basis: 80px;
        width: 80px;
        height: 80px;
    }

    .zf-mobile-service-item {
        gap: 4px;
        font-size: 11px;
    }
}

/* 云栖 2.0：商城优先的单一视觉系统 */
:root {
    --yq-primary: #3568d4;
    --yq-primary-dark: #2754b5;
    --yq-text: #202631;
    --yq-muted: #737b88;
    --yq-border: #e7e9ee;
    --yq-surface: #fff;
    --yq-page: #f5f6f8;
    --yq-radius: 14px;
}

.yq-body {
    color: var(--yq-text);
    background: var(--yq-page);
}

.yq-body .zf-header-bar {
    height: 64px;
    border-bottom: 1px solid var(--yq-border);
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.yq-body .zf-header-inner {
    min-height: 64px;
    gap: 16px;
}

.yq-body .zf-logo-text {
    flex: 0 0 auto;
}

.yq-body .zf-logo-text a {
    gap: 9px;
}

    .yq-body .yq-brand-mark {
        width: 34px;
        height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    background: var(--yq-primary);
    box-shadow: none;
        font-size: 16px !important;
    }

    .yq-body .yq-brand-mark img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-fit: cover;
    }

.yq-body .zf-brand-copy {
    width: auto;
}

.yq-body .zf-brand-name {
    color: #1c2430;
    font-size: 20px;
    font-weight: 780;
    letter-spacing: -.03em;
}

.yq-body .zf-brand-tagline {
    color: #9299a4;
    font-size: 10px;
    letter-spacing: .08em;
}

.yq-body .yq-primary-links {
    gap: 17px;
}

.yq-body .yq-primary-links a {
    position: relative;
    min-height: 64px;
    padding: 0;
    border-radius: 0;
    color: #626b78;
    font-size: 13px;
    font-weight: 600;
}

.yq-body .yq-primary-links a:hover {
    color: var(--yq-primary);
    background: transparent;
}

.yq-body .yq-primary-links a.is-active {
    color: var(--yq-text);
}

.yq-body .yq-primary-links a.is-active::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: var(--yq-primary);
    content: "";
}

.yq-body .yq-header-search {
    max-width: none;
    height: 38px;
    flex: 1 1 220px;
    border: 1px solid var(--yq-border);
    border-radius: 10px;
    background: #f7f8fa;
}

.yq-body .yq-header-search:focus-within {
    border-color: #b9c9ea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(53, 104, 212, .08);
}

.yq-body .yq-header-search input {
    font-size: 12px;
}

.yq-body .yq-header-search button {
    height: 30px;
    margin-right: 3px;
    border-radius: 8px;
    background: var(--yq-primary);
    font-size: 12px;
}

.yq-body .zf-header-actions {
    flex: 0 0 auto;
}

.yq-body .zf-auth-links {
    gap: 6px;
}

.yq-body .zf-auth-btn {
    min-width: 56px;
    height: 34px;
    padding: 0 12px;
    border-radius: 9px;
    font-size: 12px;
}

.yq-body .zf-auth-btn.is-solid,
.yq-body .zf-side-button {
    background: var(--yq-primary);
}

.yq-body .zf-auth-btn.is-solid:hover,
.yq-body .zf-side-button:hover {
    background: var(--yq-primary-dark);
}

.yq-body .zf-main {
    padding-top: 14px;
    background: var(--yq-page);
}

.yq-commerce-bar {
    display: grid;
    grid-template-columns: 220px minmax(250px, 1fr) auto;
    min-height: 72px;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border: 1px solid var(--yq-border);
    border-radius: var(--yq-radius);
    background: var(--yq-surface);
}

.yq-commerce-promise {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.yq-commerce-promise strong {
    color: var(--yq-text);
    font-size: 16px;
    line-height: 1.3;
}

.yq-commerce-promise span {
    overflow: hidden;
    color: var(--yq-muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yq-commerce-bar .zf-search-form {
    display: block;
    width: 100%;
}

.yq-commerce-bar .zf-search-box {
    height: 44px;
    border: 1px solid #dfe3ea;
    border-radius: 11px;
    background: #f8f9fb;
    box-shadow: none;
}

.yq-commerce-bar .zf-search-box:focus-within {
    border-color: #b8c8e8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(53, 104, 212, .08);
}

.yq-commerce-bar .zf-search-submit {
    height: 34px;
    margin-right: 4px;
    border-radius: 8px;
    background: var(--yq-primary);
}

.yq-commerce-trust {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #6f7885;
    font-size: 11px;
    white-space: nowrap;
}

.yq-commerce-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.yq-commerce-trust i {
    color: var(--yq-primary);
}

.yq-notice-line {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 40px;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 7px 13px;
    border: 1px solid #eceef2;
    border-radius: 11px;
    color: #747c88;
    background: #fafbfc;
    font-size: 11px;
}

.yq-notice-label {
    color: #4c5563;
    font-weight: 700;
    white-space: nowrap;
}

.yq-notice-label i {
    margin-right: 4px;
    color: #e3a234;
}

.yq-notice-content {
    max-height: 22px;
    overflow: hidden;
    line-height: 22px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.yq-notice-content * {
    display: inline;
    margin: 0 !important;
    padding: 0 !important;
}

.yq-notice-content br {
    display: none;
}

.yq-notice-line > a {
    color: var(--yq-primary);
    font-weight: 650;
    white-space: nowrap;
}

.yq-body .zf-subtabs-card {
    margin-top: 10px;
    border: 1px solid var(--yq-border);
    border-radius: 11px;
    background: #fff;
    box-shadow: none;
}

.yq-body .zf-list-layout {
    grid-template-columns: 208px minmax(0, 1fr);
    gap: 16px;
    margin-top: 12px;
    scroll-margin-top: 76px;
}

.yq-body .zf-list-sidebar.yq-category-sidebar,
.yq-body .zf-section-card {
    border: 1px solid var(--yq-border);
    border-radius: var(--yq-radius);
    background: var(--yq-surface);
    box-shadow: none;
}

.yq-body .zf-list-sidebar.yq-category-sidebar {
    width: 208px;
    padding: 8px;
}

.yq-body .yq-category-title {
    min-height: 44px;
    padding: 0 9px 8px;
    border-bottom: 1px solid #eff0f3;
    color: var(--yq-text);
    font-size: 14px;
}

.yq-body .yq-category-title i {
    color: var(--yq-primary);
}

.yq-body .yq-category-list {
    gap: 3px;
    padding: 7px 0;
}

.yq-body .yq-category-item {
    min-height: 42px;
    gap: 9px;
    padding: 5px 8px;
    border-radius: 9px;
    color: #5e6672;
    font-size: 12px;
}

.yq-body .yq-category-item:hover {
    color: var(--yq-primary);
    background: #f3f6fc;
}

.yq-body .yq-category-item.is-active {
    color: var(--yq-primary-dark);
    background: #edf3ff;
    box-shadow: none;
}

.yq-body .yq-category-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    border-radius: 8px;
    color: #64728b;
    background: #f0f2f6;
    font-size: 11px;
}

.yq-body .yq-category-item.is-active .yq-category-icon {
    color: #fff;
    background: var(--yq-primary);
}

.yq-body .yq-category-service {
    gap: 8px;
    margin-top: 3px;
    padding: 10px 8px 3px;
    border-top: 1px solid #eff0f3;
    color: #8a919b;
    font-size: 10px;
}

.yq-body .yq-category-service i {
    color: var(--yq-primary);
}

.yq-body .zf-section-card {
    padding: 15px;
}

.yq-body .zf-section-head {
    min-height: 46px;
    margin-bottom: 12px;
    padding: 0;
    border-bottom: 0;
}

.yq-body .zf-section-title {
    color: var(--yq-text);
    font-size: 19px;
}

.yq-body .zf-section-title i {
    display: none;
}

.yq-body .zf-section-desc {
    color: #8a919b;
    font-size: 11px;
}

.yq-body .zf-goods-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.yq-body .zf-product-card {
    width: auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--yq-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
    transform: none;
}

.yq-body .zf-product-card:hover {
    border-color: #cbd5e5;
    box-shadow: 0 10px 24px rgba(27, 39, 57, .08);
    transform: translateY(-2px);
}

.yq-body .zf-product-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: #f3f4f6;
}

.yq-body .zf-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yq-body .zf-product-body {
    gap: 9px;
    padding: 11px 10px 12px;
}

.yq-body .zf-product-name {
    min-height: 38px;
    color: #303742;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
    -webkit-line-clamp: 2;
}

.yq-body .zf-product-flags {
    min-height: 20px;
    gap: 7px;
    overflow: hidden;
    flex-wrap: nowrap;
}

.yq-body .zf-mini-badge {
    flex: 0 0 auto;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 9px;
}

.yq-body .zf-mini-badge.is-auto {
    color: var(--yq-primary-dark);
    background: #edf3ff;
}

.yq-body .zf-mini-badge.is-manual {
    color: #9a6817;
    background: #fff5dc;
}

.yq-body .zf-mini-badge.is-stock {
    display: none;
}

.yq-body .zf-mini-badge.is-sales {
    padding-right: 0;
    padding-left: 0;
    color: #9298a2;
    background: transparent;
}

.yq-body .zf-product-price-row {
    min-height: 25px;
    align-items: baseline;
}

.yq-body .zf-product-price {
    color: #e45343;
    font-size: 19px;
    font-weight: 780;
}

.yq-body .zf-product-market {
    color: #adb1b8;
    font-size: 10px;
}

.yq-body .yq-blog-section {
    margin: 28px 0 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.yq-body .yq-blog-heading {
    margin-bottom: 12px;
    padding: 0 2px;
}

.yq-body .yq-eyebrow {
    margin-bottom: 3px;
    color: #8a919c;
    font-size: 10px;
    letter-spacing: .04em;
}

.yq-body .yq-blog-heading h2 {
    color: var(--yq-text);
    font-size: 20px;
}

.yq-body .yq-blog-heading p {
    display: none;
}

.yq-body .yq-blog-more {
    padding: 7px 10px;
    border: 1px solid var(--yq-border);
    border-radius: 9px;
    color: #626b78;
    background: #fff;
    font-size: 11px;
}

.yq-body .yq-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.yq-body .yq-blog-card {
    display: grid;
    min-height: 96px;
    grid-template-columns: 72px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--yq-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: none;
}

.yq-body .yq-blog-card:hover {
    border-color: #cbd5e5;
    box-shadow: 0 8px 20px rgba(27, 39, 57, .06);
}

.yq-body .yq-blog-cover {
    height: 100%;
    min-height: 96px;
    border-radius: 0;
}

.yq-body .yq-blog-placeholder {
    height: 100%;
    color: var(--yq-primary);
    background: #edf3ff;
}

.yq-body .yq-blog-placeholder i {
    font-size: 20px;
}

.yq-body .yq-blog-placeholder small {
    display: none;
}

.yq-body .yq-blog-body {
    justify-content: center;
    gap: 5px;
    padding: 11px;
}

.yq-body .yq-blog-meta {
    font-size: 9px;
}

.yq-body .yq-blog-meta span {
    color: var(--yq-primary);
}

.yq-body .yq-blog-body h3 {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

.yq-body .yq-blog-body p {
    display: none;
}

.yq-body .zf-footer {
    margin-top: 28px;
    border-top: 1px solid var(--yq-border);
    background: #fff;
}

@media (max-width: 1100px) {
    .yq-body .yq-primary-links {
        gap: 12px;
    }

    .yq-body .yq-primary-links a {
        font-size: 12px;
    }

    .yq-commerce-bar {
        grid-template-columns: 190px minmax(220px, 1fr) auto;
    }

    .yq-commerce-trust {
        gap: 8px;
    }
}

@media (max-width: 900px) {
    .yq-body .yq-primary-links {
        display: none;
    }

    .yq-commerce-bar {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .yq-commerce-trust {
        grid-column: 1 / -1;
        justify-content: flex-end;
    }

    .yq-body .zf-goods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .yq-body .zf-header-bar {
        height: 58px;
    }

    .yq-body .zf-header-inner {
        min-height: 58px;
        gap: 10px;
    }

    .yq-body .yq-brand-mark {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        border-radius: 9px;
        font-size: 14px !important;
    }

    .yq-body .zf-brand-name {
        font-size: 17px;
    }

    .yq-body .zf-brand-tagline {
        display: none;
    }

    .yq-body .yq-header-search {
        position: static;
        width: 36px;
        max-width: 36px;
        height: 36px;
        flex: 0 0 36px;
        border-color: transparent;
        background: #f2f4f7;
    }

    .yq-body .yq-header-search.is-open {
        position: absolute;
        z-index: 5;
        right: 0;
        left: 0;
        width: auto;
        max-width: none;
        border-color: var(--yq-border);
        background: #fff;
    }

    .yq-body .yq-header-search input,
    .yq-body .yq-header-search button {
        display: none;
    }

    .yq-body .yq-header-search.is-open input,
    .yq-body .yq-header-search.is-open button {
        display: block;
    }

    .yq-body .zf-header-actions {
        display: none;
    }

    .yq-body .zf-main {
        padding-top: 8px;
    }

    .yq-commerce-bar {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 9px;
        padding: 11px;
        border-radius: 12px;
    }

    .yq-commerce-promise {
        padding: 0 2px;
    }

    .yq-commerce-promise strong {
        font-size: 15px;
    }

    .yq-commerce-promise span {
        font-size: 10px;
    }

    .yq-commerce-bar .zf-search-box {
        height: 40px;
    }

    .yq-commerce-bar .zf-search-input {
        font-size: 12px;
    }

    .yq-commerce-bar .zf-search-submit {
        height: 32px;
        font-size: 11px;
    }

    .yq-commerce-trust {
        width: 100%;
        justify-content: space-between;
        gap: 6px;
        padding: 0 2px;
        font-size: 9px;
    }

    .yq-notice-line {
        min-height: 34px;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 8px;
        margin-top: 7px;
        padding: 5px 10px;
        border-radius: 9px;
        font-size: 10px;
    }

    .yq-notice-line > a {
        display: none;
    }

    .yq-notice-content {
        max-height: 20px;
        line-height: 20px;
    }

    .yq-body .zf-subtabs-card {
        margin-top: 7px;
    }

    .yq-body .zf-list-layout {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 8px;
        margin-top: 7px;
    }

    .yq-body .zf-list-sidebar.yq-category-sidebar {
        order: 0;
        width: 100%;
        height: 55px;
        min-height: 55px;
        padding: 7px;
        overflow: hidden;
        border-radius: 11px;
    }

    .yq-body .yq-category-title,
    .yq-body .yq-category-service {
        display: none;
    }

    .yq-body .yq-category-list {
        display: flex;
        height: 41px;
        gap: 6px;
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .yq-body .yq-category-list::-webkit-scrollbar {
        display: none;
    }

    .yq-body .yq-category-item {
        min-width: max-content;
        min-height: 40px;
        flex: 0 0 auto;
        padding: 5px 10px 5px 6px;
        font-size: 11px;
    }

    .yq-body .yq-category-icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .yq-body .zf-list-main {
        order: 1;
        width: 100%;
    }

    .yq-body .zf-section-card {
        padding: 10px;
        border-radius: 11px;
    }

    .yq-body .zf-section-head {
        min-height: 42px;
        margin-bottom: 8px;
    }

    .yq-body .zf-section-title {
        font-size: 17px;
    }

    .yq-body .zf-section-desc {
        max-width: 165px;
        overflow: hidden;
        font-size: 9px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .yq-body .zf-goods-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .yq-body .zf-product-card {
        border-radius: 10px;
    }

    .yq-body .zf-product-body {
        gap: 7px;
        padding: 9px 8px 10px;
    }

    .yq-body .zf-product-name {
        min-height: 35px;
        font-size: 12px;
    }

    .yq-body .zf-product-price {
        font-size: 17px;
    }

    .yq-body .yq-blog-section {
        margin-top: 20px;
    }

    .yq-body .yq-blog-heading h2 {
        font-size: 18px;
    }

    .yq-body .yq-blog-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .yq-body .yq-blog-card {
        min-height: 82px;
        grid-template-columns: 64px minmax(0, 1fr);
        border-radius: 10px;
    }

    .yq-body .yq-blog-cover {
        min-height: 82px;
    }

    .yq-body .zf-mobile-nav {
        height: 58px;
        border-top: 1px solid var(--yq-border);
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -6px 18px rgba(23, 32, 46, .06);
    }

    .yq-body .zf-mobile-nav .nav-item.active {
        color: var(--yq-primary);
    }
}

/* 云栖 2.1：暖绿精品商城视觉 */
:root {
    --yq-primary: #176c4b;
    --yq-primary-dark: #0f5137;
    --yq-text: #14261f;
    --yq-muted: #69736c;
    --yq-border: rgba(20, 38, 31, .12);
    --yq-surface: rgba(255, 255, 252, .82);
    --yq-page: #f4f1e9;
    --yq-radius: 20px;
}

.yq-body {
    color: var(--yq-text);
    background:
        radial-gradient(circle at 8% 2%, rgba(212, 225, 205, .45), transparent 28rem),
        radial-gradient(circle at 94% 18%, rgba(235, 213, 175, .28), transparent 26rem),
        var(--yq-page);
    font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.yq-body .zf-header-bar {
    height: 68px;
    border-bottom-color: rgba(20, 38, 31, .1);
    background: rgba(250, 248, 242, .9);
    backdrop-filter: blur(18px);
}

.yq-body .zf-header-inner {
    min-height: 68px;
}

.yq-body .yq-brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 12px;
    background: var(--yq-primary);
    box-shadow: 0 8px 20px rgba(23, 108, 75, .17);
}

.yq-body .zf-brand-name {
    color: var(--yq-text);
    font-weight: 760;
}

.yq-body .zf-brand-tagline {
    color: #788179;
}

.yq-body .yq-primary-links a {
    min-height: 68px;
    color: #58645d;
}

.yq-body .yq-primary-links a:hover,
.yq-body .yq-primary-links a.is-active {
    color: var(--yq-primary-dark);
}

.yq-body .yq-primary-links a.is-active::after {
    height: 3px;
    background: var(--yq-primary);
}

.yq-body .yq-header-search {
    border-color: rgba(20, 38, 31, .1);
    background: rgba(255, 255, 252, .65);
}

.yq-body .yq-header-search:focus-within {
    border-color: rgba(23, 108, 75, .35);
    box-shadow: 0 0 0 3px rgba(23, 108, 75, .08);
}

.yq-body .yq-header-search button,
.yq-body .yq-commerce-bar .zf-search-submit,
.yq-body .zf-auth-btn.is-solid,
.yq-body .zf-side-button {
    background: var(--yq-primary);
}

.yq-body .yq-header-search button:hover,
.yq-body .yq-commerce-bar .zf-search-submit:hover,
.yq-body .zf-auth-btn.is-solid:hover,
.yq-body .zf-side-button:hover {
    background: var(--yq-primary-dark);
}

.yq-body .zf-auth-btn.is-ghost {
    border-color: rgba(20, 38, 31, .14);
    color: #4f5c55;
    background: rgba(255, 255, 252, .48);
}

.yq-body .zf-main {
    background: transparent;
}

.yq-commerce-bar {
    position: relative;
    min-height: 92px;
    grid-template-columns: 264px minmax(250px, 1fr) auto;
    overflow: hidden;
    padding: 15px 18px;
    border-color: rgba(20, 38, 31, .1);
    border-radius: 24px;
    background:
        radial-gradient(circle at 6% 12%, rgba(198, 218, 190, .42), transparent 17rem),
        linear-gradient(135deg, rgba(255, 255, 252, .9), rgba(249, 246, 236, .82));
    box-shadow: 0 20px 52px rgba(38, 57, 48, .08);
    color: var(--yq-text);
}

.yq-commerce-bar::after {
    position: absolute;
    top: -44px;
    right: -34px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(23, 108, 75, .08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.yq-commerce-promise {
    position: relative;
    z-index: 1;
    gap: 2px;
}

.yq-commerce-kicker {
    display: block;
    margin-bottom: 3px;
    color: var(--yq-primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
}

.yq-commerce-promise strong {
    color: var(--yq-text);
    font-size: 17px;
    font-weight: 730;
}

.yq-commerce-promise span {
    color: #748078;
}

.yq-commerce-bar .zf-search-form,
.yq-commerce-trust {
    position: relative;
    z-index: 1;
}

.yq-commerce-bar .zf-search-box {
    height: 46px;
    border-color: rgba(20, 38, 31, .12);
    border-radius: 14px;
    background: rgba(255, 255, 252, .76);
}

.yq-commerce-bar .zf-search-box:focus-within {
    border-color: rgba(23, 108, 75, .34);
    box-shadow: 0 0 0 4px rgba(23, 108, 75, .07);
}

.yq-commerce-bar .zf-search-submit {
    border-radius: 11px;
}

.yq-commerce-trust {
    color: #5e6a63;
}

.yq-commerce-trust i {
    color: var(--yq-primary);
}

.yq-notice-line {
    min-height: 42px;
    border-color: rgba(20, 38, 31, .09);
    border-radius: 14px;
    color: #68736c;
    background: rgba(255, 255, 252, .48);
}

.yq-notice-label {
    color: #536159;
}

.yq-notice-label i {
    color: #b88035;
}

.yq-notice-line > a {
    color: var(--yq-primary);
}

.yq-body .zf-subtabs-card {
    border-color: var(--yq-border);
    border-radius: 14px;
    background: var(--yq-surface);
}

.yq-body .zf-list-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
}

.yq-body .zf-list-sidebar.yq-category-sidebar,
.yq-body .zf-section-card {
    border-color: var(--yq-border);
    color: var(--yq-text);
    background: var(--yq-surface);
    box-shadow: 0 15px 42px rgba(38, 57, 48, .055);
    backdrop-filter: blur(12px);
}

.yq-body .zf-list-sidebar.yq-category-sidebar {
    width: 210px;
    padding: 10px;
    border-radius: 20px;
}

.yq-body .yq-category-title {
    min-height: 48px;
    border-bottom-color: rgba(20, 38, 31, .09);
    color: var(--yq-text);
}

.yq-body .yq-category-title i {
    color: var(--yq-primary);
}

.yq-body .yq-category-list {
    gap: 4px;
    padding: 9px 0;
}

.yq-body .yq-category-item {
    min-height: 44px;
    border-radius: 12px;
    color: #59655e;
}

.yq-body .yq-category-item:hover {
    color: var(--yq-primary-dark);
    background: rgba(226, 235, 221, .62);
}

.yq-body .yq-category-item.is-active {
    color: #fff;
    background: var(--yq-primary);
    box-shadow: 0 9px 20px rgba(23, 108, 75, .15);
}

.yq-body .yq-category-icon {
    color: #637168;
    background: rgba(228, 231, 222, .8);
}

.yq-body .yq-category-item.is-active .yq-category-icon {
    color: var(--yq-primary-dark);
    background: rgba(255, 255, 252, .9);
}

.yq-body .yq-category-service {
    border-top-color: rgba(20, 38, 31, .09);
    color: #758078;
}

.yq-body .yq-category-service i {
    color: var(--yq-primary);
}

.yq-body .zf-section-card {
    padding: 17px;
    border-radius: 22px;
}

.yq-body .zf-section-head {
    min-height: 50px;
    margin-bottom: 14px;
}

.yq-body .zf-section-title {
    color: var(--yq-text);
    font-size: 21px;
    font-weight: 720;
}

.yq-body .zf-section-desc {
    color: #788178;
}

.yq-body .zf-goods-grid {
    gap: 14px;
}

.yq-body .zf-product-card {
    border-color: rgba(20, 38, 31, .11);
    border-radius: 18px;
    color: var(--yq-text);
    background: rgba(255, 255, 252, .86);
}

.yq-body .zf-product-card:hover {
    border-color: rgba(23, 108, 75, .24);
    box-shadow: 0 16px 34px rgba(38, 57, 48, .11);
}

.yq-body .zf-product-thumb {
    width: auto;
    margin: 7px 7px 0;
    overflow: hidden;
    border-radius: 13px;
    background: #e9e8df;
}

.yq-body .zf-product-body {
    gap: 9px;
    padding: 11px 11px 13px;
}

.yq-body .zf-product-name {
    color: #26342d;
}

.yq-body .zf-mini-badge.is-auto {
    color: var(--yq-primary-dark);
    background: #e3efe8;
}

.yq-body .zf-mini-badge.is-manual {
    color: #8a5e23;
    background: #f7ead3;
}

.yq-body .zf-mini-badge.is-sales {
    color: #89918b;
}

.yq-body .zf-product-price {
    color: #b85e43;
}

.yq-body .zf-product-market {
    color: #a3a69f;
}

.yq-body .yq-blog-section {
    margin-top: 34px;
    color: var(--yq-text);
}

.yq-body .yq-eyebrow {
    color: var(--yq-primary);
    font-size: 9px;
    font-weight: 760;
    letter-spacing: .08em;
}

.yq-body .yq-blog-heading h2 {
    color: var(--yq-text);
    font-size: 23px;
    font-weight: 720;
}

.yq-body .yq-blog-more {
    border-color: rgba(20, 38, 31, .12);
    border-radius: 12px;
    color: var(--yq-primary-dark);
    background: rgba(255, 255, 252, .62);
}

.yq-body .yq-blog-card {
    min-height: 108px;
    grid-template-columns: 76px minmax(0, 1fr);
    border-color: var(--yq-border);
    border-radius: 18px;
    color: var(--yq-text);
    background: rgba(255, 255, 252, .72);
}

.yq-body .yq-blog-card:hover {
    border-color: rgba(23, 108, 75, .22);
    box-shadow: 0 15px 34px rgba(38, 57, 48, .08);
}

.yq-body .yq-blog-cover {
    min-height: 108px;
}

.yq-body .yq-blog-placeholder {
    color: var(--yq-primary);
    background: #e3ede1;
}

.yq-body .yq-blog-meta span {
    color: var(--yq-primary);
}

.yq-body .yq-blog-body h3 a {
    color: #25342c;
}

.yq-body .zf-footer {
    border-top-color: rgba(20, 38, 31, .1);
    background: rgba(242, 238, 228, .7);
}

@media (max-width: 1100px) {
    .yq-commerce-bar {
        grid-template-columns: 230px minmax(220px, 1fr) auto;
    }
}

@media (max-width: 900px) {
    .yq-commerce-bar {
        grid-template-columns: 210px minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .yq-body .zf-header-bar {
        height: 60px;
    }

    .yq-body .zf-header-inner {
        min-height: 60px;
    }

    .yq-body .yq-brand-mark {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        border-radius: 10px;
    }

    .yq-body .yq-header-search {
        display: none !important;
    }

    .yq-commerce-bar {
        padding: 13px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(38, 57, 48, .065);
    }

    .yq-commerce-bar::after {
        width: 110px;
        height: 110px;
    }

    .yq-commerce-kicker {
        font-size: 7px;
    }

    .yq-commerce-promise strong {
        font-size: 16px;
    }

    .yq-commerce-bar .zf-search-box {
        border-radius: 12px;
    }

    .yq-notice-line {
        border-radius: 11px;
        background: rgba(255, 255, 252, .42);
    }

    .yq-body .zf-list-sidebar.yq-category-sidebar {
        width: 100%;
        padding: 7px;
        border-radius: 15px;
        box-shadow: 0 8px 24px rgba(38, 57, 48, .045);
    }

    .yq-body .yq-category-item {
        border-radius: 10px;
    }

    .yq-body .zf-section-card {
        padding: 11px;
        border-radius: 16px;
        box-shadow: 0 10px 28px rgba(38, 57, 48, .05);
    }

    .yq-body .zf-section-title {
        font-size: 18px;
    }

    .yq-body .zf-goods-grid {
        gap: 9px;
    }

    .yq-body .zf-product-card {
        border-radius: 14px;
    }

    .yq-body .zf-product-thumb {
        margin: 5px 5px 0;
        border-radius: 10px;
    }

    .yq-body .zf-product-body {
        padding: 9px 8px 11px;
    }

    .yq-body .yq-blog-heading h2 {
        font-size: 19px;
    }

    .yq-body .yq-blog-card {
        min-height: 88px;
        grid-template-columns: 66px minmax(0, 1fr);
        border-radius: 14px;
    }

    .yq-body .yq-blog-cover {
        min-height: 88px;
    }

    .yq-body .zf-mobile-nav {
        border-top-color: rgba(20, 38, 31, .11);
        background: rgba(250, 248, 242, .96);
    }

    .yq-body .zf-mobile-nav .nav-item.active {
        color: var(--yq-primary);
    }
}


/* 云栖 2.2：恢复山君（寅虎）布局 */
.yq-body .zf-main {
    padding-top: 18px;
}

.page-goods-list .zf-main > .container {
    max-width: 1180px;
}

.yq-primary-links a[href*="visitors.php"] {
    min-height: 36px;
    margin-left: 4px;
    padding: 0 14px;
    border: 1px solid rgba(23, 108, 75, .2);
    border-radius: 10px;
    color: var(--yq-primary-dark);
    background: rgba(226, 239, 232, .72);
}

.yq-primary-links a[href*="visitors.php"]::after {
    display: none;
}

.yq-breadcrumbs {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #77817a;
    font-size: 12px;
}

.yq-breadcrumbs a {
    color: #59665e;
}

.yq-breadcrumbs a:hover {
    color: var(--yq-primary);
}

.yq-breadcrumbs span {
    overflow: hidden;
    color: #7c867f;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sj-notice-card {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(20, 38, 31, .11);
    border-radius: 14px;
    background: rgba(255, 255, 252, .76);
    box-shadow: 0 5px 18px rgba(38, 57, 48, .055);
}

.sj-notice-head {
    display: flex;
    min-height: 45px;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(20, 38, 31, .08);
    color: var(--yq-primary-dark);
}

.sj-notice-head > i {
    color: var(--yq-primary);
}

.sj-notice-head strong {
    font-size: 13px;
}

.sj-notice-head .sj-order-link {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    padding: 5px 10px;
    border-radius: 9px;
    color: #fff;
    background: var(--yq-primary);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(23, 108, 75, .15);
}

.sj-order-link small {
    color: rgba(255, 255, 255, .75);
    font-size: 9px;
    font-weight: 500;
}

.sj-order-link:hover {
    color: #fff;
    background: var(--yq-primary-dark);
}

.sj-notice-body {
    padding: 13px 16px;
    color: #5d6961;
    font-size: 12px;
    line-height: 1.7;
}

.sj-notice-body > :first-child {
    margin-top: 0 !important;
}

.sj-notice-body > :last-child {
    margin-bottom: 0 !important;
}

.sj-category-panel {
    margin-bottom: 12px;
    padding: 13px;
    border: 1px solid rgba(20, 38, 31, .1);
    border-radius: 14px;
    background: rgba(255, 255, 252, .7);
    box-shadow: 0 7px 22px rgba(38, 57, 48, .045);
}

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

.sj-category-link {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 6px;
    padding: 6px 13px;
    border: 1px solid rgba(20, 38, 31, .1);
    border-radius: 11px;
    color: #526058;
    background: rgba(255, 255, 252, .72);
    font-size: 12px;
    font-weight: 600;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.sj-category-link:hover {
    border-color: rgba(23, 108, 75, .24);
    color: var(--yq-primary-dark);
    transform: translateY(-1px);
}

.sj-category-link.is-active {
    border-color: var(--yq-primary);
    color: #fff;
    background: var(--yq-primary);
    box-shadow: 0 6px 15px rgba(23, 108, 75, .16);
}

.sj-category-link small {
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 7px;
    color: var(--yq-primary);
    background: rgba(23, 108, 75, .09);
    font-size: 9px;
}

.sj-category-link.is-active small {
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.sj-search-form {
    display: flex;
    height: 43px;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 4px 5px 4px 13px;
    border: 1px solid rgba(20, 38, 31, .1);
    border-radius: 12px;
    background: rgba(255, 255, 252, .62);
}

.sj-search-form > i {
    color: #849087;
}

.sj-search-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--yq-text);
    background: transparent;
    font-size: 12px;
}

.sj-search-form button {
    height: 33px;
    border: 0;
    border-radius: 9px;
}

.sj-search-form button[type="submit"] {
    padding: 0 17px;
    color: #fff;
    background: var(--yq-primary);
    font-size: 11px;
    font-weight: 700;
}

.sj-search-form .js-goods-search-clear {
    display: none;
    padding: 0 5px;
    color: #8c958e;
    background: transparent;
}

.sj-search-form .js-goods-search-clear.is-visible {
    display: inline-flex;
    align-items: center;
}

.sj-subcategory-panel {
    margin: 0 0 12px !important;
    padding: 9px 12px;
}

.sj-subcategory-panel .zf-subtab-chip {
    border-radius: 9px;
    color: #5b675f;
    background: rgba(255, 255, 252, .72);
}

.sj-subcategory-panel .zf-subtab-chip.is-active {
    color: #fff;
    background: var(--yq-primary);
}

.sj-products-section {
    margin-top: 4px;
}

.sj-products-head {
    display: flex;
    min-height: 50px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding: 0 2px;
}

.sj-products-head .zf-section-title {
    margin: 0;
    color: var(--yq-text);
    font-size: 22px;
    font-weight: 720;
}

.sj-products-head .zf-section-desc {
    max-width: 50%;
    color: #7b857e;
    font-size: 11px;
    text-align: right;
}

.yq-body .sj-product-grid.zf-goods-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sj-product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 10px 10px 4px;
    overflow: hidden;
    border: 1px solid rgba(20, 38, 31, .1);
    border-radius: 13px;
    background: rgba(255, 255, 252, .86);
    box-shadow: 0 4px 14px rgba(38, 57, 48, .05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.sj-product-card:hover {
    border-color: rgba(23, 108, 75, .22);
    box-shadow: 0 10px 24px rgba(38, 57, 48, .09);
    transform: translateY(-2px);
}

.sj-product-main {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 9px;
}

.sj-product-thumb {
    display: block;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 9px;
    background: #e7e7df;
    box-shadow: 0 4px 12px rgba(38, 57, 48, .09);
}

.sj-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.sj-product-card:hover .sj-product-thumb img {
    transform: scale(1.035);
}

.sj-product-info {
    display: flex;
    min-width: 0;
    min-height: 96px;
    flex: 1;
    flex-direction: column;
}

.sj-product-title {
    display: -webkit-box;
    min-height: 2.9em;
    overflow: hidden;
    color: #2b3831;
    font-size: 13px;
    font-weight: 680;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sj-product-title:hover {
    color: var(--yq-primary);
}

.sj-product-info p {
    display: -webkit-box;
    min-height: 2.9em;
    overflow: hidden;
    margin: 5px 0 0;
    color: #808981;
    font-size: 10px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sj-product-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: auto;
    padding-top: 5px;
}

.sj-product-price strong {
    color: #b85e43;
    font-size: 21px;
    font-weight: 780;
}

.sj-product-price del {
    color: #a0a69f;
    font-size: 9px;
}

.sj-product-actions {
    display: flex;
    min-height: 36px;
    align-items: center;
    gap: 5px;
    padding-top: 4px;
    border-top: 1px solid rgba(20, 38, 31, .075);
    color: #858e87;
    font-size: 9px;
}

.sj-product-actions > span {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    padding: 3px 6px;
    border-radius: 7px;
    color: #78827b;
    background: rgba(235, 238, 232, .78);
    white-space: nowrap;
}

.sj-product-actions > span.is-auto,
.sj-product-actions > span.is-manual {
    gap: 3px;
    font-weight: 650;
}

.sj-product-actions > span.is-auto {
    color: var(--yq-primary-dark);
    background: rgba(223, 238, 229, .82);
}

.sj-product-actions > span.is-manual {
    color: #8a5e23;
    background: rgba(246, 234, 213, .82);
}

.sj-buy-button {
    display: inline-flex;
    min-width: 78px;
    height: 31px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0 12px;
    border-radius: 7px;
    color: #fff;
    background: var(--yq-primary);
    font-size: 11px;
    font-weight: 700;
}

.sj-buy-button:hover {
    color: #fff;
    background: var(--yq-primary-dark);
}

.sj-skeleton-card {
    min-height: 151px;
}

.sj-skeleton-thumb {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    border-radius: 9px;
    background: #e9e9e1;
}

.sj-skeleton-lines {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 9px;
    padding-top: 5px;
}

.sj-skeleton-lines i,
.sj-skeleton-actions i {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: #e9e9e1;
}

.sj-skeleton-lines i:nth-child(2) {
    width: 72%;
}

.sj-skeleton-lines i:nth-child(3) {
    width: 45%;
    margin-top: auto;
}

.sj-skeleton-actions {
    display: flex;
    gap: 8px;
    padding: 8px 0 5px;
    border-top: 1px solid rgba(20, 38, 31, .075);
}

.sj-skeleton-actions i {
    width: 55px;
}

.sj-skeleton-actions i:last-child {
    width: 64px;
    margin-left: auto;
}

@media (max-width: 900px) {
    .yq-body .sj-product-grid.zf-goods-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .yq-body .zf-main {
        padding-top: 10px;
    }

    .sj-notice-card {
        margin-bottom: 12px;
        border-radius: 11px;
    }

    .sj-notice-head {
        min-height: 39px;
        padding: 7px 11px;
    }

    .sj-notice-body {
        padding: 9px 11px;
        overflow: visible;
        font-size: 11px;
    }

    .sj-order-link small {
        display: none;
    }

    .sj-category-panel {
        margin-bottom: 9px;
        padding: 9px;
        border-radius: 11px;
    }

    .sj-category-list {
        gap: 6px;
    }

    .sj-category-link {
        min-height: 32px;
        padding: 5px 9px;
        border-radius: 9px;
        font-size: 10px;
    }

    .sj-category-link small {
        min-width: 18px;
        height: 18px;
        font-size: 8px;
    }

    .sj-search-form {
        height: 40px;
        margin-bottom: 9px;
        border-radius: 10px;
    }

    .sj-products-head {
        min-height: 42px;
        margin-bottom: 8px;
    }

    .sj-products-head .zf-section-title {
        font-size: 18px;
    }

    .sj-products-head .zf-section-desc {
        display: none;
    }

    .yq-body .sj-product-grid.zf-goods-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .sj-product-card {
        padding: 9px 9px 3px;
        border-radius: 11px;
    }

    .sj-product-main {
        gap: 10px;
        margin-bottom: 7px;
    }

    .sj-product-thumb {
        width: 100px;
        height: 100px;
        flex-basis: 100px;
        border-radius: 8px;
    }

    .sj-product-info {
        min-height: 100px;
    }

    .sj-product-title {
        font-size: 13px;
    }

    .sj-product-price strong {
        font-size: 20px;
    }

    .sj-product-actions {
        min-height: 35px;
        gap: 4px;
    }

    .sj-buy-button {
        min-width: 84px;
        height: 33px;
        font-size: 11px;
    }

    .yq-body .yq-blog-section {
        margin-top: 22px;
    }

    .yq-breadcrumbs {
        min-height: 34px;
        margin-bottom: 8px;
        font-size: 11px;
    }

    .yq-body .zf-mobile-nav a[href*="visitors.php"] .nav-icon {
        display: grid;
        width: 28px;
        height: 28px;
        place-items: center;
        margin: -7px auto 1px;
        border-radius: 50%;
        color: #fff;
        background: var(--yq-primary);
        box-shadow: 0 5px 12px rgba(23, 108, 75, .2);
    }
}

@media (max-width: 390px) {
    .sj-product-actions {
        gap: 5px;
    }

    .sj-product-actions > span {
        font-size: 8px;
    }
}

@media (max-width: 390px) {
    .yq-body .zf-brand-copy {
        max-width: none;
    }

    .yq-commerce-trust span {
        gap: 3px;
    }
}

/* 云栖 2.7：统一响应式布局与详情购买流程 */
@media (min-width: 901px) {
    .yq-body .zf-header .container {
        max-width: 1200px;
    }

    .yq-body .zf-header-inner {
        gap: 16px;
    }

    .yq-body .zf-nav-wrap {
        display: none;
    }

    .yq-body .yq-primary-links {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        gap: 16px;
        margin-left: auto;
    }

    .yq-body .yq-primary-links a {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        gap: 6px;
    }

    .yq-body .yq-primary-links .yq-order-nav {
        min-height: 34px;
        padding: 0 12px;
        border: 1px solid rgba(23, 108, 75, .22);
        border-radius: 9px;
        color: var(--yq-primary-dark);
        background: rgba(226, 239, 232, .82);
        box-shadow: none;
    }

    .yq-body .yq-primary-links .yq-order-nav:hover {
        border-color: rgba(23, 108, 75, .34);
        color: #fff;
        background: var(--yq-primary);
    }

    .yq-body .yq-primary-links .yq-order-nav::after {
        display: none;
    }

    .yq-body .yq-header-search {
        display: flex;
        width: min(280px, 25vw);
        max-width: 280px;
        flex: 0 1 280px;
        align-items: center;
        margin-left: 0;
        padding-left: 12px;
    }

    .yq-body .yq-header-search input {
        width: 0;
        height: 100%;
        min-width: 0;
        flex: 1;
        border: 0;
        outline: 0;
        background: transparent;
        box-shadow: none;
    }

    .yq-body .yq-header-search button {
        min-width: 52px;
        border: 0;
        outline: 0;
        color: #fff;
        box-shadow: none;
    }

    .yq-body .zf-header-actions {
        margin-left: 0;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .yq-body .zf-header-inner {
        gap: 12px;
    }

    .yq-body .zf-brand-tagline {
        display: none;
    }

    .yq-body .yq-primary-links {
        gap: 12px;
    }

    .yq-body .yq-primary-links a {
        font-size: 12px;
    }

    .yq-body .yq-primary-links .yq-order-nav {
        padding: 0 10px;
    }

    .yq-body .yq-header-search {
        width: 230px;
        max-width: 230px;
        flex-basis: 230px;
        margin-left: 0;
    }

    .yq-body .zf-auth-btn {
        min-width: 48px;
        padding: 0 9px;
    }
}

.yq-body .yq-blog-section {
    display: block;
    margin-top: 34px;
    padding: 20px;
    border: 1px solid var(--yq-border);
    border-radius: 18px;
    background: rgba(255, 255, 252, .7);
    box-shadow: 0 12px 34px rgba(38, 57, 48, .05);
}

.yq-body .yq-blog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 16px;
}

.yq-body .yq-blog-heading h2 {
    margin: 4px 0 0;
    font-size: 21px;
    line-height: 1.35;
}

.yq-body .yq-blog-more {
    display: inline-flex;
    min-height: 36px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 0;
    padding: 0 13px;
    line-height: 1;
    white-space: nowrap;
}

.yq-body .yq-blog-more span,
.yq-body .yq-blog-more i {
    display: block;
    line-height: 1;
}

.yq-body .yq-blog-more i {
    font-size: 11px;
    transform: translateY(.5px);
}

.yq-body .yq-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.yq-body .yq-blog-card {
    min-height: 126px;
    grid-template-columns: 100px minmax(0, 1fr);
    border-radius: 14px;
    background: rgba(255, 255, 255, .78);
}

.yq-body .yq-blog-cover {
    min-height: 126px;
}

.yq-body .yq-blog-cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yq-body .yq-blog-body {
    padding: 13px 14px;
}

.yq-body .yq-blog-body h3 {
    display: -webkit-box;
    margin: 7px 0 5px;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.yq-body .yq-blog-body > p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #778179;
    font-size: 10px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-goods-detail .yq-mobile-product-price,
.page-goods-detail .yq-mobile-buy-total {
    display: none;
}

.page-goods-detail .yq-purchase-quantity {
    margin: 0 0 12px;
}

.page-goods-detail .zf-buy-submit .yq-purchase-quantity .quantity-selector {
    width: 100%;
    justify-content: space-between;
}

.page-goods-detail .zf-purchase-notice {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--yq-border);
    border-radius: 16px;
    color: #526058;
    background: rgba(255, 255, 252, .76);
    box-shadow: 0 10px 28px rgba(38, 57, 48, .05);
}

.page-goods-detail .zf-purchase-notice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--yq-primary-dark);
    font-size: 13px;
}

.page-goods-detail .zf-purchase-notice-title i {
    color: var(--yq-primary);
}

.page-goods-detail .zf-purchase-notice-body {
    max-height: 8.2em;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.65;
}

.page-goods-detail .zf-purchase-notice-body > :first-child {
    margin-top: 0 !important;
}

.page-goods-detail .zf-purchase-notice-body > :last-child {
    margin-bottom: 0 !important;
}

.page-goods-detail .zf-purchase-notice > a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 0 12px;
    border-radius: 9px;
    color: var(--yq-primary-dark);
    background: rgba(226, 239, 232, .82);
    font-size: 11px;
    font-weight: 700;
}

.page-goods-detail .zf-main > .container {
    max-width: 1180px;
}

.page-goods-detail .zf-detail-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 18px;
}

.page-goods-detail .zf-product-panel,
.page-goods-detail .zf-content-panel,
.page-goods-detail .zf-summary-card,
.page-goods-detail .yq-product-guides {
    border: 1px solid var(--yq-border);
    border-radius: 18px;
    color: var(--yq-text);
    background: rgba(255, 255, 252, .82);
    box-shadow: 0 12px 34px rgba(38, 57, 48, .055);
}

.page-goods-detail .zf-product-panel {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 22px;
    padding: 20px;
}

.page-goods-detail .zf-product-media {
    align-self: start;
    aspect-ratio: 1 / 1;
    border-color: rgba(20, 38, 31, .08);
    border-radius: 15px;
    background: #eeeee7;
}

.page-goods-detail .goods-cover {
    display: block;
    height: 100%;
    aspect-ratio: auto;
    background: #eeeee7;
}

.page-goods-detail .zf-product-title {
    color: var(--yq-text);
    font-size: 25px;
    font-weight: 740;
    letter-spacing: -.015em;
}

.page-goods-detail .zf-product-brief {
    color: var(--yq-muted);
}

.page-goods-detail .zf-inline-meta {
    gap: 7px;
    margin-bottom: 18px;
}

.page-goods-detail .zf-inline-chip {
    min-height: 30px;
    padding: 0 10px;
    border-color: rgba(20, 38, 31, .09);
    color: #647168;
    background: rgba(235, 238, 232, .8);
    font-size: 11px;
}

.page-goods-detail .zf-inline-chip.is-stock,
.page-goods-detail .zf-inline-chip.is-sales,
.page-goods-detail .zf-inline-chip.is-delivery {
    color: var(--yq-primary-dark);
}

.page-goods-detail .zf-form-title {
    color: #405047;
}

.page-goods-detail .spec-option,
.page-goods-detail .quantity-selector,
.page-goods-detail .payment-item,
.page-goods-detail .layui-input {
    border-color: rgba(20, 38, 31, .11);
    background: rgba(250, 250, 246, .86);
}

.page-goods-detail .spec-option:hover,
.page-goods-detail .spec-option.active,
.page-goods-detail .payment-item:hover,
.page-goods-detail .payment-item.active {
    border-color: rgba(23, 108, 75, .35);
    color: var(--yq-primary-dark);
    background: rgba(226, 239, 232, .78);
    box-shadow: 0 0 0 3px rgba(23, 108, 75, .07);
}

.page-goods-detail .payment-checked {
    color: var(--yq-primary);
}

.page-goods-detail .zf-summary-topline {
    color: var(--yq-primary-dark);
}

.page-goods-detail .zf-summary-price {
    color: #b85e43;
}

.page-goods-detail .buy-btn-g {
    background: var(--yq-primary);
    box-shadow: 0 12px 24px rgba(23, 108, 75, .18);
}

.page-goods-detail .buy-btn-g:hover {
    background: var(--yq-primary-dark);
}

.page-goods-detail .zf-service-tip {
    color: #456053;
    background: rgba(226, 239, 232, .72);
}

.page-goods-detail .zf-product-description {
    padding: 22px;
}

.page-goods-detail .zf-panel-title {
    color: var(--yq-text);
}

.page-goods-detail .intro {
    color: #445249;
}

.yq-product-guides {
    margin-top: 16px;
    padding: 20px;
}

.yq-product-guides-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.yq-product-guides-head span {
    display: block;
    margin-bottom: 3px;
    color: var(--yq-primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
}

.yq-product-guides-head h2 {
    margin: 0;
    color: var(--yq-text);
    font-size: 20px;
}

.yq-product-guides-head > a {
    color: var(--yq-primary-dark);
    font-size: 11px;
    font-weight: 700;
}

.yq-product-guide-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.yq-product-guide-card {
    min-width: 0;
    border: 1px solid rgba(20, 38, 31, .1);
    border-radius: 13px;
    background: rgba(255, 255, 255, .72);
}

.yq-product-guide-card > a {
    display: block;
    height: 100%;
    padding: 14px;
}

.yq-product-guide-card span {
    color: var(--yq-primary);
    font-size: 9px;
    font-weight: 700;
}

.yq-product-guide-card h3 {
    display: -webkit-box;
    min-height: 3em;
    margin: 6px 0;
    overflow: hidden;
    color: #2c3c33;
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.yq-product-guide-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #7b857e;
    font-size: 10px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.yq-product-guide-card small {
    display: inline-block;
    margin-top: 9px;
    color: var(--yq-primary-dark);
    font-size: 10px;
    font-weight: 700;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .page-goods-detail .zf-main > .container {
        max-width: 100%;
    }

    .page-goods-detail .zf-detail-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 14px;
        align-items: start;
    }

    .page-goods-detail .zf-detail-main {
        width: auto;
        order: initial;
    }

    .page-goods-detail .zf-detail-side {
        width: auto;
        order: initial;
        position: sticky;
        top: 82px;
    }

    .page-goods-detail .zf-product-panel {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 16px;
        padding: 16px;
    }

    .page-goods-detail .zf-product-title {
        font-size: 20px;
    }

    .page-goods-detail .payment-methods {
        grid-template-columns: 1fr;
    }

    .page-goods-detail .zf-purchase-notice {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 880px) {
    .page-goods-detail .zf-detail-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 12px;
    }

    .page-goods-detail .zf-product-panel {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 13px;
        padding: 14px;
    }

    .page-goods-detail .zf-product-title {
        font-size: 18px;
    }

    .page-goods-detail .zf-product-brief {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .yq-body .yq-blog-section {
        display: block;
        margin-top: 22px;
        padding: 15px 12px;
        border-radius: 14px;
    }

    .yq-body .yq-blog-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .yq-body .yq-blog-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .yq-body .yq-blog-more {
        margin-top: 0;
    }

    .yq-body .yq-blog-card {
        height: 104px;
        min-height: 104px;
        grid-template-columns: 86px minmax(0, 1fr);
    }

    .yq-body .yq-blog-cover {
        height: 104px;
        min-height: 104px;
    }

    .yq-body .yq-blog-body > p {
        display: none;
    }

    .page-goods-list .sj-category-panel {
        padding: 8px;
        overflow: hidden;
    }

    .page-goods-list .sj-category-list {
        flex-wrap: nowrap;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .page-goods-list .sj-category-list::-webkit-scrollbar {
        display: none;
    }

    .page-goods-list .sj-category-link {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .page-goods-detail {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }

    .page-goods-detail .zf-main {
        padding-top: 8px;
    }

    .page-goods-detail .zf-detail-layout {
        gap: 0;
    }

    .page-goods-detail .yq-breadcrumbs {
        width: 100%;
        min-width: 0;
        min-height: 34px;
        gap: 7px;
        margin-bottom: 7px;
        overflow: hidden;
        white-space: nowrap;
    }

    .page-goods-detail .yq-breadcrumbs a,
    .page-goods-detail .yq-breadcrumbs i {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .page-goods-detail .yq-breadcrumbs a:nth-of-type(2) {
        max-width: 108px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-goods-detail .yq-breadcrumbs span {
        min-width: 0;
        flex: 1;
    }

    .page-goods-detail .zf-detail-main {
        display: contents;
    }

    .page-goods-detail .zf-product-panel {
        order: 1;
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 8px 10px;
        padding: 12px;
        border-radius: 14px 14px 0 0;
        border-bottom-color: rgba(20, 38, 31, .035);
    }

    .page-goods-detail .zf-product-media {
        width: 82px;
        height: 82px;
        aspect-ratio: 1 / 1;
        grid-column: 1;
        grid-row: 1 / span 2;
        margin: 0;
    }

    .page-goods-detail .goods-cover {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .page-goods-detail .zf-product-info {
        display: contents;
    }

    .page-goods-detail .zf-product-title {
        display: -webkit-box;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0;
        overflow: hidden;
        font-size: 16px;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .page-goods-detail .zf-product-brief {
        display: -webkit-box;
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin: 0;
        overflow: hidden;
        font-size: 10px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .page-goods-detail .zf-inline-meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-column: 1 / -1;
        grid-row: 3;
        gap: 5px;
        margin: 0;
    }

    .page-goods-detail .zf-inline-chip {
        min-width: 0;
        min-height: 26px;
        justify-content: center;
        padding: 0 5px;
        font-size: 9px;
        white-space: nowrap;
    }

    .page-goods-detail .zf-product-info > .zf-form-block,
    .page-goods-detail .zf-product-info > .zf-qty-discount-panel {
        grid-column: 1 / -1;
        margin-bottom: 9px;
    }

    .page-goods-detail .zf-form-title {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .page-goods-detail .quantity-selector {
        height: 42px;
    }

    .page-goods-detail .payment-methods {
        gap: 8px;
    }

    .page-goods-detail .payment-item {
        min-height: 46px;
        padding: 7px 9px;
    }

    .page-goods-detail .payment-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .page-goods-detail .payment-icon {
        width: 30px;
        height: 30px;
    }

    .page-goods-detail .payment-name {
        font-size: 13px;
    }

    .page-goods-detail .zf-detail-side {
        order: 2;
        margin-top: 0;
    }

    .page-goods-detail .zf-summary-card {
        padding: 13px;
        border-top-color: rgba(20, 38, 31, .035);
        border-radius: 0 0 14px 14px;
        box-shadow: 0 14px 32px rgba(38, 57, 48, .06);
    }

    .page-goods-detail .zf-summary-topline {
        display: none;
    }

    .page-goods-detail .zf-summary-price {
        display: none;
    }

    .page-goods-detail .zf-summary-price .dynamic-price {
        font-size: 30px;
    }

    .page-goods-detail .zf-detail-side .zf-form-block {
        margin-bottom: 10px;
    }

    .page-goods-detail .zf-detail-side .layui-input {
        height: 44px;
        font-size: 13px;
    }

    .page-goods-detail .zf-form-help {
        margin-top: 7px;
        font-size: 10px;
        line-height: 1.5;
    }

    .page-goods-detail .yq-product-guides {
        order: 4;
        margin-top: 0;
        padding: 15px 12px;
        border-radius: 14px;
    }

    .page-goods-detail .yq-product-guide-list {
        grid-template-columns: 1fr;
    }

    .page-goods-detail .yq-product-guide-card h3 {
        min-height: 0;
    }

    .page-goods-detail .zf-product-description {
        order: 3;
        margin-top: 18px;
        padding: 16px 14px;
        border-radius: 14px;
    }

    .page-goods-detail .drawer-footer.zf-buy-submit {
        position: static;
        width: auto;
        box-sizing: border-box;
        margin: 10px 0 0;
        padding: 9px 10px;
        border: 1px solid rgba(20, 38, 31, .09);
        border-radius: 13px;
        background: rgba(250, 250, 246, .88);
        box-shadow: none;
        display: grid;
        grid-template-columns: 58px 96px minmax(0, 1fr);
        align-items: center;
        gap: 8px;
    }

    .page-goods-detail .yq-mobile-buy-total {
        display: flex;
        min-width: 0;
        flex-direction: column;
        line-height: 1.1;
    }

    .page-goods-detail .yq-mobile-buy-total small {
        margin-bottom: 3px;
        color: #7c867f;
        font-size: 9px;
    }

    .page-goods-detail .yq-mobile-buy-total strong {
        color: #b85e43;
        font-size: 17px;
        white-space: nowrap;
    }

    .page-goods-detail .yq-purchase-quantity {
        margin: 0;
    }

    .page-goods-detail .yq-purchase-quantity .zf-form-title {
        display: none;
    }

    .page-goods-detail .zf-buy-submit .yq-purchase-quantity .quantity-selector {
        width: 96px;
        height: 42px;
    }

    .page-goods-detail .yq-purchase-quantity .quantity-btn {
        width: 30px;
        height: 40px;
    }

    .page-goods-detail .yq-purchase-quantity .quantity-input {
        width: 36px;
        height: 40px;
        padding: 0;
    }

    .page-goods-detail .drawer-footer.zf-buy-submit .buy-btn-g {
        width: 100%;
        max-width: none;
        min-height: 44px;
        margin: 0;
        border-radius: 13px;
        font-size: 15px;
        box-shadow: 0 8px 18px rgba(23, 108, 75, .16);
    }

    .page-goods-detail .drawer-footer.zf-buy-submit .total-price {
        display: none;
    }

    .page-goods-detail .zf-service-tip {
        margin-top: 7px;
        padding: 9px 10px;
        font-size: 10px;
    }

    .page-goods-detail .zf-purchase-notice {
        display: none;
    }

    .page-goods-detail .zf-mobile-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 997;
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(20, 38, 31, .11);
        background: rgba(250, 248, 242, .98);
        box-shadow: 0 -8px 24px rgba(38, 57, 48, .08);
    }
}
