:root {
    --blue-900: #0b2944;
    --blue-800: #123b60;
    --blue-700: #1d5f8f;
    --cyan-600: #1c8aa8;
    --gold: #b9893b;
    --green: #277b55;
    --ink: #172331;
    --text: #526171;
    --muted: #7d8997;
    --line: #dfe7f1;
    --soft: #f5f8fb;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(16, 45, 76, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); }
.muted { color: var(--muted); }
.hp { display: none !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { color: #fff; background: linear-gradient(135deg, var(--gold), #d0a55d); box-shadow: 0 12px 24px rgba(185, 137, 59, .24); }
.btn.light { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.btn.ghost { color: var(--blue-800); border-color: var(--line); background: #fff; }

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 80;
    top: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,0));
    border-bottom: 0;
    box-shadow: none;
    transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease;
}
.site-header.scrolled {
    background: rgba(8, 16, 30, .78);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
}
.header-inner {
    width: min(1120px, calc(100% - 40px));
    height: 72px;
    display: flex;
    align-items: center;
    gap: 70px;
}
.brand { width: 128px; flex: 0 0 auto; }
.brand img {
    max-height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(0,0,0,.36));
}
.main-nav {
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 52px;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.main-nav a {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    border: 0;
    border-radius: 0;
    color: rgba(255,255,255,.86);
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    transition: color .18s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,.42);
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: rgba(255,255,255,.92);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.main-nav a:hover {
    color: #fff;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}
.main-nav a.active {
    color: #fff;
}
.nav-toggle { display: none; width: 40px; height: 40px; border: 0; background: rgba(255,255,255,.12); border-radius: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: #fff; }

.hero-slider {
    position: relative;
    min-height: 820px;
    height: 100vh;
    max-height: none;
    overflow: hidden;
    background: var(--blue-900);
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-content { color: #fff; padding-top: 72px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(185,137,59,.55);
    border-radius: 6px;
    color: #e9c88a;
    background: rgba(10,28,48,.22);
    font-size: 12px;
    font-weight: 800;
}
.hero-content h1 {
    max-width: 930px;
    margin: 0 0 22px;
    font-size: 68px;
    line-height: 1.08;
    overflow-wrap: anywhere;
}
.hero-content p {
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 22px;
    overflow-wrap: anywhere;
}
.hero-slogan { margin-top: 22px; color: #f0d59d; font-size: 18px; font-weight: 800; overflow-wrap: anywhere; }
.hero-actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero-actions .btn {
    min-height: 52px;
    padding: 0 26px;
    font-size: 16px;
}
.slider-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 42px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.slider-dots button {
    width: 54px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(255,255,255,.38);
}
.slider-dots button.active { background: var(--gold); }

.section { padding: 78px 0; }
.section.soft { background: var(--soft); }
.section-title { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-title span { color: var(--gold); font-size: 13px; font-weight: 900; }
.section-title h2 { margin: 8px 0 10px; font-size: 34px; line-height: 1.25; }
.section-title p { margin: 0; color: var(--text); }

.stats-band {
    position: relative;
    z-index: 5;
    margin-top: 22px;
    padding: 0 0 54px;
    background: #f6f9fc;
}
.stats-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(285px, .72fr) minmax(0, 2fr);
    gap: 22px;
    align-items: center;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10,31,52,.98), rgba(18,59,96,.96) 54%, rgba(9,38,61,.98)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 110px);
    box-shadow: 0 24px 70px rgba(16,45,76,.18);
}
.stats-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #e4bf78 45%, rgba(255,255,255,.2));
}
.stats-lead {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 148px;
    padding: 18px 24px 4px 0;
    border-right: 1px solid rgba(255,255,255,.13);
}
.stats-lead span {
    color: #e8c783;
    font-size: 12px;
    font-weight: 900;
}
.stats-lead strong {
    display: block;
    margin: 34px 0 14px;
    font-size: 28px;
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: break-all;
}
.stats-lead p {
    margin: 0;
    color: rgba(255,255,255,.74);
    overflow-wrap: anywhere;
    word-break: break-all;
}
.stats-grid {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.stats-card {
    position: relative;
    min-width: 0;
    min-height: 148px;
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 34px 18px 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.stats-card::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 18px;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold);
}
.stats-card strong {
    display: block;
    color: #fff;
    font-size: clamp(44px, 3.45vw, 50px);
    line-height: 1;
    white-space: nowrap;
}
.stats-card span {
    color: rgba(255,255,255,.78);
    font-weight: 800;
}

.advantage-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,250,252,.98)),
        repeating-linear-gradient(90deg, rgba(29,95,143,.06) 0 1px, transparent 1px 86px);
}
.advantage-layout {
    display: grid;
    grid-template-columns: .85fr 1.5fr;
    gap: 26px;
    align-items: stretch;
}
.advantage-lead {
    min-height: 100%;
    padding: 34px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(11,41,68,.96), rgba(29,95,143,.92)),
        url("../images/banner-about.jpg") center / cover;
    box-shadow: var(--shadow);
}
.advantage-lead h2 {
    margin: 18px 0 14px;
    font-size: 34px;
    line-height: 1.22;
}
.advantage-lead p {
    margin: 0;
    color: rgba(255,255,255,.82);
}
.advantage-proof {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}
.advantage-proof strong {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 14px;
}
.advantage-grid {
    counter-reset: advantage;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.enable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.enable-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}
.enable-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(29,95,143,.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(29,95,143,.04) 1px, transparent 1px);
    background-size: 74px 74px;
    pointer-events: none;
}
.enable-section .container {
    position: relative;
    z-index: 1;
}
.enable-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: -8px 0 30px;
    padding: 18px;
    border: 1px solid #d8e4ef;
    border-radius: 8px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 14px 36px rgba(16,45,76,.08);
}
.enable-flow::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185,137,59,.55), transparent);
}
.enable-flow div {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(216,228,239,.9);
}
.enable-flow strong {
    color: var(--gold);
    font-size: 18px;
    font-weight: 900;
}
.enable-flow span {
    color: var(--blue-800);
    font-weight: 900;
}
.advantage-card, .enable-card {
    position: relative;
    min-height: 150px;
    padding: 26px 20px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.advantage-card {
    counter-increment: advantage;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(16,45,76,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.advantage-card::before {
    content: counter(advantage, decimal-leading-zero);
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-800), var(--cyan-600));
    font-weight: 900;
    line-height: 1;
}
.advantage-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(185,137,59,.28);
    transform: rotate(28deg);
}
.advantage-card:hover {
    transform: translateY(-4px);
    border-color: #c3d4e6;
    box-shadow: 0 22px 46px rgba(16,45,76,.12);
}
.advantage-card b, .enable-card h3 { display: block; margin-bottom: 8px; color: var(--blue-800); font-size: 18px; }
.advantage-card p, .enable-card p { margin: 0; color: var(--text); }
.enable-card {
    min-height: 178px;
    padding: 28px 24px 24px;
    overflow: hidden;
    border-color: #d8e4ef;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,253,255,.94)),
        linear-gradient(135deg, rgba(29,95,143,.1), rgba(185,137,59,.1));
    box-shadow: 0 10px 28px rgba(16,45,76,.06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.enable-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 22px;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--blue-700), var(--gold));
}
.enable-card::after {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    border: 1px solid rgba(29,95,143,.12);
    transform: rotate(18deg);
}
.enable-card em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 30px;
    margin-bottom: 20px;
    border-radius: 6px;
    color: #fff;
    background: var(--blue-800);
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
}
.enable-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}
.enable-card:hover {
    transform: translateY(-4px);
    border-color: #c6d7e8;
    box-shadow: 0 22px 48px rgba(16,45,76,.12);
}

