:root {
    --front-bg: #f3f6fb;
    --front-panel: rgba(255, 255, 255, 0.96);
    --front-panel-soft: #eef3f9;
    --front-line: rgba(148, 163, 184, 0.18);
    --front-text: #405065;
    --front-title: #0f1728;
    --front-primary: #3467ff;
    --front-primary-soft: #eaf0ff;
    --front-dark: #0d182b;
    --front-accent: #13b5ac;
    --front-shadow: 0 22px 55px rgba(7, 18, 36, 0.08);
    --front-radius-xl: 30px;
    --front-radius-lg: 24px;
    --front-radius-md: 18px;
}

body {
    background:
        radial-gradient(circle at top left, rgba(52, 103, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #f5f8fc 0%, #f0f4fa 42%, #f6f8fb 100%);
    color: var(--front-text);
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

a {
    color: var(--front-primary);
    text-decoration: none;
}

a:hover {
    color: #244dd0;
}

.front-topline {
    background: #f6f7f9;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    color: #7a8798;
    font-size: 0.82rem;
}

.front-topline-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-height: 42px;
}

.front-topline-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.front-topline-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.front-topline-meta a,
.front-topline-meta span {
    color: #7a8798;
}

.front-topline-meta a:hover {
    color: var(--front-primary);
}

.front-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
}

.front-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 92px;
}

.front-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--front-title);
    min-width: 0;
}

.front-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    padding: 0.2rem 0.35rem;
}

.front-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.front-brand-copy strong {
    display: block;
    color: #1a2536;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
}

.front-brand-copy small {
    display: block;
    margin-top: 0.2rem;
    color: #99a4b3;
    font-size: 0.82rem;
}

.front-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.15rem;
}

.front-nav-item {
    position: relative;
}

.front-nav a {
    position: relative;
    padding: 2rem 0.95rem 1.95rem;
    border-radius: 0;
    color: #48566a;
    font-size: 0.95rem;
    font-weight: 500;
}

.front-nav > a:hover,
.front-nav-item > a:hover,
.front-nav > a.is-active,
.front-nav-item > a.is-active {
    color: #08a8f6;
}

.front-nav > a:hover::after,
.front-nav-item > a:hover::after,
.front-nav > a.is-active::after,
.front-nav-item > a.is-active::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0.95rem;
    height: 2px;
    background: #08a8f6;
}

.front-subnav {
    display: none;
}

.front-subnav a {
    display: block;
    padding: 0.62rem 0.9rem;
    border-radius: 0;
    color: #5b6779;
    white-space: nowrap;
}

.front-subnav a:hover,
.front-subnav a.is-active {
    background: #f4f7fb;
    color: #08a8f6;
}

.front-header-tools {
    display: flex;
    align-items: center;
}

.front-header-pill,
.front-header-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 38px;
    padding: 0 1rem;
    border-radius: 999px;
    font-size: 0.84rem;
    transition: all 0.2s ease;
}

.front-header-pill {
    background: #eef7fe;
    color: #08a8f6;
}

.front-header-pill:hover {
    background: #dff3ff;
    color: #0398e0;
}

.front-header-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #64748b;
    transition: color 0.2s ease;
}

.front-header-search-icon:hover {
    color: #08a8f6;
}

.front-header-subnav-shell {
    position: absolute;
    top: 100%;
    left: calc(50% - 50vw);
    z-index: 35;
    width: 100vw;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.front-header-subnav-shell.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
}

.front-header-subnav-bar {
    position: relative;
    display: none;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    min-height: 58px;
    padding: 0 2.4rem;
    padding-right: max(2.4rem, calc((100vw - 1060px) / 2));
    background: #fff;
    box-shadow: 0 14px 28px rgba(7, 18, 36, 0.08);
}

.front-header-subnav-bar.is-active {
    display: flex;
}

.front-header-subnav-bar::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #fff;
}

.front-header-subnav-bar a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: #7b8796;
    font-size: 0.88rem;
    white-space: nowrap;
}

.front-header-subnav-bar a:hover,
.front-header-subnav-bar a.is-active {
    color: #08a8f6;
}

.front-header-subnav-bar a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #08a8f6;
}

.front-header-outline {
    border: 1px solid rgba(148, 163, 184, 0.26);
    color: #5b6779;
}

.front-header-outline:hover {
    border-color: rgba(8, 168, 246, 0.3);
    color: #08a8f6;
}

.front-nav-toggle {
    display: none;
    padding: 0.8rem 1rem;
    border: 1px solid var(--front-line);
    border-radius: 999px;
    background: #fff;
    color: var(--front-title);
}

