:root {
    color-scheme: light;
    --ink: #14213d;
    --muted: #64748b;
    --line: #dbe3ee;
    --surface: #ffffff;
    --soft: #f4f7fb;
    --blue: #1456d9;
    --blue-dark: #0d388f;
    --cyan: #00a6b4;
    --green: #16845b;
    --gold: #d99418;
    --danger: #c43f4b;
    --shadow: 0 18px 50px rgba(20, 33, 61, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif; font-size: 16px; line-height: 1.7; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.site-shell { min-height: 100vh; overflow: clip; }
.site-header { position: sticky; top: 0; z-index: 50; display: grid; grid-template-columns: minmax(210px, 1fr) auto minmax(150px, 1fr); align-items: center; min-height: 74px; padding: 0 clamp(24px, 4vw, 72px); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(219,227,238,.9); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; background: var(--ink); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 0; border-radius: 6px; }
.brand-copy { display: grid; line-height: 1.25; }
.brand-copy strong { font-size: 18px; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: 5px; }
.site-nav a { position: relative; padding: 24px 15px 20px; font-size: 15px; font-weight: 600; color: #3d4b66; }
.site-nav a::after { content: ""; position: absolute; right: 16px; bottom: 14px; left: 16px; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--blue); }
.site-nav a.is-active::after { transform: scaleX(1); }
.header-action { justify-self: end; padding: 9px 15px; border: 1px solid var(--line); border-radius: 6px; font-size: 14px; font-weight: 700; }
.header-action:hover { border-color: var(--blue); color: var(--blue); }
.header-customer-action { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; }
.header-customer-logged-in { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.header-customer-logged-in[hidden] { display: none; }
.header-customer-logged-in strong { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-customer-avatar { display: grid; place-items: center; width: 26px; height: 26px; overflow: hidden; border-radius: 5px; background: var(--ink); color: #fff; }
.header-customer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.header-customer-avatar b { font-size: 9px; font-weight: 800; }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; }

.hero-band { position: relative; min-height: min(820px, calc(100vh - 74px)); display: flex; align-items: center; overflow: hidden; background: #d9e1e5; }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroZoom 14s ease-out both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,43,.86) 0%, rgba(8,20,43,.64) 42%, rgba(8,20,43,.16) 72%, rgba(8,20,43,.05) 100%); }
.hero-content { position: relative; z-index: 2; width: min(780px, 82vw); margin-left: clamp(24px, 8vw, 150px); padding: 90px 0 160px; color: #fff; animation: contentIn .8s ease-out both; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.hero-content .eyebrow, .service-band .eyebrow { color: #8ad9ef; }
.hero-content h1 { margin: 0; font-size: clamp(52px, 7vw, 96px); line-height: 1; letter-spacing: 0; }
.hero-lead { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.9); font-size: clamp(18px, 2vw, 24px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 20px; border: 1px solid transparent; border-radius: 6px; cursor: pointer; font-weight: 700; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); }
.button-light { background: #fff; color: var(--ink); }
.button-outline { border-color: #aebbd0; background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-danger { background: #fff; border-color: #e7aab0; color: var(--danger); }
.button-block { width: 100%; }
.hero-metrics { position: absolute; z-index: 3; right: clamp(24px, 5vw, 86px); bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(130px, 1fr)); width: min(560px, calc(100% - 48px)); background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.hero-metrics div { padding: 24px 28px; border-right: 1px solid var(--line); }
.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong, .hero-metrics span { display: block; }
.hero-metrics strong { font-size: 28px; line-height: 1.2; }
.hero-metrics span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.section { width: min(1440px, calc(100% - 48px)); margin: 0 auto; padding: 100px 0; }
.section-heading { max-width: 880px; }
.section-heading h2, .story-copy h2, .service-band h2, .trust-section h2 { margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.25; letter-spacing: 0; }
.section-heading > p:last-child, .story-copy > p, .service-band > div > p, .trust-section p { color: var(--muted); font-size: 18px; }
.section-heading.compact { margin-bottom: 40px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-item { padding: 34px 28px; border-right: 1px solid var(--line); }
.capability-item:last-child { border-right: 0; }
.capability-item > span { color: var(--blue); font-weight: 800; }
.capability-item h3 { margin: 32px 0 12px; font-size: 22px; }
.capability-item p { margin: 0; color: var(--muted); }
.feature-story { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story-media { min-height: 530px; overflow: hidden; }
.story-media img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.fact-list { margin-top: 34px; border-top: 1px solid var(--line); }
.fact-list div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact-list span { color: var(--muted); }
.product-strip { padding-top: 30px; }
.module-list { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--soft); border: 1px solid var(--line); }
.module-list div { display: grid; min-height: 190px; align-content: space-between; padding: 28px; border-right: 1px solid var(--line); }
.module-list div:last-child { border-right: 0; }
.module-list strong { color: var(--blue); font-size: 13px; }
.module-list span { font-size: 21px; font-weight: 800; }
.module-list small { color: var(--muted); }
.service-band { position: relative; width: 100%; min-height: 560px; margin-top: 50px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.service-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,43,.9), rgba(8,20,43,.62) 52%, rgba(8,20,43,.1)); }
.service-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-band > div { position: relative; z-index: 2; width: min(700px, 78vw); margin-left: clamp(24px, 9vw, 170px); }
.service-band > div > p { color: rgba(255,255,255,.82); }

.page-banner { min-height: 390px; display: flex; align-items: center; padding: 70px clamp(24px, 8vw, 150px); background: linear-gradient(120deg, #eef4ff 0%, #fff 52%, #e6f7f5 100%); border-bottom: 1px solid var(--line); }
.page-banner > div { max-width: 920px; }
.page-banner h1 { margin: 0; font-size: clamp(38px, 5vw, 64px); line-height: 1.15; }
.page-banner p:last-child { max-width: 780px; color: var(--muted); font-size: 19px; }
.page-banner-apps { background: linear-gradient(120deg, #f2f6ff, #fff 52%, #fff7e8); }
.page-banner-genuine { background: linear-gradient(120deg, #edf9f5, #fff 55%, #eef4ff); }
.page-banner-customer { background: linear-gradient(120deg, #f3f6fb, #fff 58%, #edf9f5); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; align-items: stretch; }
.price-panel { display: flex; flex-direction: column; min-height: 560px; padding: 34px; border: 1px solid var(--line); background: #fff; box-shadow: 0 10px 35px rgba(20,33,61,.06); }
.price-panel.is-featured { border-top: 4px solid var(--blue); padding-top: 31px; }
.price-head > span { color: var(--blue); font-size: 13px; font-weight: 800; }
.price-head h2 { margin: 13px 0 6px; font-size: 28px; }
.price-head p { min-height: 58px; margin: 0; color: var(--muted); }
.price { display: flex; align-items: baseline; gap: 6px; margin: 28px 0; }
.price small { font-size: 18px; font-weight: 700; }
.price strong { font-size: 48px; line-height: 1; }
.price span { color: var(--muted); }
.price-panel ul { flex: 1; margin: 0 0 28px; padding: 0; list-style: none; }
.price-panel li { position: relative; padding: 9px 0 9px 25px; border-bottom: 1px dashed #e1e6ee; }
.price-panel li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 8px; height: 4px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.comparison-band { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 44px; background: var(--ink); color: #fff; }
.comparison-band div { padding: 28px; border-right: 1px solid rgba(255,255,255,.13); }
.comparison-band strong, .comparison-band span { display: block; }
.comparison-band span { margin-top: 8px; color: rgba(255,255,255,.68); font-size: 14px; }
.filter-row { display: flex; gap: 8px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.filter-row button { padding: 10px 18px 12px; border: 0; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; color: var(--muted); font-weight: 700; }
.filter-row button.is-active { color: var(--blue); border-bottom-color: var(--blue); }
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-item { border: 1px solid var(--line); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.app-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.app-cover { aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; background: linear-gradient(135deg, #e8f0ff, #edf9f5); color: var(--blue); font-size: 13px; font-weight: 900; }
.app-cover img { width: 100%; height: 100%; object-fit: cover; }
.app-body { padding: 24px; }
.app-meta, .app-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.app-meta span { color: var(--blue); font-size: 13px; font-weight: 800; }
.app-meta small { color: var(--muted); }
.app-body h2 { margin: 12px 0 6px; font-size: 22px; }
.app-body > p { min-height: 54px; margin: 0 0 22px; color: var(--muted); }
.app-bottom { padding-top: 18px; border-top: 1px solid var(--line); }
.app-bottom a { color: var(--blue); font-weight: 700; }
.market-catalog { padding-top: 42px; }
.market-toolbar { display: grid; grid-template-columns: minmax(320px, 1fr) 210px; gap: 16px; align-items: end; margin-bottom: 18px; }
.market-toolbar label { display: grid; gap: 7px; color: #40506a; font-size: 13px; font-weight: 800; }
.market-search > div { position: relative; }
.market-search input { padding-right: 54px; }
.market-search span { position: absolute; right: 15px; top: 50%; color: var(--blue); font-size: 18px; transform: translateY(-50%); }
.market-filter-groups { display: grid; gap: 0; margin-bottom: 20px; border: 1px solid var(--line); background: #fff; }
.market-filter-group { display: grid; grid-template-columns: 108px minmax(0, 1fr); min-height: 58px; border-bottom: 1px solid #edf0f5; }
.market-filter-group:last-child { border-bottom: 0; }
.market-filter-group > strong { display: flex; align-items: center; padding: 0 18px; background: #f7f9fc; color: #536079; font-size: 13px; }
.market-filter-group > div { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; padding: 9px 12px; }
.market-filter-group button { min-height: 38px; padding: 8px 14px; border: 1px solid transparent; border-radius: 4px; background: transparent; color: #4c5870; cursor: pointer; font-weight: 700; }
.market-filter-group button:hover { color: var(--blue); background: #f3f6fb; }
.market-filter-group button.is-active { border-color: #bad0f7; background: #edf4ff; color: var(--blue); }
.market-result-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin: 26px 0 16px; }
.market-result-head strong, .market-result-head span { display: block; }
.market-result-head strong { color: #16233b; font-size: 22px; }
.market-result-head span { margin-top: 5px; color: var(--muted); font-size: 13px; }
.market-result-head small { color: #738096; }
.market-result-head b { color: var(--blue); }
.market-app-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.market-app-item { display: flex; min-width: 0; flex-direction: column; border-radius: 6px; overflow: hidden; }
.market-app-item .app-body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.market-app-item .app-body h2 { margin: 10px 0 7px; font-size: 19px; }
.market-app-item .app-body > p { min-height: 48px; margin-bottom: 13px; font-size: 13px; line-height: 1.65; }
.market-cover-badges { position: absolute; inset: 12px 12px auto; display: flex; justify-content: space-between; pointer-events: none; }
.app-cover { position: relative; }
.market-cover-badges span, .market-cover-badges em { padding: 4px 8px; border-radius: 4px; color: #fff; font-size: 11px; font-style: normal; font-weight: 800; }
.market-cover-badges span { background: rgba(14, 32, 64, .82); }
.market-cover-badges em { background: #e56b1f; }
.market-card-tags { display: flex; flex-wrap: wrap; gap: 5px; min-height: 24px; }
.market-card-tags span, .market-detail-tags span { padding: 3px 7px; border-radius: 4px; background: #f0f4f9; color: #596780; font-size: 11px; }
.market-card-stats { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 13px; color: #8993a4; font-size: 11px; }
.market-app-item .app-bottom { margin-top: auto; }
.market-app-item .app-bottom > div { display: flex; gap: 7px; }
.market-app-item .app-bottom button, .market-app-item .app-bottom a { min-height: 38px; padding: 8px 11px; border: 1px solid #c9d6e8; border-radius: 4px; background: #fff; color: #33507d; cursor: pointer; font-size: 12px; font-weight: 800; }
.market-app-item .app-bottom a { display: inline-flex; align-items: center; border-color: var(--blue); background: var(--blue); color: #fff; }
.market-filter-empty { margin-top: 0; }
.market-detail-dialog { width: min(1080px, calc(100vw - 36px)); max-height: calc(100vh - 42px); padding: 0; overflow: hidden; border: 0; border-radius: 8px; background: #fff; box-shadow: 0 30px 90px rgba(12, 28, 58, .3); }
.market-detail-dialog::backdrop { background: rgba(10, 22, 42, .58); backdrop-filter: blur(3px); }
.market-detail-dialog > header { position: sticky; z-index: 2; top: 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; min-height: 68px; padding: 12px 20px; border-bottom: 1px solid var(--line); background: #fff; }
.market-detail-dialog > header span, .market-detail-dialog > header strong { display: block; }
.market-detail-dialog > header span { color: var(--blue); font-size: 12px; font-weight: 800; }
.market-detail-dialog > header strong { margin-top: 3px; color: #647187; font-size: 13px; }
.market-detail-dialog > header button { width: 44px; height: 44px; border: 0; border-radius: 4px; background: #f2f5f9; color: #56657b; cursor: pointer; font-size: 25px; }
.market-detail-dialog > div { max-height: calc(100vh - 110px); overflow-y: auto; }
.market-product-detail { padding: 26px; }
.market-product-overview { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.market-product-cover { min-height: 260px; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #f3f6fa; }
.market-product-cover img { width: 100%; height: 100%; object-fit: cover; }
.market-product-labels { display: flex; gap: 7px; }
.market-product-labels span, .market-product-labels em { padding: 4px 8px; border-radius: 4px; font-size: 11px; font-style: normal; font-weight: 800; }
.market-product-labels span { background: #eaf2ff; color: var(--blue); }
.market-product-labels em { background: #fff0dc; color: #a55612; }
.market-product-overview h2 { margin: 14px 0 8px; font-size: 30px; }
.market-product-overview p { margin: 0; color: var(--muted); line-height: 1.75; }
.market-product-overview dl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 22px 0; border: 1px solid var(--line); background: var(--line); }
.market-product-overview dl div { padding: 13px; background: #fff; }
.market-product-overview dt { color: #8b96a8; font-size: 11px; }
.market-product-overview dd { margin: 5px 0 0; color: #26344d; font-weight: 800; }
.market-product-actions { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.market-product-actions > strong { color: #e3472f; font-size: 27px; }
.market-product-section { padding: 24px 0; border-bottom: 1px solid var(--line); }
.market-product-section h3, .market-product-spec h3 { margin: 0 0 12px; font-size: 18px; }
.market-product-section > p, .market-product-spec p { color: #5f6d83; line-height: 1.75; }
.market-detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.market-detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.market-detail-gallery img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border: 1px solid var(--line); border-radius: 5px; }
.market-product-spec { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 24px; }
.market-product-spec > div { min-width: 0; }
.market-product-spec p { display: flex; justify-content: space-between; gap: 15px; margin: 7px 0; }
.market-product-spec p span { color: #8994a5; }
.market-product-spec small { color: #8994a5; }
.empty-state { grid-column: 1 / -1; padding: 70px 30px; text-align: center; border: 1px dashed #bdc8d8; background: var(--soft); }
.empty-state h2 { margin: 0 0 8px; }
.empty-state p { margin: 0; color: var(--muted); }
.genuine-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: stretch; }
.lookup-panel, .lookup-result { padding: 36px; border: 1px solid var(--line); }
.lookup-panel label { display: block; margin-bottom: 10px; font-weight: 800; }
.input-action { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input, select { width: 100%; min-height: 46px; padding: 10px 13px; border: 1px solid #b9c5d5; border-radius: 5px; background: #fff; color: var(--ink); outline: 0; }
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,86,217,.11); }
.lookup-panel > p { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.lookup-result { display: flex; flex-direction: column; justify-content: center; background: var(--soft); }
.result-state { align-self: flex-start; padding: 4px 9px; border-radius: 4px; background: #dce6f7; color: var(--blue-dark); font-size: 12px; font-weight: 800; }
.lookup-result.is-success .result-state { background: #dff3e9; color: var(--green); }
.lookup-result.is-warning .result-state { background: #fff0d0; color: #91610c; }
.lookup-result h2 { margin: 18px 0 6px; font-size: 26px; }
.lookup-result p { margin: 0; color: var(--muted); }
.result-details { display: grid; gap: 8px; margin-top: 20px; }
.result-details div { display: flex; justify-content: space-between; gap: 20px; padding-top: 9px; border-top: 1px solid var(--line); }
.result-details span { color: var(--muted); }
.trust-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; padding-top: 30px; }
.trust-section img { width: 100%; max-height: 480px; object-fit: cover; }

.customer-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 28px; align-items: start; }
.customer-side { position: sticky; top: 98px; border: 1px solid var(--line); background: #fff; }
.customer-identity { display: flex; gap: 13px; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.customer-identity > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 6px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 900; }
.customer-identity div { min-width: 0; display: grid; }
.customer-identity small { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.customer-side nav { display: grid; padding: 10px; }
.customer-side button { padding: 12px 14px; border: 0; border-left: 3px solid transparent; background: transparent; text-align: left; color: #4b5870; cursor: pointer; }
.customer-side button:hover, .customer-side button.is-active { border-left-color: var(--blue); background: #f0f5ff; color: var(--blue); font-weight: 700; }
.customer-main { min-width: 0; }
.login-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.panel-heading h2, .console-title h2 { margin: 0; font-size: 30px; }
.panel-heading p:last-child { color: var(--muted); }
.login-panel form { display: grid; gap: 9px; }
.login-panel label { margin-top: 5px; font-weight: 700; font-size: 14px; }
.captcha-row { display: grid; grid-template-columns: 1fr 150px; gap: 10px; }
.captcha-image { width: 150px; height: 48px; padding: 0; border: 1px solid #b9c5d5; border-radius: 5px; overflow: hidden; background: var(--soft); cursor: pointer; }
.captcha-image img { width: 100%; height: 100%; }
.form-note { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.console-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.text-button { padding: 7px 0; border: 0; background: transparent; color: var(--blue); cursor: pointer; font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.metric-grid div { padding: 22px; border: 1px solid var(--line); background: var(--soft); }
.metric-grid span, .metric-grid strong { display: block; }
.metric-grid span { color: var(--muted); font-size: 13px; }
.metric-grid strong { margin-top: 8px; font-size: 27px; }
.order-form { margin-top: 28px; padding: 28px; border: 1px solid var(--line); }
.order-form h3 { margin: 0; font-size: 23px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 22px 0; }
.form-grid label { display: grid; gap: 7px; font-weight: 700; font-size: 14px; }
.data-list { display: grid; gap: 12px; }
.data-row { display: grid; grid-template-columns: minmax(160px, 1.2fr) repeat(3, minmax(110px, .7fr)) auto; gap: 18px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); background: #fff; }
.data-row strong, .data-row span, .data-row small { min-width: 0; overflow-wrap: anywhere; }
.data-row small { color: var(--muted); }
.data-row .status { justify-self: end; padding: 4px 9px; border-radius: 4px; background: #e3eefc; color: var(--blue-dark); font-size: 12px; font-weight: 800; }
.data-empty { padding: 44px 24px; border: 1px dashed #bdc8d8; background: var(--soft); text-align: center; color: var(--muted); }
.wallet-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.wallet-summary div { padding: 22px; background: var(--ink); color: #fff; }
.wallet-summary span, .wallet-summary strong { display: block; }
.wallet-summary span { color: rgba(255,255,255,.68); font-size: 13px; }
.wallet-summary strong { margin-top: 6px; font-size: 25px; }
.console-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.console-actions label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.console-actions select { min-width: 118px; min-height: 38px; padding: 6px 30px 6px 10px; }
.payment-result { display: grid; gap: 9px; margin-bottom: 20px; padding: 20px; border: 1px solid #b9c9e5; border-left: 4px solid var(--blue); background: #f4f8ff; }
.payment-result p, .payment-result small { margin: 0; color: var(--muted); }
.payment-result code { padding: 10px; overflow-wrap: anywhere; background: #fff; color: var(--blue-dark); }
.payment-result .button { justify-self: start; }
.button-small { min-height: 36px; padding: 8px 13px; font-size: 13px; }
.ai-wallet-summary { grid-template-columns: repeat(4, 1fr); }
.ai-package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 22px 0 30px; }
.ai-package-grid article { display: grid; gap: 8px; padding: 24px; border: 1px solid var(--line); background: #fff; }
.ai-package-grid article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.ai-package-grid h3, .ai-package-grid p { margin: 0; }
.ai-package-grid article > strong { font-size: 28px; }
.ai-package-grid .button { margin-top: 8px; }
.customer-subsection { margin-top: 30px; }
.customer-subsection h3 { margin: 0 0 14px; font-size: 20px; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: end; padding: 52px clamp(24px, 5vw, 80px); background: #0b1428; color: #fff; }
.site-footer > div p, .site-footer > p { margin: 5px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }
.site-footer > p { justify-self: end; text-align: right; }
.site-footer > p a { color: #8ad9ef; }
.toast-stack { position: fixed; top: 88px; right: 20px; z-index: 100; display: grid; gap: 10px; width: min(390px, calc(100vw - 40px)); }
.toast { padding: 15px 18px; border-left: 4px solid var(--blue); background: #fff; box-shadow: var(--shadow); animation: toastIn .25s ease-out both; }
.toast.is-error { border-left-color: var(--danger); }

@keyframes heroZoom { from { transform: scale(1.035); } to { transform: scale(1); } }
@keyframes contentIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } }

@media (max-width: 1100px) {
    .site-header { grid-template-columns: 1fr auto auto; }
    .nav-toggle { display: block; padding: 12px; }
    .site-nav { position: absolute; top: 74px; right: 20px; display: none; min-width: 220px; padding: 10px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
    .site-nav.is-open { display: grid; }
    .site-nav a { padding: 11px 13px; }
    .site-nav a::after { display: none; }
    .capability-grid, .module-list, .comparison-band { grid-template-columns: repeat(2, 1fr); }
    .capability-item:nth-child(2), .module-list div:nth-child(2), .comparison-band div:nth-child(2) { border-right: 0; }
    .capability-item:nth-child(-n+2), .module-list div:nth-child(-n+2), .comparison-band div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .app-grid { grid-template-columns: repeat(2, 1fr); }
    .customer-layout { grid-template-columns: 230px minmax(0,1fr); }
    .metric-grid, .ai-wallet-summary { grid-template-columns: repeat(2, 1fr); }
    .ai-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .data-row { grid-template-columns: 1fr 1fr; }
    .data-row .status { justify-self: start; }
}

@media (max-width: 760px) {
    body { font-size: 15px; }
    .site-header { min-height: 66px; padding: 0 16px; }
    .brand-copy small, .header-action { display: none; }
    .site-nav { top: 66px; right: 12px; left: 12px; }
    .hero-band { min-height: 700px; align-items: flex-start; }
    .hero-shade { background: linear-gradient(180deg, rgba(8,20,43,.8), rgba(8,20,43,.56) 62%, rgba(8,20,43,.26)); }
    .hero-content { width: auto; margin: 0 22px; padding: 82px 0 210px; }
    .hero-content h1 { font-size: 52px; }
    .hero-lead { font-size: 18px; }
    .hero-metrics { right: 16px; left: 16px; width: auto; grid-template-columns: repeat(3, 1fr); }
    .hero-metrics div { padding: 18px 12px; text-align: center; }
    .hero-metrics strong { font-size: 22px; }
    .section { width: min(100% - 32px, 1440px); padding: 68px 0; }
    .section-heading h2, .story-copy h2, .service-band h2, .trust-section h2 { font-size: 32px; }
    .capability-grid, .module-list, .comparison-band, .app-grid, .feature-story, .genuine-layout, .trust-section, .customer-layout, .login-panel, .form-grid, .wallet-summary, .ai-package-grid { grid-template-columns: 1fr; }
    .capability-item, .module-list div, .comparison-band div { border-right: 0; border-bottom: 1px solid var(--line); }
    .story-media, .story-media img { min-height: 330px; }
    .service-band { min-height: 520px; }
    .service-band::after { background: rgba(8,20,43,.72); }
    .service-band > div { margin: 0 22px; }
    .page-banner { min-height: 330px; padding: 54px 20px; }
    .page-banner h1 { font-size: 38px; }
    .price-panel { min-height: auto; padding: 28px; }
    .input-action { grid-template-columns: 1fr; }
    .input-action .button { width: 100%; }
    .customer-side { position: static; }
    .customer-side nav { grid-template-columns: repeat(2, 1fr); }
    .login-panel { gap: 24px; padding: 24px; }
    .captcha-row { grid-template-columns: 1fr 128px; }
    .captcha-image { width: 128px; }
    .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .console-title, .console-actions { align-items: stretch; flex-direction: column; }
    .data-row { grid-template-columns: 1fr; gap: 6px; }
    .site-footer { grid-template-columns: 1fr; align-items: start; }
    .site-footer > p { justify-self: start; text-align: left; }
}

/* 一秒互联公司  www.yimiaonet.com */
.customer-workspace { display: grid; grid-template-columns: 252px minmax(0, 1fr); min-height: calc(100vh - 74px); background: #f4f7fb; }
.customer-side { position: sticky; top: 74px; align-self: start; height: calc(100vh - 74px); overflow: auto; border: 0; border-right: 1px solid #dce3ed; background: #fff; }
.customer-identity { padding: 20px 18px 17px; }
.customer-identity > span { width: 40px; height: 40px; border-radius: 5px; background: #1456d9; }
.customer-identity strong { font-size: 14px; }
.customer-identity small { margin-top: 3px; font-size: 12px; }
.customer-side nav { display: grid; gap: 2px; padding: 8px 10px 24px; }
.customer-side nav > small { padding: 16px 12px 7px; color: #8792a6; font-size: 11px; font-weight: 700; }
.customer-side nav button { display: flex; gap: 10px; align-items: center; min-height: 42px; padding: 8px 11px; border: 0; border-radius: 5px; color: #39475f; font-size: 14px; }
.customer-side nav button > span { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid #dce4f0; border-radius: 5px; background: #f7f9fc; color: #65728a; font-size: 11px; font-weight: 800; }
.customer-side nav button:hover, .customer-side nav button.is-active { border-left-color: transparent; background: #eaf1ff; color: #1456d9; }
.customer-side nav button.is-active > span { border-color: #1456d9; background: #1456d9; color: #fff; }
.customer-main { min-width: 0; padding: 26px 30px 42px; }
.customer-console { width: min(100%, 1500px); margin: 0 auto; }
.customer-console > section { min-width: 0; animation: workspaceIn .22s ease-out both; }
.login-panel { width: min(100%, 1120px); min-height: 610px; margin: 36px auto; grid-template-columns: 1.05fr .95fr; gap: 0; padding: 0; overflow: hidden; border: 1px solid #d7e0ec; border-radius: 8px; box-shadow: 0 18px 45px rgba(24, 45, 82, .09); }
.login-intro { display: grid; align-content: center; padding: 54px; background: #10285a; color: #fff; }
.login-intro > span { color: #8fb7ff; font-size: 13px; font-weight: 800; }
.login-intro h1 { max-width: 560px; margin: 16px 0; font-size: 38px; line-height: 1.25; }
.login-intro > p { max-width: 560px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.8; }
.login-intro dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 38px 0 0; background: rgba(255,255,255,.15); }
.login-intro dl div { padding: 18px 14px; background: #10285a; }
.login-intro dt { color: #fff; font-weight: 800; }
.login-intro dd { margin: 5px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }
.login-panel > form { display: grid; align-content: center; padding: 48px; background: #fff; }
.login-panel .panel-heading { margin-bottom: 18px; }
.login-panel .panel-heading h2 { margin: 0; font-size: 26px; }
.login-panel .panel-heading p { margin: 7px 0 0; color: var(--muted); }
.login-panel label { margin-top: 12px; font-size: 13px; font-weight: 700; }
.login-panel input { margin-top: 7px; }
.console-title { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid #dce3ed; }
.console-title > div:first-child > span { color: #1456d9; font-size: 12px; font-weight: 800; }
.console-title h1 { margin: 5px 0 0; color: #15223b; font-size: 27px; line-height: 1.25; }
.console-title p { margin: 7px 0 0; color: #68758a; font-size: 14px; }
.console-actions { display: flex; gap: 10px; align-items: end; }
.console-actions label { min-width: 150px; color: #68758a; font-size: 12px; }
.console-actions select { min-height: 38px; margin-top: 4px; }
.metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.metric-grid div { min-height: 126px; padding: 20px; border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.metric-grid div:nth-child(1), .metric-grid div:nth-child(4) { border-top: 3px solid #1456d9; }
.metric-grid div:nth-child(2), .metric-grid div:nth-child(5) { border-top: 3px solid #0f9b8e; }
.metric-grid div:nth-child(3), .metric-grid div:nth-child(6) { border-top: 3px solid #d89313; }
.metric-grid span, .metric-grid small, .metric-grid strong { display: block; }
.metric-grid span { color: #657188; font-size: 13px; }
.metric-grid strong { margin-top: 8px; color: #14213a; font-size: 28px; }
.metric-grid small { margin-top: 6px; color: #96a0b0; }
.workspace-tip { display: flex; justify-content: space-between; gap: 18px; margin-top: 16px; padding: 14px 16px; border: 1px solid #bfd2f5; border-left: 4px solid #1456d9; border-radius: 5px; background: #edf4ff; }
.workspace-tip strong { font-size: 14px; }
.workspace-tip p { margin: 3px 0 0; color: #586983; font-size: 13px; }
.workspace-tip button { align-self: start; border: 0; background: transparent; color: #748198; cursor: pointer; font-size: 22px; line-height: 1; }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.overview-grid article { padding: 22px; border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.overview-grid article > span { color: #1456d9; font-size: 12px; font-weight: 800; }
.overview-grid h3 { margin: 9px 0 7px; font-size: 18px; }
.overview-grid p { min-height: 66px; margin: 0; color: #6d788a; font-size: 13px; line-height: 1.7; }
.product-list { display: grid; gap: 12px; }
.product-item { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: 22px; border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.product-mark { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 7px; background: #1456d9; color: #fff; font-size: 13px; font-weight: 900; }
.product-content > div:first-child { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; }
.product-content > div:first-child span { color: #1456d9; font-size: 13px; font-weight: 800; }
.product-content h3 { margin: 0; font-size: 18px; }
.product-content dl { display: grid; grid-template-columns: 1.3fr 1fr 1fr .7fr; gap: 16px; margin: 18px 0 0; }
.product-content dl div { min-width: 0; padding-top: 12px; border-top: 1px solid #e3e8f0; }
.product-content dt { color: #8a95a7; font-size: 12px; }
.product-content dd { margin: 5px 0 0; overflow: hidden; color: #26334a; text-overflow: ellipsis; white-space: nowrap; }
.product-content > p { display: flex; flex-wrap: wrap; gap: 6px; margin: 15px 0 0; }
.product-content em { padding: 4px 8px; border-radius: 4px; background: #eef3f9; color: #526079; font-size: 11px; font-style: normal; }
.product-actions { display: flex; gap: 8px; margin-top: 15px; }
.status-dot { color: #67758a; font-size: 13px; }
.status-dot.is-active { color: #07856f; }
.release-toolbar { display: grid; grid-template-columns: minmax(240px, 1fr) minmax(200px, .7fr) auto; gap: 12px; align-items: end; margin-bottom: 16px; padding: 16px; border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.release-toolbar label { color: #5c687d; font-size: 12px; font-weight: 700; }
.release-toolbar input, .release-toolbar select { margin-top: 6px; }
.release-row { display: grid; grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(120px, .65fr)) auto; gap: 14px; align-items: center; padding: 18px; border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.release-row > div:first-child span { color: #1456d9; font-size: 11px; font-weight: 800; }
.release-row > div:first-child strong, .release-row > div:first-child p { display: block; }
.release-row > div:first-child strong { margin-top: 4px; }
.release-row > div:first-child p { margin: 4px 0 0; color: #768196; font-size: 12px; }
.release-row > div:not(:first-child) small, .release-row > div:not(:first-child) b { display: block; }
.release-row > div:not(:first-child) small { color: #929cab; font-size: 11px; }
.release-row > div:not(:first-child) b { margin-top: 5px; font-size: 13px; }
.release-row details { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid #e1e7ef; }
.release-row summary { color: #1456d9; cursor: pointer; font-size: 13px; font-weight: 700; }
.release-row pre { overflow: auto; max-height: 260px; padding: 14px; background: #f6f8fb; white-space: pre-wrap; }
.release-row code { display: block; overflow: hidden; color: #657188; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.workspace-form { margin-bottom: 16px; padding: 20px; border: 1px solid #d7e0ec; border-radius: 6px; background: #fff; }
.workspace-form textarea { min-height: 110px; resize: vertical; }
.workspace-form label { color: #56647a; font-size: 13px; font-weight: 700; }
.workspace-form input, .workspace-form select, .workspace-form textarea { margin-top: 7px; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-wide { grid-column: 1 / -1; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 18px; }
.data-list { display: grid; gap: 8px; }
.data-row { grid-template-columns: minmax(220px, 1.2fr) minmax(120px, .65fr) minmax(120px, .65fr) minmax(145px, .7fr) auto; gap: 14px; min-height: 72px; padding: 13px 16px; border-radius: 5px; }
.data-row strong { min-width: 0; overflow: hidden; font-size: 14px; text-overflow: ellipsis; }
.data-row strong small { margin-top: 4px; }
.data-row > span, .data-row > small { color: #657188; font-size: 13px; }
.data-row .status { justify-self: end; }
.ticket-row { display: grid; grid-template-columns: 150px minmax(220px, 1fr) 230px 80px; gap: 14px; align-items: center; width: 100%; min-height: 68px; padding: 14px 16px; border: 1px solid #dce3ed; border-radius: 5px; background: #fff; color: #27364e; text-align: left; cursor: pointer; }
.ticket-row span, .ticket-row small { color: #748096; font-size: 12px; }
.ticket-row b { color: #1456d9; font-size: 13px; }
.ticket-detail { border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.ticket-detail-head { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid #e1e7ef; }
.ticket-detail-head span { color: #1456d9; font-size: 12px; }
.ticket-detail-head h3 { margin: 5px 0 0; }
.message-list { display: grid; gap: 12px; padding: 20px; }
.message-list article { max-width: 78%; padding: 13px 15px; border-radius: 5px; background: #f1f4f8; }
.message-list article.is-customer { justify-self: end; background: #eaf2ff; }
.message-list p { margin: 6px 0; line-height: 1.7; }
.message-list small { color: #8b95a6; }
.ticket-reply { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 16px 20px; border-top: 1px solid #e1e7ef; }
.ticket-reply textarea { min-height: 78px; resize: vertical; }
.share-card { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px; border-radius: 6px; background: #10285a; color: #fff; }
.share-card span, .share-card strong, .share-card p { display: block; }
.share-card span { color: rgba(255,255,255,.62); font-size: 12px; }
.share-card strong { margin-top: 5px; font-size: 25px; }
.share-card p { margin: 5px 0 0; color: #a9c4fa; font-size: 12px; }
.mini-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 16px; border: 1px solid #dce3ed; background: #dce3ed; }
.mini-metrics div { padding: 18px; background: #fff; }
.mini-metrics span, .mini-metrics strong { display: block; }
.mini-metrics span { color: #8490a3; font-size: 12px; }
.mini-metrics strong { margin-top: 7px; font-size: 19px; }
.application-empty { padding: 30px; border: 1px dashed #aebdd1; border-radius: 6px; background: #f7f9fc; text-align: center; }
.application-empty strong { font-size: 19px; }
.application-empty p { margin: 8px auto 18px; color: #6f7b8e; }
.wallet-summary { grid-template-columns: repeat(4, 1fr); gap: 10px; }
.wallet-summary div { padding: 20px; border-radius: 6px; background: #10285a; }
.withdraw-form { display: grid; grid-template-columns: repeat(4, minmax(140px, 1fr)) auto; gap: 10px; align-items: end; margin: 14px 0 18px; padding: 16px; border: 1px solid #dce3ed; border-radius: 6px; background: #fff; }
.withdraw-form label { color: #657188; font-size: 12px; font-weight: 700; }
.withdraw-form input, .withdraw-form select { margin-top: 6px; }
.subsection-title { margin: 24px 0 12px; font-size: 17px; }
.profile-card { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-bottom: 16px; border: 1px solid #dce3ed; background: #dce3ed; }
.profile-card div { padding: 20px; background: #fff; }
.profile-card span, .profile-card strong { display: block; }
.profile-card span { color: #8994a6; font-size: 12px; }
.profile-card strong { margin-top: 6px; }
.customer-avatar { position: relative; overflow: hidden; flex: 0 0 auto; }
.customer-avatar img, .account-avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.customer-avatar b { font-size: 13px; font-weight: 800; }
.account-profile-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 14px; align-items: start; }
.account-profile-form { margin-bottom: 0; }
.profile-form-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid #e3e8f0; }
.profile-form-head strong { color: #1e3450; font-size: 17px; }
.profile-form-head p { margin: 4px 0 0; color: #7a879a; font-size: 12px; line-height: 1.7; }
.account-avatar-preview { position: relative; width: 74px; height: 74px; display: grid; place-items: center; overflow: hidden; flex: 0 0 auto; border: 1px solid #c8d7ec; border-radius: 8px; color: #fff; background: #1456d9; font-size: 20px; font-weight: 800; }
.account-facts { padding: 20px; border: 1px solid #d7e0ec; border-radius: 6px; background: #fff; }
.account-facts h2 { margin: 0 0 13px; color: #1f3450; font-size: 17px; }
.account-facts dl { display: grid; gap: 0; margin: 0; }
.account-facts dl div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; padding: 11px 0; border-bottom: 1px solid #e8edf3; }
.account-facts dl div:last-child { border-bottom: 0; }
.account-facts dt { color: #8a95a7; font-size: 12px; }
.account-facts dd { margin: 0; overflow: hidden; color: #26364f; font-size: 13px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.publishing-summary { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin-top: 14px; border: 1px solid #dce3ed; background: #dce3ed; }
.publishing-summary div { min-height: 96px; padding: 16px; background: #fff; }
.publishing-summary span, .publishing-summary strong { display: block; }
.publishing-summary span { color: #8490a3; font-size: 12px; }
.publishing-summary strong { margin-top: 8px; color: #152640; font-size: 23px; }
.publishing-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.publishing-columns > section { min-width: 0; padding: 18px; border: 1px solid #d7e0ec; border-radius: 6px; background: #fff; }
.subsection-heading { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 12px; }
.subsection-heading h2 { margin: 0; color: #1f3450; font-size: 17px; }
.subsection-heading span { color: #728097; font-size: 12px; }
.publishing-list { display: grid; gap: 8px; }
.publishing-item { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #e8edf3; }
.publishing-item:last-child { border-bottom: 0; }
.publishing-item strong, .publishing-item small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.publishing-item strong { color: #273950; font-size: 13px; }
.publishing-item small, .publishing-item > span { color: #7d899b; font-size: 11px; }
.publishing-item > span { white-space: nowrap; }
.package-rule { display: grid; gap: 5px; margin-top: 14px; padding: 14px; border-left: 4px solid #d89313; background: #fff8e9; }
.package-rule span { color: #6f6250; font-size: 12px; line-height: 1.7; }
.pagination { display: flex; justify-content: flex-end; gap: 8px; align-items: center; margin-top: 14px; color: #718096; font-size: 12px; }
.pagination button { min-height: 34px; padding: 6px 12px; border: 1px solid #ced7e4; border-radius: 4px; background: #fff; cursor: pointer; }
.pagination button:disabled { cursor: not-allowed; opacity: .45; }
.skeleton-list { display: grid; gap: 8px; }
.skeleton-list i { display: block; height: 72px; border-radius: 5px; background: linear-gradient(90deg, #eef1f5 25%, #f8fafc 40%, #eef1f5 65%); background-size: 400% 100%; animation: skeletonMove 1.25s ease infinite; }
.purchase-dialog { width: min(760px, calc(100vw - 32px)); padding: 0; border: 0; border-radius: 8px; box-shadow: 0 28px 80px rgba(10, 24, 50, .28); }
.purchase-dialog::backdrop { background: rgba(12, 23, 43, .54); backdrop-filter: blur(3px); }
.dialog-head { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding: 22px 24px; border-bottom: 1px solid #dce3ed; }
.dialog-head span { color: #1456d9; font-size: 12px; font-weight: 800; }
.dialog-head h2 { margin: 5px 0 0; font-size: 23px; }
.dialog-head button { border: 0; background: transparent; color: #6c788b; cursor: pointer; font-size: 25px; }
.purchase-dialog .order-form { margin: 0; padding: 24px; border: 0; }
.purchase-dialog .order-form > p { margin: 0 0 18px; color: #657188; }
@keyframes workspaceIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes skeletonMove { from { background-position: 100% 0; } to { background-position: 0 0; } }

@media (max-width: 1180px) {
    .customer-workspace { grid-template-columns: 220px minmax(0, 1fr); }
    .customer-main { padding: 24px 20px 36px; }
    .product-content dl { grid-template-columns: repeat(2, 1fr); }
    .release-row { grid-template-columns: minmax(240px, 1.3fr) repeat(2, minmax(120px, .7fr)) auto; }
    .release-row > div:nth-child(4) { display: none; }
    .withdraw-form { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .market-toolbar { grid-template-columns: 1fr; }
    .market-filter-group { grid-template-columns: 1fr; }
    .market-filter-group > strong { min-height: 40px; padding: 0 13px; border-bottom: 1px solid #edf0f5; }
    .market-product-overview { grid-template-columns: 1fr; }
    .market-product-cover { min-height: 220px; }
    .market-product-overview dl { grid-template-columns: repeat(2, 1fr); }
    .market-product-spec { grid-template-columns: 1fr; }
    .market-detail-gallery { grid-template-columns: repeat(2, 1fr); }
    .customer-workspace { display: block; min-height: auto; }
    .customer-side { position: static; height: auto; border-right: 0; border-bottom: 1px solid #dce3ed; }
    .customer-side nav { display: flex; overflow-x: auto; padding: 8px 12px 12px; }
    .customer-side nav > small { display: none; }
    .customer-side nav button { flex: 0 0 auto; white-space: nowrap; }
    .customer-main { padding: 18px 14px 32px; }
    .login-panel { display: grid; grid-template-columns: 1fr; width: 100%; min-height: auto; margin: 10px auto; }
    .login-intro { padding: 32px 26px; }
    .login-intro h1 { font-size: 29px; }
    .login-intro dl { margin-top: 24px; }
    .login-panel > form { padding: 28px 24px; }
    .metric-grid, .overview-grid { grid-template-columns: repeat(2, 1fr); }
    .console-title { flex-direction: column; }
    .product-item { grid-template-columns: 1fr; }
    .product-content > div:first-child { display: block; }
    .product-content h3 { margin-top: 5px; }
    .release-toolbar, .release-row { grid-template-columns: 1fr; }
    .release-row > div:nth-child(4) { display: block; }
    .ticket-row { grid-template-columns: 1fr; gap: 5px; }
    .mini-metrics, .wallet-summary, .profile-card { grid-template-columns: repeat(2, 1fr); }
    .publishing-summary { grid-template-columns: repeat(3, 1fr); }
    .publishing-columns, .account-profile-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wide { grid-column: auto; }
    .data-row { grid-template-columns: 1fr 1fr; }
    .data-row .status { justify-self: start; }
}

@media (max-width: 520px) {
    .market-catalog { padding-top: 28px; }
    .market-result-head, .market-product-actions { align-items: stretch; flex-direction: column; }
    .market-filter-group > div { flex-wrap: nowrap; overflow-x: auto; }
    .market-filter-group button { flex: 0 0 auto; }
    .market-app-grid { grid-template-columns: 1fr; }
    .market-app-item .app-bottom { align-items: flex-start; flex-direction: column; }
    .market-app-item .app-bottom > div, .market-app-item .app-bottom button, .market-app-item .app-bottom a { width: 100%; }
    .market-app-item .app-bottom button, .market-app-item .app-bottom a { justify-content: center; }
    .market-product-detail { padding: 18px; }
    .market-product-overview h2 { font-size: 25px; }
    .market-detail-gallery { grid-template-columns: 1fr; }
    .market-product-actions .button { width: 100%; }
    .customer-identity { padding: 14px; }
    .metric-grid, .overview-grid, .mini-metrics, .wallet-summary, .profile-card, .publishing-summary, .publishing-columns, .withdraw-form { grid-template-columns: 1fr; }
    .publishing-item { grid-template-columns: minmax(0, 1fr) auto; }
    .publishing-item > span:last-child { grid-column: 1 / -1; }
    .login-intro dl { grid-template-columns: 1fr; }
    .console-actions, .product-actions, .form-actions { width: 100%; flex-direction: column; }
    .console-actions > *, .product-actions .button, .form-actions .button { width: 100%; }
    .product-content dl { grid-template-columns: 1fr; }
    .share-card { align-items: stretch; flex-direction: column; }
    .data-row { grid-template-columns: 1fr; gap: 6px; }
    .ticket-reply { grid-template-columns: 1fr; }
    .message-list article { max-width: 92%; }
}

/* 一秒互联公司  www.yimiaonet.com：商城页面的克制滚动动效与弹窗过渡。 */
.store-motion-ready .store-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .48s ease var(--store-reveal-delay, 0ms), transform .48s cubic-bezier(.2,.72,.26,1) var(--store-reveal-delay, 0ms);
}
.store-motion-ready .store-reveal.store-reveal-visible { opacity: 1; transform: translateY(0); }
.market-app-item:hover, .app-item:hover, .market-links a:hover { transform: translateY(-3px); }
.data-row, .product-item, .release-row, .ticket-row { animation: store-data-in .24s ease-out both; }
.purchase-dialog[open], .market-detail-dialog[open] { animation: store-dialog-in .22s cubic-bezier(.2,.72,.26,1) both; }
@keyframes store-data-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@keyframes store-dialog-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (prefers-reduced-motion: reduce) {
    .store-motion-ready .store-reveal, .data-row, .product-item, .release-row, .ticket-row,
    .purchase-dialog[open], .market-detail-dialog[open] { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}