.modes-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f5f8fb 0%, #eef4f9 100%);
}
.mode-route {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: -10px auto 30px;
}
.mode-route span {
    min-height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid #d7e1ec;
    border-radius: 8px;
    color: var(--blue-800);
    background: rgba(255,255,255,.72);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(16,45,76,.05);
}
.mode-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mode-card {
    position: relative;
    min-height: 205px;
    padding: 24px 24px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, rgba(29,95,143,.28), rgba(185,137,59,.3)) border-box;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mode-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-700), var(--gold));
}
.mode-card::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 18px;
    width: 34px;
    height: 12px;
    border-right: 2px solid rgba(29,95,143,.3);
    border-bottom: 2px solid rgba(29,95,143,.3);
    transform: skewX(-24deg);
    transition: transform .2s ease, border-color .2s ease;
}
.mode-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c8d7e6; }
.mode-card:hover::after {
    transform: translateX(4px) skewX(-24deg);
    border-color: rgba(185,137,59,.7);
}
.mode-card em {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(29,95,143,.12);
    font-style: normal;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}
.mode-card span, .detail-card span { color: var(--gold); font-size: 13px; font-weight: 900; }
.mode-card h3 { max-width: 82%; margin: 14px 0 12px; color: var(--blue-800); font-size: 20px; line-height: 1.35; }
.mode-card p { margin: 0; color: var(--text); }
.mode-card small {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: var(--gold);
    font-weight: 900;
}

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(16,45,76,.06);
}
.case-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e9eef5; }
.case-card div { padding: 18px; }
.case-card span { color: var(--gold); font-weight: 800; font-size: 13px; }
.case-card h3 { margin: 8px 0 8px; font-size: 18px; line-height: 1.35; }
.case-card p { margin: 0; color: var(--text); }
.case-highlight { margin-top: 10px !important; padding-top: 10px; border-top: 1px solid var(--line); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #e9eef5; }
.news-card div { padding: 18px; }
.news-card span { color: var(--gold); font-weight: 800; font-size: 13px; }
.news-card h3 { margin: 8px 0; font-size: 19px; line-height: 1.38; }
.news-card p { margin: 0; color: var(--text); }

.home-showcase-section {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
}
.home-showcase-dark {
    color: #fff;
    background: #12161c;
}
.home-showcase-light {
    background: #fff;
}
.home-showcase-warm {
    background: #f2eee8;
}
.home-showcase-title {
    max-width: 680px;
    margin: 0 auto 34px;
    text-align: center;
}
.home-showcase-title span {
    display: block;
    color: #ef4059;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}
.home-showcase-title h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.22;
}
.home-showcase-dark .home-showcase-title h2 {
    color: #fff;
}
.home-showcase-title p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
}
.home-showcase-dark .home-showcase-title p {
    color: rgba(255,255,255,.72);
}
.home-feature-grid,
.home-store-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.home-store-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: -8px 0 30px;
}
.home-store-tabs button {
    position: relative;
    min-width: 0;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #4e5d71;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: color .18s ease;
}
.home-store-tabs button + button::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    margin: 0 16px;
    vertical-align: middle;
    background: #d8dfe8;
}
.home-store-tabs button:hover,
.home-store-tabs button.active {
    color: #ef4059;
    background: transparent;
}
.home-store-more {
    width: min(340px, 100%);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 42px auto 0;
    color: #fff;
    background: #565656;
    font-weight: 800;
}
.home-store-more:hover {
    color: #fff;
    background: var(--blue-800);
}
.home-image-card {
    position: relative;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0,0,0,.16);
    transform: translateZ(0);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-image-card:hover {
    z-index: 2;
    transform: translateY(-14px) scale(1.05);
    border-color: rgba(239,64,89,.42);
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.home-image-card a {
    display: block;
}
.home-image-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #1a1e25;
    transform: scale(1);
    transition: transform .42s ease, filter .42s ease;
}
.home-image-card:hover img {
    transform: scale(1.12);
    filter: saturate(1.08) contrast(1.04);
}
.home-image-card div {
    min-height: 148px;
    padding: 22px 24px 24px;
}
.home-image-card span {
    display: block;
    color: #ef4059;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.home-image-card h3 {
    margin: 8px 0 10px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.35;
}
.home-image-card p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}
.home-showcase-dark .home-image-card {
    background: #fff;
}
.light-card {
    border-color: #e2dfd8;
    box-shadow: 0 12px 30px rgba(20,30,45,.08);
}
.home-join-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.home-join-card {
    position: relative;
    min-height: 156px;
    padding: 26px 28px 24px;
    border: 1px solid #ded8ce;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 36px rgba(60,45,28,.08);
    transform: translateZ(0);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}
.home-join-card:hover,
.home-join-card:focus-visible {
    z-index: 2;
    transform: translateY(-12px) scale(1.045);
    border-color: rgba(239,64,89,.46);
    background: #fff;
    box-shadow: 0 30px 72px rgba(60,45,28,.22);
}
.home-join-card span {
    display: block;
    color: #ef4059;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.home-join-card strong {
    position: absolute;
    top: 20px;
    right: 26px;
    color: rgba(239,64,89,.18);
    font-size: 32px;
    line-height: 1;
}
.home-join-card h3 {
    margin: 18px 0 10px;
    color: var(--ink);
    font-size: 20px;
}
.home-join-card p {
    margin: 0;
    color: var(--text);
}

.home-news-section {
    padding: 88px 0 72px;
    background: #e9e9e9;
}
.home-news-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}
.home-news-head h2 {
    margin: 0 0 12px;
    color: #151b22;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 500;
}
.home-news-head p {
    margin: 0;
    color: #515a63;
    font-size: 16px;
}
.home-news-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 22px;
    color: #59636e;
    font-size: 15px;
}
.home-news-tabs button {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 4px;
    border: 0;
    background: transparent;
    color: #59636e;
    font: inherit;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}
.home-news-tabs button + button::before {
    content: "";
    width: 34px;
    height: 1px;
    margin: 0 18px;
    background: #bfc4c8;
}
.home-news-tabs button:hover,
.home-news-tabs button.active {
    color: #0874c9;
    transform: translateY(-2px);
}
.home-news-layout {
    display: grid;
    grid-template-columns: minmax(360px, .86fr) minmax(0, 1.3fr);
    gap: 18px;
    align-items: stretch;
}
.home-news-panel {
    display: none;
}
.home-news-panel.active {
    display: grid;
    animation: newsPanelIn .24s ease both;
}
@keyframes newsPanelIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.home-news-feature {
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}
.home-news-feature:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 26px 60px rgba(20,30,45,.18);
}
.home-news-feature a {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: 42px;
}
.home-news-feature img {
    width: 100%;
    aspect-ratio: 16 / 10.5;
    object-fit: cover;
    background: #d7d7d7;
    transition: transform .38s ease, filter .38s ease;
}
.home-news-feature:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.03);
}
.home-news-feature-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 24px;
    align-items: start;
    margin-top: 28px;
}
.home-news-feature h3,
.home-news-item h3 {
    margin: 0 0 12px;
    color: #071523;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 500;
}
.home-news-feature p,
.home-news-item p {
    margin: 0;
    color: #64707b;
    line-height: 1.78;
}
.home-news-feature time {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-left: auto;
    color: #fff;
    background: #0874c9;
}
.home-news-feature time strong,
.home-news-item time strong {
    display: block;
    font-size: 44px;
    line-height: .9;
    font-weight: 400;
}
.home-news-feature time span,
.home-news-item time span {
    display: block;
    font-size: 14px;
}
.home-news-list {
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
}
.home-news-item {
    position: relative;
    min-height: 112px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 22px 34px;
    border-bottom: 1px solid #d7d7d7;
    transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.home-news-item:hover {
    z-index: 2;
    transform: translateX(8px) scale(1.01);
    background: #f8fbff;
    box-shadow: 0 14px 34px rgba(20,30,45,.13);
}
.home-news-item:last-child { border-bottom: 0; }
.home-news-item time {
    color: #143a56;
    text-align: center;
}
.home-news-item time span {
    color: #071523;
}
.home-news-item h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.home-news-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
}
.home-news-more {
    width: min(380px, 100%);
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
    color: #fff;
    background: #565656;
    font-weight: 700;
}