.home-page,
.inner-page,
.home-reference-page {
    padding-bottom: 1.0rem;
}

.home-reference-page {
    background: #f1f1f1;
}

.hero-slider {
    padding: 1.4rem 0 0;
}

.reference-hero {
    padding: 0;
}

.reference-hero-stage {
    position: relative;
    min-height: var(--reference-slide-height, 580px);
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(7, 18, 36, 0.12);
}

.reference-slide {
    position: absolute;
    inset: 0;
    --reference-content-safe-edge: max(3rem, calc((100vw - 1360px) / 2 + 0.75rem));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease;
}

.reference-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.reference-slide-media,
.reference-strip-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.reference-slide-media {
    object-fit: cover;
}

.reference-slide-media-image,
.reference-strip-media-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.reference-slide-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 24, 43, 0.34), rgba(13, 24, 43, 0.12)),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(10, 16, 28, 0.22));
}

.reference-slide-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: var(--reference-slide-height, 580px);
    max-width: min(960px, 100%);
    margin: 0 auto;
    padding: 2rem 3rem;
    text-align: center;
    color: #fff;
}

.reference-slide-position-left .reference-slide-copy {
    margin-left: var(--reference-content-safe-edge);
    margin-right: auto;
    align-items: flex-start;
    text-align: left;
}

.reference-slide-position-right .reference-slide-copy {
    margin-left: auto;
    margin-right: var(--reference-content-safe-edge);
    align-items: flex-end;
    text-align: right;
}

.reference-slide-position-center .reference-slide-copy {
    align-items: center;
    text-align: center;
}

.reference-slide-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.42rem 0.9rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reference-slide-copy h1 {
    margin: 0 0 0.9rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
}

.reference-slide-copy p {
    max-width: 720px;
    margin: 0 0 1.4rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

.reference-slide-actions,
.reference-city-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.reference-slide-position-left .reference-slide-actions {
    justify-content: flex-start;
}

.reference-slide-position-right .reference-slide-actions {
    justify-content: flex-end;
}

.reference-slide-dots {
    position: absolute;
    left: 50%;
    bottom: 82px;
    z-index: 3;
    display: flex;
    gap: 0.55rem;
    transform: translateX(-50%);
}

.reference-slide-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
    cursor: pointer;
}

.reference-slide-dots button.is-active {
    background: #fff;
}

.reference-hero-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(var(--reference-hero-nav-columns, 5), minmax(0, 1fr));
}

.reference-hero-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0.8rem 0.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.92rem;
}

.reference-hero-nav a:last-child {
    border-right: 0;
}

.reference-hero-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.reference-strip-wrap {
    padding: 0;
}

.reference-strip {
    position: relative;
    --reference-content-safe-edge: max(2.8rem, calc((100vw - 1360px) / 2 + 0.75rem));
    min-height: var(--reference-strip-height, 305px);
    margin-top: 4px;
    width: 100%;
    overflow: hidden;
}

.reference-strip-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(168, 102, 41, 0.78), rgba(84, 45, 10, 0.12));
}

.reference-strip-position-right .reference-strip-mask {
    background: linear-gradient(90deg, rgba(84, 45, 10, 0.12), rgba(168, 102, 41, 0.78));
}

.reference-strip-position-center .reference-strip-mask {
    background: linear-gradient(90deg, rgba(84, 45, 10, 0.46), rgba(168, 102, 41, 0.55), rgba(84, 45, 10, 0.46));
}

.reference-strip-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: var(--reference-strip-height, 305px);
    max-width: 620px;
    margin-left: var(--reference-content-safe-edge);
    padding: 2.4rem 2.8rem;
    color: #fff;
}

.reference-strip-position-right .reference-strip-content {
    margin-left: auto;
    margin-right: var(--reference-content-safe-edge);
    align-items: flex-end;
    text-align: right;
}

.reference-strip-position-center .reference-strip-content {
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.reference-strip-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.42rem 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.reference-strip-content h2,
.reference-story-copy h2,
.reference-city-copy h2 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.18;
}

.reference-strip-content p,
.reference-city-copy p {
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.reference-story-section {
    padding: 3.5rem 0;
    background: #f5f5f5;
}

.reference-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.reference-story-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
}

.reference-collage-item {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(7, 18, 36, 0.1);
}

.reference-collage-large {
    grid-row: span 2;
}

.reference-collage-item img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}

.reference-story-copy {
    color: var(--front-text);
}

.reference-story-copy h2 {
    color: var(--front-title);
}

.reference-story-copy p {
    margin: 0.95rem 0 1.5rem;
    color: #718096;
    line-height: 1.9;
}

.reference-story-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.reference-story-stats div {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(7, 18, 36, 0.06);
}

.reference-story-stats strong {
    display: block;
    color: var(--front-title);
    font-size: 1.8rem;
    line-height: 1;
}

.reference-story-stats span {
    display: block;
    margin-top: 0.45rem;
    color: #7e8c9f;
}

.reference-city-banner {
    position: relative;
    padding: 3.5rem 0;
    background: var(--reference-city-image) center/cover no-repeat;
}

.reference-city-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 24, 48, 0.7), rgba(10, 35, 78, 0.54));
}

.reference-city-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
}

.reference-city-copy .reference-strip-kicker {
    margin-bottom: 1rem;
}

.hero-slider-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.78fr);
    gap: 1.4rem;
}

.hero-slider-stage {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 72px rgba(7, 18, 36, 0.18);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    background: var(--slide-image) center/cover no-repeat;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(8, 15, 28, 0.78), rgba(12, 32, 63, 0.2)),
        radial-gradient(circle at 18% 18%, rgba(52, 103, 255, 0.28), transparent 25%),
        radial-gradient(circle at 82% 74%, rgba(19, 181, 172, 0.18), transparent 20%);
}

.hero-slide-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 2.4rem;
    max-width: 720px;
    color: #fff;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.88rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-kicker {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.94);
}

.section-kicker {
    background: rgba(52, 103, 255, 0.08);
    color: var(--front-primary);
}

.hero-slide h1,
.inner-hero h1,
.detail-main h1,
.search-hero h1 {
    margin: 0 0 1rem;
    color: var(--front-title);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.08;
}

.detail-main h1 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.7rem, 3.2vw, 2.65rem);
    line-height: 1.18;
}

.hero-slide h1 {
    color: #fff;
}

.hero-slide p,
.inner-hero p,
.brand-panel p,
.detail-body,
.search-item p,
.content-card p,
.news-list-item p,
.category-tile p {
    color: inherit;
    line-height: 1.8;
}

.hero-slide p {
    max-width: 620px;
    margin: 0 0 1.4rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
}

.hero-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-slide-dots {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    gap: 0.65rem;
}

.hero-slide-dots button {
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-slide-dots button.is-active {
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.hero-side-panel {
    display: grid;
    gap: 1rem;
}

.hero-search-card,
.quick-entry-card,
.content-card,
.news-list-panel,
.brand-panel,
.category-tile,
.inner-hero,
.subnav-panel,
.side-box,
.detail-main,
.search-hero,
.search-item,
.empty-box {
    border-radius: var(--front-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--front-shadow);
}

.hero-search-card,
.brand-panel,
.search-hero,
.inner-hero,
.detail-main,
.side-box {
    padding: 1.5rem;
}

.inner-aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-side-title,
.front-footer-title,
.side-box-title {
    margin-bottom: 1rem;
    color: var(--front-title);
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-metric-grid div {
    padding: 1.15rem 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 38px rgba(7, 18, 36, 0.08);
}

.hero-metric-grid strong {
    display: block;
    color: var(--front-title);
    font-size: 2rem;
    line-height: 1;
}

.hero-metric-grid span {
    display: block;
    margin-top: 0.55rem;
    color: #7a8798;
}

.home-quick-entry {
    margin-top: -3.7rem;
    position: relative;
    z-index: 3;
}

.quick-entry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 1.6rem 1.2rem;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-entry-card:hover,
.content-card:hover,
.category-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 58px rgba(7, 18, 36, 0.12);
}

.quick-entry-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #4b72ff, #13b5ac);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.quick-entry-card strong {
    color: var(--front-title);
    font-size: 1.02rem;
}

.quick-entry-card small {
    margin-top: 0.45rem;
    color: var(--front-primary);
}

.quick-entry-card p {
    margin: 0.85rem 0 0;
    color: #758396;
    font-size: 0.88rem;
}

.home-section {
    padding-top: 3rem;
}

.home-section-alt {
    padding-top: 2.4rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    margin: 0.75rem 0 0;
    color: var(--front-title);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.content-card {
    overflow: hidden;
    height: 100%;
}

.content-card-image img {
    width: 100%;
    height: 235px;
    object-fit: cover;
}

.content-card-body {
    padding: 1.4rem;
}

.content-card-meta,
.detail-meta,
.category-tile-top,
.category-tile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.content-card-meta span,
.detail-meta span,
.category-tile-top span,
.category-tile-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: rgba(52, 103, 255, 0.08);
    color: var(--front-primary);
    font-size: 0.8rem;
}

.content-card h3,
.news-list-item h3,
.brand-panel h2,
.category-tile h3,
.detail-main h1,
.search-item h2,
.search-hero h1,
.inner-hero h1 {
    color: var(--front-title);
}

.content-card h3,
.news-list-item h3,
.category-tile h3,
.search-item h2 {
    margin: 0.95rem 0 0.75rem;
    font-size: 1.16rem;
}

.content-card p,
.news-list-item p,
.category-tile p,
.search-item p {
    margin: 0;
    color: #748296;
}

.news-list-date {
    white-space: nowrap;
    color: #7f8ca0;
    font-size: 0.82rem;
}

.brand-panel-image {
    margin-top: 1.2rem;
    border-radius: 24px;
    overflow: hidden;
}

.brand-panel-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.category-tile {
    display: block;
    height: 100%;
    padding: 1.4rem;
}

.category-tile-top,
.category-tile-meta {
    justify-content: space-between;
    align-items: center;
}

.category-tile-top em {
    color: #7f8ca0;
    font-size: 0.82rem;
    font-style: normal;
}

.category-tile-meta {
    margin-top: 1rem;
}

.inner-page {
    padding-top: 1.2rem;
}

.breadcrumb-zuo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    color: #0f172a;
    white-space: nowrap;
}