.sub-hero {
    min-height: 360px;
    display: grid;
    align-items: center;
    padding-top: 72px;
    color: #fff;
    background-position: center;
    background-size: cover;
}
.sub-hero h1 { margin: 14px 0 10px; font-size: 44px; line-height: 1.18; }
.sub-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.86); font-size: 18px; }
.page-intro-section {
    position: relative;
    z-index: 2;
    padding: 0 0 18px;
    background: #fff;
}
.page-intro-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, .42fr);
    gap: 28px;
    align-items: center;
    margin-top: -38px;
    padding: 26px 30px;
    border: 1px solid #dce6ef;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #fff 0%, #fbfdff 68%, #f5f9fc 100%);
    box-shadow: 0 18px 44px rgba(16,45,76,.1);
}
.page-intro-card::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 78px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--gold), #d9b470);
}
.page-intro-text {
    max-width: 820px;
    font-size: 16px;
    line-height: 1.9;
}
.page-intro-text > *:first-child { margin-top: 0; }
.page-intro-text > *:last-child { margin-bottom: 0; }
.page-intro-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.page-intro-tags span {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    color: var(--blue-800);
    background: #f3f7fb;
    font-size: 14px;
    font-weight: 900;
}
.page-intro-section + .section {
    padding-top: 38px;
}
.page-intro-split-section {
    padding: 38px 0 24px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.page-intro-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.page-intro-panel {
    position: relative;
    min-height: 218px;
    padding: 32px 34px;
    border: 1px solid #dfe7f1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(16,45,76,.06);
}
.page-intro-panel:first-child {
    background: #f7f9fb;
}
.page-intro-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--blue-800), rgba(185,137,59,.8));
}
.intro-panel-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.intro-panel-head span {
    width: 42px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    background: var(--blue-800);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}
.page-intro-panel:nth-child(2) .intro-panel-head span {
    background: #b9893b;
}
.intro-panel-head h2 {
    margin: 0;
    color: var(--blue-900);
    font-size: 26px;
    line-height: 1.25;
}
.page-intro-panel p {
    margin: 0;
    color: #415268;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 600;
}
.page-intro-split-section + .section {
    padding-top: 34px;
}
.rich-text { color: var(--text); font-size: 17px; line-height: 1.92; }
.rich-text h2, .rich-text h3 {
    color: var(--ink);
    letter-spacing: 0;
}
.rich-text h2 {
    position: relative;
    margin: 42px 0 18px;
    padding-left: 16px;
    font-size: 26px;
    line-height: 1.36;
}
.rich-text h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: .28em;
    width: 4px;
    height: 1.05em;
    border-radius: 3px;
    background: linear-gradient(180deg, #d7a24d, #1d5f8f);
}
.rich-text h3 { margin: 30px 0 14px; font-size: 21px; line-height: 1.4; }
.rich-text p { margin: 0 0 22px; }
.rich-text ul, .rich-text ol {
    margin: 0 0 24px;
    padding-left: 1.35em;
}
.rich-text li { margin: 8px 0; padding-left: 4px; }
.rich-text strong { color: var(--ink); }

.three-grid, .enable-detail-grid, .honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.three-grid div, .enable-detail-grid article, .honor-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.three-grid h3, .enable-detail-grid h2, .honor-card h3 { margin: 0 0 10px; color: var(--blue-800); }
.three-grid p, .enable-detail-grid p, .honor-card p { margin: 0; color: var(--text); }

.mode-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detail-card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 10px 30px rgba(16,45,76,.05); }
.detail-card h2 { margin: 8px 0 18px; color: var(--blue-800); }
.detail-card dl { margin: 0; display: grid; gap: 12px; }
.detail-card dt { font-weight: 900; color: var(--ink); }
.detail-card dd { margin: -8px 0 0; color: var(--text); }

.franchise-page {
    background: #fff;
}
.franchise-hero {
    min-height: 560px;
    display: grid;
    align-items: center;
    padding-top: 72px;
    color: #fff;
    background-position: center;
    background-size: cover;
}
.franchise-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 48px;
    align-items: center;
}
.franchise-hero-copy {
    max-width: 780px;
}
.franchise-hero-copy > span,
.franchise-fit-copy > span,
.franchise-support-lead > span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 6px;
    color: #ffd98f;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,217,143,.36);
    font-size: 13px;
    font-weight: 900;
}
.franchise-hero-copy h1 {
    margin: 18px 0 18px;
    font-size: 58px;
    line-height: 1.12;
    letter-spacing: 0;
}
.franchise-hero-copy p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 19px;
    line-height: 1.9;
}
.franchise-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.franchise-hero-actions .btn {
    min-height: 50px;
    padding: 0 24px;
}
.franchise-hero-panel {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    background: rgba(7,29,49,.58);
    box-shadow: 0 22px 60px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
}
.franchise-hero-panel strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.35;
}
.franchise-hero-panel ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}
.franchise-hero-panel li {
    position: relative;
    padding-left: 20px;
    color: rgba(255,255,255,.84);
    font-weight: 800;
}
.franchise-hero-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d2a04a;
}
.franchise-fit-section {
    background:
        linear-gradient(180deg, #fff 0%, #f7fafc 100%);
}
.franchise-fit-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}
.franchise-fit-copy > span,
.franchise-support-lead > span {
    color: var(--gold);
    background: #fff7e8;
    border-color: #f0ddbd;
}
.franchise-fit-copy h2,
.franchise-support-lead h2 {
    margin: 16px 0 14px;
    color: var(--blue-900);
    font-size: 38px;
    line-height: 1.22;
}
.franchise-fit-copy > p,
.franchise-support-lead > p {
    margin: 0;
    color: var(--text);
    font-size: 17px;
    line-height: 1.9;
}
.franchise-page-note {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 4px solid var(--gold);
    background: #fff;
    box-shadow: 0 10px 28px rgba(16,45,76,.06);
}
.franchise-page-note p:last-child {
    margin-bottom: 0;
}
.franchise-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.franchise-fit-grid article,
.franchise-mode-grid article,
.franchise-support-grid article,
.franchise-process article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}
.franchise-fit-grid article {
    min-height: 174px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(16,45,76,.06);
}
.franchise-fit-grid h3,
.franchise-mode-grid h3,
.franchise-support-grid h3,
.franchise-process h3 {
    margin: 0 0 10px;
    color: var(--blue-800);
    line-height: 1.36;
}
.franchise-fit-grid h3 {
    font-size: 21px;
}
.franchise-fit-grid p,
.franchise-mode-grid p,
.franchise-support-grid p,
.franchise-process p {
    margin: 0;
    color: var(--text);
}
.franchise-process-section {
    background: #fff;
}
.franchise-process {
    counter-reset: franchise-step;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.franchise-process article {
    position: relative;
    min-height: 220px;
    padding: 26px 20px 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16,45,76,.05);
}
.franchise-process article::after {
    content: "";
    position: absolute;
    right: -18px;
    top: -18px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(185,137,59,.25);
    border-radius: 8px;
    transform: rotate(18deg);
}
.franchise-process strong {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    border-radius: 8px;
    color: #fff;
    background: var(--blue-800);
    font-size: 15px;
    line-height: 1;
}
.franchise-process h3 {
    font-size: 20px;
}
.franchise-modes-section {
    background:
        linear-gradient(180deg, #f5f8fb 0%, #eef4f9 100%);
}
.franchise-mode-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.franchise-mode-grid article {
    min-height: 206px;
    padding: 24px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.franchise-mode-grid article:hover {
    transform: translateY(-3px);
    border-color: #c6d7e8;
    box-shadow: 0 18px 42px rgba(16,45,76,.1);
}
.franchise-mode-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: #9a6d23;
    background: #fff6e5;
    font-size: 12px;
    font-weight: 900;
}
.franchise-mode-grid h3 {
    margin-top: 18px;
    font-size: 19px;
}
.franchise-support-section {
    background: #fff;
}
.franchise-support-layout {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.25fr);
    gap: 36px;
    align-items: start;
}
.franchise-support-lead {
    position: sticky;
    top: 110px;
    padding: 34px;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(11,41,68,.96), rgba(18,59,96,.94)),
        url("../images/official-store-01.jpg") center / cover;
    box-shadow: var(--shadow);
}
.franchise-support-lead > span {
    color: #ffd98f;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,217,143,.38);
}
.franchise-support-lead h2,
.franchise-support-lead > p {
    color: #fff;
}
.franchise-support-lead > p {
    color: rgba(255,255,255,.82);
}
.franchise-support-lead ul {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}
.franchise-support-lead li {
    position: relative;
    padding: 12px 14px 12px 32px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.86);
    font-weight: 800;
}
.franchise-support-lead li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 1.35em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d2a04a;
}
.franchise-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.franchise-support-grid article {
    min-height: 162px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(16,45,76,.05);
}
.franchise-support-grid h3 {
    font-size: 20px;
}