.breadcrumb-zuo a {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(52, 103, 255, 0.08);
}

.breadcrumb-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(7, 18, 36, 0.05);
}

.inner-page-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inner-page-head .breadcrumb-bar {
    margin-bottom: 0;
}

.inner-page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    margin: 0;
}

.inner-hero {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inner-hero p {
    margin: 1rem 0 0;
    color: #738296;
    max-width: 760px;
}

.inner-hero-meta {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.inner-hero-meta span {
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: var(--front-panel-soft);
    color: #68788d;
}

.subnav-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding: 1.1rem 1.2rem;
}

.subnav-panel a {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(52, 103, 255, 0.08);
}

.inner-content-grid,
.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.72fr);
    gap: 1.4rem;
}

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

.detail-cover,
.detail-gallery img {
    border-radius: 24px;
    overflow: hidden;
}

.detail-cover {
    margin: 1.25rem 0;
}

.detail-cover img {
    display: block;
    max-width: 100%;
    max-height: 440px;
    border-radius: 24px;
    margin: 0 auto;
}

.detail-summary {
    margin-bottom: 1.3rem;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(52, 103, 255, 0.06);
    color: #4f627b;
    font-size: 0.92rem;
    line-height: 1.7;
    border-left: 3px solid var(--front-primary, #3467ff);
}

.detail-summary::before {
    content: '摘要';
    display: inline-block;
    margin-bottom: 0.35rem;
    padding: 0.12rem 0.55rem;
    border-radius: 4px;
    background: var(--front-primary, #3467ff);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* ---------- 按钮 ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.45rem 1.0rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.0;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--front-primary, #3467ff);
    color: #fff;
    border-color: var(--front-primary, #3467ff);
}

.btn-primary:hover {
    background: #244dd0;
    border-color: #244dd0;
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    color: var(--front-primary, #3467ff);
    border-color: var(--front-primary, #3467ff);
}

.btn-outline-primary:hover {
    background: var(--front-primary, #3467ff);
    color: #fff;
}

.btn-outline-secondary {
    background: transparent;
    color: #64748b;
    border-color: rgba(148, 163, 184, 0.35);
}

.btn-outline-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
    color: #334155;
}

.btn-sm {
    padding: 0.32rem 0.75rem;
    font-size: 0.8rem;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.detail-actions .btn {
    border-radius: 999px;
    padding: 0.65rem 1.8rem;
}

.detail-body {
    color: #49596d;
}

.detail-body p {
    margin: 0 0 1rem;
    text-indent: 2em;
}

.detail-body ul,
.detail-body ol {
    margin: 0.6rem 0 1.2rem;
    padding-left: 1.5rem;
}

.detail-body li {
    margin-bottom: 0.45rem;
    line-height: 1.7;
}

.detail-body li::marker {
    color: var(--front-primary, #3467ff);
}

.detail-body ul {
    list-style-type: disc;
}

.detail-body ol {
    list-style-type: decimal;
}

/* ---------- FAQ 问答区块 ---------- */
.faq {
    margin: 1.8rem 0;
}

.faq dt,
.faq h3,
.faq h4,
.faq h5 {
    position: relative;
    margin: 0 0 0.3rem;
    padding: 0.7rem 1rem 0.7rem 2rem;
    border-radius: 10px;
    background: #f8fafc;
    color: var(--front-title);
    font-size: 1rem;
    font-weight: 700;
    cursor: default;
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.faq dt::before,
.faq h3::before,
.faq h4::before,
.faq h5::before {
    content: 'Q';
    position: absolute;
    left: 0.75rem;
    top: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 4px;
    background: var(--front-primary, #3467ff);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

.faq dd,
.faq p {
    margin: 0 0 1rem;
    padding: 0.5rem 1rem 0.5rem 2rem;
    color: #49596d;
    font-size: 0.95rem;
    line-height: 1.75;
}

.faq dd:last-child,
.faq p:last-child {
    margin-bottom: 0;
}

/* ---------- 作者信息卡片 ---------- */
.detail-author-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.8rem;
    padding: 1.2rem 1.3rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.15);
}

.detail-author-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(52, 103, 255, 0.2);
}

.detail-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-author-info {
    flex: 1 1 auto;
    min-width: 0;
}

.detail-author-name {
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--front-title);
}

.detail-author-bio {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.65;
}

.article-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
    margin-bottom: 1rem;
    color: #8b97a7;
    font-size: 0.92rem;
    line-height: 1.8;
}

.article-meta-line span {
    white-space: nowrap;
}

.detail-body img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1.25rem auto;
    border-radius: 18px;
}

.detail-body H2 ,.detail-body H3 ,.detail-body H4 {
    margin: 1.2rem 0;
    font-size: 1.16rem;
}

.detail-body figure {
    margin: 1.4rem 0;
}

.detail-body figure img {
    margin: 0 auto;
}

.detail-body figcaption {
    margin-top: 0.75rem;
    color: #7f8ca0;
    font-size: 0.9rem;
    text-align: center;
}

.detail-disclaimer,
.detail-neighbors {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 14px 26px rgba(7, 18, 36, 0.04);
}

.detail-disclaimer {
    color: #6d7a8c;
    line-height: 1.8;
}

.detail-neighbors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.detail-neighbor-item {
    min-width: 0;
}

.detail-neighbor-item span {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #7f8ca0;
    font-size: 0.82rem;
}

.detail-neighbor-item a,
.detail-neighbor-item strong {
    display: block;
    color: #1b2537;
    line-height: 1.7;
    word-break: break-word;
}

.detail-related-section {
    margin-top: 1.7rem;
}

.detail-related-section h2 {
    margin: 0 0 1rem;
    color: var(--front-title);
    font-size: 1.3rem;
}

.related-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.related-article-card {
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 14px 26px rgba(7, 18, 36, 0.04);
}

.related-article-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.06rem;
}

.related-article-card h3 a {
    color: var(--front-title);
}

.related-article-card p {
    margin: 0 0 0.8rem;
    color: #738296;
}

.related-article-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.related-article-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.55rem;
    overflow: hidden;
    min-width: 0;
    flex-shrink: 1;
}

.related-article-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.72rem;
    border-radius: 999px;
    background: rgba(52, 103, 255, 0.08);
    color: var(--front-primary);
    font-size: 0.78rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.related-article-time {
    color: #8b97a7;
    font-size: 0.84rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.detail-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.side-link {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    color: var(--front-title);
}

.side-link:last-child {
    border-bottom: 0;
}

.software-side-item {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    color: inherit;
}

.software-side-item:last-child {
    border-bottom: 0;
}

.software-side-item strong,
.software-side-item span,
.software-side-item small {
    display: block;
}

.software-side-item strong {
    color: var(--front-title);
    line-height: 1.7;
}

.software-side-item span {
    margin-top: 0.35rem;
    color: #8b97a7;
    font-size: 0.84rem;
}

.software-side-item small {
    margin-top: 0.45rem;
    color: #738296;
    line-height: 1.7;
}

.spec-list {
    display: grid;
    gap: 0.75rem;
}

.spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: var(--front-panel-soft);
}

.spec-list strong {
    color: var(--front-title);
}

.search-hero {
    margin-bottom: 1.2rem;
}

.search-form-inline {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.search-results {
    display: grid;
    gap: 1rem;
}

.search-item {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1.2rem;
}

.search-item-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 22px;
}

.site-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.5rem 0;
}

.site-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.7rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
}

.site-pagination a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
}

.site-pagination a.is-active {
    background: linear-gradient(135deg, #3e69ff, #2149c3);
    border-color: #315dff;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(49, 93, 255, 0.35);
}

.site-pagination a.is-active:hover {
    background: linear-gradient(135deg, #3158f0, #1a3ea8);
    border-color: #2149c3;
    color: #fff;
}

.site-pagination .pagination-prev,
.site-pagination .pagination-next,
.site-pagination .pagination-first,
.site-pagination .pagination-last {
    font-weight: 600;
    min-width: auto;
    padding: 0 0.85rem;
}

.site-pagination .pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    user-select: none;
}

.site-pagination .pagination-info {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 0.5rem;
    color: #94a3b8;
    font-size: 0.82rem;
    white-space: nowrap;
    margin-left: 0.25rem;
}

.empty-box {
    padding: 1.3rem 1.4rem;
    color: #718195;
}

.front-footer {
    margin-top: 0;
    padding: 1.8rem 0 1.1rem;
    background: #f3f4f6;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    color: #6f7d90;
}

.front-footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.6rem;
}

.front-footer-content {
    flex: 1;
    min-width: 0;
}

.front-footer-title {
    color: #3a4758;
    font-size: 1rem;
    font-weight: 700;
}