.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.filter-tabs button { height: 40px; padding: 0 18px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--text); font-weight: 700; }
.filter-tabs button.active { color: #fff; background: var(--blue-800); border-color: var(--blue-800); }

.faq-list { display: grid; gap: 14px; }
.faq-list details { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.faq-list summary { padding: 18px 20px; font-weight: 900; color: var(--blue-800); cursor: pointer; }
.faq-list p { margin: 0; padding: 0 20px 20px; color: var(--text); }

.geo-summary-section {
    padding: 44px 0 0;
    background: linear-gradient(180deg, #f5f8fb 0%, #fff 100%);
}
.geo-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 34px;
    align-items: stretch;
}
.geo-summary > div {
    padding: 34px 0;
}
.geo-summary span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}
.geo-summary h2 {
    margin: 8px 0 12px;
    font-size: 34px;
    line-height: 1.25;
}
.geo-summary p {
    max-width: 720px;
    margin: 0;
    color: var(--text);
    font-size: 17px;
}
.geo-summary ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16,45,76,.07);
    list-style: none;
}
.geo-summary li {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 6px;
    background: #eef5f8;
    color: var(--blue-800);
    font-weight: 900;
}
.geo-section {
    background: #fff;
}
.geo-category + .geo-category {
    margin-top: 30px;
}
.geo-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--line);
}
.geo-category-head span {
    color: var(--blue-900);
    font-size: 23px;
    font-weight: 900;
}
.geo-category-head strong {
    min-width: 38px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 6px;
    background: var(--blue-800);
    color: #fff;
    font-size: 15px;
}
.geo-answer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.geo-answer-card {
    min-height: 0;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(16,45,76,.045);
}
.geo-answer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.geo-answer-meta span,
.geo-answer-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 5px;
    background: #f2f6fa;
}
.geo-answer-meta a {
    color: var(--blue-800);
}
.geo-answer-card h3 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.34;
}
.geo-answer-card p {
    margin: 0;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.72;
}
.geo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}
.geo-keywords span {
    min-height: 24px;
    padding: 2px 8px;
    border: 1px solid #d8e4ef;
    border-radius: 5px;
    color: var(--green);
    background: #f6faf8;
    font-size: 12px;
    font-weight: 800;
}
.geo-empty {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: var(--text);
    text-align: center;
}

.jobs-section { background: #f3f5f7; }
.page-crumb {
    margin: -20px 0 26px;
    color: #697789;
    font-size: 14px;
}
.page-crumb a { color: var(--blue-800); font-weight: 800; }
.job-board {
    overflow: hidden;
    border: 1px solid #dfe5ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16,45,76,.07);
}
.job-head,
.job-item summary {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(140px, .7fr) minmax(130px, .6fr) minmax(120px, .55fr);
    align-items: center;
    gap: 22px;
}
.job-head {
    min-height: 68px;
    padding: 0 28px;
    color: var(--ink);
    background: #e6e6e6;
    font-size: 18px;
    font-weight: 900;
}
.job-item {
    border-top: 1px solid #e7edf3;
    background: #fff;
}
.job-item summary {
    min-height: 70px;
    padding: 0 28px;
    color: #405269;
    list-style: none;
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
}
.job-item summary::-webkit-details-marker { display: none; }
.job-item summary:hover { background: #f8fafc; }
.job-item[open] summary {
    color: #fff;
    background: #a71b14;
}
.job-title {
    color: inherit;
    font-size: 18px;
    font-weight: 900;
}
.job-salary,
.job-item time {
    color: inherit;
    font-weight: 800;
}
.job-more {
    position: relative;
    justify-self: end;
    padding-right: 18px;
    color: inherit;
    font-weight: 800;
}
.job-more::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-60%) rotate(45deg);
    transition: transform .18s ease;
}
.job-item[open] .job-more::after { transform: translateY(-35%) rotate(225deg); }
.job-detail {
    padding: 30px 30px 36px;
    color: #485a70;
    background: #fff;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.job-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--blue-800);
    background: #eef4f8;
    font-size: 14px;
    font-weight: 800;
}
.job-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}
.job-detail h3 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 18px;
}
.job-detail ol {
    margin: 0;
    padding-left: 1.3em;
}
.job-detail li {
    margin: 8px 0;
    line-height: 1.82;
}
.job-detail p { margin: 0; line-height: 1.8; }
.job-contact {
    margin: 0;
    padding: 16px 18px;
    border-left: 4px solid #c99a43;
    color: var(--ink);
    background: #fff8ea;
    font-weight: 800;
    line-height: 1.8;
}
.job-apply-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid #e9edf2;
    border-radius: 8px;
    background: #fffaf0;
}
.job-apply-box .job-contact {
    flex: 1 1 auto;
    align-self: center;
    background: transparent;
    padding-top: 8px;
    padding-bottom: 8px;
}
.job-apply-qr {
    flex: 0 0 132px;
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 10px;
    border: 1px solid #ead8b9;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}
.job-apply-qr img {
    width: 104px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
}
.job-apply-qr span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}
.job-empty {
    padding: 42px 28px;
    color: var(--text);
    text-align: center;
}

.honor-card { padding: 0; overflow: hidden; }
.honor-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #eef3f8; }
.honor-card div { padding: 20px; }