.front-footer-columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.front-footer-column {
    min-width: 0;
}

.front-footer-column .front-footer-title {
    margin-bottom: 1rem;
    font-size: 0.96rem;
}

.front-footer-column .front-footer-title a {
    color: #3a4758;
}

.front-footer-column .front-footer-title a:hover {
    color: #08a8f6;
}

.front-footer-toggle {
    display: none;
}

.front-footer-links {
    display: grid;
    gap: 0.72rem;
}

.front-footer-friends {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.front-footer-friend-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.15rem;
    margin-top: 0.85rem;
}

.front-footer-friend-links a,
.front-footer-friend-links span {
    color: #7a8798;
    font-size: 0.88rem;
}

.front-footer-friend-links a:hover {
    color: #08a8f6;
}

.front-footer-qrcode {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    text-align: center;
}

.front-footer-qrcode img {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.16);
    object-fit: cover;
}

.front-footer-qrcode span {
    color: #7a8798;
    font-size: 0.85rem;
}

.front-footer-links a,
.front-footer-bottom-links a,
.front-footer-bottom-meta span {
    color: #7a8798;
    font-size: 0.88rem;
}

.front-footer-links a:hover,
.front-footer-bottom-links a:hover {
    color: #08a8f6;
}

.front-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.front-footer-bottom-contact-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    color: #7a8798;
    font-size: 0.88rem;
}

.front-footer-bottom-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: #7a8798;
    font-size: 0.88rem;
}

.front-footer-bottom-legal a {
    color: #7a8798;
}

.front-footer-bottom-legal a:hover {
    color: #08a8f6;
}

@media (max-width: 1199px) {
    .reference-story-grid,
    .reference-story-collage {
        grid-template-columns: 1fr;
    }

    .reference-collage-large {
        grid-row: auto;
    }

    .hero-slider-shell,
    .inner-content-grid,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .front-footer-main {
        flex-direction: column;
    }

    .front-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .front-footer-qrcode {
        align-items: flex-start;
        text-align: left;
    }

    .home-quick-entry {
        margin-top: 1.4rem;
    }
}

@media (max-width: 991px) {
    .front-nav-item {
        width: 100%;
    }

    .front-subnav {
        position: static;
        display: block;
        min-width: 0;
        margin-top: 0.15rem;
        padding: 0.2rem 0 0.55rem 1rem;
        background: transparent;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .front-subnav a {
        padding: 0.58rem 0.75rem;
    }

    .reference-hero-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-strip-content,
    .reference-strip-position-right .reference-strip-content,
    .reference-strip-position-center .reference-strip-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        padding: 1.8rem;
        align-items: flex-start;
        text-align: left;
    }

    .front-nav-toggle {
        display: inline-flex;
    }

    .front-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0.85rem;
        background: rgba(255, 255, 255, 0.99);
        border-bottom: 1px solid rgba(148, 163, 184, 0.14);
        box-shadow: 0 12px 24px rgba(7, 18, 36, 0.06);
    }

    .front-nav.is-open {
        display: flex;
    }

    .front-header {
        position: relative;
    }

    .front-header-inner {
        flex-wrap: wrap;
        min-height: 82px;
        padding: 0.45rem 0;
    }

    .front-header-tools {
        display: none;
    }

    .front-header-subnav-shell {
        display: none;
    }

    .front-topline-inner,
    .section-heading,
    .inner-hero,
    .inner-page-head,
    .front-footer-bottom,
    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-item {
        grid-template-columns: 1fr;
    }

    /* 底部移动端折叠 */
    .front-footer-content {
        width: 100%;
    }

    .front-footer-column .front-footer-title,
    .front-footer-friends .front-footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.35rem 0;
    }

    .front-footer-column.is-open .front-footer-title,
    .front-footer-friends.is-open .front-footer-title {
        padding: 0.35rem 0;
    }

    .front-footer-column {
        border-bottom: 1px solid rgba(148, 163, 184, 0.14);
        margin-left: calc(var(--front-content-safe-edge, 1rem) * -1);
        margin-right: calc(var(--front-content-safe-edge, 1rem) * -1);
        padding-left: var(--front-content-safe-edge, 1rem);
        padding-right: var(--front-content-safe-edge, 1rem);
    }

    .front-footer-column:last-child {
        border-bottom: 0;
    }

    .front-footer-friends {
        margin-top: 0;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(148, 163, 184, 0.14);
        margin-left: calc(var(--front-content-safe-edge, 1rem) * -1);
        margin-right: calc(var(--front-content-safe-edge, 1rem) * -1);
        padding-left: var(--front-content-safe-edge, 1rem);
        padding-right: var(--front-content-safe-edge, 1rem);
    }

    .front-footer-friends .front-footer-title {
        font-size: 0.96rem;
    }

    .front-footer-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 31px;
        height: 25px;
        border: 0;
        background: transparent;
        color: #94a3b8;
        cursor: pointer;
        flex-shrink: 0;
        margin-left: auto;
    }

    .front-footer-links,
    .front-footer-friend-links {
        display: none;
    }

    .front-footer-column.is-open .front-footer-links {
        display: grid;
        padding-bottom: 0.75rem;
    }

    .front-footer-friends.is-open .front-footer-friend-links {
        display: flex;
    }

    .front-footer-columns {
        grid-template-columns: 1fr;
    }
}

/* ---------- 首页 FAQ 区块 ---------- */
.home-faq-section {
    padding: 3.5rem 0 2rem;
    background: #f8fafc;
    display: none;
}

.home-faq-header {
    margin-bottom: 1.6rem;
}

.home-faq-header h2 {
    position: relative;
    margin: 0;
    color: var(--front-title);
    font-size: 1.55rem;
    font-weight: 700;
    padding-left: 1rem;
}

.home-faq-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.3em;
    border-radius: 2px;
    background: var(--front-primary);
}

.home-faq-section .faq {
    max-width: 800px;
}

/* ---------- 首页最新软件 / 最新文章 ---------- */
.home-latest-section {
    padding: 3.5rem 0 2.5rem;
}

.home-latest-section + .home-latest-section {
    padding-top: 1rem;
}

.home-latest-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.home-latest-header h2 {
    position: relative;
    margin: 0;
    color: var(--front-title);
    font-size: 1.55rem;
    font-weight: 700;
    padding-left: 1rem;
}

.home-latest-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.3em;
    border-radius: 2px;
    background: var(--front-primary);
}

.home-latest-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-latest-more:hover {
    color: var(--front-primary);
}

/* ---------- 滚动卡片（最新软件） ---------- */
.home-latest-scroll-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.home-latest-scroll {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.4rem 0.2rem 0.8rem;
    scrollbar-width: none;
}

.home-latest-scroll::-webkit-scrollbar {
    display: none;
}

.home-latest-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--front-title);
    box-shadow: 0 4px 16px rgba(7, 18, 36, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(6px);
}

.home-latest-arrow:hover {
    background: var(--front-primary);
    color: #fff;
    border-color: var(--front-primary);
    box-shadow: 0 8px 24px rgba(52, 103, 255, 0.3);
}

.home-latest-arrow-left {
    left: -16px;
}

.home-latest-arrow-right {
    right: -16px;
}

.home-latest-scroll-card {
    flex: 0 0 252px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 2px 12px rgba(7, 18, 36, 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-latest-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(7, 18, 36, 0.1);
    border-color: rgba(52, 103, 255, 0.15);
}

.home-latest-scroll-img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.home-latest-scroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-latest-scroll-card:hover .home-latest-scroll-img img {
    transform: scale(1.05);
}

.home-latest-scroll-body {
    padding: 1rem 1.1rem 1.2rem;
}

.home-latest-scroll-body h3 {
    margin: 0.55rem 0 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--front-title);
}