.article-hero { padding: 120px 0 58px; background: linear-gradient(135deg, var(--blue-900), #1a5f80); color: #fff; }
.article-hero span { color: #e9c88a; font-weight: 800; }
.article-hero h1 { margin: 12px 0; font-size: 42px; line-height: 1.22; }
.article-hero p { margin: 0; color: rgba(255,255,255,.82); }
.article-cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.article-body {
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 30px;
    color: #43566b;
    font-size: 18px;
    line-height: 2.05;
    text-align: justify;
    text-justify: inter-ideograph;
}
.article-body > *:first-child { margin-top: 0; }
.article-body p { margin-bottom: 24px; }

.contact-layout, .cta-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.contact-info, .contact-form-card, .cta-form {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(16,45,76,.06);
}
.contact-info h2, .contact-form-card h2 { margin-top: 0; color: var(--blue-800); }
.contact-qr { width: 150px; margin-top: 18px; border: 1px solid var(--line); padding: 8px; border-radius: 8px; }
.inquiry-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.inquiry-form label, .admin-form label, .login-card label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea,
.admin-form input, .admin-form select, .admin-form textarea,
.login-card input {
    width: 100%;
    border: 1px solid #ced9e5;
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
}
.inquiry-form input, .inquiry-form select, .admin-form input, .admin-form select, .login-card input { height: 44px; }
.form-alert, .admin-alert { margin-bottom: 16px; padding: 12px 14px; border-radius: 6px; }
.form-alert.ok, .admin-alert.ok { background: #edf9f0; color: #1d7430; border: 1px solid #c7ebcf; }
.form-alert.error, .admin-alert.error { background: #fff2f0; color: #9f1d12; border: 1px solid #ffd0c9; }
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7,40,68,.96), rgba(15,96,120,.92)),
        linear-gradient(90deg, rgba(233,200,138,.12), rgba(255,255,255,0));
}
.cta-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: .86fr 1.14fr;
    gap: 54px;
    align-items: center;
}
.cta-copy {
    max-width: 520px;
}
.cta-copy .eyebrow {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: #ffd98f;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,217,143,.42);
}
.cta-section h2 {
    margin: 18px 0 18px;
    font-size: 38px;
    line-height: 1.22;
}
.cta-section p {
    max-width: 520px;
    color: rgba(255,255,255,.84);
    font-size: 17px;
    line-height: 1.9;
}
.cta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.cta-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    font-size: 13px;
    font-weight: 800;
}
.cta-form {
    color: var(--ink);
    padding: 34px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 28px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 34px 80px rgba(0,0,0,.2);
}
.cta-form .inquiry-form {
    gap: 18px;
}
.cta-form .form-row {
    gap: 18px;
}
.cta-form .inquiry-form label {
    gap: 9px;
    font-size: 15px;
}
.cta-form .inquiry-form input,
.cta-form .inquiry-form select,
.cta-form .inquiry-form textarea {
    border-color: #d7e3ef;
    border-radius: 14px;
    background: #fbfdff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.cta-form .inquiry-form input,
.cta-form .inquiry-form select {
    height: 50px;
}
.cta-form .inquiry-form textarea {
    min-height: 132px;
}
.cta-form .inquiry-form input:focus,
.cta-form .inquiry-form select:focus,
.cta-form .inquiry-form textarea:focus {
    outline: 0;
    border-color: #c99a43;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201,154,67,.16);
}
.cta-form .btn.primary {
    min-height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d2a04a, #bd842e);
    box-shadow: 0 16px 30px rgba(189,132,46,.24);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.cta-form .btn.primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 20px 38px rgba(189,132,46,.32);
}

.site-footer {
    color: rgba(255,255,255,.78);
    background:
        linear-gradient(180deg, #112235 0%, #0f2032 100%);
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(190px, .58fr) minmax(405px, 1.14fr) minmax(500px, 1.4fr);
    gap: 30px;
    align-items: start;
    padding: 58px 0 52px;
}
.footer-brand-col { max-width: 250px; }
.footer-brand-col > p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    line-height: 1.75;
}
.footer-logo {
    width: 168px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 18px;
    object-fit: contain;
}
.site-footer h3 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 19px;
    line-height: 1.25;
}
.site-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    background: #c99a43;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
}
.footer-menu-block {
    display: grid;
    grid-template-columns: minmax(176px, .8fr) minmax(205px, 1fr);
    gap: 24px;
    min-width: 0;
}
.footer-menu-block > div,
.footer-contact-block > div {
    min-width: 0;
}
.footer-links a,
.footer-product-links a,
.footer-product-links span {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}
.footer-links a { white-space: nowrap; }
.footer-links a:hover { color: #fff; }
.footer-product-links {
    display: grid;
    gap: 11px;
}
.footer-product-links a,
.footer-product-links span {
    display: block;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
}
.footer-product-links a:hover { color: #fff; }
.footer-phone { color: #e9c88a; font-size: 24px; font-weight: 900; }
.footer-contact-block {
    display: grid;
    grid-template-columns: minmax(185px, .64fr) minmax(300px, 1fr);
    gap: 16px;
    align-items: start;
}
.footer-contact-main p {
    margin: 11px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 15.5px;
    line-height: 1.7;
}
.footer-contact-main p a { color: #fff; }
.footer-phone-list {
    display: grid;
    gap: 11px;
    margin: 0 0 18px;
}
.footer-phone-item {
    display: grid;
    gap: 4px;
    padding: 0;
    border-left: 0;
    text-decoration: none;
}
.footer-phone-item.is-primary {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-phone-item span {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    font-weight: 800;
}
.footer-phone-item strong {
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.16;
    white-space: nowrap;
    word-break: normal;
}
.footer-phone-item.is-primary strong {
    color: #e9c88a;
    font-size: 21px;
    font-weight: 900;
}
.footer-phone-item:hover strong { color: #fff; }
.risk { color: rgba(255,255,255,.56); font-size: 13px; }
.qr { width: 112px; padding: 8px; border-radius: 6px; background: #fff; }
.footer-qr-panel {
    min-width: 0;
    width: 100%;
}
.footer-qr-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(142px, 1fr));
    gap: 12px;
    max-width: 304px;
}
.footer-qr-card {
    min-width: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
    min-height: 170px;
    padding: 14px 10px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
    text-align: center;
}
.footer-qr-card img {
    width: min(128px, calc(100% - 8px));
    aspect-ratio: 1;
    object-fit: cover;
    padding: 7px;
    border-radius: 7px;
    background: #fff;
}
.footer-qr-card span {
    color: rgba(255,255,255,.86);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
    font-size: 13px;
}

.float-contact {
    position: fixed;
    right: 12px;
    bottom: 10%;
    z-index: 70;
    display: grid;
    width: 70px;
    border-radius: 6px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 3px 12px rgba(16,45,76,.16);
    border: 1px solid rgba(216,224,236,.72);
    overflow: visible;
}
.float-item {
    position: relative;
}
.float-top {
    display: none;
}
.float-top.is-visible {
    display: block;
}
.float-trigger {
    width: 68px;
    min-height: 78px;
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 11px 0 10px;
    border: 0;
    border-top: 1px solid #d8e0ec;
    background: transparent;
    color: #565d6d;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
}
.float-item:first-child .float-trigger {
    border-top: 0;
}
.float-trigger span {
    line-height: 1.2;
}
.float-icon,
.float-pop-icon {
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    font-style: normal;
    line-height: 1;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, #7cff66 0%, #11de31 58%, #06c926 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 8px 18px rgba(9,195,40,.24);
}
.float-pop-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    border-radius: 16px;
    background: linear-gradient(145deg, #7cff66 0%, #11de31 58%, #06c926 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 12px 24px rgba(9,195,40,.24);
}
.float-icon::before,
.float-pop-icon::before {
    content: "";
    width: 72%;
    height: 72%;
    background: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.float-icon-phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M47.8 42.5c-2.6-1.4-5.2-2.7-7.9-4-.8-.4-1.8-.2-2.4.4l-3.5 3.4c-.7.7-1.7.9-2.6.4-4.7-2.5-8.6-6.4-11.1-11.1-.5-.9-.3-1.9.4-2.6l3.4-3.5c.6-.7.8-1.6.4-2.4-1.3-2.7-2.6-5.3-4-7.9-.5-.9-1.5-1.3-2.5-1.1l-6.1 1.4c-1.2.3-2.1 1.4-2 2.7.8 19.2 16.2 34.6 35.4 35.4 1.3.1 2.4-.8 2.7-2l1.4-6.1c.2-1-.2-2-1.1-2.5z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M47.8 42.5c-2.6-1.4-5.2-2.7-7.9-4-.8-.4-1.8-.2-2.4.4l-3.5 3.4c-.7.7-1.7.9-2.6.4-4.7-2.5-8.6-6.4-11.1-11.1-.5-.9-.3-1.9.4-2.6l3.4-3.5c.6-.7.8-1.6.4-2.4-1.3-2.7-2.6-5.3-4-7.9-.5-.9-1.5-1.3-2.5-1.1l-6.1 1.4c-1.2.3-2.1 1.4-2 2.7.8 19.2 16.2 34.6 35.4 35.4 1.3.1 2.4-.8 2.7-2l1.4-6.1c.2-1-.2-2-1.1-2.5z'/%3E%3C/svg%3E");
}
.float-icon-wechat::before {
    width: 78%;
    height: 78%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.2 8C15.8 8 5 16.2 5 26.3c0 5.7 3.4 10.8 8.8 14.2L11.7 49l9.4-4.8c2.5.6 5.2 1 8.1 1h1.5c-.9-2-1.3-4.1-1.3-6.3 0-9.8 9.7-17.7 21.6-17.7 1.1 0 2.2.1 3.2.2C51.3 13.6 41.2 8 29.2 8zm-8.7 14.3a3.2 3.2 0 1 1 0 6.4 3.2 3.2 0 0 1 0-6.4zm17.5 0a3.2 3.2 0 1 1 0 6.4 3.2 3.2 0 0 1 0-6.4z'/%3E%3Cpath d='M51 25.4c-9.7 0-17.6 6.3-17.6 14.1S41.3 53.6 51 53.6c2.1 0 4.1-.3 5.9-.8l7.4 3.8-1.7-6.8c3.8-2.6 6-6.2 6-10.3 0-7.8-7.9-14.1-17.6-14.1zm-5.9 10.7a2.6 2.6 0 1 1 0 5.2 2.6 2.6 0 0 1 0-5.2zm12.7 0a2.6 2.6 0 1 1 0 5.2 2.6 2.6 0 0 1 0-5.2z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 72 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29.2 8C15.8 8 5 16.2 5 26.3c0 5.7 3.4 10.8 8.8 14.2L11.7 49l9.4-4.8c2.5.6 5.2 1 8.1 1h1.5c-.9-2-1.3-4.1-1.3-6.3 0-9.8 9.7-17.7 21.6-17.7 1.1 0 2.2.1 3.2.2C51.3 13.6 41.2 8 29.2 8zm-8.7 14.3a3.2 3.2 0 1 1 0 6.4 3.2 3.2 0 0 1 0-6.4zm17.5 0a3.2 3.2 0 1 1 0 6.4 3.2 3.2 0 0 1 0-6.4z'/%3E%3Cpath d='M51 25.4c-9.7 0-17.6 6.3-17.6 14.1S41.3 53.6 51 53.6c2.1 0 4.1-.3 5.9-.8l7.4 3.8-1.7-6.8c3.8-2.6 6-6.2 6-10.3 0-7.8-7.9-14.1-17.6-14.1zm-5.9 10.7a2.6 2.6 0 1 1 0 5.2 2.6 2.6 0 0 1 0-5.2zm12.7 0a2.6 2.6 0 1 1 0 5.2 2.6 2.6 0 0 1 0-5.2z'/%3E%3C/svg%3E");
}
.float-icon-top::before {
    width: 62%;
    height: 62%;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8 11.5 20.5l4.2 4.2 5.3-5.3V40h6V19.4l5.3 5.3 4.2-4.2L24 8z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8 11.5 20.5l4.2 4.2 5.3-5.3V40h6V19.4l5.3 5.3 4.2-4.2L24 8z'/%3E%3C/svg%3E");
}
.float-trigger:hover,
.float-trigger:focus-visible {
    color: #0e9d2e;
}
.float-trigger:hover .float-icon,
.float-trigger:focus-visible .float-icon {
    transform: scale(1.08);
    filter: saturate(1.08) brightness(1.03);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 12px 24px rgba(9,195,40,.32);
}
.float-pop {
    position: absolute;
    right: calc(100% + 18px);
    top: 50%;
    z-index: 71;
    opacity: 0;
    visibility: hidden;
    transform: translate(10px, -50%);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16,45,76,.18);
}
.float-pop::after {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 3px -3px 8px rgba(16,45,76,.05);
}
.float-item:hover .float-pop,
.float-item:focus-within .float-pop {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}
.float-phone-pop {
    width: 318px;
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
}
.float-phone-lines { display: grid; gap: 9px; min-width: 0; }
.float-phone-row {
    display: grid;
    gap: 2px;
    text-decoration: none;
}
.float-phone-row span {
    color: #52616f;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 800;
}
.float-phone-pop strong {
    display: block;
    color: #0b9f2a;
    font-size: 21px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
    word-break: keep-all;
}
.float-phone-row:hover strong { color: #07821f; }
.float-wechat-pop {
    width: 188px;
    padding: 16px;
    text-align: center;
}
.float-wechat-pop img {
    width: 146px;
    height: 146px;
    object-fit: cover;
    margin: 0 auto 9px;
    border: 1px solid var(--line);
    padding: 5px;
}
.float-wechat-pop p {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
}
.float-wechat-pop small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
}
.mobile-bar { display: none; }
.wechat-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 24, 38, .52);
}
.wechat-modal.open { display: flex; }
.wechat-panel { position: relative; width: min(360px, 100%); padding: 28px; border-radius: 8px; background: #fff; text-align: center; }
.wechat-panel img { width: 170px; margin: 14px auto; border: 1px solid var(--line); padding: 8px; border-radius: 8px; }
.modal-close { position: absolute; top: 8px; right: 10px; border: 0; background: transparent; font-size: 26px; color: var(--muted); }

.login-page {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 42px);
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,.68) 48%, rgba(255,255,255,.34)),
        linear-gradient(180deg, rgba(242,248,251,.3), rgba(242,248,251,.18)),
        var(--login-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.login-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.18);
    backdrop-filter: saturate(1.08);
    pointer-events: none;
}
.login-card {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    padding: 40px 34px 28px;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 28px 70px rgba(18, 45, 59, .16);
    text-align: center;
}
.login-avatar {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f4b719;
    box-shadow: 0 12px 32px rgba(10, 89, 75, .16);
    overflow: hidden;
}
.login-avatar img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin: 0;
}
.login-card h1 {
    margin: 0 0 8px;
    color: #1f2e2c;
    font-size: 24px;
    line-height: 1.28;
    font-weight: 900;
}
.login-card p {
    margin: 0 0 24px;
    color: #84939a;
    font-size: 14px;
    line-height: 1.7;
}
.login-card form { display: grid; gap: 14px; }
.login-card .admin-alert {
    margin: 0 0 16px;
    text-align: left;
    border-radius: 10px;
}
.login-field {
    position: relative;
    display: block;
    color: inherit;
    font-weight: inherit;
}
.login-field span {
    position: absolute;
    left: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8da0ae;
    transform: translateY(-50%);
    pointer-events: none;
}
.login-field.square span { border-radius: 1px; }
.login-field.diamond span {
    border-radius: 1px;
    transform: translateY(-50%) rotate(45deg);
}
.login-card .login-field input {
    height: 50px;
    padding: 0 16px 0 52px;
    border: 1px solid #dce7f1;
    border-radius: 10px;
    color: #273533;
    background: rgba(251,253,255,.92);
    font-size: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.login-card .login-field input::placeholder { color: #8d9aa5; }
.login-card .login-field input:focus {
    outline: 0;
    border-color: #8fc7bf;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 116, 100, .1);
}
.login-captcha-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 126px;
    gap: 12px;
}
.login-captcha {
    width: 126px;
    height: 50px;
    padding: 0;
    border: 1px solid #dce7f1;
    border-radius: 10px;
    overflow: hidden;
    background: #f6f9ff;
    cursor: pointer;
}
.login-captcha img {
    display: block;
    width: 126px;
    height: 50px;
    object-fit: cover;
}
.login-card .login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 22px;
    color: #6f7f86;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}
.login-card .login-remember input {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    flex: 0 0 16px;
    accent-color: #087466;
}
.login-submit {
    height: 48px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #0b7d6c, #04594f);
    box-shadow: 0 14px 26px rgba(5, 90, 80, .22);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.login-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 18px 32px rgba(5, 90, 80, .28);
}
.login-card small {
    display: block;
    margin-top: 22px;
    color: #98a4a9;
    font-size: 12px;
    font-weight: 700;
}
@media (max-width: 420px) {
    .login-card {
        padding: 32px 22px 24px;
        border-radius: 16px;
    }
    .login-card h1 { font-size: 20px; }
    .login-captcha-row {
        grid-template-columns: minmax(0, 1fr) 108px;
        gap: 10px;
    }
    .login-captcha,
    .login-captcha img {
        width: 108px;
    }
}

.admin-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 100vh;
    color: #333;
    background: #fff;
    font-size: 14px;
    line-height: 1.5;
}
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0;
    background: #3a404e;
    color: rgba(255,255,255,.76);
    box-shadow: inset -1px 0 0 rgba(0,0,0,.18);
}
.admin-brand {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 14px;
    margin: 0;
    background: #232730;
}
.admin-brand img { width: 118px; max-height: 38px; object-fit: contain; }
.admin-sidebar nav { display: grid; gap: 0; padding: 10px 0; }
.admin-sidebar a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px 0 26px;
    border-radius: 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    transition: background .16s ease, color .16s ease;
}
.admin-sidebar a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
}
.admin-sidebar a.active,
.admin-sidebar a:hover {
    color: #fff;
    background: #009688;
}
.admin-sidebar a.active::before {
    background: rgba(255,255,255,.82);
}
.admin-main { min-width: 0; padding: 0; background: #fff; }
.admin-topbar {
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0 22px;
    border: 0;
    border-radius: 0;
    color: rgba(255,255,255,.86);
    background: #232730;
    font-size: 13px;
}
.admin-actions { display: flex; gap: 22px; color: rgba(255,255,255,.82); font-weight: 600; }
.admin-actions a:hover { color: #fff; }
.admin-alert { margin: 16px 18px 0; border-radius: 0; }
.admin-panel {
    margin: 18px;
    padding: 0;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}
.admin-panel h1 {
    position: relative;
    margin: 0;
    padding: 14px 18px 12px;
    border-bottom: 1px solid #e7e7e7;
    color: #009688;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}
.admin-panel h1::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -1px;
    width: 76px;
    height: 2px;
    background: #009688;
}
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 18px;
}
.admin-stat-grid div {
    padding: 18px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: #f7f7f7;
    text-align: center;
}
.admin-stat-grid strong { display: block; color: #009688; font-size: 30px; font-weight: 400; }
.admin-stat-grid span { color: #777; }
.admin-note { margin: 0 18px 18px; color: #666; }
.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0;
    border-bottom: 1px solid #e7e7e7;
}
.panel-head h1 { flex: 1; border-bottom: 0; }
.panel-head .btn { margin-right: 16px; }
.table-wrap { overflow-x: auto; padding: 0 12px 14px; }
.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
    margin-top: 12px;
    border: 1px solid #e7e7e7;
}
.admin-table th,
.admin-table td {
    padding: 9px 12px;
    border: 1px solid #e7e7e7;
    text-align: left;
    vertical-align: middle;
    font-size: 13px;
}
.admin-table th {
    color: #666;
    background: #f2f2f2;
    font-weight: 700;
}
.admin-table td { color: #666; }
.admin-table tbody tr:nth-child(even) { background: #fbfbfb; }
.admin-table tbody tr:hover { background: #f5fbfa; }
.admin-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid #d9e2ec;
    background: #f7f9fb;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}
.admin-badge.ok {
    border-color: #b8eadf;
    background: #e9faf6;
    color: #087a68;
}
.admin-badge.muted {
    border-color: #e5e7eb;
    background: #f5f5f5;
    color: #8a8f98;
}
.admin-table a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid #d8d8d8;
    color: #666;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
}
.admin-table a:hover { color: #009688; border-color: #009688; }
.admin-table td:last-child a:last-of-type {
    color: #fff;
    border-color: #009688;
    background: #009688;
}
.delete-form { display: inline; margin-left: 4px; }
.delete-form button {
    min-height: 24px;
    padding: 0 8px;
    border: 1px solid #ff5722;
    background: #ff5722;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.admin-form {
    display: grid;
    gap: 0;
    max-width: none;
    padding: 14px 18px 18px;
}
.admin-form > label {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 7px 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}
.admin-form > label > * { grid-column: 2; }
.admin-form input,
.admin-form select,
.admin-form textarea {
    border: 1px solid #dcdcdc;
    border-radius: 0;
    color: #333;
    font-size: 13px;
}
.admin-form input,
.admin-form select { height: 38px; }
.admin-form textarea { min-height: 110px; resize: vertical; }
.admin-rich-editor {
    display: grid;
    gap: 10px;
}
.admin-rich-editor textarea {
    min-height: 280px;
    line-height: 1.72;
}
.admin-editor-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 8px 10px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    background: #f7f7f7;
}
.admin-editor-tools .btn {
    min-height: 32px;
    padding: 0 14px;
    font-size: 13px;
}
.admin-editor-tools span {
    color: #888;
    font-size: 13px;
    font-weight: 400;
}
.check-label { display: flex !important; grid-template-columns: none; align-items: center; gap: 10px !important; }
.check-label input { width: 18px; height: 18px; }
.admin-thumb {
    width: 160px;
    max-height: 110px;
    object-fit: contain;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    background: #fff;
}
.form-actions { display: flex; gap: 10px; padding-left: 134px; margin-top: 10px; }
.inline-form select { height: 30px; border: 1px solid #dcdcdc; border-radius: 0; }
.admin-body .btn {
    min-height: 36px;
    padding: 0 18px;
    border-radius: 0;
    font-size: 13px;
    box-shadow: none;
}
.admin-body .btn:hover { transform: none; }
.admin-body .btn.primary {
    color: #fff;
    border-color: #009688;
    background: #009688;
    box-shadow: none;
}
.admin-body .btn.ghost {
    color: #555;
    border-color: #d8d8d8;
    background: #fff;
}
.admin-body .btn.ghost:hover {
    color: #009688;
    border-color: #009688;
}

@media (max-width: 1240px) {
    .footer-grid {
        grid-template-columns: minmax(220px, .8fr) minmax(340px, 1.2fr);
        gap: 34px;
    }
    .footer-contact-block {
        grid-column: 1 / -1;
        grid-template-columns: minmax(230px, .65fr) minmax(360px, 1fr);
    }
}

@media (max-width: 1100px) {
    .main-nav { gap: 22px; }
    .main-nav a { font-size: 13px; }
    .stats-panel { grid-template-columns: 1fr; }
    .advantage-layout { grid-template-columns: 1fr; }
    .advantage-grid { grid-template-columns: repeat(3, 1fr); }
    .enable-grid, .mode-grid { grid-template-columns: repeat(2, 1fr); }
    .enable-flow { grid-template-columns: repeat(2, 1fr); }
    .mode-route { grid-template-columns: repeat(2, 1fr); }
    .franchise-hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .franchise-hero-panel { max-width: 520px; }
    .franchise-process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .franchise-mode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .franchise-support-layout { grid-template-columns: 1fr; }
    .franchise-support-lead { position: relative; top: auto; }
    .home-feature-grid, .home-store-grid, .home-join-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .home-news-layout { grid-template-columns: 1fr; }
    .home-news-list { grid-template-columns: 1fr; }
    .home-news-item:last-child { border-bottom: 0; }
    .case-grid, .news-grid, .three-grid, .honor-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid {
        grid-template-columns: minmax(220px, .86fr) minmax(360px, 1.14fr);
        gap: 34px;
    }
    .footer-menu-block { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-contact-block {
        grid-column: 1 / -1;
        grid-template-columns: minmax(230px, .65fr) minmax(360px, 1fr);
    }
}

@media (max-width: 820px) {
    .container, .narrow { width: min(100% - 28px, 1180px); }
    .site-header { background: rgba(8, 16, 30, .72); backdrop-filter: blur(10px); }
    .header-inner { height: 66px; }
    .brand { width: 120px; }
    .nav-toggle { display: block; margin-left: auto; }
    .main-nav {
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        padding: 12px 14px 18px;
        border: 0;
        border-radius: 0;
        border-bottom: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 18px 30px rgba(16,45,76,.12);
    }
    .main-nav.open { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .main-nav a {
        height: 44px;
        justify-content: center;
        padding: 0 10px;
        border-radius: 6px;
        color: var(--blue-900);
        background: var(--soft);
        box-shadow: none;
        transform: none;
        text-shadow: none;
    }
    .main-nav a.active {
        color: #fff;
        background: var(--blue-800);
        box-shadow: none;
    }
    .main-nav a.active::after { display: none; }
    .hero-slider {
        min-height: 680px;
        height: calc(100vh - 66px);
        max-height: 760px;
    }
    .hero-content { padding-top: 30px; }
    .hero-content h1 { font-size: 44px; }
    .hero-content p { font-size: 17px; }
    .hero-slogan { font-size: 16px; }
    .section { padding: 56px 0; }
    .section-title h2, .cta-section h2 { font-size: 28px; }
    .stats-grid, .advantage-grid, .enable-grid, .enable-flow, .mode-grid, .mode-route, .mode-detail-grid,
    .case-grid, .news-grid, .three-grid, .enable-detail-grid, .honor-grid,
    .page-intro-card,
    .franchise-fit-layout, .franchise-fit-grid, .franchise-process, .franchise-mode-grid, .franchise-support-grid,
    .geo-summary, .geo-answer-list,
    .home-feature-grid, .home-store-grid, .home-join-grid,
    .contact-layout, .cta-layout, .form-row {
        grid-template-columns: 1fr;
    }
    .home-news-section { padding: 64px 0; }
    .home-news-head { margin-bottom: 30px; }
    .home-news-tabs button + button::before { width: 20px; margin: 0 12px; }
    .home-news-feature a { padding: 24px; }
    .home-news-feature-body { grid-template-columns: 1fr; }
    .home-news-feature time { margin-left: 0; }
    .home-news-item { grid-template-columns: 58px minmax(0, 1fr); padding: 24px 20px; border-left: 0; }
    .home-showcase-section { padding: 64px 0; }
    .home-showcase-title { margin-bottom: 26px; }
    .home-showcase-title h2 { font-size: 29px; }
    .stats-band { margin-top: 0; padding: 18px 0 42px; }
    .stats-panel { padding: 22px; }
    .stats-panel .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-lead { min-height: auto; padding: 0; border-right: 0; }
    .advantage-lead { padding: 26px; }
    .advantage-lead h2 { font-size: 28px; }
    .advantage-card, .enable-card, .mode-card { min-height: auto; }
    .franchise-hero {
        min-height: 520px;
    }
    .franchise-hero-copy h1 {
        font-size: 40px;
    }
    .franchise-hero-copy p {
        font-size: 17px;
    }
    .franchise-hero-panel,
    .franchise-fit-grid article,
    .franchise-mode-grid article,
    .franchise-support-grid article,
    .franchise-process article {
        min-height: auto;
    }
    .franchise-fit-copy h2,
    .franchise-support-lead h2 {
        font-size: 30px;
    }
    .enable-flow::before { display: none; }
    .mode-card { padding-bottom: 64px; }
    .sub-hero { min-height: 300px; }
    .sub-hero h1, .article-hero h1 { font-size: 34px; }
    .page-intro-split-section {
        padding: 26px 0 16px;
    }
    .page-intro-split {
        grid-template-columns: 1fr;
    }
    .page-intro-panel {
        min-height: auto;
        padding: 34px 28px;
    }
    .page-intro-panel h2 {
        font-size: 28px;
    }
    .page-intro-section { padding-bottom: 8px; }
    .page-intro-card {
        margin-top: -26px;
        padding: 24px 22px;
        gap: 20px;
    }
    .page-intro-tags {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .page-intro-tags span {
        justify-content: center;
        min-height: 38px;
        padding: 0 10px;
        text-align: center;
    }
    .page-intro-section + .section {
        padding-top: 34px;
    }
    .article-body {
        max-width: none;
        font-size: 16px;
        line-height: 1.9;
        text-align: left;
    }
    .rich-text h2 { font-size: 23px; }
    .geo-summary-section { padding-top: 30px; }
    .geo-summary > div { padding: 20px 0 0; }
    .geo-summary h2 { font-size: 28px; }
    .geo-summary ul { grid-template-columns: 1fr; padding: 18px; }
    .geo-answer-card { min-height: auto; padding: 18px; }
    .geo-category-head span { font-size: 21px; }
    .job-head { display: none; }
    .job-board { border-radius: 8px; }
    .job-item summary {
        grid-template-columns: 1fr;
        gap: 8px;
        min-height: auto;
        padding: 20px;
    }
    .job-more { justify-self: start; }
    .job-detail { padding: 22px 20px 28px; }
    .job-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .job-apply-box { flex-direction: column; }
    .job-apply-qr { width: 148px; flex-basis: auto; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-menu-block { grid-template-columns: 1fr; gap: 28px; }
    .footer-brand-col { max-width: none; }
    .footer-contact-block { grid-template-columns: 1fr; }
    .footer-qr-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 380px; gap: 12px; justify-content: start; }
    .footer-qr-card { min-height: 188px; padding: 14px 8px 12px; }
    .footer-qr-card img { width: min(148px, calc(100% + 16px)); }
    .float-contact { display: none; }
    .mobile-bar {
        position: fixed;
        z-index: 45;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: 0 -8px 24px rgba(16,45,76,.12);
    }
    .mobile-bar a, .mobile-bar button {
        height: 54px;
        display: grid;
        place-items: center;
        border: 0;
        background: #fff;
        color: var(--blue-800);
        font-size: 13px;
        font-weight: 800;
    }
    .site-footer { padding-bottom: 54px; }
    .admin-body { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: relative;
        height: auto;
        padding-bottom: 8px;
    }
    .admin-brand { justify-content: flex-start; }
    .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); padding: 0 8px; }
    .admin-main { padding: 0; }
    .admin-topbar { align-items: flex-start; flex-direction: column; padding: 12px 14px; }
    .admin-actions { flex-wrap: wrap; }
    .admin-stat-grid { grid-template-columns: 1fr; }
    .admin-panel { margin: 12px; }
    .admin-form > label { grid-template-columns: 1fr; gap: 7px; }
    .admin-form > label > * { grid-column: 1; }
    .form-actions { padding-left: 0; }
}

@media (max-width: 520px) {
    .hero-slider {
        min-height: 620px;
        height: calc(100vh - 66px);
        max-height: 700px;
    }
    .hero-content h1,
    .hero-content p,
    .hero-slogan {
        width: 100%;
        max-width: 330px;
        word-break: break-all;
        line-break: anywhere;
    }
    .hero-content h1 { font-size: 28px; line-height: 1.18; }
    .hero-content p { font-size: 16px; }
    .hero-slogan { font-size: 15px; }
    .hero-actions { margin-top: 30px; }
    .hero-actions .btn { width: 100%; }
    .franchise-hero {
        min-height: 560px;
    }
    .franchise-hero-copy h1 {
        font-size: 34px;
    }
    .franchise-hero-actions .btn {
        width: 100%;
    }
    .franchise-hero-panel,
    .franchise-support-lead {
        padding: 22px;
    }
    .franchise-fit-grid article,
    .franchise-mode-grid article,
    .franchise-support-grid article,
    .franchise-process article {
        padding: 22px;
    }
    .franchise-page-note {
        padding: 16px 18px;
    }
    .page-intro-split-section {
        padding: 18px 0 10px;
    }
    .page-intro-panel {
        padding: 30px 22px;
    }
    .page-intro-panel h2 {
        font-size: 26px;
    }
    .page-intro-panel p {
        font-size: 15px;
        line-height: 1.85;
    }
    .page-intro-card {
        padding: 22px 18px;
    }
    .page-intro-tags {
        grid-template-columns: 1fr;
    }
    .page-intro-tags span {
        justify-content: flex-start;
        text-align: left;
    }
    .slider-dots { bottom: 26px; }
    .slider-dots button { width: 38px; }
    .stats-panel { padding: 18px; }
    .stats-panel .stats-grid { grid-template-columns: 1fr; }
    .stats-lead p { max-width: 300px; }
    .stats-card { min-height: 122px; padding: 32px 18px 18px; gap: 12px; }
    .stats-card::before { top: 20px; }
    .stats-card strong { font-size: 40px; }
    .home-showcase-section { padding: 52px 0; }
    .home-image-card div { min-height: auto; padding: 18px; }
    .home-join-card { min-height: auto; padding: 22px 20px; }
    .home-news-head h2 { font-size: 28px; }
    .home-news-tabs { gap: 10px 0; }
    .home-news-tabs button + button::before { width: 14px; margin: 0 9px; }
    .home-news-feature a { padding: 18px; }
    .home-news-feature-body { margin-top: 18px; }
    .home-news-item { gap: 16px; }
    .home-news-item time strong { font-size: 36px; }
    .contact-info, .contact-form-card, .cta-form { padding: 20px; }
    .cta-section { padding: 64px 0; }
    .cta-layout { gap: 28px; }
    .cta-section h2 { font-size: 30px; }
    .cta-section p { font-size: 15px; }
    .cta-form { border-radius: 22px; }
    .cta-form .form-row { gap: 14px; }
    .cta-form .inquiry-form input,
    .cta-form .inquiry-form select { height: 48px; }
    .footer-qr-list { max-width: 100%; }
    .footer-qr-card { min-height: 176px; }
    .footer-qr-card img { width: min(144px, calc(100% + 16px)); }
    .footer-bottom .container { align-items: center; flex-direction: column; padding: 14px 0; gap: 6px; }
}