.home-latest-scroll-body h3 a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-latest-scroll-body h3 a:hover {
    color: var(--front-primary);
}

.content-card-meta a,
.content-card-meta span {
    display: inline-block;
    padding: 0.2rem 0.58rem;
    border-radius: 6px;
    background: rgba(52, 103, 255, 0.07);
    color: var(--front-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.content-card-meta a:hover {
    background: rgba(52, 103, 255, 0.15);
}

/* ---------- 文章列表 ---------- */
.news-list-panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 2px 12px rgba(7, 18, 36, 0.04);
    padding: 0.8rem 1.4rem;
}

.news-list-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
    transition: padding-left 0.2s ease, background 0.2s ease;
    border-radius: 8px;
    margin: 0 -0.6rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.news-list-item:hover {
    background: rgba(52, 103, 255, 0.02);
    padding-left: 0.9rem;
}

.news-list-item:last-child {
    border-bottom: 0;
}

.news-list-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.news-list-item-category {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: rgba(52, 103, 255, 0.07);
    color: var(--front-primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.45rem;
    transition: background 0.2s ease;
}

a.news-list-item-category:hover {
    background: rgba(52, 103, 255, 0.15);
}

.news-list-item-date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 0.4rem 0.6rem;
    background: #f8fafc;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.2rem;
}

.news-list-item-meta {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.news-list-item-meta-cat {
    color: var(--front-link, #3467ff);
    text-decoration: none;
    font-weight: 500;
}

.news-list-item-meta-cat:hover {
    text-decoration: underline;
}

.news-list-item-meta-sep {
    color: #cbd5e1;
    user-select: none;
}

.home-articles-fold {
    display: none;
}

.home-articles-fold.is-expanded {
    display: flex;
}

.home-articles-toggle-wrap {
    text-align: center;
    padding-top: 0.8rem;
}

.home-articles-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #fff;
    color: var(--front-primary);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.home-articles-toggle:hover {
    background: rgba(52, 103, 255, 0.05);
    border-color: var(--front-primary);
}

@media (max-width: 767px) {
    .front-topline {
        display: none;
    }

    .breadcrumb-bar {
        display: none;
    }

    .inner-hero {
        display: none;
    }
    
    .reference-hero-nav ,.reference-story-stats {
        display: none;
    }
    
    .front-brand-logo {
        width: 88px;
        height: 48px;
    }

    .front-brand-copy small {
        display: none;
    }

    .front-footer-columns {
        grid-template-columns: 1fr;
    }

    .front-footer-qrcode img {
        width: 132px;
        height: 132px;
    }

    .reference-hero-stage,
    .reference-slide-copy {
        min-height: min(var(--reference-slide-height, 580px), 460px);
    }

    .reference-slide-copy,
    .reference-slide-position-left .reference-slide-copy,
    .reference-slide-position-right .reference-slide-copy {
        max-width: 100%;
        padding: 1.5rem;
    }

    .reference-slide-dots {
        bottom: 126px;
    }

    .reference-hero-nav {
        grid-template-columns: 1fr;
    }

    .reference-story-stats {
        grid-template-columns: 1fr;
    }

    .detail-neighbors {
        grid-template-columns: 1fr;
    }

    .article-meta-line span {
        white-space: normal;
    }

    .related-article-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider-stage {
        min-height: 440px;
    }

    .hero-slide-copy {
        padding: 1.5rem;
    }

    .hero-slide h1,
    .inner-hero h1,
    .detail-main h1,
    .search-hero h1 {
        font-size: 1.9rem;
    }

    .hero-metric-grid,
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .search-form-inline {
        flex-direction: column;
    }

    .home-latest-scroll-card {
        flex: 0 0 calc((100% - 1rem) / 2);
    }

    .home-latest-scroll {
        gap: 1rem;
    }

    .news-list-panel {
        padding: 0.5rem 0.8rem;
        border-radius: 10px;
    }

    .news-list-item {
        margin: 0 -0.3rem;
        padding-left: 0.3rem;
        padding-right: 0.3rem;
    }

    .news-list-item:hover {
        padding-left: 0.5rem;
    }

    .news-list-item-date {
        min-width: 48px;
        padding: 0.3rem 0.4rem;
        font-size: 0.72rem;
    }

    .home-latest-header h2 {
        font-size: 1.25rem;
    }
}
